Array, Vectors, and Linked list discussion response

Please respond to the following discussion response with a minimum of 200 words and use a reference. 

 

ArrayList:

Characteristics:

  • ArrayList is used to store components and remove components at any  time because it is flexible to add and remove the components.  
  • ArrayList is similar to arrays but the arrays were deterministic and ArrayList was non-deterministic.
  • ArrayList allows adding duplicate components.
  • ArrayList maintains the order of components in the order of insertion.

The following statement shows how to initialize the ArrayList.

ArrayList list=new ArrayList();

The above list object is used to add different types of components into ArrayList.

ArrayList<String> list=new ArrayList<String>();

The above list object is used to add only the String type component  into the ArrayList. If someone tries to add other types of components  then it provides a compile-time error.

The following statement shows how to add components into ArrayList.

list.add("Cat");
list.add("Dog");
list.add("Cow");
list.add("Horse");

add() is the method used to add components into the ArrayList. Here  the String type is specified so the parameters are enclosed with the  double-quotes. Instead of String Integer type is provided then the  number is passed as a parameter without double-quotes.

The following statement shows how to update components in ArrayList.

list.set(1,"Goat");

Now the component at index 1 is set as Goat instead of Dog. In the  set() method the first parameter specifies the index value and the  second parameter specifies the updated component.

The following statements show how to get all the components that were stored in the ArrayList.

for(String str: list)
{
System.out.println(str);
}

From the above statement, the for-each loop is used to iterate the ArrayList to get all the components in the ArrayList.

Iterator it=list.iterator();
while(it.hasNext())
{
System.out.println(it.next());
}

From the above statement, the Iterator interface is used to get the ArrayList components.

The following statement shows how to remove components from the ArrayList.

list.remove(0);

Now the component at index 0 is deleted from the ArrayList.

The following is the java code that implements the ArrayList.

import java.util.*;
public class ArrayListDataStructure
{
public static void main(String[] args)
{
ArrayList<String> list=new ArrayList<String>();
list.add("Cat");
list.add("Parrot");
list.add("Horse");
list.add("Cow");
list.add("Dog");
System.out.println("ArrayList Components");
for(String str:list)
{
System.out.println(str);
}
list.set(2, "Golden Fish");
System.out.println("nArrayList Components after update");
for(String st:list)
{
System.out.println(st);
}
System.out.println("Size of ArrayList:"+list.size());
list.remove(3);
System.out.println("nArrayList Components after Delete");
for(String str:list)
{
System.out.println(str);
}
System.out.println("Size of ArrayList:"+list.size());
list.add("Love Birds");
Collections.sort(list);
System.out.println("nArrayList Components after Sorting");
for(String str:list)
{
System.out.println(str);
}
}
}

LinkedList:

  • Characteristics of LinkedList are the same as ArrayList like  allowing duplicate components, components stored in the order of  insertion, and non synchronized.
  • The difference is that manipulation is fast in LinkedList as  compared to ArrayList because the ArrayList needs more shifting to  remove a component but the LinkedList does not need shifting.

The following statement shows how to initialize the LinkedList.

LinkedList<String> ll=new LinkedList<String>();

The following statement shows how to add components into LinkedList.

ll.add("James");
ll.add("Daniel");
ll.addFirst("Hepson");
ll.addLast("Shibi");

The following statement shows how to update components in LinkedList.

ll.set(2,"Anisha");

The following statements show how to get all the components that were stored in the LinkedList.

for(String st:ll)
{
System.out.println(st);
}

The following statement shows how to remove components from LinkedList.

ll.remove(3);

The following is the java code that implements LinkedList.

import java.util.Collections;
import java.util.LinkedList;
public class LinkedListDataStructure
{
public static void main(String[] args)
{
LinkedList<String> ll=new LinkedList<String>();
ll.add("Dhanya");
ll.add("Daniel");
ll.add("Xavier");
ll.addFirst("Hepson");
ll.addLast("Shibi");
System.out.println("LinkedList Components");
for(String st:ll)
{
System.out.println(st);
}
ll.set(2,"Anisha");
System.out.println("nLinkedList Components after update");
for(String st:ll)
{
System.out.println(st);
}
System.out.println("Size of LinkedList:"+ll.size());
ll.remove(3);
System.out.println("nLinkedList Components after Delete");
for(String st:ll)
{
System.out.println(st);
}
System.out.println("Size of LinkedList:"+ll.size());
Collections.sort(ll);
System.out.println("nLinkedList Components after Sorting");
for(String st:ll)
{
System.out.println(st);
}
}
}

Vector:

  • Vector is also a dynamic array so there is no size limit.
  • Vector class implements List interface so all the methods in List interface can be used in Vector.
  • Vector is synchronized so it is better to use vector in thread-safe implementation.

The following statement shows how to initialize a Vector class.

Vector<String> vec=new Vector<String>();

The following statement shows how to add components to a Vector.

v.addElement("Cake");
v.addElement("Biscuit");
v.addElement("IceCream");
v.addElement("Chocolate");

The following statement shows how to update components in Vector.

v.set(1,"Drinks");

The following statement shows how to remove components from the Vector.

v.remove(3);

The following is the java code that implements Vector.

import java.util.Collections;
import java.util.Vector;
public class VectorDataStructure
{
public static void main(String[] args)
{
Vector<String> v =new Vector<String>();
v.addElement("Cake");
v.addElement("Biscuit");
v.addElement("IceCream");
v.addElement("Chocolate");
System.out.println("Vector Components");
for(String st:v)
{
System.out.println(st);
}
v.set(1,"Drinks");
System.out.println("nVector Components after update");
for(String st:v)
{
System.out.println(st);
}
System.out.println("Size of Vector:"+v.size());
v.remove(3);
System.out.println("nVector Components after Delete");
for(String st:v)
{
System.out.println(st);
}
System.out.println("Size of Vector:"+v.size());
v.add("Biscuit");
Collections.sort(v);
System.out.println("nVector Components after Sorting");
for(String st:v)
{
System.out.println(st);
}
}
}

ArrayList:

The ArrayList is a resizable array that can be used to store  different types of components at any time. In ArrayList components can  be added anywhere by specifying the index.

The following is the description of the code

  • Initialize an ArrayList class.
  • Use add() method to add components into the ArrayList class.
  • For-each loop is used to print the components.
  • Use the set() method to update the component.
  • Use the remove() method to delete the component.
  • Use size() to get the current size of the ArrayList.
  • Use the sort() method in Collections to sort the components in the ArrayList.

LinkedList:

LinkedList class is used to implement the Linked List linear data  structure. The components are not stored in the neighboring address and  it is stored as containers.  

The following is the description of the code.

  • Initialize the LinkedList class.
  • Use add() method to add components into the LinkedList class.
  • For-each loop is used to print the components.
  • Use the set() method to update the component.
  • Use the remove() method to delete the component.
  • Use size() to get the current size of the LinkedList.
  • Use the sort() method in Collections to sort the components in the LinkedList.

Snip of the Output:

Vector:

Vector is the growable array. Vector is synchronized so it has legacy  methods. Iterators can not be returned by the vector class because if  any concurrent changes occur then it throws the  ConcurrentModificationException.

The following is the description of the code

  • Initialize the Vector class.
  • Use and elements() method to add components into the Vector class.
  • For-each loop is used to print the components.
  • Use the set() method to update the component.
  • Use the remove() method to delete the component.
  • Use size() to get the current size of the Vector.
  • Use the sort() method in Collections to sort the components in the Vector.

Training Needs Assignment

Select or create an organization for the authentic assessment. In this first assignment, you will begin to develop a training needs analysis (TNA) for your chosen organization. Note: It is recommended that you choose your own organization (where you are currently employed). If you are not employed, reach out to the professor to help with selection of an organization. DO NOT use Walmart, Target, or Starbucks as your organization.  For this assignment, you will work on items 1-5 only.

NOTE: you will include a summary of assignment one as the intro to assignment two!

  1. Provide information about the organization and its needs regarding the training issue:
    1. This should include general, high level information about the company in terms of product/services, size, geography, workforce attributes, etc.  The training issue is the problem or challenge (could be deficiency OR need based on a predicted change in the operation, workforce, etc.).  Here this should be “high level”, focused on the organization (not specifically the individual workers yet). 
  2. Determine the group or individuals who will receive the training:
    1. This should include information about the target audience as it will impact the training developed – including demographic information, type of work, location of work, etc. 
  3. Identify the training issue:
    1. This is a continuation from item 1.  Here you will focus more on the individual workers and/or teams. 
    2. NOTE: the training issue should NOT be that they lack training.  It should be tied to a performance deficiency or need.   
  4. Provide a training needs assessment questionnaire:
    1. The questionnaire should provide insight into the training need/gap; therefore it should focus on the training issue itself – choose questions that provide insight to the issue.  In a sense, the questionnaire helps you identify and analyze the “why” (e.g., if you are addressing a performance issue, the questionnaire would help you hone in on the real issue). 
    2. SUGGESTION: think hard about using questions that ask how the audience “feels” about something – you want to obtain the most tangible and useful information. 
    3. NOTE: you will NOT administer the questionnaire!  
    4. Your questionnaire should be included as an appendix to your paper – inserting questions within the narrative of your paper does not suffice.
  5. Explain how the questionnaire will be utilized and will lead to the development of training outcomes/learning objectives within your written report:
    1. Here you will essentially validate the questions posed in your questionnaire – if you can’t do that, you should probably revisit your questions.
      1. You will probably not have the time or resources to implement the questionnaire or compile all the organizational and training-specific information necessary to complete the TNA. (If you are able to get real data and results, great! Otherwise, be creative and fabricate results.) The goal is to understand how a TNA is done effectively and to practice completing one.

Database security concern

Objective

   To complete a written assignment to help and an organization address its database security concerns.

      Required

   1. Use the template. Required for this assignment.

2. Threein-textcitationsrequired.

3. Three references are required to support the in-text

citations.

4. Do not change the template formatting. The

template is set for 12 points, Time New Roman.

   Instructions

  There are TWO case projects below. Your task is to select ONE of the case projects for this security assignment.

Your objective is the address the problem, provide security solutions and recommendations.

 1

   Project 1

Mark Smith Regional Hospital

   Aim: Mark Smith Regional Hospital is a multi-specialty hospital that includes several departments, rooms, doctors, nurses, compounders, and other staff working in the hospital. Patients having different kinds of ailments come to the hospital and get checkups done from the concerned doctors. If required, they are admitted to the hospital and discharged after treatment.

This case study aims to provide a written report for designing and developing a database for the hospital to maintain the records of various departments, rooms, and doctors in the hospital and address security concerns.

PLEASE NOTE THAT YOU ARE NOT DESIGNING A DATABASE. YOU WILL BE WRITING ABOUT SECURITY CONCERNS ABOUT THE DATABASE.

The database also maintains records of the regular patients, patients admitted in the hospital, the checkup of patients done by the doctors, the patients that have been operated on, and patients discharged from the hospital.

Description: In the hospital, there are many departments like Orthopedic, Pathology, Emergency, Dental, Gynecology, Anesthetics, I.C.U., Blood Bank, Operation Theater, Laboratory, M.R.I., Neurology, Cardiology, Cancer Department, Corpse, etc. There is an O.P.D. where patients come and get a card (that is, the entry card of the patient) for a checkup from the concerned doctor. After making an entry in the card, they go to the concerned doctor’s room, and the doctor checks up on their ailments. According to the conditions, the doctor either prescribes medicine or admits the patient to the concerned department. The patient may choose either a private or general room according to his/her need. But before getting admission to the hospital, the patient must fulfill certain formalities of the hospital like room charges, etc.

Module 02 Course Project – Select Topic

 

Use the attached template: 

Module 2 Course Project_NUR 2214.docx

See this link for help writing a proposal: https://rasmussen.libanswers.com/faq/268320

Submit a Grammarly report with this assignment, make sure plagiarism is turned on and less than 15%

1. How to Download a Grammarly report 

a. At the Grammarly website go to your document, scroll to the bottom right and

b. Click plagiarism icon (ensure plagiarism score is <15%)

c. Scroll back up to the top right and click on overall score icon

d. When box opens up click on download pdf report

e. Save to computer and upload with your assignment

Course Competency:
  • Analyze the increased complexity of care among older adults.

Your supervisor needs to make sure that each of the in-service topics will be covered by someone, so she is asking the staff to communicate their topic preference. Below is the list of problems your supervisor wants the nursing staff to be able to teach older adult clients (and/or their family members) about.

In-service Topic Options:

Last names A-H choose one of the following topics:

  • Hypertension
  • Diabetes
  • Coronary artery disease

Last names I-Q choose one of the following topics:

  • Depression
  • Dementia
  • Polypharmacy

Last names R-Z choose one of the following topics:

  • Increased risk of falls
  • Vison/hearing impairment
  • Nutrition and hydration

Your supervisor has asked you to submit a 1-page proposal, written using proper spelling, grammar, and APA, which addresses the following:

  1. Identify the client problem your in-service will address.
  2. Describe at least 5 consequences of the client problem as it relates to the health, safety, and well-being of older adults.
  3. Explain your rationale for choosing the client problem you selected.

Submit your completed assignment to the dropbox below. Please check the Course Calendar for specific due dates.

for michelle lewis only

  Textbook website   

https://books.google.com/books?id=ydobCgAAQBAJ&pg=PA119&dq=rebus+chart&hl=en&sa=X&ved=0ahUKEwjtzMLIzc_UAhVGQyYKHbfGCdYQ6AEIVzAI#v=onepage&q=rebus%20chart&f=false

Read Chapter 14 and answer the following questions:

1.  Define evaluation

2.  What two distinct processes do early childhood educators use to help children build lifelong learning skills?

3.  List seven (7) questions you should ask yourself before you begin the evaluation process.

4.  What do program evaluations describe and measure?

5.  Define quantitative evaluation, qualitative evaluation, formative evaluation, process and summative evaluation.

6.  List eleven (11) nationally recognized standards that are commonly used in evaluation of early childhood programs.

7.  Define objectivity, reliability, validity, and bias.

8.  What ethical issues are involved in evaluation? 

9.  Describe each evaluation tool:  survey; questionnaires; checklist; rating scale; anecdotal record; event sampling or frequency count; time sample; portfolio assessment.

10.  List three (3) recommended practices in program evaluation by A Guide to Assessment in Early Childhood: Infancy to Age Eight.

11.  List five (5) questions to ask yourself before interpreting information.

12.  What is the first step in interpreting information gathered?

13.  Define rubric.

14.  What is the intent for using assessment information?

15.  Explain each step of documentation:  why; who to target; what to document; where to document; when to document; how to document.

16.  List four (4) things to consider for authentic documentation of learning.

SOCW 6311 wk 10 peer responses

  

SOCW 6311 wk 10 peer responses 

Respond to at least two colleagues’  from the perspective of an interested stakeholder for the program by doing the following:

  • Provide      a brief description of the role that you are taking.
  • Provide      an evaluation of the group research design that they have chosen, and      criteria that your colleagues have generated (choice of outcome and method      of evaluation) from the perspective of the stakeholder whom you have      chosen.
  • Provide      support based on your evaluation
  • Ask      questions about the plan for research design and the questions that the      evaluation plan will address from your chosen perspective.

Name first and references after every person

Instructor wants lay out like this:

Respond to at least two colleagues ( 2 peers posts are provided) by doing all of the following:

Identify strengths of your colleagues’ analyses and areas in which the analyses could be improved.

Your response

Address his or her evaluation of the efficacy and applicability of the evidence-based practice,

Your response

[Evaluate] his or her identification of factors that could support or hinder the implementation of the evidence-based practice,

Your response

And [evaluate] his or her solution for mitigating those factors.

Your response

Offer additional insight to your colleagues by either identifying additional factors that may support or limit implementation of the evidence-based practice or an alternative solution for mitigating one of the limitations that your colleagues identified.

Your response

References

Your response

Peer 1: shelly Barr 

RE: Discussion – Week 10

COLLAPSE

Top of Form

post your explanation of which group research design and data collection method from those outlined in the Resources you selected as appropriate for the “Social Work Research: Planning a Program Evaluation” case study and why.

For this assignment, I have chosen the Time-Series Design. I chose this design as it is still a quasi-experimental design but also has several pre-test and post-test outcome measures. It involves obtaining several client outcome measures before the introduction of intervention and several additional measures after the intervention has been implemented (Dudley, 2014).  One benefit of this design is the data trends can help determine the extent to which the intervention, as opposed to external outside factors is the “causal agent” (Dudley, 2014).

Then, generate criteria to be measured using the research design by identifying a specific outcome and a method for measuring that outcome. Specify who will collect the data and how the data will be collected.

By using a single system design (SSD) as an evaluation tool to measure whether there is a causal relationship between the practitioner’s intervention and a client’s outcome then adjustments to treatment delivery can be made intermittently prior to termination of services. SSD can be used for either an individual, a family, or a group and uses a graph as a tool to visualize client progress (Dudley, 2014). Having this graph available for the client may be a motivating element in practice.  

A goal attainment scale as an evaluation tool for the time series design would be helpful in evaluating the extent to which the worker’s interventions affect client’s goals or outcomes in the way it was intended (Dudley, 2014). By using a 5-point Likert scale to measure with is a non-complicated way to track client progress when using the SSD I have chosen. The researcher in the case study also mentioned using a Likert scale in their study and the use of questionnaires, surveys, and checklists (Plummer, Makris, & Brocksen, 2014b). Data would be collected from designated evaluation team members and would be done via surveys that monitor client satisfaction and effectiveness. These surveys are optimal when you need to quickly and/or easily get lots of information from people in a non-threatening way (McNamara, 2006a).

References

Dudley, J. R. (2014). Social work evaluation: Enhancing what we do. (2nd ed.) Chicago, IL: Lyceum Books.

McNamara, C. (2006a). Contents of an evaluation plan. In Basic guide to program evaluation (including outcomes evaluation). Retrieved from http://managementhelp.org/evaluation/program-evaluation-guide.htm#anchor1586742

Plummer, S.-B., Makris, S., & Brocksen S. (Eds.). (2014b). Social work case studies: Concentration year. Baltimore, MD: Laureate International Universities Publishing. [Vital Source e-reader].

Bottom of Form

Bottom of Form

Bottom of Form

Peer 2: Tiffany Winford 

RE: Discussion – Week 10

COLLAPSE

Top of Form

Post your explanation of which group research design and data collection method from those outlined in the Resources you selected as appropriate for the “Social Work Research: Planning a Program Evaluation” case study and why.

The group research design that was selected for this project would be an exploratory design. The reason being is that this type of design is meant for when there is little to no known information about the research subject (Sacred Hearth University, 2020). The case study stated that the social worker had not found any research on the foster care training program to date (Plummer et al., 2014b). Performing this type of research design would also help to gain familiarity with the basic details of the program and develop new research questions that could be used to study this program as time goes one (Sacred Hearth University, 2020). An appropriate data collection method for this case study would be questionnaires and interviews of the participants. The questionnaires will provide a lot of feedback, be anonymous, and are cheap and quick to administer (McNamara, 2006a). Interviews can gather more information about a participant’s experience and gain a deeper understanding from the questionnaire’s answers (McNamara, 2006a). While the interviews may take longer to complete, it would be important to perform them since this program has not been studied before. The amount of information gathered could support causality between the program and any change that occurred.       

Then, generate criteria to be measured using the research design by identifying a specific outcome and a method for measuring that outcome. Specify who will collect the data and how the data will be collected.

One specific outcome that will be measured from this study will be that the number of foster placement disruptions will be reduced. This type of outcome would include a numeric count (Dudley, 2014) of how many kids were taken out of the foster parent home for reasons other than finding permanent adoption or reunification with their parents. The method for measuring this information would be collecting this data from the interviews that occurred after the program. These interviews could occur 3 months, 6 months, and 1 year after program completion. This information could be collected by the person conducting the research program or the staff who taught the training. This information could also be compared against any previous data that had been collected using the previous training program and any placement disruptions. From this information one can compare if the number of disruptions had been reduced compared to the previous training that was being used.       

References

Dudley, J. R. (2014). Social work evaluation: Enhancing what we do (2nd ed.). Lyceum Books.

McNamara, C. (2006a). Overview of methods to collect information. In Basic guide to program evaluation (including outcomes evaluation). https://managementhelp.org/evaluation/program-evaluation-guide.htm#anchor1586742

Plummer, S. -B., Makris, S., & Brocksen, S. (Eds.). (2014b). Social work case studies: Concentration year. Baltimore, MD: Laureate International Universities Publishing. [Vital Source e-reader].

Sacred Heart University. (2020). Organizing academic research papers: Types of research designs. https://library.sacredheart.edu/c.php?g=29803&p=185902

Bottom of Form

 
 

    work evaluation: Enhancing what we do. (pp. 167–207 (2nd ed.) Chicago, IL:

 
 

    Lyceum Books. https://mbsdirect.vitalsource.com/#/books/9780190685331/pageid/189 

 
 

 
 

Plummer, S.-B., Makris, S., & Brocksen S. (Eds.). (2014b). Social work case studies:

 
 

Concentration year. Baltimore, MD: Laureate International Universities

 
 

Publishing. [Vital Source e-reader].

Module 12: Implementing Strategy

 

Module 12: Critical Thinking

Critical Thinking: Strategic Recommendations (115 points)

Managing the multi-business corporation to meet high performance expectations is problematic. Publicly traded companies are pressured to return favorable quarterly results and as corporations grow larger and more complex, it becomes harder to manage such corporations effectively. General Electric (GE) was once one of the most admired corporations in the world. Today, GE is facing a much-reduced outlook. For this week’s assignment, read the case study found in your textbook (Case 20): Restructuring General Electric.

Remember, a case study is a puzzle to be solved, so before reading and answering the specific case and study questions, develop your proposed solution by following these five steps:

  1. Read the case study to identify the key issues and underlying issues. These issues are the principles and concepts of the course area which apply to the situation described in the case study.
  2. Record the facts from the case study which are relevant to the principles and concepts of the course area issues. The case may have extraneous information not relevant to the current course area. Your ability to differentiate between relevant and irrelevant information is an important aspect of case analysis, as it will inform the focus of your answers.
  3. Describe in some detail the actions that would address or correct the situation.
  4. Consider how you would support your solution with examples from experience or current real-life examples or cases from textbooks.
  5. Complete this initial analysis and then read the discussion questions. Typically, you will already have the answers to the questions but with a broader consideration. At this point, you can add the details and/or analytical tools required to solve the case.

Case Study Questions:

  1. Why was GE considered to be such an exemplary organization? (Discuss GE’s management systems and performance.)
  2. Discuss the nature of GE’s corporate portfolio under Welch and Imelt. Did the nature of GE’s portfolio under Welch and Imelt provide superior results?
  3. If GE’s portfolio mix gave superior results, why was it necessary to restructure the portfolio?
  4. Why is GE’s performance no longer superior? What are the reasons for the collapse in GE’s financial performance during 2016-2018?
  5. What should be done to return GE to higher levels of performance? Does GE need to refocus? Which businesses or products would you recommend abandoning or divesting, if any? Does GE need to make additional acquisitions to supplement existing GE assets?

Your well-written paper should meet the following requirements:

  • Be 9 to 10 pages in length, which does not include the title page or required reference page, which are never a part of the content minimum requirements.
  • Use Saudi Electronic University academic writing standards and APA style guidelines.
  • Support your submission with course material concepts, principles, and theories from the textbook and at least three scholarly, peer-reviewed journal articles unless the assignment calls for more.
  • It is strongly encouraged that you submit all assignments into the Turnitin Originality Check before submitting it to your instructor for grading. If you are unsure how to submit an assignment into the Originality Check tool, review the Turnitin Originality Check—Student Guide for step-by-step instructions.
  • Review the grading rubric to see how you will be graded for this assignment. Review the grading rubric to see how you will be graded for this assignment.

Data & Information

<link rel=”stylesheet” href=”/ssr/css/front.c3c036ad80876390.css”>                                            window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if(“function”==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o,i=t(“ee”),a=t(20),c={};try{o=localStorage.getItem(“__nr_flags”).split(“,”),console&&”function”==typeof console.log&&(c.console=!0,o.indexOf(“dev”)!==-1&&(c.dev=!0),o.indexOf(“nr_dev”)!==-1&&(c.nrDev=!0))}catch(s){}c.nrDev&&i.on(“internal-error”,function(t){r(t.stack)}),c.dev&&i.on(“fn-err”,function(t,e,n){r(n.stack)}),c.dev&&(r(“NR AGENT IN DEVELOPMENT MODE”),r(“flags: “+a(c,function(t,e){return t}).join(“, “)))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{h?h-=1:o(c||new UncaughtException(t,e,n),!0)}catch(f){try{i(“ierr”,[f,s.now(),!0])}catch(d){}}return”function”==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||”Uncaught error with no additional information”,this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:s.now();i(“err”,[t,n])}var i=t(“handle”),a=t(21),c=t(“ee”),s=t(“loader”),f=t(“gos”),u=window.onerror,d=!1,p=”[email protected]“,h=0;s.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(l){“stack”in l&&(t(13),t(12),”addEventListener”in window&&t(6),s.xhrWrappable&&t(14),d=!0)}c.on(“fn-start”,function(t,e,n){d&&(h+=1)}),c.on(“fn-err”,function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),c.on(“fn-end”,function(){d&&!this.thrown&&h>0&&(h-=1)}),c.on(“internal-error”,function(t){i(“ierr”,[t,s.now(),!0])})},{}],3:[function(t,e,n){t(“loader”).features.ins=!0},{}],4:[function(t,e,n){function r(){M++,S=y.hash,this[u]=b.now()}function o(){M–,y.hash!==S&&i(0,!0);var t=b.now();this[l]=~~this[l]+t-this[u],this[d]=t}function i(t,e){E.emit(“newURL”,[“”+y,e])}function a(t,e){t.on(e,function(){this[e]=b.now()})}var c=”-start”,s=”-end”,f=”-body”,u=”fn”+c,d=”fn”+s,p=”cb”+c,h=”cb”+s,l=”jsTime”,m=”fetch”,v=”addEventListener”,w=window,y=w.location,b=t(“loader”);if(w[v]&&b.xhrWrappable){var g=t(10),x=t(11),E=t(8),P=t(6),O=t(13),R=t(7),T=t(14),L=t(9),j=t(“ee”),N=j.get(“tracer”);t(15),b.features.spa=!0;var S,M=0;j.on(u,r),j.on(p,r),j.on(d,o),j.on(h,o),j.buffer([u,d,”xhr-done”,”xhr-resolved”]),P.buffer([u]),O.buffer([“setTimeout”+s,”clearTimeout”+c,u]),T.buffer([u,”new-xhr”,”send-xhr”+c]),R.buffer([m+c,m+”-done”,m+f+c,m+f+s]),E.buffer([“newURL”]),g.buffer([u]),x.buffer([“propagate”,p,h,”executor-err”,”resolve”+c]),N.buffer([u,”no-“+u]),L.buffer([“new-jsonp”,”cb-start”,”jsonp-error”,”jsonp-end”]),a(T,”send-xhr”+c),a(j,”xhr-resolved”),a(j,”xhr-done”),a(R,m+c),a(R,m+”-done”),a(L,”new-jsonp”),a(L,”jsonp-end”),a(L,”cb-start”),E.on(“pushState-end”,i),E.on(“replaceState-end”,i),w[v](“hashchange”,i,!0),w[v](“load”,i,!0),w[v](“popstate”,function(){i(0,M>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t(“ee”),i=t(“handle”),a=t(13),c=t(12),s=”learResourceTimings”,f=”addEventListener”,u=”resourcetimingbufferfull”,d=”bstResource”,p=”resource”,h=”-start”,l=”-end”,m=”fn”+h,v=”fn”+l,w=”bstTimer”,y=”pushState”,b=t(“loader”);b.features.stn=!0,t(8);var g=NREUM.o.EV;o.on(m,function(t,e){var n=t[0];n instanceof g&&(this.bstStart=b.now())}),o.on(v,function(t,e){var n=t[0];n instanceof g&&i(“bst”,[n,e,this.bstStart,b.now()])}),a.on(m,function(t,e,n){this.bstStart=b.now(),this.bstType=n}),a.on(v,function(t,e){i(w,[e,this.bstStart,b.now(),this.bstType])}),c.on(m,function(){this.bstStart=b.now()}),c.on(v,function(t,e){i(w,[e,this.bstStart,b.now(),”requestAnimationFrame”])}),o.on(y+h,function(t){this.time=b.now(),this.startPath=location.pathname+location.hash}),o.on(y+l,function(t){i(“bstHist”,[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance[“c”+s]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance[“c”+s]()},!1):window.performance[f](“webkit”+u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance[“webkitC”+s]()},!1)),document[f](“scroll”,r,{passive:!0}),document[f](“keypress”,r,!1),document[f](“click”,r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){c.inPlace(t,[u,d],”-“,i)}function i(t,e){return t[1]}var a=t(“ee”).get(“events”),c=t(23)(a,!0),s=t(“gos”),f=XMLHttpRequest,u=”addEventListener”,d=”removeEventListener”;e.exports=a,”getPrototypeOf”in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+”-start”,function(t,e){var n=t[1],r=s(n,”[email protected]“,function(){function t(){if(“function”==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,”function”:n}[typeof n];return e?c(e,”fn-“,null,e.name||”anonymous”):n});this.wrapped=t[1]=r}),a.on(d+”-start”,function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];”function”==typeof r&&(t[e]=function(){var t=r.apply(this,arguments);return o.emit(n+”start”,arguments,t),t.then(function(e){return o.emit(n+”end”,[null,e],t),e},function(e){throw o.emit(n+”end”,[e],t),e})})}var o=t(“ee”).get(“fetch”),i=t(20);e.exports=o;var a=window,c=”fetch-“,s=c+”body-“,f=[“arrayBuffer”,”blob”,”json”,”text”,”formData”],u=a.Request,d=a.Response,p=a.fetch,h=”prototype”;u&&d&&p&&(i(f,function(t,e){r(u[h],e,s),r(d[h],e,s)}),r(a,”fetch”,c),o.on(c+”end”,function(t,e){var n=this;e?e.clone().arrayBuffer().then(function(t){n.rxSize=t.byteLength,o.emit(c+”done”,[null,e],n)}):o.emit(c+”done”,[t],n)}))},{}],8:[function(t,e,n){var r=t(“ee”).get(“history”),o=t(23)(r);e.exports=r,o.inPlace(window.history,[“pushState”,”replaceState”],”-“)},{}],9:[function(t,e,n){function r(t){function e(){s.emit(“jsonp-end”,[],p),t.removeEventListener(“load”,e,!1),t.removeEventListener(“error”,n,!1)}function n(){s.emit(“jsonp-error”,[],p),s.emit(“jsonp-end”,[],p),t.removeEventListener(“load”,e,!1),t.removeEventListener(“error”,n,!1)}var r=t&&”string”==typeof t.nodeName&&”script”===t.nodeName.toLowerCase();if(r){var o=”function”==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var u=c(a),d=”function”==typeof u.parent[u.key];if(d){var p={};f.inPlace(u.parent,[u.key],”cb-“,p),t.addEventListener(“load”,e,!1),t.addEventListener(“error”,n,!1),s.emit(“new-jsonp”,[t.src],p)}}}}}function o(){return”addEventListener”in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function c(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var s=t(“ee”).get(“jsonp”),f=t(23)(s);if(e.exports=s,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*).([^.]+)/,p=/^(w+)(.|$)(.*)$/,h=[“appendChild”,”insertBefore”,”replaceChild”];f.inPlace(HTMLElement.prototype,h,”dom-“),f.inPlace(HTMLHeadElement.prototype,h,”dom-“),f.inPlace(HTMLBodyElement.prototype,h,”dom-“),s.on(“dom-start”,function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t(“ee”).get(“mutation”),o=t(23)(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,”fn-“)):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=c(t,”executor-“,e),r=new f(n);return a.context(r).getCtx=function(){return e},a.emit(“new-promise”,[r,e],e),r}function o(t,e){return e}var i=t(23),a=t(“ee”).get(“promise”),c=i(a),s=t(20),f=NREUM.o.PR;e.exports=a,f&&(window.Promise=r,[“all”,”race”].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit(“propagate”,[null,!o],i),o=o||!t}}var o=!1;s(n,function(e,n){Promise.resolve(n).then(r(“all”===t),r(!1))});var i=e.apply(f,arguments),c=f.resolve(i);return c}}),[“resolve”,”reject”].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit(“propagate”,[t,!0],n),n}}),f.prototype[“catch”]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),s(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on(“executor-start”,function(t){t[0]=c(t[0],”resolve-“,this),t[1]=c(t[1],”resolve-“,this)}),a.on(“executor-err”,function(t,e,n){t[1](n)}),c.inPlace(f.prototype,[“then”],”then-“,o),a.on(“then-start”,function(t,e){this.promise=e,t[0]=c(t[0],”cb-“,this),t[1]=c(t[1],”cb-“,this)}),a.on(“then-end”,function(t,e,n){this.nextPromise=n;var r=this.promise;a.emit(“propagate”,[r,!0],n)}),a.on(“cb-end”,function(t,e,n){a.emit(“propagate”,[n,!0],this.nextPromise)}),a.on(“propagate”,function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=a.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return””+f})},{}],12:[function(t,e,n){var r=t(“ee”).get(“raf”),o=t(23)(r),i=”equestAnimationFrame”;e.exports=r,o.inPlace(window,[“r”+i,”mozR”+i,”webkitR”+i,”msR”+i],”raf-“),r.on(“raf-start”,function(t){t[0]=o(t[0],”fn-“)})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],”fn-“,null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],”fn-“,this,n)}var i=t(“ee”).get(“timer”),a=t(23)(i),c=”setTimeout”,s=”setInterval”,f=”clearTimeout”,u=”-start”,d=”-“;e.exports=i,a.inPlace(window,[c,”setImmediate”],c+d),a.inPlace(window,[s],s+d),a.inPlace(window,[f,”clearImmediate”],f+d),i.on(s+u,r),i.on(c+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inPlace(e,[“onreadystatechange”],”fn-“,c)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit(“xhr-resolved”,[],t)),d.inPlace(t,y,”fn-“,c)}function i(t){b.push(t),l&&(x?x.then(a):v?v(a):(E=-E,P.data=E))}function a(){for(var t=0;t<b.length;t++)r([],b[t]);b.length&&(b=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t(“ee”),u=f.get(“xhr”),d=t(23)(u),p=NREUM.o,h=p.XHR,l=p.MO,m=p.PR,v=p.SI,w=”readystatechange”,y=[“onload”,”onerror”,”onabort”,”onloadstart”,”onloadend”,”onprogress”,”ontimeout”],b=[];e.exports=u;var g=window.XMLHttpRequest=function(t){var e=new h(t);try{u.emit(“new-xhr”,[e],e),e.addEventListener(w,o,!1)}catch(n){try{u.emit(“internal-error”,[n])}catch(r){}}return e};if(s(h,g),g.prototype=h.prototype,d.inPlace(g.prototype,[“open”,”send”],”-xhr-“,c),u.on(“send-xhr-start”,function(t,e){r(t,e),i(e)}),u.on(“open-xhr-start”,r),l){var x=m&&m.resolve();if(!v&&!m){var E=1,P=document.createTextNode(E);new l(a).observe(P,{characterData:!0})}}else f.on(“fn-end”,function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<d;r++)t.removeEventListener(u[r],this.listener,!1);if(!e.aborted){if(n.duration=a.now()-this.startTime,4===t.readyState){e.status=t.status;var i=o(t,this.lastSize);if(i&&(n.rxSize=i),this.sameOrigin){var s=t.getResponseHeader(“X-NewRelic-App-Data”);s&&(e.cat=s.split(“, “).pop())}}else e.status=0;n.cbTime=this.cbTime,f.emit(“xhr-done”,[t],t),c(“xhr”,[e,n,this.startTime])}}}function o(t,e){var n=t.responseType;if(“json”===n&&null!==e)return e;var r=”arraybuffer”===n||”blob”===n||”json”===n?t.response:t.responseText;return l(r)}function i(t,e){var n=s(e),r=t.params;r.host=n.hostname+”:”+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}var a=t(“loader”);if(a.xhrWrappable){var c=t(“handle”),s=t(16),f=t(“ee”),u=[“load”,”error”,”abort”,”timeout”],d=u.length,p=t(“id”),h=t(19),l=t(18),m=window.XMLHttpRequest;a.features.xhr=!0,t(14),f.on(“new-xhr”,function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,h&&(h>34||h<10)||window.opera||t.addEventListener(“progress”,function(t){e.lastSize=t.loaded},!1)}),f.on(“open-xhr-start”,function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),f.on(“open-xhr-end”,function(t,e){“loader_config”in NREUM&&”xpid”in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader(“X-NewRelic-ID”,NREUM.loader_config.xpid)}),f.on(“send-xhr-start”,function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=l(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{“abort”===t.type&&(o.params.aborted=!0),(“load”!==t.type||o.called===o.totalCbs&&(o.onloadCalled||”function”!=typeof e.onload))&&o.end(e)}catch(n){try{f.emit(“internal-error”,[n])}catch(r){}}};for(var c=0;c<d;c++)e.addEventListener(u[c],this.listener,!1)}),f.on(“xhr-cb-time”,function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&”function”==typeof n.onload||this.end(n)}),f.on(“xhr-load-added”,function(t,e){var n=””+p(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),f.on(“xhr-load-removed”,function(t,e){var n=””+p(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),f.on(“addEventListener-end”,function(t,e){e instanceof m&&”load”===t[0]&&f.emit(“xhr-load-added”,[t[1],t[2]],e)}),f.on(“removeEventListener-end”,function(t,e){e instanceof m&&”load”===t[0]&&f.emit(“xhr-load-removed”,[t[1],t[2]],e)}),f.on(“fn-start”,function(t,e,n){e instanceof m&&(“onload”===n&&(this.onload=!0),(“load”===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),f.on(“fn-end”,function(t,e){this.xhrCbStart&&f.emit(“xhr-cb-time”,[a.now()-this.xhrCbStart,this.onload,e],e)})}},{}],16:[function(t,e,n){e.exports=function(t){var e=document.createElement(“a”),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split(“://”);!r.port&&o[1]&&(r.port=o[1].split(“/”)[0].split(“@”).pop().split(“:”)[1]),r.port&&”0″!==r.port||(r.port=”https”===o[0]?”443″:”80″),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,r.protocol=o[0],”/”!==r.pathname.charAt(0)&&(r.pathname=”/”+r.pathname);var i=!e.protocol||”:”===e.protocol||e.protocol===n.protocol,a=e.hostname===document.domain&&e.port===n.port;return r.sameOrigin=i&&(!e.hostname||a),r}},{}],17:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var i=t(“handle”),a=t(20),c=t(21),s=t(“ee”).get(“tracer”),f=t(“loader”),u=NREUM;”undefined”==typeof window.newrelic&&(newrelic=u);var d=[“setPageViewName”,”setCustomAttribute”,”setErrorHandler”,”finished”,”addToTrace”,”inlineHit”,”addRelease”],p=”api-“,h=p+”ixn-“;a(d,function(t,e){u[e]=o(p+e,!0,”api”)}),u.addPageAction=o(p+”addPageAction”,!0),u.setCurrentRouteName=o(p+”routeName”,!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var l=r.prototype={createTracer:function(t,e){var n={},r=this,o=”function”==typeof e;return i(h+”tracer”,[f.now(),t,n],r),function(){if(s.emit((o?””:”no-“)+”fn-start”,[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw s.emit(“fn-err”,[arguments,this,t],n),t}finally{s.emit(“fn-end”,[f.now()],n)}}}};a(“setName,setAttribute,save,ignore,onEnd,getContext,end,get”.split(“,”),function(t,e){l[e]=o(h+e)}),newrelic.noticeError=function(t){“string”==typeof t&&(t=new Error(t)),i(“err”,[t,f.now()])}},{}],18:[function(t,e,n){e.exports=function(t){if(“string”==typeof t&&t.length)return t.length;if(“object”==typeof t){if(“undefined”!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if(“undefined”!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!(“undefined”!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],19:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[/s](d+.d+)/);o&&(r=+o[1]),e.exports=r},{}],20:[function(t,e,n){function r(t,e){var n=[],r=””,i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],21:[function(t,e,n){function r(t,e,n){e||(e=0),”undefined”==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],22:[function(t,e,n){e.exports={exists:”undefined”!=typeof window.performance&&window.performance.timing&&”undefined”!=typeof window.performance.timing.navigationStart}},{}],23:[function(t,e,n){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t(“ee”),i=t(21),a=”[email protected]“,c=Object.prototype.hasOwnProperty,s=!1;e.exports=function(t,e){function n(t,e,n,o){function nrWrapper(){var r,a,c,s;try{a=this,r=i(arguments),c=”function”==typeof n?n(r,a):n||{}}catch(f){p([f,””,[r,a,o],c])}u(e+”start”,[r,a,o],c);try{return s=t.apply(a,r)}catch(d){throw u(e+”err”,[r,a,d],c),d}finally{u(e+”end”,[r,a,s],c)}}return r(t)?t:(e||(e=””),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,e,o,i){o||(o=””);var a,c,s,f=”-“===o.charAt(0);for(s=0;s<e.length;s++)c=e[s],a=t[c],r(a)||(t[c]=n(a,f?c+o:o,i,c))}function u(n,r,o){if(!s||e){var i=s;s=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}s=i}}function d(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)c.call(t,o)&&(e[o]=t[o]);return e}function p(e){try{t.emit(“internal-error”,e)}catch(n){}}return t||(t=o),n.inPlace=f,n.flag=a,n}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,c,i):i()}function n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),c=l(n),s=c.length,f=0;f<s;f++)c[f].apply(a,r);var d=u[y[n]];return d&&d.push([b,n,r,a]),a}}function h(t,e){w[t]=l(t).concat(e)}function l(t){return w[t]||[]}function m(t){return d[t]=d[t]||o(n)}function v(t,e){f(t,function(t,n){e=e||”feature”,y[n]=e,e in u||(u[e]=[])})}var w={},y={},b={on:h,emit:n,get:m,listeners:l,context:e,buffer:v,abort:a,aborted:!1};return b}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var c=”[email protected]“,s=t(“gos”),f=t(20),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t(“ee”).get(“handle”);e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||”object”!==e&&”function”!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i=”[email protected]“,a=t(“gos”);e.exports=r},{}],loader:[function(t,e,n){function r(){if(!x++){var t=g.info=NREUM.info,e=p.getElementsByTagName(“script”)[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),s(“mark”,[“onload”,a()+g.offset],null,”api”);var n=p.createElement(“script”);n.src=”https://”+t.agent,e.parentNode.insertBefore(n,e)}}function o(){“complete”===p.readyState&&i()}function i(){s(“mark”,[“domContent”,a()+g.offset],null,”api”)}function a(){return E.exists&&performance.now?Math.round(performance.now()):(c=Math.max((new Date).getTime(),c))-g.offset}var c=(new Date).getTime(),s=t(“handle”),f=t(20),u=t(“ee”),d=window,p=d.document,h=”addEventListener”,l=”attachEvent”,m=d.XMLHttpRequest,v=m&&m.prototype;NREUM.o={ST:setTimeout,SI:d.setImmediate,CT:clearTimeout,XHR:m,REQ:d.Request,EV:d.Event,PR:d.Promise,MO:d.MutationObserver};var w=””+location,y={beacon:”bam.nr-data.net”,errorBeacon:”bam.nr-data.net”,agent:”js-agent.newrelic.com/nr-spa-1071.min.js”},b=m&&v&&v[h]&&!/CriOS/.test(navigator.userAgent),g=e.exports={offset:c,now:a,origin:w,features:{},xhrWrappable:b};t(17),p[h]?(p[h](“DOMContentLoaded”,i,!1),d[h](“load”,r,!1)):(p[l](“onreadystatechange”,o),d[l](“onload”,r)),s(“mark”,[“firstbyte”,c],null,”api”);var x=0,E=t(22)},{}]},{},[“loader”,2,15,5,3,4]); ;NREUM.info={beacon:”bam.nr-data.net”,errorBeacon:”bam.nr-data.net”,licenseKey:”ec7fe518a5″,applicationID:”270219472″,sa:1}        (function(h,o,t,j,a,r){         h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};         h._hjSettings={hjid:1186595,hjsv:6};         a=o.getElementsByTagName(‘head’)[0];         r=o.createElement(‘script’);r.async=1;         r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;         a.appendChild(r);     })(window,document,’https://static.hotjar.com/c/hotjar-‘,’.js?sv=’);               <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css”/>            iframe#_hjRemoteVarsFrame {display: none !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important;} #main{position:relative}body{min-width:320px;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5;color:#444;background-color:#fff;margin:0}a,button{color:#f99815;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;text-decoration:none}a:focus,a:hover,button:focus,button:hover{outline:none!important;text-decoration:none}input[type=checkbox]:focus,input[type=radio]:focus,input[type=reset]:focus,input[type=submit]:focus{outline:none}button[disabled],html input[disabled]{cursor:default}img{height:auto;max-width:100%;border:0}.fa,img{vertical-align:middle}.fa{line-height:1;display:inline-block;font-size:inherit;text-rendering:auto;position:relative}h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit;margin:0 0 10px}#app,body,html{min-height:100%}#app,.root.thread-window main,body,html{display:flex;flex-direction:column;flex-grow:1}.root.thread-window main{overflow:hidden}.root{min-height:100vh}.root,.root .app-content{display:flex;flex-direction:column;flex-grow:1}.root.thread-window{height:100%;position:absolute!important;top:0;bottom:0;min-height:50vh}.root.thread-window .app-content,.root.thread-window .col-sm-12,.root.thread-window .container>.row{display:flex;flex-direction:column;flex-grow:1;overflow:hidden}.root.thread-window .app-content{height:calc(100% – 50px)}#wrapper{overflow:hidden;width:100%;position:relative}.app-content{background-color:#fff}.fs-container{flex-grow:1;display:flex;flex-direction:column;width:100%}.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);border:0;margin:-1px;padding:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;margin:0}@font-face{font-family:Lato;font-display:optional;font-style:normal;font-weight:400;src:local(“Lato Regular”),local(Lato-Regular),url(/assets/stylesheets/fonts/lato-v14-latin-regular.6a6d715087a68ac5ad790b4f7bbb1766.eot?#iefix) format(embedded-opentype),url(/assets/stylesheets/fonts/lato-v14-latin-regular.f1a4a058fbba1e35a406188ae7eddaf8.woff2) format(woff2),url(/assets/stylesheets/fonts/lato-v14-latin-regular.62fb51e9e645f63599238881b9de15dd.woff) format(woff),url(/assets/stylesheets/fonts/lato-v14-latin-regular.da4b79be8c588f56351e4d6368fcdbe1.ttf) format(truetype),url(/assets/stylesheets/fonts/lato-v14-latin-regular.9087e4a6aceecc9b2914823044951a3a.svg#Lato) format(svg)}.inline,.inline-block{display:inline-block!important}.small-padding{padding:10px}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-size:10px;-webkit-tap-highlight-color:transparent}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}a{background-color:transparent;color:#f99815;text-decoration:none;cursor:pointer!important}abbr[title]{border-bottom:1px dotted}dfn{font-style:italic}h1{font-size:60px}mark{background:#ff0;color:#000;background-color:#fcf8e3;padding:.2em}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:0}hr{box-sizing:content-box;height:0;margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid #eee}pre{overflow:auto;display:block;font-size:13px;line-height:1.5;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px;margin:0 0 10.5px;padding:10px}code,kbd,pre,samp{font-size:1em;font-family:Menlo,Monaco,Consolas,Courier New,monospace}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{box-sizing:border-box;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{min-width:0;margin:0}fieldset,legend{border:0;padding:0}legend{display:block;width:100%;margin-bottom:21px;font-size:21px;line-height:inherit;color:#333;border-bottom:1px solid #e5e5e5}textarea{overflow:auto}table{border-collapse:collapse;border-spacing:0;background-color:transparent}td,th{padding:0}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a:focus,a:hover{color:#bd6e05}[role=button]{cursor:pointer}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:400;line-height:1;color:#777}h1 small,h2 small,h3 small{font-size:65%}h4,h5,h6{margin-top:10.5px;margin-bottom:10.5px}h4 small,h5 small,h6 small{font-size:75%}h2{font-size:40px}h3{font-size:45px}h4{font-size:42px}h5{font-size:33px}h6{font-size:24px}p{margin:0 0 10.5px}.text-right{text-align:right}.text-center{text-align:center}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.page-header{padding-bottom:9.5px;border-bottom:1px solid #eee;margin:42px 0 21px}ol,ul{margin-top:0;margin-bottom:10.5px}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:21px}dd,dt{line-height:1.5}dd{margin-left:0}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}blockquote{font-size:17.5px;border-left:5px solid #eee;margin:0 0 21px;padding:10.5px 21px}blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.5;color:#777}blockquote footer:before,blockquote small:before{content:”2014   A0″}address{margin-bottom:21px;font-style:normal;line-height:1.5}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}code,kbd{font-size:90%;padding:2px 4px}kbd{color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{font-size:100%;font-weight:700;box-shadow:none;padding:0}pre code{font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0;padding:0}.row{margin-left:-15px;margin-right:-15px}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=checkbox],input[type=radio]{line-height:normal;margin:1px90 0 0}input[type=range]{display:block;width:100%}output{padding-top:7px}.form-control,output{display:block;font-size:14px;line-height:1.5;color:#454545}.form-control{width:100%;height:80px;background-color:#fff;background-image:none;border:1px solid #fff;border-radius:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color box-shadow .15s ease-in-out ease-in-out .15s;padding:6px 12px}.form-control:focus{outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(51,51,51,.6);border-color:#333}.form-control::-moz-placeholder{color:#989898;opacity:1}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-group{margin-bottom:34px}.btn{display:inline-block;margin-bottom:0;font-weight:700;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;font-size:14px;line-height:1.5;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:6px 12px}.btn.focus,.btn:focus,.btn:hover{color:#fff;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#fff;background-color:#4f4b4d;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#fff;background-color:#353234;border-color:#8c8c8c}.btn-default:hover{color:#fff;background-color:#353234;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.btn-default.dropdown-toggle{color:#fff;background-color:#353234;background-image:none;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover{color:#fff;background-color:#232122;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#4f4b4d;border-color:#ccc}.btn-default .badge{color:#4f4b4d;background-color:#fff}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#286090;background-image:none;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#07bb25;border-color:#06a220}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#058a1b;border-color:#012808}.btn-success:hover{color:#fff;background-color:#058a1b;border-color:#046714}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#058a1b;background-image:none;border-color:#046714}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#046714;border-color:#012808}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#07bb25;border-color:#06a220}.btn-success .badge{color:#07bb25;background-color:#fff}.btn-warning{color:#fff;background-color:#f6911d;border-color:#f0850a}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#d77709;border-color:#754105}.btn-warning:hover{color:#fff;background-color:#d77709;border-color:#b56407}.btn-warning.active,.btn-warning:active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#d77709;background-image:none;border-color:#b56407}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#b56407;border-color:#754105}.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f6911d;border-color:#f0850a}[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#f99815}.nav .nav-divider{height:1px;overflow:hidden;background-color:#e5e5e5;margin:9.5px 0}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #fff}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.5;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:transparent transparent #fff}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#000;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container-fluid .jumbotron,.container .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{cursor:pointer;background:transparent;border:0;-webkit-appearance:none;padding:0}.filter-icon{color:#000;vertical-align:baseline}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;font-family:Lato,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2);padding:1px}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;margin:0;padding:8px 14px}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:””;border-width:10px}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:” “;bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:” “;left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:” “;top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:” “;right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.affix{position:fixed}.hidden,.hide,.visible-s,.visible-xs,.visible-xs-inline{display:none!important}.tab-content>.tab-pane.active,article,aside,details,figcaption,figure,footer,header,hgroup,input[type=file],main,menu,nav,section,summary{display:block}.tab-content>.tab-pane,[hidden],template{display:none}.open>a,a:active,a:hover{outline:0}b,dt,optgroup,strong{font-weight:700}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button,select[multiple],select[size],textarea.form-control{height:auto}*,:after,:before{box-sizing:border-box}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus,a:focus,input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:0 auto;outline-offset:-2px}.text-left,th{text-align:left}.nav>li.disabled>a,.text-muted{color:#777}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.nav:after,.nav:before,.row:after,.row:before{content:” “;display:table}.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.nav:after,.row:after{clear:both}.container,.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.form-control:-ms-input-placeholder{color:#989898}.form-control::-webkit-input-placeholder{color:#989898}.form-control::placeholder{color:#989898}.checkbox-inline.disabled,.checkbox.disabled label,.form-control[disabled],.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .checkbox label,fieldset[disabled] .form-control,fieldset[disabled] .radio-inline,fieldset[disabled] .radio label,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.col-sm-3,.col-sm-4,.col-sm-6,.col-sm-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.ie-warning{position:absolute;top:70px;color:red;z-index:1;text-align:center;width:100%}@media screen and (min-width:992px){@font-face{font-display:optional;font-family:Lato;font-style:italic;font-weight:900;src:local(“Lato Black Italic”),local(Lato-BlackItalic),url(/assets/stylesheets/fonts/lato-v14-latin-900italic.99e595934847d14520b869ef5d694e87.eot?#iefix) format(embedded-opentype),url(/assets/stylesheets/fonts/lato-v14-latin-900italic.fd67cf72cde7716bdadf8a3992b37fa2.woff2) format(woff2),url(/assets/stylesheets/fonts/lato-v14-latin-900italic.e792d6c62329e025ca1cbea793ba8de5.woff) format(woff),url(/assets/stylesheets/fonts/lato-v14-latin-900italic.02eeab523a12507846cc3a4212f408e7.ttf) format(truetype),url(/assets/stylesheets/fonts/lato-v14-latin-900italic.aee0b2e51f3dc857edbf75de430f8c00.svg#Lato) format(svg)}}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}.col-sm-3,.col-sm-4,.col-sm-6,.col-sm-12{float:left}.col-sm-3{width:25%}.col-sm-4{width:33.3333333333%}.col-sm-6{width:50%}.col-sm-12{width:100%}}@media (min-width:992px){.container{width:970px}}@media (min-width:1097px){.container{width:1080px}}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:80px}.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm>.input-group-btn>input[type=time].btn,.input-group-sm>input[type=date].form-control,.input-group-sm>input[type=date].input-group-addon,.input-group-sm>input[type=datetime-local].form-control,.input-group-sm>input[type=datetime-local].input-group-addon,.input-group-sm>input[type=month].form-control,.input-group-sm>input[type=month].input-group-addon,.input-group-sm>input[type=time].form-control,.input-group-sm>input[type=time].input-group-addon,.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg>.input-group-btn>input[type=time].btn,.input-group-lg>input[type=date].form-control,.input-group-lg>input[type=date].input-group-addon,.input-group-lg>input[type=datetime-local].form-control,.input-group-lg>input[type=datetime-local].input-group-addon,.input-group-lg>input[type=month].form-control,.input-group-lg>input[type=month].input-group-addon,.input-group-lg>input[type=time].form-control,.input-group-lg>input[type=time].input-group-addon,.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container-fluid .jumbotron,.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.btn.btn-warning:hover:not([disabled]){background:#a36115}@media (max-width:991px){h1{font-size:40px}h2{font-size:30px}.hidden-s{display:none!important}.visible-s{display:block!important}.ie-warning{position:static;font-size:28px}}@media (max-width:767px){.fs-container{background:#f7f6f2}.btn{font-size:13px;padding:2px 7px;min-width:100px;text-transform:none;border-radius:4px}body{font-size:14px}html{background:#ccc}h1{font-size:23px}h2{font-size:15px}.hidden-xs{display:none!important}.visible-xs{display:block!important}.visible-xs-inline{display:inline!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.col-sm-12{padding-left:0;padding-right:0}.root.thread-window .app-content{flex:1 1 auto}}.btn{border-radius:0;border:none;font-size:18px;text-transform:uppercase;min-width:158px;position:relative;padding:7px 12px 6px} @font-face{font-family:FontAwesome;src:url(/assets/stylesheets/fonts/fontawesome.fab2874c1ab5525195934d32d55df840.eot);src:local(“FontAwesome”),local(“Font-Awesome”),url(/assets/stylesheets/fonts/fontawesome.fab2874c1ab5525195934d32d55df840.eot?#iefix) format(“embedded-opentype”),url(data:application/octet-stream;base64,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) format(“woff2”),url(/assets/stylesheets/fonts/fontawesome.a3373ff0a0d83b8c0f759dd6ffb34b11.woff) format(“woff”),url(/assets/stylesheets/fonts/fontawesome.066dca9cda7331e819185767b04788c7.ttf) format(“truetype”),url(/assets/stylesheets/fonts/fontawesome.8128b5fff4928a789933c32360c53dc7.svg?#fontawesome) format(“svg”);font-weight:400;font-style:normal}[class*=” fa-“],[class^=fa-]{font-family:FontAwesome;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-times-circle:before{content:”F057″}.fa-question-circle:before{content:”F059″}.fa-plus:before{content:”F067″}.fa-question:before{content:”F128″}.fa-search:before{content:”F002″}.fa-star:before{content:”F005″}.fa-user:before{content:”F007″}.fa-check:before{content:”F00C”}.fa-close:before,.fa-remove:before,.fa-times:before{content:”F00D”}.fa-clock-o:before{content:”F017″}.fa-refresh:before{content:”F021″}.fa-pencil:before{content:”F040″}.fa-chevron-right:before{content:”F054″}.fa-exclamation-circle:before{content:”F06A”}.fa-calendar:before{content:”F073″}.fa-chevron-up:before{content:”F077″}.fa-chevron-down:before{content:”F078″}.fa-twitter:before{content:”F099″}.fa-facebook-f:before,.fa-facebook:before{content:”F09A”}.fa-bell-o:before{content:”F0A2″}.fa-filter:before{content:”F0B0″}.fa-paperclip:before{content:”F0C6″}.fa-google-plus:before{content:”F0D5″}.fa-angle-left:before{content:”F104″}.fa-angle-right:before{content:”F105″}.fa-spinner:before{content:”F110″}.fa-circle:before{content:”F111″}.fa-paypal:before{content:”F1ED”} .social-networks{list-style:none;float:left;border-color:#b5b5b5;border-style:solid;border-width:0 1px;margin:2px 0 0 38px;padding:0 17px}.social-networks li{display:inline-block;vertical-align:middle;font-size:22px;line-height:1;padding:2px 5px 4px}.social-networks li .fa-twitter{font-size:26px}.social-networks li .fa-google-plus{font-size:22px}.social-networks a{color:#4f4b4d;display:block;width:30px;height:30px;border-radius:100%;overflow:hidden;text-align:center;line-height:28px;text-shadow:0 0 1px #fff}.social-networks a:focus,.social-networks a:hover{background:#f8941f}@media (max-width:1559px){.social-networks{margin-top:0}.social-networks li{padding:0 3px}}@media (max-width:1359px){.social-networks{margin-left:10px;padding:0 5px}}@media (max-width:1096px){.social-networks li{font-size:17px}.social-networks li .fa-twitter{font-size:20px}.social-networks li .fa-google-plus{font-size:16px}.social-networks a{width:24px;height:24px;line-height:21px}}@media (max-width:991px){.social-networks{display:none}} #header .logo-hold{float:left;width:369px;padding-top:1px}#header .logo-hold img{width:100%}#header .left-block .logo-hold{transition:transform .6s ease}@media (max-width:1559px){#header .logo-hold{width:250px;padding-top:3px}}@media (max-width:1096px){#header .logo-hold{width:170px;padding-top:4px}}@media (max-width:991px){#header .left-block .logo-hold{height:30px;width:30px;padding:0}}@media (max-width:767px){#header .logo-hold{width:146px;padding:7px 0 0 3px}}@media (max-width:374px){#header .logo-hold{width:115px;padding-top:8px}} #header .left-block{float:left;max-width:750px;display:flex;padding:20px 0 0 15px}@media (max-width:991px){#header .left-block{padding:0;align-items:center;bottom:0;position:absolute;left:10px;top:0;z-index:1}}@media (max-width:767px){#header .left-block{left:5px}}@media (max-width:639px){#header .left-block{left:5px!important}}@media (max-width:374px){#header .left-block{left:0}} .is-open{display:flex;align-items:center;position:relative}.activities .is-open,.right-block .logged-in .is-open{height:70px}.bids-popup .is-open{position:static}.popup-filter .is-open,.wrap-row-1.funds .is-open{height:auto}.select-area{position:relative;text-align:left;border-bottom:none;padding:0}.answer-form-container{margin-bottom:50px}.relative{position:relative}.popup-filter{display:inline-block;width:auto}.chat-section .content-area .thread-action-button{position:relative;display:inline-block;padding:10px 3px}.bids-popup{position:relative;width:50px;margin:0 auto}#header .sub-nav>ul>li.logged-in.logged-in-active>a{color:#464646}.logged-in-active>a{color:#464646!important}@media (max-width:991px){.select-area{padding-right:7px;padding-left:5px}.activities .is-open,.right-block .logged-in .is-open{height:60px}}@media (max-width:767px){.select-area{padding-left:0;padding-right:5px}.activities .is-open{height:50px;margin-top:-4px}.popup-filter .is-open,.wrap-row-1.funds .is-open{height:auto;margin-top:0}.bids-popup{position:static}.answer-form-container{margin-bottom:20px}}@media (max-width:639px){.bids-popup{width:auto}}@media (max-width:556px){.select-area{width:60px}} #header .activities .count{width:23px;height:27px!important;border-radius:100%;color:#fff;text-align:center;font-size:18px;font-weight:400;position:absolute;background:#195a76;line-height:25px!important;left:38px;bottom:21px}#header .activities>ul>li.dispute-notification .count{display:none}#header .activities>ul>li.dispute-notification.active .count{display:inline}.bids-popup .total-unread-message-count .count.notification-count{background:inherit}.count.notification-count{display:inline-block!important;position:relative!important;left:auto!important;bottom:auto!important;width:auto!important;height:auto!important;border-radius:20px!important;line-height:normal!important;color:#fff;text-align:center;font-weight:400;background:#195a76;font-size:18px!important;padding:2px 8px!important}@media (max-width:991px){#header .activities .count{font-size:10px;width:15px;height:20px!important;line-height:20px!important;left:30px;bottom:16px}.count.notification-count{font-size:15px!important;right:2px;top:1px;padding:1px 7px!important}}@media (max-width:767px){.count.notification-count{font-size:9px!important;top:auto;bottom:1px!important}.notification .unread-message-count .notification-count{font-size:9px!important}}@media (max-width:639px){#header .activities .count{font-size:8px;left:20px;bottom:10px;width:12px;height:17px!important;line-height:17px!important}} #header .sub-nav .link-hold{position:relative;display:inline-block;vertical-align:middle;margin-right:20px}#header .activities>ul>li .link-hold a{display:block;position:relative;transition:none}.bids-popup .link-hold a{background:#195a76;font-size:14px;font-weight:700;color:#fff;min-width:35px;min-height:24px;border-radius:12px;display:inline-block;vertical-align:top;position:relative;z-index:0;padding:4px 5px}.bids-popup .link-hold:after,.bids-popup .link-hold:before{width:205px;top:100%;margin-top:-7px;content:””;background:#fff;position:absolute;right:60px;height:24px;box-shadow:0 0 3px 0 rgba(0,0,0,.3);display:none}.bids-popup .link-hold:after{left:60px}.bids-popup .link-hold .top-bar{position:absolute;left:50%;top:100%;width:74px;height:26px;transform:translateX(-50%);margin-top:-7px;display:none;overflow:hidden;z-index:111}.bids-popup .link-hold .top-bar:after{position:absolute;bottom:8px;left:0;right:0;content:””;height:150px;box-shadow:-100px 37px 0 #fff,100px 37px 0 #fff,0 37px 0 #fff,0 37px 0 80px #fff,inset 0 0 3px 0 rgba(0,0,0,.3);border-radius:0;z-index:111}@keyframes fadeIn{0%{opacity:0}to{opacity:.7}}.overlay.active{animation-name:fadeIn;animation-duration:.5s;animation-fill-mode:forwards}.active .link-hold .triangle-up{position:absolute;margin:auto;bottom:-23px;left:50%;width:17px;height:17px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);border-right:1px solid #efefef;border-bottom:1px solid #efefef;background:#f6911d}.bids-popup .triangle-up{display:none}#header .activities .icon-hold{height:38px;width:37px;display:block;position:relative;margin:0 auto}#header .activities .icon-hold img{width:100%;position:absolute;left:50%;bottom:0;transform:translateX(-50%)}#header .activities>ul>li .total-unread-message-count{position:absolute;top:-20%;left:62%;height:70px}#header .activities>ul>li .total-unread-message-count .title{position:relative!important;left:auto!important;bottom:auto!important;margin-left:3px;padding:0!important}.bids-popup .total-unread-message-count .count.notification-count{background:inherit}#header .activities .title{position:absolute;left:100%;font-size:14px;font-weight:900;color:#464646;text-transform:capitalize;padding-left:20px;bottom:19px}#header .activities>ul>li.active .link-hold .top-bar,#header .activities>ul>li.active .link-hold:after,#header .activities>ul>li.active .link-hold:before,#header .activities>ul>li div.active .link-hold .top-bar,#header .activities>ul>li div.active .link-hold:after,#header .activities>ul>li div.active .link-hold:before,#header .sub-nav>ul>li.logged-in.logged-in-active .link-hold:after,#header .sub-nav>ul>li.logged-in.logged-in-active .link-hold:before,.bids-popup .slide.open{display:block}.bids-popup.active .link-hold>a,.bids-popup .link-hold a:hover{background:#f6911d}.bids-popup.active .link-hold:after,.bids-popup.active .link-hold:before,.bids-popup.active .top-bar{display:none}@media (max-width:1559px){.bids-popup .link-hold:after,.bids-popup .link-hold:before{width:400px}.bids-popup .link-hold:after{width:10px}#header .activities .title{padding-left:10px}}@media (max-width:1096px){#header .sub-nav .link-hold{margin-right:10px}#header .activities .title{display:none}}@media (max-width:991px){#header .sub-nav .link-hold{margin-right:5px}#header .activities .icon-hold{width:22px;height:22px}#header .activities>ul>li .link-hold a{margin-top:10px}}@media (max-width:767px){#header .sub-nav .link-hold{margin-right:0}.active .link-hold .triangle-up{display:none}.bids-popup .link-hold{max-width:41px;margin:0 auto}.bids-popup .link-hold a{font-size:11px;min-width:30px;min-height:10px;padding:4px 2px}.bids-popup .link-hold:after,.bids-popup .link-hold:before{left:-99999px;width:auto;background:#fff;box-shadow:none;margin-top:-5px;right:40px}.bids-popup .link-hold:after{right:-9999px;width:auto;background:#fff;left:39px}.bids-popup .link-hold .top-bar{height:13px;width:40px;margin:-5px 0 0 -1px}.bids-popup .link-hold .top-bar:after{border-radius:15px;bottom:2px;box-shadow:-100px 37px 0 #fff,100px 37px 0 #fff,0 37px 0 #fff,0 37px 0 80px #fff}#header .activities>ul>li .link-hold a .icon-hold{width:26px;height:32px;padding-bottom:3px}}@media (max-width:639px){#header .activities .icon-hold{width:16px;height:16px;padding-bottom:3px}#header .activities .icon-hold img{bottom:4px}} [data-scrollbar],[scrollbar],scrollbar{display:block;position:relative}[data-scrollbar] .scroll-content,[scrollbar] .scroll-content,scrollbar .scroll-content{-webkit-transform:translateZ(0);transform:translateZ(0)}[data-scrollbar].sticky .scrollbar-track,[scrollbar].sticky .scrollbar-track,scrollbar.sticky .scrollbar-track{background:hsla(0,0%,87%,.75)}[data-scrollbar] .scrollbar-track,[scrollbar] .scrollbar-track,scrollbar .scrollbar-track{position:absolute;opacity:0;z-index:1;transition:opacity .5s ease-out,background .5s ease-out;background:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}[data-scrollbar] .scrollbar-track.show,[data-scrollbar] .scrollbar-track:hover,[scrollbar] .scrollbar-track.show,[scrollbar] .scrollbar-track:hover,scrollbar .scrollbar-track.show,scrollbar .scrollbar-track:hover{opacity:1}[data-scrollbar] .scrollbar-track:hover,[scrollbar] .scrollbar-track:hover,scrollbar .scrollbar-track:hover{background:hsla(0,0%,87%,.75)}[data-scrollbar] .scrollbar-track-x,[scrollbar] .scrollbar-track-x,scrollbar .scrollbar-track-x{bottom:0;left:0;width:100%;height:8px}[data-scrollbar] .scrollbar-track-y,[scrollbar] .scrollbar-track-y,scrollbar .scrollbar-track-y{top:0;right:0;width:8px;height:100%}[data-scrollbar] .scrollbar-thumb,[scrollbar] .scrollbar-thumb,scrollbar .scrollbar-thumb{position:absolute;top:0;left:0;width:8px;height:8px;background:rgba(0,0,0,.5);border-radius:4px}[data-scrollbar] .overscroll-glow,[scrollbar] .overscroll-glow,scrollbar .overscroll-glow{position:absolute;top:0;left:0;width:100%;height:100%} .root.thread-window .infinite-scroll-list{flex-grow:1}.chat-preview-list .infinite-scroll-list,.root.thread-window .infinite-scroll-list{display:flex;flex-direction:column;overflow:hidden}.infinite-scroll-list-container .infinite-scroll-list{flex-grow:1;width:100%}.root.thread-window .scroll-content{display:flex;flex-direction:column;flex-grow:1}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul{list-style:none;padding:0}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status{width:100%;text-align:center!important;font-size:22px!important;margin:0!important;padding:7px}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status .fa{font-size:30px!important}#header .slide .chat-list,#header .slide .notification-group-list,.bids-popup .slide .notification-group-list{list-style:none;margin:0;padding:0}#header .slide .chat-list{font-size:12px;line-height:1;padding-top:0;margin-top:0}#header .slide .chat-list li{position:relative;border-top:none;background:#fafafa}#header .slide .chat-list a{display:table;width:100%;color:#404041}#header .slide .chat-list p{margin:0}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-row,.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul>span{width:100%}#header .slide .notification-group-list,.bids-popup .slide .notification-group-list{border-left:15px}@media (max-width:767px){.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status{font-size:18px!important;padding:5px}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status .fa{font-size:22px!important}#header .slide .chat-list{font-size:11px;line-height:1;border-left-width:7px}#header .slide .chat-list a:hover{background:#fff}}@media (max-width:639px){.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status{font-size:14px!important;padding:3px}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status .fa{font-size:18px!important}#header .slide .chat-list{font-size:11px;padding-bottom:0}#header .slide .chat-list li{margin:0 10px}} .hwmkt-loader{width:40px;height:40px;-webkit-animation:spin .8s linear infinite;animation:spin .8s linear infinite;margin:5px}@-webkit-keyframes spin{to{-webkit-transform:rotate(1turn)}}@keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loading-screen{height:100%;width:100%;position:absolute;top:0;left:0;text-align:center}.loading-screen .hwmkt-loader{position:absolute;top:0;right:0;bottom:0;left:0;height:60px;width:60px;margin:auto}.loading-screen.full-screen{position:fixed;z-index:2}.loading-screen.full-screen .hwmkt-loader{height:80px;width:80px}.blurred-layer{height:100%;opacity:.7;background:#fff}@media (max-width:767px){.hwmkt-loader{width:25px;height:25px}.loading-screen .hwmkt-loader{width:30px;height:30px}.loading-screen.full-screen .hwmkt-loader{width:65px;height:65px}} .root.thread-window .infinite-scroll-list-container{display:flex;flex-direction:column;flex-grow:1;overflow:hidden}.infinite-scroll-list-container{width:100%;display:flex;flex-direction:column}.chat-preview-list{max-height:400px;flex-grow:1;overflow:hidden}.content{overflow:hidden;width:100%}.top-section .content{max-width:930px;overflow:hidden;color:#989898;margin:0 auto 72px}.top-section .content h1{color:#fff;font-weight:400;margin-bottom:56px;text-align:center}.tutorial-page .content{border:1px solid #717172;background:#f0f0f0;padding:7px}.tutorial-page .col-r .content{padding:20px}.tutorial-page .same-height-left{height:84vh}.list-items-transition-enter{opacity:.01}.list-items-transition-enter.list-items-transition-enter-active{opacity:1;transition:opacity .2s ease-in}.list-items-transition-leave{opacity:1}.list-items-transition-leave.list-items-transition-leave-active{opacity:.1;transition:opacity .2s ease-in}.root.thread-window .scroll-content{display:flex;flex-direction:column;flex-grow:1}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-row{width:100%}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status{width:100%;text-align:center!important;font-size:22px!important;margin:0!important;padding:7px}#header .slide .chat-list .chat-preview-item a{border-top:none;border-bottom:1px solid #ebebeb}#header .slide .chat-list .chat-preview-item:first-child{border-top:1px solid #ebebeb}@media (max-width:1559px){.tutorial-page .col-r .content{padding:10px}}@media (max-width:767px){.root.thread-window .infinite-scroll-list-container{flex:1 1 auto}.top-section .content{margin-bottom:4px}.top-section .content h1{margin-bottom:23px}.tutorial-page .height{height:auto!important}.tutorial-page .content{background:none;border:none;padding:0}.tutorial-page .col-r .content{padding-bottom:0}.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status{font-size:18px!important;padding:5px}#header .slide .chat-list .chat-preview-item{margin-left:0}}@media (max-width:639px){.infinite-scroll-list-container .infinite-scroll-list .scroll-content>ul .list-status{font-size:14px!important;padding:3px}} #header .activities .btn-close,#header .profile-slide .btn-close{font-size:30px;position:absolute;top:3px;right:5px;color:#333;font-weight:700;transform:rotate(90deg)}#header .activities .btn-close{top:1px;z-index:1}#header .activities .btn-close:hover,#header .profile-slide .btn-close:hover{color:#f99815}#header .activities .btn-close .fa-times{font-size:inherit!important}@media (max-width:991px){#header .activities .btn-close,#header .profile-slide .btn-close{font-size:25px;right:8px;top:-2px}}@media (max-width:767px){#header .activities .wrapper .btn-close,#header .profile-slide .wrapper .btn-close{top:3px}} #header .slide{width:474px;position:absolute;left:50%;top:100%;transform:translateX(-50%);box-shadow:0 0 3px 0 rgba(0,0,0,.3);text-align:left;font-size:14px;line-height:21px;color:#404041;z-index:11;white-space:normal;display:block}.triangle-container{position:relative;width:100%}#header .activities>ul>li .close-chat-button{height:30px}.bids-popup .slide{width:480px;position:absolute;left:50%;top:-150px;transform:translateX(-50%);box-shadow:0 0 3px 0 rgba(0,0,0,.3);text-align:left;font-size:14px;line-height:21px;color:#404041;white-space:normal}.bids-popup.active .slide,.bids-popup .slide{display:block;z-index:111}.open-close .slide{position:absolute;top:100%;display:block;left:10px;width:336px;box-shadow:0 0 4px 0 rgba(0,0,0,.3);text-align:left;z-index:2;margin-top:33px;padding:8px 28px 12px}.open-close .slide:before{content:””;position:absolute;top:0;left:0;right:0;bottom:0;background:#fff;z-index:-1}.open-close .slide [type=submit]{display:inline-block;vertical-align:top;width:auto;height:19px;line-height:1;min-width:0;transition:background .3s linear;margin:13px 0 3px;padding:0 12px 1px}#header .slide .wrapper{background:#fff;position:relative;border-top:2px solid #f6911d}.bids-popup .slide .wrapper{background:#fff;position:relative;padding-top:14px}#header .slide .head{width:100%}#header .slide .head .mark-read{position:absolute;top:5px;left:10px}.bids-popup .slide .head{position:absolute;top:-8px;width:100%;left:0;padding:0 45px 3px 21px}#header .slide .head .btn-close{font-size:30px;position:absolute;top:-6px;right:12px;color:#333;font-weight:400;transform:rotate(-90deg)}#header .profile-slide .btn-close{font-size:30px;position:absolute;top:3px;right:5px;color:#333;font-weight:700;transform:rotate(90deg)}.bids-popup .slide .head .btn-close{font-size:30px;position:absolute;top:-13px;color:#333;font-weight:700;transform:rotate(-90deg);right:10px}.bids-popup .slide.open{display:block}#header .slide .scrollbar{overflow-y:auto;display:flex;max-height:none!important}.bids-popup .slide .scrollbar{overflow-y:auto;max-height:400px}#header .slide .chat-list,#header .slide .notification-group-list,.bids-popup .slide .notification-group-list{list-style:none;margin:0;padding:0}#header .slide .chat-list{font-size:12px;line-height:1;padding-top:0;margin-top:0}#header .slide .chat-list li{position:relative;border-top:none;background:#fafafa}#header .slide .chat-list a{display:table;width:100%;color:#404041}#header .slide .chat-list p{margin:0}#header .slide .chat-list .description p{font-style:italic;font-size:14px}#header .slide .chat-list .bid-chat-preview .description p,#header .slide .chat-list .dispute-chat-preview .description p{max-height:95px;overflow:hidden;text-overflow:clip}#header .slide .chat-list .chat-preview-item>div,.bids-popup .chat-preview-item>ul{border-top:1px solid #f5911d}#header .slide .chat-list .chat-preview-item:first-child>div{border-top:none}#header .slide .chat-list .chat-preview-item a{border-top:none;border-bottom:1px solid #ebebeb}#header .slide .chat-list .chat-preview-item:first-child{border-top:1px solid #ebebeb}#header .profile-slide .btn-close:hover,#header .slide .head .btn-close:hover,.bids-popup .slide .head .btn-close:hover{color:#f99815}#header .slide .notification-group-list,.bids-popup .slide .notification-group-list{border-left:15px}@media (max-width:1559px){.bids-popup .slide{right:-20px;left:auto;transform:translateX(0)}.open-close .slide{left:auto;right:10px}.bids-popup .slide .head .btn-close{top:-6px;right:0}#header .slide .scrollbar{max-height:550px}.bids-popup .slide .scrollbar{margin-top:10px}}@media (max-width:991px){#header .slide{box-shadow:0 0 2px 0 rgba(0,0,0,.3)}#header .activities>ul>li .close-chat-button{height:25px}#header .slide .head .btn-close{top:2px;font-size:25px;right:8px}#header .profile-slide .btn-close{font-size:25px;right:8px;top:-2px}.bids-popup .slide .head .btn-close{top:2px;font-size:25px;right:2px}.bids-popup .slide .head{top:-9px}}@media (max-width:767px){#header .slide{width:97vw;box-shadow:0 0 2px 0 rgba(0,0,0,.3);top:50px!important;right:0;transform:translateX(-50%);position:fixed}.bids-popup .slide{width:100%;right:0;left:0;box-shadow:none;top:38px}.open-close .slide{left:50%;right:auto;transform:translateX(-50%);margin-top:21px;width:300px;padding:8px}.open-close .slide [type=submit]{margin-top:0}.bids-popup .slide .head .btn-close{top:7px}#header .slide .scrollbar,.bids-popup .slide .scrollbar{max-height:335px}#header .slide .chat-list{font-size:11px;line-height:1;border-left-width:7px}#header .slide .chat-list a{padding:10px 10px 15px!important}#header .slide .chat-list a:hover{background:#fff}#header .slide .chat-list .chat-preview-item{margin-left:0}}@media (max-width:639px){#header .slide .head .btn-close{top:-11px}.bids-popup .slide .head .btn-close{top:-5px}#header .slide .chat-list{font-size:11px;padding-bottom:0}#header .slide .chat-list .bid-chat-preview .description p,#header .slide .chat-list .dispute-chat-preview .description p{max-height:70px}#header .slide .chat-list li{margin:0 10px}.bids-popup .slide .head{top:0}} #header .slide .chat-list .action.message .fa{color:#acacac}#header .slide .chat-list .action .fa{font-size:10px;line-height:1;color:#77c80f;margin-left:6px;display:inline-block;vertical-align:middle}.chat-btn .fa{vertical-align:baseline}.user-status{font-size:15px!important;line-height:12px;margin-right:6px;vertical-align:middle}.admin-des .user-status{margin-right:0}.user-status.online-user{color:#77c80f!important}.user-status.offline-user{color:silver!important}.student-page .header .action .fa{color:#73ca00;font-size:16px;line-height:1;margin-right:5px}@media (max-width:767px){.chat-btn .fa{font-size:10px;border-radius:100%;box-shadow:0 0 3px rgba(0,0,0,.16)}.user-status{font-size:12px!important;margin-right:4px}.admin-info-header .admin-des .user-status{margin-left:48%}}@media (max-width:639px){#header .slide .chat-list .action .fa{font-size:6px;position:absolute;right:6px;top:50%;transform:translateY(-50%);margin-top:-1px}} #header .slide .chat-list .description,.bids-popup .slide .notification-group-list .notification-list .description{overflow:hidden;padding:15px 5px 10px 15px;display:table-cell;width:65%;vertical-align:top;height:100%}#header .slide .notification-group-list .notification-list .description{overflow:hidden;position:relative;padding:15px 5px 10px 15px}.slide .notification .user-info{width:35%;display:table-cell;text-align:center;vertical-align:top;padding:15px 5px 30px 15px;border-right:1px solid #ebebeb}#header .slide .chat-list .name,#header .slide .notification-group-list .notification-list .name,.bids-popup .slide .notification-group-list .notification-list .name{font-size:14px;margin:7px 0;line-height:21px;display:block;font-weight:700;text-transform:capitalize}#header .slide .chat-list .star-rating{font-size:12px;line-height:1.2;display:flex;align-items:center;margin:0 0 14px -3px}#header .slide .chat-list .avatar-hold,#header .slide .notification-group-list .notification-list .avatar-hold,.bids-popup .slide .notification-group-list .notification-list .avatar-hold{width:79px;border:3px solid #f6911d;overflow:hidden;height:79px;border-radius:100%;margin:0 auto}#header .slide .chat-list .name a,#header .slide .notification-group-list .notification-list .name a,.bids-popup .slide .notification-group-list .notification-list .name a{color:#404041}#header .slide .chat-list .name a:hover,#header .slide .notification-group-list .notification-list .name a:hover,.bids-popup .slide .notification-group-list .notification-list .name a:hover{color:#f99815}#header .slide .chat-list .star-rating,#header .slide .notification-group-list .star-rating,.bids-popup .slide .notification-group-list .notification-list .star-rating{font-size:12px;line-height:1.2;display:flex;align-items:center;margin:5px 0 11px}@media (max-width:767px){.bids-popup .slide .notification-group-list .notification-list .name{font-size:14px}#header .slide .chat-list .name{font-size:12px}#header .slide .notification-group-list .notification-list .name{font-size:12px;margin-bottom:5px}}@media (max-width:639px){#header .slide .chat-list .star-rating{font-size:11px;margin-bottom:4px}#header .slide .chat-list .name{font-size:12px}#header .slide .chat-list .description{padding:15px 0 5px 8px}#header .slide .chat-list .avatar-hold,#header .slide .notification-group-list .notification-list .avatar-hold,.bids-popup .slide .notification-group-list .notification-list .avatar-hold{width:43px;height:43px;margin-top:0;border-width:3px}#header .slide .chat-list .star-rating,#header .slide .notification-group-list .star-rating,.bids-popup .slide .notification-group-list .notification-list .star-rating{margin:0}#header .slide .notification-group-list .notification-list .description,.bids-popup .slide .notification-group-list .notification-list .description{padding:0 0 5px 8px}} .notification>a{height:100%}.notification,.notification .question-title{position:relative}.notification .triangle-down{z-index:1;position:absolute;margin:auto;bottom:-10px;right:30px;width:20px;height:20px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);border-right:1px solid #efefef;border-bottom:1px solid #efefef;background:#fafafa}.notification.unread-notification .triangle-down{background:#fff}.notification:hover .triangle-down{background:#f9f2eb}.notification .description .wrap{position:relative;display:block;height:100%}.notification .unread-message-count{position:absolute;top:8px;right:8px;color:#f4982d}.notification .unread-message-count+a .description{padding-right:30px!important}.notification .main-title{border-bottom:1px solid #ebebeb;text-align:center}.header-bids .notification .main-title{border-bottom:0}.notification:hover .main-title{background:transparent!important}#header .slide .main-title span{text-transform:uppercase}.bids-popup .slide .main-title span{padding-right:1em;text-transform:inherit}#header .activities>ul>li.style-1 .slide .main-title{color:#404041;font-weight:400;padding-top:0;padding-bottom:23px;margin-top:4px}.main-title span{padding-right:1em}.notification.unread-notification .main-title,.notification.unread-notification a{background:#fff!important}.notification:hover.unread-notification .main-title,.notification:hover.unread-notification a{background:transparent!important}.notification:hover{background:#f9f2eb!important}.notification:hover>*{background:transparent!important}#header .slide .chat-list div.unread-notification,#header .slide .notification-group-list .notification-list div.unread-notification,.bids-popup .slide .notification-group-list .notification-list div.unread-notification{background:#eaeaea}#header .slide .main-title,.bids-popup .slide .main-title{font-size:14px;line-height:18px;font-weight:700;color:#f6911d;padding:26px 10px 17px 21px}#header .slide .header-bids .main-title{font-weight:400}#header .slide .main-title.has-unread-msg,.bids-popup .slide .main-title.main-title.has-unread-msg{padding-right:30px}#header .slide .main-title p,.bids-popup .slide .main-title p{margin:0}@media (max-width:991px){#header .activities>ul>li.style-1 .slide .main-title{margin-top:0;padding-bottom:16px}}@media (max-width:767px){.notification .unread-message-count{top:6px;right:4px}.notification .unread-message-count .notification-count{font-size:9px!important}#header .slide .main-title,.bids-popup .slide .main-title{font-size:13px;line-height:15px;padding:25px 10px}} #header .slide .chat-list .wrap .info,#header .slide .notification-group-list .notification-list .wrap .info,.bids-popup .slide .notification-group-list .notification-list .wrap .info{padding:5px 14px 20px;display:inline-flex}#header .slide .chat-list .wrap .price-hold,#header .slide .notification-group-list .notification-list .wrap .price-hold,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold{padding-right:10px;padding-left:14px;position:absolute;bottom:10px;left:0}.price-hold.green-font{color:#07bb25}.slide .price-hold .now,.slide .price-hold .when-done{display:inline-flex;vertical-align:top;text-transform:capitalize}.slide .price-hold .now{padding-right:30px}#header .slide .chat-list .wrap .price-hold.green-font span,#header .slide .notification-group-list .notification-list .wrap .price-hold.green-font span,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold.green-font span{color:#07bb25}#header .slide .chat-list .wrap .price-hold span,#header .slide .notification-group-list .notification-list .wrap .price-hold span,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold span{font-size:18px;line-height:24px;color:#f6911d}@media (max-width:639px){#header .slide .chat-list .wrap .price-hold,#header .slide .notification-group-list .notification-list .wrap .price-hold,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold{padding-right:5px;padding-left:5px}#header .slide .chat-list .wrap .price-hold span,#header .slide .notification-group-list .notification-list .wrap .price-hold span,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold span{font-size:12px;line-height:1}#header .slide .chat-list .wrap .info,#header .slide .notification-group-list .notification-list .wrap .info,.bids-popup .slide .notification-group-list .notification-list .wrap .info{padding:2px 5px 15px}} #header .slide .chat-list .wrap .price-hold,#header .slide .notification-group-list .notification-list .wrap .price-hold,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold{padding-right:10px;padding-left:14px;position:absolute;bottom:10px;left:0}#header .slide .chat-list .wrap .price-hold span,#header .slide .notification-group-list .notification-list .wrap .price-hold span,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold span{font-size:18px;line-height:24px;color:#f6911d}@media (max-width:639px){#header .slide .chat-list .wrap .price-hold,#header .slide .notification-group-list .notification-list .wrap .price-hold,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold{padding-right:5px;padding-left:5px}#header .slide .chat-list .wrap .price-hold span,#header .slide .notification-group-list .notification-list .wrap .price-hold span,.bids-popup .slide .notification-group-list .notification-list .wrap .price-hold span{font-size:12px;line-height:1}} .dispute-status{font-weight:700;margin:1px 0;font-size:18px;color:#f6911d;padding-left:14px;text-transform:uppercase;position:absolute;bottom:10px}.dispute-status .green-font{color:#07bb25}@media (max-width:639px){.dispute-status{padding-left:5px;font-size:12px}} #header .slide .chat-list .wrap .info,#header .slide .notification-group-list .notification-list .wrap .info,.bids-popup .slide .notification-group-list .notification-list .wrap .info{padding:5px 14px 20px;display:inline-flex}@media (max-width:639px){#header .slide .chat-list .wrap .info,#header .slide .notification-group-list .notification-list .wrap .info,.bids-popup .slide .notification-group-list .notification-list .wrap .info{padding:2px 5px 15px}} #header .activities>ul>li.wide-count+li{margin-left:30px} .notification>a{height:100%}#header .slide .main-title span{text-transform:uppercase}.bids-popup .slide .main-title span{padding-right:1em;text-transform:inherit}#header .activities>ul>li.style-1 .slide .main-title{color:#404041;font-weight:400;padding-top:0;padding-bottom:23px;margin-top:4px}.main-title span{padding-right:1em}.notification .main-title{border-bottom:1px solid #ebebeb;text-align:center}.notification:hover .main-title{background:transparent!important}.notification .unread-message-count{position:absolute;top:8px;right:8px;color:#f4982d}.notification .unread-message-count+a .description{padding-right:30px!important}.notification.unread-notification .main-title,.notification.unread-notification a{background:#fff!important}.notification:hover.unread-notification .main-title,.notification:hover.unread-notification a{background:transparent!important}.notification:hover{background:#f9f2eb!important}.notification:hover>*{background:transparent!important}#header .slide .chat-list div.unread-notification,#header .slide .notification-group-list .notification-list div.unread-notification,.bids-popup .slide .notification-group-list .notification-list div.unread-notification{background:#eaeaea}#header .slide .main-title,.bids-popup .slide .main-title{font-size:14px;line-height:18px;font-weight:700;color:#f6911d;padding:26px 10px 17px 21px}#header .slide .main-title.has-unread-msg,.bids-popup .slide .main-title.main-title.has-unread-msg{padding-right:30px}#header .slide .main-title p,.bids-popup .slide .main-title p{margin:0}@media (max-width:991px){#header .activities>ul>li.style-1 .slide .main-title{margin-top:0;padding-bottom:16px}}@media (max-width:767px){.notification .unread-message-count{top:6px;right:4px}#header .slide .main-title,.bids-popup .slide .main-title{font-size:13px;line-height:15px;padding:25px 10px}} #header .slide .chat-list,#header .slide .notification-group-list .notification-list,#header .slide .notification-list,.bids-popup .slide .notification-list{list-style:none;margin:0;padding:0}#header .slide .notification-group-list .notification-list li,.bids-popup .slide .notification-group-list .notification-list li{border-top:1px solid #ebebeb;position:relative;background:#fafafa}#header .slide .notification-group-list.header-bids .notification-list li{border-top-color:#f5911d}#header .slide .notification-group-list li:last-child .notification-list li,.bids-popup .slide .notification-group-list li:last-child .notification-list li{border-bottom:1px solid #ebebeb}#header .slide .notification-group-list.header-bids li:last-child .notification-list li{border-bottom-color:#f5911d}#header .slide .notification-group-list .notification-list a,.bids-popup .slide .notification-group-list .notification-list a{display:table;width:100%;color:#404041}#header .slide .notification-group-list .notification-list a:hover,.bids-popup .slide .notification-group-list .notification-list a:hover{background:#eaeaea}#header .slide .notification-group-list .notification-list p,.bids-popup .slide .notification-group-list .notification-list p{margin:0}.notification-group-list.header-bids .notification-list p{font-size:16px;letter-spacing:0;line-height:21px;color:#3c3c3c}#header .slide .notification-group-list .notification-list .description p,.bids-popup .slide .notification-group-list .notification-list .description p{font-style:italic;font-size:14px}@media (max-width:767px){#header .slide .notification-group-list .notification-list,.bids-popup .slide .notification-group-list .notification-list{font-size:11px;line-height:1;border-left-width:7px}#header .slide .notification-group-list .notification-list a,.bids-popup .slide .notification-group-list .notification-list a{background:#eaeaea}#header .slide .notification-group-list .notification-list a:hover,.bids-popup .slide .notification-group-list .notification-list a:hover{background:#fff}}@media (max-width:639px){#header .slide .notification-group-list .notification-list a{padding:15px 5px 10px}.bids-popup .slide .notification-group-list .notification-list a{padding:2px 5px 0}}.bids-popup .other-bids{font-size:16px;font-weight:700;color:#404041;display:block;padding:10px;font-style:italic;text-decoration:underline;text-align:center} #header .activities>ul{list-style:none;white-space:nowrap;padding:0;margin:0}#header .activities{float:left;display:flex;align-items:center;height:70px}#header .activities i{font-size:38px;line-height:1}#header .activities>ul>li{display:inline-flex;align-items:center;text-align:center;width:60px;position:relative;margin:10px;padding-left:15px}#header .activities>ul>li:nth-child(2){padding-left:20px}#header .activities>ul>li:nth-child(2)>div:before{border-left:1px solid #b5b5b5;content:””;position:absolute;top:6px;left:0;height:36px}@media (max-width:1559px){#header .activities>ul>li:nth-child(2)>div:before{height:30px;top:5px}}@media (max-width:1096px){#header .activities>ul>li:nth-child(2)>div:before{height:30px;top:5px}}@media (max-width:991px){#header .activities{text-align:center;position:absolute;left:0;right:0;top:0;height:60px}#header .activities i{font-size:18px}#header .activities>ul{padding:0;max-width:calc(100% – 40px);height:60px;overflow-x:visible;margin:0 auto}#header .activities>ul>li{width:46px;padding-top:24px;margin:0 5px}#header .activities>ul>li:nth-child(2)>div:before{display:none}}@media (max-width:767px){#header .activities{pointer-events:none;width:inherit;height:50px}#header .activities>ul>li{pointer-events:auto;padding-top:11px}}@media (max-width:639px){#header .activities>ul>li{height:auto;width:32px;padding-top:8px}} #header .profile-slide .info{overflow:hidden;padding:6px 0 0 14px}#header .profile-slide .title{display:block;text-transform:capitalize;font-size:24px;line-height:1.2;margin-bottom:14px}#header .profile-slide .wrapper .head .title{text-transform:none!important}#header .profile-slide .head .notice{display:block;font-size:13px;color:#cb001e;margin-top:-3px}@media (max-width:991px){#header .profile-slide .title{font-size:18px}}@media (max-width:639px){#header .profile-slide .title{font-size:14px;margin-bottom:5px}} #header .profile-slide ul{list-style:none;font-weight:400;margin:0;padding:4px 30px 20px}#header .profile-slide{width:376px;position:absolute;top:100%;right:-10px;box-shadow:0 2px 2px 0 rgba(0,0,0,.2);text-align:left;font-size:14px;line-height:21px;color:#404041;z-index:11;display:block!important}#header .profile-slide input[type=file]{position:absolute;left:0;bottom:0;right:0;top:0;opacity:0;cursor:pointer}#header .profile-slide ul li{margin-bottom:7px}#header .profile-slide ul a{text-decoration:underline;color:#404041}#header .profile-slide label{font-weight:400;padding-left:29px;position:relative;margin:8px 0 0}#header .profile-slide input[type=checkbox]{position:absolute;top:1px;left:0}#header .profile-slide .wrapper{background:#fff;position:relative;padding-top:11px;border-top:2px solid #f6911d}#header .profile-slide .head:after,.teacher-profile .profile-block .head:after{content:””;display:block;clear:both}#header .profile-slide .head{padding:0 16px 3px}#header .profile-slide .head a{font-size:16px;font-weight:400;color:#404041}#header .profile-slide .head a:hover{color:#f99815}#header .profile-slide .avatar-hold{width:97px;height:97px;border:6px solid #f6911d;border-radius:100%;overflow:hidden;float:left;position:relative;top:-7px}#header .profile-slide .footer ul{list-style:none;margin:0;padding:0}#header .profile-slide .footer{font-size:12px;text-transform:capitalize;background:#f6f6f6;font-weight:400;padding:6px 31px}#header .profile-slide .footer a{color:#404041;text-decoration:underline}#header .profile-slide .footer li{display:inline-block;vertical-align:top;margin:0 25px 4px 0}#header .profile-slide .footer li:last-child{margin-right:0}#header .profile-slide .wrapper .footer li{text-transform:none;min-height:inherit}.footer li{min-height:158px;white-space:nowrap;vertical-align:bottom;font-size:14px;color:#333;display:block}.footer li:after{content:””;display:inline-block;height:158px;overflow:hidden;vertical-align:bottom}.footer a{color:#fff;display:inline-block;vertical-align:top}.footer a:hover{color:#f6911d}.footer span{white-space:normal;max-width:300px;display:inline-block}.footer li:after{display:none!important}#header .profile-slide .footer a:hover,#header .profile-slide ul a:hover{color:#f99815;text-decoration:none}@media (max-width:991px){#header .profile-slide{left:-208px;width:300px;top:50px!important}#header .profile-slide .avatar-hold{width:85px;height:85px;border-width:4px}#header .profile-slide .footer{padding-left:16px;padding-right:16px}#header .profile-slide .footer li{margin-right:5px}}@media (max-width:767px){#header .profile-slide{padding-top:8px;box-shadow:0 2px 2px 0 rgba(0,0,0,.3);top:30px!important;width:400px;right:-24px;left:unset}#header .profile-slide ul{padding-left:16px;padding-right:16px}#header .profile-slide .wrapper{padding-top:20px}#header .profile-slide .wrapper .footer{padding:5px 10px}.footer{padding-top:5px}.footer li{font-size:10px;min-height:75px;white-space:nowrap;margin-right:5px}.footer li:after{content:””;display:inline-block;height:75px;overflow:hidden;vertical-align:bottom}.footer span{margin-bottom:-2px;max-width:136px}#header .profile-slide .wrapper .body,#header .profile-slide .wrapper .head{padding:10px}}@media (max-width:639px){#header .profile-slide ul{font-size:12px;padding:5px}#header .profile-slide ul li{margin-bottom:2px}#header .profile-slide{width:300px}#header .profile-slide .wrapper{padding-top:0}#header .profile-slide .avatar-hold{width:50px;height:50px;top:0;border-width:1px}#header .profile-slide .footer,#header .profile-slide .head{padding:5px}}@media (max-width:374px){.footer li:first-child{display:block}} #header .sub-nav>ul>li.logged-in{font-weight:700;display:flex;align-items:center;padding:0}#header .sub-nav>ul>li.logged-in a{transition:none}.user-menu-button{display:flex;align-items:center}.user-menu-button .name{max-width:140px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#header .sub-nav .link-hold{position:relative;display:inline-block;vertical-align:middle;margin-right:20px}.is-open .triangle-up{position:absolute;margin:auto;bottom:-23px;top:75%;left:50%;width:17px;height:17px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);border-right:1px solid #efefef;border-bottom:1px solid #efefef;background:#f6911d}.logged-in-active .link-hold:after,.logged-in-active .link-hold:before{display:block!important;box-shadow:0 -2px 2px -2px rgba(0,0,0,.3)!important}#header .sub-nav>ul>li .avatar{height:47px;width:47px;border-radius:100%;background:#e1e1e1;border:3px solid #f6911d;overflow:hidden;display:block}#header .sub-nav>ul>li .avatar img{width:100%}.logged-in-active .top-bar{display:block!important}#header .sub-nav>ul>li.logged-in.logged-in-active .link-hold:after,#header .sub-nav>ul>li.logged-in.logged-in-active .link-hold:before,#header .sub-nav>ul>li.logged-in.logged-in-active .top-bar{display:block}@media (max-width:1096px){#header .sub-nav .link-hold{margin-right:10px}}@media (max-width:991px){#header .sub-nav .link-hold{margin-right:5px}#header .sub-nav>ul>li .avatar{width:38px;height:38px;border-width:2px}#header .sub-nav>ul>li .name{display:none}}@media (max-width:767px){.is-open .triangle-up{height:15px;width:15px}#header .sub-nav>ul>li.logged-in{position:static;margin:-1px 4px 0 0;padding:0}#header .sub-nav>ul>li.logged-in:after{display:none}#header .sub-nav .link-hold{margin-right:0}#header .sub-nav>ul>li .avatar{width:17px;height:17px;border-width:1px}} #header .sub-nav .drop-menu ul,.sub-navigation .drop-menu ul{list-style:none;margin:0;padding:0}#header .sub-nav .drop-menu{position:absolute;top:100%;left:-5px;width:196px;padding-top:9px;display:none;z-index:11}#header .sub-nav .drop-menu:before{width:105px;height:2px;background:#f7921e;position:absolute;content:””;left:0;top:9px}#header .sub-nav .drop-menu ul{background:#fff;box-shadow:0 0 4px 0 rgba(0,0,0,.3);text-align:left;padding:14px 9px 11px 20px}#header .sub-nav .drop-menu li{margin-bottom:3px}#header .sub-nav>ul :last-child li :last-child .drop-menu{right:-5px;left:auto}#header .sub-nav>ul :last-child li :last-child .drop-menu:before{right:0;left:auto}.sub-navigation .drop-menu{position:relative;display:none}.sub-navigation .drop-menu:before{height:2px;background:#f7921e;position:absolute;content:””;left:0;top:0;right:0}.sub-navigation .drop-menu li{border-top:1px solid #5e5e5e;font-size:20px;line-height:1.5}#header .sub-nav>ul>li.hover .drop-menu,.sub-navigation>ul>li.hover .drop-menu{display:block}@media (max-width:1359px){#header .sub-nav .drop-menu ul{padding:5px 10px}}@media (max-width:767px){#header .sub-nav .drop-menu{position:relative;left:0;width:100%;padding:0}#header .sub-nav .drop-menu:before{top:0;right:0;width:auto}#header .sub-nav .drop-menu ul{box-shadow:none;padding:0}#header .sub-nav .drop-menu li{font-size:20px!important;border-color:#5e5e5e;border-style:solid;border-width:1px 0 0!important;margin:0}#header .sub-nav>ul :last-child li :last-child .drop-menu{right:auto}#header .sub-nav>ul :last-child li :last-child .drop-menu:before{left:0}#header .mobile-menu li>.drop-menu>ul>li{font-size:12px!important}} @media (max-width:991px){#header .mobile-menu.original{display:none!important}}@media (max-width:767px){#header .sub-nav .mobile-menu{border-top:1px solid #cdcdcd;display:none;position:fixed;top:26px;height:calc(100vh-27px);overflow:auto;right:0;width:225px;background:#fefcf9;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;padding:0 5px 30px}#header .sub-nav .mobile-menu li{float:none;text-align:center;font-size:26px;text-transform:capitalize;color:#2d2e2f;border-bottom:1px solid #5e5e5e;padding:0}#header .sub-nav .mobile-menu li:after{display:none}#header .sub-nav .mobile-menu>li:last-child{margin-bottom:30px}#header .sub-nav .mobile-menu a{display:block;color:#2d2e2f;padding:10px 0}#header .sub-nav .mobile-menu a:hover{background:#f4f1f1}.nav-active #header .mobile-menu{display:block}#header .mobile-menu{position:absolute;height:calc(100vh-50px);top:50px!important;display:block!important;transition:transform .5s ease,opacity .5s ease!important;transform:translateX(100%);opacity:.5;z-index:200}#header .mobile-menu li{font-size:15px!important}.wrap-row-1 .sub-menu{float:none;width:100%;padding-top:0}.sub-menu{font-size:12px}.sub-menu.full li{margin-right:15px}.sub-menu li{margin-right:20px}.sub-menu a{padding:0 0 1px}.sub-menu a:after{height:3px;border-radius:2px}}.mobile-menu ul{padding:0}.mobile-menu ul li{min-height:0}.mobile-menu ul li a{letter-spacing:normal;color:#000}.mobile-menu ul li a:hover{color:#f6911d}#header .sub-nav>ul>li:after{content:”|”;position:static;right:0;top:0;transform:none;width:auto;height:auto;background:none;font-weight:100;margin:0 5px}#header .mobile-menu.open{transform:translateX(0);opacity:1}.sub-menu ul{list-style:none;margin:0;padding:0}.sub-menu ul:after{content:””;display:block;clear:both}.wrap-row-1 .sub-menu{float:left;width:59%;padding-top:2px}.wrap-row-1 .sub-menu.full{float:none;width:100%}.sub-menu{font-size:16px;text-transform:capitalize}.sub-menu.full li{margin-right:29px}.sub-menu li{float:left;margin-right:45px}.sub-menu li:last-child{margin-right:0}.sub-menu a{display:block;color:#195a76;position:relative;text-align:center;transition:all .3s linear;padding:0 9px 5px}.sub-menu a:after{content:””;position:absolute;bottom:-5px;left:0;right:0;height:5px;border-radius:5px;background:#f6911d;opacity:0;visibility:hidden;transition:bottom .3s linear,opacity .3s linear,visibility .3s linear}.sub-menu li.active a{font-weight:700}.sub-menu a:focus:after,.sub-menu a:hover:after,.sub-menu li.active a:after{bottom:0;opacity:1;visibility:visible}@media (max-width:991px){.sub-menu.full li{margin-right:20px}.sub-menu li{margin-right:25px}} #header .sub-nav>ul{list-style:none;align-items:center;display:flex;flex-direction:row;justify-content:space-between;float:left;height:47px;margin:0;padding:0}#header .right-block{text-align:right;float:right;right:0;display:flex;align-items:center;position:absolute;top:0;bottom:0;padding:0 32px 0 0;padding-top:0!important;padding-bottom:0!important}#header .sub-nav{float:right}#header .sub-nav>ul :last-child li :last-child .drop-menu{right:-5px;left:auto}#header .sub-nav>ul :last-child li :last-child .drop-menu:before{right:0;left:auto}#header .sub-nav>ul>li{font-size:18px;position:relative;z-index:1;margin:0!important}#header .sub-nav>ul>li a{color:#464646}#header .sub-nav>ul>li.hover .drop-menu{display:block}#header .sub-nav>ul>li:after{content:””;position:absolute;right:-15px;top:50%;transform:translateY(-50%);width:1px;height:17px;background:#464646}#header .mobile-menu.original>li:after,#header .sub-nav>ul>li:after{content:”|”;position:static;right:0;top:0;transform:none;width:auto;height:auto;background:none;font-weight:100;margin:0 5px}#header .sub-nav>ul>li.logged-in:after{display:none}.mobile-menu ul{padding:0}.mobile-menu ul li{min-height:0}.mobile-menu ul li a{letter-spacing:normal;color:#000}.mobile-menu ul li a:hover{color:#f6911d}#header .mobile-menu.open{transform:translateX(0);opacity:1}.nav-opener{font-size:12px;text-transform:uppercase;text-align:center;color:#04283e;position:absolute;right:0;top:0;z-index:9999;text-decoration:none;display:none;height:26px;padding:7px 5px}.nav-opener:hover{color:#f37421;text-decoration:none}.nav-opener :focos{color:#04283e;text-decoration:none}.nav-opener span{height:2px;width:22px;position:relative;display:inline-block;vertical-align:top;background:#04283e;border-radius:3px;margin-top:5px}.nav-opener span:after,.nav-opener span:before{width:22px;height:2px;position:absolute;content:””;background:#04283e;opacity:1;transform-origin:center;transition:top bottom transform .15s linear linear linear .15s .15s .15s .15s 0;left:0;border-radius:3px}.nav-opener span:before{bottom:5px}.nav-opener span:after{top:5px}.nav-opener i{display:block;font-style:normal;margin-top:3px;transition:top bottom transform .15s linear linear linear .15s .15s .15s .15s 0}.nav-opener strong{font-style:normal;font-weight:500;margin-top:3px;display:none}.nav-active .nav-opener .nav-active{background:#f8a543}.nav-active .nav-opener strong{display:block;color:#04283e}#header .sub-nav>ul :last-child li :last-child:after,.nav-active .nav-opener i{display:none}#header .sub-nav>ul>li.active a,#header .sub-nav>ul>li.hover>a,#header .sub-nav>ul>li a:hover{color:#f99815}.nav-opener:hover span,.nav-opener:hover span:after,.nav-opener:hover span:before{background:#f37421}.nav-opener:focus span,.nav-opener:focus span:after,.nav-opener:focus span:before{background:#04283e}@media (max-width:1919px){#header .right-block{padding:10px 15px 0 0}}@media (max-width:1559px){#header .sub-nav>ul>li{margin:0 10px}#header .sub-nav>ul>li:after{right:-10px}}@media (max-width:1359px){#header .right-block .sub-nav>ul>li{font-size:12px}#header .sub-nav>ul>li{font-size:14px}}@media (max-width:991px){#header .right-block{padding:6px 10px 0 0}#header .mobile-menu.original{display:none!important}#header .sub-nav>ul>li{margin:0 5px}#header .sub-nav>ul>li .name{display:none}#header .sub-nav>ul>li:after{right:-5px}#header .right-block .nav-opener{position:static}.nav-active #header .mobile-menu,.nav-opener{display:block}}@media (max-width:767px){#header .right-block{float:right;padding:5px 0 0}#header .right-block:after,#header .right-block:before{content:” “;display:table}#header .right-block:after{clear:both}#header .right-block .sub-nav{padding-bottom:0}#header .sub-nav{padding-bottom:7px}#header .sub-nav>ul{height:auto;display:block}#header .sub-nav>ul :last-child li :last-child .drop-menu{right:auto}#header .sub-nav>ul :last-child li :last-child .drop-menu:before{left:0}#header .sub-nav>ul>li{float:right;font-size:11px}#header .sub-nav>ul>li:after{left:-8px;right:auto;height:11px}#header .sub-nav .mobile-menu{border-top:1px solid #cdcdcd;display:none;position:fixed;top:26px;height:calc(100vh – 27px);overflow:auto;right:0;width:225px;background:#fefcf9;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;padding:0 5px 30px}#header .sub-nav .mobile-menu li{float:none;text-align:center;font-size:26px;text-transform:capitalize;color:#2d2e2f;border-bottom:1px solid #5e5e5e;padding:0}#header .sub-nav .mobile-menu li:after{display:none}#header .sub-nav .mobile-menu>li :last-child{margin-bottom:30px}#header .sub-nav .mobile-menu a{display:block;color:#2d2e2f;padding:10px 0}#header .sub-nav .mobile-menu a:hover{background:#f4f1f1}#header .mobile-menu{position:absolute;height:calc(100vh – 50px);top:50px!important;display:block!important;transition:transform .5s ease,opacity .5s ease!important;transform:translateX(100%);opacity:.5;z-index:200}#header .mobile-menu li{font-size:15px!important}}@media (max-width:374px){#header .sub-nav>ul>li{font-size:10px}}@media print{.nav-opener{display:none}} .enter{position:absolute;top:70px;right:70px;color:#545454;font-size:16px;z-index:1}.enter p{margin:0;padding:3px 26px 0 0}.enter p,.enter p a{display:inline-block;vertical-align:top}.enter p a{color:#545454;font-weight:700}.enter p a:hover{color:#fff}.enter span{background:rgba(30,142,247,.6);font-size:13px;color:#fff;display:inline-block;vertical-align:top;padding:5px 10px 3px}.enter span a{text-transform:uppercase;color:#fff}.enter span a:hover{color:#000}.enter a:hover{color:#f6911d!important}@media (max-width:1919px){.enter{right:14px}.enter p,.enter span{padding-right:5px}.enter span{padding-left:5px;font-size:12px}}@media (max-width:991px){.enter{font-size:12px;top:60px}.enter span{padding:2px}}@media (max-width:767px){.enter{right:5px;z-index:111;font-style:italic;top:26px;font-size:11px;max-width:150px;margin-top:29px}.enter p{padding:0}.enter p a{text-decoration:underline}.enter p a:hover{text-decoration:none}.enter span{display:none}}@media (max-width:639px){.enter{max-width:120px;text-align:right;font-size:12px;line-height:1.2}} .sub-navigation{padding:50px 0 30px}.sub-navigation>ul{list-style:none;margin-bottom:0;text-align:center;font-size:0;line-height:0;letter-spacing:-4px;padding:0}.sub-navigation>ul>li{font-size:18px;line-height:1.2;letter-spacing:0;text-transform:none;display:inline-block;vertical-align:top;margin:0 18px 5px}.sub-navigation>ul>li :last-child{margin-bottom:30px}.sub-navigation>ul>li.active a{font-weight:700;color:#195a76}.sub-navigation>ul>li.hover>a{color:#f99815}.sub-navigation>ul>li.hover .drop-menu{display:block}.sub-navigation a{color:#195a76}.sub-navigation a:hover{color:#f6911d}.sub-navigation>ul li :last-child{margin-bottom:0}@media (max-width:991px){.sub-navigation{border-top:1px solid #cdcdcd;overflow:auto;right:0;width:225px;background:#fefcf9;position:absolute;height:calc(100vh – 50px);top:50px!important;display:block!important;transition:transform .5s ease,opacity .5s ease!important;transform:translateX(100%);opacity:.5;z-index:9999;padding:0}.sub-navigation a{display:block;color:#2d2e2f;padding:10px 0}#header .mobile-menu.sub-navigation{z-index:201}.sub-navigation>ul>li{color:#2d2e2f;border-bottom:1px solid #5e5e5e;resize:vertical;display:block;margin:0}.sub-navigation>ul li{font-size:18px}.sub-navigation>ul{padding:0}}@media (max-width:767px){.sub-navigation a:hover{background:#f4f1f1}} .nav-active .nav-opener,.nav-active .nav-opener-logged{background:#f8a543}.nav-active .nav-opener-logged i,.nav-active .nav-opener i{display:none}.nav-active .nav-opener-logged strong,.nav-active .nav-opener strong{display:block;color:#04283e}#header,#header .hold{position:relative}#header .hold{box-shadow:0 0 4px 0 rgba(0,0,0,.3);min-height:70px;z-index:9999;background:#fff}.overlay{display:none;position:fixed;top:26px;right:0;bottom:0;left:0;z-index:999}@keyframes fadeIn{0%{opacity:0}to{opacity:.7}}.overlay.active{animation-name:fadeIn;animation-duration:.5s;animation-fill-mode:forwards}@media (max-width:991px){#header .hold{min-height:60px}.nav-active .sub-navigation{display:block;transform:translateX(0);opacity:1}}@media (max-width:767px){.headroom-wrapper{flex:0 1 50px}.nav-active{overflow:visible;position:static;width:auto;height:auto}.nav-active #footer,.nav-active #footer.style-1{padding-bottom:500px}#header .hold{display:block;min-height:50px}.nav-active #header .mobile-menu,.nav-active .overlay{display:block}} .breadcrumbs-list{list-style:none;display:flex;flex-direction:row;padding:0;margin:0 0 20px}.question-file .breadcrumbs-list{margin-left:10px}.breadcrumbs-list li{margin-right:10px}.published-question .about-list .breadcrumbs-list li,.student-page .about-list .breadcrumbs-list li{padding-right:0}.breadcrumbs-list li:before{content:”>”;letter-spacing:.3em;color:#f99815;margin-right:10px}.breadcrumbs-list li:first-child:before{display:none}.breadcrumbs-list a{font-size:16px}@media (max-width:767px){.question-file .breadcrumbs{margin:0 20px 20px}.question-file .breadcrumbs:after{content:””;border-bottom:1px solid #dddada;display:table;width:150%;margin-left:-45px}.breadcrumbs-dd{height:38px;margin:10px auto 30px;border:1px solid rgba(0,0,0,.07);color:#a5a5a5;position:relative;padding:0 5px;font-size:15px;line-height:34px}.fields-container .breadcrumbs-dd{padding:0}.fields-container .breadcrumbs-dd input{width:100%;padding-left:10px}.question-file .breadcrumbs-dd{width:95%}.published-question .breadcrumbs-dd,.question-file .breadcrumbs-dd,.student-page .breadcrumbs-dd{width:90%;background:#f6f8f9;background:linear-gradient(180deg,#fff 0,#fdfefe 46%,#fdfefe 0,#fdfefe 100%,#fff 0)}.homework-answers .breadcrumbs-list{width:100%}.homework-answers .breadcrumbs-dd input{text-align:center}.homework-answers .breadcrumbs-dd{font-size:14px;line-height:34px;padding:0 10px;background:#fff}.breadcrumbs-dd .Select-arrow{height:25px;width:25px;margin:0 auto;position:absolute;right:5px;top:2px;border-width:0!important}.breadcrumbs-dd .Select-arrow:before{transform:rotate(45deg);-webkit-transform:rotate(45deg);left:0}.breadcrumbs-dd .Select-arrow:after{transform:rotate(-45deg);-webkit-transform:rotate(-45deg);left:6px}.breadcrumbs-dd .Select-arrow:after,.breadcrumbs-dd .Select-arrow:before{content:””;position:absolute;top:14px;width:10px;border:1px solid #f6911d;transition:all .3s;-webkit-transition:all .3s}.breadcrumbs-dd input{border:none;width:85%;outline:none;text-overflow:ellipsis}.breadcrumbs-list{border:1px solid #ccc;width:90%;margin:-30px auto 30px;flex-direction:column;background:#fff}.fields-container .breadcrumbs-list{width:100%;text-align:left}.question-file .breadcrumbs-list{width:95%}.breadcrumbs-list li{padding:8px 10px}.breadcrumbs-list li:before{display:none}} .how-it-works{text-align:center;font-weight:700;font-size:20px;line-height:1.2;color:#333;transform:skew(0deg,-4.2deg);background:#fff;padding:168px 0 151px}.how-it-works.fields-of-study{padding:168px 0 20px}.how-it-works.fields-of-study.homework-answers-fields{padding:50px 0 30px;margin-bottom:30px;transform:none;background:transparent}.footer-fields.how-it-works.fields-of-study{padding:20px 0 0;transform:none;background:transparent}.footer-fields.how-it-works.fields-of-study .container,.how-it-works.fields-of-study.homework-answers-fields .container{transform:none}.homework-answers-fields .list-inline-item a{color:#195a76}.how-it-works h2{text-transform:capitalize;font-weight:700;margin-bottom:58px;color:#f8941f}@media (max-width:991px){.how-it-works{font-size:16px;padding:110px 0}}@media (max-width:767px){.fields-dd{height:38px;margin:20px 15px;border:1px solid rgba(0,0,0,.07);color:#a5a5a5;position:relative;padding:0 5px;font-size:15px;line-height:34px;background:#f6f8f9;background:linear-gradient(180deg,#fff 0,#fdfefe 46%,#fdfefe 0,#fdfefe 100%,#fff 0)}.fields-dd.is-open{margin-bottom:250px}.fields-dd input{border:none;width:85%;outline:none;text-overflow:ellipsis;font-size:14px;line-height:34px;text-align:center}.fields-dd input::placeholder{color:#f6972b}.fields-dd input:-ms-input-placeholder{color:#f6972b}.fields-dd input::-webkit-input-placeholder{color:#f6972b}.fields-dd input::-moz-placeholder{color:#f6972b}.fields-dd input.placeholder{color:#f6972b}.fields-dd .Select-arrow{height:25px;width:25px;margin:0 auto;position:absolute;right:5px;top:2px;border-width:0!important}.fields-dd .Select-arrow:before{transform:rotate(45deg);-webkit-transform:rotate(45deg);left:0}.fields-dd .Select-arrow:after{transform:rotate(-45deg);-webkit-transform:rotate(-45deg);left:6px}.fields-dd .Select-arrow:after,.fields-dd .Select-arrow:before{content:””;position:absolute;top:14px;width:10px;border:1px solid #f6911d;transition:all .3s;-webkit-transition:all .3s}.how-it-works{font-size:11px;line-height:12px;padding:35px 0 100px}.footer-fields.how-it-works.fields-of-study,.how-it-works.fields-of-study.homework-answers-fields{padding:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px;background-color:#fff;border:1px solid #ccc;border-top-color:#e6e6e6;box-shadow:0 1px 0 rgba(0,0,0,.06);max-height:200px;overflow:auto;margin:0 15px;position:absolute}.footer-fields.how-it-works.fields-of-study{top:100px;width:calc(100% – 30px)}.how-it-works.fields-of-study.homework-answers-fields{top:140px;width:calc(100% – 70px)}.footer-fields.how-it-works.fields-of-study .list-inline>li,.how-it-works.fields-of-study.homework-answers-fields .list-inline>li{display:block;font-size:15px;padding:8px 10px}.how-it-works.fields-of-study.homework-answers-fields .list-inline-item a{color:#000}.how-it-works h2{margin-bottom:20px}}@media (max-width:639px){.how-it-works{padding-bottom:50px}} .container{margin:auto}@media (max-width:991px){.container{margin:10px}}@media (max-width:767px){.container{margin:17px 5px 5px}} #footer{text-align:center;color:#333;font-size:18px;position:relative;z-index:9999;padding:24px 0 10px}#footer.style-1{background:#ccc;line-height:1.3;text-transform:none}#footer.style-1 p{margin-bottom:0}.root.thread-window #footer{display:none}#footer.style-1 .read-more:focus,#footer.style-1 .read-more:hover,#footer a{color:#333}#footer.style-1 .read-more,#footer a:hover{color:#0290fd}#footer.style-1 .footer-seperator:before,#footer.style-1 .read-more:after{content:”|”;color:#000;position:static;right:0;top:0;transform:none;width:auto;height:auto;background:none;font-weight:300;margin:0 5px}#footer.style-1 .read-more:last-child:after{display:none}@media (max-width:991px){#footer.style-1{font-size:16px;line-height:1.5}#footer{padding:22px 0}}@media (max-width:767px){#footer{background:#ccc;font-size:12px;line-height:20px;padding:20px}#footer.style-1{font-size:14px;color:#3f3f3f;line-height:20px;padding:24px 0;background:#f7f6f2}} .question-form .btn{color:#f7921e;font-size:24px;font-weight:700;text-transform:capitalize;position:relative;display:inline-block;vertical-align:top;min-width:329px;text-align:center;background:#fff;border-radius:0;overflow:hidden;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;padding:7px 15px}.dropzone.white-background .upload-btn{background:#f7921e;color:#fff}.dropzone.white-background .upload-btn:focus,.dropzone.white-background .upload-btn:hover{background-color:#fff;color:#f7921e}.connect-twitter-form .btn{position:absolute;left:300px;bottom:inherit;top:15px;font-size:24px;font-weight:400;text-transform:none;min-width:50px;padding:7px 18px 10px}.publish-form .btn{color:#f7921e;font-size:20px;font-weight:700;text-transform:capitalize;position:relative;display:inline-block;vertical-align:top;min-width:277px;text-align:center;background:#fff;border-radius:0;overflow:hidden;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;padding:5px 15px}.publish-form .btn.disabled{background:#f7921e;color:#fff;cursor:not-allowed}.upload-form .btn{color:#f7921e;font-size:24px;font-weight:700;position:relative;display:inline-block;vertical-align:top;min-width:330px;background:#fff;border-radius:0;overflow:hidden;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;padding:7px 15px}.login .btn,.upload-form .btn{text-transform:capitalize;text-align:center}.login .btn{border:none;border-radius:13px;color:#f6f6f6;font-size:16px;min-width:118px;background:#f6911d;display:block;width:100%;margin-bottom:28px;padding:0 6px}.login .btn,.login .btn strong{font-weight:400}.login .btn span{display:none;width:32px;height:32px;border-radius:100%;border:1px solid #fff;background:#f6911d}.teacher-profile .profile-block .action .answer-popup .btn{float:right;font-size:16px;text-transform:none;font-weight:400;padding:6px 12px 8px}.published-question .edit-form .action .btn{text-transform:uppercase;font-size:14px;color:#fefefe;background:#195a76;text-decoration:none;min-width:98px;padding:5px}.teacher-question.btn-hold .btn,.teacher-question .btn-hold .btn{font-size:20px;font-weight:400;text-transform:capitalize;border:3px solid #fff;line-height:1;border-radius:13px;min-width:220px;padding:2px 10px}.question-preview .header .btn{font-size:20px;min-width:131px;padding:2px 12px}.question-preview .footer .btn,.question-preview .header .btn{line-height:1;border:3px solid #fff;border-radius:13px;text-transform:capitalize}.question-preview .footer .btn{font-size:29px;min-width:185px;margin-bottom:26px;padding:2px 13px 4px}.question-preview .footer .btn span{padding-left:35px}.admin-info-header .table-layout [class^=col-].col-rt .btn{min-width:0;display:block}.btns-wrap .btn{display:block;min-width:120px;border-radius:10px;color:#f6f6f6;font-size:16px;line-height:1.2;font-weight:400;text-transform:none;padding:2px 5px 3px}.email-verification-form .btn{display:block;width:100%;border:none;font-size:16px;line-height:1.1;transition:background .3s linear}.radios-list .btn{font-size:16px;line-height:1.2;min-width:115px;float:left;margin:-3px 0 -4px 25px;padding:2px 5px 3px}.win-section .box-hold .btn{position:absolute;bottom:42px;left:50%;transform:translateX(-50%)}.tutorial-page .head .btn{border-radius:12px;padding:4px 11px 9px}.student-page .answer-block .btn,.tutorial-page .head .btn{float:right;font-size:24px;font-weight:400;text-transform:capitalize;line-height:1}.student-page .answer-block .btn{padding:6px 17px}.contact-page .welcome-block .btn{font-size:16px;color:#f6f6f6;text-transform:none;font-weight:400;line-height:1;border-radius:12px;min-width:330px;vertical-align:top;padding:3px 10px}.admin-info-header .btn-warning,.published-question .block .pay-now .btn-warning,.tutorial .pay-button-container .btn-warning{box-shadow:0 0 10px rgba(0,0,0,.2)}.published-question .block .pay-now .transparent-btn[disabled] .btn-warning,.tutorial .pay-button-container .transparent-btn[disabled] .btn-warning{opacity:.6;cursor:default!important}.published-question .answers .price-info li.complete-payment .btn-warning{text-transform:uppercase;font-size:14px;padding:9px 5px 10px}.profile-details .admin-comments .add-comment-btn .btn-warning{margin-top:10px;float:right}.congrats-box .btn-warning{font-size:inherit}.tutorial .answer-block .pay-button-container .btn-warning{float:none}.refund-button,.toggle-pin-question{width:100%;height:auto;min-height:0;min-width:0;font-size:12px;padding:5px}.transparent-btn{background:transparent;border:transparent}.budget-form .submit-hold .btn-submit span,.connect-twitter-form .submit-hold .btn-submit span{display:block;width:62px;height:62px;background:#e0e0e0;color:#b0aaad;border:3px solid #fff;border-radius:100%;text-align:center;line-height:20px;position:relative;padding:15px 5px 12px 9px}.budget-form .submit-hold .btn-submit span{font-size:38px;margin-top:0;right:0;transform:none}.advancedsearch .submit-hold .btn-submit,.publish-form .submit-hold .btn-submit,.search-teacher-form .submit-hold .btn-submit{display:block;width:222px;height:56px;background:#f6911d;color:#fff;border:3px solid #fff;border-radius:28px;text-align:center;position:relative;z-index:11;margin:0 auto;padding:0 22px}.search-teacher-form .submit-hold .btn-submit{border:none;width:216px;height:50px}.question-search-form .btn-submit{right:8px}.question-search-form .btn-submit,.search-conversations-form .btn-submit{font-size:19px;height:28px;position:absolute;transition:color .3s linear 0;width:28px;top:50%;transform:translateY(-50%);background:none;border:none;color:#f7921e;padding:0}.search-conversations-form .btn-submit{right:15px;z-index:1}.upload-form .btn-submit{width:72px;height:72px;background:transparent;border-radius:100%;border:none;margin:0 auto;padding:5px}.search-chat-form .btn-submit{position:absolute;top:-1px;left:10px;font-size:19px;color:#4f4b4d;width:22px;height:22px;z-index:1;transition:color .3s linear}.search-chat-form .btn-submit:hover{color:#f6911d}.payment-step .payment-buttons .paypal-btn:hover{background:#e05c04}.payment-step .payment-buttons .paypal-btn{border:2px solid;border-radius:10px;display:inline-block;font-family:inherit;font-size:18px;font-weight:700;color:#fff;text-align:center;background:#f60;outline:none;margin:10px;padding:14px}.payment-step .payment-buttons .stripe-btn{color:#f99815}.payment-step .payment-buttons .stripe-btn:hover{color:#bd6e05}.yes-no-buttons .no,.yes-no-buttons .yes{padding:15px 100px}.teacher-profile .profile-block .action .answer-popup .close{color:#333;position:absolute;right:5px;top:0;font-size:30px;font-weight:700;transform:rotate(-90deg);border:none}.teacher-profile .profile-block .action .answer-popup .close:hover{color:#f99815}.modal-content .close{width:40px;height:40px;border-radius:100%;border:4px solid #fff;color:#fff;position:absolute;right:-46px;top:-40px;opacity:1;font-size:30px;line-height:1}.modal-content .close:hover{color:#f99815;border-color:#f99815}.modal-holder.style-1 .modal-content .close{border:none;width:30px;height:30px;text-shadow:none;border-radius:0;top:-26px;right:-33px}.modal-holder.style-1 .modal-content .close:focus .icon-close,.modal-holder.style-1 .modal-content .close:hover .icon-close{transform:rotate(45deg)}.modal-holder.style-1 .modal-content .close:focus .icon-close:after,.modal-holder.style-1 .modal-content .close:focus .icon-close:before,.modal-holder.style-1 .modal-content .close:hover .icon-close:after,.modal-holder.style-1 .modal-content .close:hover .icon-close:before{background:#f99815}.modal-holder.style-2 .close{top:14px;right:15px;width:auto;height:auto;border:none;border-radius:0;font-size:18px;line-height:1.3;font-weight:700;color:#515151;text-transform:uppercase}.modal-holder.style-2 .close:hover{color:#c26b07}.modal-holder.style-2 .close:hover .ico-close{background:#c26b07}.approve-profile-toggler{float:right}.published-question .btn.btn-success{padding-left:30px}.published-question .btn-success{text-transform:capitalize;font-size:14px;position:relative;padding:10px 8px 9px 26px}.answer-form .reset-answer-form{font-size:18px;position:absolute;bottom:20px;left:30px}.answer-preview-btn{width:100%}.answer-form-container .answer-form-toggle{font-size:18px;margin-bottom:10px;padding:12px 60px!important}.publish-form .btn:hover,.question-form .btn:focus,.question-form .btn:hover,.upload-form .btn:hover{color:#fff;background-color:#f7921e}.advancedsearch .submit-hold .btn-submit:focus:not([disabled]),.advancedsearch .submit-hold .btn-submit:hover:not([disabled]),.login .btn:hover:not([disabled]),.publish-form .submit-hold .btn-submit:focus:not([disabled]),.publish-form .submit-hold .btn-submit:hover:not([disabled]),.search-teacher-form .submit-hold .btn-submit:focus:not([disabled]),.search-teacher-form .submit-hold .btn-submit:hover:not([disabled]){background:#a36115}.btn-next .btn-submit:not([disabled]):hover span,.homework-form .submit-hold .btn-submit:hover:not([disabled]) span,.login-form .submit-hold .btn-submit:hover:not([disabled]) span,.login .btn:hover:not([disabled]) span,.question-form .submit-hold .btn-submit:not([disabled]):hover span,.signup-form .submit-hold .btn-submit:hover:not([disabled]) span{background:#fbaf5d}.btn-next .btn-submit.disabled:hover span,.homework-form .submit-hold .btn-submit.disabled:hover span,.login-form .submit-hold .btn-submit.disabled:hover span,.question-form .submit-hold .btn-submit.disabled:hover span,.signup-form .submit-hold .btn-submit.disabled:hover span{background:#f6911d}.btn-next .btn-submit,.budget-form .submit-hold .btn-submit,.connect-twitter-form .submit-hold .btn-submit,.homework-form .submit-hold .btn-submit,.login-form .submit-hold .btn-submit,.question-form .submit-hold .btn-submit,.signup-form .submit-hold .btn-submit{width:72px;height:72px;background:transparent;border-radius:100%;border:none;position:relative;z-index:11;margin:0 auto;padding:5px}.btn-next .btn-submit span,.homework-form .submit-hold .btn-submit span,.login-form .submit-hold .btn-submit span,.question-form .submit-hold .btn-submit span,.signup-form .submit-hold .btn-submit span,.upload-form .btn-submit span{display:block;width:62px;height:62px;background:#f6911d;color:#fff;border:3px solid #fff;border-radius:100%;text-align:center;line-height:62px;position:relative;padding:0}.btn-redirect .btn-next .btn-submit span{line-height:52px}.btn-next .btn-submit.disabled,.btn-next .btn-submit[disabled],.homework-form .submit-hold .btn-submit[disabled],.login-form .submit-hold .btn-submit[disabled],.question-form .submit-hold .btn-submit[disabled],.signup-form .submit-hold .btn-submit[disabled],.wizard-btns .transparent-btn.disabled{cursor:not-allowed;opacity:.5;filter:alpha(opacity=50);box-shadow:none}.btn-next .btn-submit:not([disabled]):hover,.budget-form .submit-hold .btn-submit:focus:not([disabled]),.budget-form .submit-hold .btn-submit:hover:not([disabled]),.connect-twitter-form .submit-hold .btn-submit:focus:not([disabled]),.connect-twitter-form .submit-hold .btn-submit:hover:not([disabled]),.homework-form .submit-hold .btn-submit:hover:not([disabled]),.login-form .submit-hold .btn-submit:hover:not([disabled]),.question-form .submit-hold .btn-submit:not([disabled]):hover,.signup-form .submit-hold .btn-submit:hover:not([disabled]),.upload-form .btn-submit:focus:not([disabled]),.upload-form .btn-submit:hover:not([disabled]){background:#f6911d}.btn-next .btn-submit.disabled:hover,.budget-form .submit-hold .btn-submit.disabled:focus,.budget-form .submit-hold .btn-submit.disabled:hover,.connect-twitter-form .submit-hold .btn-submit.disabled:focus,.connect-twitter-form .submit-hold .btn-submit.disabled:hover,.homework-form .submit-hold .btn-submit.disabled:hover,.login-form .submit-hold .btn-submit.disabled:hover,.question-form .submit-hold .btn-submit.disabled:hover,.signup-form .submit-hold .btn-submit.disabled:hover,.upload-form .btn-submit.disabled:focus,.upload-form .btn-submit.disabled:hover{background:transparent}.budget-form .submit-hold .btn-submit:focus:not([disabled]) span,.budget-form .submit-hold .btn-submit:hover:not([disabled]) span,.connect-twitter-form .submit-hold .btn-submit:focus:not([disabled]) span,.connect-twitter-form .submit-hold .btn-submit:hover:not([disabled]) span,.upload-form .btn-submit:focus:not([disabled]) span,.upload-form .btn-submit:hover:not([disabled]) span{background:#fbaf5d;color:#fff}.dropzone .upload-btn{color:#f7921e;font-size:24px;font-weight:700;text-transform:capitalize;position:relative;display:inline-block;vertical-align:top;padding:7px 15px;min-width:329px;text-align:center;background:#fff;border-radius:0;overflow:hidden;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease}.blurred-bid .btn{color:transparent;text-shadow:0 0 10px rgba(0,0,0,.3)}@media (max-width:1559px){.tutorial-page .head .btn{font-size:18px}}@media (max-width:1359px){.question-preview .footer .btn{font-size:22px;min-width:131px;margin-bottom:15px;padding:2px 12px}.question-preview .footer .btn span{padding-left:20px}}@media (max-width:1249px){.modal-holder.style-1 .modal-content .close{width:23px;height:23px;top:10px;right:6px}}@media (max-width:1096px){.modal-content .close{right:5px;top:5px;border:none;color:#333;width:auto;height:auto;border-radius:0}}@media (max-width:991px){.dropzone .upload-btn{min-width:230px;font-size:22px}.published-question .edit-form .action .btn{font-size:12px;padding:2px 7px}.teacher-question.btn-hold .btn,.teacher-question .btn-hold .btn{padding-bottom:3px}.yes-no-buttons .no,.yes-no-buttons .yes{padding:15px 50px}.modal-holder.style-2 .close{font-size:16px;top:10px;right:10px}}@media (max-width:767px){.question-form .btn{font-size:11px;min-width:100px}.dropzone .upload-btn{min-width:150px;font-size:16px}.dropzone .upload-btn,.dropzone.white-background .upload-btn{border-radius:2px;box-shadow:0 0 5px rgba(0,0,0,.12);width:120px;height:42px;margin:10px;color:transparent;background-position:50%;background-repeat:no-repeat;background-color:#fff;border:0;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAWCAMAAADpVnyHAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAQhQTFRF9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEdAAAA9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEd9ZEdNoEYOQAAAFh0Uk5TjKSg7//78bOe6vxoBwAw2sRsuVmIk/Q8DMWSHiaBdsrzl9zkNWr9zSd3px++7ERW+LUpfUe8IFFG5/CfHbDoBLdUc4MjwjmA/tb5ZTTV5TPyTd5h1zta0HQPZhcAAADNSURBVHicY2BgZMIKGBkYmFlwAGYGVlxSrAxsuKTYCEuxc3Bil+Li5uHl48cqJcALBIJYpYRAUsJQIRFRZCkxcV5eCUmIiJS0jCyyM5gZ5ORZFEAsRRklZRVVNVTHq2tosrBoaeuwsOjq6RsgSxkaGZsYm5oJgdhi5haWLFYwKWsbWxY7PnsHCE/N0YlFDCrl7OIKJJXd3KFmeHiyKIClvLx9fMEifv7cASj+Ygs00YXyg4JDkKWUQsOwxQxIKlwKiwRICk9U4kkAuJMNAAhhGB5/oZNQAAAAAElFTkSuQmCC)}.dropzone .upload-btn:focus,.dropzone .upload-btn:hover,.dropzone.white-background .upload-btn:focus,.dropzone.white-background .upload-btn:hover{color:transparent;background-color:#fff;border:1px solid #f7921e}.Popover .dropzone .upload-btn{height:78px;width:78px;border-radius:100%;min-width:78px}.login .btn{width:36px;height:36px;border-radius:100%;min-width:36px;font-size:36px;font-weight:700;line-height:28px;float:right;background:none;margin-bottom:7px;padding:2px}.login .btn span{display:block}.login .btn:hover:not([disabled]){background:#f6911d}.teacher-profile .profile-block .action .answer-popup .btn{font-size:13px;padding:2px 7px}.published-question .answers .price-info .btn,.published-question .bids .price-info .btn{border-radius:2px;font-size:16px;font-weight:400;min-width:100px;text-transform:capitalize;padding:5px 20px}.teacher-question.btn-hold .btn,.teacher-question .btn-hold .btn{font-size:16px;border-radius:4px;min-width:150px;border-width:1px;padding:5px 10px;white-space:normal;max-width:90%;line-height:1.2}.question-preview .footer .btn,.question-preview .header .btn{border-radius:4px;font-size:13px;border-width:1px;padding:5px 10px}.question-preview .footer .btn{line-height:1}.admin-info-header .table-layout [class^=col-].col-rt .btn{font-size:13px;padding:5px}.btns-wrap .btn{font-size:13px;min-width:85px;border-radius:4px}.email-verification-form .btn,.radios-list .btn{font-size:12px;padding-top:3px;padding-bottom:5px}.radios-list .btn{margin:-5px 0 -4px 10px}.win-section .box-hold .btn{bottom:20px}.tutorial-page .head .btn{border:1px solid #fff;border-radius:6px;font-size:12px;padding:2px 10px}.student-page .answer-block .btn{font-size:18px;padding:15px;min-width:200px;border-radius:2px}.contact-page .welcome-block .btn{font-size:12px;border-radius:4px;min-width:178px}.refund-button,.toggle-pin-question{font-size:10px;padding:2px 1px}.btn.toggle-pin-question{min-width:50px}.login-form .submit-hold .btn-submit,.signup-form .submit-hold .btn-submit{width:32px;height:32px;padding:1px}.login-form .submit-hold .btn-submit span,.signup-form .submit-hold .btn-submit span{width:30px;height:30px;line-height:12px;border-width:2px;padding:6px 2px 6px 3px}.budget-form .submit-hold .btn-submit span{width:26px;height:26px;line-height:12px;font-size:22px;border-width:1px;padding:6px 2px 5px}.teacher-home .budget-form .submit-hold .btn-submit span{background:#fbaf5d;color:#fff;width:30px;height:30px;line-height:16px;font-size:26px}.search-chat-form .btn-submit{font-size:14px;left:7px;width:17px;height:17px}.payment-step .payment-buttons .paypal-btn{font-size:18px;padding:5px 10px;margin:5px 2px}.yes-no-buttons .no,.yes-no-buttons .yes{padding:2px 5px}.teacher-profile .profile-block .action .answer-popup .close{font-size:25px}.published-question .answers .price-info .btn.btn-success{padding-left:20px;text-align:left}.published-question .btn-success{font-size:12px;padding:4px 8px 3px 26px}.answer-form .reset-answer-form{font-size:12px;bottom:10px;left:10px}.answer-preview-btn{font-size:12px!important;margin:0;padding:4px!important}.answer-form-container .answer-form-toggle{font-size:15px;margin-bottom:10px;padding:7px 25px!important}.btn,.published-question .answers .price-info li.complete-payment .btn-warning{font-size:13px;min-width:100px;text-transform:none;border-radius:4px;padding:2px 7px}.admin-info-more .col- .btn,.admin-info-more .col-rt .btn{font-size:18px;min-width:150px;line-height:35px;text-transform:uppercase}.connect-twitter-form .btn,.modal-holder.style-2 .close{font-size:12px}.modal-holder.style-2 .close{font-size:12px;color:transparent}.publish-form .btn,.upload-form .btn{min-width:98px;font-size:11px;padding:0}.login .btn strong,.modal-holder.style-1 .modal-content .close{display:none}.btn-next .btn-submit,.budget-form .submit-hold .btn-submit,.connect-twitter-form .submit-hold .btn-submit,.homework-form .submit-hold .btn-submit,.question-form .submit-hold .btn-submit,.upload-form .btn-submit{width:28px;height:28px;padding:1px}.btn-next .btn-submit span,.connect-twitter-form .submit-hold .btn-submit span,.homework-form .submit-hold .btn-submit span,.question-form .submit-hold .btn-submit span,.upload-form .btn-submit span{width:26px;height:26px;line-height:26px;border-width:1px;padding:0}.btn-redirect .btn-next .btn-submit span{line-height:22px}.advancedsearch .submit-hold .btn-submit,.publish-form .submit-hold .btn-submit,.search-teacher-form .submit-hold .btn-submit{text-align:center;height:40px;width:135px;border-width:1px;padding:5px}.question-search-form .btn-submit,.search-conversations-form .btn-submit{right:3px;width:20px;height:20px}}@media (max-width:639px){.dropzone .upload-btn{font-size:14px;padding:3px 15px}.connect-twitter-form .btn{position:static;float:right;padding:10px 0 0;background:transparent;color:#f99815;text-decoration:underline;font-size:18px}.connect-twitter-form .transparent-btn{padding:0;width:100%}.connect-twitter-form .transparent-btn[disabled] .btn{color:#515151}.connect-twitter-form .transparent-btn[disabled] .btn.btn-success{color:#338624}.connect-twitter-form .transparent-btn[disabled] .btn:hover{background:transparent}.connect-twitter-form .transparent-btn .btn:hover:not([disabled]){background:transparent;text-decoration:none;color:#333}.student-page .answer-block .btn{float:none;display:block}.search-teacher-form .submit-hold .btn-submit{height:25px;width:100px;font-size:13px}} .congrats-box{font-size:36px;line-height:1.3;color:#515151;padding:60px 50px}.congrats-box h2{font-size:48px;line-height:1.3;font-weight:700;color:#f8941f;margin-bottom:63px}.congrats-box p{margin-bottom:11px}.congrats-box .btn-warning{font-size:inherit}@media (max-width:991px){.congrats-box{font-size:26px;padding:30px 25px}.congrats-box h2{font-size:38px;margin-bottom:43px}}@media (max-width:767px){.congrats-box{font-size:17px;padding:45px 15px 35px}.congrats-box h2{font-size:28px;margin-bottom:25px}.congrats-box p{margin-bottom:8px}}@media (max-width:639px){.congrats-box{font-size:14px;padding:10px}.congrats-box h2{margin-top:20px;font-size:18px;margin-bottom:30px}} .yes-no-buttons{display:flex;justify-content:space-around;width:100%;margin-top:60px}.yes-no-buttons .no,.yes-no-buttons .yes{padding:15px 100px}.congrats-box .btn-warning{font-size:inherit}@media (max-width:991px){.yes-no-buttons{margin-top:50px}.yes-no-buttons .no,.yes-no-buttons .yes{padding:15px 50px}}@media (max-width:767px){.yes-no-buttons{margin-top:20px;display:block}.congrats-box .yes-no-buttons .btn-warning,.yes-no-buttons .no,.yes-no-buttons .yes{padding:2px 5px;display:block;width:154px;height:42px;border-radius:2px;box-shadow:0 0 2px rgba(0,0,0,.12);background:#f6911d;font-size:18px;font-weight:500;margin:20px auto}} .field-errors{margin-top:5px;font-size:15px;color:#f7921e;word-wrap:break-word}.budget-form .search-wrap .col:hover .field-errors{color:#fff}.white-errors{margin-top:5px;color:#fff}@media (max-width:767px){.field-errors{font-size:10px;line-height:1}} .form-control{box-shadow:none;border-radius:0!important;resize:none;text-overflow:ellipsis;display:block;width:100%;height:80px;padding:6px 12px;font-size:14px;line-height:1.5;color:#454545;background-color:#fff;background-image:none;border:1px solid #fff;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control:focus{box-shadow:none;outline:none;border-color:#f99815}.search-form .form-control{text-align:center;font-size:30px;font-style:italic;color:#454545;border-width:6px;padding:10px 100px 10px 25px}.login-form .form-control,.signup-form .form-control,.tfa-form .form-control{height:44px;border:none;border-bottom:1px solid #f7921e;box-shadow:none;font-size:24px;font-style:italic;color:#454545;padding:6px 0 5px}.question-form .form-control{font-size:20px;box-shadow:none;border:none;color:#333;height:178px;resize:none;padding:5px 0}.connect-twitter-form .form-group.add .form-control{max-width:280px}.connect-twitter-form .form-control{height:42px;border:none;border-bottom:1px solid #f7921e;box-shadow:none;font-size:24px;font-style:italic;color:#454545;padding:6px 0 5px}.connect-twitter-form .form-control::-moz-placeholder{opacity:1;color:#4f4b4d}.budget-form .form-control,.congratulations-block .form-control{height:44px;border:none;border-bottom:1px solid #f7921e;box-shadow:none;font-style:italic;color:#454545;background:transparent;font-size:18px;padding:6px 0 5px}.budget-form .search-wrap .form-control,.congratulations-block .form-control{color:#454545;padding-right:40px;border-color:#cacaca}.advancedsearch .form-control,.publish-form .form-control,.search-teacher-form .form-control{height:44px;border:none;border-bottom:1px solid #f7921e;box-shadow:none;font-size:24px;font-style:italic;color:#454545;background:transparent;padding:6px 0 5px}.advancedsearch .search-wrap .col.add .form-control,.publish-form .search-wrap .col.add .form-control,.search-teacher-form .search-wrap .col.add .form-control{color:#454545;border-color:#f6972b}.advancedsearch .search-wrap .col.add .form-control::-moz-placeholder,.publish-form .search-wrap .col.add .form-control::-moz-placeholder,.search-teacher-form .search-wrap .col.add .form-control::-moz-placeholder{opacity:1;color:#bebebe}.advancedsearch .search-wrap .form-control,.publish-form .search-wrap .form-control,.search-teacher-form .search-wrap .form-control{padding-right:40px;color:#454545;border-color:#d3d3d3}.advancedsearch .search-wrap .form-control:focus,.publish-form .search-wrap .form-control:focus,.search-teacher-form .search-wrap .form-control:focus{border-color:#f6972b}.advancedsearch .key-words .form-control,.publish-form .key-words .form-control,.search-teacher-form .key-words .form-control{text-transform:uppercase}.search-by .form-control{height:18px;color:#272626;font-size:11px;border-color:#b5b5b6;border-style:dotted;border-width:0 0 1px;padding:0 20px 0 3px}.search-by .form-control::-moz-placeholder{opacity:1;color:#272626}.search-teacher-form .col.reviews .form-control{font-style:normal;color:#333;border-width:2px}.question-search-form .form-control{height:40px;text-align:center;color:#989898;font-size:20px;font-style:italic;width:255px;border-color:#c3c3c3;padding:6px 44px 6px 12px}.msg-form .form-control{color:#454545;font-style:italic;letter-spacing:1px;box-shadow:none;-webkit-appearance:none;border-color:#959595;padding:14px 40px;border-radius:50px!important}.msg-form .form-control::-moz-placeholder{opacity:1;color:#ccc}.datepicker-form .form-control{border:none;border-bottom:2px solid #f7921e;box-shadow:none;font-style:normal;color:#333;background:transparent;height:auto;font-size:inherit!important;padding:6px 0 2px 38px}.datepicker-form .form-control:focus,.datepicker-form .form-control:hover{border-color:#000}.add-block .add-block-dropdown .form-control{font-size:24px;line-height:1.2;color:#333;height:43px;border-color:#f7921e;border-width:0 0 1px;padding:5px 0}.add-block .add-block-dropdown textarea.form-control{height:auto;min-height:100px;color:#333;font-size:16px;line-height:1.5;-webkit-appearance:none;border-width:1px;padding:9px 19px}.form-group.style-1 .field-wrap .form-control{font-size:24px;line-height:1.2;color:#454545;height:40px;border-color:#f7921e;border-width:0 0 1px;padding:5px 0}.msg-writting-area .form-control{height:70px;font-size:18px;width:90%;float:left}.answer-form .form-control{height:inherit;font-size:inherit}.add-block-dropdown .form-control{font-size:24px;line-height:1.2;color:#333;height:43px;border-color:#f7921e;border-width:0 0 1px;padding:5px 0}.add-block-dropdown .form-control::-moz-placeholder{opacity:1;color:#989898!important;font-style:italic!important}.add-block-dropdown .form-control:focus{border-color:#000!important}.add-block-dropdown textarea.form-control{height:auto;min-height:100px;color:#333;font-size:16px;line-height:1.5;-webkit-appearance:none;border-width:1px;padding:9px 19px}.grace-field .form-control{padding-left:40px!important;display:inline-block;width:auto}.search-box-filter .form-group .form-control{padding:6px 55px 6px 12px}.search-form .form-group{position:relative;margin-bottom:2px}.login-form .form-group,.signup-form .form-group,.tfa-form .form-group{margin-bottom:28px}.connect-twitter-form .form-group{margin-bottom:32px}.budget-form .form-group,.congratulations-block .form-group{position:relative;margin-bottom:9px}.advancedsearch .form-group,.publish-form .form-group,.search-teacher-form .form-group{margin-bottom:9px}.question-search-form .form-group{margin-bottom:0}.datepicker-form .form-group{position:relative;margin-bottom:0}.form-group{margin-bottom:15px}.dmca .search-box-filter .form-group{display:flex;align-items:flex-end}.dmca .search-box-filter .form-group textarea{width:100%!important;height:auto!important}.search-box-filter .form-group textarea{text-align:left;height:auto;width:auto}.connect-twitter-form .form-group.add{position:relative;margin-bottom:1px}.open-close .slide .form-group.custom{margin:6px 0 10px -5px}.form-group.custom input[type=text]{border:solid #bfbcbc;font-size:17px;color:#454545;width:152px;height:27px;display:inline-block;vertical-align:bottom;-webkit-appearance:none;box-shadow:none;border-radius:0;background:none;border-width:0 0 1px;padding:0 10px 1px}.form-group.custom input[type=text]::-moz-placeholder{opacity:1;color:#bfbcbc}.form-group.custom input[type=text]:focus{outline:none;border-color:#f6911d}.form-group.style-1{margin-bottom:60px}.form-group.style-1 label:not(.sr-only){color:#f4982d;font-size:14px;font-weight:400;position:relative}.form-group.style-1 label:not(.sr-only) span{color:#b71d1d;position:absolute;top:0;right:-13px;font-size:24px;line-height:1}.email-verification-form .form-group.style-1{margin-bottom:20px}.form-control.disabled{cursor:not-allowed}.form-group.style-1 .field-wrap.active .placeholder{display:none}.form-group.style-1 .field-wrap .placeholder{position:absolute;top:0;font-size:24px;line-height:1.2;color:#989898;font-style:italic;max-width:100%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;pointer-events:none;height:40px;padding:5px 0}.advancedsearch .form-control::-webkit-input-placeholder,.budget-form .form-control::-webkit-input-placeholder,.login-form .form-control::-webkit-input-placeholder,.publish-form .form-control::-webkit-input-placeholder,.search-form .form-control::-webkit-input-placeholder,.search-teacher-form .form-control::-webkit-input-placeholder,.signup-form .form-control::-webkit-input-placeholder,.tfa-form .form-control::-webkit-input-placeholder{color:#989898}.advancedsearch .form-control:-ms-input-placeholder,.budget-form .form-control:-ms-input-placeholder,.login-form .form-control:-ms-input-placeholder,.publish-form .form-control:-ms-input-placeholder,.search-form .form-control:-ms-input-placeholder,.search-teacher-form .form-control:-ms-input-placeholder,.signup-form .form-control:-ms-input-placeholder,.tfa-form .form-control:-ms-input-placeholder{color:#989898}.advancedsearch .form-control.placeholder,.budget-form .form-control.placeholder,.budget-form select.form-control,.login-form .form-control.placeholder,.publish-form .form-control.placeholder,.search-form .form-control.placeholder,.search-teacher-form .form-control.placeholder,.signup-form .form-control.placeholder,.tfa-form .form-control.placeholder{color:#989898}.advancedsearch .form-control::-moz-placeholder,.budget-form .form-control::-moz-placeholder,.login-form .form-control::-moz-placeholder,.publish-form .form-control::-moz-placeholder,.search-form .form-control::-moz-placeholder,.search-teacher-form .form-control::-moz-placeholder,.signup-form .form-control::-moz-placeholder,.tfa-form .form-control::-moz-placeholder{opacity:1;color:#989898}.add-block .add-block-dropdown .form-control:focus,.advancedsearch .form-control:focus,.advancedsearch .search-wrap .col.add .form-control:focus,.budget-form .form-control:focus,.budget-form .search-wrap .col.add .form-control:focus,.budget-form .search-wrap .col:hover .form-control:focus,.connect-twitter-form .form-control:focus,.datepicker-form .form-control:focus,.form-group.style-1 .field-wrap .form-control:focus,.login-form .form-control:focus,.publish-form .form-control:focus,.publish-form .search-wrap .col.add .form-control:focus,.search-teacher-form .form-control:focus,.search-teacher-form .search-wrap .col.add .form-control:focus,.signup-form .form-control:focus,.tfa-form .search-wrap .col:hover .form-control:focus{border-color:#000}.budget-form .wrap .col.date-picker .form-control::-webkit-input-placeholder,.datepicker-form .form-control::-webkit-input-placeholder,.question-form .form-control::-webkit-input-placeholder{color:#333}.budget-form .wrap .col.date-picker .form-control:-moz-placeholder,.datepicker-form .form-control:-moz-placeholder,.question-form .form-control:-moz-placeholder{color:#333}.budget-form .wrap .col.date-picker .form-control:-ms-input-placeholder,.datepicker-form .form-control:-ms-input-placeholder,.question-form .form-control:-ms-input-placeholder{color:#333}.budget-form .wrap .col.date-picker .form-control.placeholder,.datepicker-form .form-control.placeholder,.question-form .form-control.placeholder{color:#333}.budget-form .wrap .col.date-picker .form-control::-moz-placeholder,.datepicker-form .form-control::-moz-placeholder,.question-form .form-control::-moz-placeholder{opacity:1;color:#333}.connect-twitter-form .form-control::-webkit-input-placeholder{color:#4f4b4d}.connect-twitter-form .form-control:-moz-placeholder{color:#4f4b4d}.connect-twitter-form .form-control:-ms-input-placeholder{color:#4f4b4d}.connect-twitter-form .form-control.placeholder{color:#4f4b4d}.advancedsearch .wrap .col.date-picker .form-control,.budget-form .wrap .col.date-picker .form-control,.publish-form .wrap .col.date-picker .form-control,.search-teacher-form .wrap .col.date-picker .form-control{font-style:normal;color:#333;padding-left:40px;border-width:2px}.advancedsearch .search-wrap .form-control::-webkit-input-placeholder,.budget-form .search-wrap .form-control::-webkit-input-placeholder,.publish-form .search-wrap .form-control::-webkit-input-placeholder,.search-teacher-form .search-wrap .form-control::-webkit-input-placeholder{color:#c9c9c9}.advancedsearch .search-wrap .form-control:-moz-placeholder,.budget-form .search-wrap .form-control:-moz-placeholder,.publish-form .search-wrap .form-control:-moz-placeholder,.search-teacher-form .search-wrap .form-control:-moz-placeholder{color:#c9c9c9}.advancedsearch .search-wrap .form-control:-ms-input-placeholder,.budget-form .search-wrap .form-control:-ms-input-placeholder,.publish-form .search-wrap .form-control:-ms-input-placeholder,.search-teacher-form .search-wrap .form-control:-ms-input-placeholder{color:#c9c9c9}.advancedsearch .search-wrap .form-control.placeholder,.budget-form .search-wrap .form-control.placeholder,.publish-form .search-wrap .form-control.placeholder,.search-teacher-form .search-wrap .form-control.placeholder{color:#c9c9c9}.advancedsearch .search-wrap .form-control::-moz-placeholder,.budget-form .search-wrap .form-control::-moz-placeholder,.publish-form .search-wrap .form-control::-moz-placeholder,.search-teacher-form .search-wrap .form-control::-moz-placeholder{opacity:1;color:#c9c9c9}.budget-form .search-wrap .form-control:focus,.msg-form .form-control:focus,.question-search-form .form-control:focus,.search-by .form-control:focus{border-color:#f99815}.budget-form .search-wrap .col.add .form-control,.budget-form .search-wrap .col:hover .form-control{color:#454545;border-color:#fff}.budget-form .search-wrap .col.add .form-control::-webkit-input-placeholder,.budget-form .search-wrap .col:hover .form-control::-webkit-input-placeholder{color:#fcd9b1}.budget-form .search-wrap .col.add .form-control:-moz-placeholder,.budget-form .search-wrap .col:hover .form-control:-moz-placeholder{color:#fcd9b1}.budget-form .search-wrap .col.add .form-control:-ms-input-placeholder,.budget-form .search-wrap .col:hover .form-control:-ms-input-placeholder{color:#fcd9b1}.budget-form .search-wrap .col.add .form-control.placeholder,.budget-form .search-wrap .col:hover .form-control.placeholder{color:#fcd9b1}.budget-form .search-wrap .col.add .form-control::-moz-placeholder,.budget-form .search-wrap .col:hover .form-control::-moz-placeholder{opacity:1;color:#fcd9b1}.advancedsearch .wrap .col.date-picker .form-control::-webkit-input-placeholder,.publish-form .wrap .col.date-picker .form-control::-webkit-input-placeholder,.search-teacher-form .col.reviews .form-control::-webkit-input-placeholder,.search-teacher-form .wrap .col.date-picker .form-control::-webkit-input-placeholder{color:#333!important}.advancedsearch .wrap .col.date-picker .form-control:-moz-placeholder,.publish-form .wrap .col.date-picker .form-control:-moz-placeholder,.search-teacher-form .col.reviews .form-control:-moz-placeholder,.search-teacher-form .wrap .col.date-picker .form-control:-moz-placeholder{color:#333!important}.advancedsearch .wrap .col.date-picker .form-control:-ms-input-placeholder,.publish-form .wrap .col.date-picker .form-control:-ms-input-placeholder,.search-teacher-form .col.reviews .form-control:-ms-input-placeholder,.search-teacher-form .wrap .col.date-picker .form-control:-ms-input-placeholder{color:#333!important}.advancedsearch .wrap .col.date-picker .form-control.placeholder,.publish-form .wrap .col.date-picker .form-control.placeholder,.search-teacher-form .col.reviews .form-control.placeholder,.search-teacher-form .wrap .col.date-picker .form-control.placeholder{color:#333!important}.advancedsearch .wrap .col.date-picker .form-control::-moz-placeholder,.publish-form .wrap .col.date-picker .form-control::-moz-placeholder,.search-teacher-form .col.reviews .form-control::-moz-placeholder,.search-teacher-form .wrap .col.date-picker .form-control::-moz-placeholder{opacity:1;color:#333!important}.advancedsearch .search-wrap .col.add .form-control::-webkit-input-placeholder,.publish-form .search-wrap .col.add .form-control::-webkit-input-placeholder,.search-teacher-form .search-wrap .col.add .form-control::-webkit-input-placeholder{color:#bebebe}.advancedsearch .search-wrap .col.add .form-control:-moz-placeholder,.publish-form .search-wrap .col.add .form-control:-moz-placeholder,.search-teacher-form .search-wrap .col.add .form-control:-moz-placeholder{color:#bebebe}.advancedsearch .search-wrap .col.add .form-control:-ms-input-placeholder,.publish-form .search-wrap .col.add .form-control:-ms-input-placeholder,.search-teacher-form .search-wrap .col.add .form-control:-ms-input-placeholder{color:#bebebe}.advancedsearch .search-wrap .col.add .form-control.placeholder,.publish-form .search-wrap .col.add .form-control.placeholder,.search-teacher-form .search-wrap .col.add .form-control.placeholder{color:#bebebe}.search-by .form-control::-webkit-input-placeholder{color:#272626}.search-by .form-control:-moz-placeholder{color:#272626}.search-by .form-control:-ms-input-placeholder{color:#272626}.search-by .form-control.placeholder{color:#272626}.msg-form .form-control::-webkit-input-placeholder{color:#ccc}.msg-form .form-control:-moz-placeholder{color:#ccc}.msg-form .form-control:-ms-input-placeholder{color:#ccc}.msg-form .form-control.placeholder{color:#ccc}.add-block-dropdown select.form-control,.add-block .add-block-dropdown select.form-control{color:#989898;font-style:italic;-webkit-appearance:none}.add-block .add-block-dropdown .form-control::-webkit-input-placeholder,.form-group.style-1 .field-wrap .form-control::-webkit-input-placeholder{color:#989898;font-style:italic}.add-block .add-block-dropdown .form-control:-moz-placeholder,.form-group.style-1 .field-wrap .form-control:-moz-placeholder{color:#989898;font-style:italic}.add-block .add-block-dropdown .form-control:-ms-input-placeholder,.form-group.style-1 .field-wrap .form-control:-ms-input-placeholder{color:#989898;font-style:italic}.add-block .add-block-dropdown .form-control.placeholder,.form-group.style-1 .field-wrap .form-control.placeholder{color:#989898;font-style:italic}.add-block .add-block-dropdown .form-control::-moz-placeholder,.form-group.style-1 .field-wrap .form-control::-moz-placeholder{opacity:1;color:#989898;font-style:italic}.add-block-dropdown .form-control::-webkit-input-placeholder{color:#989898!important;font-style:italic!important}.add-block-dropdown .form-control:-moz-placeholder{color:#989898!important;font-style:italic!important}.add-block-dropdown .form-control:-ms-input-placeholder{color:#989898!important;font-style:italic!important}.add-block-dropdown .form-control.placeholder{color:#989898!important;font-style:italic!important}.advancedsearch .search-wrap .form-group,.advancedsearch .wrap .col.date-picker .form-group,.publish-form .search-wrap .form-group,.publish-form .wrap .col.date-picker .form-group,.search-box-filter .form-group,.search-by .form-group,.search-teacher-form .col.reviews .form-group,.search-teacher-form .search-wrap .form-group,.search-teacher-form .wrap .col.date-picker .form-group{position:relative}.add-block-dropdown .form-group,.add-block .add-block-dropdown .form-group,.section-1.style-1 .form-group.style-1{margin-bottom:25px}.form-group.custom input[type=text]::-webkit-input-placeholder{color:#bfbcbc}.form-group.custom input[type=text]:-moz-placeholder{color:#bfbcbc}.form-group.custom input[type=text]:-ms-input-placeholder{color:#bfbcbc}.form-group.custom input[type=text].placeholder{color:#bfbcbc}@media (max-width:1096px){.add-block-dropdown .form-control{font-size:20px;padding:6px 0}.advancedsearch .form-control,.budget-form .form-control,.login-form .form-control,.publish-form .form-control,.search-teacher-form .form-control,.signup-form .form-control,.tfa-form .form-control{font-size:16px}.add-block .add-block-dropdown .form-control,.form-group.style-1 .field-wrap .form-control,.form-group.style-1 .field-wrap .placeholder{font-size:20px;padding:6px 0}}@media (max-width:991px){.form-group{margin-bottom:8px}.msg-writting-area .form-control{width:88%}}@media (max-width:767px){.search-form .form-control{height:28px;font-size:16px;text-align:left;border-width:1px;padding:2px 30px 2px 7px}.login-form .form-control,.signup-form .form-control,.tfa-form .form-control{font-size:11px;height:18px;padding:0}.homework-answers .search-form .form-control{height:38px}.homework-answers .search-form .form-control::placeholder{font-size:16px;text-transform:capitalize}.add-block-dropdown .form-box .form-control,.budget-form.teacher-search-form .form-control,.form-box .form-control{font-size:16px;height:22px;padding:0;line-height:1;font-weight:300;border-bottom-width:2px}.add-block-dropdown .form-box textarea.form-control,.form-box textarea.form-control{padding:5px;border-bottom-width:2px}.budget-form.teacher-search-form .form-control.Select,.form-box .form-control.Select{height:34px;border-bottom-width:2px}.student-home .col.budget-col .form-group:after{content:”$”;position:absolute;right:0;top:-5px;color:#f6911d;font-size:22px;font-weight:500}.budget-form .search-wrap .form-control,.congratulations-block .form-control{border-color:#f7921e;border-bottom-width:2px}.advancedsearch .form-control,.publish-form .form-control,.search-teacher-form .form-control{width:100%;font-size:11px;height:18px;padding:0}.question-search-form .form-control{height:28px;font-size:16px;width:130px;padding:2px 25px 2px 5px}.publish-form .search-wrap .form-control{padding-right:0;border-color:#f7921e}.publish-form .search-wrap .form-control:focus{border-color:#000}.msg-form .form-control{padding:5px 10px;width:86%}.main-content-area.style-2 .content-area .col-lt .search-form .form-control{background-color:hsla(0,0%,100%,.82);color:#333;border-color:transparent}.main-content-area.style-2 .content-area .col-lt .search-form .form-control::-moz-placeholder{opacity:1;color:#333}.main-content-area.style-2 .content-area .col-lt .search-form .form-control:focus{border-color:#f99815}.search-form.style-1 .form-control{text-align:center}.datepicker-form .form-control{width:100%;font-size:13px;height:24px;padding:0 0 0 20px}.msg-writting-area .form-control{height:40px;font-size:16px}.add-block-dropdown .form-control{font-size:13px;height:27px;padding:4px 0}.search-box-filter .form-group .form-control{height:22px;font-size:16px;padding:0 30px 0 3px}.search-form .form-group{margin-bottom:0}.connect-twitter-form .form-group,.login-form .form-group,.signup-form .form-group,.tfa-form .form-group{margin-bottom:26px}.publish-form .form-group{margin-bottom:24px}.open-close .slide .form-group.custom{margin:0 0 11px}.form-group.custom input[type=text]{font-size:14px;width:115px;height:23px;padding:0 7px 1px}.deposit-form .form-group.custom input[type=text]{font-size:16px;height:22px;padding:0 0 5px;font-weight:300;width:100%}.section-1.style-1 .form-group.style-1{margin-bottom:22px}.form-group.style-1 label:not(.sr-only){margin-bottom:0;font-size:11px}.form-group.style-1 label:not(.sr-only) span{font-size:20px}.advancedsearch .wrap .col.date-picker .form-control,.budget-form .wrap .col.date-picker .form-control,.publish-form .wrap .col.date-picker .form-control,.search-teacher-form .wrap .col.date-picker .form-control{padding-left:16px}.student-home .budget-form .wrap .col.date-picker .form-control{padding-left:0}.advancedsearch .search-wrap .form-control,.budget-form .search-wrap .form-control,.publish-form .search-wrap .form-control,.search-teacher-form .search-wrap .form-control{padding-right:22px}.main-content-area.style-2 .content-area .col-lt .search-form .form-control::-webkit-input-placeholder{color:#333}.main-content-area.style-2 .content-area .col-lt .search-form .form-control:-moz-placeholder{color:#333}.main-content-area.style-2 .content-area .col-lt .search-form .form-control:-ms-input-placeholder{color:#333}.main-content-area.style-2 .content-area .col-lt .search-form .form-control.placeholder{color:#333}.add-block .add-block-dropdown .form-control{font-size:13px;height:27px;padding:4px 0}.form-group.style-1 .field-wrap .form-control,.form-group.style-1 .field-wrap .placeholder{font-size:16px;height:22px;padding:0 0 5px;font-weight:300}.add-block-dropdown textarea.form-control,.add-block .add-block-dropdown textarea.form-control{font-size:11px;line-height:1.2;min-height:75px;padding:6px 10px}.form-group.style-1{margin-bottom:10px}.student-auth-wizard .form-group label,.student-home .form-group label,.teacher-login .form-group label,.teacher-sign-up-wizard .form-group label,.ticket-wizard .form-group label{display:none}.student-home .form-group label.fa{display:initial;position:absolute;right:0;top:-5px;color:#f6911d;font-size:22px;left:unset}.student-home .congratulations-block .form-group label.fa,.student-home .search-wrap .form-group label.fa{top:12px}.form-control{border-bottom-width:2px}}@media (max-width:639px){.connect-twitter-form .form-group.add .form-control{max-width:none;margin-bottom:15px}.search-teacher-form .search-wrap .form-control{padding-right:0}.search-teacher-form .col.reviews .form-control{border-width:3px}.search-teacher-form .search-wrap .col .form-control{border-color:#f6911d}.search-teacher-form .search-wrap .col .form-control:focus{border-color:#000}.search-teacher-form .form-group{margin-bottom:12px}.search-teacher-form .search-wrap .form-group{margin-bottom:18px}.connect-twitter-form .form-group.add{margin-bottom:15px}}@media (max-width:556px){.question-search-form .form-control{width:100px}.datepicker-form .form-control{width:150px;font-size:1em}.grid-header .datepicker-form .form-control{width:100%}}@media (max-width:374px){.question-search-form .form-control{width:120px}.msg-form .form-control{width:85%}} .tfa-form{position:relative;margin-bottom:20px}.modal-content .tfa-form{padding:35px}.lost-token{position:absolute;left:0;bottom:-5px;font-size:18px;text-decoration:underline}.modal-content .lost-token{right:15px;left:unset;bottom:10px}.tfa-form .note{font-size:18px;margin:10px 0}.tfa-option{margin:5px 0}.modal-screen .tfa-option{display:inline-block;margin:25px}.tfa-option .disable-warning{text-decoration:underline;color:#4a4a4a}.tfa-option .disable-warning:focus,.tfa-option .disable-warning:hover{color:#f6911d}.tfa-form .form-group.token{width:120px;margin:0 auto 28px}.tfa-form .form-group input{text-align:center}@media (min-width:768px){.modal-screen .tfa-form .form-group{width:300px;margin:auto}}@media (max-width:767px){.lost-token{bottom:-45px;left:10px}.modal-content .lost-token{bottom:15px;left:-50%}.tfa-option{margin:15px 0}.open-close .slide .tfa-option input[type=submit],.tfa-option input[type=submit]{width:auto!important;height:42px;border-radius:2px;box-shadow:0 0 2px rgba(0,0,0,.12);background:#f6911d;font-size:18px;font-weight:500}}@media (max-width:374px){.modal-content .lost-token{bottom:15px;left:-40%}} .refund-form{padding:50px 50px 20px}.radio.style-1.refund-option label{margin-top:5px}.radio.style-1.refund-option input[type=radio]{margin-top:4px}.open-close .slide .form-group.custom{margin:6px 0 10px -5px}.form-group.custom input[type=text]{border:solid #bfbcbc;border-width:0 0 1px;font-size:17px;color:#454545;padding:0 10px 1px;width:152px;height:27px;display:inline-block;vertical-align:bottom;-webkit-appearance:none;box-shadow:none;border-radius:0;background:none}.form-group.custom input[type=text]::-webkit-input-placeholder{color:#bfbcbc}.form-group.custom input[type=text]::placeholder{color:#bfbcbc}.form-group.custom input[type=text]::-moz-placeholder{opacity:1;color:#bfbcbc}.form-group.custom input[type=text]:-moz-placeholder{color:#bfbcbc}.form-group.custom input[type=text]:-ms-input-placeholder{color:#bfbcbc}.form-group.custom input[type=text].placeholder{color:#bfbcbc}.form-group.custom input[type=text]:focus{outline:none;border-color:#f6911d}.form-group.custom .sign{font-size:17px;color:#4a4a4a;margin-left:5px;display:inline-block;vertical-align:bottom}.refund-form .refund-form-buttons{padding-top:20px}.congrats-box .btn-warning{font-size:inherit}@media (max-width:767px){.form-group.custom .sign{font-size:16px}.form-group.custom input[type=text]{font-size:14px;width:115px;height:23px;padding:0 7px 1px}.open-close .slide .form-group.custom{margin:0 0 11px}.radio.style-1.refund-option{margin-top:10px}.refund-form-buttons{margin-top:20px}.refund-form-buttons .btn-warning{padding:2px 5px;width:154px;height:42px;border-radius:2px;box-shadow:0 0 2px rgba(0,0,0,.12);background:#f6911d;font-size:18px;font-weight:500;margin:20px auto}} .field-errors{margin-top:5px;font-size:15px;color:#f7921e;word-wrap:break-word}.profile-image-error{position:absolute;font-size:15px}.dropzone-error{text-align:center;margin-top:10px;color:#fff;font-size:20px}.editor-block .dropzone-error{color:#f6911d}.text-large{font-size:30px}@media (max-width:767px){.field-errors{font-size:14px;line-height:1}.teacher-private-profile-errors.field-errors{margin-bottom:10px}.dropzone-error{font-size:15px;color:#f7921e}} .congrats-box .btn-warning{font-size:inherit}.btn.style-1{border:3px solid #fff;border-radius:13px;text-transform:none;color:#f6f6f6;font-weight:400;padding:3px 10px 4px}@media (max-width:991px){.btn.style-1{border-radius:10px}}@media (max-width:767px){.btn.style-1{border-width:2px;border-radius:5px;padding:2px 7px 3px}} .yes-no-buttons{display:flex;justify-content:space-around;width:100%;margin-top:60px}.fake-answer-warning .yes-no-buttons .no,.fake-answer-warning .yes-no-buttons .yes{padding:15px 50px;text-transform:capitalize}.congrats-box .btn-warning{font-size:inherit}@media (max-width:991px){.yes-no-buttons{margin-top:50px}.yes-no-buttons .no,.yes-no-buttons .yes{padding:15px 50px}}@media (max-width:767px){.yes-no-buttons{margin-top:20px;display:block}.congrats-box .yes-no-buttons .btn-warning,.yes-no-buttons .no,.yes-no-buttons .yes{padding:2px 5px;display:block;width:154px;height:42px;border-radius:2px;box-shadow:0 0 2px rgba(0,0,0,.12);background:#f6911d;font-size:18px;font-weight:500;margin:20px auto}} .modal-screen{height:100%;width:100%;top:0;left:0;text-align:center;position:fixed;z-index:99999}@keyframes modalBlurredLayerFadeIn{0%{opacity:0}to{opacity:.7}}@keyframes modalBlurredLayerFadeOut{0%{opacity:.7}to{opacity:0}}@keyframes modalSlideIn{0%{top:-100%}to{top:150px}}@keyframes modalSlideOut{0%{top:150px}to{top:-100%}}.modal-screen .blurred-layer{background:#000}.blurred-layer{height:100%;opacity:.7;background:#fff}.modal-screen .hwmkt-modal{position:absolute;top:150px;right:300px;left:300px;outline:none;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease}.modal-page .modal-holder{width:930px;margin:0 auto;padding:100px 0}.modal-holder.style-2{width:1010px;position:relative;z-index:9999}.modal-screen .hwmkt-modal .modal-holder.style-2{width:auto}.modal-content{border:none;box-shadow:none;border-radius:0}.modal-holder.style-2 .modal-content{box-shadow:0 0 57px rgba(0,0,0,.35)}.modal-screen .hwmkt-modal .modal-holder.style-2 .modal-content{background:#fff}.modal-holder.style-2 .close:hover .ico-close{background:#c26b07}.modal-holder.style-2 .close .ico-close{display:inline-block;vertical-align:bottom;border-radius:50%;background:#f7921e;width:25px;height:25px;margin-right:1px;position:relative;transition:background .3s linear}.modal-holder.style-2 .close .ico-close:after,.modal-holder.style-2 .close .ico-close:before{content:””;background:#fff;height:3px;position:absolute;top:11px;left:5px;right:4px;transform:rotate(45deg)}.modal-holder.style-2 .close .ico-close:after{transform:rotate(-45deg)}@media (max-width:1096px){.modal-screen .hwmkt-modal{right:100px;left:100px}}@media (max-width:1069px){.modal-holder.style-2{width:auto;margin:10px}}@media (max-width:991px){.modal-screen .hwmkt-modal{right:50px;left:50px}.modal-page .modal-holder{width:auto;margin:10px}.modal-holder.style-2 .close .ico-close{width:21px;height:21px}.modal-holder.style-2 .close .ico-close:after,.modal-holder.style-2 .close .ico-close:before{top:9px}}@media (max-width:767px){@keyframes modalSlideIn{0%{top:-100%}to{top:50px}}@keyframes modalSlideOut{0%{top:150px}to{top:-100%}}.modal-screen .hwmkt-modal{right:20px;left:20px;top:50px}.modal-holder.style-2 .close .ico-close{width:17px;height:17px;top:1px}.modal-holder.style-2 .close .ico-close:after,.modal-holder.style-2 .close .ico-close:before{top:7px;left:4px}.modal-content{height:80vh}.modal-content .btn-close{font-size:27px;position:absolute;top:-13px;right:-17px;color:#ff4537;margin-right:15px;z-index:1}}@media (max-width:639px){.modal-screen .hwmkt-modal{right:10px;left:10px}} .joyride-beacon{appearance:none;background-color:transparent;border:0;cursor:pointer;display:inline-block;line-height:1;padding:0;height:36px;position:relative;width:36px;z-index:1500}.joyride-beacon:active,.joyride-beacon:focus,.joyride-beacon:hover{outline:none}.joyride-beacon__inner{animation:joyride-beacon-inner 1.2s infinite ease-in-out;background-color:#f04;border-radius:50%;display:block;height:50%;left:50%;opacity:.7;position:absolute;top:50%;transform:translate(-50%,-50%);width:50%}.joyride-beacon__outer{animation:joyride-beacon-outer 1.2s infinite ease-in-out;background-color:rgba(255,0,68,.2);border:2px solid #f04;border-radius:50%;box-sizing:border-box;display:block;height:100%;left:0;opacity:.9;position:absolute;top:0;transform:translateY(-50%);transform-origin:center;width:100%}.joyride-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:1500}.joyride-hole{border-radius:4px;box-shadow:0 0 0 9999px rgba(0,0,0,.5),0 0 15px rgba(0,0,0,.5);position:absolute}.joyride-hole.safari{box-shadow:0 0 999px 9999px rgba(0,0,0,.5),0 0 15px rgba(0,0,0,.5)}.joyride-tooltip{background-color:#fff;border-radius:4px;color:#555;cursor:default;filter:drop-shadow(-1px -2px 3px rgba(0,0,0,.3)) drop-shadow(1px 2px 3px rgba(0,0,0,.3));opacity:0;padding:20px;pointer-events:auto;transform:translateZ(0);width:290px;z-index:1510}.joyride-tooltip–animate{animation:joyride-tooltip .4s forwards;animation-timing-function:cubic-bezier(0,1.05,.55,1.18)}.joyride-tooltip__triangle{background-repeat:no-repeat;position:absolute}.joyride-tooltip.bottom,.joyride-tooltip.bottom-left,.joyride-tooltip.bottom-right{margin-top:18px}.joyride-tooltip.bottom-left .joyride-tooltip__triangle,.joyride-tooltip.bottom-right .joyride-tooltip__triangle,.joyride-tooltip.bottom .joyride-tooltip__triangle{background-image:url(“data:image/svg+xml;charset=utf-8,%3Csvg width=’36’ height=’18’ %3E%3Cpath fill=’%23fff’ d=’M36 18L18 0 0 18z’/%3E%3C/svg%3E”);height:18px;left:50%;top:-16px;transform:translateX(-50%);width:36px}.joyride-tooltip.top,.joyride-tooltip.top-left,.joyride-tooltip.top-right{margin-bottom:18px}.joyride-tooltip.top-left .joyride-tooltip__triangle,.joyride-tooltip.top-right .joyride-tooltip__triangle,.joyride-tooltip.top .joyride-tooltip__triangle{background-image:url(“data:image/svg+xml;charset=utf-8,%3Csvg width=’36’ height=’18’ %3E%3Cpath fill=’%23fff’ d=’M0 0l18 18L36 0z’/%3E%3C/svg%3E”);bottom:-16px;height:18px;left:50%;transform:translateX(-50%);width:36px}.joyride-tooltip.bottom-left .joyride-tooltip__triangle,.joyride-tooltip.top-left .joyride-tooltip__triangle{left:3%;transform:translateX(0)}@media screen and (min-width:480px){.joyride-tooltip.bottom-left .joyride-tooltip__triangle,.joyride-tooltip.top-left .joyride-tooltip__triangle{left:2%}}.joyride-tooltip.bottom-right .joyride-tooltip__triangle,.joyride-tooltip.top-right .joyride-tooltip__triangle{left:auto;right:3%;transform:translateX(0)}@media screen and (min-width:480px){.joyride-tooltip.bottom-right .joyride-tooltip__triangle,.joyride-tooltip.top-right .joyride-tooltip__triangle{right:2%}}.joyride-tooltip.left{margin-right:18px}.joyride-tooltip.left .joyride-tooltip__triangle{background-image:url(“data:image/svg+xml;charset=utf-8,%3Csvg width=’18’ height=’36’ %3E%3Cpath fill=’%23fff’ d=’M0 36l18-18L0 0z’/%3E%3C/svg%3E”);height:36px;right:-16px;width:18px}.joyride-tooltip.right{margin-left:18px}.joyride-tooltip.right .joyride-tooltip__triangle{background-image:url(“data:image/svg+xml;charset=utf-8,%3Csvg width=’18’ height=’36’ %3E%3Cpath fill=’%23fff’ d=’M18 0L0 18l18 18z’/%3E%3C/svg%3E”);height:36px;left:-16px;width:18px}.joyride-tooltip__close{appearance:none;background-color:transparent;border:0;cursor:pointer;display:inline-block;line-height:1;padding:0;background-image:url(“data:image/svg+xml;charset=utf-8,%3Csvg width=’12’ height=’12’ viewBox=’0 0 16 16′ %3E%3Cpath d=’M14.117.323L8.044 6.398 2.595.323a1.105 1.105 0 0 0-1.562 1.562L6.482 7.96.323 14.119a1.105 1.105 0 0 0 1.562 1.562L7.96 9.608l5.449 6.073a1.103 1.103 0 1 0 1.56-1.562L9.517 8.046l6.159-6.161a1.103 1.103 0 1 0-1.56-1.562z’ fill=’rgba(85,85,85,0.5)’/%3E%3C/svg%3E”);background-repeat:no-repeat;background-size:contain;height:12px;position:absolute;right:10px;text-decoration:none;top:10px;width:12px;z-index:10;display:block}.joyride-tooltip__close:active,.joyride-tooltip__close:focus,.joyride-tooltip__close:hover{outline:none}.joyride-tooltip__close:focus,.joyride-tooltip__close:hover{color:rgba(60,60,60,.5);outline:none}.joyride-tooltip__close–header{right:20px;top:20px}.joyride-tooltip__header{border-bottom:1px solid #f04;color:#555;font-size:20px;padding-bottom:6px;padding-right:18px;position:relative}.joyride-tooltip__header~.joyride-tooltip__main{padding:12px 0 18px}.joyride-tooltip__main{font-size:16px;padding-bottom:18px;padding-right:18px}.joyride-tooltip__footer{text-align:right}.joyride-tooltip__button{appearance:none;background-color:transparent;border:0;cursor:pointer;display:inline-block;line-height:1;padding:0}.joyride-tooltip__button:active,.joyride-tooltip__button:focus,.joyride-tooltip__button:hover{outline:none}.joyride-tooltip__button–primary{background-color:#f04;border-radius:4px;color:#fff;padding:6px 12px;transition:background-color .2s ease-in-out}.joyride-tooltip__button–primary:active,.joyride-tooltip__button–primary:focus,.joyride-tooltip__button–primary:hover{background-color:#ff1f5a;color:#fff}.joyride-tooltip__button–secondary{color:#f04;margin-right:10px}.joyride-tooltip__button–skip{color:#ccc;float:left;margin-right:10px}.joyride-tooltip–standalone .joyride-tooltip__main{padding-bottom:0}.joyride-tooltip–standalone .joyride-tooltip__footer{display:none}@media screen and (min-width:480px){.joyride-tooltip{width:360px}}@media screen and (min-width:960px){.joyride-tooltip{width:450px}}@keyframes joyride-tooltip{0%{transform:scale(.1)}to{opacity:1;transform:perspective(1px) scale(1)}}@keyframes joyride-beacon-inner{20%{opacity:.9}90%{opacity:.7}}@keyframes joyride-beacon-outer{0%{transform:scale(1)}45%{opacity:.7;transform:scale(.75)}to{opacity:.9;transform:scale(1)}} .joyride-beacon{z-index:0} .student-page .header .col-lt .star .icon-star-full{font-size:12px;margin-right:6px;height:15px;width:15px}.student-page .header .col-rt .icon-star-full{font-size:25px;margin-left:12px}.bids-popup .icon-star-full{stroke:#fff;stroke-width:2;vertical-align:middle;font-size:16px;color:#c3c3c3;margin:0 1px 1px}.rating-star .icon-star-full{width:15px;height:15px;margin:-1px 3px 0 0}.review-form .star .icon-star-full{font-size:18px;margin:0!important;padding:0!important}.icon-star-full{display:inline-block;width:1em;height:1em;stroke-width:1;stroke:currentColor;fill:currentColor;color:silver}#header .icon-star-full{stroke:#fff;stroke-width:2;vertical-align:middle;font-size:16px;color:#c3c3c3;margin:0 2px 1px 0}.search-result .tutor-info .icon-star-full{font-size:16px;color:#c4c4c4;margin:0 4px 0 1px}.search-result .right-block .star-rating .icon-star-full{font-size:14px;vertical-align:middle;color:#c4c4c4;margin:0 2px}.search-teacher .block .icon-star-full{font-size:16px;margin:0 4px 0 1px}.teacher-profile .dl-horizontal .rating .icon-star-full{font-size:13px;margin-right:2px}.teacher-profile .review-block .star .icon-star-full{font-size:13px;margin-left:2px}.similar-questions .items-list li .icon-star-full{margin-right:6px}.tutorial .tutorial-answer-reviews .star-rating .icon-star-full{font-size:18px;margin-right:6px}.published-question .block .tutor-info .star-rating .icon-star-full{font-size:16px;margin-right:6px}.published-question .meta-list .icon-star-full{font-size:13px;margin:-1px 5px}.admin-info-header .admin-des .star-rating .icon-star-full{margin-right:4px;font-size:15px;color:#c6c6c6}.icon-star-full.yellow{color:gold!important}.icon-star-full.green{color:#07bb25!important}.gethelp-block .star-rating .star .icon,.join-verified-teachers .star-rating .star .icon,.profile-details .review-block .head .star .icon{stroke:#fff;stroke-width:2;margin:0 1px}.gethelp-block .star-rating .yellow,.join-verified-teachers .star-rating .yellow,.profile-details .review-block .head .star .yellow,.profile-details .review-block .heading .star .yellow,.tutorial-rating .star .icon-star-full{color:#f6911d}.gethelp-block .star-rating .green,.join-verified-teachers .star-rating .green{color:#39b54a}@media (max-width:1359px){.student-page .header .col-rt .icon-star-full{font-size:18px;margin-left:5px}}@media (max-width:991px){.tutorial .tutorial-answer-reviews .star-rating .icon-star-full{font-size:14px;margin-right:4px}.review-form .star .icon-star-full{font-size:14px}.admin-info-header .admin-des .star-rating .icon-star-full{margin-right:1px;margin-left:1px}#header .icon-star-full,.bids-popup .icon-star-full{font-size:14px;margin-right:1px}}@media (max-width:767px){.similar-questions .items-list li .icon-star-full{width:16px;height:16px}.student-page .header .col-lt .star .icon-star-full{margin-right:3px}.student-page .tutorial-answer-reviews .icon-star-full{width:22px;height:22px;margin-right:8px}.student-page .tutorial-answer-reviews .icon-star-full:last-child{margin-right:0}.review-form .star .icon-star-full{font-size:18px}.search-result .right-block .star-rating .icon-star-full{font-size:10px;margin:0 1px}.published-question .block .tutor-info .star-rating .icon-star-full{font-size:12px;margin-right:2px}.published-question .meta-list .icon-star-full{font-size:10px;margin:1px 5px 0 0}.profile-details .review-block .head .star .icon{margin:0 1px 0 2px}.gethelp-block .star-rating .star .icon,.join-verified-teachers .star-rating .star .icon{margin:0 5px;height:22px;width:22px}.profile-details .review-block .heading .star .icon{margin:0 5px 0 2px;width:15px;height:15px}.search-result .tutor-info .icon-star-full,.search-teacher .block .icon-star-full{font-size:13px}.teacher-profile .dl-horizontal .rating .icon-star-full,.teacher-profile .review-block .star .icon-star-full{font-size:10px}.profile-details .review-block .heading .star .rating-star .icon-star-full{width:12px;height:12px;padding-top:1px}.review-block .head-lt .rating-star .icon-star-full{width:13px;height:13px;padding-top:2px}}@media (max-width:639px){.search-teacher .block .icon-star-full{vertical-align:middle}} .fa-star.yellow{color:#f6911d!important}.fa-star.green{color:#07bb25!important} .tag-introduction{margin:25px 0 50px}.tag-introduction .col-sm-4 .block{background-color:#fff;margin:0 auto;padding:20px;width:295px;height:200px;border-radius:1px;box-shadow:0 3px 5px rgba(0,0,0,.04)}.tag-introduction .block img{width:60px;height:60px;margin-bottom:30px}.tag-introduction .col-sm-4 .block strong{font-size:20px;line-height:28px;color:#313131;font-weight:400}.tag-introduction .col-sm-4 .block .ratings{margin-top:10px}.tag-introduction .col-sm-4 .block .ratings .icon.icon-star-full{width:18px;height:18px;margin-right:7px}@media (max-width:767px){.tag-introduction .col-sm-4 .block{width:265px;height:180px;margin-bottom:20px}.tag-introduction .block img{width:50px;height:50px}.tag-introduction .block:first-child img{margin-bottom:20px}.tag-introduction .col-sm-4 .block .ratings .icon.icon-star-full{width:15px;height:15px}} .pagination{display:inline-block;padding-left:0;height:37px;background:#f6f6f6;border-radius:18px;overflow:hidden;font-size:0;line-height:0;letter-spacing:-4px;margin:0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;line-height:1.5;text-decoration:none;color:#7e7e7e;background-color:#f6f6f6;border:1px solid #666;margin-left:-1px;padding:6px 12px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#fff;background-color:#f6911d;border-color:#ddd}.pagination>.active>a:hover,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#f6911d;background-color:#f6f6f6;cursor:default;border-color:#337ab7}.pagination-hold .pagination li.active a:focus,.pagination-hold .pagination li.active a:hover{z-index:2;color:#fff;background-color:#f6911d;border-color:#ddd}.pagination-hold{text-align:center;padding:25px 0}.profile-details .review-block .pagination-hold li{padding:0!important}.Popover .answer-reviews .pagination-hold{padding:5px 0 25px}.Popover .answer-reviews .pagination-hold li a:focus,.Popover .answer-reviews .pagination-hold li a:hover{z-index:2;color:#fff;background-color:#f6911d;border-color:#ddd}.my-questions .pagination-hold{padding-top:48px}.pagination li{font-size:15px;line-height:1;letter-spacing:0;border-left:1px solid #fff;display:inline-block;vertical-align:top;position:relative;text-align:center}.pagination li:before{width:1px;height:100%;left:0;top:0;position:absolute;content:””;background-image:linear-gradient(180deg,#f3f3f3 0,#ddd);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=”#FFF3F3F3″,endColorstr=”#FFDDDDDD”,GradientType=0);z-index:11}.pagination li:first-child{border:none}.pagination li:first-child:before{display:none}.pagination li a{min-width:35px;border:none;padding-top:8px;padding-bottom:8px;margin:0}.pagination li .fa{padding-bottom:4px;font-size:17px;line-height:21px}.disable-pointer-events{pointer-events:none}.Popover .answer-reviews .pagination-hold li,.Popover .answer-reviews .pagination-hold li.active a:focus,.Popover .answer-reviews .pagination-hold li.active a:hover,.Popover .answer-reviews .pagination-hold li a{background-color:#fff}.tag-page .pagination-hold .pagination{height:auto;background:transparent}.tag-page .pagination-hold .pagination li{font-size:16px;height:45px;border-radius:1px;box-shadow:0 3px 5px rgba(0,0,0,.04);background-color:#fff;margin:5px;text-align:center;min-width:50px}.tag-page .pagination-hold .pagination li.active{background:#f6911d}.tag-page .pagination-hold .pagination li a{background:transparent;width:100%;height:100%;font-size:23px;color:#949494}.tag-page .pagination-hold .pagination li.active a{color:#fff}.tag-page .pagination li:before{display:none}.tag-page .pagination-hold .pagination li .fa{line-height:30px;font-size:18px;color:#f6911d}.tag-page .pagination li .fa{line-height:23px}@media (max-width:991px){.pagination-hold{padding:15px 0 0}}@media (max-width:767px){.pagination-hold .pagination{height:auto;background:transparent}.pagination-hold .pagination li{font-size:16px;width:40px;height:32px;border-radius:1px;box-shadow:0 3px 5px rgba(0,0,0,.04);background-color:#fff;margin:5px;text-align:center}.pagination-hold .pagination li.active{background:#f6911d}.pagination-hold .pagination li.active a{color:#fff;font-size:16px;line-height:20px}.pagination li:before{display:none}.pagination-hold .pagination li a{padding-top:7px;padding-bottom:5px;background:transparent;width:100%;height:100%}.pagination-hold .pagination li .fa{line-height:19px;font-size:18px;color:#f6911d}.pagination li .fa{line-height:23px}.profile-details .review-block ul.pagination{display:inline-block!important}.my-questions .pagination-hold,.pagination-hold{padding-top:15px}.Popover .answer-reviews .pagination-hold li,.Popover .answer-reviews .pagination-hold li a{background-color:#fff}.Popover .answer-reviews .pagination-hold li.active a{background-color:#f6911d}.Popover .answer-reviews .pagination-hold li.active a:focus,.Popover .answer-reviews .pagination-hold li.active a:hover{background-color:#a36115}.Popover .answer-reviews .pagination-hold li a:focus,.Popover .answer-reviews .pagination-hold li a:hover{background-color:#fff}.tag-page .pagination-hold .pagination li{height:32px}.tag-page .pagination-hold .pagination li a{line-height:20px}.tag-page .pagination-hold .pagination li .fa{line-height:16px}} .tag-question-header{position:relative}.tag-question-header h3{margin-bottom:13px;max-width:95%;line-height:.6}.tag-question-header h3 a{font-size:22px;color:#373737;font-weight:500;text-transform:capitalize}.tag-question-header .header-rt{position:absolute;right:0;top:10px}.tag-question-header .budget{font-size:30px;color:#f6911d;font-weight:500}.tag-search-results .field{font-size:16px;color:#f6911d;font-weight:500;display:inline-block;margin-right:15px}.tag-search-results .tags{list-style:none;margin:0;padding:0;display:inline-block}.tag-search-results .tags li{display:inline-block;height:36px;border-radius:18px;box-shadow:0 3px 5px rgba(0,0,0,.04);background-color:#b9b9b9;margin-right:15px;padding:5px 15px;min-width:80px;text-align:center}.tag-search-results .tags li a{font-size:16px;color:#fefefe;font-weight:500}@media (max-width:767px){.tag-question-header h3{line-height:20px}.tag-question-header .budget,.tag-question-header h3 a{font-size:16px}.tag-question-header .header-rt{top:8px}.tag-search-results .field{font-size:14px;font-weight:700;margin-bottom:10px}.tag-search-results .tags li{height:28px;padding:3px 10px;min-width:70px}.tag-search-results .tags li a{font-size:14px;font-weight:700}} .tag-search-results>ul{list-style:none;margin:0;padding:0}.tag-search-results>ul>li{background-color:#fff;border-radius:1px;box-shadow:0 3px 5px rgba(0,0,0,.04);margin-bottom:6px;text-align:left;padding:15px}@media (max-width:767px){.tag-search-results>ul>li{padding:15px}} .fields-container{margin:50px 15px 30px}.fields-of-study-list{margin-bottom:35px}.fields-of-study-dd{border:1px solid rgba(0,0,0,.07);color:#a5a5a5;position:relative;height:58px}.fields-of-study-dd .field-value{width:100%;height:100%;padding-left:25px;font-size:22px;border:none}.fields-of-study-dd input::-webkit-input-placeholder{color:#989898}.fields-of-study-dd input::placeholder{color:#989898}.fields-of-study-dd input:-ms-input-placeholder{color:#989898}.fields-of-study-dd input.placeholder,.fields-of-study-dd input::-moz-placeholder{color:#989898}.fields-of-study-dd .Select-arrow{height:25px;width:25px;margin:0 auto;position:absolute;right:10px;top:15px;border-width:0!important}.fields-of-study-dd .Select-arrow:before{transform:rotate(45deg);-webkit-transform:rotate(45deg);left:0}.fields-of-study-dd .Select-arrow:after{transform:rotate(-45deg);-webkit-transform:rotate(-45deg);left:10px}.fields-of-study-dd .Select-arrow:after,.fields-of-study-dd .Select-arrow:before{content:””;position:absolute;top:14px;width:15px;border:1px solid #f6911d;transition:all .3s;-webkit-transition:all .3s}.fields-list{list-style:none;text-align:left;background:#fff;padding:15px 30px;max-height:300px;overflow-y:auto}.fields-list>li{padding:15px 10px;font-size:18px}.fields-list>li>a{color:#000}.fields-list>li>a:hover{color:#f99815}@media (max-width:767px){.fields-container{margin:25px auto;width:265px}.fields-of-study-dd{height:30px}.fields-of-study-dd .field-value{font-size:15px;padding-left:10px}.fields-of-study-dd .Select-arrow{top:0;right:5px}.fields-of-study-dd .Select-arrow:after{left:6px}.fields-of-study-dd .Select-arrow:after,.fields-of-study-dd .Select-arrow:before{top:12px;width:10px}.fields-list{padding:5px 15px;max-height:200px}.fields-list>li{padding:10px 5px;font-size:14px}} .tag-page{text-align:center;padding:15px 0 68px;background-color:#f8f6f3}.tag-page>.container>.fields-container{margin:15px}.tag-page>.container>.fields-container .fields-of-study-list{margin-bottom:15px}.tag-page-title{color:#2d2d2d;font-weight:500;margin-bottom:0}.tag-page-explain{font-size:24px;font-weight:300;margin-bottom:15px}.post-question-btn .btn{height:80px;text-transform:capitalize;font-weight:900;width:400px;font-size:24px;letter-spacing:1px;border-radius:1px;box-shadow:0 7px 13px rgba(0,0,0,.11);background:#e27800;background:linear-gradient(180deg,#e27800 0,#fa9521);color:#fefefe}.tag-tabs{list-style:none;margin:0;padding:0;text-align:left}.tag-tabs li{background-color:#fff;width:145px;height:60px;border-radius:1px;box-shadow:0 4px 8px rgba(0,0,0,.08);display:inline-block;margin-right:20px;margin-bottom:25px;text-align:center}.tag-tabs li.active{background-color:#f6911d}.tag-tabs li a{font-size:18px;line-height:60px;color:#f6911d;font-weight:500;display:block}.tag-tabs li.active a{color:#fff}@media (max-width:767px){.tag-page{padding:26px 0 15px}.tag-page-explain{font-size:16px}.post-question-btn .btn{width:85%;height:60px;font-size:20px;font-weight:700}.tag-introduction{margin:30px 0}.tag-tabs{text-align:center}.tag-tabs li{margin:0 10px 30px;height:50px;width:120px}.tag-tabs li a{line-height:50px}} .page-error{width:100%;padding:100px;text-align:center;color:#cd5c5c} .generic-entity{position:relative;height:100%;width:100%;min-height:300px} .online-block .time{width:180px;color:#757373;font-size:16px;font-weight:700;text-align:right;padding:12px 24px}.activities-list .time{display:block;color:#a1a0a0;font-size:18px;padding:0 0 0 5px}.activity-bar .time{width:200px}@media (max-width:767px){.online-block .time{font-size:12px;width:100px;position:absolute;bottom:0;right:0;padding:0 5px}.activities-list .time{font-size:11px}.activity-bar .time{display:none}} .online-block .payment{font-size:18px;color:#333;background:hsla(0,0%,100%,.7);min-height:80px;display:flex;overflow:hidden}.online-block .payment p{margin:0}.online-block .payment a{color:#0092e5;margin-right:5px}.online-block .payment a:hover,.student-home .online-block .payment a{color:#f99815}.activity-bar .payment{margin-top:10px}.activity-bar .payment a{margin-right:0}.online-block .title{white-space:nowrap;color:#fff;min-height:80px;font-weight:700;text-transform:capitalize;font-size:30px;width:250px;vertical-align:middle;text-align:left;position:relative;z-index:0;padding:9px 32px 18px}.online-block .title:after{content:””;display:inline-block;vertical-align:middle;width:0;min-height:100%}.online-block .title>*{white-space:normal;display:inline-block;vertical-align:middle;max-width:99%}.online-block .title em{font-style:normal;position:absolute;top:50%;transform:translateY(-50%);width:100%;left:0;padding:0 32px 15px}.online-block .title span{font-size:36px;padding-right:11px}.online-block .title:before{width:17px;position:absolute;right:-17px;top:0;bottom:0;content:””;background-size:100% 100%;height:100%}.activity-bar .title em{padding:0 32px}.online-block .bg{background:#195a76;position:absolute;height:calc(50% + 1px);left:-20px;right:0;display:block;max-width:none;z-index:-1}.online-block .bg.top{top:0;transform:skewX(22deg)}.online-block .bg.bottom{bottom:0;transform:skewX(-22deg)}.online-block .payment .hold{display:flex;align-items:center;justify-content:space-between;width:calc(100% – 237px)}.online-block .info{padding:14px 31px 18px 24px}@media (max-width:991px){.online-block .title em{padding:0 10px 5px}}@media (max-width:767px){.guest-home-teacher-view .online-block .bg,.student-home .online-block .bg{height:100%;background:#f6911d}.guest-home-teacher-view .online-block .bg.bottom,.student-home .online-block .bg.bottom{display:none}.guest-home-teacher-view .online-block .bg.top,.student-home .online-block .bg.top{transform:skewX(15deg)}.online-block .payment{font-size:12px;min-height:28px}.activity-bar .payment{font-size:12px;margin-top:5px;margin-bottom:15px;box-shadow:0 3px 5px rgba(0,0,0,.04)}.online-block .title{font-size:16px;width:83px;text-align:center;min-height:28px;padding:0 3px 1px}.online-block .title em{padding:0}.online-block .title span{font-size:12px;display:inline-block;vertical-align:top;line-height:22px;padding:1px 0 0}.online-block .title:before{width:6px;right:-6px}.activity-bar .title{font-size:14px;width:70px;padding:10px 0}.activity-bar .title em{padding:0!important}.online-block .payment .hold{width:calc(100% – 83px);position:relative;padding-right:98px}.activity-bar .payment .hold{width:calc(100% – 70px);padding-right:0}.online-block .info{padding:5px 5px 5px 9px}} .teacher-profile-block .inline-block{width:100%}.teacher-profile-block .inline-block a{display:block;width:100%} @media (max-width:767px){.activity-bar .payment .hold .info .user-with-role span{max-width:50px;display:inline-flex;white-space:nowrap;overflow:hidden}} .vertical-middle{vertical-align:middle!important} .teacher-activities .activities-header .online,.teacher-activities .activities-header .online-block{margin-bottom:0;color:inherit}.online-block{max-width:930px}.online-block.activity-bar{left:0;right:0;background:hsla(0,0%,100%,.15);margin:80px auto auto;padding:20px}.log-in .online ul{list-style:none;display:inline-block;vertical-align:bottom;font-weight:400;margin:0;padding:0 0 0 11px}.online-block .online{display:block;font-size:18px;font-weight:700;color:#fff;position:relative;padding-left:32px;text-transform:lowercase;margin-bottom:13px}.online-block .online:before{width:20px;height:20px;background:#77c80f;border:2px solid #fff;border-radius:100%;position:absolute;top:45%;left:0;transform:translateY(-50%);content:””}.log-in .online{font-size:24px;text-transform:capitalize;line-height:36px;padding-left:40px;margin-bottom:10px}.log-in .online:before{width:25px;height:25px;margin-top:2px;border-width:2px}.log-in .online li{display:inline-block;vertical-align:bottom}.log-in .online li+li:before{content:”|”;font-size:24px;font-weight:400;padding:0 15px}.log-in .online span{font-size:36px}@media (max-width:767px){.online-block{margin-bottom:26px}.activity-bar{margin-top:0;padding:0 10px 20px;border-bottom:1px solid #eee;background:transparent}.post-question-btn+.online-block.activity-bar{margin-top:40px}.activity-bar .online{margin-bottom:4px}.online-block .online{font-size:11px;padding-left:15px;margin-bottom:2px}.guest-home-teacher-view .online-block .online,.student-home .online-block .online{font-size:14px;color:#343434;padding-left:18px;margin-bottom:10px}.online-block .online:before{width:10px;height:10px;border-width:1px}.guest-home-teacher-view .online-block .online:befor,.student-home .online-block .online:before{border-width:0;color:#21d609;box-shadow:0 0 5px rgba(0,0,0,.16);border:1px solid #eee}.log-in .online li+li:before{padding:0 5px}.log-in .online span{font-size:20px}}@media (max-width:639px){.log-in .online{line-height:26px;padding-left:18px;margin-bottom:0;font-size:11px}.log-in .online:before{width:12px;height:12px;border-width:1px;margin:0}.log-in .online ul{padding-left:5px}.log-in .online li+li:before{font-size:15px;padding:0 2px}.log-in .online span{font-size:14px}} .slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list,.slick-slider{position:relative;display:block}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translateZ(0);transform:translateZ(0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:””}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none} .slick-loading .slick-list{background:#fff url(data:image/gif;base64,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) 50% no-repeat}@font-face{font-family:slick;font-weight:400;font-style:normal;src:url(data:application/vnd.ms-fontobject;base64,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);src:url(data:application/vnd.ms-fontobject;base64,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?#iefix) format(“embedded-opentype”),url(data:application/font-woff;base64,d09GRk9UVE8AAAVkAAsAAAAAB1wAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAi4AAAKbH/pWDkZGVE0AAAM4AAAAGgAAABxt0civR0RFRgAAA1QAAAAcAAAAIAAyAARPUy8yAAADcAAAAFIAAABgUBj/rmNtYXAAAAPEAAAAUAAAAWIiC0SwaGVhZAAABBQAAAAuAAAANgABMftoaGVhAAAERAAAABwAAAAkA+UCA2htdHgAAARgAAAADgAAAA4ESgBKbWF4cAAABHAAAAAGAAAABgAFUABuYW1lAAAEeAAAANwAAAFuBSeBwnBvc3QAAAVUAAAAEAAAACAAAwABeJw9ks9vEkEUx2cpWyeUoFYgNkHi2Wt7N3rVm3cTs3UVLC4LxIWEQvi1P3i7O1tYLJDAmlgKGEhQrsajf0j7J3jYTXrQWUrMJG+++b55n5e8NwwKBhHDMLv5kxT3ATEBxKBn3qOAl9zxHgb1MAPhHQgHkyF08Gr/L8B/Eb6zWnmCJ7AJVLubQOheArXvJ1A4EXi6j4I+Zg9F0QFKvsnlBCmXeve+sFEnb/nCptdtQ4QYhVFRAT1HrF8UQK/RL/SbmUbclsvGVFXRZKDHUE38cc4qpkbAAsuwiImvro+ufcfaOIQ6szlrmjRJDaKZKnbjN3GWKIbiIzRFUfCffuxxKOL+3LDlDVvx2TdxN84qZEsnhNBa6pgm2dAsnzbLsETdsmRFxUeHV4e+I2/ptN8TyqV8T3Dt29t7EYOuajVIw2y1Wy3M86w0zg/Fz2IvawmQAUHOVrPVfLkoScVynsqsTG0MGUs4z55nh3mnOJa+li+rl9WpPIcFfDubDeaDC+fLBdYN3QADzLauGfj4B6sZmq6CCpqmtSvF0qlUl2qf5AJIUCSlTqlb7lUG+LRfGzZGzZEyBgccMu6MuqPecNDvD4Y9Kjtj4gD+DsvKVMTcMdtqtZtmkzQstQvYje7Syep0PDSAhSOeHYXYWThEF//A/0YvYV1fSQtpKU5STtrhbQ444OtpKSWJIg3pOg8cBs7maTY1EZf07aq+hjWs7IWzdCYTGhb2CtZ47x+Uhx28AAB4nGNgYGBkAIJz765vANHnCyvqYTQAWnkHswAAeJxjYGRgYOADYgkGEGBiYARCFjAG8RgABHYAN3icY2BmYmCcwMDKwMHow5jGwMDgDqW/MkgytDAwMDGwcjKAQQMDAyOQUmCAgoA01xQGB4ZExUmMD/4/YNBjvP3/NgNEDQPjbbBKBQZGADfLDgsAAHicY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQzMCQqKClOUJz0/z9YHRLv/+L7D+8V3cuHmgAHjGwM6ELUByxUMIOZCmbgAAA5LQ8XeJxjYGRgYABiO68w73h+m68M3EwMIHC+sKIeTqsyqDLeZrwN5HIwgKUB/aYJUgAAeJxjYGRgYLzNwMCgx8QAAkA2IwMqYAIAMGIB7QIAAAACAAAlACUAJQAlAAAAAFAAAAUAAHicbY49asNAEIU/2ZJDfkiRIvXapUFCEqpcptABUrg3ZhEiQoKVfY9UqVLlGDlADpAT5e16IUWysMz3hjfzBrjjjQT/EjKpCy+4YhN5yZoxcirPe+SMWz4jr6S+5UzSa3VuwpTnBfc8RF7yxDZyKs9r5IxHPiKv1P9iZqDnyAvMQ39UecbScVb/gJO03Xk4CFom3XYK1clhMdQUlKo7/d9NF13RkIdfy+MV7TSe2sl11tRFaXYmJKpWTd7kdVnJ8veevZKc+n3I93t9Jnvr5n4aTVWU/0z9AI2qMkV4nGNgZkAGjAxoAAAAjgAF) format(“woff”),url(data:application/x-font-ttf;base64,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) format(“truetype”),url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxtZXRhZGF0YT5HZW5lcmF0ZWQgYnkgRm9udGFzdGljLm1lPC9tZXRhZGF0YT4KPGRlZnM+Cjxmb250IGlkPSJzbGljayIgaG9yaXotYWR2LXg9IjUxMiI+Cjxmb250LWZhY2UgZm9udC1mYW1pbHk9InNsaWNrIiB1bml0cy1wZXItZW09IjUxMiIgYXNjZW50PSI0ODAiIGRlc2NlbnQ9Ii0zMiIvPgo8bWlzc2luZy1nbHlwaCBob3Jpei1hZHYteD0iNTEyIiAvPgoKPGdseXBoIHVuaWNvZGU9IiYjODU5NDsiIGQ9Ik0yNDEgMTEzbDEzMCAxMzBjNCA0IDYgOCA2IDEzIDAgNS0yIDktNiAxM2wtMTMwIDEzMGMtMyAzLTcgNS0xMiA1LTUgMC0xMC0yLTEzLTVsLTI5LTMwYy00LTMtNi03LTYtMTIgMC01IDItMTAgNi0xM2w4Ny04OC04Ny04OGMtNC0zLTYtOC02LTEzIDAtNSAyLTkgNi0xMmwyOS0zMGMzLTMgOC01IDEzLTUgNSAwIDkgMiAxMiA1eiBtMjM0IDE0M2MwLTQwLTktNzctMjktMTEwLTIwLTM0LTQ2LTYwLTgwLTgwLTMzLTIwLTcwLTI5LTExMC0yOS00MCAwLTc3IDktMTEwIDI5LTM0IDIwLTYwIDQ2LTgwIDgwLTIwIDMzLTI5IDcwLTI5IDExMCAwIDQwIDkgNzcgMjkgMTEwIDIwIDM0IDQ2IDYwIDgwIDgwIDMzIDIwIDcwIDI5IDExMCAyOSA0MCAwIDc3LTkgMTEwLTI5IDM0LTIwIDYwLTQ2IDgwLTgwIDIwLTMzIDI5LTcwIDI5LTExMHoiLz4KPGdseXBoIHVuaWNvZGU9IiYjODU5MjsiIGQ9Ik0yOTYgMTEzbDI5IDMwYzQgMyA2IDcgNiAxMiAwIDUtMiAxMC02IDEzbC04NyA4OCA4NyA4OGM0IDMgNiA4IDYgMTMgMCA1LTIgOS02IDEybC0yOSAzMGMtMyAzLTggNS0xMyA1LTUgMC05LTItMTItNWwtMTMwLTEzMGMtNC00LTYtOC02LTEzIDAtNSAyLTkgNi0xM2wxMzAtMTMwYzMtMyA3LTUgMTItNSA1IDAgMTAgMiAxMyA1eiBtMTc5IDE0M2MwLTQwLTktNzctMjktMTEwLTIwLTM0LTQ2LTYwLTgwLTgwLTMzLTIwLTcwLTI5LTExMC0yOS00MCAwLTc3IDktMTEwIDI5LTM0IDIwLTYwIDQ2LTgwIDgwLTIwIDMzLTI5IDcwLTI5IDExMCAwIDQwIDkgNzcgMjkgMTEwIDIwIDM0IDQ2IDYwIDgwIDgwIDMzIDIwIDcwIDI5IDExMCAyOSA0MCAwIDc3LTkgMTEwLTI5IDM0LTIwIDYwLTQ2IDgwLTgwIDIwLTMzIDI5LTcwIDI5LTExMHoiLz4KPGdseXBoIHVuaWNvZGU9IiYjODIyNjsiIGQ9Ik00NzUgMjU2YzAtNDAtOS03Ny0yOS0xMTAtMjAtMzQtNDYtNjAtODAtODAtMzMtMjAtNzAtMjktMTEwLTI5LTQwIDAtNzcgOS0xMTAgMjktMzQgMjAtNjAgNDYtODAgODAtMjAgMzMtMjkgNzAtMjkgMTEwIDAgNDAgOSA3NyAyOSAxMTAgMjAgMzQgNDYgNjAgODAgODAgMzMgMjAgNzAgMjkgMTEwIDI5IDQwIDAgNzctOSAxMTAtMjkgMzQtMjAgNjAtNDYgODAtODAgMjAtMzMgMjktNzAgMjktMTEweiIvPgo8Z2x5cGggdW5pY29kZT0iJiM5NzsiIGQ9Ik00NzUgNDM5bDAtMTI4YzAtNS0xLTktNS0xMy00LTQtOC01LTEzLTVsLTEyOCAwYy04IDAtMTMgMy0xNyAxMS0zIDctMiAxNCA0IDIwbDQwIDM5Yy0yOCAyNi02MiAzOS0xMDAgMzktMjAgMC0zOS00LTU3LTExLTE4LTgtMzMtMTgtNDYtMzItMTQtMTMtMjQtMjgtMzItNDYtNy0xOC0xMS0zNy0xMS01NyAwLTIwIDQtMzkgMTEtNTcgOC0xOCAxOC0zMyAzMi00NiAxMy0xNCAyOC0yNCA0Ni0zMiAxOC03IDM3LTExIDU3LTExIDIzIDAgNDQgNSA2NCAxNSAyMCA5IDM4IDIzIDUxIDQyIDIgMSA0IDMgNyAzIDMgMCA1LTEgNy0zbDM5LTM5YzItMiAzLTMgMy02IDAtMi0xLTQtMi02LTIxLTI1LTQ2LTQ1LTc2LTU5LTI5LTE0LTYwLTIwLTkzLTIwLTMwIDAtNTggNS04NSAxNy0yNyAxMi01MSAyNy03MCA0Ny0yMCAxOS0zNSA0My00NyA3MC0xMiAyNy0xNyA1NS0xNyA4NSAwIDMwIDUgNTggMTcgODUgMTIgMjcgMjcgNTEgNDcgNzAgMTkgMjAgNDMgMzUgNzAgNDcgMjcgMTIgNTUgMTcgODUgMTcgMjggMCA1NS01IDgxLTE1IDI2LTExIDUwLTI2IDcwLTQ1bDM3IDM3YzYgNiAxMiA3IDIwIDQgOC00IDExLTkgMTEtMTd6Ii8+CjwvZm9udD48L2RlZnM+PC9zdmc+Cg==#slick) format(“svg”)}.slick-next,.slick-prev{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);cursor:pointer;border:none}.slick-next,.slick-next:focus,.slick-next:hover,.slick-prev,.slick-prev:focus,.slick-prev:hover{color:transparent;outline:none;background:transparent}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-next:before,.slick-prev:before{font-family:slick;font-size:20px;line-height:1;opacity:.75;color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir=rtl] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:”2190″}[dir=rtl] .slick-prev:before{content:”2192″}.slick-next{right:-25px}[dir=rtl] .slick-next{right:auto;left:-25px}.slick-next:before{content:”2192″}[dir=rtl] .slick-next:before{content:”2190″}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;margin:0 5px;padding:0}.slick-dots li,.slick-dots li button{width:20px;height:20px;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;padding:5px;color:transparent;border:0;outline:none;background:transparent}.slick-dots li button:focus,.slick-dots li button:hover{outline:none}.slick-dots li button:focus:before,.slick-dots li button:hover:before{opacity:1}.slick-dots li button:before{font-family:slick;font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:”2022″;text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75;color:#000} #header .slide .chat-list .star-rating{font-size:12px;line-height:1.2;display:flex;align-items:center;margin:0 0 14px -3px}.gethelp-block .star-rating .star,.join-verified-teachers .star-rating .star{margin-right:4px;letter-spacing:-4px;font-size:16px;white-space:nowrap}.published-question .block .tutor-info .star-rating{margin-bottom:10px}.admin-info-header .admin-des .star-rating{white-space:nowrap;margin-bottom:15px}.student-page .header .col-rt .star-rating{padding-right:141px;display:flex;align-items:center}.published-question .answers .meta-list .star-rating .star,.published-question .bids .meta-list .star-rating .star{letter-spacing:normal}.tutorial .teacher-profile-block .star-rating{font-size:12px;text-align:center}.tutorial .answer-block .star-rating .count{font-size:22px;letter-spacing:1px;line-height:16px;margin-left:10px;font-weight:300}.tutorial .answer-block .pay-button-container .star-rating{font-size:25px;padding:10px}.info-list li .star-rating .count{color:#fff}.star-rating.reviews-popover .count:hover{color:#f7921e}.tutorial-rating .star{float:right;font-size:10px}.tutorial-rating .star img{display:block}.search-result .right-block .star,.search-teacher .block .star{white-space:nowrap;letter-spacing:-4px}.search-teacher .block .star{text-align:center;margin-bottom:9px}.teacher-profile .dl-horizontal .rating .star{white-space:nowrap;padding-left:0}.teacher-profile .review-block .star{float:right;padding-top:2px}.published-question .block .tutor-info .star{letter-spacing:-4px;white-space:nowrap;margin-left:5px;vertical-align:text-top}.published-question .meta-list .star{margin-right:4px;letter-spacing:-4px;white-space:nowrap;display:flex}.profile-details .review-block .head .star{letter-spacing:-4px;font-size:16px;white-space:nowrap;float:left;padding-top:4px;margin-left:-3px}.profile-details .review-block .heading .star{float:right}.student-page .header .col-lt .star{white-space:nowrap;margin-top:5px}.student-page .header .col-rt .star{margin-right:14px;white-space:nowrap;display:flex}.review-form .star{text-align:left}.review-form .star span{margin:0!important;padding:0!important}.teacher-profile .dl-horizontal .rating{font-size:18px;margin-left:-5px;display:flex;align-items:center}.teacher-profile .dl-horizontal .rating span{color:#515151;vertical-align:bottom;font-weight:700;padding:0 1px 0 24px}.teacher-profile .review-block .head .rating{float:right;color:#989898;padding:5px 3px 0 0}.teacher-profile .review-block .head .rating span{font-size:18px;color:#515151;font-weight:700}.profile-details .review-block .head .rating{float:none;font-size:19px;color:#000}.profile-details .review-block .head .rating span{color:#000;font-size:19px;font-weight:700}.answer-reviews .review-block .head .rating{white-space:nowrap;min-width:33%}.review-block .head-lt .rating-count{float:right!important}.search-result .tutor-info .count{font-size:12px;color:#404041;text-transform:capitalize;display:block;padding:0 9px}.search-result .right-block .count{display:inline-block;vertical-align:middle;text-transform:capitalize;padding:4px 8px 0 5px}.search-teacher .block .count{text-transform:capitalize}.similar-questions .items-list li .count{display:block;margin-top:5px;margin-right:6px}.published-question .block .tutor-info .count{font-size:12px;color:#404041;text-transform:capitalize;display:block;margin-top:10px}.published-question .block .tutor-info .count strong,.tutorial .header .star-rating .count strong{color:#f6911d}.published-question .meta-list .count{font-size:12px}.student-page .header .col-lt .count{font-size:18px;text-transform:capitalize;display:block;margin-top:5px}.admin-info-header .admin-des .rating-counter{display:block;padding-top:4px;color:#a2a2a2}.admin-info-header .admin-des .rating-counter strong{color:#f99815}#header .slide .chat-list .star-rating .star,#header .slide .notification-group-list .star-rating .star,.bids-popup .slide .notification-group-list .notification-list .star-rating .star,.search-result .tutor-info .star{letter-spacing:-4px;white-space:nowrap}.join-verified-teachers .star-rating,.published-question .meta-list .star-rating{display:flex;align-items:center}.gethelp-block .star-rating .count,.join-verified-teachers .star-rating .count{color:#c9c9c9}#header .slide .chat-list .star-rating,#header .slide .notification-group-list .star-rating,.bids-popup .slide .notification-group-list .notification-list .star-rating{font-size:12px;line-height:1.2;display:flex;align-items:center;margin:5px 0 11px}#header .slide .chat-list .star-rating .count,#header .slide .notification-group-list .star-rating .count,.student-page .header .col-rt .count{font-size:24px;color:#000;text-transform:none}.star-rating.reviews-popover,.star-rating.reviews-popover .star span{cursor:pointer!important}.student-page .star-rating.reviews-popover{float:right}@media (max-width:1096px){.student-page .header .col-rt .star-rating{padding-right:0;justify-content:flex-end}.gethelp-block .star-rating .star,.profile-details .review-block .head .star,.profile-details .review-block .heading .star{font-size:14px}#header .slide .chat-list .star-rating .count,#header .slide .notification-group-list .star-rating .count,.student-page .header .col-rt .count{font-size:20px}}@media (max-width:991px){.tutorial .answer-block .star-rating .count{font-size:18px;letter-spacing:0}.teacher-profile .review-block .head .rating{padding-top:0}.search-result .right-block .count{display:block;text-align:center;padding-right:0}.gethelp-block .star-rating .star,.join-verified-teachers .star-rating .star,.profile-details .review-block .head .star,.profile-details .review-block .heading .star{font-size:13px}.profile-details .review-block .head .rating,.profile-details .review-block .head .rating span{font-size:16px}}@media (max-width:767px){.admin-info-header .admin-des .star-rating{margin-top:7px;margin-bottom:0}.similar-questions .items-list li .star-rating{text-align:left;margin-bottom:10px;padding-bottom:10px}.similar-questions .items-list li .count{float:left;font-size:14px;font-weight:300}.similar-questions .items-list li .star{float:right;margin-top:5px;margin-right:30px}.student-page .header .col-rt .star-rating{justify-content:flex-start}.info-list li .star-rating .count{font-size:9px}.tutorial-rating .star{font-size:8px}.search-teacher .block .star{margin-bottom:0}.published-question .block .tutor-info .star{margin-left:2px}.published-question .meta-list .star{margin-right:4px}.profile-details .review-block .head .star{padding-top:3px;font-size:10px}.profile-details .review-block .heading .star{padding-left:5px;font-size:10px;float:none;display:inline-block;vertical-align:top}.profile-details .review-block .heading .star.inline-block{position:absolute;top:40px;left:65px}.teacher-profile .dl-horizontal .rating{font-size:14px;margin-left:0}.profile-details .review-block .head .rating{font-size:12px;margin-left:3px}.profile-details .review-block .head .rating span{font-size:12px}.published-question .block .tutor-info .count{font-size:11px;line-height:1;padding:0 2px}.student-page .header .col-lt .count{font-size:11px}.admin-info-header .admin-des .rating-counter{padding-top:0}#header .slide .chat-list .star-rating .count,#header .slide .notification-group-list .star-rating .count,.student-page .header .col-rt .count,.teacher-profile .dl-horizontal .rating span,.teacher-profile .review-block .head .rating span{font-size:15px}.student-page .header .col-lt .star,.student-page .header .col-rt .star{margin-right:5px}.search-result.add .right-block .star-rating .count,.search-result .right-block .count{display:none}.gethelp-block .star-rating .star,.join-verified-teachers .star-rating .star{margin-bottom:5px;margin-top:10px}.join-verified-teachers .star-rating{display:block}.gethelp-block .star-rating .count,.join-verified-teachers .star-rating .count{color:#000}}@media (max-width:639px){.student-page .star-rating.reviews-popover{float:none}#header .slide .chat-list .star-rating{font-size:11px;margin-bottom:4px}.search-teacher .block .star{text-align:left}#header .slide .chat-list .star-rating,#header .slide .notification-group-list .star-rating,.bids-popup .slide .notification-group-list .notification-list .star-rating{margin:0}}@media (max-width:375px){.student-page .similar-questions .items-list li .star-rating{font-size:12px}} .gethelp-block .avatar,.join-verified-teachers .avatar{background:#e1e1e1;border:5px solid #fff;overflow:hidden;border-radius:100%;display:block;width:79px;height:79px;min-height:69px;white-space:nowrap;margin:0 auto 11px}.gethelp-block .avatar:after,.join-verified-teachers .avatar:after{content:””;display:inline-block;height:69px;overflow:hidden;vertical-align:bottom}.gethelp-block .avatar img,.join-verified-teachers .avatar img{vertical-align:bottom}.gethelp-block .name,.join-verified-teachers .name{display:block;font-size:14px;font-weight:700}.gethelp-block .name a,.join-verified-teachers .name a{color:#fff;text-transform:capitalize}.gethelp-block .name a:focus,.gethelp-block .name a:hover,.join-verified-teachers .name a:focus,.join-verified-teachers .name a:hover{color:#f99815}.gethelp-block .university,.join-verified-teachers .university{display:block;margin-bottom:4px;line-height:1}@media (max-width:767px){.gethelp-block .slick-list li,.join-verified-teachers .slick-list li{width:85%;display:block;margin:0 auto;text-align:center}.gethelp-block .avatar,.join-verified-teachers .avatar{width:92px;height:92px;min-height:26px;border-width:1px}.gethelp-block .avatar:after,.join-verified-teachers .avatar:after{content:””;display:inline-block;height:26px;overflow:hidden;vertical-align:bottom}.gethelp-block .avatar img,.join-verified-teachers .avatar img{width:92px;height:92px}.gethelp-block .name,.join-verified-teachers .name{margin:10px}.gethelp-block .name a,.join-verified-teachers .name a{font-size:16px;color:#2f2f2f}.gethelp-block .university,.join-verified-teachers .university{margin-bottom:10px;color:#2f2f2f;font-weight:300;max-width:50%;margin:0 auto}.gethelp-block .slick-prev,.join-verified-teachers .slick-prev{left:0;top:35%;z-index:1}.gethelp-block .slick-next,.join-verified-teachers .slick-next{right:5px;top:35%}.gethelp-block .slick-next:before,.gethelp-block .slick-prev:before,.join-verified-teachers .slick-next:before,.join-verified-teachers .slick-prev:before{color:#f6911d;font-size:30px;font-weight:500;font-family:inherit;opacity:.7}.gethelp-block .slick-next:before,.join-verified-teachers .slick-next:before{content:”>”}.gethelp-block .slick-prev:before,.join-verified-teachers .slick-prev:before{content:”<“}} .gethelp-block .info-list{list-style:none;flex-direction:row;justify-content:space-between;flex-wrap:nowrap;display:flex;text-align:center;font-size:12px;color:#fff;margin:0;padding:0 20px}.gethelp-block .info-list li{max-width:150px;min-width:141px;padding:0 5px 15px}.join-verified-teachers .info-list{flex-direction:row;justify-content:center!important;flex-wrap:nowrap;display:flex;text-align:center;font-size:12px;color:#fff;margin:0;padding:0;list-style:none}.join-verified-teachers .info-list li{max-width:167px;min-width:167px;padding:0 5px 15px;margin:0 50px!important}.info-list{overflow-x:auto;justify-content:space-around!important}.info-list li{margin:0 10px;padding:0!important}.info-list li .star-rating .count{color:#fff}.info-list li .avatar img{height:100%;width:100%}@media (max-width:991px){.join-verified-teachers .info-list li{max-width:150px;min-width:150px}}@media (max-width:767px){.info-list li .star-rating .count{font-size:9px}.info-list li .avatar{width:40px;height:40px;margin-bottom:5px}}@media (max-width:639px){.gethelp-block .info-list li,.join-verified-teachers .info-list li{min-width:135px;max-width:135px}} .top-section{background-size:cover;background-position:50%;position:relative;margin-bottom:-72px;height:100%;min-height:60vh;padding:74px 0 68px}.content{overflow:hidden;width:100%}.top-section .content{max-width:930px;overflow:hidden;color:#989898;margin:0 auto 72px}.top-section .content h1{color:#fff;font-weight:400;margin-bottom:56px;text-align:center}.top-section .content.add{max-width:950px;overflow:hidden}.top-section .content.add h1{margin-bottom:43px}.student-home{position:relative;padding-bottom:135px}.student-home.add-question-wizard{padding-bottom:0}.post-essay-btn{margin-top:15px}.post-essay-btn,.post-question-btn{text-align:center}.post-question-btn .btn{height:80px;text-transform:capitalize;font-weight:900;width:400px;font-size:24px;letter-spacing:1px;border-radius:1px;box-shadow:0 7px 13px rgba(0,0,0,.11);background:#e27800;background:linear-gradient(180deg,#e27800 0,#fa9521);color:#fefefe}.gethelp-block{transform:skew(0deg,-4deg);background:rgba(247,146,30,.2);min-height:220px;padding:61px 0}.gethelp-block h2{font-weight:700;color:#fff;text-align:center;margin-bottom:59px}.gethelp-block .container{transform:skew(0deg,4deg)}@media (min-width:768px){.top-section{background:url(/assets/images/img01.045a0a80fe25d6014a879f16617ad2a5.jpg)}}@media (max-width:767px){.post-question-btn .btn{width:85%;height:60px;font-weight:700;font-size:20px}.top-section{margin-bottom:0;padding:39px 0 0;background:transparent}.top-section.home{background:#f7f6f2;padding-top:20px}.top-section.home .student-home{padding-bottom:0}.top-section.home .col-sm-12{padding-left:5px;padding-right:5px}.top-section .content{margin-bottom:4px}.gethelp-block{padding:17px 0;transform:none;background:#fff;margin-bottom:30px}.gethelp-block .container{transform:none}.gethelp-block h2{margin-bottom:22px;font-size:18px;color:#f6911d}.top-section .content.add h1,.top-section .content h1{margin-bottom:23px}.top-section .content.add-question-wizard h1,.top-section.home .content h1{color:#f6911d;font-size:16px}}@media (max-width:639px){.top-section{margin-bottom:0;padding:39px 0 0}} .top-section{background-size:cover;background-position:50%;position:relative;margin-bottom:-72px;height:100%;min-height:60vh;padding:74px 0 68px}.content{overflow:hidden;width:100%}.top-section .content{max-width:930px;overflow:hidden;color:#989898;margin:0 auto 72px}.top-section .content h1{color:#fff;font-weight:400;margin-bottom:56px;text-align:center}.top-section .content.add{max-width:950px;overflow:hidden}.top-section .content.add h1{margin-bottom:43px}.email-notifications{font-size:20px}.student-home{position:relative;padding-bottom:135px}.student-home.add-question-wizard{padding-bottom:0}@media (min-width:768px){.top-section{background:url(/assets/images/img01.045a0a80fe25d6014a879f16617ad2a5.jpg)}}@media (max-width:767px){.top-section{margin-bottom:0;padding:39px 0 0;background:transparent}.top-section .content{margin-bottom:4px}.top-section .content.add h1,.top-section .content h1{margin-bottom:23px}.top-section .content.add.teacher-login h1{color:#f6911d;font-size:16px;margin-bottom:0}}@media (max-width:639px){.top-section{margin-bottom:0;padding:39px 0 0}} .how-it-works{text-align:center;font-weight:700;font-size:20px;line-height:1.2;color:#333;transform:skew(0deg,-4.2deg);background:#fff;padding:168px 0 151px}.how-it-works .container{transform:skew(0deg,4.2deg)}.how-it-works h2{text-transform:capitalize;font-weight:700;margin-bottom:58px;color:#f8941f}.how-it-works .count{text-align:center;width:91px;height:91px;background:url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMjkuMiAyOS4yIj48c3R5bGU+LnN0MHtmaWxsOiNDQ0NDQ0M7fSAuc3Qxe2ZpbGw6I0Y3OTMxRTt9PC9zdHlsZT48cGF0aCBjbGFzcz0ic3QwIiBkPSJNOC44IDE4Yy0uNi0xLS45LTIuMS0uOS0zLjQgMC0xLjMuNC0yLjUgMS0zLjVMMi42IDYuMkMxIDguNiAwIDExLjUgMCAxNC42YzAgMyAuOSA1LjggMi41IDguMUw4LjggMTh6Ii8+PHBhdGggY2xhc3M9InN0MSIgZD0iTTE5LjMgMTkuM2MtMS4yIDEuMi0yLjkgMi00LjcgMi0xLjkgMC0zLjYtLjgtNC44LTIuMUwzLjQgMjRjMi43IDMuMiA2LjcgNS4yIDExLjIgNS4yIDQuNCAwIDguMy0xLjkgMTEtNWwtNi4zLTQuOXpNMy42IDVsNi4zIDQuOWMxLjItMS4yIDIuOS0yIDQuNy0yIDEuOSAwIDMuNi44IDQuOCAyLjFsNi4zLTQuOEMyMy4xIDIgMTkuMSAwIDE0LjYgMGMtNC40IDAtOC4zIDEuOS0xMSA1eiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMC40IDExLjJjLjYgMSAuOSAyLjEuOSAzLjQgMCAxLjMtLjQgMi41LTEgMy41bDYuMyA0LjljMS43LTIuNCAyLjYtNS4zIDIuNi04LjQgMC0zLS45LTUuOC0yLjUtOC4xbC02LjMgNC43eiIvPjwvc3ZnPg==);display:block;font-size:42px;line-height:1;font-weight:900;background-size:cover;margin:0 auto 9px;padding:21px}.how-it-works .title{font-size:36px;display:block;font-weight:400}.how-it-works .title a{color:#333}.how-it-works .title a:focus,.how-it-works .title a:hover{color:#f99815}.how-it-works .block{margin-bottom:30px}@media (max-width:1359px){.how-it-works .title{font-size:25px}}@media (max-width:991px){.how-it-works{font-size:16px;padding:110px 0}}@media (max-width:767px){.how-it-works{font-size:11px;line-height:12px;padding:35px 0 100px}.home-introduction .how-it-works{background:transparent;padding-top:10px;padding-bottom:0;border-bottom:2px solid #eee;transform:none}.home-introduction .how-it-works .container{transform:none}.how-it-works h2{margin-bottom:20px}.home-introduction .how-it-works h2{font-size:18px;margin-bottom:40px}.how-it-works .count{width:82px;height:82px;font-size:17px;padding-top:31px;padding-bottom:31px;margin-bottom:12px}.home-introduction .how-it-works .count{background-repeat:no-repeat;background-size:50% 50%;background-position:50%;border-radius:100%;background-color:#fff;color:transparent;width:79px;height:79px;padding:0;margin-bottom:15px;box-shadow:0 3px 5px rgba(0,0,0,.04)}.home-introduction .how-it-works .col-sm-4:first-child .count{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAnCAYAAACWn7G7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkFFQkM5NENBMDZCNTExRTk4RDFGQjVFNTYyRTFCMTY3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkFFQkM5NENCMDZCNTExRTk4RDFGQjVFNTYyRTFCMTY3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QUVCQzk0QzgwNkI1MTFFOThEMUZCNUU1NjJFMUIxNjciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QUVCQzk0QzkwNkI1MTFFOThEMUZCNUU1NjJFMUIxNjciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5v9NXNAAAE0ElEQVR42uSYe4hUVRzHZ3d2dUab1h7bktEDt5KITRaix1aSxVpBtKlYkWKUiVFhSyZRSETRi14mEbER9BJJFDJ8R9DGiktFZA+31DIrkTJztWlnzdnZvr/4XDid7tzZyZn7Twc+nDn3zj33e875nd/vd27NwAunJipUpojHxBniRbFB3CumilXiZTFHzBI94mHxZXrBDyN+QU2FxF4oPhAp0S/GOfd+ESc57X2iUewVl5sGUZDoHaVeUluhWV2E0GvEmWIT1+8XZ4mnab9C+05xsvhIfC2255ae9nxcYk8Xh0W32C96ub5eHMIkrLwnDorVIicaxLviU9EpwZ1xiP1TDDvLn6LOUI+lHkNtItNirZa/Q3WbGBRz4xS7n3aOup/6ULBHvHqP07b/jIp6SV0JEWeLY8UQHQ579wvcsxlNsmF2iwncv4i6tUj/oxwdeXuXTOE8+ioE1zX7W6PEXiAeFVcgZnSR2TzC6qS5tpEBBTP3qjOohDPYsNpWpUVs5dofmE2NBmDXZvtizxcLxU3OS+rYGLucmbBlPldMpv0FL7FNVi8GGMwYBtvKBATmMegMOMGgU8zua9j6jeI78Ym4QbwUiL1E3O2IXCueYHnXwFJvYFuobXDPlTCnD50VWyEm0W6hbsKl9WjJ52kmaxG7Ru171DazmGFi3xIzmbVliPyKTo5hljo8sXdhj497QpMM8Ai/m3juMpFlYNeLZv7fJiHfqj6F9hLqRs975AJv0Ows7w5IOLaUZ2kTzs6dQQdPOtczrMA2nL3RJ9oZ0KXiHXECqzJbPMPgLObO1Syu8mz5H16rjh18szll4vViZsPqc/AGm7wBTEDU7971n8WJTnjdQrT6jPY0T8QyCVwUYja+C0z6uUEa0Y+I8cTwXxG8hNifZiaewlTaQl7UiJksZoMsYDkzmMcA3iXFBs4iJggch+nDJux9bPxZm4iwRMam/FbxgGNbYeU38oADRe7bZl1eoaBjK3htVNaVYROlHT+ZQJxtkvuwxYURL+kS81itbmfDuGWQ1eri9xwnXNdy7RuZy+7/miLWYwbmbm4RbxT5n5nJZvEgXuZfJchn5RVs9naq3Vrp3MBs7yrxvXidnR1WfiQoTInqTEJbcJPbq5XI7ML/2o59U9we8p9haCjR12QnGFUt6/qcEL2PxLrdu59F7FCJfuaTda2L41gzCZ9qdjfRSQ2tXEy7r8izrSTfXbLX+XHks5bEPEQwmB6SQ/RFPHsl9Ya4jjWuvbWX+Vyzl4jHIjaLbTaW+dw4L7TGIvaAl6uOtOSciBjLdwM7gt8hruPl64Pko0QJfPBxJEtdTuZV9hlspKWTLy/B7Ewv49l+sqyppI9VFzuWvLeDqHaQF9czgHzYqpJzZPAi3c7RvapiawjBvQizbGwn98Y7O37YO1UMaNktsOxRyM2W2kOVEhuIyPPdq5ejTA8OvykiL7hagjcitBCH2GB2jycAzOQkYeU2olrBm9k6QuzHEpxyju+xiA0OeD+Jlc61dVEx31JEiW0YSee1FRZbOEozilVsVcv/Umzw0S57FHlFodQmq6TrSvLNIFdOv9pcecLtaOfTaFXFDvFVZzPfBerLeDaPUBO8Nw6xb+NjMwgtxyskiX7bIk7Jf5e/BBgAlNdaCzeeAogAAAAASUVORK5CYII=)}.home-introduction .how-it-works .col-sm-4:nth-child(2) .count{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAnCAYAAADzckPEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkI4RTI3Q0JCMDZCNTExRTlBN0Y3Q0E5NUY1MEZBOUFBIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkI4RTI3Q0JDMDZCNTExRTlBN0Y3Q0E5NUY1MEZBOUFBIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QjhFMjdDQjkwNkI1MTFFOUE3RjdDQTk1RjUwRkE5QUEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QjhFMjdDQkEwNkI1MTFFOUE3RjdDQTk1RjUwRkE5QUEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5VJBlDAAAERklEQVR42qyXd2hVVxzH88xzkVg3dWujonGvOnDULVYtQq1oFRHHH1WMFgdVaNGKin84YluKiVr3qE1TcFDRKhGlqBgT98CBA0cjDjTRGF/7+cH3yu1V38u9yYEP59x377vf8zvnN84N5afWj4vSWsFuGA45MBRmQy/dPwupFVNurilY1aA846swneuMaC8tExe97YAKEpwLu6AQ+kEXOA7pCO5A6CXjY7Cd60pBRbtDC+gPfWAxjIcB+l9dmAi9YSRC0+hHQBimBBW1F9zUEq6FPbABdsJ++B0uYmEWvQmuYvwv/T4YF1S0DRyAOlALlplFmkwnqAlJWLiIfo39gXFbuqNQlXF8EFFzjGdQTvv4FLrK8pOQJydrCQm6X1n/MYsDid6C9nADQvAJ3NULnRYvcdv7DzQZm0QRS10YRNSWtqfGq2GBnOaJ6xnz2Gbws1mN0HP6z+HvoHv6m3p74Ry4Ap9KyGlmZQ9oaM7DPn6klVgeTTQc5Z5Z9DWsUHzafmbLgZxWTUveBCvz6R8h3Jzxg6Ci1laah8p7C7Xk/V33ba8fwhLE7JnvELwU450xRa2luMYJHkd6qFRp1peFgYgnI3yvpKLRWnW4jkiS4vS2pU56C5sXljq5d9lv7o3VzHL3ch5RMUhS/5eWvVRFI1pWp9W2WMW6ZI3rwejSFnWcyZ3Fcm2AcBHdKYttrJ0Kw72iffWwhcSgElpewRN2n8GPkIlwmiPaQxXE4swyyp+xgtuTBuM9127nrAHnlJOtUExGeFhYWcZm180VIqlQBSbEELVinei6rizncprlYyvwVgwyELQQ+9hEtyrNWbr7yuoimOtnqHLM8Cyfew8XeSz7xpOb85y0iWCiwqgorFJlJ4JNqoWbVaDtt/VannRXXEdcL92HFW8uGP/hWYmh2jZn6W07I84sN8uZNqlGPtYpwcpZmiZzXon9ZXG9iknc9URKyBsyU5XifnH9NkEebaVqsCaW48edWdY60EhLG/GKFmhJLZ46u37vo6PlXi31tz7DaKFW8LWE30oOG8Fy5U+u355qEm3l4fd8ipZV0qj4LkudNlkHr8Gu3yy7nNb5x297pbIYedeeOu2wHS1haVzptETFb8gpi+/LvfOgNXQoBdFceX+BQi70vnqaCfdhvnJn4EbYLJYXV1LmKxOOcWKwb5mOOloGaoiNomugE6Ut851ope1XnXkzSyBo+XubCnqCPDg3Vj0dAvU9IeT3OHMQJulkabn4QixRS31j9RU2L8B+XoV+cqJZ9s3D9bPiHMy2QGNVlH9cyb+4S2yGHZJjLvBzGvxeB+s05WI/jpWib6LWWPnC7xHU6uoYmAlf6ivcqs6HWGN1dInn+Tx5bVM4g+DZoOfeLH2hOZOoqvE6uOZ5Nh+hAiZUJK8NfNg+oa+ySUqVeYrDR6pE/zs/cc8+or/wTsiv6A/QzqczZWuSb9p/AgwA6ilFUG2jzFQAAAAASUVORK5CYII=)}.home-introduction .how-it-works .col-sm-4:nth-child(3) .count{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAlCAYAAADFniADAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkM1MjZGQTBFMDZCNTExRTk4RjU1RkVCNDk2MDY4QTRGIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkM1MjZGQTBGMDZCNTExRTk4RjU1RkVCNDk2MDY4QTRGIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzUyNkZBMEMwNkI1MTFFOThGNTVGRUI0OTYwNjhBNEYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzUyNkZBMEQwNkI1MTFFOThGNTVGRUI0OTYwNjhBNEYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4GtU8uAAAD80lEQVR42syYaUhUURiG79hEmblhFiUqLf4owiDpR4tFmGRFWRRBiNUPS9B2bLHENCuiME3NFrNIjQIjtFLbtH2zQFogKCxpk8ofNpaapfUeeC8cplHn3rmjfvBw7yz3znu/c8533m9MzYf8FQdiFtgEZoKBoBXcBAfBDXtu4Lru/X/vuTgg6Ai4DqaDEyAe5IMZfD9X743NOq/LAzFgD0jie+6gCawBe0Ei6Aditd5cT6bCKCiJiB/9BSwcvlVgO0gGqzm0TheVCr4zSxvAUXCZYirAcbAWpDFzqc4W1R9M5Q+LyACVYDHn1SJwBWTx8wIQqnWaaBU1mEcxVAE8P231nZPSHHvFcy9nimoE5RyaOtDATMkRzaMYunHSudNW31+wAGSDIJAAPgN/LoAlYB5XoIgo8JALwakloR3ESa8ngjvADfxhMT0MUoAnS0OP1Ck50ihoCrMiYhvYyXp2uzdE+YKXFBTGEjGGFT2+Jyu6HGK+DOD5MTCa86pc7w1dDBDlxgUgoo0ZK3fkhkaIegYmgM1grFSbdIcRwyf2uWCwHzwFO/qCqHoQAkawZjkcRgyf4WGEqFHgDfgEXnP19bqoTNaludx6MvqCqBYeh/PY7OgNTQ42DgoLZxW3mWowH3zVcH0ItyofUIhGIkesvmlMf4dUBE3Morj5NW601jESeINaGj93rRaFQ15GGy3mY3ZLVoCvmT/q2sWFIpUfeR4OlhIP6TtvQSm4BZ7Ta3UXwtYU8fuhyJAFgoqFtzdTUCEnaCO3iqE0/OlgBV1mFLcUhTv/JfCFq20OWA828vM6ChRC74NvVoLiaG9EjxgOQe18/7dcPF+AGuBH61rD9kjEbg7tRXCeYiw2mgnRjE5m3xfOh1nJz2MlX78V7AMlwtOrzSiyJB5qGTigrr5BPArzf5fnHpI38mZTcMaGIDXU7jiFc8yLjWoV3UOgJCiP91MF7WJpKYDILWYbJcJFmuwKJ6JFx6q08AFnc1ie0Hul00argnLou3IhKN7W3tfGJ5bDx87WK5KLQvXjHbTOkZIZTObyV6ROaLnIHgQldrYhm6QMaa1VmZyTtqKSC6lMGpES1rQECErvyiUIoz9Eh6gfYBKvl2udOP8plRT1Aa5yQcRAUH5n1kWdR1lcYYpkcbVYmHo7hrma/kustHNd+SlVVLHVDYy0N4GsWX6s5BXdmbwO6b+B8awzrVaNQRC7Fk/2eibpus5C3bpC6EwV/rdwzx7nqe5ZF8AjqUVXWLUjwFnWM1FfTunI1AOutFp77XA0/7xoYllIYTZEDGPaI/hapH2hRkHvuMfZ7dEfM73BNj7/QKfQwNZczVypM+3wPwEGAMf39r8BbAS+AAAAAElFTkSuQmCC)}.how-it-works .title{font-size:15px}.how-it-works .block{margin-bottom:33px}} .about-us{text-align:center;font-size:24px;line-height:1.25;color:#333;background:#f7f4f4;transform:skew(0deg,4.2deg);margin-bottom:70px;padding:127px 0 102px}.about-us h2{text-transform:capitalize;font-weight:700;margin-bottom:46px;color:#f8941f}.about-us.style-1{padding-bottom:123px;margin-bottom:-79px}.about-us .container{transform:skew(0deg,-4.2deg)}.about-us .intro{margin-bottom:72px}.about-us .block{margin-bottom:30px}.about-us .icon-hold{display:flex;flex-direction:row;justify-content:center;align-items:center;height:137px;margin-bottom:26px}.about-us .title{font-size:36px;display:block;font-weight:400}.about-us .title a{color:#333}.about-us .title a:focus,.about-us .title a:hover{color:#f99815}@media (max-width:1359px){.about-us .title{font-size:25px}}@media (max-width:991px){.about-us{font-size:16px;padding:110px 0}.about-us .icon-hold{width:105px;height:105px;margin:0 auto 20px}.about-us .icon-hold img{width:100%}}@media (max-width:767px){.about-us{font-size:11px;line-height:12px;transform:skew(0deg,10.2deg);margin-bottom:27px;padding:40px 0 24px}.about-us h2{margin-bottom:11px}.home-introduction .about-us h2{font-size:18px}.home-introduction .about-us p{font-size:16px;line-height:1.2;font-weight:300}.about-us.style-1{padding-bottom:12px;margin-bottom:0}.home-introduction .about-us.style-1{transform:none;background:#fff;padding-top:10px;border-bottom:3px solid #eee;margin-bottom:20px}.about-us .container{transform:skew(0deg,-10.2deg)}.home-introduction .about-us .container{transform:none}.about-us .intro{margin-bottom:31px}.about-us .block{margin-bottom:28px}.about-us .icon-hold{width:87px;height:87px;margin-bottom:10px}.home-introduction .about-us .icon-hold{border-radius:100%;width:79px;height:79px;margin-bottom:15px;box-shadow:0 2px 8px rgba(0,0,0,.07)}.about-us .title{font-size:16px}} @media (max-width:767px){.home-introduction{padding:0 20px;background:#f7f6f2}} .fs-container{flex-grow:1;display:flex;flex-direction:column;width:100%}  .steps-nav ul{list-style:none;display:flex;justify-content:space-around;margin:0 -10px;padding:0}.steps-nav{background:hsla(0,0%,100%,.73);margin-bottom:20px;font-size:18px;line-height:1.2;text-transform:capitalize;padding:23px 58px 15px}.steps-nav ul li{pointer-events:none;padding:0 10px}.steps-nav ul li.active a{margin-bottom:0;padding-bottom:20px}.steps-nav ul li.active .title{font-weight:700}.steps-nav ul li.finished a:hover{color:#000}.steps-nav ul a{display:block;color:#515151;text-align:center;position:relative;margin-bottom:20px}.steps-nav ul a:after{content:””;height:11px;background:#f8941f;position:absolute;bottom:0;left:0;right:0;opacity:0;visibility:hidden;transition:opacity .3s linear,visibility .3s linear}.steps-nav ul .number{display:inline-block;vertical-align:top;font-size:40px;position:relative}.steps-nav ul .title{display:block;font-weight:400}.steps-nav ul .check{position:absolute;top:11px;right:-25px;background:#39b54a;width:19px;height:19px;color:#333;border-radius:50%;font-size:21px;opacity:0;visibility:hidden;transition:opacity .3s linear,visibility .3s linear}.steps-nav ul .check .fa{position:absolute;top:-3px;right:-4px}.steps-nav ul li.active,.steps-nav ul li.finished{pointer-events:auto}.steps-nav ul li.active a:after,.steps-nav ul li.finished .check{opacity:1;visibility:visible}.steps-nav ul a:hover,.steps-nav ul li.finished a{color:#333}@media (max-width:991px){.steps-nav{font-size:16px;margin-bottom:15px;padding:15px 38px 20px}.steps-nav ul li.active a{padding-bottom:17px}.steps-nav ul a{margin-bottom:17px}.steps-nav ul a:after{height:8px}.steps-nav ul .number{font-size:35px}}@media (max-width:767px){.steps-nav{display:none}.steps-nav ul{margin:0 -5px}.steps-nav ul li{display:flex;padding:0 5px}.steps-nav ul li.active a{padding-bottom:9px}.steps-nav ul a{margin-bottom:9px}.steps-nav ul a:after{height:4px}.steps-nav ul .number{font-size:23px}.steps-nav ul .check{font-size:16px;right:-20px;top:5px;width:15px;height:15px}.steps-nav ul .check .fa{top:-2px;right:-2px}}@media (max-width:639px){.steps-nav ul{font-size:10px}} .wizard-stub{min-height:350px;position:relative} .tabset{background:#fff}.tabset .nav-tabs{background:#4f4b4d;border:none}.tabset .nav-tabs li{border-right:1px solid #fff;margin:0}.tabset .nav-tabs a{display:block;border-radius:0;font-size:24px;text-transform:capitalize;color:#fff;border:none!important;line-height:26px;min-width:156px;text-align:center;margin:0;padding:4px 10px 8px}.tabset .nav-tabs a:hover{color:#4f4b4d;background:#fff}.tabset .tab-content{padding:20px}.tabset .option{display:block;text-align:center;text-transform:uppercase;color:#4f4b4d;font-size:30px;padding:5px 5px 17px}.tabset .option span{display:inline-block;vertical-align:top;position:relative;padding:0 5px}.tabset .option span:after,.tabset .option span:before{content:”.”;color:#f6a84f;position:absolute;top:0;line-height:1;display:none}.tabset .option span:before{left:0}.tabset .option span:after{right:0}@media (max-width:767px){.tabset .nav-tabs li{border:1px solid #fff}.tabset .nav-tabs li.active>a{font-weight:700}.tabset .nav-tabs a{background:#c8cdbd;color:#444;font-size:14px;min-width:80px;line-height:1;font-weight:400;padding:1px 9px 3px}.tabset .nav-tabs a:hover{color:#f89522}.tabset .tab-content{position:relative;padding:20px 12px 70px}.tabset.auth-options .tab-content{background:transparent;padding:0}.tabset .option{font-size:13px;padding:34px 5px 19px}.tabset .option span:after,.tabset .option span:before{display:block}.tabset,.tabset .nav-tabs{background:none}.tabset.auth-options .title{position:absolute;top:0;width:100%;text-align:center;margin-top:35px;font-size:18px;font-weight:700}.btn.btn-option{font-size:18px;color:#f6911d;background:#fff;width:100%;border-radius:2px;box-shadow:0 0 2px rgba(0,0,0,.12);text-transform:capitalize;height:42px;margin-bottom:25px}.social-btn .fa{width:20%;line-height:38px}.social-btn+p{font-size:14px;font-weight:300;color:#272727;text-align:center}.social-icons i{margin:0 10px}} .login-form label{font-weight:400;color:#515151;font-size:14px;margin:0}.login-form label span{color:#f71e1e}.login-form{max-width:280px;margin:0 auto}@media (max-width:767px){.login-form label{font-size:11px}.login-form{max-width:none;padding:0}.login-form .form-box{background:#fff;padding:60px 15px 40px;box-shadow:0 3px 5px rgba(0,0,0,.04);margin-bottom:30px}.login-form .form-box>a{float:right}} .signup-form{max-width:596px;margin:0 auto}.signup-form label{font-weight:400;color:#515151;font-size:14px;margin:0}.signup-form label span{color:#f71e1e}@media (max-width:767px){.signup-form{padding:0}.student-auth-wizard .form-box,.student-home .form-box,.teacher-sign-up-wizard .form-box{background:#fff;padding:60px 15px 25px;box-shadow:0 3px 5px rgba(0,0,0,.04);margin-bottom:30px}} .social-connect .fa-twitter{font-size:53px}.social-connect .facebook a{background:#3b5999}.social-connect .facebook a:focus,.social-connect .facebook a:hover{background:#1f2e4f}.social-connect .twitter a{background:#0ac1ef}.social-connect .twitter a:focus,.social-connect .twitter a:hover{background:#06728d}@media (max-width:1096px){.social-connect .fa-twitter{font-size:35px}}@media (max-width:767px){.social-connect .fa-twitter{font-size:18px}} .section-1 .social-connect{padding-bottom:4px;border-bottom:none;margin:0}.section-1 .social-connect li{padding:0 15px 5px}.social-connect{text-align:center;position:relative;border-bottom:2px dashed #f6911d;padding:10px 0 24px}.social-connect>ul{padding:0}.social-connect li{display:inline-block;vertical-align:top;padding:0 19px 5px}.social-connect a{background:#cc3732;height:65px;width:230px;font-size:24px;text-transform:capitalize;color:#fff;display:flex;flex-direction:row;align-items:center;justify-content:space-around;padding:5px 18px}.social-connect a:focus,.social-connect a:hover{background:#7a211e}.social-connect i{font-size:35px}@media (max-width:1096px){.social-connect a{height:55px;width:180px;font-size:18px}.social-connect i{font-size:25px}}@media (max-width:767px){.section-1 .social-connect,.social-connect{position:static;background:#fff;padding:60px 15px 25px;box-shadow:0 3px 5px rgba(0,0,0,.04);margin-bottom:30px;border-bottom:none}.section-1 .social-connect{margin-top:20px}.section-1 .social-connect li{padding:0}.social-connect p{text-align:left;margin-top:20px}.social-connect li{display:block;margin-top:20px;padding:0;padding-left:0;padding-right:0;border-radius:2px;box-shadow:0 0 7px 0 rgba(0,0,0,.8)}.social-connect a{width:81px;height:23px;font-size:13px;padding:2px 5px}.social-connect i{font-size:12px}.social-connect li a{width:100%;height:42px;padding:2px 20px;font-size:17px}.social-connect li a .fa{font-size:17px}.social-connect li a span{flex-grow:1}}@media (max-width:639px){.social-connect ul{padding-left:0}} .btn-next{width:104px;height:54px;font-size:60px;line-height:52px;font-weight:700;text-align:center;padding-top:16px}.btn-next.student-wizard{position:absolute;top:100%;left:50%;transform:translateX(-50%)}.btn-next.student-wizard:after,.btn-next.student-wizard:before{width:9999px;top:0;content:””;background:rgba(246,145,29,.2);position:absolute;height:54px}.btn-next.student-wizard:before{right:100%}.btn-next.student-wizard:after{left:100%}.btn-next:after{right:auto;left:100%}.btn-next .shadow{position:absolute;top:0;left:0;right:0;overflow:hidden;height:53px}.btn-next .shadow:after{border-radius:53px;position:absolute;top:0;left:0;right:0;content:””;height:150px;box-shadow:-120px 37px 0 rgba(246,145,29,.2),120px 37px 0 rgba(246,145,29,.2),0 0 10px rgba(246,145,29,0),0 37px 0 80px rgba(246,145,29,.2)}.btns-area .btn-next,.btns-area .btn-prev,.content-box .header-row-rt .btn-next,.content-box .header-row-rt .btn-prev{width:72px;height:72px;background:transparent;border-radius:100%;border:none;display:inline-block;vertical-align:top;padding:5px}.btns-area .btn-next span,.btns-area .btn-prev span,.content-box .header-row-rt .btn-next span,.content-box .header-row-rt .btn-prev span{display:block;width:62px;height:62px;background:#fbaf5d;color:#fdfcfc;border:3px solid #fff;border-radius:100%;text-align:center;font-size:60px;line-height:20px;font-weight:700;position:relative;padding:15px 5px 12px 9px}.btns-area .btn-next:focus,.btns-area .btn-next:focus span,.btns-area .btn-next:hover,.btns-area .btn-next:hover span,.btns-area .btn-prev:focus,.btns-area .btn-prev:focus span,.btns-area .btn-prev:hover,.btns-area .btn-prev:hover span,.content-box .header-row-rt .btn-next:focus,.content-box .header-row-rt .btn-next:focus span,.content-box .header-row-rt .btn-next:hover,.content-box .header-row-rt .btn-next:hover span,.content-box .header-row-rt .btn-prev:focus,.content-box .header-row-rt .btn-prev:focus span,.content-box .header-row-rt .btn-prev:hover,.content-box .header-row-rt .btn-prev:hover span{background:#f6911d}.content-box .header-row-rt .disabled .btn-next:focus,.content-box .header-row-rt .disabled .btn-next:hover{background:transparent;cursor:not-allowed}.content-box .header-row-rt .disabled .btn-next:focus span,.content-box .header-row-rt .disabled .btn-next:hover span{background:#fbaf5d;cursor:not-allowed}@media (max-width:991px){.btns-area .btn-next,.btns-area .btn-prev,.content-box .header-row-rt .btn-next,.content-box .header-row-rt .btn-prev{width:62px;height:62px}.btns-area .btn-next span,.btns-area .btn-prev span,.content-box .header-row-rt .btn-next span,.content-box .header-row-rt .btn-prev span{width:52px;height:52px;font-size:48px;padding-top:11px;padding-bottom:9px}}@media (max-width:767px){.student-auth-wizard .btn-next.student-wizard,.top-section.home .btn-next.student-wizard{display:none}.btn-next{width:40px;height:19px;font-size:26px;line-height:26px;padding:6px 0 0}.btn-next.student-wizard:after,.btn-next.student-wizard:before{height:20px}.btns-area .btn-next,.btns-area .btn-prev,.content-box .header-row-rt .btn-next,.content-box .header-row-rt .btn-prev{width:28px;height:28px;padding:1px}.btns-area .btn-next span,.btns-area .btn-prev span,.content-box .header-row-rt .btn-next span,.content-box .header-row-rt .btn-prev span{width:26px;height:26px;font-size:26px;line-height:12px;border-width:1px;padding:5px 2px}} .list{list-style:none;margin:0;padding:0}.teacher-profile .list{padding:28px 3px 47px}.teacher-profile .list>li{margin-bottom:16px;text-transform:capitalize;position:relative;padding-left:29px}.teacher-profile .list>li:before{position:absolute;left:0;top:-4px;content:”F0C6″;font-family:fontawesome;color:#c8c7c7;font-size:24px;transform:rotate(-90deg)}.teacher-profile .list ul{overflow:hidden;color:#989898}.teacher-profile .list ul li{float:left;margin-right:10px;min-width:67px}.teacher-profile .list ul li:first-child{color:#515151;min-width:170px;max-width:170px}.profile-details .list{padding:27px 9px 87px}.profile-details .list>li{margin-bottom:7px;text-transform:capitalize;position:relative;padding-left:30px}.profile-details .list ul{overflow:hidden;color:#7e7e7e;font-size:17px;margin:0;padding:0;list-style:none}.profile-details .list ul li:first-child{width:28.8%}.profile-details .list ul li:nth-child(2){width:11.5%}.profile-details .list ul li:nth-child(3){width:10.6%}.profile-details .content-block-1 .list{font-size:17px;color:#7e7e7e}.profile-details .content-block-1 .list>li:before{top:-3px}.section-1 .list>li{margin-bottom:13px;text-transform:capitalize;position:relative;padding-left:26px}.section-1 .list>li:before{position:absolute;left:0;top:-4px;content:”F0C6″;font-family:fontawesome;color:#c8c7c7;font-size:24px;transform:rotate(-90deg);display:none}.section-1 .list ul{overflow:hidden;color:#989898;font-size:18px;margin:0;padding:0;list-style:none}.section-1 .list ul li:first-child{width:21.3%;color:#515151}.section-1 .list ul li:nth-child(2){width:9.1%}.section-1 .list ul li:nth-child(3){width:9.5%}.section-1 .list ul li:nth-child(4){width:22%}.box1-wrap .box1 .list,.top-section .box1 .list{overflow:hidden;position:absolute;bottom:-22px;left:0;z-index:11;padding:18px 0 0 24px}.box1-wrap .box1 .teacher-search-form .list{z-index:0;bottom:-5px}.box1-wrap .box1 .list li,.top-section .box1 .list li{font-size:18px;float:left;margin-right:29px}.box1-wrap .box1 .list a,.top-section .box1 .list a{color:#fff;text-decoration:underline}.box1-wrap .box1 .list a:hover,.box1-wrap .box1 .list input[type=reset]:hover:not([disabled]),.top-section .box1 .list a:hover,.top-section .box1 .list input[type=reset]:hover:not([disabled]){text-decoration:none}.box1-wrap .box1 .list input[type=reset],.top-section .box1 .list input[type=reset]{border:none;background:none;color:#fff;text-decoration:underline}.teacher-home .box1-wrap .box1 .list input[type=reset]{color:#f6911d;font-size:14px}.box1-wrap .box1 .question-form .list,.top-section .box1 .question-form .list{bottom:-20px;padding-left:18px}.box1-wrap .box1 .connect-twitter-form .list,.top-section .box1 .connect-twitter-form .list{bottom:-23px;padding-left:20px}.profile-details .list ul li,.section-1 .list ul li{float:left;padding-right:5px}@media (max-width:1359px){.profile-details .list ul li:first-child{width:33%}.profile-details .list ul li:nth-child(2){width:14%}.profile-details .list ul li:nth-child(3){width:13%}}@media (max-width:1096px){.profile-details .list ul li:first-child{width:35%}}@media (max-width:991px){.profile-details .list{padding:20px 5px 40px}.profile-details .list ul li:first-child{width:45%}.profile-details .list ul li:nth-child(2){width:16%}.profile-details .list ul li:nth-child(3){width:15%}.section-1 .list ul li:first-child{width:28%}.section-1 .list ul li:nth-child(2),.section-1 .list ul li:nth-child(3){width:12%}}@media (max-width:767px){.teacher-profile .list{padding:15px 0}.teacher-profile .list>li{padding-left:20px}.top-section .box1 .list li{font-size:11px;margin-right:10px}.top-section .login-form .list,.top-section .signup-form .list{bottom:10px}.top-section .login-form .list li,.top-section .signup-form .list li{font-size:11px;text-transform:none}.top-section .login-form .list input[type=reset],.top-section .signup-form .list input[type=reset]{color:#515151;text-decoration:underline}.top-section .login-form .list a,.top-section .signup-form .list a{color:#515151}.top-section .box1 .question-form .list{bottom:-12px}.box1-wrap .box1 .list li{font-size:10px;margin-right:10px}.teacher-home .box1-wrap .box1 .list{bottom:-25px}.profile-details .list{padding:10px 5px 0 0}.profile-details .list ul{margin-bottom:15px}.profile-details .list ul li{padding-right:5px;font-size:12px;color:#424242;font-weight:300;padding-bottom:5px}.profile-details .list ul li:first-child{width:43%}.profile-details .list ul li:first-child:after{content:”:”}.profile-details .list ul li:nth-child(3){clear:left}.profile-details .list ul li:nth-child(4){display:none}.profile-details .content-block-1 .list{font-size:13px}.profile-details .private-profile .content-block-1 .list{margin-left:15px}.profile-details .content-block-1 .list>li:before{top:2px}.section-1 .list ul li:nth-child(4){width:31%}.section-1 .list>li:before,.teacher-profile .list>li:before{font-size:14px;line-height:1;top:0}.box1-wrap .box1 .list,.top-section .box1 .list{padding-left:10px;bottom:-13px}.box1-wrap .box1 .connect-twitter-form .list,.top-section .box1 .connect-twitter-form .list{bottom:-15px;padding-left:10px}.profile-details .list>li,.section-1 .list>li{padding-left:15px}.section-1 .list{text-align:center;padding-top:15px;color:#f6911d}.educational-certificates-section.section-1 .list{text-align:left}.educational-certificates-section.section-1 .list>li{width:100%;margin-right:0}.educational-certificates-section.section-1 .list ul li:nth-child(2),.educational-certificates-section.section-1 .list ul li:nth-child(3){width:18%}.section-1 .list>li{display:inline-block;margin-right:20px;margin-bottom:0}.profile-details .list ul,.section-1 .list ul{font-size:12px}}@media (max-width:639px){.teacher-profile .list ul li:first-child{min-width:130px;max-width:130px}}@media (max-width:479px){.section-1 .list ul{font-size:10px}.section-1 .list ul li:nth-child(4){width:28%}}@media (max-width:374px){.teacher-profile .list ul li{min-width:50px}.teacher-profile .list ul li:first-child{min-width:100px;max-width:100px}} @media (max-width:767px){.mobile-wizard-steps .step-locator{width:100%;list-style:none;margin:20px auto 5px;padding:0;text-align:center}.mobile-wizard-steps .step-locator li{display:inline-block;width:65px;height:65px;border-radius:100%;box-shadow:0 3px 5px rgba(0,0,0,.04);margin:0 calc((100% – 195px) / 6);text-align:center}.mobile-wizard-steps .step-locator li:first-child{margin-left:0}.mobile-wizard-steps .step-locator li:last-child{margin-right:0}.mobile-wizard-steps .step-locator li .fa{font-size:30px;line-height:60px}.mobile-wizard-steps .step-locator .back{background-color:#fff;border:1px solid #fff}.mobile-wizard-steps .step-locator .current{background-color:#fff;border:1px solid #f6911d;line-height:65px;font-size:16px;color:#f6911d}.mobile-wizard-steps .step-locator .next{background-color:#f6911d;border:1px solid #f6911d}.mobile-wizard-steps .step-locator .next.disabled{opacity:.4;filter:alpha(opacity=40);box-shadow:none}.mobile-wizard-steps .step-locator .next button{background:transparent;border:0;color:#fff}.mobile-wizard-steps .step-name{text-align:center;max-width:35%;color:#f6911d;font-size:14px;font-weight:300;display:block;margin:0 auto 15px}} .top-section .box1{margin-bottom:104px}.box1-wrap .box1{margin-bottom:0}.box1-wrap .box1 .hold,.top-section .box1 .hold{background:rgba(246,145,29,.2);position:relative;padding:9px 9px 25px}@media (max-width:767px){.top-section .box1 .hold{background:none}.top-section .box1{margin-bottom:35px}.top-section.home .box1{margin-bottom:15px}.box1-wrap .box1 .hold,.top-section .box1 .hold{padding:0 10px}.teacher-home .box1-wrap .box1 .hold,.top-section.home .box1 .hold{background:transparent;padding-bottom:0}} .connect-twitter-form .head{font-size:30px;text-align:center;margin-bottom:11px;line-height:2}.btn.btn-default:hover{background:#464646}.connect-twitter-form .error-info{display:block;padding-left:24px;position:relative;margin-bottom:13px}.connect-twitter-form .error-info:before{color:#ff001e;border-radius:100%;text-align:center;content:”F057″;font-family:FontAwesome;left:0;top:5px;position:absolute;font-size:20px;line-height:1}ordered-list{list-style:none;margin:0;padding:0}.ordered-list{list-style:none;counter-reset:item;color:#4f4b4d;padding-left:3px}.ordered-list li{margin-bottom:-2px}.ordered-list li:before{content:counters(item,”.”) “.”;counter-increment:item;font-weight:900;font-size:18px;padding-right:5px}.connect-twitter-form .ordered-list a,.ordered-list a{font-weight:900;text-decoration:underline}.connect-twitter-form .ordered-list a:hover,.ordered-list a:hover{text-decoration:none;color:#333}@media (max-width:767px){.connect-twitter-form .head{font-size:20px}.connect-twitter-form .head.empty{display:none}.connect-twitter-form .error-info:before{content:”F06A”;top:2px}.connect-twitter-form .error-info strong{display:block}.ordered-list li{margin-bottom:10px}.ordered-list li:before{content:counters(item,”.”) ” -“;font-weight:600}} .connect-twitter-form{color:#4f4b4d;background:#fff;line-height:28px;padding:13px 20px 41px}.connect-twitter-form label{font-weight:400;color:#515151;font-size:14px;line-height:1.2;margin:0}.connect-twitter-form label span{color:#f71e1e}.connect-twitter-form .wrap{max-width:595px;margin:0 auto}@media (max-width:767px){.connect-twitter-form{background:transparent;font-size:16px;margin-bottom:8px;padding:10px 0}.connect-twitter-form label{font-size:12px;line-height:1}} @media (max-width:767px){.connect-twitter-form .form-box{background:#fff;padding:30px 15px 10px;box-shadow:0 3px 5px rgba(0,0,0,.04);margin-bottom:30px}.connect-twitter-form .form-box .title{font-size:18px;font-weight:500}} .congratulations-block{font-size:18px;line-height:1.5555;color:#333;text-align:center;padding-bottom:2px}.congratulations-block p{margin-bottom:27px}.congratulations-block p span{font-size:24px}.congratulations-block p span mark{font-weight:700;color:#0279fe;background:none}.congratulations-block .content-block{background:#fff;padding:23px 21px 8px}.congratulations-block .intro{overflow:hidden;margin-bottom:27px}.box1 .hold .congratulations-block .intro{position:relative;min-height:150px}.congratulations-block .title{font-size:30px;display:block;font-weight:400;text-transform:capitalize;margin-bottom:9px}.congratulations-block .title span{color:#0279fe}@media (max-width:767px){.congratulations-block{font-size:12px;text-align:left}.congratulations-block .intro{margin-bottom:0;text-align:center}.congratulations-block .content-block{padding:20px}.ticket-wizard .congratulations-block .content-block{padding:20px 30px;margin:20px 0;text-align:center}.congratulations-block .title,.congratulations-block p span{font-size:18px;margin-bottom:20px;font-weight:500}.congratulations-block p{font-size:16px;font-weight:300}.congratulations-block .title span{color:#f99815}.congratulations-block .title.help-style{font-size:16px}}  .publish-form .checkbox{list-style:none;display:flex;justify-content:space-between;margin:0;padding:11px 0 0}.publish-form .checkbox label{font-size:18px;text-transform:capitalize;color:#333;position:relative;padding-left:20px}.publish-form .checkbox input[type=checkbox]{position:static;display:inline-block;vertical-align:middle;margin:-2px 2px 0 -20px}.select-area .select-drop ul li:first-child .checkbox{font-size:15px}.select-drop ul li:first-child .checkbox{font-size:inherit}.select-drop ul.underline-first-item li:first-child .checkbox{font-size:15px}.select-area .select-drop ul{list-style:none;margin:12px 0 8px;padding:0}.select-area .select-drop{position:absolute;top:100%;left:0;right:0;padding-top:2px;display:none}.select-area .select-drop ul li:first-child{border-bottom:1px dashed #4a4a4a;padding-bottom:7px;margin-bottom:10px}.select-drop{text-align:left;z-index:100;position:absolute;top:100%;left:0;right:0;padding-top:2px;display:block!important}.manual-review-grid .select-drop{left:-150%}.select-drop ul{margin:12px 0 8px}.select-drop ul li:first-child{border-bottom:inherit!important;padding-bottom:inherit!important;margin-bottom:inherit!important}.checkbox-filter{width:200px;line-height:1.5}.my-questions .holder{max-width:932px;margin:0 auto}.select-drop ul.underline-first-item li:first-child{border-bottom:1px dashed #4a4a4a!important;padding-bottom:7px!important;margin-bottom:10px!important}.select-area .select-drop .checkbox,.select-drop .checkbox{border:none;color:#4a4a4a;font-size:14px;padding:0}.select-area .select-drop .checkbox input[type=checkbox],.select-drop .checkbox input[type=checkbox]{margin-top:5px}.select-area.active .select-drop,.Select .select-area .select-drop{display:block}.select-area .select-drop>.holder,.select-drop>.holder{background:#fff;border:1px solid #ddd;box-shadow:0 0 4px 0 rgba(0,0,0,.3);max-height:500px;overflow:auto;padding:0 20px}.select-area .select-drop ul li,.select-drop ul li{margin-bottom:7px}.select-area .select-drop ul li:last-child,.select-drop ul li:last-child{margin-bottom:0}.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox]{position:absolute;margin-left:-20px;margin-top:4px9}.checkbox+.checkbox{margin-top:-5px}@media (max-width:991px){.select-area .select-drop>.holder,.select-drop>.holder{max-height:350px;padding:0 15px}.select-area .select-drop ul,.select-drop ul{margin:8px 0}}@media (max-width:767px){.select-drop.checkbox-filter{left:20px;top:60px;position:fixed;width:calc(100vw – 40px)!important;height:calc(100vh – 80px);right:20px;background:#ecebe6;transform:none;margin:0}.checkbox-filter .btn-close{font-size:27px;position:absolute;top:19px;right:-12px;color:#ff4537;margin-right:15px}.checkbox-filter .form-box{border-radius:2px;box-shadow:0 3px 5px rgba(0,0,0,.04);background-color:#fff;padding:35px 15px;margin:40px 10px}.publish-form .checkbox{padding:0 0 15px}.publish-form .checkbox label{font-size:11px;padding-left:15px}.publish-form .checkbox input[type=checkbox]{margin-left:-15px}.select-area .select-drop ul li:first-child .checkbox{font-size:13px}.select-drop ul li:first-child .checkbox{font-size:inherit}.select-drop ul.underline-first-item li:first-child .checkbox{font-size:13px}.select-area .select-drop ul li:first-child{padding-bottom:4px;margin-bottom:7px}.select-drop ul li:first-child{padding-bottom:inherit!important;margin-bottom:inherit!important}.select-drop ul.underline-first-item li:first-child{padding-bottom:4px!important;margin-bottom:7px!important}.select-area .select-drop .checkbox,.select-drop .checkbox{font-size:12px}.select-area .select-drop .checkbox input[type=checkbox],.select-drop .checkbox input[type=checkbox]{margin-top:2px}.select-area .select-drop>.holder,.select-drop>.holder{max-height:263px;padding:0 10px}.select-area .select-drop ul,.select-drop ul{margin:6px 0}.select-area .select-drop ul li,.select-drop ul li{margin-bottom:7px}.checkbox-filter .checkbox label{font-size:16px}.select-drop.checkbox-filter .checkbox input[type=checkbox]{margin-top:5px}}@media (max-width:639px){.publish-form .checkbox{display:block}.publish-form .checkbox li{display:inline-block;vertical-align:top;padding-right:20px}} .question-search-form{position:relative}.payments .question-search-form,.purchased .question-search-form{display:flex}.payments .question-search-form>label,.purchased .question-search-form>label{align-self:flex-end}.dmca .search-box-filter{width:100%!important}.btn.style-1{border:3px solid #fff;border-radius:13px;text-transform:none;color:#f6f6f6;font-weight:400;padding:3px 10px 4px}.question-search-form .btn-submit{font-size:19px;height:28px;right:8px;position:absolute;transition:color .3s linear 0;width:28px;top:50%;transform:translateY(-50%);background:none;border:none;color:#f7921e;padding:0}.question-search-form .btn-submit .fa{position:absolute;z-index:-1;font-size:25px;top:50%;left:50%;transform:translate(-50%,-50%)}.question-search-form .btn-submit:hover{color:#4f4b4d}.search-box-filter .form-group .fa-search{font-size:28px;line-height:inherit;width:auto;height:auto;top:50%;position:absolute;margin:0;padding:0 15px 0 0}@media (max-width:991px){.btn.style-1{border-radius:10px}}@media (max-width:767px){.btn.style-1{border-radius:5px;border-width:2px;padding:2px 7px 3px}.popup .question-search-form{position:relative;border-radius:2px;box-shadow:0 3px 5px rgba(0,0,0,.04);background-color:#fff;padding:35px 15px;margin:50px 15px}.popup .question-search-form .btn-close{font-size:27px;position:absolute;top:-15px;right:-24px;color:#ff4537;margin-right:15px}.popup .question-search-form .form-control{width:100%;padding-bottom:0;font-size:16px;height:26px}.question-search-form .btn-submit{right:3px;width:20px;height:20px}.question-search-form .btn-submit .fa{font-size:16px}.search-box-filter .form-group .fa-search{font-size:15px;padding:0 5px 0 0}} .popup{margin-top:10px;position:absolute;z-index:2;background:#ddd;border:3px solid #ddd;box-shadow:0 0 4px 0 rgba(0,0,0,.3)}@media (max-width:767px){.popup{top:60px!important;left:20px!important;bottom:20px;background:#ecebe6;width:calc(100vw – 40px);position:fixed!important;border-radius:2px;box-shadow:0 3px 5px rgba(0,0,0,.04);border:0}} .CalendarDay{border:1px solid #e4e7e7;color:#565a5c}.CalendarDay,.CalendarDay__button{padding:0;box-sizing:border-box;cursor:pointer}.CalendarDay__button{position:relative;height:100%;width:100%;text-align:center;background:none;border:0;margin:0;color:inherit;font:inherit;line-height:normal;overflow:visible}.CalendarDay__button:active{outline:0}.CalendarDay–highlighted-calendar{background:#ffe8bc;color:#565a5c;cursor:default}.CalendarDay–highlighted-calendar:active{background:#007a87}.CalendarDay–outside{border:0;cursor:default}.CalendarDay–outside:active{background:#fff}.CalendarDay–hovered{background:#e4e7e7;border:1px double #d4d9d9;color:inherit}.CalendarDay–blocked-minimum-nights{color:#cacccd;background:#fff;border:1px solid #e4e7e7;cursor:default}.CalendarDay–blocked-minimum-nights:active{background:#fff}.CalendarDay–selected-span{background:#66e2da;border:1px double #33dacd;color:#fff}.CalendarDay–selected-span.CalendarDay–hovered,.CalendarDay–selected-span:active{background:#33dacd;border:1px double #00a699}.CalendarDay–selected-span.CalendarDay–last-in-range{border-right:#00a699}.CalendarDay–after-hovered-start,.CalendarDay–hovered-span{background:#b2f1ec;border:1px double #80e8e0;color:#007a87}.CalendarDay–after-hovered-start:active,.CalendarDay–hovered-span:active{background:#80e8e0}.CalendarDay–selected,.CalendarDay–selected-end,.CalendarDay–selected-start{background:#00a699;border:1px double #00a699;color:#fff}.CalendarDay–selected-end:active,.CalendarDay–selected-start:active,.CalendarDay–selected:active{background:#00a699}.CalendarDay–blocked-calendar{background:#cacccd;color:#82888a;cursor:default}.CalendarDay–blocked-calendar:active{background:#cacccd}.CalendarDay–blocked-out-of-range{color:#cacccd;background:#fff;border:1px solid #e4e7e7;cursor:default}.CalendarDay–blocked-out-of-range:active{background:#fff}.CalendarMonth{text-align:center;padding:0 13px;vertical-align:top;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.CalendarMonth table{border-collapse:collapse;border-spacing:0;caption-caption-side:initial}.CalendarMonth–horizontal:first-of-type,.CalendarMonth–vertical:first-of-type{position:absolute;z-index:-1;opacity:0;pointer-events:none}.CalendarMonth–horizontal{display:inline-block;min-height:100%}.CalendarMonth–vertical{display:block}.CalendarMonth__caption{color:#3c3f40;margin-top:7px;font-size:18px;text-align:center;margin-bottom:2px;caption-side:top}.CalendarMonth–horizontal .CalendarMonth__caption,.CalendarMonth–vertical .CalendarMonth__caption{padding:15px 0 35px}.CalendarMonth–vertical-scrollable .CalendarMonth__caption{padding:5px 0}.CalendarMonthGrid{background:#fff;z-index:0;text-align:left}.CalendarMonthGrid–animating{transition:transform .2s ease-in-out;z-index:1}.CalendarMonthGrid–horizontal{position:absolute;left:9px}.CalendarMonthGrid–vertical{margin:0 auto}.CalendarMonthGrid–vertical-scrollable{margin:0 auto;overflow-y:scroll}.DayPicker{background:#fff;position:relative;text-align:left}.DayPicker–horizontal{background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);border-radius:3px}.DayPicker–horizontal.DayPicker–portal{box-shadow:none;position:absolute;left:50%;top:50%}.DayPicker–vertical.DayPicker–portal{position:static}.DayPicker__focus-region{outline:none}.DayPicker__week-headers{position:relative}.DayPicker–horizontal .DayPicker__week-headers{margin-left:9px}.DayPicker__week-header{color:#757575;position:absolute;top:62px;z-index:2;padding:0 13px;text-align:left}.DayPicker__week-header ul{list-style:none;margin:1px 0;padding-left:0;padding-right:0}.DayPicker__week-header li{display:inline-block;text-align:center}.DayPicker–vertical .DayPicker__week-header{left:50%}.DayPicker–vertical-scrollable{height:100%}.DayPicker–vertical-scrollable .DayPicker__week-header{top:0;display:table-row;border-bottom:1px solid #dbdbdb;background:#fff}.DayPicker–vertical-scrollable .transition-container–vertical{padding-top:20px;height:100%;position:absolute;top:0;bottom:0;right:0;left:0;overflow-y:scroll}.DayPicker–vertical-scrollable .DayPicker__week-header{margin-left:0;left:0;width:100%;text-align:center}.transition-container{position:relative;overflow:hidden;border-radius:3px}.transition-container–horizontal{transition:height .2s ease-in-out}.transition-container–vertical{width:100%}.DayPickerNavigation__next,.DayPickerNavigation__prev{cursor:pointer;line-height:.78;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.DayPickerNavigation__next–default,.DayPickerNavigation__prev–default{border:1px solid #dce0e0;background-color:#fff;color:#757575}.DayPickerNavigation__next–default:focus,.DayPickerNavigation__next–default:hover,.DayPickerNavigation__prev–default:focus,.DayPickerNavigation__prev–default:hover{border:1px solid #c4c4c4}.DayPickerNavigation__next–default:active,.DayPickerNavigation__prev–default:active{background:#f2f2f2}.DayPickerNavigation–horizontal{position:relative}.DayPickerNavigation–horizontal .DayPickerNavigation__next,.DayPickerNavigation–horizontal .DayPickerNavigation__prev{border-radius:3px;padding:6px 9px;top:18px;z-index:2;position:absolute}.DayPickerNavigation–horizontal .DayPickerNavigation__prev{left:22px}.DayPickerNavigation–horizontal .DayPickerNavigation__prev–rtl{left:auto;right:22px}.DayPickerNavigation–horizontal .DayPickerNavigation__next{right:22px}.DayPickerNavigation–horizontal .DayPickerNavigation__next–rtl{right:auto;left:22px}.DayPickerNavigation–horizontal .DayPickerNavigation__next–default svg,.DayPickerNavigation–horizontal .DayPickerNavigation__prev–default svg{height:19px;width:19px;fill:#82888a}.DayPickerNavigation–vertical{background:#fff;box-shadow:0 0 5px 2px rgba(0,0,0,.1);position:absolute;bottom:0;left:0;height:52px;width:100%;z-index:2}.DayPickerNavigation–vertical .DayPickerNavigation__next,.DayPickerNavigation–vertical .DayPickerNavigation__prev{display:inline-block;position:relative;height:100%;width:50%}.DayPickerNavigation–vertical .DayPickerNavigation__next–default{border-left:0}.DayPickerNavigation–vertical .DayPickerNavigation__next–default,.DayPickerNavigation–vertical .DayPickerNavigation__prev–default{text-align:center;font-size:2.5em;padding:5px}.DayPickerNavigation–vertical .DayPickerNavigation__next–default svg,.DayPickerNavigation–vertical .DayPickerNavigation__prev–default svg{height:42px;width:42px;fill:#484848}.DayPickerNavigation–vertical-scrollable{position:relative}.DayPickerNavigation–vertical-scrollable .DayPickerNavigation__next{width:100%}.DayPickerKeyboardShortcuts__close,.DayPickerKeyboardShortcuts__show{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;cursor:pointer}.DayPickerKeyboardShortcuts__close:active,.DayPickerKeyboardShortcuts__show:active{outline:none}.DayPickerKeyboardShortcuts__show{width:22px;position:absolute;z-index:2}.DayPickerKeyboardShortcuts__show–bottom-right{border-top:26px solid transparent;border-right:33px solid #00a699;bottom:0;right:0}.DayPickerKeyboardShortcuts__show–bottom-right:hover{border-right:33px solid #008489}.DayPickerKeyboardShortcuts__show–bottom-right .DayPickerKeyboardShortcuts__show_span{bottom:0;right:-28px}.DayPickerKeyboardShortcuts__show–top-right{border-bottom:26px solid transparent;border-right:33px solid #00a699;top:0;right:0}.DayPickerKeyboardShortcuts__show–top-right:hover{border-right:33px solid #008489}.DayPickerKeyboardShortcuts__show–top-right .DayPickerKeyboardShortcuts__show_span{top:1px;right:-28px}.DayPickerKeyboardShortcuts__show–top-left{border-bottom:26px solid transparent;border-left:33px solid #00a699;top:0;left:0}.DayPickerKeyboardShortcuts__show–top-left:hover{border-left:33px solid #008489}.DayPickerKeyboardShortcuts__show–top-left .DayPickerKeyboardShortcuts__show_span{top:1px;left:-28px}.DayPickerKeyboardShortcuts__show_span{color:#fff;position:absolute}.DayPickerKeyboardShortcuts__panel{overflow:auto;background:#fff;border:1px solid #dbdbdb;border-radius:2px;position:absolute;top:0;bottom:0;right:0;left:0;z-index:2;padding:22px;margin:33px}.DayPickerKeyboardShortcuts__title{font-size:16px;font-weight:700;margin:0}.DayPickerKeyboardShortcuts__list{list-style:none;padding:0}.DayPickerKeyboardShortcuts__close{position:absolute;right:22px;top:22px;z-index:2}.DayPickerKeyboardShortcuts__close svg{height:15px;width:15px;fill:#cacccd}.DayPickerKeyboardShortcuts__close svg:focus,.DayPickerKeyboardShortcuts__close svg:hover{fill:#82888a}.DayPickerKeyboardShortcuts__close:active{outline:none}.KeyboardShortcutRow{margin:6px 0}.KeyboardShortcutRow__key-container{display:inline-block;white-space:nowrap;text-align:right;margin-right:6px}.KeyboardShortcutRow__key{font-family:monospace;font-size:12px;text-transform:uppercase;background:#f2f2f2;padding:2px 6px}.KeyboardShortcutRow__action{display:inline;word-break:break-word;margin-left:8px}.DayPickerKeyboardShortcuts__panel–block .KeyboardShortcutRow{margin-bottom:16px}.DayPickerKeyboardShortcuts__panel–block .KeyboardShortcutRow__key-container{width:auto;text-align:left;display:inline}.DayPickerKeyboardShortcuts__panel–block .KeyboardShortcutRow__action{display:inline}.DateInput{font-weight:200;font-size:18px;line-height:24px;color:#757575;margin:0;padding:8px;background:#fff;position:relative;display:inline-block;width:130px;vertical-align:middle}.DateInput–with-caret:after,.DateInput–with-caret:before{content:””;display:inline-block;position:absolute;bottom:auto;border:10px solid transparent;border-top:0;left:22px;z-index:2}.DateInput–with-caret:before{top:62px;border-bottom-color:rgba(0,0,0,.1)}.DateInput–with-caret:after{top:63px;border-bottom-color:#fff}.DateInput–disabled{background:#cacccd}.DateInput__input{opacity:0;position:absolute;top:0;left:0;border:0;height:100%;width:100%}.DateInput__input[readonly]{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.DateInput__display-text{padding:4px 8px;white-space:nowrap;overflow:hidden}.DateInput__display-text–has-input{color:#484848}.DateInput__display-text–focused{background:#99ede6;border-color:#99ede6;border-radius:3px;color:#007a87}.DateInput__display-text–disabled{font-style:italic}.screen-reader-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.DateRangePicker{position:relative;display:inline-block}.DateRangePicker__picker{z-index:1;background-color:#fff;position:absolute;top:72px}.DateRangePicker__picker–rtl{direction:rtl}.DateRangePicker__picker–direction-left{left:0}.DateRangePicker__picker–direction-right{right:0}.DateRangePicker__picker–portal{background-color:rgba(0,0,0,.3);position:fixed;top:0;left:0;height:100%;width:100%}.DateRangePicker__picker–full-screen-portal{background-color:#fff}.DateRangePicker__close{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;cursor:pointer;position:absolute;top:0;right:0;padding:15px;z-index:2}.DateRangePicker__close svg{height:15px;width:15px;fill:#cacccd}.DateRangePicker__close:focus,.DateRangePicker__close:hover{color:#b0b3b4;text-decoration:none}.DateRangePickerInput{background-color:#fff;border:1px solid #cacccd;display:inline-block}.DateRangePickerInput–disabled{background:#cacccd}.DateRangePickerInput–rtl{direction:rtl}.DateRangePickerInput__arrow{display:inline-block;vertical-align:middle}.DateRangePickerInput__arrow svg{vertical-align:middle;fill:#484848;height:24px;width:24px}.DateRangePickerInput__clear-dates{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;display:inline-block;vertical-align:middle;padding:10px;margin:0 10px 0 5px}.DateRangePickerInput__clear-dates svg{fill:#82888a;height:12px;width:15px;vertical-align:middle}.DateRangePickerInput__clear-dates–hide{visibility:hidden}.DateRangePickerInput__clear-dates–hover,.DateRangePickerInput__clear-dates:focus{background:#dbdbdb;border-radius:50%}.DateRangePickerInput__calendar-icon{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;display:inline-block;vertical-align:middle;padding:10px;margin:0 5px 0 10px}.DateRangePickerInput__calendar-icon svg{fill:#82888a;height:15px;width:14px;vertical-align:middle}.SingleDatePicker{position:relative;display:inline-block}.SingleDatePicker__picker{z-index:1;background-color:#fff;position:absolute;top:72px}.SingleDatePicker__picker–rtl{direction:rtl}.SingleDatePicker__picker–direction-left{left:0}.SingleDatePicker__picker–direction-right{right:0}.SingleDatePicker__picker–portal{background-color:rgba(0,0,0,.3);position:fixed;top:0;left:0;height:100%;width:100%}.SingleDatePicker__picker–full-screen-portal{background-color:#fff}.SingleDatePicker__close{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;cursor:pointer;position:absolute;top:0;right:0;padding:15px;z-index:2}.SingleDatePicker__close svg{height:15px;width:15px;fill:#cacccd}.SingleDatePicker__close:focus,.SingleDatePicker__close:hover{color:#b0b3b4;text-decoration:none}.SingleDatePickerInput{background-color:#fff;border:1px solid #dbdbdb}.SingleDatePickerInput–rtl{direction:rtl}.SingleDatePickerInput__clear-date{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;display:inline-block;vertical-align:middle;padding:10px;margin:0 10px 0 5px}.SingleDatePickerInput__clear-date svg{fill:#82888a;height:12px;width:15px;vertical-align:middle}.SingleDatePickerInput__clear-date–hide{visibility:hidden}.SingleDatePickerInput__clear-date–hover,.SingleDatePickerInput__clear-date:focus{background:#dbdbdb;border-radius:50%}.SingleDatePickerInput__calendar-icon{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;cursor:pointer;display:inline-block;vertical-align:middle;padding:10px;margin:0 5px 0 10px}.SingleDatePickerInput__calendar-icon svg{fill:#82888a;height:15px;width:14px;vertical-align:middle} .DateRangePicker__picker{top:calc(100% + 5px)!important}.DateRangePickerInput .DateInput{line-height:1;padding:0}.datepicker-form .form-control:focus .DateInput__display-text,.datepicker-form .form-control:hover .DateInput__display-text{color:#f6911d;font-weight:400}.DateRangePickerInput .DateInput .DateInput__display-text{transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;background:transparent;padding:0;line-height:1}.DateRangePickerInput .DateInput .DateInput__display-text.DateInput__display-text–focused{color:#f7921e}.DateRangePickerInput{border:none!important}.DateRangePickerInput .DateInput__display-text{transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease}.DateRangePickerInput .DateInput__display-text.DateInput__display-text–focused{background:transparent!important;color:#f7921e!important}.DayPickerKeyboardShortcuts__show–bottom-right{border-right:33px solid orange!important}.CalendarDay.CalendarDay–selected,.CalendarDay.CalendarDay–selected-span{border:2px solid #fff!important;background:orange!important}.CalendarDay.CalendarDay–after-hovered-start,.CalendarDay.CalendarDay–hovered-span{border:2px solid #fff!important;background:rgba(246,145,29,.2)!important;color:#000!important}.CalendarDay.CalendarDay–selected-end,.CalendarDay.CalendarDay–selected-start{border:2px solid #fff!important;background:#ff8c00!important}.DateInput{width:auto!important;padding:0!important}.datepicker-form .fa-calendar{position:absolute;left:0;bottom:5px;line-height:1;font-size:25px;color:#333}@media (max-width:767px){.DateRangePickerInput .DateInput{margin-bottom:5px;font-size:11px}.DateRangePickerInput .DateRangePickerInput__arrow{vertical-align:inherit;margin:0 3px}.DateRangePickerInput .DateRangePickerInput__arrow svg{width:12px;height:12px}.datepicker-form .fa-calendar{font-size:12px;bottom:3px}} .publish-form .checkbox{list-style:none;display:flex;justify-content:space-between;margin:0;padding:11px 0 0}.publish-form .checkbox label{font-size:18px;text-transform:capitalize;color:#333;position:relative;padding-left:20px}.radio label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px9}.radio+.radio{margin-top:-5px}.publish-form .checkbox input[type=checkbox]{position:static;display:inline-block;vertical-align:middle;margin:-2px 2px 0 -20px}.select-area .select-drop ul li:first-child .checkbox{font-size:15px}.select-drop ul li:first-child .checkbox{font-size:inherit}.select-drop ul.underline-first-item li:first-child .checkbox{font-size:15px}.select-area .select-drop ul{list-style:none;margin:12px 0 8px;padding:0}.select-area .select-drop{position:absolute;top:100%;left:0;right:0;padding-top:2px;display:none}.select-area .select-drop ul li:first-child{border-bottom:1px dashed #4a4a4a;padding-bottom:7px;margin-bottom:10px}.select-drop{text-align:left;z-index:100;position:absolute;top:100%;left:0;right:0;padding-top:2px;display:block!important}.select-drop ul{margin:12px 0 8px}.select-drop ul li:first-child{border-bottom:inherit!important;padding-bottom:inherit!important;margin-bottom:inherit!important}.my-questions .holder{max-width:932px;margin:0 auto}.select-drop ul.underline-first-item li:first-child{border-bottom:1px dashed #4a4a4a!important;padding-bottom:7px!important;margin-bottom:10px!important}.radio-buttons-filter{width:200px;line-height:1.5}.select-area .select-drop .checkbox,.select-drop .checkbox{border:none;color:#4a4a4a;font-size:14px;padding:0}.select-area .select-drop .checkbox input[type=checkbox],.select-drop .checkbox input[type=checkbox]{margin-top:5px}.select-area.active .select-drop,.Select .select-area .select-drop{display:block}.select-area .select-drop>.holder,.select-drop>.holder{background:#fff;border:1px solid #ddd;box-shadow:0 0 4px 0 rgba(0,0,0,.3);max-height:500px;overflow:auto;padding:0 20px}.select-area .select-drop ul li,.select-drop ul li{margin-bottom:7px}.select-area .select-drop ul li:last-child,.select-drop ul li:last-child{margin-bottom:0}@media (max-width:991px){.select-area .select-drop>.holder,.select-drop>.holder{max-height:350px;padding:0 15px}.select-area .select-drop ul,.select-drop ul{margin:8px 0}}@media (max-width:767px){.radio-buttons-filter{left:20px;top:60px;position:fixed;width:calc(100vw – 40px)!important;height:calc(100vh – 80px);right:20px;background:#ecebe6;transform:none;margin:0}.radio-buttons-filter .btn-close{font-size:27px;position:absolute;top:19px;right:-12px;color:#ff4537;margin-right:15px}.radio-buttons-filter .form-box{border-radius:2px;box-shadow:0 3px 5px rgba(0,0,0,.04);background-color:#fff;padding:35px 15px;margin:40px 10px}.publish-form .checkbox{padding:0 0 15px}.publish-form .checkbox label{font-size:11px;padding-left:15px}.publish-form .checkbox input[type=checkbox]{margin-left:-15px}.select-area .select-drop ul li:first-child .checkbox{font-size:13px}.select-drop ul li:first-child .checkbox{font-size:inherit}.select-drop ul.underline-first-item li:first-child .checkbox{font-size:13px}.select-area .select-drop ul li:first-child{padding-bottom:4px;margin-bottom:7px}.select-drop ul li:first-child{padding-bottom:inherit!important;margin-bottom:inherit!important}.select-drop ul.underline-first-item li:first-child{padding-bottom:4px!important;margin-bottom:7px!important}.select-area .select-drop .checkbox,.select-drop .checkbox{font-size:12px}.select-area .select-drop .checkbox input[type=checkbox],.select-drop .checkbox input[type=checkbox]{margin-top:2px}.select-area .select-drop>.holder,.select-drop>.holder{max-height:263px;padding:0 10px}.select-area .select-drop ul,.select-drop ul{margin:6px 0}.select-area .select-drop ul li,.select-drop ul li{margin-bottom:7px}.radio-buttons-filter .checkbox label{font-size:16px}.radio-buttons-filter .checkbox input[type=radio]{margin-top:5px}}@media (max-width:639px){.publish-form .checkbox{display:block}.publish-form .checkbox li{display:inline-block;vertical-align:top;padding-right:20px}} .select-area .select-toggle{display:block;border:1px solid #cecece;border-radius:10px;color:#bfbcbc;height:34px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%;transition:border .3s linear;padding:5px 25px 5px 7px}.select-area .select-toggle:after{content:””;position:absolute;top:12px;right:11px;height:0;width:0;border-left:5.5px solid transparent;border-right:5.5px solid transparent;border-top:10px solid #4a4a4a}.select-area.active .select-toggle,.select-area .select-toggle:hover{border-color:#f7921e}@media (max-width:767px){.select-area .select-toggle{border-radius:4px;font-size:11px;height:25px;padding:4px 19px 4px 5px}.select-area .select-toggle:after{height:0;width:0;border-left:3.5px solid transparent;border-right:3.5px solid transparent;border-top:6px solid #4a4a4a;top:10px;right:8px}} .hwmkt-table .c1-th{position:relative;display:table-cell;vertical-align:middle;padding:8px 9px}.filter-header-cell{padding-right:5px}@media (max-width:767px){.hwmkt-table .c1-th{padding:4px}} .hwmkt-table .c1-tr{display:table;width:100%;table-layout:fixed}.hwmkt-table .c1-t-body .c1-tr.summaryRow,.hwmkt-table .c1-t-body .c1-tr.summaryRow:nth-child(2n){background:#fae3b5;font-weight:700}.hwmkt-table .c1-t-body .c1-tr{background:#f0f0f0}.hwmkt-table .c1-t-body .c1-tr:nth-child(2n){background:#fff}.disabled button,.disabled input,.disabled input[type=submit],.disabled label,.disabled select{cursor:not-allowed;pointer-events:none;opacity:.8}.disabled{cursor:not-allowed}.hwmkt-table .c1-td{display:table-cell;vertical-align:middle;color:#464646;border-right:1px solid #ddd;height:36px;overflow:hidden;text-overflow:ellipsis;padding:7px 9px}.hwmkt-table .c1-td:last-child{border:none}.hwmkt-table .c1-t-body .c1-tr:hover,.hwmkt-table .c1-t-body .c1-tr:nth-child(2n):hover{background:#fae3b5}@media (max-width:767px){.hwmkt-table .c1-tr{position:relative}.hwmkt-table .c1-td{height:20px}} .hwmkt-table{font-size:14px;line-height:1.2}.hwmkt-table:last-child{margin-bottom:25px}.hwmkt-table .c1-t-head{background:#f8941f;text-transform:capitalize;font-weight:700;color:#fff}.hwmkt-table .c1-tr{display:table;width:100%;table-layout:fixed}.hwmkt-table.auto-height .c1-t-body{min-height:0}.hwmkt-table .c1-t-body{position:relative;min-height:200px}.no-results{vertical-align:middle;width:100%;text-align:center;font-weight:300;margin-top:30px;font-size:30px;color:#888}.hwmkt-table .overflow{overflow:visible}.hwmkt-table .date-column,.hwmkt-table .location-column{width:100px}.hwmkt-table .payment-amount-column,.hwmkt-table .reviewed-item-column{width:90px}.hwmkt-table .payment-id-column{width:180px}.hwmkt-table .payment-credit-column{display:flex;justify-content:center;align-items:flex-end}.hwmkt-table .field-of-study-column,.hwmkt-table .payer-id-column,.hwmkt-table .rating-column,.hwmkt-table .username-column{width:160px}.hwmkt-table .title-column{width:260px}.hwmkt-table .text-column{width:500px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.hwmkt-table .communication-column,.hwmkt-table .payment-avg-column{width:120px}.hwmkt-table .c1-td.bold{font-weight:700;font-size:15px}.hwmkt-table .summaryRow .c1-td{display:inline-table}@media (max-width:991px){.hwmkt-table{font-size:12px}.no-results{font-size:24px;margin-top:20px}.hwmkt-table .available-column,.hwmkt-table .change-column,.hwmkt-table .date-column,.hwmkt-table .fee-column,.hwmkt-table .field-of-study-column,.hwmkt-table .payment-from-column,.hwmkt-table .payment-to-column,.hwmkt-table .reverse-column,.hwmkt-table .thread-column,.hwmkt-table .tutor-column{display:none}}@media (max-width:960px){.hwmkt-table .date-column,.hwmkt-table .field-of-study-column,.hwmkt-table .payment-amount-column,.hwmkt-table .payment-id-column,.hwmkt-table .title-column,.hwmkt-table .username-column{width:auto}}@media (max-width:767px){.hwmkt-table{font-size:8px}.hwmkt-table.dispute-payments{font-size:14px}.hwmkt-table .c1-tr{position:relative}.no-results{font-size:17px}}@media (min-width:767px){.hwmkt-table .dmca-link-column{width:500px}} .cols-wrap .title{font-size:36px;display:block;font-weight:400}.cols-wrap .title a{color:#333}.cols-wrap .title a:focus,.cols-wrap .title a:hover{color:#f99815}@media (max-width:1359px){.cols-wrap .title{font-size:25px}}@media (max-width:767px){.cols-wrap .title{font-size:14px;line-height:1.3}} .email-related-fields{color:red}.email-related-fields .emailRelatedField{color:green} .question-link{white-space:nowrap} .blurred-rating{width:50px;height:15px;overflow:hidden}.blurred-rating img{width:400px;height:120px;display:block;margin-top:-13px}.rating-star{line-height:15px;min-height:16px;padding-bottom:10px;display:flex;position:relative}.rating-column .rating-star{padding-bottom:0}.student-profile-rating .rating-star{display:inline-flex}.published-question .meta-list .rating-star{padding-bottom:0}.rating-star:after{content:”|”;position:static;right:0;top:0;transform:none;width:auto;height:auto;background:none;font-weight:700;margin:0 5px;color:#000;line-height:100%;font-size:15px}.rating-star:last-child:after{display:none}.rating-star>span{color:#b2b2b2;margin-top:1px;min-width:71px}.student-profile-rating .rating-star>span{min-width:50px}.blurred-bid .rating-star>span{color:transparent;text-shadow:0 0 10px rgba(0,0,0,.5)}.rating-span-yellow{color:#ffbf00}.blurred-bid .rating-span-yellow{color:transparent}.rating-span-green{color:#07bb25}@media (max-width:767px){.published-question .rating-star,.student-page .rating-star{margin-right:10px}.published-question .meta-list .rating-star{line-height:18px}.profile-details .review-block .head .rating-star,.rating-star:after{display:none}} .admin-home .container{width:100%!important;max-width:100%!important}.admin-home .container .content-area{max-width:90%!important}.admin-home .container .content-area .admin-home-tables{display:flex;justify-content:space-between}.admin-home .container .content-area .admin-home-tables .admin-table-container{margin-top:25px;width:45%}.content-area{max-width:932px;margin-left:auto;margin-right:auto;padding-bottom:100px}.content-area.style-1{padding-top:34px}@media (max-width:991px){.admin-home .container .content-area{padding-top:0;max-width:100%!important}.admin-home .container .content-area .admin-home-tables .admin-table-container{margin-top:0;width:49.5%}.content-area{padding-bottom:50px}}@media (max-width:767px){.content-area{padding-top:25px;padding-bottom:12px}.content-area.style-1{padding-top:25px;padding-bottom:0}} .grid-header{overflow:visible!important;display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:20px;margin-top:60px}.grid-header.center{justify-content:center} .monitor-item{display:inline-block;margin-left:30px;margin-bottom:30px}.monitor-item>div{height:180px;width:180px;line-height:180px;text-align:center}.monitor-green{background:#90ee90}.monitor-red{background:#e97575}.monitor-orange{background:rgba(255,166,0,.849)}.monitor-item .monitor-btn{width:100%;display:block;height:70%;padding:0;font-weight:400}.monitor-item .monitor-btn>strong{font-size:18px}.monitor-item .monitor-mute-btn{font-size:14px;border-radius:4px;border:1px solid #000;margin:0 auto;display:block}.monitor-item .monitor-mute-btn.gray-btn{background:#d3d3d3}@media (max-width:767px){.monitor-item{margin-left:15px;margin-bottom:15px}.monitor-item>div{height:100px;width:100px;line-height:100px;font-size:11px}.monitor-item .monitor-btn{height:50%}.monitor-item .monitor-mute-btn{font-size:12px;white-space:normal}.monitor-item .monitor-btn>strong{font-size:16px;white-space:normal}} .admin-monitors{margin-top:30px}.admin-monitors .monitors-api-status{text-align:center;font-size:22px;margin-bottom:30px;font-weight:700}.admin-monitors .monitors-api-status .red-font{color:red}.admin-monitors .monitors-api-status .green-font{color:green}.admin-monitors .monitor-content{border:.5px solid #f1f1f1;box-shadow:0 0 10px rgba(0,0,0,.2);margin-bottom:30px}.admin-monitors .monitor-content p{margin:30px;padding:30px}.admin-monitors .monitor-content p.file-content{font-family:Roboto Mono,monospace}.admin-monitors .monitor-content .btn-close{font-size:38px;float:right;color:#333;margin-right:15px}.admin-monitors .monitor-content .btn-close:hover{color:#f99815}.monitors-list{list-style:none;margin:0;padding:0}@media (max-width:767px){.admin-monitors{margin-top:30px}.admin-monitors .monitors-api-status{font-size:18px;margin-bottom:20px}} .main-content-area{position:relative;padding:74px 0 100px}.main-content-area,.main-content-area.style-4.guest-home-teacher-view{padding:50px 0}.main-content-area.style-4{margin-bottom:0;padding:74px 0 106px}.content-area{max-width:932px;margin-left:auto;margin-right:auto;padding:0!important}.main-content-area.style-4 .content-area{background:none;max-width:1441px;margin:0 auto;padding:0 15px}.main-content-area .content-area{background:#fff;max-width:none;position:relative;margin-left:-8px;margin-right:-8px;padding:82px 61px 55px}.root .app-content .content-area{overflow:hidden}.main-content-area.style-4 .content-area.txt-block{text-align:center;color:#fff;font-size:33px;line-height:1.394;font-weight:300;padding-bottom:82px}.main-content-area.style-4 .content-area.txt-block h1{font-weight:400;margin-bottom:72px}.main-content-area.style-4 .content-area.txt-block .holder{text-align:left}.join-verified-teachers{text-align:center;color:#fff;margin-bottom:67px}.join-verified-teachers h2{font-size:42px;font-weight:700;padding:0 15px 112px}.join-verified-teachers .holder{background:hsla(60,11%,98%,.2);padding-top:60px;padding-bottom:80px;position:relative}.join-verified-teachers .btn-join-now{width:249px;height:42px;position:absolute;font-size:30px;line-height:1;font-weight:700;text-align:center;left:50%;transform:translateX(-50%);bottom:100%;text-transform:capitalize;padding-left:1px}.join-verified-teachers .btn-join-now:after,.join-verified-teachers .btn-join-now:before{width:9999px;top:0;content:””;background:hsla(60,11%,98%,.2);position:absolute;right:100%;height:42px}.join-verified-teachers .btn-join-now:after{right:auto;left:100%}.join-verified-teachers .btn-join-now .bg{position:absolute;bottom:0;left:0;right:0;overflow:hidden;height:42px;padding-bottom:8px}.join-verified-teachers .btn-join-now .bg:after{border-radius:30px;position:absolute;bottom:8px;left:9px;right:9px;content:””;height:150px;box-shadow:-100px 37px 0 hsla(0,0%,100%,0),100px 37px 0 hsla(0,0%,100%,0),0 37px 0 hsla(0,0%,100%,0),0 37px 0 80px hsla(0,0%,100%,.2)}.join-verified-teachers .btn-join-now a{display:block;width:222px;height:56px;background:#f6911d;color:#fff;border:3px solid #fff;border-radius:28px;text-align:center;position:relative;z-index:11;margin:-26px auto 0;padding:8px 22px}.join-verified-teachers .btn-join-now a:focus,.join-verified-teachers .btn-join-now a:hover{background:#a36115}@media (min-width:768px){.main-content-area{background:#e6e6e6 url(/assets/images/bg-01.045a0a80fe25d6014a879f16617ad2a5.jpg) no-repeat 50%/cover}.main-content-area.style-4{background-image:url(/assets/images/img01.045a0a80fe25d6014a879f16617ad2a5.jpg)}}@media (max-width:991px){.main-content-area{padding-bottom:30px}.main-content-area,.main-content-area.style-4.guest-home-teacher-view{padding:25px 0}.content-area{padding-bottom:50px}.main-content-area .content-area{margin-left:0;margin-right:0;padding:70px 35px 36px}.main-content-area.style-4 .content-area.txt-block{font-size:25px;padding-bottom:50px}.main-content-area.style-4 .content-area.txt-block h1{margin-bottom:42px}.join-verified-teachers{margin-bottom:40px}.join-verified-teachers h2{font-size:30px;padding-bottom:85px}.join-verified-teachers .holder{padding-top:25px;padding-bottom:40px}}@media (max-width:767px){.main-content-area{padding:26px 0 15px}.main-content-area.style-4{padding:39px 0 85px;background:transparent}.main-content-area.style-4.guest-home-teacher-view{padding:56px 0 25px}.content-area{padding-top:25px;padding-bottom:12px}.main-content-area .content-area{padding:29px 13px 12px}.main-content-area.style-4 .content-area.txt-block{font-size:15px;padding-bottom:25px}.main-content-area.style-4 .content-area.txt-block h1{margin-bottom:15px;color:#f6911d}.main-content-area.style-4 .content-area.txt-block .holder{text-align:center;color:#f6911d;font-size:16px}.join-verified-teachers{padding:17px 0;transform:none;background:#fff;margin-bottom:30px}.join-verified-teachers h2{font-size:18px;padding-bottom:50px}.join-verified-teachers .holder{padding-top:20px;padding-bottom:10px}.join-verified-teachers .btn-join-now{width:156px;height:20px;font-size:15px}.join-verified-teachers .btn-join-now:after,.join-verified-teachers .btn-join-now:before{height:20px}.join-verified-teachers .btn-join-now .bg{height:20px;padding:0}.join-verified-teachers .btn-join-now .bg:after{border-radius:20px;bottom:1px;left:6px;right:6px}.join-verified-teachers .btn-join-now a{text-align:center;height:40px;width:135px;border-width:1px;padding:11px 15px}} .Select{position:relative}.Select,.Select div,.Select input,.Select span{box-sizing:border-box}.Select.is-disabled>.Select-control{background-color:#f9f9f9}.Select.is-disabled>.Select-control:hover{box-shadow:none}.Select.is-disabled .Select-arrow-zone{cursor:default;pointer-events:none;opacity:.35}.Select-control{background-color:#fff;border-color:#d9d9d9 #ccc #b3b3b3;border-radius:4px;border:1px solid #ccc;color:#333;cursor:default;display:table;border-spacing:0;border-collapse:separate;height:36px;outline:none;overflow:hidden;position:relative;width:100%}.Select-control:hover{box-shadow:0 1px 0 rgba(0,0,0,.06)}.Select-control .Select-input:focus{outline:none}.is-searchable.is-open>.Select-control{cursor:text}.is-open>.Select-control{border-bottom-right-radius:0;border-bottom-left-radius:0;background:#fff;border-color:#b3b3b3 #ccc #d9d9d9}.is-open>.Select-control .Select-arrow{top:-2px;border-color:transparent transparent #999;border-width:0 5px 5px}.is-searchable.is-focused:not(.is-open)>.Select-control{cursor:text}.is-focused:not(.is-open)>.Select-control{border-color:#007eff;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 0 3px rgba(0,126,255,.1)}.Select–single>.Select-control .Select-value,.Select-placeholder{bottom:0;color:#aaa;left:0;line-height:34px;padding-left:10px;padding-right:10px;position:absolute;right:0;top:0;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-value.is-pseudo-focused.Select–single>.Select-control .Select-value .Select-value-label,.has-value.Select–single>.Select-control .Select-value .Select-value-label{color:#333}.has-value.is-pseudo-focused.Select–single>.Select-control .Select-value a.Select-value-label,.has-value.Select–single>.Select-control .Select-value a.Select-value-label{cursor:pointer;text-decoration:none}.has-value.is-pseudo-focused.Select–single>.Select-control .Select-value a.Select-value-label:focus,.has-value.is-pseudo-focused.Select–single>.Select-control .Select-value a.Select-value-label:hover,.has-value.Select–single>.Select-control .Select-value a.Select-value-label:focus,.has-value.Select–single>.Select-control .Select-value a.Select-value-label:hover{color:#007eff;outline:none;text-decoration:underline}.Select-input{height:34px;padding-left:10px;padding-right:10px;vertical-align:middle}.Select-input>input{width:100%;background:none transparent;border:0 none;box-shadow:none;cursor:default;display:inline-block;font-family:inherit;font-size:inherit;margin:0;outline:none;line-height:14px;padding:8px 0 12px;-webkit-appearance:none}.is-focused .Select-input>input{cursor:text}.has-value.is-pseudo-focused .Select-input{opacity:0}.Select-control:not(.is-searchable)>.Select-input{outline:none}.Select-loading-zone{cursor:pointer;display:table-cell;text-align:center}.Select-loading,.Select-loading-zone{position:relative;vertical-align:middle;width:16px}.Select-loading{-webkit-animation:Select-animation-spin .4s infinite linear;animation:Select-animation-spin .4s infinite linear;height:16px;box-sizing:border-box;border-radius:50%;border:2px solid #ccc;border-right-color:#333;display:inline-block}.Select-clear-zone{-webkit-animation:Select-animation-fadeIn .2s;animation:Select-animation-fadeIn .2s;color:#999;cursor:pointer;display:table-cell;position:relative;text-align:center;vertical-align:middle;width:17px}.Select-clear-zone:hover{color:#d0021b}.Select-clear{display:inline-block;font-size:18px;line-height:1}.Select–multi .Select-clear-zone{width:17px}.Select-arrow-zone{cursor:pointer;display:table-cell;position:relative;text-align:center;vertical-align:middle;width:25px;padding-right:5px}.Select-arrow{border-color:#999 transparent transparent;border-style:solid;border-width:5px 5px 2.5px;display:inline-block;height:0;width:0;position:relative}.is-open .Select-arrow,.Select-arrow-zone:hover>.Select-arrow{border-top-color:#666}.Select–multi .Select-multi-value-wrapper{display:inline-block}.Select .Select-aria-only{display:inline-block;height:1px;width:1px;margin:-1px;clip:rect(0,0,0,0);overflow:hidden;float:left}@-webkit-keyframes Select-animation-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes Select-animation-fadeIn{0%{opacity:0}to{opacity:1}}.Select-menu-outer{border-bottom-right-radius:4px;border-bottom-left-radius:4px;background-color:#fff;border:1px solid #ccc;border-top-color:#e6e6e6;box-shadow:0 1px 0 rgba(0,0,0,.06);box-sizing:border-box;margin-top:-1px;max-height:200px;position:absolute;top:100%;width:100%;z-index:1;-webkit-overflow-scrolling:touch}.Select-menu{max-height:198px;overflow-y:auto}.Select-option{box-sizing:border-box;background-color:#fff;color:#666;cursor:pointer;display:block;padding:8px 10px}.Select-option:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.Select-option.is-selected{background-color:#f5faff;background-color:rgba(0,126,255,.04);color:#333}.Select-option.is-focused{background-color:#ebf5ff;background-color:rgba(0,126,255,.08);color:#333}.Select-option.is-disabled{color:#ccc;cursor:default}.Select-noresults{box-sizing:border-box;color:#999;cursor:default;display:block;padding:8px 10px}.Select–multi .Select-input{vertical-align:middle;margin-left:10px;padding:0}.Select–multi.has-value .Select-input{margin-left:5px}.Select–multi .Select-value{background-color:#ebf5ff;background-color:rgba(0,126,255,.08);border-radius:2px;border:1px solid #c2e0ff;border:1px solid rgba(0,126,255,.24);color:#007eff;display:inline-block;font-size:.9em;line-height:1.4;margin-left:5px;margin-top:5px;vertical-align:top}.Select–multi .Select-value-icon,.Select–multi .Select-value-label{display:inline-block;vertical-align:middle}.Select–multi .Select-value-label{border-bottom-right-radius:2px;border-top-right-radius:2px;cursor:default;padding:2px 5px}.Select–multi a.Select-value-label{color:#007eff;cursor:pointer;text-decoration:none}.Select–multi a.Select-value-label:hover{text-decoration:underline}.Select–multi .Select-value-icon{cursor:pointer;border-bottom-left-radius:2px;border-top-left-radius:2px;border-right:1px solid #c2e0ff;border-right:1px solid rgba(0,126,255,.24);padding:1px 5px 3px}.Select–multi .Select-value-icon:focus,.Select–multi .Select-value-icon:hover{background-color:#d8eafd;background-color:rgba(0,113,230,.08);color:#0071e6}.Select–multi .Select-value-icon:active{background-color:#c2e0ff;background-color:rgba(0,126,255,.24)}.Select–multi.is-disabled .Select-value{background-color:#fcfcfc;border:1px solid #e3e3e3;color:#333}.Select–multi.is-disabled .Select-value-icon{cursor:not-allowed;border-right:1px solid #e3e3e3}.Select–multi.is-disabled .Select-value-icon:active,.Select–multi.is-disabled .Select-value-icon:focus,.Select–multi.is-disabled .Select-value-icon:hover{background-color:#fcfcfc}@keyframes Select-animation-spin{to{transform:rotate(1turn)}}@-webkit-keyframes Select-animation-spin{to{-webkit-transform:rotate(1turn)}} .Select{outline:none;font-size:15px}.Select .select-area .select-drop{display:block}.select-drop ul{margin:0;padding:0;list-style:none}.Select .Select-menu-outer{outline:none!important;z-index:999!important}.Select .Select-menu-outer .bold-font{font-weight:700}.Select .Select-control{background-color:inherit!important;border-radius:inherit!important;border:inherit!important;color:inherit!important;cursor:inherit!important;border-spacing:inherit!important;border-collapse:inherit!important;overflow:inherit!important;display:table!important;height:36px!important;position:relative!important;width:100%!important;outline:none!important;box-shadow:none!important;border-color:inherit!important}.form-group .form-control .Select-control{border:transparent!important;background-color:transparent!important}.form-group .form-control .Select-control input{text-overflow:ellipsis!important;white-space:nowrap!important;max-width:220px!important;overflow:hidden!important}.form-group .Select-arrow-zone,.form-group .Select-clear{display:none!important}.Select .Select-control .Select-input{outline:none!important;padding:0}.Select .Select-control .Select-placeholder,.Select .Select-control .Select-value{outline:none!important;padding:0 5px!important}.Select .Select-control .Select-input,.Select .Select-control .Select-placeholder,.Select .Select-control .Select-value{outline:none!important;padding:0 3px}.published-question .edit-form .select-wrap .select{height:inherit!important;padding:0}.Select.is-disabled{background:#ebebeb}.field-of-study-filter{text-align:left;position:absolute!important;z-index:5;min-width:260px;max-width:300px;height:auto;right:0;border:1px solid #ddd;padding:0;margin:0}@media (max-width:767px){.Select .Select-menu-outer{font-size:14px}.Select .Select-control .Select-input>input{padding:0!important}.Select .Select-control .Select-input,.Select .Select-control .Select-placeholder,.Select .Select-control .Select-value{padding:0 3px}}@media (max-width:374px){.Select .Select-control .Select-placeholder{font-size:14px}} .hwmkt-rte.RichTextEditor__root___2QXK-{font-family:inherit}.RichTextEditor__root___2QXK- .public-DraftEditor-content{margin-top:0!important;margin-left:5px!important;height:200px;word-wrap:normal!important}.RichTextEditor__root___2QXK- .public-DraftEditor-content li{display:inherit!important}.public-DraftEditorPlaceholder-root{color:#989898;font-family:Lato;font-size:22px;font-style:italic}.RichTextEditor__root___2QXK- .public-DraftEditor-content .RichTextEditor__editor___1QqIU,.RichTextEditor__root___2QXK- .public-DraftEditor-content .RichTextEditor__paragraph___3NTf9{font-size:24px!important;line-height:1.2!important;color:#333!important;margin:0!important}.ButtonWrap__root___1EO_R,.ButtonWrap__root___1EO_R button{background:transparent;border:none}.ButtonWrap__root___1EO_R button{border-radius:5px!important;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;margin:0 7px}.ButtonWrap__root___1EO_R button.IconButton__isActive___2Ey8p{background:rgba(246,145,29,.7)}.ButtonWrap__root___1EO_R button:focus,.ButtonWrap__root___1EO_R button:hover{background:rgba(246,145,29,.5)}.ButtonWrap__root___1EO_R button span{height:23px}@media (max-width:1096px){.RichTextEditor__root___2QXK- .public-DraftEditor-content .RichTextEditor__editor___1QqIU,.RichTextEditor__root___2QXK- .public-DraftEditor-content .RichTextEditor__paragraph___3NTf9{font-size:20px!important}}@media (max-width:767px){.add-question-wizard .DraftEditor-editorContainer,.ButtonWrap__root___1EO_R{z-index:0!important}.RichTextEditor__root___2QXK- .EditorToolbar__root___3_Aqz{display:none}.RichTextEditor__root___2QXK- .EditorToolbar__root___3_Aqz .ButtonGroup__root___3lEAn{margin:0 5px 0 0}.RichTextEditor__root___2QXK- .EditorToolbar__root___3_Aqz .ButtonGroup__root___3lEAn .ButtonWrap__root___1EO_R button{margin:0}.RichTextEditor__root___2QXK- .EditorToolbar__root___3_Aqz .ButtonGroup__root___3lEAn .ButtonWrap__root___1EO_R .Button__root___1gz0c{height:24px;line-height:10px;padding:5px 5px 0 0}.RichTextEditor__root___2QXK- .EditorToolbar__root___3_Aqz .ButtonGroup__root___3lEAn .ButtonWrap__root___1EO_R .IconButton__icon-redo___30MVz,.RichTextEditor__root___2QXK- .EditorToolbar__root___3_Aqz .ButtonGroup__root___3lEAn .ButtonWrap__root___1EO_R .IconButton__icon-undo___EQSRP,.RichTextEditor__root___2QXK- .EditorToolbar__root___3_Aqz .ButtonGroup__root___3lEAn .ButtonWrap__root___1EO_R .IconButton__icon___3YgOS{background-size:13px}.RichTextEditor__root___2QXK- .public-DraftEditor-content .RichTextEditor__editor___1QqIU,.RichTextEditor__root___2QXK- .public-DraftEditor-content .RichTextEditor__paragraph___3NTf9{font-size:13px!important}.public-DraftEditorPlaceholder-root{font-size:16px}.hwmkt-rte.RichTextEditor__root___2QXK-{border:0;border-bottom:2px solid #f7921e}.hwmkt-rte.RichTextEditor__root___2QXK- .public-DraftEditor-content{height:auto;margin-left:0}.hwmkt-rte .RichTextEditor__editor___1QqIU .public-DraftEditorPlaceholder-root{padding:9px 2px}.hwmkt-rte.RichTextEditor__root___2QXK- .public-DraftEditor-content .RichTextEditor__editor___1QqIU,.hwmkt-rte.RichTextEditor__root___2QXK- .public-DraftEditor-content .RichTextEditor__paragraph___3NTf9{font-size:16px}.hwmkt-rte .RichTextEditor__editor___1QqIU .public-DraftEditor-content{padding:9px 0}} .SingleDatePicker__picker{top:calc(100% + 5px)!important}.SingleDatePicker{position:static!important;font-size:medium;vertical-align:sub;width:100%}.SingleDatePicker .SingleDatePickerInput{background:transparent;border:none;line-height:1}.SingleDatePicker .SingleDatePickerInput .DateInput{line-height:1;padding:0}.SingleDatePicker .SingleDatePickerInput .DateInput .DateInput__display-text{transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;background:transparent;padding:0;line-height:1}.SingleDatePicker .SingleDatePickerInput .DateInput .DateInput__display-text.DateInput__display-text–focused{color:#f7921e}.DayPickerKeyboardShortcuts__show–bottom-right{border-right:33px solid orange!important}.CalendarDay.CalendarDay–selected,.CalendarDay.CalendarDay–selected-span{border:2px solid #fff!important;background:orange!important}.CalendarDay.CalendarDay–after-hovered-start,.CalendarDay.CalendarDay–hovered-span{border:2px solid #fff!important;background:rgba(246,145,29,.2)!important;color:#000!important}.CalendarDay.CalendarDay–selected-end,.CalendarDay.CalendarDay–selected-start{border:2px solid #fff!important;background:#ff8c00!important}.DateInput{width:100%!important;padding:0!important}.DateInput–with-caret:after,.DateInput–with-caret:before{display:none!important}@media (max-width:767px){.SingleDatePicker .SingleDatePickerInput .DateInput{margin-bottom:5px;font-size:16px}.SingleDatePicker{vertical-align:initial}} .search-form{overflow:hidden;max-width:930px;margin:0 auto 32px}.search-form button{position:absolute;right:0;top:0;background:none;border:none;color:#f7921e;font-size:50px;line-height:1;width:84px;height:80px;text-align:center;padding:0}.search-form button:focus,.search-form button:hover{background:#f6911d;color:#fff}.search-form button .fa{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.search-form.style-1{max-width:none;margin-bottom:25px}@media (max-width:767px){.search-form button{font-size:16px;width:30px;height:28px}.homework-answers .search-form button{width:25px;height:25px}.homework-answers .search-form button .fa{top:17px;left:5px}.search-form.style-1{margin-bottom:10px}.homework-answers .search-form.style-1{box-shadow:0 0 5px rgba(0,0,0,.2)}} .box1-wrap{padding-bottom:110px;overflow:visible}.budget-form{color:#515151;background:#fff;padding:13px 0 41px}.budget-form.teacher-search-form{overflow:hidden}.budget-form label{font-weight:400;margin:0}.budget-form .fa-search{border:none;background:none;color:#bababa;font-size:22px;line-height:1;margin-top:4px;position:absolute;right:14px;top:50%;transform:translateY(-50%);padding:0}.budget-form select{text-overflow:ellipsis;white-space:nowrap;max-width:100%;overflow:hidden}.budget-form .wrap{margin-bottom:44px}.budget-form .wrap:after,.budget-form .wrap:before{content:” “;display:table}.budget-form .wrap:after{clear:both}.budget-form .col{width:33.333%;float:left;padding:0 13px}.publish-form .wrap .col.date-picker{padding-top:16px}.budget-form .search-wrap .col:hover{border-left:1px solid #fff}.budget-form .search-wrap .col:hover .fa-search{color:#fff}.budget-form .title{display:block;font-size:24px;text-transform:uppercase;padding:0 13px 23px}.budget-form .submit-hold{position:absolute;font-size:60px;line-height:52px;font-weight:700;text-align:center;padding-top:16px;left:50%;transform:translateX(-50%);top:100%;width:104px;height:53px}.budget-form .submit-hold:after,.budget-form .submit-hold:before{width:9999px;top:0;content:””;background:rgba(246,145,29,.2);position:absolute;right:100%;height:53px}.budget-form .submit-hold:after{right:auto;left:100%}.budget-form .submit-hold .shadow{position:absolute;top:0;left:0;right:0;overflow:hidden;height:53px}.budget-form .submit-hold .shadow:after{border-radius:53px;position:absolute;top:0;left:0;right:0;content:””;height:150px;box-shadow:-120px 37px 0 rgba(246,145,29,.2),120px 37px 0 rgba(246,145,29,.2),0 0 10px hsla(0,0%,100%,0),0 37px 0 80px rgba(246,145,29,.2)}.budget-form .wrap .col,.budget-form .wrap .col.date-picker,.publish-form .wrap .col{padding-top:37px}@media (max-width:767px){.box1-wrap{padding-bottom:45px;margin:0 -3px}.budget-form{padding-top:0;padding-bottom:14px}.budget-form.teacher-search-form .fa-search{font-size:22px;right:5px;top:12px}.budget-form .wrap{margin-bottom:3px;padding:0}.budget-form .col{padding:0 5px}.budget-form.teacher-search-form .col{width:50%;margin:10px 0}.publish-form .wrap .col.date-picker{padding:4px 0 0}.budget-form .title{font-size:10px;padding:0 8px 6px}.teacher-home .budget-form .title{font-size:14px}.budget-form .submit-hold{width:40px;height:19px;font-size:26px;line-height:26px;padding:4px 0 0}.budget-form .submit-hold:after,.budget-form .submit-hold:before{height:19px}.teacher-home .budget-form .submit-hold:after,.teacher-home .budget-form .submit-hold:before{display:none}.budget-form .wrap .col,.budget-form .wrap .col.date-picker,.publish-form .wrap .col{padding-top:20px;width:50%}.teacher-home .budget-form .submit-hold .shadow:after{display:none}} .break-words{word-break:break-word} .items-list .header-part .header-rt .dt{float:left;margin-right:5px}.items-list .header-part .header-rt .dd{overflow:hidden}@media (max-width:767px){.items-list .header-part .header-rt .dt{margin-right:3px}.homework-answers .items-list .dt.text-muted,.teacher-home .items-list .dt.text-muted{color:#262626;font-size:16px;font-weight:300}.homework-answers .items-list .dd,.teacher-home .items-list .dd{color:#f6911d;font-size:16px;font-weight:700}.homework-answers .items-list .col,.teacher-home .items-list .col{padding:0 10px 10px}} .items-list .header-part:after{content:””;display:block;clear:both}.items-list .header-part{padding-bottom:16px}.items-list .header-part h3{float:left;text-transform:capitalize;font-size:23px;font-weight:700;max-width:65%;margin-bottom:0}.items-list .header-part h3 a{color:#383838}.items-list .header-part h3 a:focus,.items-list .header-part h3 a:hover{color:#f6972b}.items-list .header-part .header-rt{float:right;max-width:35%;font-size:0;line-height:0;text-align:right}.items-list .header-part .header-rt .col{display:inline-block;vertical-align:top;font-size:18px;line-height:1.3;letter-spacing:0}.items-list .header-part .header-rt .col+.col{margin-left:15px}.items-list li .header-part h3{max-width:85%}.text-large{font-size:30px}.items-list .content-part{overflow:hidden}.items-list .content-part .text-wrap{padding-right:32px;overflow:hidden}.items-list .content-part p{margin-bottom:5px}@media (max-width:767px){.items-list .header-part h3{max-width:53%;font-size:13px;line-height:1.2}.homework-answers .items-list .header-part h3 a,.teacher-home .items-list .header-part h3 a{color:#373737;font-size:16px}.items-list .header-part .header-rt{max-width:47%}.items-list .header-part .header-rt .col{font-size:11px}.homework-answers .items-list .header-part .header-rt .col,.teacher-home .items-list .header-part .header-rt .col{padding:0}.items-list .header-part .header-rt .col+.col{margin-left:6px}.question-search-results .items-list li .header-part{padding-bottom:0}.homework-answers .question-search-results .items-list li .header-part,.teacher-home .question-search-results .items-list li .header-part{padding-bottom:10px;margin:0 10px;padding-top:10px}.question-search-results .items-list li .header-part .text-large{font-size:18px}.homework-answers .question-search-results .items-list li .header-part .text-large,.teacher-home .question-search-results .items-list li .header-part .text-large{font-size:16px;color:#f6911d}.items-list .content-part .text-wrap{padding-right:10px}.homework-answers .items-list .content-part .text-wrap,.teacher-home .items-list .content-part .text-wrap{color:#262626;font-size:14px;font-weight:300;padding:0 10px}.question-search-results .items-list li .content-part hr{margin-top:10px;margin-bottom:10px}.homework-answers .question-search-results .items-list li .content-part hr,.teacher-home .question-search-results .items-list li .content-part hr{margin-top:0;border-top-width:1px;border-top-color:#eee}} .section{background:#fff;padding-top:57px}.section h2{font-size:24px;font-weight:700;color:#f6972b;text-transform:capitalize;margin:0 0 31px 30px}.question-search-results{position:relative;height:auto;width:100%;min-height:200px;margin:auto}.items-list{list-style:none;margin:0;padding:0}.items-list li{background:#f0f0f0;color:#383838;font-size:20px;padding:11px 30px 7px}.items-list li:nth-child(2n){background:none}.items-list li hr{border-top:2px solid #eee}.items-list li:nth-child(odd) hr{border-top:2px solid #fff}.no-results{vertical-align:middle;width:100%;text-align:center;font-weight:300;margin-top:30px;font-size:30px;color:#888}@media (max-width:991px){.section{padding-top:35px}.section h2{margin-bottom:17px}.no-results{font-size:24px;margin-top:20px}}@media (max-width:767px){.section{margin:0 -10px;padding:10px 8px}.section h2{font-size:15px;margin:0 0 7px}.question-search-results{padding:10px 0;margin:auto}.homework-answers .question-search-results,.teacher-home .question-search-results{background:transparent}.question-search-results.section h2{margin:15px;font-size:15px}.items-list li{font-size:11px;padding:5px}.question-search-results .items-list li{font-size:11px;padding:10px}.homework-answers .question-search-results .items-list li,.teacher-home .question-search-results .items-list li{background:#fff;margin:20px 0;padding:0;border-radius:1px;box-shadow:0 3px 5px rgba(0,0,0,.04)}.no-results{font-size:17px}} .main-content-area.style-2 .content-area .content-area-holder{overflow:hidden;background:#fff;padding:22px 23px}.main-content-area.style-3 .content-area .content-area-holder{background:none!important;padding:0!important}.main-content-area.style-2 .content-area .col-rt{width:110px;float:right;margin-left:20px}.btn-white{display:block;background:#fff;color:#333;min-width:110px;height:79px;font-weight:700;white-space:nowrap;text-align:center;padding:3px 10px}.btn-white:focus,.btn-white:hover{color:#fff;background:#f99815}.btn-white:focus .fa,.btn-white:hover .fa{color:#fff}.btn-white:after{content:””;display:inline-block;vertical-align:middle;width:0;min-height:100%}.btn-white.style-1{min-width:0;width:100%;height:auto}.btn-white.style-1 .fa{font-size:73px}@media (max-width:991px){.main-content-area.style-2 .content-area .col-rt{width:80px;margin-left:15px}.btn-white.style-1 .fa{font-size:60px}}@media (max-width:767px){.main-content-area.style-2 .content-area .content-area-holder{overflow:visible;padding:10px}.main-content-area.style-3 .content-area .content-area-holder{padding:0}.main-content-area.style-2 .content-area .col-rt{float:none;width:100%;margin:0 0 22px}.btn-white{height:auto;background:hsla(0,0%,100%,.82)}.btn-white.style-1{width:55%;position:relative;height:28px;padding:6px 29px 6px 10px}.btn-white.style-1 .fa{font-size:24px;position:absolute;top:50%;right:5px;transform:translateY(-50%)}} .activities-list .activity-info-row{background:#e4e4e4;color:#333;padding:14px 15px;display:table;width:100%;table-layout:fixed}@media (max-width:767px){.activities-list .activity-info-row{padding:7px}} .activities-list .activity{background:#fff;padding:12px 16px}.activities-list .activity,.activities-list .by{display:table-cell;vertical-align:middle;font-size:20px}.activities-list .by{width:172px;min-width:172px;line-height:1.1;text-align:center;padding-right:19px;margin:-7px 0}.activities-list .by strong{display:block;text-transform:capitalize}.activities-list .by small{color:#424242;text-align:center;font-size:90%;display:block}.activity-info-row .by strong{text-overflow:ellipsis;overflow:hidden}@media (max-width:991px){.activities-list .activity{font-size:17px;line-height:1.2}.activities-list .by{font-size:17px;padding-right:10px;width:140px;min-width:140px}}@media (max-width:767px){.activities-list .activity{font-size:13px;padding:7px}.activities-list .by{font-size:13px;width:100px;min-width:100px;margin:-4px 0}.teacher-activities .activities-list li .by{font-size:11px}} .main-content-area.style-2 .content-area .content-area-holder{overflow:hidden;background:#fff;padding:22px 23px}.main-content-area.style-2 .content-area .content-area-holder.scrollable{max-height:1079px;overflow:auto}.teacher-activities{max-height:100%!important}.teacher-activities .activities-header{display:flex}.teacher-activities .activities-header h1{padding-bottom:0!important;margin-bottom:0!important;border-bottom:none!important}.online-block{max-width:930px;margin:0 auto 38px}.online-block .online{display:block;font-size:18px;font-weight:700;color:#fff;position:relative;padding-left:32px;text-transform:lowercase;margin-bottom:13px}.online-block .online:before{width:20px;height:20px;background:#77c80f;border:2px solid #fff;border-radius:100%;position:absolute;top:50%;left:0;transform:translateY(-50%);content:””}.teacher-activities .activities-header .online{margin-bottom:0;color:inherit}.activities-list{list-style:none;margin:0;padding:0}.activities-list li{margin-bottom:21px}.teacher-activities .activities-list{max-height:650px;overflow-y:auto}.admin-info-header .table-layout [class^=col-].col-rt{width:188px;min-width:188px}.main-content-area.style-2 .content-area .col-rt{width:110px;float:right;margin-left:20px}.student-page .header .col-rt{max-width:40%}.btn-white{display:block;background:#fff;color:#333;min-width:110px;height:79px;font-weight:700;white-space:nowrap;text-align:center;padding:3px 10px}.btn-white:focus,.btn-white:hover{color:#fff;background:#f99815}.btn-white:focus .fa,.btn-white:hover .fa{color:#fff}.btn-white:after{content:””;width:0;min-height:100%}.btn-white .fa,.btn-white:after{display:inline-block;vertical-align:middle}.btn-white .fa{font-size:53px;color:#f99815}.btn-white.style-1{min-width:0;width:100%;height:auto}.btn-white.style-1 .fa{font-size:73px}@media (max-width:1559px){.student-page .header .col-rt{max-width:none}}@media (max-width:1096px){.student-page .header .col-rt{min-width:340px}}@media (max-width:991px){.admin-info-header .table-layout [class^=col-].col-rt{width:165px;min-width:165px}.main-content-area.style-2 .content-area .col-rt{width:80px;margin-left:15px}.btn-white.style-1 .fa{font-size:60px}}@media (max-width:767px){.main-content-area.style-2 .content-area .content-area-holder{overflow:visible;padding:10px}.main-content-area.style-2 .content-area .content-area-holder.scrollable{max-height:387px}.teacher-activities hr{margin-top:5px;margin-bottom:5px}.online-block{margin-bottom:26px}.online-block .online{font-size:11px;padding-left:15px;margin-bottom:2px}.online-block .online:before{width:10px;height:10px;border-width:1px}.activity-bar .online{margin-bottom:4px}.teacher-activities .activities-list li{margin-bottom:10px}.admin-info-header .table-layout [class^=col-].col-rt{width:100%;min-width:100%;display:block}.main-content-area.style-2 .content-area .col-rt{float:none;width:100%;margin:0 0 22px}.student-page .header .col-rt{min-width:100px}.btn-white{height:auto;background:hsla(0,0%,100%,.82)}.btn-white.style-1{width:55%;position:relative;height:28px;padding:6px 29px 6px 10px}.teacher-home .btn-white.style-1{background:transparent;padding:6px 35px 6px 0;font-size:16px}.btn-white.style-1 .fa{font-size:24px;position:absolute;top:50%;right:5px;transform:translateY(-50%)}.teacher-home .btn-white.style-1 .fa{right:15px}.teacher-home .btn-white:focus,.teacher-home .btn-white:focus .fa,.teacher-home .btn-white:hover,.teacher-home .btn-white:hover .fa{color:#f99815}} .main-content-area{position:relative;padding:50px 0}.content-area{max-width:932px;margin-left:auto;margin-right:auto;padding:0!important}.main-content-area.style-2 .content-area{background:none;margin-left:-10px;margin-right:-10px;padding:0}.main-content-area.style-2 .content-area h1{font-size:35px;font-weight:700;color:#333;text-transform:capitalize;padding-bottom:8px;margin-bottom:27px;border-bottom:1px solid #cbc9c9}.main-content-area.style-2 .content-area h1 .fa{display:inline-block;vertical-align:middle;color:#f99815;font-size:67px;margin-right:14px;position:relative;top:-8px}.main-content-area .content-area{background:#fff;max-width:none;position:relative;margin-left:-8px;margin-right:-8px;padding:82px 61px 55px}.root .app-content .content-area{overflow:hidden}@media (min-width:768px){.main-content-area{background:#e6e6e6 url(/assets/images/bg-01.045a0a80fe25d6014a879f16617ad2a5.jpg) no-repeat 50%/cover}.main-content-area.style-2{background-image:url(/assets/images/img01.045a0a80fe25d6014a879f16617ad2a5.jpg)}}@media (max-width:991px){.main-content-area{padding:25px 0}.content-area{padding-bottom:50px}.main-content-area.style-2 .content-area h1{font-size:30px}.main-content-area.style-2 .content-area h1 .fa{font-size:60px;top:-6px}.main-content-area .content-area{margin-left:0;margin-right:0;padding:70px 35px 36px}}@media (max-width:767px){.main-content-area.style-2{background:#f7f6f2}.main-content-area{padding:26px 0 15px}.content-area{padding-top:25px;padding-bottom:12px}.main-content-area.style-2 .content-area{margin-left:0;margin-right:0}.main-content-area.style-2 .content-area h1{font-size:18px;padding-bottom:3px;margin-bottom:10px}.main-content-area.style-2 .content-area h1 .fa{font-size:31px;top:-5px;margin-right:5px}.main-content-area .content-area{padding:29px 13px 12px}}  .dropzone .title{display:block;font-size:30px;font-style:italic;color:#fff;font-weight:400;margin-bottom:6px}.dropzone.white-background .title{color:#f7921e}@media (max-width:767px){.dropzone .title,.published-question .head .dropzone .title{display:none}} .disabled-link{cursor:not-allowed!important} .attachment{text-align:center}.attachment .attachment-image{display:inline-block!important;width:45px;height:60px}.attachment .attachment-name{overflow:hidden;color:#fff;text-overflow:ellipsis;white-space:nowrap;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease}.attachment .attachment-name:hover{color:#f7921e!important}.attachment-list .attachment-wrap .attachment{width:150px;padding-right:12px}.attachment-list .attachment-wrap .attachment .attachment-image{width:20px;height:30px;float:left}.attachment-list .attachment-wrap .attachment .attachment-name{color:silver;padding-left:3px;text-align:left;padding-top:10px;font-size:16px;line-height:20px}.dropzone.white-background .attachment-name{color:silver}@media (max-width:767px){.top-section.home .attachment .attachment-name{margin-top:5px;font-size:12px;color:#000}.attachment-list .attachment-wrap .attachment{width:130px}.published-question .attachment-list .attachment-wrap .attachment,.student-page .answer-block .attachment-list .attachment-wrap .attachment{width:140px}.student-page .answer-block .attachment-list .attachment-wrap:nth-child(2n) .attachment{padding-right:0}.attachment-list .attachment-wrap .attachment .attachment-image{width:10px;height:15px;opacity:.7}.attachment-list .attachment-wrap .attachment .attachment-name{padding-top:3px;font-size:14px;line-height:13px;color:#9c9797}.educational-certificate-form .attachment .attachment-name,.government-id-form .attachment .attachment-name,.question-form .attachment .attachment-name{color:#000;font-size:14px;margin-top:5px}.educational-certificate-form .attachment .attachment-name,.government-id-form .attachment .attachment-name{overflow:initial}}@media (max-width:639px){.dropzone .dropzone-files .dropzone-file .attachment-image{width:20px;height:28px}} .dropzone .dropzone-files .dropzone-file .file-status{margin-top:2px}.dropzone .dropzone-files .dropzone-file .file-status .rc-progress-line{max-height:10px}.dropzone .dropzone-files .dropzone-file .file-status .fa-check{color:#5cb85c}.dropzone .dropzone-files .dropzone-file .file-status .fa-refresh{color:#f7921e;cursor:pointer}.dropzone .dropzone-files .dropzone-file .file-status .fa-refresh:hover{color:#cd5c5c} .dropzone .dropzone-files .dropzone-file{text-align:center;display:inline-flex;flex-direction:column;position:relative;list-style:none;width:150px;margin:20px 20px 0 0;padding:20px 0 0}.dropzone .dropzone-files .dropzone-file .fa{font-size:20px;transition:background .3s ease,opacity .3s ease,color .3s ease,color .3s ease;font-weight:700}.dropzone .dropzone-files .dropzone-file .remove-file-btn{position:absolute;top:0;right:18px;color:#f7921e;cursor:pointer}.dropzone .dropzone-files .dropzone-file .remove-file-btn:hover{color:#cd5c5c}@media (max-width:639px){.dropzone .dropzone-files .dropzone-file{width:75px;font-size:8px;margin:10px 15px 0 0;padding:10px 0 0}.dropzone .dropzone-files .dropzone-file .fa{font-size:10px}} .dropzone{border:3px dotted #fff;text-align:center;margin:0 14px;padding:16px 16px 26px}.dropzone.white-background{border:3px dotted silver}.dropzone-background{background:#ffd983}.dropzone .dropzone-files{text-align:left;margin:0;padding:0}.list-items-transition-enter{opacity:.01}.list-items-transition-enter.list-items-transition-enter-active{opacity:1;transition:opacity .2s ease-in}.list-items-transition-leave{opacity:1}.list-items-transition-leave.list-items-transition-leave-active{opacity:.1;transition:opacity .2s ease-in}@media (max-width:767px){.educational-certificate-form .dropzone .dropzone-files,.government-id-form .dropzone .dropzone-files{text-align:center}.dropzone,.dropzone.white-background{border:0}.dropzone-background{background:transparent}}@media (max-width:639px){.dropzone{padding:6px 16px 3px}} .question-form input[type=file]{position:absolute;right:0;top:0;left:0;bottom:0;opacity:0}.question-form input[type=file] [disabled]{cursor:not-allowed;opacity:.8}.question-form .question{background:#fff;margin-bottom:13px;padding:16px 18px}.question-form .question label{font-size:30px;color:#333;text-transform:capitalize;font-weight:400;float:left;max-width:300px;margin:17px 0 0}.question-form .title-field{height:44px;border:none;border-bottom:1px solid #f7921e;box-shadow:none;font-size:24px;font-style:italic;color:#454545;background:transparent;padding:6px 0 5px}.question-form .title-field:focus{border-color:#000}.question-form .title-field::-webkit-input-placeholder{color:#989898}.question-form .title-field:-ms-input-placeholder{color:#989898}.question-form .title-field::placeholder{color:#989898}.fixed-size-rte{height:260px}@media (max-width:1096px){.question-form .title-field{font-size:22px}}@media (max-width:767px){.question-form .question{border-radius:1px;box-shadow:0 3px 5px rgba(0,0,0,.04);padding:16px 20px}.ticket-wizard .question-form .question{background:transparent;box-shadow:none}.mobile-add-files{padding:20px 25px 0}.mobile-add-files button{border-radius:2px;box-shadow:0 0 5px rgba(0,0,0,.12);width:120px;height:42px;margin:10px;background:#fff;border:0}.question-form .title-field{width:100%;font-size:16px;height:30px;padding:0;border-bottom-width:2px}.ticket-wizard .question-form .title-field{height:22px;padding:0 0 5px}} .react-tagsinput{background-color:#fff;border:1px solid #ccc;overflow:hidden;padding-left:5px;padding-top:5px}.react-tagsinput–focused{border-color:#a5d24a}.react-tagsinput-tag{background-color:#cde69c;border-radius:2px;border:1px solid #a5d24a;color:#638421;display:inline-block;font-family:sans-serif;font-size:13px;font-weight:400;margin-bottom:5px;margin-right:5px;padding:5px}.react-tagsinput-remove{cursor:pointer;font-weight:700}.react-tagsinput-tag a:before{content:” D7″}.react-tagsinput-input{background:transparent;border:0;color:#777;font-family:sans-serif;font-size:13px;font-weight:400;margin-bottom:6px;margin-top:1px;outline:none;padding:5px;width:80px} .budget-form .search-wrap{background:#fff;margin-bottom:0}.advancedsearch .search-wrap,.publish-form .search-wrap,.search-teacher-form .search-wrap{margin-bottom:40px;background:#eee;padding-left:7px}.publish-form .search-wrap{background:#e7e7e7}.tutorial-page .publish-form .top-inputs .search-wrap{background:transparent;margin-bottom:0}.tutorial-page .publish-form .top-inputs .search-wrap:after,.tutorial-page .publish-form .top-inputs .search-wrap:before{display:none}.budget-form .wrap{margin-bottom:44px}.publish-form .wrap{margin-bottom:44px;padding:0 7px}.tutorial-page .publish-form .top-inputs .wrap{margin-bottom:0}.budget-form .col,.publish-form .col{width:33.333%;float:left;padding:0 13px}.publish-form .col{position:relative}.tutorial-page .publish-form .top-inputs .col{display:inline-block;padding-top:0;float:none;margin:10px 0}.budget-form .fa-search{border:none;background:none;color:#bababa;font-size:22px;line-height:1;margin-top:4px;position:absolute;right:14px;top:50%;transform:translateY(-50%);padding:0}.add-question-wizard .budget-form .fa-search{top:22px}.publish-form .search-wrap .fa-search{border:none;background:none;color:#bababa;font-size:20px;line-height:1;margin-top:4px;position:absolute;right:14px;top:50%;transform:translateY(-50%);padding:0}.publish-form .search-wrap .col.add .fa-search{color:#373737}.published-question .edit-form .optional-fields{padding-top:22px;color:#f99815}.budget-form .optional-fields>strong{color:#f99815}.budget-form .search-wrap .col.optional-field{background:#e1e1e1}.budget-form .search-wrap .col:hover .form-control{border-bottom:1px solid #cacaca}.published-question .edit-form .optional-field{background:#e1e1e1;padding:13px!important}.budget-form .search-wrap:after,.budget-form .search-wrap:before,.budget-form .wrap:after,.budget-form .wrap:before,.publish-form .search-wrap:after,.publish-form .search-wrap:before,.publish-form .wrap:after,.publish-form .wrap:before{content:” “;display:table}.budget-form .search-wrap:after,.budget-form .wrap:after,.publish-form .search-wrap:after,.publish-form .wrap:after{clear:both}.budget-form .wrap .col,.publish-form .wrap .col{padding-top:37px}.budget-form .search-wrap .col,.publish-form .search-wrap .col{padding-top:20px;padding-bottom:20px}.budget-form .search-wrap .col.add .fa-search,.budget-form .search-wrap .col:hover #search-field>.Select:after{color:#fff}.budget-form .question-tags .form-control{height:unset}.budget-form .question-tags .react-tagsinput-input{font-size:18px;width:unset;margin-bottom:0;padding-bottom:0;padding-top:3px}.budget-form .question-tags .react-tagsinput-tag{font-size:18px;border-color:#f7921e;background-color:transparent;color:#000;border-radius:10px;margin-right:10px;margin-bottom:0;font-family:inherit;padding:2px 5px;line-height:1.2}.budget-form .question-tags .react-tagsinput-input.placeholder,.budget-form .question-tags .react-tagsinput-input:-ms-input-placeholder,.budget-form .question-tags .react-tagsinput-input::-moz-placeholder,.budget-form .question-tags .react-tagsinput-input::-webkit-input-placeholder,.budget-form .question-tags .react-tagsinput-input::placeholder{opacity:1;color:#989898}#search-field>.Select:after{font-family:FontAwesome;content:”F002″;border:none;background:none;color:#bababa;position:absolute;font-size:22px;line-height:1;right:14px;top:50%;transform:translateY(-50%);font-style:normal}.form-control-label{font-style:normal}@media (max-width:1096px){.publish-form .search-wrap{padding-right:7px}.publish-form .wrap{padding-left:7px;padding-right:7px}.publish-form .search-wrap .col,.publish-form .wrap .col{padding-left:0;padding-right:0;width:100%;float:none}}@media (max-width:767px){.budget-form .search-wrap{margin-bottom:13px}.publish-form .search-wrap{margin-bottom:16px;padding-left:0;background:none;padding-right:0}.budget-form .wrap,.publish-form .wrap{margin-bottom:3px;padding:0}.budget-form .wrap .col{padding-top:20px;width:50%}.budget-form .search-wrap .col{padding-top:8px;padding-bottom:2px}.publish-form .wrap .col{width:100%;padding:0}.publish-form .search-wrap .col{padding-top:0;padding-bottom:0}.budget-form .fa-search{font-size:10px;right:5px;top:5px}.publish-form .search-wrap .fa-search{font-size:10px;right:5px;top:5px;display:none}.budget-form .col,.publish-form .col{padding:0 5px}}@media (max-width:639px){.publish-form .wrap .col:last-child{width:100%;display:block;padding:0}} .budget-form{color:#515151;background:#fff;padding:13px 0 41px}.budget-form label{font-weight:400;color:#515151;font-size:14px;line-height:1.2;margin:0}.budget-form select{text-overflow:ellipsis;white-space:nowrap;max-width:100%;overflow:hidden}.budget-form .wrap{margin-bottom:44px}.budget-form .wrap:after,.budget-form .wrap:before{content:” “;display:table}.budget-form .wrap:after{clear:both}.budget-form .search-wrap .col{padding-top:20px;padding-bottom:20px}.add-question-wizard .budget-form .col{width:50%;float:left;padding:0 30px}.budget-form .wrap .fa-calendar{position:absolute;left:3px;bottom:8px;line-height:1;font-size:25px;color:#333}.add-question-wizard .budget-form .title{display:block;font-size:24px;text-transform:uppercase;padding:0 30px 23px}.budget-form .wrap .col,.budget-form .wrap .col.date-picker{padding-top:37px}@media (max-width:767px){.budget-form{padding-top:0;padding-bottom:14px}.student-home .budget-form{background:transparent}.student-home .budget-form .form-box{background:#fff;padding:30px 15px;box-shadow:0 3px 5px rgba(0,0,0,.04);margin-bottom:30px}.budget-form label{font-size:11px}.budget-form .wrap{margin-bottom:3px;padding:0}.budget-form .search-wrap .col{padding-top:8px;padding-bottom:2px}.budget-form .col{padding:0 5px}.budget-form .wrap .fa-calendar{bottom:4px;font-size:11px}.budget-form .title{font-size:10px;padding:0 8px 6px}.student-home .budget-form .title{font-size:18px;color:#f6911d;padding:15px 8px 0;font-weight:500}.budget-form .wrap .col,.budget-form .wrap .col.date-picker{padding-top:20px;width:50%}.student-home .budget-form .wrap .col,.student-home .budget-form .wrap .col.date-picker{width:100%}} .congratulations-block .title span.green-font{color:green}.congratulations-block .optional-fields-form{color:#515151;background:#fff;padding:13px 0 25px;overflow:hidden}.congratulations-block .col{width:50%;float:left;padding:40px 10% 150px;text-align:left;border-bottom:2px dashed #f7921e}.congratulations-block .Select .Select-menu-outer{max-height:150px}.congratulations-block .Select .Select-menu-outer .Select-menu{max-height:148px}.congratulations-block .fa-search{border:none;background:none;color:#bababa;font-size:22px;line-height:1;margin-top:4px;position:absolute;right:14px;top:50%;transform:translateY(-50%);padding:0}@media (max-width:767px){.congratulations-block .col{width:100%;float:none;padding:10px 15px 20px;border-bottom:none}.congratulations-block .col:first-child{border-bottom:0}.congratulations-block .fa-search{font-size:10px;right:5px;top:5px}.congratulations-block .optional-fields-form{padding-top:0;background:transparent}.student-home .congratulations-block .form-box{background:#fff;padding:0 5px;box-shadow:0 3px 5px rgba(0,0,0,.04);margin-bottom:30px}} .Button__root___1gz0c{display:inline-block;margin:0 5px 0 0;padding:3px 8px;height:30px;line-height:22px;box-sizing:border-box;background:none #fdfdfd;background:linear-gradient(180deg,#fdfdfd 0,#f6f7f8);border:1px solid #999;border-radius:2px;color:#333;text-decoration:none;font-size:inherit;font-family:inherit;cursor:pointer;white-space:nowrap}.Button__root___1gz0c:disabled{cursor:not-allowed;background:none transparent}.Button__root___1gz0c:disabled>*{opacity:.5} .ButtonWrap__root___1EO_R{display:inline-block;position:relative;z-index:10} .IconButton__root___3tqZW{padding-left:3px;padding-right:3px}.IconButton__icon___3YgOS{display:inline-block;width:22px;height:22px;background-position:50%;background-repeat:no-repeat;background-size:18px}.IconButton__isActive___2Ey8p{background:none #d8d8d8}.IconButton__icon-undo___EQSRP{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTcuODU2IDI0YzIuNjY1LTQuODMgMy4xMTUtMTIuMTk1LTcuMzU2LTExLjk1VjE4bC05LTkgOS05djUuODJDMjMuMDM4IDUuNDk1IDI0LjQzNSAxNi44OSAxNy44NTYgMjR6Ii8+PC9zdmc+”);background-size:14px}.IconButton__icon-redo___30MVz{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTMuNSA1LjgyVjBsOSA5LTkgOXYtNS45NUMzLjAzIDExLjgwNiAzLjQ3OCAxOS4xNyA2LjE0NCAyNC0uNDM2IDE2Ljg5Ljk2MiA1LjQ5NCAxMy41IDUuODJ6Ii8+PC9zdmc+”);background-size:14px}.IconButton__icon-unordered-list-item___Pvkrr{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNNC42NTYgMy4zNDRIMTR2MS4zMTNINC42NTZWMy4zNDR6bTAgNS4zMTJWNy4zNDNIMTR2MS4zMTNINC42NTZ6bTAgNHYtMS4zMTNIMTR2MS4zMTNINC42NTZ6bS0yLTEuNTNxLjM3NSAwIC42NC4yNXQuMjY3LjYyNC0uMjY2LjYyNS0uNjQuMjUtLjYyNi0uMjVUMS43OCAxMnQuMjUtLjYyNS42MjYtLjI1em0wLTguMTI2cS40MDYgMCAuNzAzLjI4dC4yOTYuNzItLjI5Ny43Mi0uNzA0LjI4LS43MDMtLjI4VDEuNjU2IDR0LjI5Ny0uNzIuNzAzLS4yOHptMCA0cS40MDYgMCAuNzAzLjI4dC4yOTYuNzItLjI5Ny43Mi0uNzA0LjI4LS43MDMtLjI4VDEuNjU2IDh0LjI5Ny0uNzIuNzAzLS4yOHoiLz48L3N2Zz4=”)}.IconButton__icon-ordered-list-item___2rzD0{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNNC42NTYgOC42NTZWNy4zNDNIMTR2MS4zMTNINC42NTZ6bTAgNHYtMS4zMTNIMTR2MS4zMTNINC42NTZ6bTAtOS4zMTJIMTR2MS4zMTNINC42NTZWMy4zNDR6bS0zLjMxMiA0di0uNjg4aDJ2LjYyNWwtMS4yMiAxLjM3NmgxLjIydi42ODhoLTJWOC43MmwxLjE4OC0xLjM3NkgxLjM0NHptLjY1Ni0ydi0yaC0uNjU2di0uNjg4aDEuMzEzdjIuNjg4SDJ6bS0uNjU2IDZ2LS42ODhoMnYyLjY4OGgtMnYtLjY4OGgxLjMxM3YtLjMxM0gydi0uNjg4aC42NTd2LS4zMTNIMS4zNDR6Ii8+PC9zdmc+”)}.IconButton__icon-blockquote___17VSX{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNOS4zNDQgMTEuMzQ0bDEuMzEzLTIuNjg4aC0ydi00aDR2NGwtMS4zMTMgMi42ODhoLTJ6bS01LjM0NCAwbDEuMzQ0LTIuNjg4aC0ydi00aDR2NEw2IDExLjM0NEg0eiIvPjwvc3ZnPg==”)}.IconButton__icon-bold___2zl9t{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNOSAxMC4zNDRxLjQzOCAwIC43Mi0uMjk3dC4yOC0uNzAzLS4yOC0uNzAzVDkgOC4zNDVINi42NTZ2Mkg5em0tMi4zNDQtNnYyaDJxLjQwNiAwIC43MDMtLjI5N3QuMjk2LS43MDMtLjI5Ny0uNzAzLS43MDQtLjI5NmgtMnptMy43NSAyLjg0NHExLjQzOC42NTYgMS40MzggMi4yOCAwIDEuMDY0LS43MDMgMS43OThUOS4zNzYgMTJoLTQuNzJWMi42NTZoNC4xOXExLjEyNCAwIDEuODkuNzh0Ljc2NiAxLjkwNy0xLjA5MyAxLjg0NHoiLz48L3N2Zz4=”)}.IconButton__icon-italic___2hHzc{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNNi42NTYgMi42NTZIMTJ2MmgtMS44NzVMNy44NzUgMTBoMS40N3YySDR2LTJoMS44NzVsMi4yNS01LjM0NGgtMS40N3YtMnoiLz48L3N2Zz4=”)}.IconButton__icon-underline___2EmZJ{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNMy4zNDQgMTIuNjU2aDkuMzEzVjE0SDMuMzQ0di0xLjM0NHpNOCAxMS4zNDRxLTEuNjU2IDAtMi44MjgtMS4xNzJUNCA3LjM0NFYyaDEuNjU2djUuMzQ0cTAgLjk3LjY4OCAxLjY0VDggOS42NTh0MS42NTYtLjY3Mi42ODgtMS42NFYySDEydjUuMzQ0UTEyIDkgMTAuODI4IDEwLjE3MlQ4IDExLjM0NHoiLz48L3N2Zz4=”)}.IconButton__icon-strikethrough___QtE2X{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMjMuNTcgMTJxLjE5IDAgLjMxLjEydC4xMi4zMXYuODU2cTAgLjE4OC0uMTIuMzA4dC0uMzEuMTJILjQzcS0uMTg4IDAtLjMwOC0uMTJUMCAxMy4yODZ2LS44NTdxMC0uMTkuMTItLjMxVC40MjggMTJIMjMuNTd6bS0xNy4xLS44NTdxLS4zNzYtLjQ3LS42ODQtMS4wNy0uNjQzLTEuMy0uNjQzLTIuNTIgMC0yLjQyMyAxLjc5NS00LjEzNyAxLjc4LTEuNyA1LjI2My0xLjcuNjcgMCAyLjIzOC4yNTMuODg0LjE2IDIuMzcuNjQyLjEzNS41MS4yODIgMS41OC4xODggMS42NDcuMTg4IDIuNDUgMCAuMjQyLS4wNjcuNjA0bC0uMTYuMDQtMS4xMjUtLjA4LS4xODgtLjAyN3EtLjY3LTEuOTk3LTEuMzgtMi43NDctMS4xNzgtMS4yMi0yLjgxMi0xLjIyLTEuNTI3IDAtMi40MzguNzktLjg5Ny43NzgtLjg5NyAxLjk1NiAwIC45NzcuODg0IDEuODc0dDMuNzM3IDEuNzI4cS45MjUuMjY4IDIuMzE4Ljg4NC43NzcuMzc1IDEuMjcyLjY5Nkg2LjQ3em02Ljc5IDMuNDI4aDUuNTAzcS4wOTQuNTIzLjA5NCAxLjIzMyAwIDEuNDg3LS41NSAyLjg0LS4zMDcuNzM2LS45NSAxLjM5Mi0uNDk2LjQ3LTEuNDYgMS4wODUtMS4wNy42NDMtMi4wNS44ODQtMS4wNy4yOC0yLjcxOC4yOC0xLjUyOCAwLTIuNjEzLS4zMDdsLTEuODc1LS41MzZxLS43NjMtLjIxMy0uOTY0LS4zNzQtLjEwNy0uMTA3LS4xMDctLjI5NXYtLjE3M3EwLTEuNDQ2LS4wMjYtMi4wOS0uMDEzLS40IDAtLjkxbC4wMjctLjQ5NnYtLjU4OGwxLjM2Ny0uMDI3cS4yLjQ1NS40MDIuOTV0LjMuNzUuMTY3LjM2M3EuNDcuNzYzIDEuMDcgMS4yNi41NzcuNDggMS40MDcuNzYyLjc5LjI5NSAxLjc2OC4yOTUuODU3IDAgMS44NjItLjM2MiAxLjAzLS4zNDggMS42MzQtMS4xNTIuNjMtLjgxNi42My0xLjcyNyAwLTEuMTI1LTEuMDg2LTIuMTAzLS40NTUtLjM4OC0xLjgzNS0uOTV6Ii8+PC9zdmc+”);background-size:14px}.IconButton__icon-code___3F1pe{background-image:url(“data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTE2IDExNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjEuNDE0Ij48ZyBmaWxsLXJ1bGU9Im5vbnplcm8iPjxwYXRoIGQ9Ik0yMi40NjQgMjguNDhjMCAyLjg5NS4zNDQgNS45MDUuODA2IDkuMDIuMzQyIDMuMDEuNjkgNi4wMi42OSA4LjkxNyAwIDMuNTYyLS45MTcgNy43OS04Ljk1NSA3LjkxMnY3LjIzNmM4LjAzNi4xMTUgOC45NTYgNC42NzIgOC45NTYgNy45MTIgMCAyLjg4Ni0uMzQ4IDUuNzgzLS42OSA4Ljc4Ny0uNDYyIDMuMDEzLS44MDYgNi4xMzQtLjgwNiA4LjkyIDAgMTEuMjM4IDcuMTA2IDE1LjI1MiAxNy4wODcgMTUuMjUyaDMuMzJ2LTcuOTEyaC0yLjA2MmMtNS43MjYgMC04LjAyNS0zLjIzMy04LjAyNS04Ljc5NiAwLTIuMjM2LjM0NC00LjU3LjgwNi03LjAyMy4yMjctMi40MzguNjg0LTUuMTIuNjg0LTguMTIuMTE1LTcuNzkyLTMuMzItMTEuMjUzLTkuMTc0LTEyLjU4NnYtLjIyNWM1Ljg1NC0xLjMzMiA5LjI5My00LjY3NiA5LjE3LTEyLjQ3IDAtMi44OTUtLjQ1Ny01LjU2NS0uNjg0LTguMDI0LS40NjItMi40NC0uODA3LTQuNzc3LS44MDctNy4wMTIgMC01LjQ1IDIuMDU4LTguNjg4IDguMDI0LTguNjg4aDIuMDY2di04LjAxNGgtMy4zMmMtMTAuMjA1LS4wMDMtMTcuMDg2IDQuNDQ0LTE3LjA4NiAxNC45MTV6TTkyLjA2IDQ2LjQxN2MwLTIuODkzLjQ1My01LjkwMy44MDMtOC45MTguMzQzLTMuMTE0Ljc5Ny02LjEyLjc5Ny05LjAyIDAtMTAuNDctNi44NzUtMTQuOTE3LTE3LjA4LTE0LjkxN2gtMy4zMjd2OC4wMTdoMi4wNmM1Ljg1Mi4xMTQgNy45MSAzLjIzMyA3LjkxIDguNjg4IDAgMi4yMy0uMzQyIDQuNTY1LS42ODUgNy4wMTItLjM1IDIuNDU1LS42OTIgNS4xMjYtLjY5MiA4LjAyNC0uMTA1IDcuNzk3IDMuMzI3IDExLjEzNiA5LjA1NiAxMi40N3YuMjIyYy01LjcyIDEuMzMzLTkuMTYgNC43OTYtOS4wNTYgMTIuNTg3IDAgMyAuMzQyIDUuNjg2LjY5MiA4LjEyLjM0MyAyLjQ1NS42ODYgNC43OS42ODYgNy4wMjUgMCA1LjU1NC0yLjE4IDguNjgtNy45MTIgOC43ODhoLTIuMDZ2Ny45MTJoMy4zMjVjOS45NzUgMCAxNy4wNzYtNC4wMSAxNy4wNzYtMTUuMjUgMC0yLjc4My0uNDU0LTUuOS0uNzk2LTguOTE0LS4zNDctMy4wMS0uODA1LTUuOS0uODA1LTguNzk1IDAtMy4yMzMgMS4wMzUtNy43OSA4Ljk0My03LjkxM1Y1NC4zMmMtNy45MDQtLjExMi04LjkzNS00LjM0LTguOTM1LTcuOTAzeiIvPjwvZz48L3N2Zz4=”)}.IconButton__icon-link___2umEl{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMiIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDIyIDI0Ij48cGF0aCBkPSJNMTkuNSAxNi4yODZxMC0uNTM2LS4zNzUtLjkxbC0yLjc4Ni0yLjc4N3EtLjM3Ni0uMzc2LS45MTItLjM3Ni0uNTYzIDAtLjk2NC40M2wuMjU0LjI0N3EuMjE0LjIwOC4yODguMjl0LjIuMjUzLjE3NS4zNDIuMDQ4LjM2OHEwIC41MzYtLjM3NS45MXQtLjkxLjM3NnEtLjIwMiAwLS4zNy0uMDQ4dC0uMzQtLjE3NC0uMjU1LS4yLS4yODgtLjI5LS4yNDgtLjI1M3EtLjQ0Mi40MTUtLjQ0Mi45NzggMCAuNTM2LjM3NS45MWwyLjc2IDIuNzczcS4zNi4zNjIuOTEuMzYyLjUzNiAwIC45MS0uMzQ4bDEuOTctMS45NTVxLjM3NS0uMzc1LjM3NS0uODk3em0tOS40MTUtOS40NDJxMC0uNTM2LS4zNzUtLjkxTDYuOTUgMy4xNnEtLjM3NC0uMzc0LS45MS0uMzc0LS41MjIgMC0uOTEuMzYyTDMuMTYgNS4xMDNxLS4zNzUuMzc1LS4zNzUuODk3IDAgLjUzNi4zNzUuOTFsMi43ODYgMi43ODdxLjM2Mi4zNjIuOTEuMzYyLjU2NCAwIC45NjUtLjQxNmwtLjI1My0uMjQ4cS0uMjEzLS4yMDgtLjI4OC0uMjg4dC0uMjAyLS4yNTQtLjE3NC0uMzQyLS4wNDctLjM2OHEwLS41MzYuMzc1LS45MXQuOTEtLjM3NnEuMjAyIDAgLjM3LjA0N3QuMzQuMTc0LjI1NS4yLjI4OC4yODguMjQ4LjI1NHEuNDQyLS40MTUuNDQyLS45Nzh6bTExLjk4NiA5LjQ0MnEwIDEuNjA3LTEuMTM3IDIuNzJsLTEuOTcgMS45NTRxLTEuMTEgMS4xMTItMi43MTggMS4xMTItMS42MiAwLTIuNzMyLTEuMTM4bC0yLjc2LTIuNzcycS0xLjExLTEuMTEyLTEuMTEtMi43MiAwLTEuNjQ2IDEuMTc4LTIuNzk4bC0xLjE3OC0xLjE4cS0xLjE1MiAxLjE4LTIuNzg2IDEuMTgtMS42MDcgMC0yLjczMi0xLjEyNUwxLjMzOCA4LjczMlEuMjEzIDcuNjA4LjIxMyA2VDEuMzUgMy4yODNsMS45Ny0xLjk1NVE0LjQzMi4yMTUgNi4wNC4yMTVxMS42MiAwIDIuNzMgMS4xMzhsMi43NiAyLjc3MnExLjExMiAxLjExMiAxLjExMiAyLjcyIDAgMS42NDYtMS4xOCAyLjc5OGwxLjE4IDEuMThxMS4xNTItMS4xOCAyLjc4Ni0xLjE4IDEuNjA3IDAgMi43MzIgMS4xMjVsMi43ODYgMi43ODZxMS4xMjUgMS4xMjUgMS4xMjUgMi43MzJ6Ii8+PC9zdmc+”);background-size:14px}.IconButton__icon-remove-link___j61pw{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMiIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDIyIDI0Ij48cGF0aCBkPSJNNS44OCAxNy4wMjJsLTMuNDMgMy40M3EtLjEzNC4xMi0uMzA4LjEyLS4xNiAwLS4zMDgtLjEyLS4xMi0uMTM1LS4xMi0uMzF0LjEyLS4zMDdsMy40My0zLjQzcS4xMzMtLjEyLjMwNy0uMTJ0LjMxLjEycS4xMi4xMzUuMTIuMzF0LS4xMi4zMDd6bTIuMjYzLjU1djQuMjg1cTAgLjE4OC0uMTIuMzA4dC0uMzEuMTItLjMwNy0uMTItLjEyLS4zMDhWMTcuNTdxMC0uMTg3LjEyLS4zMDd0LjMwOC0uMTIuMzA4LjEyLjEyLjMwOHptLTMtM3EwIC4xODctLjEyLjMwN3QtLjMxLjEySC40M3EtLjE4OCAwLS4zMDgtLjEyVDAgMTQuNTd0LjEyLS4zMDcuMzA4LS4xMmg0LjI4NnEuMTg4IDAgLjMwOC4xMnQuMTIuMzA4em0xNi45MjggMS43MTRxMCAxLjYwNy0xLjEzNyAyLjcybC0xLjk3IDEuOTU0cS0xLjExIDEuMTEyLTIuNzE4IDEuMTEyLTEuNjIgMC0yLjczMi0xLjEzOEw5LjA0IDE2LjQ0N3EtLjI4LS4yOC0uNTYzLS43NWwzLjItLjI0IDMuNjU3IDMuNjdxLjM2Mi4zNi45MS4zNjd0LjkxMi0uMzU1bDEuOTctMS45NTZxLjM3NC0uMzc1LjM3NC0uODk3IDAtLjUzNi0uMzc1LS45MWwtMy42Ny0zLjY4NC4yNC0zLjJxLjQ3LjI4Ljc1LjU2Mmw0LjUgNC41cTEuMTI2IDEuMTUyIDEuMTI2IDIuNzMyek0xMy44MSA2LjU5bC0zLjIuMjRMNi45NSAzLjE2cS0uMzc0LS4zNzUtLjkxLS4zNzUtLjUyMiAwLS45MS4zNjJMMy4xNiA1LjEwMnEtLjM3NS4zNzUtLjM3NS44OTcgMCAuNTM1LjM3NS45MWwzLjY3IDMuNjctLjI0IDMuMjE0cS0uNDctLjI4LS43NS0uNTYzbC00LjUtNC41US4yMTMgNy41OC4yMTMgNnEwLTEuNjA4IDEuMTM4LTIuNzJsMS45Ny0xLjk1NVE0LjQzLjIxMyA2LjA0LjIxM3ExLjYyIDAgMi43MzIgMS4xMzhsNC40NzMgNC40ODhxLjI4LjI4LjU2My43NXptOC40NzggMS4xMjRxMCAuMTg4LS4xMi4zMDh0LS4zMS4xMmgtNC4yODVxLS4xODcgMC0uMzA3LS4xMnQtLjEyLS4zMDguMTItLjMwOC4zMDgtLjEyaDQuMjg3cS4xODggMCAuMzA4LjEydC4xMi4zMDh6TTE1IC40M3Y0LjI4NXEwIC4xODgtLjEyLjMwOHQtLjMxLjEyLS4zMDctLjEyLS4xMi0uMzA4Vi40M3EwLS4xOS4xMi0uMzFUMTQuNTcgMHQuMzEuMTIuMTIuMzF6bTUuNDUgMi4wMmwtMy40MjggMy40M3EtLjE0Ny4xMi0uMzA4LjEydC0uMzA4LS4xMnEtLjEyLS4xMzQtLjEyLS4zMDh0LjEyLS4zMDhsMy40My0zLjQzcS4xMzMtLjEyLjMwNy0uMTJ0LjMwOC4xMnEuMTIyLjEzNS4xMjIuMzF0LS4xMi4zMDd6Ii8+PC9zdmc+”);background-size:14px}.IconButton__icon-image___1gW7U{background-image:url(“data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4IiB2aWV3Qm94PSIwIDAgNTMzLjMzMyA1MzMuMzM0IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MzMuMzMzIDUzMy4zMzQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNNDY2LjY2NywxMDBoLTQwMHYzMzMuMzMzaDQwMFYxMDB6IE01MzMuMzMzLDMzLjMzM0w1MzMuMzMzLDMzLjMzM1Y1MDBIMFYzMy4zMzNINTMzLjMzM3ogTTQzMy4zMzMsNDAwSDEwMHYtNjYuNjY3ICAgbDEwMC0xNjYuNjY3bDEzNi45NzksMTY2LjY2N2w5Ni4zNTQtNjYuNjY2VjMwMFY0MDB6IE0zMzMuMzMzLDE4My4zMzNjMCwyNy42MTQsMjIuMzg2LDUwLDUwLDUwczUwLTIyLjM4Niw1MC01MHMtMjIuMzg2LTUwLTUwLTUwICAgUzMzMy4zMzMsMTU1LjcxOSwzMzMuMzMzLDE4My4zMzN6IiBmaWxsPSIjMDAwMDAwIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==”);background-size:14px}.IconButton__icon-cancel___fx4TT{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMjMuNzggMTkuMjhMMTYuNSAxMmw3LjI4LTcuMjhhLjc0OC43NDggMCAwIDAgMC0xLjA2TDIwLjM0LjIxOGEuNzUuNzUgMCAwIDAtMS4wNi0uMDAyTDEyIDcuNDk4IDQuNzE3LjIyYS43NDguNzQ4IDAgMCAwLTEuMDYgMEwuMjE3IDMuNjZhLjc1Ljc1IDAgMCAwIDAgMS4wNkw3LjQ5NyAxMmwtNy4yOCA3LjI4YS43NDguNzQ4IDAgMCAwIDAgMS4wNmwzLjQ0IDMuNDRhLjc1Ljc1IDAgMCAwIDEuMDYuMDAybDcuMjgtNy4yOCA3LjI4MiA3LjI4Yy4wNzguMDc4LjE3LjEzNS4yNjguMTcuMjY3LjEuNTguMDQ0Ljc5My0uMTdsMy40NC0zLjQ0YS43NS43NSAwIDAgMCAwLTEuMDZ6Ii8+PC9zdmc+”);background-size:13px}.IconButton__icon-accept___2D6M9{background-image:url(“data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMjAuMjUgM0w5IDE0LjI1IDMuNzUgOSAwIDEyLjc1bDkgOSAxNS0xNXoiLz48L3N2Zz4=”);background-size:13px} .ButtonGroup__root___3lEAn{display:inline-block;vertical-align:top;margin:0 5px 5px 0;white-space:nowrap}.ButtonGroup__root___3lEAn:last-child{margin-right:0}.ButtonGroup__root___3lEAn>div>button{margin-right:0;border-radius:0}.ButtonGroup__root___3lEAn>div>button:focus{position:relative;z-index:1}.ButtonGroup__root___3lEAn>div:first-child>button{border-top-left-radius:2px;border-bottom-left-radius:2px}.ButtonGroup__root___3lEAn>div+div>button{border-left-width:0}.ButtonGroup__root___3lEAn>div:last-child>button{border-top-right-radius:2px;border-bottom-right-radius:2px} .InputPopover__root___3Hpj9{position:absolute;top:calc(100% + 5px);left:0;width:260px;background:none #fdfdfd;background:linear-gradient(180deg,#fdfdfd 0,#f6f7f8);border:1px solid #999;border-radius:2px;box-sizing:border-box;padding:4px}.InputPopover__root___3Hpj9:before{top:-10px;border:5px solid transparent;border-bottom-color:#999}.InputPopover__root___3Hpj9:after,.InputPopover__root___3Hpj9:before{content:””;display:block;position:absolute;width:0;height:0;left:10px}.InputPopover__root___3Hpj9:after{top:-9px;border:5px solid transparent;border-bottom-color:#fdfdfd}.InputPopover__inner___32V5P{display:flex}.InputPopover__input___264Za{display:block;flex:1 0 auto;height:30px;background:none #fff;border:1px solid #999;border-radius:2px;box-sizing:border-box;padding:2px 6px;font-family:inherit;font-size:inherit;line-height:24px}.InputPopover__inner___32V5P .InputPopover__buttonGroup___2c3Sl{flex:0 1 auto;margin-left:4px;margin-bottom:0} .Dropdown__root___3ALmx{display:inline-block;position:relative;line-height:22px;vertical-align:top;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.Dropdown__root___3ALmx select{position:relative;z-index:2;display:inline-block;box-sizing:border-box;height:30px;line-height:inherit;font-family:inherit;font-size:inherit;color:inherit;margin:0;padding:0;border:4px solid transparent;border-right-width:10px;border-left-width:5px;background:none transparent;opacity:0;cursor:pointer}.Dropdown__root___3ALmx .Dropdown__value___34Py9{display:block;position:absolute;z-index:1;left:0;top:0;right:0;bottom:0;line-height:23px;border:1px solid #999;border-radius:2px;padding:3px;padding-right:33px;padding-left:12px;white-space:nowrap;text-overflow:ellipsis}.Dropdown__root___3ALmx .Dropdown__value___34Py9:after,.Dropdown__root___3ALmx .Dropdown__value___34Py9:before{display:block;content:””;position:absolute;top:50%;right:10px;width:0;height:0;border:4px solid transparent}.Dropdown__root___3ALmx .Dropdown__value___34Py9:before{margin-top:-10px;border-bottom-color:#555}.Dropdown__root___3ALmx .Dropdown__value___34Py9:after{margin-top:1px;border-top-color:#555}.Dropdown__root___3ALmx select:focus+.Dropdown__value___34Py9{border-color:#66afe9}@media screen and (-webkit-min-device-pixel-ratio:0){.Dropdown__root___3ALmx select{opacity:1;color:inherit;-webkit-appearance:none;border-left-width:12px;border-right-width:35px}.Dropdown__root___3ALmx select+.Dropdown__value___34Py9{color:transparent}.Dropdown__root___3ALmx select:focus+.Dropdown__value___34Py9{border-color:#999}} .EditorToolbar__root___3_Aqz{font-family:Helvetica,sans-serif;font-size:14px;margin:0 10px;padding:10px 0 5px;border-bottom:1px solid #ddd;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} .ImageSpan__root___RoAqL{background-repeat:no-repeat;display:inline-block;overflow:hidden;cursor:pointer}.ImageSpan__resize___1Hx5M{border:1px dashed #78a300;position:relative;max-width:100%;display:inline-block;line-height:0;top:-1px;left:-1px}.ImageSpan__resizeHandle___18rou{cursor:nwse-resize;position:absolute;z-index:2;line-height:1;bottom:-4px;right:-5px;border:1px solid #fff;background-color:#78a300;width:8px;height:8px} /**  * We inherit the height of the container by default  */  .DraftEditor-root, .DraftEditor-editorContainer, .public-DraftEditor-content {   height: inherit;   text-align: initial; }  .DraftEditor-root {   position: relative; }  /**  * Zero-opacity background used to allow focus in IE. Otherwise, clicks  * fall through to the placeholder.  */  .DraftEditor-editorContainer {   background-color: rgba(255, 255, 255, 0);   /* Repair mysterious missing Safari cursor */   border: 1px solid transparent;   position: relative;   z-index: 1; }  .public-DraftEditor-content {   outline: none;   white-space: pre-wrap; }  .public-DraftEditor-block {   position: relative; }  .DraftEditor-alignLeft .public-DraftEditor-block {   text-align: left; }  .DraftEditor-alignLeft .public-DraftEditorPlaceholder-root {   left: 0;   text-align: left; }  .DraftEditor-alignCenter .public-DraftEditor-block {   text-align: center; }  .DraftEditor-alignCenter .public-DraftEditorPlaceholder-root {   margin: 0 auto;   text-align: center;   width: 100%; }  .DraftEditor-alignRight .public-DraftEditor-block {   text-align: right; }  .DraftEditor-alignRight .public-DraftEditorPlaceholder-root {   right: 0;   text-align: right; } /**  * @providesModule DraftEditorPlaceholder  */  .public-DraftEditorPlaceholder-root {   color: #9197a3;   position: absolute;   z-index: 0; }  .public-DraftEditorPlaceholder-hasFocus {   color: #bdc1c9; }  .DraftEditorPlaceholder-hidden {   display: none; } /**  * @providesModule DraftStyleDefault  */  .public-DraftStyleDefault-block {   position: relative;   white-space: pre-wrap; }  /* @noflip */  .public-DraftStyleDefault-ltr {   direction: ltr;   text-align: left; }  /* @noflip */  .public-DraftStyleDefault-rtl {   direction: rtl;   text-align: right; }  /**  * These rules provide appropriate text direction for counter pseudo-elements.  */  /* @noflip */  .public-DraftStyleDefault-listLTR {   direction: ltr; }  /* @noflip */  .public-DraftStyleDefault-listRTL {   direction: rtl; }  /**  * Default spacing for list container elements. Override with CSS as needed.  */  .public-DraftStyleDefault-ul, .public-DraftStyleDefault-ol {   margin: 16px 0;   padding: 0; }  /**  * Default counters and styles are provided for five levels of nesting.  * If you require nesting beyond that level, you should use your own CSS  * classes to do so. If you care about handling RTL languages, the rules you  * create should look a lot like these.  */  /* @noflip */  .public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR {   margin-left: 1.5em; }  /* @noflip */  .public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL {   margin-right: 1.5em; }  /* @noflip */  .public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR {   margin-left: 3em; }  /* @noflip */  .public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL {   margin-right: 3em; }  /* @noflip */  .public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR {   margin-left: 4.5em; }  /* @noflip */  .public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL {   margin-right: 4.5em; }  /* @noflip */  .public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR {   margin-left: 6em; }  /* @noflip */  .public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL {   margin-right: 6em; }  /* @noflip */  .public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR {   margin-left: 7.5em; }  /* @noflip */  .public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL {   margin-right: 7.5em; }  /**  * Only use `square` list-style after the first two levels.  */  .public-DraftStyleDefault-unorderedListItem {   list-style-type: square;   position: relative; }  .public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0 {   list-style-type: disc; }  .public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1 {   list-style-type: circle; }  /**  * Ordered list item counters are managed with CSS, since all list nesting is  * purely visual.  */  .public-DraftStyleDefault-orderedListItem {   list-style-type: none;   position: relative; }  /* @noflip */  .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before {   left: -36px;   position: absolute;   text-align: right;   width: 30px; }  /* @noflip */  .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before {   position: absolute;   right: -36px;   text-align: left;   width: 30px; }  /**  * Counters are reset in JavaScript. If you need different counter styles,  * override these rules. If you need more nesting, create your own rules to  * do so.  */  .public-DraftStyleDefault-orderedListItem:before {   content: counter(ol0) “. “;   counter-increment: ol0; }  .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before {   content: counter(ol1) “. “;   counter-increment: ol1; }  .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before {   content: counter(ol2) “. “;   counter-increment: ol2; }  .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before {   content: counter(ol3) “. “;   counter-increment: ol3; }  .public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before {   content: counter(ol4) “. “;   counter-increment: ol4; }  .public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset {   counter-reset: ol0; }  .public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset {   counter-reset: ol1; }  .public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset {   counter-reset: ol2; }  .public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset {   counter-reset: ol3; }  .public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset {   counter-reset: ol4; }  .RichTextEditor__root___2QXK-{background:#fff;border:1px solid #ddd;border-radius:3px;font-family:Georgia,serif;font-size:14px}.RichTextEditor__editor___1QqIU{cursor:text;font-size:16px}.RichTextEditor__editor___1QqIU .public-DraftEditor-content,.RichTextEditor__editor___1QqIU .public-DraftEditorPlaceholder-root{margin:0;padding:9px}.RichTextEditor__editor___1QqIU .public-DraftEditor-content{overflow:auto}.RichTextEditor__hidePlaceholder___3WLid .public-DraftEditorPlaceholder-root{display:none}.RichTextEditor__editor___1QqIU .RichTextEditor__paragraph___3NTf9,.RichTextEditor__editor___1QqIU pre{margin:14px 0}.RichTextEditor__editor___1QqIU .RichTextEditor__codeBlock____KD4Q{background-color:#f3f3f3;font-family:Inconsolata,Menlo,Consolas,monospace;font-size:16px;margin:14px 0;padding:20px}.RichTextEditor__editor___1QqIU .RichTextEditor__codeBlock____KD4Q span[style]{padding:0!important}.RichTextEditor__editor___1QqIU .RichTextEditor__blockquote___1vCYl{border-left:5px solid #eee;color:#666;font-family:Hoefler Text,Georgia,serif;font-style:italic;margin:16px 0;padding:10px 20px}.RichTextEditor__editor___1QqIU .RichTextEditor__block___2Vs_D:first-child,.RichTextEditor__editor___1QqIU ol:first-child,.RichTextEditor__editor___1QqIU pre:first-child,.RichTextEditor__editor___1QqIU ul:first-child{margin-top:0}.RichTextEditor__editor___1QqIU .RichTextEditor__block___2Vs_D:last-child,.RichTextEditor__editor___1QqIU ol:last-child,.RichTextEditor__editor___1QqIU pre:last-child,.RichTextEditor__editor___1QqIU ul:last-child{margin-bottom:0} 

Research structured and unstructured data and provide examples of each

Research reporting and provide examples of reports that turns data into information 

 Submit a 3-5 page paper (WORD DOCUMENT) that recognizes all the data that exists and how to make meaning of that data

Pick an organization and submit a document that outlines all the structured and unstructured data that the organization handles from your observations

Argument

  

Name

Professor Pleimann

ENGL 1302

Date

Argumentative Essay Outline and Sources

Essay Title:

1. Introduction – 

a. Key background information about your topic. What will your reader need to know to understand your argument?

b. Thesis: 

i. Topic

ii. Stance 

iii. Roadmap 

2. Body Section 1 – Remember to structure each body section according to the type of argument that you are using. Each essay will need to address logos, pathos, and ethos in some way, as well as address a counterargument. 

3. Body Section 2

4. Body Section 3 

5. Body Section 4 (include as many body sections as you need to make your argument.)

6. Conclusion – Reexamine the central focus of the essay and examine any new understandings about the topic. Please include a call to action. Now that you have given your reader all this information, what should they do with it?

  

Works Cited 

(Make sure you include your graphic novel on your Works Cited page)

Last Name, First Name. Title. Title of Source, Other Contributors, Version, Number, Publisher, Publication date, Location. 

Last Name, First Name. Title. Title of Source, Other Contributors, Version, Number, Publisher, Publication date, Location. 

Last Name, First Name. Title. Title of Source, Other Contributors, Version, Number, Publisher, Publication date, Location. 

Sixo weeko 1

 

Using the learning materials to support your claims, respond to the following prompts in your original post:

  • Discuss challenges that long-term care communities face. What makes these challenges more prevalent in long-term care?
  • Identify trends and root causes of these challenges. Are there possible solutions to these causes?
  • Analyze labor challenges within long-term care and possible causes of the challenges.
  • Explain federal policy gaps for addressing disparities among long-term care organizations.
  • Are there solutions you would implement as a leader in a long-term care facility? Provide examples of how you would lead an aging service organization through these challenges. 

Post should be 300 to 500 words, with one to two supporting references included.

Part 2

 

Using the learning materials to support your claims, respond to the following prompts in your original post:

  • Identify differences in the quality of care residents receive in long-term care facilities and discuss why.
  • Discuss the disparities within long-term care and what factors you find surprising. 
  • Discuss root causes connected to these factors, and discuss why.
  • What differences between rural and urban health care offerings did you find interesting? Why?
  • Identify unique challenges aging veterans experience in long-term care settings.

Your initial post should be 300 to 500 words, with one to two supporting references included.