diff --git a/0x15-api/Project_ 0x15. API.mhtml b/0x15-api/Project_ 0x15. API.mhtml deleted file mode 100644 index c93e2b4..0000000 --- a/0x15-api/Project_ 0x15. API.mhtml +++ /dev/null @@ -1,16516 +0,0 @@ -From: -Snapshot-Content-Location: https://intranet.alxswe.com/projects/269 -Subject: Project: 0x15. API | Addis Ababa Intranet -Date: Thu, 15 Jun 2023 07:51:51 -0000 -MIME-Version: 1.0 -Content-Type: multipart/related; - type="text/html"; - boundary="----MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl----" - - -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: text/html -Content-ID: -Content-Transfer-Encoding: quoted-printable -Content-Location: https://intranet.alxswe.com/projects/269 - - - =20 - - - - - - - =20 - - - =20 - - - - Project: 0x15. API | Addis Ababa Intranet - - - - =20 - =20 - - - - - - - - - - - =20 - - - - - =20 - - - - - - =20 - - - - =20 - - - - -
- -
  • Curriculums
  • -
  • <= -i aria-hidden=3D"true" class=3D"fa fa-file-text ">
    Concepts
  • -
  • Conference rooms
  • -
  • Servers
  • -
  • Sandboxes
  • -
  • Tools
  • -
  • Video o= -n demand
  • - -
    - - =20 -
  • Peers
  • -
  • Captain's Logs
  • - - -
    - -
  • -
    - -
    -
    -
    -
    Slack
    -
    - -
    - -
    -
    -
    - -
    My Profile
    -
    -
  • - - - - - - -
    -
    - =20 - =20 - =20 - =20 - =20 -
    - -
    - - =20 -
    -
    - -

    0x15. API

    - -
    PythonScriptingBack-endAPI
    - -
    • By: Sylvain K= -alache, co-founder at Holberton School
    • Weight: 1
    • Project over - took place from May 22, 2023 6:00 AM to May 26, 2023 6:00 AM
    • An auto = -review will be launched at the deadline
    - -
    -

    In a nutshell=E2=80=A6

    -
      - - -
    • - Auto QA review: - 21.0/21 mandatory -
    • -
    • - Altogether: -  100.0% -
        -
      • Mandatory: 100.0%
      • -
      • Optional: no optional tasks
      • -
      -
    • -
    -
    - - - - - =20 - - -
    = -
    - - - - =20 - - =20 - -
    -
    -

    Background Context

    - -

    3D""

    - -

    Old-school system administrators usually only know Bash and that is what= - they use to build their scripts. While Bash is perfectly fine for a lot of= - things, it can quickly get messy and not efficient compared to other progr= -amming languages. The new generation of system administrators, usually call= -ed SREs, are pretty much regular software engineers but instead of building= - products, they are managing systems. And one of the big differences with t= -heir predecessors is that they know more than just Bash scripting.

    - -

    One popular way to expose an application and dataset is to use an API. O= -ften, they are the public facing part of websites and micro-services so tha= -t allow outsiders to interact with them =E2=80=93 access and modify their d= -ata. In this project, you will access employee data via an API to organize = -and export them to different data structures.

    - -

    This is a perfect example of a task that is not suited for Bash scriptin= -g, so let=E2=80=99s build Python scripts.

    - -

    Resources

    - -

    Read or watch:

    - - - -

    Learning Objectives

    - -

    At the end of this project, you are expected to be able to explain to anyone, without the hel= -p of Google:

    - -

    General

    - -
      -
    • What Bash scripting should not be used for
    • -
    • What is an API
    • -
    • What is a REST API
    • -
    • What are microservices
    • -
    • What is the CSV format
    • -
    • What is the JSON format
    • -
    • Pythonic Package and module name style
    • -
    • Pythonic Class name style
    • -
    • Pythonic Variable name style
    • -
    • Pythonic Function name style
    • -
    • Pythonic Constant name style
    • -
    • Significance of CapWords or CamelCase in Python
    • -
    - -

    Copyright - Plagiarism

    - -
      -
    • You are tasked to come up with solutions for the tasks below yourself t= -o meet with the above learning objectives.
    • -
    • You will not be able to meet the objectives of this or any following pr= -oject by copying and pasting someone else=E2=80=99s work.
    • -
    • You are not allowed to publish any content of this project.
    • -
    • Any form of plagiarism is strictly forbidden and will result in removal= - from the program.
    • -
    - -

    Requirements

    - -

    General

    - -
      -
    • Allowed editors: vi, vim, emacs<= -/li> -
    • All your files will be interpreted/compiled on Ubuntu 20.04 LTS using p= -ython3 (version 3.8.5)
    • -
    • All your files should end with a new line
    • -
    • The first line of all your files should be exactly #!/usr/bin/pyt= -hon3
    • -
    • Libraries imported in your Python files must be organized in al= -phabetical order
    • -
    • A README.md file, at the root of the folder of the project= -, is mandatory
    • -
    • Your code should use the pycodestyle (version 2.8.*)
    • -
    • All your files must be executable
    • -
    • The length of your files will be tested using wc
    • -
    • All your modules should have a documentation (python3 -c 'print(_= -_import__("my_module").__doc__)')
    • -
    • You must use get to access to dictionar= -y value by key (it won=E2=80=99t throw an exception if the key doesn=E2=80= -=99t exist in the dictionary)
    • -
    • Your code should not be executed when imported (by using if __nam= -e__ =3D=3D "__main__":)
    • -
    - -
    -
    - - - =20 - - =20 - - =20 -

    Tasks

    - -
    -
    - - -
    -

    - 0. Gather data from an API -

    - -
    - - mandatory - -
    -
    - -
    - - - -
    -
    -
    -
    -
    -
    - Score: 100.0% (Checks completed: 100.0%) -
    -
    - - -

    Write a Python script that, using this REST API, for a given employee ID, returns information about his/he= -r TODO list progress.

    - -

    Requirements:

    - -
      -
    • You must use urllib or requests module
    • -
    • The script must accept an integer as a parameter, which is the employee= - ID
    • -
    • The script must display on the standard output the employee TODO list p= -rogress in this exact format: - -
        -
      • First line: Employee EMPLOYEE_NAME is done with tasks(NUMBER_OF_D= -ONE_TASKS/TOTAL_NUMBER_OF_TASKS): - -
          -
        • EMPLOYEE_NAME: name of the employee
        • -
        • NUMBER_OF_DONE_TASKS: number of completed tasks
        • -
        • TOTAL_NUMBER_OF_TASKS: total number of tasks, which is the= - sum of completed and non-completed tasks
        • -
      • -
      • Second and N next lines display the title of completed tasks: TAS= -K_TITLE (with 1 tabulation and 1 space before the TASK_TITLE)
      • -
    • -
    - -

    Example:

    - -
    sylvain@ubuntu$ python3 0-gather_data_from_an_API.py 2
    -Employee Ervin Howell is done with tasks(8/20):
    -     distinctio vitae autem nihil ut molestias quo
    -     voluptas quo tenetur perspiciatis explicabo natus
    -     aliquam aut quasi
    -     veritatis pariatur delectus
    -     nemo perspiciatis repellat ut dolor libero commodi blanditiis omnis
    -     repellendus veritatis molestias dicta incidunt
    -     excepturi deleniti adipisci voluptatem et neque optio illum ad
    -     totam atque quo nesciunt
    -sylvain@ubuntu$ python3 0-gather_data_from_an_API.py 4
    -Employee Patricia Lebsack is done with tasks(6/20):
    -     odit optio omnis qui sunt
    -     doloremque aut dolores quidem fuga qui nulla
    -     sint amet quia totam corporis qui exercitationem commodi
    -     sequi dolorem sed
    -     eum ipsa maxime ut
    -     tempore molestias dolores rerum sequi voluptates ipsum consequatur
    -sylvain@ubuntu$
    -sylvain@ubuntu$ python3 0-gather_data_from_an_API.py 4 | tr " " "S" | tr "\=
    -t" "T"=20
    -EmployeeSPatriciaSLebsackSisSdoneSwithStasks(6/20):
    -TSoditSoptioSomnisSquiSsunt
    -TSdoloremqueSautSdoloresSquidemSfugaSquiSnulla
    -TSsintSametSquiaStotamScorporisSquiSexercitationemScommodi
    -TSsequiSdoloremSsed
    -TSeumSipsaSmaximeSut
    -TStemporeSmolestiasSdoloresSrerumSsequiSvoluptatesSipsumSconsequatur
    -sylvain@ubuntu$
    -
    - -
    - -
    - - - -
    -

    Repo:

    -
      -
    • GitHub repository: alx-system_engineering-devops= -
    • -
    • Directory: 0x15-api
    • -
    • File: 0-gather_data_from_an_API.py
    • -
    -
    - - -
    - - -
    -
    - =20 -
    - - - -
    -
    -
    -
    - -

    Learners who are done with "0. Gather= - data from an API"

    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - -
    -
    -
    -
    - -

    Correction of "0. Gather data fro= -m an API"

    -
    -
    -
    -
    -
    - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - -
    -
    -
    - - Requirement success -
    -
    - - Requirement fail -
    -
    -
    -
    - - Code success -
    -
    - - Code fail -
    -
    -
    -
    - - Efficiency success -
    -
    - - Efficiency fail -
    -
    -
    -
    - - Text answer success -
    -
    - - Text answer fail -
    -
    -
    -
    - - Skipped - Previous check failed -
    -
    -
    -
    - -
    -
    -
    -
    - - - - -
    -
    -
    -
    - -

    0. Gather data from an API

    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    Commit used:
    -
      -
    • User: ---
    • -
    • URL: Click here
    • -
    • ID:= - ---
    • -
    • Author: ---
    • -
    • Subject: ---
    • -
    • Date: ---
    • -
    -
    -
    -
      -
      -
      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      - -
      -
      -
      - - -
      -

      - 1. Export to CSV -

      - -
      - - mandatory - -
      -
      - -
      - - - -
      -
      -
      -
      -
      -
      - Score: 100.0% (Checks completed: 100.0%) -
      -
      - - -

      Using what you did in the task #0, extend your Python script to expo= -rt data in the CSV format.

      - -

      Requirements:

      - -
        -
      • Records all tasks that are owned by this employee
      • -
      • Format must be: "USER_ID","USERNAME","TASK_COMPLETED_STATUS","TAS= -K_TITLE"
      • -
      • File name must be: USER_ID.csv
      • -
      - -

      Example:

      - -
      sylvain@ubuntu$ python3 1-export_to_CSV.py 2
      -sylvain@ubuntu$ cat 2.csv
      -"2","Antonette","False","suscipit repellat esse quibusdam voluptatem incidu=
      -nt"
      -"2","Antonette","True","distinctio vitae autem nihil ut molestias quo"
      -"2","Antonette","False","et itaque necessitatibus maxime molestiae qui quas=
      - velit"
      -"2","Antonette","False","adipisci non ad dicta qui amet quaerat doloribus e=
      -a"
      -"2","Antonette","True","voluptas quo tenetur perspiciatis explicabo natus"
      -"2","Antonette","True","aliquam aut quasi"
      -"2","Antonette","True","veritatis pariatur delectus"
      -"2","Antonette","False","nesciunt totam sit blanditiis sit"
      -"2","Antonette","False","laborum aut in quam"
      -"2","Antonette","True","nemo perspiciatis repellat ut dolor libero commodi =
      -blanditiis omnis"
      -"2","Antonette","False","repudiandae totam in est sint facere fuga"
      -"2","Antonette","False","earum doloribus ea doloremque quis"
      -"2","Antonette","False","sint sit aut vero"
      -"2","Antonette","False","porro aut necessitatibus eaque distinctio"
      -"2","Antonette","True","repellendus veritatis molestias dicta incidunt"
      -"2","Antonette","True","excepturi deleniti adipisci voluptatem et neque opt=
      -io illum ad"
      -"2","Antonette","False","sunt cum tempora"
      -"2","Antonette","False","totam quia non"
      -"2","Antonette","False","doloremque quibusdam asperiores libero corrupti il=
      -lum qui omnis"
      -"2","Antonette","True","totam atque quo nesciunt"
      -sylvain@ubuntu$
      -
      - -
      - -
      - - - -
      -

      Repo:

      -
        -
      • GitHub repository: alx-system_engineering-devops= -
      • -
      • Directory: 0x15-api
      • -
      • File: 1-export_to_CSV.py
      • -
      -
      - - -
      - - -
      -
      - =20 -
      - - - -
      -
      -
      -
      - -

      Learners who are done with "1. Export= - to CSV"

      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - - -
      -
      -
      -
      - -

      Correction of "1. Export to CSV"<= -/h4> -

      -
      -
      -
      -
      - - - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - -
      - -
      -
      -
      - - Requirement success -
      -
      - - Requirement fail -
      -
      -
      -
      - - Code success -
      -
      - - Code fail -
      -
      -
      -
      - - Efficiency success -
      -
      - - Efficiency fail -
      -
      -
      -
      - - Text answer success -
      -
      - - Text answer fail -
      -
      -
      -
      - - Skipped - Previous check failed -
      -
      -
      -
      - -
      -
      -
      -
      - - - - -
      -
      -
      -
      - -

      1. Export to CSV

      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      Commit used:
      -
        -
      • User: ---
      • -
      • URL: Click here
      • -
      • ID:= - ---
      • -
      • Author: ---
      • -
      • Subject: ---
      • -
      • Date: ---
      • -
      -
      -
      -
        -
        -
        -
        -
        -
        -
        - -
        - - -
        -
        -
        - - -
        -
        - -
        -
        -
        - - -
        -

        - 2. Export to JSON -

        - -
        - - mandatory - -
        -
        - -
        - - - -
        -
        -
        -
        -
        -
        - Score: 100.0% (Checks completed: 100.0%) -
        -
        - - -

        Using what you did in the task #0, extend your Python script to expo= -rt data in the JSON format.

        - -

        Requirements:

        - -
          -
        • Records all tasks that are owned by this employee
        • -
        • Format must be: { "USER_ID": [{"task": "TASK_TITLE", "completed":= - TASK_COMPLETED_STATUS, "username": "USERNAME"}, {"task": "TASK_TITLE", "co= -mpleted": TASK_COMPLETED_STATUS, "username": "USERNAME"}, ... ]} -
        • File name must be: USER_ID.json
        • -
        - -

        Example:

        - -
        sylvain@ubuntu$ python3 2-export_to_JSON.py 2
        -sylvain@ubuntu$ cat 2.json
        -{"2": [{"task": "suscipit repellat esse quibusdam voluptatem incidunt", "co=
        -mpleted": false, "username": "Antonette"}, {"task": "distinctio vitae autem=
        - nihil ut molestias quo", "completed": true, "username": "Antonette"}, {"ta=
        -sk": "et itaque necessitatibus maxime molestiae qui quas velit", "completed=
        -": false, "username": "Antonette"}, {"task": "adipisci non ad dicta qui ame=
        -t quaerat doloribus ea", "completed": false, "username": "Antonette"}, {"ta=
        -sk": "voluptas quo tenetur perspiciatis explicabo natus", "completed": true=
        -, "username": "Antonette"}, {"task": "aliquam aut quasi", "completed": true=
        -, "username": "Antonette"}, {"task": "veritatis pariatur delectus", "comple=
        -ted": true, "username": "Antonette"}, {"task": "nesciunt totam sit blanditi=
        -is sit", "completed": false, "username": "Antonette"}, {"task": "laborum au=
        -t in quam", "completed": false, "username": "Antonette"}, {"task": "nemo pe=
        -rspiciatis repellat ut dolor libero commodi blanditiis omnis", "completed":=
        - true, "username": "Antonette"}, {"task": "repudiandae totam in est sint fa=
        -cere fuga", "completed": false, "username": "Antonette"}, {"task": "earum d=
        -oloribus ea doloremque quis", "completed": false, "username": "Antonette"},=
        - {"task": "sint sit aut vero", "completed": false, "username": "Antonette"}=
        -, {"task": "porro aut necessitatibus eaque distinctio", "completed": false,=
        - "username": "Antonette"}, {"task": "repellendus veritatis molestias dicta =
        -incidunt", "completed": true, "username": "Antonette"}, {"task": "excepturi=
        - deleniti adipisci voluptatem et neque optio illum ad", "completed": true, =
        -"username": "Antonette"}, {"task": "sunt cum tempora", "completed": false, =
        -"username": "Antonette"}, {"task": "totam quia non", "completed": false, "u=
        -sername": "Antonette"}, {"task": "doloremque quibusdam asperiores libero co=
        -rrupti illum qui omnis", "completed": false, "username": "Antonette"}, {"ta=
        -sk": "totam atque quo nesciunt", "completed": true, "username": "Antonette"=
        -}]}sylvain@ubuntu$
        -
        - -
        - -
        - - - -
        -

        Repo:

        -
          -
        • GitHub repository: alx-system_engineering-devops= -
        • -
        • Directory: 0x15-api
        • -
        • File: 2-export_to_JSON.py
        • -
        -
        - - -
        - - -
        -
        - =20 -
        - - - -
        -
        -
        -
        - -

        Learners who are done with "2. Export= - to JSON"

        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - - -
        -
        -
        -
        - -

        Correction of "2. Export to JSON"= -

        -
        -
        -
        -
        -
        - - - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - -
        - -
        -
        -
        - - Requirement success -
        -
        - - Requirement fail -
        -
        -
        -
        - - Code success -
        -
        - - Code fail -
        -
        -
        -
        - - Efficiency success -
        -
        - - Efficiency fail -
        -
        -
        -
        - - Text answer success -
        -
        - - Text answer fail -
        -
        -
        -
        - - Skipped - Previous check failed -
        -
        -
        -
        - -
        -
        -
        -
        - - - - -
        -
        -
        -
        - -

        2. Export to JSON

        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        Commit used:
        -
          -
        • User: ---
        • -
        • URL: Click here
        • -
        • ID:= - ---
        • -
        • Author: ---
        • -
        • Subject: ---
        • -
        • Date: ---
        • -
        -
        -
        -
          -
          -
          -
          -
          -
          -
          - -
          - - -
          -
          -
          - - -
          -
          - -
          -
          -
          - - -
          -

          - 3. Dictionary of list of dictionaries -

          - -
          - - mandatory - -
          -
          - -
          - - - -
          -
          -
          -
          -
          -
          - Score: 100.0% (Checks completed: 100.0%) -
          -
          - - -

          Using what you did in the task #0, extend your Python script to expo= -rt data in the JSON format.

          - -

          Requirements:

          - -
            -
          • Records all tasks from all employees
          • -
          • Format must be: { "USER_ID": [ {"username": "USERNAME", "task": "= -TASK_TITLE", "completed": TASK_COMPLETED_STATUS}, {"username": "USERNAME", = -"task": "TASK_TITLE", "completed": TASK_COMPLETED_STATUS}, ... ], "USER_ID"= -: [ {"username": "USERNAME", "task": "TASK_TITLE", "completed": TASK_COMPLE= -TED_STATUS}, {"username": "USERNAME", "task": "TASK_TITLE", "completed": TA= -SK_COMPLETED_STATUS}, ... ]}
          • -
          • File name must be: todo_all_employees.json
          • -
          - -

          Example:

          - -
          sylvain@ubuntu$ python3 3-dictionary_of_list_of_dictionaries.py
          -sylvain@ubuntu$ cat todo_all_employees.json
          -{"1": [{"username": "Bret", "task": "delectus aut autem", "completed": fals=
          -e}, {"username": "Bret", "task": "quis ut nam facilis et officia qui", "com=
          -pleted": false}, {"username": "Bret", "task": "fugiat veniam minus", "compl=
          -eted": false}, {"username": "Bret", "task": "et porro tempora", "completed"=
          -: true}, {"username": "Bret", "task": "laboriosam mollitia et enim quasi ad=
          -ipisci quia provident illum", "completed": false}, {"username": "Bret", "ta=
          -sk": "qui ullam ratione quibusdam voluptatem quia omnis", "completed": fals=
          -e}, {"username": "Bret", "task": "illo expedita consequatur quia in", "comp=
          -leted": false}, {"username": "Bret", "task": "quo adipisci enim quam ut ab"=
          -, "completed": true}, {"username": "Bret", "task": "molestiae perspiciatis =
          -ipsa", "completed": false}, {"username": "Bret", "task": "illo est ratione =
          -doloremque quia maiores aut", "completed": true}, {"username": "Bret", "tas=
          -k": "vero rerum temporibus dolor", "completed": true}, {"username": "Bret",=
          - "task": "ipsa repellendus fugit nisi", "completed": true}, {"username": "B=
          -ret", "task": "et doloremque nulla", "completed": false}, {"username": "Bre=
          -t", "task": "repellendus sunt dolores architecto voluptatum", "completed": =
          -true}, {"username": "Bret", "task": "ab voluptatum amet voluptas", "complet=
          -ed": true}, {"username": "Bret", "task": "accusamus eos facilis sint et aut=
          - voluptatem", "completed": true}, {"username": "Bret", "task": "quo laborio=
          -sam deleniti aut qui", "completed": true}, {"username": "Bret", "task": "do=
          -lorum est consequatur ea mollitia in culpa", "completed": false}, {"usernam=
          -e": "Bret", "task": "molestiae ipsa aut voluptatibus pariatur dolor nihil",=
          - "completed": true}, {"username": "Bret", "task": "ullam nobis libero sapie=
          -nte ad optio sint", "completed": true}], "2": [{"username": "Antonette", "t=
          -ask": "suscipit repellat esse quibusdam voluptatem incidunt", "completed": =
          -false}, {"username": "Antonette", "task": "distinctio vitae autem nihil ut =
          -molestias quo", "completed": true}, {"username": "Antonette", "task": "et i=
          -taque necessitatibus maxime molestiae qui quas velit", "completed": false},=
          - {"username": "Antonette", "task": "adipisci non ad dicta qui amet quaerat =
          -doloribus ea", "completed": false}, {"username": "Antonette", "task": "volu=
          -ptas quo tenetur perspiciatis explicabo natus", "completed": true}, {"usern=
          -ame": "Antonette", "task": "aliquam aut quasi", "completed": true}, {"usern=
          -ame": "Antonette", "task": "veritatis pariatur delectus", "completed": true=
          -}, {"username": "Antonette", "task": "nesciunt totam sit blanditiis sit", "=
          -completed": false}, {"username": "Antonette", "task": "laborum aut in quam"=
          -, "completed": false}, {"username": "Antonette", "task": "nemo perspiciatis=
          - repellat ut dolor libero commodi blanditiis omnis", "completed": true}, {"=
          -username": "Antonette", "task": "repudiandae totam in est sint facere fuga"=
          -, "completed": false}, {"username": "Antonette", "task": "earum doloribus e=
          -a doloremque quis", "completed": false}, {"username": "Antonette", "task": =
          -"sint sit aut vero", "completed": false}, {"username": "Antonette", "task":=
          - "porro aut necessitatibus eaque distinctio", "completed": false}, {"userna=
          -me": "Antonette", "task": "repellendus veritatis molestias dicta incidunt",=
          - "completed": true}, {"username": "Antonette", "task": "excepturi deleniti =
          -adipisci voluptatem et neque optio illum ad", "completed": true}, {"usernam=
          -e": "Antonette", "task": "sunt cum tempora", "completed": false}, {"usernam=
          -e": "Antonette", "task": "totam quia non", "completed": false}, {"username"=
          -: "Antonette", "task": "doloremque quibusdam asperiores libero corrupti ill=
          -um qui omnis", "completed": false}, {"username": "Antonette", "task": "tota=
          -m atque quo nesciunt", "completed": true}], "3": [{"username": "Samantha", =
          -"task": "aliquid amet impedit consequatur aspernatur placeat eaque fugiat s=
          -uscipit", "completed": false}, {"username": "Samantha", "task": "rerum perf=
          -erendis error quia ut eveniet", "completed": false}, {"username": "Samantha=
          -", "task": "tempore ut sint quis recusandae", "completed": true}, {"usernam=
          -e": "Samantha", "task": "cum debitis quis accusamus doloremque ipsa natus s=
          -apiente omnis", "completed": true}, {"username": "Samantha", "task": "velit=
          - soluta adipisci molestias reiciendis harum", "completed": false}, {"userna=
          -me": "Samantha", "task": "vel voluptatem repellat nihil placeat corporis", =
          -"completed": false}, {"username": "Samantha", "task": "nam qui rerum fugiat=
          - accusamus", "completed": false}, {"username": "Samantha", "task": "sit rep=
          -rehenderit omnis quia", "completed": false}, {"username": "Samantha", "task=
          -": "ut necessitatibus aut maiores debitis officia blanditiis velit et", "co=
          -mpleted": false}, {"username": "Samantha", "task": "cupiditate necessitatib=
          -us ullam aut quis dolor voluptate", "completed": true}, {"username": "Saman=
          -tha", "task": "distinctio exercitationem ab doloribus", "completed": false}=
          -, {"username": "Samantha", "task": "nesciunt dolorum quis recusandae ad par=
          -iatur ratione", "completed": false}, {"username": "Samantha", "task": "qui =
          -labore est occaecati recusandae aliquid quam", "completed": false}, {"usern=
          -ame": "Samantha", "task": "quis et est ut voluptate quam dolor", "completed=
          -": true}, {"username": "Samantha", "task": "voluptatum omnis minima qui occ=
          -aecati provident nulla voluptatem ratione", "completed": true}, {"username"=
          -: "Samantha", "task": "deleniti ea temporibus enim", "completed": true}, {"=
          -username": "Samantha", "task": "pariatur et magnam ea doloribus similique v=
          -oluptatem rerum quia", "completed": false}, {"username": "Samantha", "task"=
          -: "est dicta totam qui explicabo doloribus qui dignissimos", "completed": f=
          -alse}, {"username": "Samantha", "task": "perspiciatis velit id laborum plac=
          -eat iusto et aliquam odio", "completed": false}, {"username": "Samantha", "=
          -task": "et sequi qui architecto ut adipisci", "completed": true}], "4": [{"=
          -username": "Karianne", "task": "odit optio omnis qui sunt", "completed": tr=
          -ue}, {"username": "Karianne", "task": "et placeat et tempore aspernatur sin=
          -t numquam", "completed": false}, {"username": "Karianne", "task": "doloremq=
          -ue aut dolores quidem fuga qui nulla", "completed": true}, {"username": "Ka=
          -rianne", "task": "voluptas consequatur qui ut quia magnam nemo esse", "comp=
          -leted": false}, {"username": "Karianne", "task": "fugiat pariatur ratione u=
          -t asperiores necessitatibus magni", "completed": false}, {"username": "Kari=
          -anne", "task": "rerum eum molestias autem voluptatum sit optio", "completed=
          -": false}, {"username": "Karianne", "task": "quia voluptatibus voluptatem q=
          -uos similique maiores repellat", "completed": false}, {"username": "Kariann=
          -e", "task": "aut id perspiciatis voluptatem iusto", "completed": false}, {"=
          -username": "Karianne", "task": "doloribus sint dolorum ab adipisci itaque d=
          -ignissimos aliquam suscipit", "completed": false}, {"username": "Karianne",=
          - "task": "ut sequi accusantium et mollitia delectus sunt", "completed": fal=
          -se}, {"username": "Karianne", "task": "aut velit saepe ullam", "completed":=
          - false}, {"username": "Karianne", "task": "praesentium facilis facere quis =
          -harum voluptatibus voluptatem eum", "completed": false}, {"username": "Kari=
          -anne", "task": "sint amet quia totam corporis qui exercitationem commodi", =
          -"completed": true}, {"username": "Karianne", "task": "expedita tempore nobi=
          -s eveniet laborum maiores", "completed": false}, {"username": "Karianne", "=
          -task": "occaecati adipisci est possimus totam", "completed": false}, {"user=
          -name": "Karianne", "task": "sequi dolorem sed", "completed": true}, {"usern=
          -ame": "Karianne", "task": "maiores aut nesciunt delectus exercitationem vel=
          - assumenda eligendi at", "completed": false}, {"username": "Karianne", "tas=
          -k": "reiciendis est magnam amet nemo iste recusandae impedit quaerat", "com=
          -pleted": false}, {"username": "Karianne", "task": "eum ipsa maxime ut", "co=
          -mpleted": true}, {"username": "Karianne", "task": "tempore molestias dolore=
          -s rerum sequi voluptates ipsum consequatur", "completed": true}], "5": [{"u=
          -sername": "Kamren", "task": "suscipit qui totam", "completed": true}, {"use=
          -rname": "Kamren", "task": "voluptates eum voluptas et dicta", "completed": =
          -false}, {"username": "Kamren", "task": "quidem at rerum quis ex aut sit qua=
          -m", "completed": true}, {"username": "Kamren", "task": "sunt veritatis ut v=
          -oluptate", "completed": false}, {"username": "Kamren", "task": "et quia ad =
          -iste a", "completed": true}, {"username": "Kamren", "task": "incidunt ut sa=
          -epe autem", "completed": true}, {"username": "Kamren", "task": "laudantium =
          -quae eligendi consequatur quia et vero autem", "completed": true}, {"userna=
          -me": "Kamren", "task": "vitae aut excepturi laboriosam sint aliquam et et a=
          -ccusantium", "completed": false}, {"username": "Kamren", "task": "sequi ut =
          -omnis et", "completed": true}, {"username": "Kamren", "task": "molestiae ni=
          -si accusantium tenetur dolorem et", "completed": true}, {"username": "Kamre=
          -n", "task": "nulla quis consequatur saepe qui id expedita", "completed": tr=
          -ue}, {"username": "Kamren", "task": "in omnis laboriosam", "completed": tru=
          -e}, {"username": "Kamren", "task": "odio iure consequatur molestiae quibusd=
          -am necessitatibus quia sint", "completed": true}, {"username": "Kamren", "t=
          -ask": "facilis modi saepe mollitia", "completed": false}, {"username": "Kam=
          -ren", "task": "vel nihil et molestiae iusto assumenda nemo quo ut", "comple=
          -ted": true}, {"username": "Kamren", "task": "nobis suscipit ducimus enim as=
          -periores voluptas", "completed": false}, {"username": "Kamren", "task": "do=
          -lorum laboriosam eos qui iure aliquam", "completed": false}, {"username": "=
          -Kamren", "task": "debitis accusantium ut quo facilis nihil quis sapiente ne=
          -cessitatibus", "completed": true}, {"username": "Kamren", "task": "neque vo=
          -luptates ratione", "completed": false}, {"username": "Kamren", "task": "exc=
          -epturi a et neque qui expedita vel voluptate", "completed": false}], "6": [=
          -{"username": "Leopoldo_Corkery", "task": "explicabo enim cumque porro aperi=
          -am occaecati minima", "completed": false}, {"username": "Leopoldo_Corkery",=
          - "task": "sed ab consequatur", "completed": false}, {"username": "Leopoldo_=
          -Corkery", "task": "non sunt delectus illo nulla tenetur enim omnis", "compl=
          -eted": false}, {"username": "Leopoldo_Corkery", "task": "excepturi non laud=
          -antium quo", "completed": false}, {"username": "Leopoldo_Corkery", "task": =
          -"totam quia dolorem et illum repellat voluptas optio", "completed": true}, =
          -{"username": "Leopoldo_Corkery", "task": "ad illo quis voluptatem temporibu=
          -s", "completed": true}, {"username": "Leopoldo_Corkery", "task": "praesenti=
          -um facilis omnis laudantium fugit ad iusto nihil nesciunt", "completed": fa=
          -lse}, {"username": "Leopoldo_Corkery", "task": "a eos eaque nihil et exerci=
          -tationem incidunt delectus", "completed": true}, {"username": "Leopoldo_Cor=
          -kery", "task": "autem temporibus harum quisquam in culpa", "completed": tru=
          -e}, {"username": "Leopoldo_Corkery", "task": "aut aut ea corporis", "comple=
          -ted": true}, {"username": "Leopoldo_Corkery", "task": "magni accusantium la=
          -bore et id quis provident", "completed": false}, {"username": "Leopoldo_Cor=
          -kery", "task": "consectetur impedit quisquam qui deserunt non rerum consequ=
          -untur eius", "completed": false}, {"username": "Leopoldo_Corkery", "task": =
          -"quia atque aliquam sunt impedit voluptatum rerum assumenda nisi", "complet=
          -ed": false}, {"username": "Leopoldo_Corkery", "task": "cupiditate quos poss=
          -imus corporis quisquam exercitationem beatae", "completed": false}, {"usern=
          -ame": "Leopoldo_Corkery", "task": "sed et ea eum", "completed": false}, {"u=
          -sername": "Leopoldo_Corkery", "task": "ipsa dolores vel facilis ut", "compl=
          -eted": true}, {"username": "Leopoldo_Corkery", "task": "sequi quae est et q=
          -ui qui eveniet asperiores", "completed": false}, {"username": "Leopoldo_Cor=
          -kery", "task": "quia modi consequatur vero fugiat", "completed": false}, {"=
          -username": "Leopoldo_Corkery", "task": "corporis ducimus ea perspiciatis is=
          -te", "completed": false}, {"username": "Leopoldo_Corkery", "task": "dolorem=
          - laboriosam vel voluptas et aliquam quasi", "completed": false}], "7": [{"u=
          -sername": "Elwyn.Skiles", "task": "inventore aut nihil minima laudantium hi=
          -c qui omnis", "completed": true}, {"username": "Elwyn.Skiles", "task": "pro=
          -vident aut nobis culpa", "completed": true}, {"username": "Elwyn.Skiles", "=
          -task": "esse et quis iste est earum aut impedit", "completed": false}, {"us=
          -ername": "Elwyn.Skiles", "task": "qui consectetur id", "completed": false},=
          - {"username": "Elwyn.Skiles", "task": "aut quasi autem iste tempore illum p=
          -ossimus", "completed": false}, {"username": "Elwyn.Skiles", "task": "ut asp=
          -eriores perspiciatis veniam ipsum rerum saepe", "completed": true}, {"usern=
          -ame": "Elwyn.Skiles", "task": "voluptatem libero consectetur rerum ut", "co=
          -mpleted": true}, {"username": "Elwyn.Skiles", "task": "eius omnis est qui v=
          -oluptatem autem", "completed": false}, {"username": "Elwyn.Skiles", "task":=
          - "rerum culpa quis harum", "completed": false}, {"username": "Elwyn.Skiles"=
          -, "task": "nulla aliquid eveniet harum laborum libero alias ut unde", "comp=
          -leted": true}, {"username": "Elwyn.Skiles", "task": "qui ea incidunt quis",=
          - "completed": false}, {"username": "Elwyn.Skiles", "task": "qui molestiae v=
          -oluptatibus velit iure harum quisquam", "completed": true}, {"username": "E=
          -lwyn.Skiles", "task": "et labore eos enim rerum consequatur sunt", "complet=
          -ed": true}, {"username": "Elwyn.Skiles", "task": "molestiae doloribus et la=
          -borum quod ea", "completed": false}, {"username": "Elwyn.Skiles", "task": "=
          -facere ipsa nam eum voluptates reiciendis vero qui", "completed": false}, {=
          -"username": "Elwyn.Skiles", "task": "asperiores illo tempora fuga sed ut qu=
          -asi adipisci", "completed": false}, {"username": "Elwyn.Skiles", "task": "q=
          -ui sit non", "completed": false}, {"username": "Elwyn.Skiles", "task": "pla=
          -ceat minima consequatur rem qui ut", "completed": true}, {"username": "Elwy=
          -n.Skiles", "task": "consequatur doloribus id possimus voluptas a voluptatem=
          -", "completed": false}, {"username": "Elwyn.Skiles", "task": "aut consectet=
          -ur in blanditiis deserunt quia sed laboriosam", "completed": true}], "8": [=
          -{"username": "Maxime_Nienow", "task": "explicabo consectetur debitis volupt=
          -ates quas quae culpa rerum non", "completed": true}, {"username": "Maxime_N=
          -ienow", "task": "maiores accusantium architecto necessitatibus reiciendis e=
          -a aut", "completed": true}, {"username": "Maxime_Nienow", "task": "eum non =
          -recusandae cupiditate animi", "completed": false}, {"username": "Maxime_Nie=
          -now", "task": "ut eum exercitationem sint", "completed": false}, {"username=
          -": "Maxime_Nienow", "task": "beatae qui ullam incidunt voluptatem non nisi =
          -aliquam", "completed": false}, {"username": "Maxime_Nienow", "task": "moles=
          -tiae suscipit ratione nihil odio libero impedit vero totam", "completed": t=
          -rue}, {"username": "Maxime_Nienow", "task": "eum itaque quod reprehenderit =
          -et facilis dolor autem ut", "completed": true}, {"username": "Maxime_Nienow=
          -", "task": "esse quas et quo quasi exercitationem", "completed": false}, {"=
          -username": "Maxime_Nienow", "task": "animi voluptas quod perferendis est", =
          -"completed": false}, {"username": "Maxime_Nienow", "task": "eos amet tempor=
          -e laudantium fugit a", "completed": false}, {"username": "Maxime_Nienow", "=
          -task": "accusamus adipisci dicta qui quo ea explicabo sed vero", "completed=
          -": true}, {"username": "Maxime_Nienow", "task": "odit eligendi recusandae d=
          -oloremque cumque non", "completed": false}, {"username": "Maxime_Nienow", "=
          -task": "ea aperiam consequatur qui repellat eos", "completed": false}, {"us=
          -ername": "Maxime_Nienow", "task": "rerum non ex sapiente", "completed": tru=
          -e}, {"username": "Maxime_Nienow", "task": "voluptatem nobis consequatur et =
          -assumenda magnam", "completed": true}, {"username": "Maxime_Nienow", "task"=
          -: "nam quia quia nulla repellat assumenda quibusdam sit nobis", "completed"=
          -: true}, {"username": "Maxime_Nienow", "task": "dolorem veniam quisquam des=
          -erunt repellendus", "completed": true}, {"username": "Maxime_Nienow", "task=
          -": "debitis vitae delectus et harum accusamus aut deleniti a", "completed":=
          - true}, {"username": "Maxime_Nienow", "task": "debitis adipisci quibusdam a=
          -liquam sed dolore ea praesentium nobis", "completed": true}, {"username": "=
          -Maxime_Nienow", "task": "et praesentium aliquam est", "completed": false}],=
          - "9": [{"username": "Delphine", "task": "ex hic consequuntur earum omnis al=
          -ias ut occaecati culpa", "completed": true}, {"username": "Delphine", "task=
          -": "omnis laboriosam molestias animi sunt dolore", "completed": true}, {"us=
          -ername": "Delphine", "task": "natus corrupti maxime laudantium et voluptate=
          -m laboriosam odit", "completed": false}, {"username": "Delphine", "task": "=
          -reprehenderit quos aut aut consequatur est sed", "completed": false}, {"use=
          -rname": "Delphine", "task": "fugiat perferendis sed aut quidem", "completed=
          -": false}, {"username": "Delphine", "task": "quos quo possimus suscipit min=
          -ima ut", "completed": false}, {"username": "Delphine", "task": "et quis min=
          -us quo a asperiores molestiae", "completed": false}, {"username": "Delphine=
          -", "task": "recusandae quia qui sunt libero", "completed": false}, {"userna=
          -me": "Delphine", "task": "ea odio perferendis officiis", "completed": true}=
          -, {"username": "Delphine", "task": "quisquam aliquam quia doloribus aut", "=
          -completed": false}, {"username": "Delphine", "task": "fugiat aut voluptatib=
          -us corrupti deleniti velit iste odio", "completed": true}, {"username": "De=
          -lphine", "task": "et provident amet rerum consectetur et voluptatum", "comp=
          -leted": false}, {"username": "Delphine", "task": "harum ad aperiam quis", "=
          -completed": false}, {"username": "Delphine", "task": "similique aut quo", "=
          -completed": false}, {"username": "Delphine", "task": "laudantium eius offic=
          -ia perferendis provident perspiciatis asperiores", "completed": true}, {"us=
          -ername": "Delphine", "task": "magni soluta corrupti ut maiores rem quidem",=
          - "completed": false}, {"username": "Delphine", "task": "et placeat temporib=
          -us voluptas est tempora quos quibusdam", "completed": false}, {"username": =
          -"Delphine", "task": "nesciunt itaque commodi tempore", "completed": true}, =
          -{"username": "Delphine", "task": "omnis consequuntur cupiditate impedit ita=
          -que ipsam quo", "completed": true}, {"username": "Delphine", "task": "debit=
          -is nisi et dolorem repellat et", "completed": true}], "10": [{"username": "=
          -Moriah.Stanton", "task": "ut cupiditate sequi aliquam fuga maiores", "compl=
          -eted": false}, {"username": "Moriah.Stanton", "task": "inventore saepe cumq=
          -ue et aut illum enim", "completed": true}, {"username": "Moriah.Stanton", "=
          -task": "omnis nulla eum aliquam distinctio", "completed": true}, {"username=
          -": "Moriah.Stanton", "task": "molestias modi perferendis perspiciatis", "co=
          -mpleted": false}, {"username": "Moriah.Stanton", "task": "voluptates dignis=
          -simos sed doloribus animi quaerat aut", "completed": false}, {"username": "=
          -Moriah.Stanton", "task": "explicabo odio est et", "completed": false}, {"us=
          -ername": "Moriah.Stanton", "task": "consequuntur animi possimus", "complete=
          -d": false}, {"username": "Moriah.Stanton", "task": "vel non beatae est", "c=
          -ompleted": true}, {"username": "Moriah.Stanton", "task": "culpa eius et vol=
          -uptatem et", "completed": true}, {"username": "Moriah.Stanton", "task": "ac=
          -cusamus sint iusto et voluptatem exercitationem", "completed": true}, {"use=
          -rname": "Moriah.Stanton", "task": "temporibus atque distinctio omnis eius i=
          -mpedit tempore molestias pariatur", "completed": true}, {"username": "Moria=
          -h.Stanton", "task": "ut quas possimus exercitationem sint voluptates", "com=
          -pleted": false}, {"username": "Moriah.Stanton", "task": "rerum debitis volu=
          -ptatem qui eveniet tempora distinctio a", "completed": true}, {"username": =
          -"Moriah.Stanton", "task": "sed ut vero sit molestiae", "completed": false},=
          - {"username": "Moriah.Stanton", "task": "rerum ex veniam mollitia voluptati=
          -bus pariatur", "completed": true}, {"username": "Moriah.Stanton", "task": "=
          -consequuntur aut ut fugit similique", "completed": true}, {"username": "Mor=
          -iah.Stanton", "task": "dignissimos quo nobis earum saepe", "completed": tru=
          -e}, {"username": "Moriah.Stanton", "task": "quis eius est sint explicabo", =
          -"completed": true}, {"username": "Moriah.Stanton", "task": "numquam repelle=
          -ndus a magnam", "completed": true}, {"username": "Moriah.Stanton", "task": =
          -"ipsam aperiam voluptates qui", "completed": false}]}sylvain@ubuntu$
          -
          - -
          - -
          - - - -
          -

          Repo:

          -
            -
          • GitHub repository: alx-system_engineering-devops= -
          • -
          • Directory: 0x15-api
          • -
          • File: 3-dictionary_of_list_of_dictionaries.py<= -/li> -
          -
          - - -
          - - -
          -
          - =20 -
          - - - -
          -
          -
          -
          - -

          Learners who are done with "3. Dictio= -nary of list of dictionaries"

          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          - - - -
          -
          -
          -
          - -

          Correction of "3. Dictionary of l= -ist of dictionaries"

          -
          -
          -
          -
          -
          - - - - -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          - -
          - -
          -
          -
          - - Requirement success -
          -
          - - Requirement fail -
          -
          -
          -
          - - Code success -
          -
          - - Code fail -
          -
          -
          -
          - - Efficiency success -
          -
          - - Efficiency fail -
          -
          -
          -
          - - Text answer success -
          -
          - - Text answer fail -
          -
          -
          -
          - - Skipped - Previous check failed -
          -
          -
          -
          - -
          -
          -
          -
          - - - - -
          -
          -
          -
          - -

          3. Dictionary of list of dictiona= -ries

          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          Commit used:
          -
            -
          • User: ---
          • -
          • URL: Click here
          • -
          • ID:= - ---
          • -
          • Author: ---
          • -
          • Subject: ---
          • -
          • Date: ---
          • -
          -
          -
          -
            -
            -
            -
            -
            -
            -
            - -
            - - -
            -
            -
            - - -
            -
            - -
            - - - - - -

            Recommended Sandbox

            <= -div data-react-class=3D"user_containers/ContainerSpecs" data-react-props=3D= -"{"containerModelName":"Sandbox","containerSpecs&q= -uot;:[{"description":"\u003cp\u003eBasic Ubuntu 20.04, with = -vim, emacs, curl, wget and all needed for Foundations\u003c/p\u003e\n"= -,"id":39,"name":"Ubuntu 20.04","online&q= -uot;:true,"container":{"container_id":null,"id&quo= -t;:347594,"restart_uri":"/user_containers/347594/restart.jso= -n","status":"asleep","uri":"/user_c= -ontainers/347594.json","wake_uri":"/user_containers/347= -594/wake.json","webterm_uri":"/user_containers/347594/w= -ebterm","host":null,"password":"7347ed6d8844f= -e21bd7f","ports":{"22":56950,"3000":5694= -7,"3306":56946,"4000":56945,"443":56948,"= -;5001":56943,"80":56949,"5000":56944,"8000&qu= -ot;:56942,"8080":56941}}}],"containersLimit":2,"cs= -rfToken":"N0ECFdm--ZOv078ZSJ8Ozy26SejPdDkvMBxLidyUjWqryUgp2j-RrzX= -O9dZdyJg6XZj6D-eHA1Po5wg_TgpzpA","startStatusURI":"/use= -r_containers/start_status.json","startURI":"/user_conta= -iners/start.json"}" data-react-cache-id=3D"user_containers/ContainerSp= -ecs-0">
            Running only

            1 image(1/2 Sandboxes= - spawned)

            Ubuntu 20.04Asleep

            Basic Ubuntu 20.04, with vim, emacs, curl, wget and all needed for= - Foundations

            -
            <= -/div>
            - -
            -
            - - -
            - -
            Copyright =C2=A9 2023 ALX, All rights reserv= -ed.
            - -
            - - - -
            -
            -
            -
            -
            - -
            - -
            -
            -
            -
            -
            -
            -
            -
            -
            - -
            -
            -
            -
            - - - -
            -
            -
            -
            - -

            Markdown Guide

            -
            -
            -

            Emphasis

            -
            **bold**
            -*italics*
            -~~strikethrough~~
            -

            Headers

            -
            # Big header
            -## Medium header
            -### Small header
            -#### Tiny header
            -

            Lists

            -
            * Generic list item
            -* Generic list item
            -* Generic list item
            -
            -1. Numbered list item
            -2. Numbered list item
            -3. Numbered list item
            -

            Links

            -
            [Text to display](http://www.example.com)
            -

            Quotes

            -
            > This is a quote.
            -> It can span multiple lines!
            -

            Images

            -

            CSS style available: width, height, opacity

            -
            ![](http://www.example.com/image.jpg)
            -![](http://www.example.com/image.jpg | width: 200px)
            -![](http://www.example.com/image.jpg | height: 124px | width: 80px | opacit=
            -y: 0.6)
            -
            -

            Tables

            -
            | Column 1 | Column 2 | Column 3 |
            -| -------- | -------- | -------- |
            -| John     | Doe      | Male     |
            -| Mary     | Smith    | Female   |
            -
            -Or without aligning the columns...
            -
            -| Column 1 | Column 2 | Column 3 |
            -| -------- | -------- | -------- |
            -| John | Doe | Male |
            -| Mary | Smith | Female |
            -
            -

            Displaying code

            -
            `var example =3D "hello!";`
            -
            -Or spanning multiple lines...
            -
            -```
            -var example =3D "hello!";
            -alert(example);
            -```
            -
            -
            -
            -
            - - - =20 - -<= -template shadowmode=3D"open">
            -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: text/css -Content-Transfer-Encoding: quoted-printable -Content-Location: https://use.typekit.net/xgz4ilr.css - -@charset "utf-8"; - -@import url("https://p.typekit.net/p.css?s=3D1&k=3Dxgz4ilr&ht=3Dtk&f=3D1403= -2.14034.14038.21510&a=3D82845077&app=3Dtypekit&e=3Dcss"); - -@font-face { font-family: aktiv-grotesk; src: url("https://use.typekit.net/= -af/affdf5/00000000000000003b9b0328/27/l?primer=3D057d1dff47772f391f5f6c189a= -a213bb70116047eaffac2e52d3626ff163c8d1&fvd=3Dn4&v=3D3") format("woff2"), ur= -l("https://use.typekit.net/af/affdf5/00000000000000003b9b0328/27/d?primer= -=3D057d1dff47772f391f5f6c189aa213bb70116047eaffac2e52d3626ff163c8d1&fvd=3Dn= -4&v=3D3") format("woff"), url("https://use.typekit.net/af/affdf5/0000000000= -0000003b9b0328/27/a?primer=3D057d1dff47772f391f5f6c189aa213bb70116047eaffac= -2e52d3626ff163c8d1&fvd=3Dn4&v=3D3") format("opentype"); font-display: auto;= - font-style: normal; font-weight: 400; font-stretch: normal; } - -@font-face { font-family: aktiv-grotesk; src: url("https://use.typekit.net/= -af/b5ce2a/00000000000000003b9b032d/27/l?primer=3D057d1dff47772f391f5f6c189a= -a213bb70116047eaffac2e52d3626ff163c8d1&fvd=3Dn7&v=3D3") format("woff2"), ur= -l("https://use.typekit.net/af/b5ce2a/00000000000000003b9b032d/27/d?primer= -=3D057d1dff47772f391f5f6c189aa213bb70116047eaffac2e52d3626ff163c8d1&fvd=3Dn= -7&v=3D3") format("woff"), url("https://use.typekit.net/af/b5ce2a/0000000000= -0000003b9b032d/27/a?primer=3D057d1dff47772f391f5f6c189aa213bb70116047eaffac= -2e52d3626ff163c8d1&fvd=3Dn7&v=3D3") format("opentype"); font-display: auto;= - font-style: normal; font-weight: 700; font-stretch: normal; } - -@font-face { font-family: aktiv-grotesk; src: url("https://use.typekit.net/= -af/67187a/00000000000000003b9b032a/27/l?primer=3D057d1dff47772f391f5f6c189a= -a213bb70116047eaffac2e52d3626ff163c8d1&fvd=3Dn5&v=3D3") format("woff2"), ur= -l("https://use.typekit.net/af/67187a/00000000000000003b9b032a/27/d?primer= -=3D057d1dff47772f391f5f6c189aa213bb70116047eaffac2e52d3626ff163c8d1&fvd=3Dn= -5&v=3D3") format("woff"), url("https://use.typekit.net/af/67187a/0000000000= -0000003b9b032a/27/a?primer=3D057d1dff47772f391f5f6c189aa213bb70116047eaffac= -2e52d3626ff163c8d1&fvd=3Dn5&v=3D3") format("opentype"); font-display: auto;= - font-style: normal; font-weight: 500; font-stretch: normal; } - -@font-face { font-family: aktiv-grotesk; src: url("https://use.typekit.net/= -af/97f831/000000000000000000017875/27/l?primer=3D057d1dff47772f391f5f6c189a= -a213bb70116047eaffac2e52d3626ff163c8d1&fvd=3Dn8&v=3D3") format("woff2"), ur= -l("https://use.typekit.net/af/97f831/000000000000000000017875/27/d?primer= -=3D057d1dff47772f391f5f6c189aa213bb70116047eaffac2e52d3626ff163c8d1&fvd=3Dn= -8&v=3D3") format("woff"), url("https://use.typekit.net/af/97f831/0000000000= -00000000017875/27/a?primer=3D057d1dff47772f391f5f6c189aa213bb70116047eaffac= -2e52d3626ff163c8d1&fvd=3Dn8&v=3D3") format("opentype"); font-display: auto;= - font-style: normal; font-weight: 800; font-stretch: normal; } - -.tk-aktiv-grotesk { font-family: aktiv-grotesk, sans-serif; } -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: text/css -Content-Transfer-Encoding: quoted-printable -Content-Location: https://p.typekit.net/p.css?s=1&k=xgz4ilr&ht=tk&f=14032.14034.14038.21510&a=82845077&app=typekit&e=css - -@charset "utf-8"; -=0A -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: text/css -Content-Transfer-Encoding: quoted-printable -Content-Location: https://intranet.alxswe.com/assets/application_alx-c7c1f69331c043a30f622972e630351ab90b3ba1312da9777d10479a90f92eeb.css - -@charset "utf-8"; - -@import url("/assets/bootstrap-slider/dist/css/bootstrap-slider-934dd091b4b= -d05d1a8f1dd81023987aac8c61d906a162b1855cdbcb2792c7d5b.css"); - -html { font-family: sans-serif; text-size-adjust: 100%; } - -body { margin: 0px; } - -article, aside, details, figcaption, figure, footer, header, hgroup, main, = -menu, nav, section, summary { display: block; } - -audio, canvas, progress, video { display: inline-block; vertical-align: bas= -eline; } - -audio:not([controls]) { display: none; height: 0px; } - -[hidden], template { display: none; } - -a { background-color: transparent; } - -a:active, a:hover { outline: 0px; } - -abbr[title] { border-bottom: none; text-decoration: underline dotted; } - -b, strong { font-weight: bold; } - -dfn { font-style: italic; } - -h1 { font-size: 2em; margin: 0.67em 0px; } - -mark { background: rgb(255, 255, 0); color: rgb(0, 0, 0); } - -small { font-size: 80%; } - -sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-ali= -gn: baseline; } - -sup { top: -0.5em; } - -sub { bottom: -0.25em; } - -img { border: 0px; } - -svg:not(:root) { overflow: hidden; } - -figure { margin: 1em 40px; } - -hr { box-sizing: content-box; height: 0px; } - -pre { overflow: auto; } - -code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } - -button, input, optgroup, select, textarea { color: inherit; font: inherit; = -margin: 0px; } - -button { overflow: visible; } - -button, select { text-transform: none; } - -button, html input[type=3D"button"], input[type=3D"reset"], input[type=3D"s= -ubmit"] { appearance: button; cursor: pointer; } - -button[disabled], html input[disabled] { cursor: default; } - -input { line-height: normal; } - -input[type=3D"checkbox"], input[type=3D"radio"] { box-sizing: border-box; p= -adding: 0px; } - -input[type=3D"number"]::-webkit-inner-spin-button, input[type=3D"number"]::= --webkit-outer-spin-button { height: auto; } - -input[type=3D"search"] { appearance: textfield; box-sizing: content-box; } - -input[type=3D"search"]::-webkit-search-cancel-button, input[type=3D"search"= -]::-webkit-search-decoration { appearance: none; } - -fieldset { border: 1px solid rgb(192, 192, 192); margin: 0px 2px; padding: = -0.35em 0.625em 0.75em; } - -legend { border: 0px; padding: 0px; } - -textarea { overflow: auto; } - -optgroup { font-weight: bold; } - -table { border-collapse: collapse; border-spacing: 0px; } - -td, th { padding: 0px; } - -@media print { - *, ::before, ::after { color: rgb(0, 0, 0) !important; text-shadow: none = -!important; background: transparent !important; box-shadow: none !important= -; } - a, a:visited { text-decoration: underline; } - a[href]::after { content: " (" attr(href) ")"; } - abbr[title]::after { content: " (" attr(title) ")"; } - a[href^=3D"#"]::after, a[href^=3D"javascript:"]::after { content: ""; } - pre, blockquote { border: 1px solid rgb(153, 153, 153); break-inside: avo= -id; } - thead { display: table-header-group; } - tr, img { break-inside: avoid; } - img { max-width: 100% !important; } - p, h2, h3 { orphans: 3; widows: 3; } - h2, h3 { break-after: avoid; } - .navbar { display: none; } - .btn > .caret, .dropup > .btn > .caret { border-top-color: rgb(0, 0, 0) != -important; } - .label { border: 1px solid rgb(0, 0, 0); } - .table { border-collapse: collapse !important; } - .table td, .table th { background-color: rgb(255, 255, 255) !important; } - .table-bordered th, .table-bordered td { border: 1px solid rgb(221, 221, = -221) !important; } -} - -@font-face { font-family: "Glyphicons Halflings"; src: url("/assets/bootstr= -ap/glyphicons-halflings-regular-4511059bac53be6b8d5d9a60139058a3ee67becaa2d= -f739e2e67dd27f22324f8.woff2") format("woff2"), url("/assets/bootstrap/glyph= -icons-halflings-regular-b08ae9af0bd2e112a8d6b543e83159dc9b3ce5596fe97ffb8b8= -330db8afc4b08.woff") format("woff"), url("/assets/bootstrap/glyphicons-half= -lings-regular-7e35b4a8ce4d46ea22f0ef6c244b5ec1aa20e4dd957f050b9906f27bfd10e= -237.ttf") format("truetype"); } - -.glyphicon { position: relative; top: 1px; display: inline-block; font-fami= -ly: "Glyphicons Halflings"; font-style: normal; font-weight: 400; line-heig= -ht: 1; -webkit-font-smoothing: antialiased; } - -.glyphicon-asterisk::before { content: "*"; } - -.glyphicon-plus::before { content: "+"; } - -.glyphicon-euro::before, .glyphicon-eur::before { content: "=E2=82=AC"; } - -.glyphicon-minus::before { content: "=E2=88=92"; } - -.glyphicon-cloud::before { content: "=E2=98=81"; } - -.glyphicon-envelope::before { content: "=E2=9C=89"; } - -.glyphicon-pencil::before { content: "=E2=9C=8F"; } - -.glyphicon-glass::before { content: "=EE=80=81"; } - -.glyphicon-music::before { content: "=EE=80=82"; } - -.glyphicon-search::before { content: "=EE=80=83"; } - -.glyphicon-heart::before { content: "=EE=80=85"; } - -.glyphicon-star::before { content: "=EE=80=86"; } - -.glyphicon-star-empty::before { content: "=EE=80=87"; } - -.glyphicon-user::before { content: "=EE=80=88"; } - -.glyphicon-film::before { content: "=EE=80=89"; } - -.glyphicon-th-large::before { content: "=EE=80=90"; } - -.glyphicon-th::before { content: "=EE=80=91"; } - -.glyphicon-th-list::before { content: "=EE=80=92"; } - -.glyphicon-ok::before { content: "=EE=80=93"; } - -.glyphicon-remove::before { content: "=EE=80=94"; } - -.glyphicon-zoom-in::before { content: "=EE=80=95"; } - -.glyphicon-zoom-out::before { content: "=EE=80=96"; } - -.glyphicon-off::before { content: "=EE=80=97"; } - -.glyphicon-signal::before { content: "=EE=80=98"; } - -.glyphicon-cog::before { content: "=EE=80=99"; } - -.glyphicon-trash::before { content: "=EE=80=A0"; } - -.glyphicon-home::before { content: "=EE=80=A1"; } - -.glyphicon-file::before { content: "=EE=80=A2"; } - -.glyphicon-time::before { content: "=EE=80=A3"; } - -.glyphicon-road::before { content: "=EE=80=A4"; } - -.glyphicon-download-alt::before { content: "=EE=80=A5"; } - -.glyphicon-download::before { content: "=EE=80=A6"; } - -.glyphicon-upload::before { content: "=EE=80=A7"; } - -.glyphicon-inbox::before { content: "=EE=80=A8"; } - -.glyphicon-play-circle::before { content: "=EE=80=A9"; } - -.glyphicon-repeat::before { content: "=EE=80=B0"; } - -.glyphicon-refresh::before { content: "=EE=80=B1"; } - -.glyphicon-list-alt::before { content: "=EE=80=B2"; } - -.glyphicon-lock::before { content: "=EE=80=B3"; } - -.glyphicon-flag::before { content: "=EE=80=B4"; } - -.glyphicon-headphones::before { content: "=EE=80=B5"; } - -.glyphicon-volume-off::before { content: "=EE=80=B6"; } - -.glyphicon-volume-down::before { content: "=EE=80=B7"; } - -.glyphicon-volume-up::before { content: "=EE=80=B8"; } - -.glyphicon-qrcode::before { content: "=EE=80=B9"; } - -.glyphicon-barcode::before { content: "=EE=81=80"; } - -.glyphicon-tag::before { content: "=EE=81=81"; } - -.glyphicon-tags::before { content: "=EE=81=82"; } - -.glyphicon-book::before { content: "=EE=81=83"; } - -.glyphicon-bookmark::before { content: "=EE=81=84"; } - -.glyphicon-print::before { content: "=EE=81=85"; } - -.glyphicon-camera::before { content: "=EE=81=86"; } - -.glyphicon-font::before { content: "=EE=81=87"; } - -.glyphicon-bold::before { content: "=EE=81=88"; } - -.glyphicon-italic::before { content: "=EE=81=89"; } - -.glyphicon-text-height::before { content: "=EE=81=90"; } - -.glyphicon-text-width::before { content: "=EE=81=91"; } - -.glyphicon-align-left::before { content: "=EE=81=92"; } - -.glyphicon-align-center::before { content: "=EE=81=93"; } - -.glyphicon-align-right::before { content: "=EE=81=94"; } - -.glyphicon-align-justify::before { content: "=EE=81=95"; } - -.glyphicon-list::before { content: "=EE=81=96"; } - -.glyphicon-indent-left::before { content: "=EE=81=97"; } - -.glyphicon-indent-right::before { content: "=EE=81=98"; } - -.glyphicon-facetime-video::before { content: "=EE=81=99"; } - -.glyphicon-picture::before { content: "=EE=81=A0"; } - -.glyphicon-map-marker::before { content: "=EE=81=A2"; } - -.glyphicon-adjust::before { content: "=EE=81=A3"; } - -.glyphicon-tint::before { content: "=EE=81=A4"; } - -.glyphicon-edit::before { content: "=EE=81=A5"; } - -.glyphicon-share::before { content: "=EE=81=A6"; } - -.glyphicon-check::before { content: "=EE=81=A7"; } - -.glyphicon-move::before { content: "=EE=81=A8"; } - -.glyphicon-step-backward::before { content: "=EE=81=A9"; } - -.glyphicon-fast-backward::before { content: "=EE=81=B0"; } - -.glyphicon-backward::before { content: "=EE=81=B1"; } - -.glyphicon-play::before { content: "=EE=81=B2"; } - -.glyphicon-pause::before { content: "=EE=81=B3"; } - -.glyphicon-stop::before { content: "=EE=81=B4"; } - -.glyphicon-forward::before { content: "=EE=81=B5"; } - -.glyphicon-fast-forward::before { content: "=EE=81=B6"; } - -.glyphicon-step-forward::before { content: "=EE=81=B7"; } - -.glyphicon-eject::before { content: "=EE=81=B8"; } - -.glyphicon-chevron-left::before { content: "=EE=81=B9"; } - -.glyphicon-chevron-right::before { content: "=EE=82=80"; } - -.glyphicon-plus-sign::before { content: "=EE=82=81"; } - -.glyphicon-minus-sign::before { content: "=EE=82=82"; } - -.glyphicon-remove-sign::before { content: "=EE=82=83"; } - -.glyphicon-ok-sign::before { content: "=EE=82=84"; } - -.glyphicon-question-sign::before { content: "=EE=82=85"; } - -.glyphicon-info-sign::before { content: "=EE=82=86"; } - -.glyphicon-screenshot::before { content: "=EE=82=87"; } - -.glyphicon-remove-circle::before { content: "=EE=82=88"; } - -.glyphicon-ok-circle::before { content: "=EE=82=89"; } - -.glyphicon-ban-circle::before { content: "=EE=82=90"; } - -.glyphicon-arrow-left::before { content: "=EE=82=91"; } - -.glyphicon-arrow-right::before { content: "=EE=82=92"; } - -.glyphicon-arrow-up::before { content: "=EE=82=93"; } - -.glyphicon-arrow-down::before { content: "=EE=82=94"; } - -.glyphicon-share-alt::before { content: "=EE=82=95"; } - -.glyphicon-resize-full::before { content: "=EE=82=96"; } - -.glyphicon-resize-small::before { content: "=EE=82=97"; } - -.glyphicon-exclamation-sign::before { content: "=EE=84=81"; } - -.glyphicon-gift::before { content: "=EE=84=82"; } - -.glyphicon-leaf::before { content: "=EE=84=83"; } - -.glyphicon-fire::before { content: "=EE=84=84"; } - -.glyphicon-eye-open::before { content: "=EE=84=85"; } - -.glyphicon-eye-close::before { content: "=EE=84=86"; } - -.glyphicon-warning-sign::before { content: "=EE=84=87"; } - -.glyphicon-plane::before { content: "=EE=84=88"; } - -.glyphicon-calendar::before { content: "=EE=84=89"; } - -.glyphicon-random::before { content: "=EE=84=90"; } - -.glyphicon-comment::before { content: "=EE=84=91"; } - -.glyphicon-magnet::before { content: "=EE=84=92"; } - -.glyphicon-chevron-up::before { content: "=EE=84=93"; } - -.glyphicon-chevron-down::before { content: "=EE=84=94"; } - -.glyphicon-retweet::before { content: "=EE=84=95"; } - -.glyphicon-shopping-cart::before { content: "=EE=84=96"; } - -.glyphicon-folder-close::before { content: "=EE=84=97"; } - -.glyphicon-folder-open::before { content: "=EE=84=98"; } - -.glyphicon-resize-vertical::before { content: "=EE=84=99"; } - -.glyphicon-resize-horizontal::before { content: "=EE=84=A0"; } - -.glyphicon-hdd::before { content: "=EE=84=A1"; } - -.glyphicon-bullhorn::before { content: "=EE=84=A2"; } - -.glyphicon-bell::before { content: "=EE=84=A3"; } - -.glyphicon-certificate::before { content: "=EE=84=A4"; } - -.glyphicon-thumbs-up::before { content: "=EE=84=A5"; } - -.glyphicon-thumbs-down::before { content: "=EE=84=A6"; } - -.glyphicon-hand-right::before { content: "=EE=84=A7"; } - -.glyphicon-hand-left::before { content: "=EE=84=A8"; } - -.glyphicon-hand-up::before { content: "=EE=84=A9"; } - -.glyphicon-hand-down::before { content: "=EE=84=B0"; } - -.glyphicon-circle-arrow-right::before { content: "=EE=84=B1"; } - -.glyphicon-circle-arrow-left::before { content: "=EE=84=B2"; } - -.glyphicon-circle-arrow-up::before { content: "=EE=84=B3"; } - -.glyphicon-circle-arrow-down::before { content: "=EE=84=B4"; } - -.glyphicon-globe::before { content: "=EE=84=B5"; } - -.glyphicon-wrench::before { content: "=EE=84=B6"; } - -.glyphicon-tasks::before { content: "=EE=84=B7"; } - -.glyphicon-filter::before { content: "=EE=84=B8"; } - -.glyphicon-briefcase::before { content: "=EE=84=B9"; } - -.glyphicon-fullscreen::before { content: "=EE=85=80"; } - -.glyphicon-dashboard::before { content: "=EE=85=81"; } - -.glyphicon-paperclip::before { content: "=EE=85=82"; } - -.glyphicon-heart-empty::before { content: "=EE=85=83"; } - -.glyphicon-link::before { content: "=EE=85=84"; } - -.glyphicon-phone::before { content: "=EE=85=85"; } - -.glyphicon-pushpin::before { content: "=EE=85=86"; } - -.glyphicon-usd::before { content: "=EE=85=88"; } - -.glyphicon-gbp::before { content: "=EE=85=89"; } - -.glyphicon-sort::before { content: "=EE=85=90"; } - -.glyphicon-sort-by-alphabet::before { content: "=EE=85=91"; } - -.glyphicon-sort-by-alphabet-alt::before { content: "=EE=85=92"; } - -.glyphicon-sort-by-order::before { content: "=EE=85=93"; } - -.glyphicon-sort-by-order-alt::before { content: "=EE=85=94"; } - -.glyphicon-sort-by-attributes::before { content: "=EE=85=95"; } - -.glyphicon-sort-by-attributes-alt::before { content: "=EE=85=96"; } - -.glyphicon-unchecked::before { content: "=EE=85=97"; } - -.glyphicon-expand::before { content: "=EE=85=98"; } - -.glyphicon-collapse-down::before { content: "=EE=85=99"; } - -.glyphicon-collapse-up::before { content: "=EE=85=A0"; } - -.glyphicon-log-in::before { content: "=EE=85=A1"; } - -.glyphicon-flash::before { content: "=EE=85=A2"; } - -.glyphicon-log-out::before { content: "=EE=85=A3"; } - -.glyphicon-new-window::before { content: "=EE=85=A4"; } - -.glyphicon-record::before { content: "=EE=85=A5"; } - -.glyphicon-save::before { content: "=EE=85=A6"; } - -.glyphicon-open::before { content: "=EE=85=A7"; } - -.glyphicon-saved::before { content: "=EE=85=A8"; } - -.glyphicon-import::before { content: "=EE=85=A9"; } - -.glyphicon-export::before { content: "=EE=85=B0"; } - -.glyphicon-send::before { content: "=EE=85=B1"; } - -.glyphicon-floppy-disk::before { content: "=EE=85=B2"; } - -.glyphicon-floppy-saved::before { content: "=EE=85=B3"; } - -.glyphicon-floppy-remove::before { content: "=EE=85=B4"; } - -.glyphicon-floppy-save::before { content: "=EE=85=B5"; } - -.glyphicon-floppy-open::before { content: "=EE=85=B6"; } - -.glyphicon-credit-card::before { content: "=EE=85=B7"; } - -.glyphicon-transfer::before { content: "=EE=85=B8"; } - -.glyphicon-cutlery::before { content: "=EE=85=B9"; } - -.glyphicon-header::before { content: "=EE=86=80"; } - -.glyphicon-compressed::before { content: "=EE=86=81"; } - -.glyphicon-earphone::before { content: "=EE=86=82"; } - -.glyphicon-phone-alt::before { content: "=EE=86=83"; } - -.glyphicon-tower::before { content: "=EE=86=84"; } - -.glyphicon-stats::before { content: "=EE=86=85"; } - -.glyphicon-sd-video::before { content: "=EE=86=86"; } - -.glyphicon-hd-video::before { content: "=EE=86=87"; } - -.glyphicon-subtitles::before { content: "=EE=86=88"; } - -.glyphicon-sound-stereo::before { content: "=EE=86=89"; } - -.glyphicon-sound-dolby::before { content: "=EE=86=90"; } - -.glyphicon-sound-5-1::before { content: "=EE=86=91"; } - -.glyphicon-sound-6-1::before { content: "=EE=86=92"; } - -.glyphicon-sound-7-1::before { content: "=EE=86=93"; } - -.glyphicon-copyright-mark::before { content: "=EE=86=94"; } - -.glyphicon-registration-mark::before { content: "=EE=86=95"; } - -.glyphicon-cloud-download::before { content: "=EE=86=97"; } - -.glyphicon-cloud-upload::before { content: "=EE=86=98"; } - -.glyphicon-tree-conifer::before { content: "=EE=86=99"; } - -.glyphicon-tree-deciduous::before { content: "=EE=88=80"; } - -.glyphicon-cd::before { content: "=EE=88=81"; } - -.glyphicon-save-file::before { content: "=EE=88=82"; } - -.glyphicon-open-file::before { content: "=EE=88=83"; } - -.glyphicon-level-up::before { content: "=EE=88=84"; } - -.glyphicon-copy::before { content: "=EE=88=85"; } - -.glyphicon-paste::before { content: "=EE=88=86"; } - -.glyphicon-alert::before { content: "=EE=88=89"; } - -.glyphicon-equalizer::before { content: "=EE=88=90"; } - -.glyphicon-king::before { content: "=EE=88=91"; } - -.glyphicon-queen::before { content: "=EE=88=92"; } - -.glyphicon-pawn::before { content: "=EE=88=93"; } - -.glyphicon-bishop::before { content: "=EE=88=94"; } - -.glyphicon-knight::before { content: "=EE=88=95"; } - -.glyphicon-baby-formula::before { content: "=EE=88=96"; } - -.glyphicon-tent::before { content: "=E2=9B=BA"; } - -.glyphicon-blackboard::before { content: "=EE=88=98"; } - -.glyphicon-bed::before { content: "=EE=88=99"; } - -.glyphicon-apple::before { content: "=EF=A3=BF"; } - -.glyphicon-erase::before { content: "=EE=88=A1"; } - -.glyphicon-hourglass::before { content: "=E2=8C=9B"; } - -.glyphicon-lamp::before { content: "=EE=88=A3"; } - -.glyphicon-duplicate::before { content: "=EE=88=A4"; } - -.glyphicon-piggy-bank::before { content: "=EE=88=A5"; } - -.glyphicon-scissors::before { content: "=EE=88=A6"; } - -.glyphicon-bitcoin::before { content: "=EE=88=A7"; } - -.glyphicon-btc::before { content: "=EE=88=A7"; } - -.glyphicon-xbt::before { content: "=EE=88=A7"; } - -.glyphicon-yen::before { content: "=C2=A5"; } - -.glyphicon-jpy::before { content: "=C2=A5"; } - -.glyphicon-ruble::before { content: "=E2=82=BD"; } - -.glyphicon-rub::before { content: "=E2=82=BD"; } - -.glyphicon-scale::before { content: "=EE=88=B0"; } - -.glyphicon-ice-lolly::before { content: "=EE=88=B1"; } - -.glyphicon-ice-lolly-tasted::before { content: "=EE=88=B2"; } - -.glyphicon-education::before { content: "=EE=88=B3"; } - -.glyphicon-option-horizontal::before { content: "=EE=88=B4"; } - -.glyphicon-option-vertical::before { content: "=EE=88=B5"; } - -.glyphicon-menu-hamburger::before { content: "=EE=88=B6"; } - -.glyphicon-modal-window::before { content: "=EE=88=B7"; } - -.glyphicon-oil::before { content: "=EE=88=B8"; } - -.glyphicon-grain::before { content: "=EE=88=B9"; } - -.glyphicon-sunglasses::before { content: "=EE=89=80"; } - -.glyphicon-text-size::before { content: "=EE=89=81"; } - -.glyphicon-text-color::before { content: "=EE=89=82"; } - -.glyphicon-text-background::before { content: "=EE=89=83"; } - -.glyphicon-object-align-top::before { content: "=EE=89=84"; } - -.glyphicon-object-align-bottom::before { content: "=EE=89=85"; } - -.glyphicon-object-align-horizontal::before { content: "=EE=89=86"; } - -.glyphicon-object-align-left::before { content: "=EE=89=87"; } - -.glyphicon-object-align-vertical::before { content: "=EE=89=88"; } - -.glyphicon-object-align-right::before { content: "=EE=89=89"; } - -.glyphicon-triangle-right::before { content: "=EE=89=90"; } - -.glyphicon-triangle-left::before { content: "=EE=89=91"; } - -.glyphicon-triangle-bottom::before { content: "=EE=89=92"; } - -.glyphicon-triangle-top::before { content: "=EE=89=93"; } - -.glyphicon-console::before { content: "=EE=89=94"; } - -.glyphicon-superscript::before { content: "=EE=89=95"; } - -.glyphicon-subscript::before { content: "=EE=89=96"; } - -.glyphicon-menu-left::before { content: "=EE=89=97"; } - -.glyphicon-menu-right::before { content: "=EE=89=98"; } - -.glyphicon-menu-down::before { content: "=EE=89=99"; } - -.glyphicon-menu-up::before { content: "=EE=89=A0"; } - -* { box-sizing: border-box; } - -::before, ::after { box-sizing: border-box; } - -html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - -body { font-family: aktiv-grotesk, sans-serif; font-size: 14px; line-height= -: 1.42857; color: rgb(51, 51, 51); background-color: rgb(255, 255, 255); } - -input, button, select, textarea { font-family: inherit; font-size: inherit;= - line-height: inherit; } - -a { color: rgb(219, 62, 62); text-decoration: none; } - -a:hover, a:focus { color: rgb(172, 32, 32); text-decoration: underline; } - -a:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: -2px;= - } - -figure { margin: 0px; } - -img { vertical-align: middle; } - -.img-responsive { display: block; max-width: 100%; height: auto; } - -.img-rounded { border-radius: 6px; } - -.img-thumbnail { padding: 4px; line-height: 1.42857; background-color: rgb(= -255, 255, 255); border: 1px solid rgb(221, 221, 221); border-radius: 4px; t= -ransition: all 0.2s ease-in-out 0s; display: inline-block; max-width: 100%;= - height: auto; } - -.img-circle { border-radius: 50%; } - -hr { margin-top: 20px; margin-bottom: 20px; border-width: 1px 0px 0px; bord= -er-right-style: initial; border-bottom-style: initial; border-left-style: i= -nitial; border-right-color: initial; border-bottom-color: initial; border-l= -eft-color: initial; border-image: initial; border-top-style: solid; border-= -top-color: rgb(238, 238, 238); } - -.sr-only { position: absolute; width: 1px; height: 1px; padding: 0px; margi= -n: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); border: 0px; } - -.sr-only-focusable:active, .sr-only-focusable:focus { position: static; wid= -th: auto; height: auto; margin: 0px; overflow: visible; clip: auto; } - -[role=3D"button"] { cursor: pointer; } - -h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit= -; font-weight: 500; line-height: 1.1; color: inherit; } - -h1 small, h1 .small, h2 small, h2 .small, h3 small, h3 .small, h4 small, h4= - .small, h5 small, h5 .small, h6 small, h6 .small, .h1 small, .h1 .small, .= -h2 small, .h2 .small, .h3 small, .h3 .small, .h4 small, .h4 .small, .h5 sma= -ll, .h5 .small, .h6 small, .h6 .small { font-weight: 400; line-height: 1; c= -olor: rgb(119, 119, 119); } - -h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; } - -h1 small, h1 .small, .h1 small, .h1 .small, h2 small, h2 .small, .h2 small,= - .h2 .small, h3 small, h3 .small, .h3 small, .h3 .small { font-size: 65%; } - -h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; } - -h4 small, h4 .small, .h4 small, .h4 .small, h5 small, h5 .small, .h5 small,= - .h5 .small, h6 small, h6 .small, .h6 small, .h6 .small { font-size: 75%; } - -h1, .h1 { font-size: 36px; } - -h2, .h2 { font-size: 30px; } - -h3, .h3 { font-size: 24px; } - -h4, .h4 { font-size: 18px; } - -h5, .h5 { font-size: 14px; } - -h6, .h6 { font-size: 12px; } - -p { margin: 0px 0px 10px; } - -.lead { margin-bottom: 20px; font-size: 16px; font-weight: 300; line-height= -: 1.4; } - -@media (min-width: 768px) { - .lead { font-size: 21px; } -} - -small, .small { font-size: 85%; } - -mark, .mark { padding: 0.2em; background-color: rgb(252, 248, 227); } - -.text-left { text-align: left; } - -.text-right { text-align: right; } - -.text-center { text-align: center; } - -.text-justify { text-align: justify; } - -.text-nowrap { white-space: nowrap; } - -.text-lowercase { text-transform: lowercase; } - -.text-uppercase, .initialism { text-transform: uppercase; } - -.text-capitalize { text-transform: capitalize; } - -.text-muted { color: rgb(119, 119, 119); } - -.text-primary { color: rgb(219, 62, 62); } - -a.text-primary:hover, a.text-primary:focus { color: rgb(194, 36, 36); } - -.text-success { color: rgb(60, 118, 61); } - -a.text-success:hover, a.text-success:focus { color: rgb(43, 84, 44); } - -.text-info { color: rgb(152, 163, 174); } - -a.text-info:hover, a.text-info:focus { color: rgb(123, 138, 152); } - -.text-warning { color: rgb(138, 109, 59); } - -a.text-warning:hover, a.text-warning:focus { color: rgb(102, 81, 44); } - -.text-danger { color: rgb(169, 68, 66); } - -a.text-danger:hover, a.text-danger:focus { color: rgb(132, 53, 52); } - -.bg-primary { color: rgb(255, 255, 255); } - -.bg-primary { background-color: rgb(219, 62, 62); } - -a.bg-primary:hover, a.bg-primary:focus { background-color: rgb(194, 36, 36)= -; } - -.bg-success { background-color: rgb(223, 240, 216); } - -a.bg-success:hover, a.bg-success:focus { background-color: rgb(193, 226, 17= -9); } - -.bg-info { background-color: rgb(238, 240, 241); } - -a.bg-info:hover, a.bg-info:focus { background-color: rgb(209, 214, 219); } - -.bg-warning { background-color: rgb(252, 248, 227); } - -a.bg-warning:hover, a.bg-warning:focus { background-color: rgb(247, 236, 18= -1); } - -.bg-danger { background-color: rgb(242, 222, 222); } - -a.bg-danger:hover, a.bg-danger:focus { background-color: rgb(228, 185, 185)= -; } - -.page-header { padding-bottom: 9px; margin: 40px 0px 20px; border-bottom: 1= -px solid rgb(238, 238, 238); } - -ul, ol { margin-top: 0px; margin-bottom: 10px; } - -ul ul, ul ol, ol ul, ol ol { margin-bottom: 0px; } - -.list-unstyled { padding-left: 0px; list-style: none; } - -.list-inline { padding-left: 0px; list-style: none; margin-left: -5px; } - -.list-inline > li { display: inline-block; padding-right: 5px; padding-left= -: 5px; } - -dl { margin-top: 0px; margin-bottom: 20px; } - -dt, dd { line-height: 1.42857; } - -dt { font-weight: 700; } - -dd { margin-left: 0px; } - -.dl-horizontal dd::before, .dl-horizontal dd::after { display: table; conte= -nt: " "; } - -.dl-horizontal dd::after { clear: both; } - -@media (min-width: 768px) { - .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: r= -ight; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } - .dl-horizontal dd { margin-left: 180px; } -} - -abbr[title], abbr[data-original-title] { cursor: help; } - -.initialism { font-size: 90%; } - -blockquote { padding: 10px 20px; margin: 0px 0px 20px; font-size: 17.5px; b= -order-left: 5px solid rgb(238, 238, 238); } - -blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child= - { margin-bottom: 0px; } - -blockquote footer, blockquote small, blockquote .small { display: block; fo= -nt-size: 80%; line-height: 1.42857; color: rgb(119, 119, 119); } - -blockquote footer::before, blockquote small::before, blockquote .small::bef= -ore { content: "=E2=80=94=C2=A0"; } - -.blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-l= -eft: 0px; text-align: right; border-right: 5px solid rgb(238, 238, 238); bo= -rder-left: 0px; } - -.blockquote-reverse footer::before, .blockquote-reverse small::before, .blo= -ckquote-reverse .small::before, blockquote.pull-right footer::before, block= -quote.pull-right small::before, blockquote.pull-right .small::before { cont= -ent: ""; } - -.blockquote-reverse footer::after, .blockquote-reverse small::after, .block= -quote-reverse .small::after, blockquote.pull-right footer::after, blockquot= -e.pull-right small::after, blockquote.pull-right .small::after { content: "= -=C2=A0=E2=80=94"; } - -address { margin-bottom: 20px; font-style: normal; line-height: 1.42857; } - -code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New",= - monospace; } - -code { padding: 2px 4px; font-size: 90%; color: rgb(199, 37, 78); backgroun= -d-color: rgb(249, 242, 244); border-radius: 4px; } - -kbd { padding: 2px 4px; font-size: 90%; color: rgb(255, 255, 255); backgrou= -nd-color: rgb(51, 51, 51); border-radius: 3px; box-shadow: rgba(0, 0, 0, 0.= -25) 0px -1px 0px inset; } - -kbd kbd { padding: 0px; font-size: 100%; font-weight: 700; box-shadow: none= -; } - -pre { display: block; padding: 9.5px; margin: 0px 0px 10px; font-size: 13px= -; line-height: 1.42857; color: rgb(51, 51, 51); word-break: break-all; over= -flow-wrap: break-word; background-color: rgb(245, 245, 245); border: 1px so= -lid rgb(204, 204, 204); border-radius: 4px; } - -pre code { padding: 0px; font-size: inherit; color: inherit; white-space: p= -re-wrap; background-color: transparent; border-radius: 0px; } - -.pre-scrollable { max-height: 340px; overflow-y: scroll; } - -.container { padding-right: 15px; padding-left: 15px; margin-right: auto; m= -argin-left: auto; } - -.container::before, .container::after { display: table; content: " "; } - -.container::after { clear: both; } - -@media (min-width: 768px) { - .container { width: 750px; } -} - -@media (min-width: 992px) { - .container { width: 970px; } -} - -@media (min-width: 1200px) { - .container { width: 1170px; } -} - -.container-fluid { padding-right: 15px; padding-left: 15px; margin-right: a= -uto; margin-left: auto; } - -.container-fluid::before, .container-fluid::after { display: table; content= -: " "; } - -.container-fluid::after { clear: both; } - -.row { margin-right: -15px; margin-left: -15px; } - -.row::before, .row::after { display: table; content: " "; } - -.row::after { clear: both; } - -.row-no-gutters { margin-right: 0px; margin-left: 0px; } - -.row-no-gutters [class*=3D"col-"] { padding-right: 0px; padding-left: 0px; = -} - -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2= -, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm= --4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-= -xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .co= -l-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .= -col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-x= -s-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-1= -2, .col-lg-12 { position: relative; min-height: 1px; padding-right: 15px; p= -adding-left: 15px; } - -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7= -, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } - -.col-xs-1 { width: 8.33333%; } - -.col-xs-2 { width: 16.6667%; } - -.col-xs-3 { width: 25%; } - -.col-xs-4 { width: 33.3333%; } - -.col-xs-5 { width: 41.6667%; } - -.col-xs-6 { width: 50%; } - -.col-xs-7 { width: 58.3333%; } - -.col-xs-8 { width: 66.6667%; } - -.col-xs-9 { width: 75%; } - -.col-xs-10 { width: 83.3333%; } - -.col-xs-11 { width: 91.6667%; } - -.col-xs-12 { width: 100%; } - -.col-xs-pull-0 { right: auto; } - -.col-xs-pull-1 { right: 8.33333%; } - -.col-xs-pull-2 { right: 16.6667%; } - -.col-xs-pull-3 { right: 25%; } - -.col-xs-pull-4 { right: 33.3333%; } - -.col-xs-pull-5 { right: 41.6667%; } - -.col-xs-pull-6 { right: 50%; } - -.col-xs-pull-7 { right: 58.3333%; } - -.col-xs-pull-8 { right: 66.6667%; } - -.col-xs-pull-9 { right: 75%; } - -.col-xs-pull-10 { right: 83.3333%; } - -.col-xs-pull-11 { right: 91.6667%; } - -.col-xs-pull-12 { right: 100%; } - -.col-xs-push-0 { left: auto; } - -.col-xs-push-1 { left: 8.33333%; } - -.col-xs-push-2 { left: 16.6667%; } - -.col-xs-push-3 { left: 25%; } - -.col-xs-push-4 { left: 33.3333%; } - -.col-xs-push-5 { left: 41.6667%; } - -.col-xs-push-6 { left: 50%; } - -.col-xs-push-7 { left: 58.3333%; } - -.col-xs-push-8 { left: 66.6667%; } - -.col-xs-push-9 { left: 75%; } - -.col-xs-push-10 { left: 83.3333%; } - -.col-xs-push-11 { left: 91.6667%; } - -.col-xs-push-12 { left: 100%; } - -.col-xs-offset-0 { margin-left: 0%; } - -.col-xs-offset-1 { margin-left: 8.33333%; } - -.col-xs-offset-2 { margin-left: 16.6667%; } - -.col-xs-offset-3 { margin-left: 25%; } - -.col-xs-offset-4 { margin-left: 33.3333%; } - -.col-xs-offset-5 { margin-left: 41.6667%; } - -.col-xs-offset-6 { margin-left: 50%; } - -.col-xs-offset-7 { margin-left: 58.3333%; } - -.col-xs-offset-8 { margin-left: 66.6667%; } - -.col-xs-offset-9 { margin-left: 75%; } - -.col-xs-offset-10 { margin-left: 83.3333%; } - -.col-xs-offset-11 { margin-left: 91.6667%; } - -.col-xs-offset-12 { margin-left: 100%; } - -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm= --7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left;= - } - .col-sm-1 { width: 8.33333%; } - .col-sm-2 { width: 16.6667%; } - .col-sm-3 { width: 25%; } - .col-sm-4 { width: 33.3333%; } - .col-sm-5 { width: 41.6667%; } - .col-sm-6 { width: 50%; } - .col-sm-7 { width: 58.3333%; } - .col-sm-8 { width: 66.6667%; } - .col-sm-9 { width: 75%; } - .col-sm-10 { width: 83.3333%; } - .col-sm-11 { width: 91.6667%; } - .col-sm-12 { width: 100%; } - .col-sm-pull-0 { right: auto; } - .col-sm-pull-1 { right: 8.33333%; } - .col-sm-pull-2 { right: 16.6667%; } - .col-sm-pull-3 { right: 25%; } - .col-sm-pull-4 { right: 33.3333%; } - .col-sm-pull-5 { right: 41.6667%; } - .col-sm-pull-6 { right: 50%; } - .col-sm-pull-7 { right: 58.3333%; } - .col-sm-pull-8 { right: 66.6667%; } - .col-sm-pull-9 { right: 75%; } - .col-sm-pull-10 { right: 83.3333%; } - .col-sm-pull-11 { right: 91.6667%; } - .col-sm-pull-12 { right: 100%; } - .col-sm-push-0 { left: auto; } - .col-sm-push-1 { left: 8.33333%; } - .col-sm-push-2 { left: 16.6667%; } - .col-sm-push-3 { left: 25%; } - .col-sm-push-4 { left: 33.3333%; } - .col-sm-push-5 { left: 41.6667%; } - .col-sm-push-6 { left: 50%; } - .col-sm-push-7 { left: 58.3333%; } - .col-sm-push-8 { left: 66.6667%; } - .col-sm-push-9 { left: 75%; } - .col-sm-push-10 { left: 83.3333%; } - .col-sm-push-11 { left: 91.6667%; } - .col-sm-push-12 { left: 100%; } - .col-sm-offset-0 { margin-left: 0%; } - .col-sm-offset-1 { margin-left: 8.33333%; } - .col-sm-offset-2 { margin-left: 16.6667%; } - .col-sm-offset-3 { margin-left: 25%; } - .col-sm-offset-4 { margin-left: 33.3333%; } - .col-sm-offset-5 { margin-left: 41.6667%; } - .col-sm-offset-6 { margin-left: 50%; } - .col-sm-offset-7 { margin-left: 58.3333%; } - .col-sm-offset-8 { margin-left: 66.6667%; } - .col-sm-offset-9 { margin-left: 75%; } - .col-sm-offset-10 { margin-left: 83.3333%; } - .col-sm-offset-11 { margin-left: 91.6667%; } - .col-sm-offset-12 { margin-left: 100%; } -} - -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md= --7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left;= - } - .col-md-1 { width: 8.33333%; } - .col-md-2 { width: 16.6667%; } - .col-md-3 { width: 25%; } - .col-md-4 { width: 33.3333%; } - .col-md-5 { width: 41.6667%; } - .col-md-6 { width: 50%; } - .col-md-7 { width: 58.3333%; } - .col-md-8 { width: 66.6667%; } - .col-md-9 { width: 75%; } - .col-md-10 { width: 83.3333%; } - .col-md-11 { width: 91.6667%; } - .col-md-12 { width: 100%; } - .col-md-pull-0 { right: auto; } - .col-md-pull-1 { right: 8.33333%; } - .col-md-pull-2 { right: 16.6667%; } - .col-md-pull-3 { right: 25%; } - .col-md-pull-4 { right: 33.3333%; } - .col-md-pull-5 { right: 41.6667%; } - .col-md-pull-6 { right: 50%; } - .col-md-pull-7 { right: 58.3333%; } - .col-md-pull-8 { right: 66.6667%; } - .col-md-pull-9 { right: 75%; } - .col-md-pull-10 { right: 83.3333%; } - .col-md-pull-11 { right: 91.6667%; } - .col-md-pull-12 { right: 100%; } - .col-md-push-0 { left: auto; } - .col-md-push-1 { left: 8.33333%; } - .col-md-push-2 { left: 16.6667%; } - .col-md-push-3 { left: 25%; } - .col-md-push-4 { left: 33.3333%; } - .col-md-push-5 { left: 41.6667%; } - .col-md-push-6 { left: 50%; } - .col-md-push-7 { left: 58.3333%; } - .col-md-push-8 { left: 66.6667%; } - .col-md-push-9 { left: 75%; } - .col-md-push-10 { left: 83.3333%; } - .col-md-push-11 { left: 91.6667%; } - .col-md-push-12 { left: 100%; } - .col-md-offset-0 { margin-left: 0%; } - .col-md-offset-1 { margin-left: 8.33333%; } - .col-md-offset-2 { margin-left: 16.6667%; } - .col-md-offset-3 { margin-left: 25%; } - .col-md-offset-4 { margin-left: 33.3333%; } - .col-md-offset-5 { margin-left: 41.6667%; } - .col-md-offset-6 { margin-left: 50%; } - .col-md-offset-7 { margin-left: 58.3333%; } - .col-md-offset-8 { margin-left: 66.6667%; } - .col-md-offset-9 { margin-left: 75%; } - .col-md-offset-10 { margin-left: 83.3333%; } - .col-md-offset-11 { margin-left: 91.6667%; } - .col-md-offset-12 { margin-left: 100%; } -} - -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg= --7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left;= - } - .col-lg-1 { width: 8.33333%; } - .col-lg-2 { width: 16.6667%; } - .col-lg-3 { width: 25%; } - .col-lg-4 { width: 33.3333%; } - .col-lg-5 { width: 41.6667%; } - .col-lg-6 { width: 50%; } - .col-lg-7 { width: 58.3333%; } - .col-lg-8 { width: 66.6667%; } - .col-lg-9 { width: 75%; } - .col-lg-10 { width: 83.3333%; } - .col-lg-11 { width: 91.6667%; } - .col-lg-12 { width: 100%; } - .col-lg-pull-0 { right: auto; } - .col-lg-pull-1 { right: 8.33333%; } - .col-lg-pull-2 { right: 16.6667%; } - .col-lg-pull-3 { right: 25%; } - .col-lg-pull-4 { right: 33.3333%; } - .col-lg-pull-5 { right: 41.6667%; } - .col-lg-pull-6 { right: 50%; } - .col-lg-pull-7 { right: 58.3333%; } - .col-lg-pull-8 { right: 66.6667%; } - .col-lg-pull-9 { right: 75%; } - .col-lg-pull-10 { right: 83.3333%; } - .col-lg-pull-11 { right: 91.6667%; } - .col-lg-pull-12 { right: 100%; } - .col-lg-push-0 { left: auto; } - .col-lg-push-1 { left: 8.33333%; } - .col-lg-push-2 { left: 16.6667%; } - .col-lg-push-3 { left: 25%; } - .col-lg-push-4 { left: 33.3333%; } - .col-lg-push-5 { left: 41.6667%; } - .col-lg-push-6 { left: 50%; } - .col-lg-push-7 { left: 58.3333%; } - .col-lg-push-8 { left: 66.6667%; } - .col-lg-push-9 { left: 75%; } - .col-lg-push-10 { left: 83.3333%; } - .col-lg-push-11 { left: 91.6667%; } - .col-lg-push-12 { left: 100%; } - .col-lg-offset-0 { margin-left: 0%; } - .col-lg-offset-1 { margin-left: 8.33333%; } - .col-lg-offset-2 { margin-left: 16.6667%; } - .col-lg-offset-3 { margin-left: 25%; } - .col-lg-offset-4 { margin-left: 33.3333%; } - .col-lg-offset-5 { margin-left: 41.6667%; } - .col-lg-offset-6 { margin-left: 50%; } - .col-lg-offset-7 { margin-left: 58.3333%; } - .col-lg-offset-8 { margin-left: 66.6667%; } - .col-lg-offset-9 { margin-left: 75%; } - .col-lg-offset-10 { margin-left: 83.3333%; } - .col-lg-offset-11 { margin-left: 91.6667%; } - .col-lg-offset-12 { margin-left: 100%; } -} - -table { background-color: transparent; } - -table col[class*=3D"col-"] { position: static; display: table-column; float= -: none; } - -table td[class*=3D"col-"], table th[class*=3D"col-"] { position: static; di= -splay: table-cell; float: none; } - -caption { padding-top: 8px; padding-bottom: 8px; color: rgb(119, 119, 119);= - text-align: left; } - -th { text-align: left; } - -.table { width: 100%; max-width: 100%; margin-bottom: 20px; } - -.table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > t= -h, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr = -> td { padding: 8px; line-height: 1.42857; vertical-align: top; border-top:= - 1px solid rgb(221, 221, 221); } - -.table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid= - rgb(221, 221, 221); } - -.table > caption + thead > tr:first-child > th, .table > caption + thead > = -tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .tabl= -e > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr= -:first-child > th, .table > thead:first-child > tr:first-child > td { borde= -r-top: 0px; } - -.table > tbody + tbody { border-top: 2px solid rgb(221, 221, 221); } - -.table .table { background-color: rgb(255, 255, 255); } - -.table-condensed > thead > tr > th, .table-condensed > thead > tr > td, .ta= -ble-condensed > tbody > tr > th, .table-condensed > tbody > tr > td, .table= --condensed > tfoot > tr > th, .table-condensed > tfoot > tr > td { padding:= - 5px; } - -.table-bordered { border: 1px solid rgb(221, 221, 221); } - -.table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .tabl= -e-bordered > tbody > tr > th, .table-bordered > tbody > tr > td, .table-bor= -dered > tfoot > tr > th, .table-bordered > tfoot > tr > td { border: 1px so= -lid rgb(221, 221, 221); } - -.table-bordered > thead > tr > th, .table-bordered > thead > tr > td { bord= -er-bottom-width: 2px; } - -.table-striped > tbody > tr:nth-of-type(2n+1) { background-color: rgb(249, = -249, 249); } - -.table-hover > tbody > tr:hover { background-color: rgb(245, 245, 245); } - -.table > thead > tr > td.active, .table > thead > tr > th.active, .table > = -thead > tr.active > td, .table > thead > tr.active > th, .table > tbody > t= -r > td.active, .table > tbody > tr > th.active, .table > tbody > tr.active = -> td, .table > tbody > tr.active > th, .table > tfoot > tr > td.active, .ta= -ble > tfoot > tr > th.active, .table > tfoot > tr.active > td, .table > tfo= -ot > tr.active > th { background-color: rgb(245, 245, 245); } - -.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th= -.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > = -tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { b= -ackground-color: rgb(232, 232, 232); } - -.table > thead > tr > td.success, .table > thead > tr > th.success, .table = -> thead > tr.success > td, .table > thead > tr.success > th, .table > tbody= - > tr > td.success, .table > tbody > tr > th.success, .table > tbody > tr.s= -uccess > td, .table > tbody > tr.success > th, .table > tfoot > tr > td.suc= -cess, .table > tfoot > tr > th.success, .table > tfoot > tr.success > td, .= -table > tfoot > tr.success > th { background-color: rgb(223, 240, 216); } - -.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > t= -h.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover= - > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > t= -h { background-color: rgb(208, 233, 198); } - -.table > thead > tr > td.info, .table > thead > tr > th.info, .table > thea= -d > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr > td.i= -nfo, .table > tbody > tr > th.info, .table > tbody > tr.info > td, .table >= - tbody > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr >= - th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th { ba= -ckground-color: rgb(238, 240, 241); } - -.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.i= -nfo:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody = -> tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-= -color: rgb(223, 227, 230); } - -.table > thead > tr > td.warning, .table > thead > tr > th.warning, .table = -> thead > tr.warning > td, .table > thead > tr.warning > th, .table > tbody= - > tr > td.warning, .table > tbody > tr > th.warning, .table > tbody > tr.w= -arning > td, .table > tbody > tr.warning > th, .table > tfoot > tr > td.war= -ning, .table > tfoot > tr > th.warning, .table > tfoot > tr.warning > td, .= -table > tfoot > tr.warning > th { background-color: rgb(252, 248, 227); } - -.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > t= -h.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover= - > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > t= -h { background-color: rgb(250, 242, 204); } - -.table > thead > tr > td.danger, .table > thead > tr > th.danger, .table > = -thead > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > t= -r > td.danger, .table > tbody > tr > th.danger, .table > tbody > tr.danger = -> td, .table > tbody > tr.danger > th, .table > tfoot > tr > td.danger, .ta= -ble > tfoot > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfo= -ot > tr.danger > th { background-color: rgb(242, 222, 222); } - -.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th= -.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > = -tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { b= -ackground-color: rgb(235, 204, 204); } - -.table-responsive { min-height: 0.01%; overflow-x: auto; } - -@media screen and (max-width: 767px) { - .table-responsive { width: 100%; margin-bottom: 15px; overflow-y: hidden;= - border: 1px solid rgb(221, 221, 221); } - .table-responsive > .table { margin-bottom: 0px; } - .table-responsive > .table > thead > tr > th, .table-responsive > .table = -> thead > tr > td, .table-responsive > .table > tbody > tr > th, .table-res= -ponsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr= - > th, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; = -} - .table-responsive > .table-bordered { border: 0px; } - .table-responsive > .table-bordered > thead > tr > th:first-child, .table= --responsive > .table-bordered > thead > tr > td:first-child, .table-respons= -ive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .t= -able-bordered > tbody > tr > td:first-child, .table-responsive > .table-bor= -dered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > = -tfoot > tr > td:first-child { border-left: 0px; } - .table-responsive > .table-bordered > thead > tr > th:last-child, .table-= -responsive > .table-bordered > thead > tr > td:last-child, .table-responsiv= -e > .table-bordered > tbody > tr > th:last-child, .table-responsive > .tabl= -e-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordere= -d > tfoot > tr > th:last-child, .table-responsive > .table-bordered > tfoot= - > tr > td:last-child { border-right: 0px; } - .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-= -responsive > .table-bordered > tbody > tr:last-child > td, .table-responsiv= -e > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .tabl= -e-bordered > tfoot > tr:last-child > td { border-bottom: 0px; } -} - -fieldset { min-width: 0px; padding: 0px; margin: 0px; border: 0px; } - -legend { display: block; width: 100%; padding: 0px; margin-bottom: 20px; fo= -nt-size: 21px; line-height: inherit; color: rgb(51, 51, 51); border-width: = -0px 0px 1px; border-top-style: initial; border-right-style: initial; border= --left-style: initial; border-top-color: initial; border-right-color: initia= -l; border-left-color: initial; border-image: initial; border-bottom-style: = -solid; border-bottom-color: rgb(229, 229, 229); } - -label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-we= -ight: 700; } - -input[type=3D"search"] { box-sizing: border-box; appearance: none; } - -input[type=3D"radio"], input[type=3D"checkbox"] { margin: 4px 0px 0px; line= --height: normal; } - -input[type=3D"radio"][disabled], input.disabled[type=3D"radio"], fieldset[d= -isabled] input[type=3D"radio"], input[type=3D"checkbox"][disabled], input.d= -isabled[type=3D"checkbox"], fieldset[disabled] input[type=3D"checkbox"] { c= -ursor: not-allowed; } - -input[type=3D"file"] { display: block; } - -input[type=3D"range"] { display: block; width: 100%; } - -select[multiple], select[size] { height: auto; } - -input[type=3D"file"]:focus, input[type=3D"radio"]:focus, input[type=3D"chec= -kbox"]:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: = --2px; } - -output { display: block; padding-top: 7px; font-size: 14px; line-height: 1.= -42857; color: rgb(85, 85, 85); } - -.form-control { display: block; width: 100%; height: 34px; padding: 6px 12p= -x; font-size: 14px; line-height: 1.42857; color: rgb(85, 85, 85); backgroun= -d-color: rgb(255, 255, 255); background-image: none; border: 1px solid rgb(= -204, 204, 204); border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.075) 0px 1p= -x 1px inset; transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15= -s ease-in-out 0s; } - -.form-control:focus { border-color: rgb(102, 175, 233); outline: 0px; box-s= -hadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px= - 0px 8px; } - -.form-control::-webkit-input-placeholder { color: rgb(153, 153, 153); } - -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-= -control { background-color: rgb(238, 238, 238); opacity: 1; } - -.form-control[disabled], fieldset[disabled] .form-control { cursor: not-all= -owed; } - -textarea.form-control { height: auto; } - -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input.form-control[type=3D"date"], input.form-control[type=3D"time"], inp= -ut.form-control[type=3D"datetime-local"], input.form-control[type=3D"month"= -] { line-height: 34px; } - input.input-sm[type=3D"date"], .input-group-sm > .form-control[type=3D"da= -te"], .input-group-sm > .input-group-addon[type=3D"date"], .input-group-sm = -> .input-group-btn > .btn[type=3D"date"], .input-group-sm input[type=3D"dat= -e"], input.input-sm[type=3D"time"], .input-group-sm > .form-control[type=3D= -"time"], .input-group-sm > .input-group-addon[type=3D"time"], .input-group-= -sm > .input-group-btn > .btn[type=3D"time"], .input-group-sm input[type=3D"= -time"], input.input-sm[type=3D"datetime-local"], .input-group-sm > .form-co= -ntrol[type=3D"datetime-local"], .input-group-sm > .input-group-addon[type= -=3D"datetime-local"], .input-group-sm > .input-group-btn > .btn[type=3D"dat= -etime-local"], .input-group-sm input[type=3D"datetime-local"], input.input-= -sm[type=3D"month"], .input-group-sm > .form-control[type=3D"month"], .input= --group-sm > .input-group-addon[type=3D"month"], .input-group-sm > .input-gr= -oup-btn > .btn[type=3D"month"], .input-group-sm input[type=3D"month"] { lin= -e-height: 30px; } - input.input-lg[type=3D"date"], .input-group-lg > .form-control[type=3D"da= -te"], .input-group-lg > .input-group-addon[type=3D"date"], .input-group-lg = -> .input-group-btn > .btn[type=3D"date"], .input-group-lg input[type=3D"dat= -e"], input.input-lg[type=3D"time"], .input-group-lg > .form-control[type=3D= -"time"], .input-group-lg > .input-group-addon[type=3D"time"], .input-group-= -lg > .input-group-btn > .btn[type=3D"time"], .input-group-lg input[type=3D"= -time"], input.input-lg[type=3D"datetime-local"], .input-group-lg > .form-co= -ntrol[type=3D"datetime-local"], .input-group-lg > .input-group-addon[type= -=3D"datetime-local"], .input-group-lg > .input-group-btn > .btn[type=3D"dat= -etime-local"], .input-group-lg input[type=3D"datetime-local"], input.input-= -lg[type=3D"month"], .input-group-lg > .form-control[type=3D"month"], .input= --group-lg > .input-group-addon[type=3D"month"], .input-group-lg > .input-gr= -oup-btn > .btn[type=3D"month"], .input-group-lg input[type=3D"month"] { lin= -e-height: 46px; } -} - -.form-group { margin-bottom: 15px; } - -.radio, .checkbox { position: relative; display: block; margin-top: 10px; m= -argin-bottom: 10px; } - -.radio.disabled label, fieldset[disabled] .radio label, .checkbox.disabled = -label, fieldset[disabled] .checkbox label { cursor: not-allowed; } - -.radio label, .checkbox label { min-height: 20px; padding-left: 20px; margi= -n-bottom: 0px; font-weight: 400; cursor: pointer; } - -.radio input[type=3D"radio"], .radio-inline input[type=3D"radio"], .checkbo= -x input[type=3D"checkbox"], .checkbox-inline input[type=3D"checkbox"] { pos= -ition: absolute; margin-left: -20px; } - -.radio + .radio, .checkbox + .checkbox { margin-top: -5px; } - -.radio-inline, .checkbox-inline { position: relative; display: inline-block= -; padding-left: 20px; margin-bottom: 0px; font-weight: 400; vertical-align:= - middle; cursor: pointer; } - -.radio-inline.disabled, fieldset[disabled] .radio-inline, .checkbox-inline.= -disabled, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } - -.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin= --top: 0px; margin-left: 10px; } - -.form-control-static { min-height: 34px; padding-top: 7px; padding-bottom: = -7px; margin-bottom: 0px; } - -.form-control-static.input-lg, .input-group-lg > .form-control-static.form-= -control, .input-group-lg > .form-control-static.input-group-addon, .input-g= -roup-lg > .input-group-btn > .form-control-static.btn, .form-control-static= -.input-sm, .input-group-sm > .form-control-static.form-control, .input-grou= -p-sm > .form-control-static.input-group-addon, .input-group-sm > .input-gro= -up-btn > .form-control-static.btn { padding-right: 0px; padding-left: 0px; = -} - -.input-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-= -addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5= -px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } - -select.input-sm, .input-group-sm > select.form-control, .input-group-sm > s= -elect.input-group-addon, .input-group-sm > .input-group-btn > select.btn { = -height: 30px; line-height: 30px; } - -textarea.input-sm, .input-group-sm > textarea.form-control, .input-group-sm= - > textarea.input-group-addon, .input-group-sm > .input-group-btn > textare= -a.btn, select.input-sm[multiple], .input-group-sm > .form-control[multiple]= -, .input-group-sm > .input-group-addon[multiple], .input-group-sm > .input-= -group-btn > .btn[multiple] { height: auto; } - -.form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: = -12px; line-height: 1.5; border-radius: 3px; } - -.form-group-sm select.form-control { height: 30px; line-height: 30px; } - -.form-group-sm textarea.form-control, .form-group-sm select.form-control[mu= -ltiple] { height: auto; } - -.form-group-sm .form-control-static { height: 30px; min-height: 32px; paddi= -ng: 6px 10px; font-size: 12px; line-height: 1.5; } - -.input-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-= -addon, .input-group-lg > .input-group-btn > .btn { height: 46px; padding: 1= -0px 16px; font-size: 18px; line-height: 1.33333; border-radius: 6px; } - -select.input-lg, .input-group-lg > select.form-control, .input-group-lg > s= -elect.input-group-addon, .input-group-lg > .input-group-btn > select.btn { = -height: 46px; line-height: 46px; } - -textarea.input-lg, .input-group-lg > textarea.form-control, .input-group-lg= - > textarea.input-group-addon, .input-group-lg > .input-group-btn > textare= -a.btn, select.input-lg[multiple], .input-group-lg > .form-control[multiple]= -, .input-group-lg > .input-group-addon[multiple], .input-group-lg > .input-= -group-btn > .btn[multiple] { height: auto; } - -.form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size:= - 18px; line-height: 1.33333; border-radius: 6px; } - -.form-group-lg select.form-control { height: 46px; line-height: 46px; } - -.form-group-lg textarea.form-control, .form-group-lg select.form-control[mu= -ltiple] { height: auto; } - -.form-group-lg .form-control-static { height: 46px; min-height: 38px; paddi= -ng: 11px 16px; font-size: 18px; line-height: 1.33333; } - -.has-feedback { position: relative; } - -.has-feedback .form-control { padding-right: 42.5px; } - -.form-control-feedback { position: absolute; top: 0px; right: 0px; z-index:= - 2; display: block; width: 34px; height: 34px; line-height: 34px; text-alig= -n: center; pointer-events: none; } - -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form= --control-feedback, .input-group-lg > .input-group-addon + .form-control-fee= -dback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, = -.input-group-lg + .form-control-feedback, .form-group-lg .form-control + .f= -orm-control-feedback { width: 46px; height: 46px; line-height: 46px; } - -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form= --control-feedback, .input-group-sm > .input-group-addon + .form-control-fee= -dback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, = -.input-group-sm + .form-control-feedback, .form-group-sm .form-control + .f= -orm-control-feedback { width: 30px; height: 30px; line-height: 30px; } - -.has-success .help-block, .has-success .control-label, .has-success .radio,= - .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox= --inline, .has-success.radio label, .has-success.checkbox label, .has-succes= -s.radio-inline label, .has-success.checkbox-inline label { color: rgb(60, 1= -18, 61); } - -.has-success .form-control { border-color: rgb(60, 118, 61); box-shadow: rg= -ba(0, 0, 0, 0.075) 0px 1px 1px inset; } - -.has-success .form-control:focus { border-color: rgb(43, 84, 44); box-shado= -w: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(103, 177, 104) 0px 0px 6px; = -} - -.has-success .input-group-addon { color: rgb(60, 118, 61); background-color= -: rgb(223, 240, 216); border-color: rgb(60, 118, 61); } - -.has-success .form-control-feedback { color: rgb(60, 118, 61); } - -.has-warning .help-block, .has-warning .control-label, .has-warning .radio,= - .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox= --inline, .has-warning.radio label, .has-warning.checkbox label, .has-warnin= -g.radio-inline label, .has-warning.checkbox-inline label { color: rgb(138, = -109, 59); } - -.has-warning .form-control { border-color: rgb(138, 109, 59); box-shadow: r= -gba(0, 0, 0, 0.075) 0px 1px 1px inset; } - -.has-warning .form-control:focus { border-color: rgb(102, 81, 44); box-shad= -ow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(192, 161, 107) 0px 0px 6px;= - } - -.has-warning .input-group-addon { color: rgb(138, 109, 59); background-colo= -r: rgb(252, 248, 227); border-color: rgb(138, 109, 59); } - -.has-warning .form-control-feedback { color: rgb(138, 109, 59); } - -.has-error .help-block, .has-error .control-label, .has-error .radio, .has-= -error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .ha= -s-error.radio label, .has-error.checkbox label, .has-error.radio-inline lab= -el, .has-error.checkbox-inline label { color: rgb(169, 68, 66); } - -.has-error .form-control { border-color: rgb(169, 68, 66); box-shadow: rgba= -(0, 0, 0, 0.075) 0px 1px 1px inset; } - -.has-error .form-control:focus { border-color: rgb(132, 53, 52); box-shadow= -: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(206, 132, 131) 0px 0px 6px; } - -.has-error .input-group-addon { color: rgb(169, 68, 66); background-color: = -rgb(242, 222, 222); border-color: rgb(169, 68, 66); } - -.has-error .form-control-feedback { color: rgb(169, 68, 66); } - -.has-feedback label ~ .form-control-feedback { top: 25px; } - -.has-feedback label.sr-only ~ .form-control-feedback { top: 0px; } - -.help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: = -rgb(115, 115, 115); } - -@media (min-width: 768px) { - .form-inline .form-group { display: inline-block; margin-bottom: 0px; ver= -tical-align: middle; } - .form-inline .form-control { display: inline-block; width: auto; vertical= --align: middle; } - .form-inline .form-control-static { display: inline-block; } - .form-inline .input-group { display: inline-table; vertical-align: middle= -; } - .form-inline .input-group .input-group-addon, .form-inline .input-group .= -input-group-btn, .form-inline .input-group .form-control { width: auto; } - .form-inline .input-group > .form-control { width: 100%; } - .form-inline .control-label { margin-bottom: 0px; vertical-align: middle;= - } - .form-inline .radio, .form-inline .checkbox { display: inline-block; marg= -in-top: 0px; margin-bottom: 0px; vertical-align: middle; } - .form-inline .radio label, .form-inline .checkbox label { padding-left: 0= -px; } - .form-inline .radio input[type=3D"radio"], .form-inline .checkbox input[t= -ype=3D"checkbox"] { position: relative; margin-left: 0px; } - .form-inline .has-feedback .form-control-feedback { top: 0px; } -} - -.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radi= -o-inline, .form-horizontal .checkbox-inline { padding-top: 7px; margin-top:= - 0px; margin-bottom: 0px; } - -.form-horizontal .radio, .form-horizontal .checkbox { min-height: 27px; } - -.form-horizontal .form-group { margin-right: -15px; margin-left: -15px; } - -.form-horizontal .form-group::before, .form-horizontal .form-group::after {= - display: table; content: " "; } - -.form-horizontal .form-group::after { clear: both; } - -@media (min-width: 768px) { - .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0px; t= -ext-align: right; } -} - -.form-horizontal .has-feedback .form-control-feedback { right: 15px; } - -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { padding-top: 11px; font-= -size: 18px; } -} - -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-s= -ize: 12px; } -} - -.btn { display: inline-block; margin-bottom: 0px; font-weight: normal; text= --align: center; white-space: nowrap; vertical-align: middle; touch-action: = -manipulation; cursor: pointer; background-image: none; border: 1px solid tr= -ansparent; padding: 6px 12px; font-size: 14px; line-height: 1.42857; border= --radius: 4px; user-select: none; } - -.btn:focus, .btn.focus, .btn:active:focus, .btn.focus:active, .btn.active:f= -ocus, .btn.active.focus { outline: -webkit-focus-ring-color auto 5px; outli= -ne-offset: -2px; } - -.btn:hover, .btn:focus, .btn.focus { color: rgb(51, 51, 51); text-decoratio= -n: none; } - -.btn:active, .btn.active { background-image: none; outline: 0px; box-shadow= -: rgba(0, 0, 0, 0.125) 0px 3px 5px inset; } - -.btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowe= -d; opacity: 0.65; box-shadow: none; } - -a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } - -.btn-default { color: rgb(51, 51, 51); background-color: rgb(255, 255, 255)= -; border-color: rgb(204, 204, 204); } - -.btn-default:focus, .btn-default.focus { color: rgb(51, 51, 51); background= --color: rgb(230, 230, 230); border-color: rgb(140, 140, 140); } - -.btn-default:hover { color: rgb(51, 51, 51); background-color: rgb(230, 230= -, 230); border-color: rgb(173, 173, 173); } - -.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-tog= -gle { color: rgb(51, 51, 51); background-color: rgb(230, 230, 230); backgro= -und-image: none; border-color: rgb(173, 173, 173); } - -.btn-default:active:hover, .btn-default:active:focus, .btn-default.focus:ac= -tive, .btn-default.active:hover, .btn-default.active:focus, .btn-default.ac= -tive.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-defaul= -t.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { color= -: rgb(51, 51, 51); background-color: rgb(212, 212, 212); border-color: rgb(= -140, 140, 140); } - -.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disa= -bled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .bt= -n-default.focus[disabled], fieldset[disabled] .btn-default:hover, fieldset[= -disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus { backg= -round-color: rgb(255, 255, 255); border-color: rgb(204, 204, 204); } - -.btn-default .badge { color: rgb(255, 255, 255); background-color: rgb(51, = -51, 51); } - -.btn-primary { color: rgb(255, 255, 255); background-color: rgb(219, 62, 62= -); border-color: rgb(215, 41, 41); } - -.btn-primary:focus, .btn-primary.focus { color: rgb(255, 255, 255); backgro= -und-color: rgb(194, 36, 36); border-color: rgb(108, 20, 20); } - -.btn-primary:hover { color: rgb(255, 255, 255); background-color: rgb(194, = -36, 36); border-color: rgb(164, 31, 31); } - -.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-tog= -gle { color: rgb(255, 255, 255); background-color: rgb(194, 36, 36); backgr= -ound-image: none; border-color: rgb(164, 31, 31); } - -.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.focus:ac= -tive, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.ac= -tive.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primar= -y.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { color= -: rgb(255, 255, 255); background-color: rgb(164, 31, 31); border-color: rgb= -(108, 20, 20); } - -.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disa= -bled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .bt= -n-primary.focus[disabled], fieldset[disabled] .btn-primary:hover, fieldset[= -disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus { backg= -round-color: rgb(219, 62, 62); border-color: rgb(215, 41, 41); } - -.btn-primary .badge { color: rgb(219, 62, 62); background-color: rgb(255, 2= -55, 255); } - -.btn-success { color: rgb(255, 255, 255); background-color: rgb(92, 184, 92= -); border-color: rgb(76, 174, 76); } - -.btn-success:focus, .btn-success.focus { color: rgb(255, 255, 255); backgro= -und-color: rgb(68, 157, 68); border-color: rgb(37, 86, 37); } - -.btn-success:hover { color: rgb(255, 255, 255); background-color: rgb(68, 1= -57, 68); border-color: rgb(57, 132, 57); } - -.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-tog= -gle { color: rgb(255, 255, 255); background-color: rgb(68, 157, 68); backgr= -ound-image: none; border-color: rgb(57, 132, 57); } - -.btn-success:active:hover, .btn-success:active:focus, .btn-success.focus:ac= -tive, .btn-success.active:hover, .btn-success.active:focus, .btn-success.ac= -tive.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-succes= -s.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { color= -: rgb(255, 255, 255); background-color: rgb(57, 132, 57); border-color: rgb= -(37, 86, 37); } - -.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disa= -bled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .bt= -n-success.focus[disabled], fieldset[disabled] .btn-success:hover, fieldset[= -disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus { backg= -round-color: rgb(92, 184, 92); border-color: rgb(76, 174, 76); } - -.btn-success .badge { color: rgb(92, 184, 92); background-color: rgb(255, 2= -55, 255); } - -.btn-info { color: rgb(255, 255, 255); background-color: rgb(152, 163, 174)= -; border-color: rgb(138, 150, 163); } - -.btn-info:focus, .btn-info.focus { color: rgb(255, 255, 255); background-co= -lor: rgb(123, 138, 152); border-color: rgb(76, 87, 97); } - -.btn-info:hover { color: rgb(255, 255, 255); background-color: rgb(123, 138= -, 152); border-color: rgb(105, 120, 134); } - -.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { col= -or: rgb(255, 255, 255); background-color: rgb(123, 138, 152); background-im= -age: none; border-color: rgb(105, 120, 134); } - -.btn-info:active:hover, .btn-info:active:focus, .btn-info.focus:active, .bt= -n-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open = -> .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus,= - .open > .btn-info.dropdown-toggle.focus { color: rgb(255, 255, 255); backg= -round-color: rgb(105, 120, 134); border-color: rgb(76, 87, 97); } - -.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focu= -s, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info.focus[di= -sabled], fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:f= -ocus, fieldset[disabled] .btn-info.focus { background-color: rgb(152, 163, = -174); border-color: rgb(138, 150, 163); } - -.btn-info .badge { color: rgb(152, 163, 174); background-color: rgb(255, 25= -5, 255); } - -.btn-warning { color: rgb(255, 255, 255); background-color: rgb(240, 173, 7= -8); border-color: rgb(238, 162, 54); } - -.btn-warning:focus, .btn-warning.focus { color: rgb(255, 255, 255); backgro= -und-color: rgb(236, 151, 31); border-color: rgb(152, 95, 13); } - -.btn-warning:hover { color: rgb(255, 255, 255); background-color: rgb(236, = -151, 31); border-color: rgb(213, 133, 18); } - -.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-tog= -gle { color: rgb(255, 255, 255); background-color: rgb(236, 151, 31); backg= -round-image: none; border-color: rgb(213, 133, 18); } - -.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.focus:ac= -tive, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.ac= -tive.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warnin= -g.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { color= -: rgb(255, 255, 255); background-color: rgb(213, 133, 18); border-color: rg= -b(152, 95, 13); } - -.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disa= -bled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .bt= -n-warning.focus[disabled], fieldset[disabled] .btn-warning:hover, fieldset[= -disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus { backg= -round-color: rgb(240, 173, 78); border-color: rgb(238, 162, 54); } - -.btn-warning .badge { color: rgb(240, 173, 78); background-color: rgb(255, = -255, 255); } - -.btn-danger { color: rgb(255, 255, 255); background-color: rgb(217, 83, 79)= -; border-color: rgb(212, 63, 58); } - -.btn-danger:focus, .btn-danger.focus { color: rgb(255, 255, 255); backgroun= -d-color: rgb(201, 48, 44); border-color: rgb(118, 28, 25); } - -.btn-danger:hover { color: rgb(255, 255, 255); background-color: rgb(201, 4= -8, 44); border-color: rgb(172, 41, 37); } - -.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle= - { color: rgb(255, 255, 255); background-color: rgb(201, 48, 44); backgroun= -d-image: none; border-color: rgb(172, 41, 37); } - -.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.focus:activ= -e, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.f= -ocus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdo= -wn-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { color: rgb(255= -, 255, 255); background-color: rgb(172, 41, 37); border-color: rgb(118, 28,= - 25); } - -.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disable= -d.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-dan= -ger.focus[disabled], fieldset[disabled] .btn-danger:hover, fieldset[disable= -d] .btn-danger:focus, fieldset[disabled] .btn-danger.focus { background-col= -or: rgb(217, 83, 79); border-color: rgb(212, 63, 58); } - -.btn-danger .badge { color: rgb(217, 83, 79); background-color: rgb(255, 25= -5, 255); } - -.btn-link { font-weight: 400; color: rgb(219, 62, 62); border-radius: 0px; = -} - -.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldse= -t[disabled] .btn-link { background-color: transparent; box-shadow: none; } - -.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-colo= -r: transparent; } - -.btn-link:hover, .btn-link:focus { color: rgb(172, 32, 32); text-decoration= -: underline; background-color: transparent; } - -.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .b= -tn-link:hover, fieldset[disabled] .btn-link:focus { color: rgb(119, 119, 11= -9); text-decoration: none; } - -.btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 18px; line-h= -eight: 1.33333; border-radius: 6px; } - -.btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-he= -ight: 1.5; border-radius: 3px; } - -.btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-hei= -ght: 1.5; border-radius: 3px; } - -.btn-block { display: block; width: 100%; } - -.btn-block + .btn-block { margin-top: 5px; } - -input.btn-block[type=3D"submit"], input.btn-block[type=3D"reset"], input.bt= -n-block[type=3D"button"] { width: 100%; } - -.fade { opacity: 0; transition: opacity 0.15s linear 0s; } - -.fade.in { opacity: 1; } - -.collapse { display: none; } - -.collapse.in { display: block; } - -tr.collapse.in { display: table-row; } - -tbody.collapse.in { display: table-row-group; } - -.collapsing { position: relative; height: 0px; overflow: hidden; transition= --property: height, visibility; transition-duration: 0.35s; transition-timin= -g-function: ease; } - -.caret { display: inline-block; width: 0px; height: 0px; margin-left: 2px; = -vertical-align: middle; border-top: 4px dashed; border-right: 4px solid tra= -nsparent; border-left: 4px solid transparent; } - -.dropup, .dropdown { position: relative; } - -.dropdown-toggle:focus { outline: 0px; } - -.dropdown-menu { position: absolute; top: 100%; left: 0px; z-index: 1000; d= -isplay: none; float: left; min-width: 160px; padding: 5px 0px; margin: 2px = -0px 0px; font-size: 14px; text-align: left; list-style: none; background-co= -lor: rgb(255, 255, 255); background-clip: padding-box; border: 1px solid rg= -ba(0, 0, 0, 0.15); border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.176) 0px= - 6px 12px; } - -.dropdown-menu.pull-right { right: 0px; left: auto; } - -.dropdown-menu .divider { height: 1px; margin: 9px 0px; overflow: hidden; b= -ackground-color: rgb(229, 229, 229); } - -.dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; f= -ont-weight: 400; line-height: 1.42857; color: rgb(51, 51, 51); white-space:= - nowrap; } - -.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: rgb(3= -8, 38, 38); text-decoration: none; background-color: rgb(245, 245, 245); } - -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown= --menu > .active > a:focus { color: rgb(255, 255, 255); text-decoration: non= -e; background-color: rgb(219, 62, 62); outline: 0px; } - -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .drop= -down-menu > .disabled > a:focus { color: rgb(119, 119, 119); } - -.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus = -{ text-decoration: none; cursor: not-allowed; background-color: transparent= -; background-image: none; } - -.open > .dropdown-menu { display: block; } - -.open > a { outline: 0px; } - -.dropdown-menu-right { right: 0px; left: auto; } - -.dropdown-menu-left { right: auto; left: 0px; } - -.dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line= --height: 1.42857; color: rgb(119, 119, 119); white-space: nowrap; } - -.dropdown-backdrop { position: fixed; inset: 0px; z-index: 990; } - -.pull-right > .dropdown-menu { right: 0px; left: auto; } - -.dropup .caret, .navbar-fixed-bottom .dropdown .caret { content: ""; border= --top: 0px; border-bottom: 4px dashed; } - -.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top= -: auto; bottom: 100%; margin-bottom: 2px; } - -@media (min-width: 768px) { - .navbar-right .dropdown-menu { right: 0px; left: auto; } - .navbar-right .dropdown-menu-left { left: 0px; right: auto; } -} - -.btn-group, .btn-group-vertical { position: relative; display: inline-block= -; vertical-align: middle; } - -.btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: = -left; } - -.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active,= - .btn-group > .btn.active, .btn-group-vertical > .btn:hover, .btn-group-ver= -tical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical = -> .btn.active { z-index: 2; } - -.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group= - + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } - -.btn-toolbar { margin-left: -5px; } - -.btn-toolbar::before, .btn-toolbar::after { display: table; content: " "; } - -.btn-toolbar::after { clear: both; } - -.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { flo= -at: left; } - -.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group= - { margin-left: 5px; } - -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) = -{ border-radius: 0px; } - -.btn-group > .btn:first-child { margin-left: 0px; } - -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { bord= -er-top-right-radius: 0px; border-bottom-right-radius: 0px; } - -.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-togg= -le:not(:first-child) { border-top-left-radius: 0px; border-bottom-left-radi= -us: 0px; } - -.btn-group > .btn-group { float: left; } - -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-= -radius: 0px; } - -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .bt= -n-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { bord= -er-top-right-radius: 0px; border-bottom-right-radius: 0px; } - -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { b= -order-top-left-radius: 0px; border-bottom-left-radius: 0px; } - -.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outl= -ine: 0px; } - -.btn-group > .btn + .dropdown-toggle { padding-right: 8px; padding-left: 8p= -x; } - -.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .= -dropdown-toggle { padding-right: 12px; padding-left: 12px; } - -.btn-group.open .dropdown-toggle { box-shadow: rgba(0, 0, 0, 0.125) 0px 3px= - 5px inset; } - -.btn-group.open .dropdown-toggle.btn-link { box-shadow: none; } - -.btn .caret { margin-left: 0px; } - -.btn-lg .caret, .btn-group-lg > .btn .caret { border-width: 5px 5px 0px; } - -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { border-width:= - 0px 5px 5px; } - -.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-ve= -rtical > .btn-group > .btn { display: block; float: none; width: 100%; max-= -width: 100%; } - -.btn-group-vertical > .btn-group::before, .btn-group-vertical > .btn-group:= -:after { display: table; content: " "; } - -.btn-group-vertical > .btn-group::after { clear: both; } - -.btn-group-vertical > .btn-group > .btn { float: none; } - -.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group,= - .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group = -+ .btn-group { margin-top: -1px; margin-left: 0px; } - -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radi= -us: 0px; } - -.btn-group-vertical > .btn:first-child:not(:last-child) { border-radius: 4p= -x 4px 0px 0px; } - -.btn-group-vertical > .btn:last-child:not(:first-child) { border-radius: 0p= -x 0px 4px 4px; } - -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn = -{ border-radius: 0px; } - -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-c= -hild, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .drop= -down-toggle { border-bottom-right-radius: 0px; border-bottom-left-radius: 0= -px; } - -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-= -child { border-top-left-radius: 0px; border-top-right-radius: 0px; } - -.btn-group-justified { display: table; width: 100%; table-layout: fixed; bo= -rder-collapse: separate; } - -.btn-group-justified > .btn, .btn-group-justified > .btn-group { display: t= -able-cell; float: none; width: 1%; } - -.btn-group-justified > .btn-group .btn { width: 100%; } - -.btn-group-justified > .btn-group .dropdown-menu { left: auto; } - -[data-toggle=3D"buttons"] > .btn input[type=3D"radio"], [data-toggle=3D"but= -tons"] > .btn input[type=3D"checkbox"], [data-toggle=3D"buttons"] > .btn-gr= -oup > .btn input[type=3D"radio"], [data-toggle=3D"buttons"] > .btn-group > = -.btn input[type=3D"checkbox"] { position: absolute; clip: rect(0px, 0px, 0p= -x, 0px); pointer-events: none; } - -.input-group { position: relative; display: table; border-collapse: separat= -e; } - -.input-group[class*=3D"col-"] { float: none; padding-right: 0px; padding-le= -ft: 0px; } - -.input-group .form-control { position: relative; z-index: 2; float: left; w= -idth: 100%; margin-bottom: 0px; } - -.input-group .form-control:focus { z-index: 3; } - -.input-group-addon, .input-group-btn, .input-group .form-control { display:= - table-cell; } - -.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not= -(:first-child):not(:last-child), .input-group .form-control:not(:first-chil= -d):not(:last-child) { border-radius: 0px; } - -.input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vert= -ical-align: middle; } - -.input-group-addon { padding: 6px 12px; font-size: 14px; font-weight: 400; = -line-height: 1; color: rgb(85, 85, 85); text-align: center; background-colo= -r: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); border-radius:= - 4px; } - -.input-group-addon.input-sm, .input-group-sm > .input-group-addon, .input-g= -roup-sm > .input-group-btn > .input-group-addon.btn { padding: 5px 10px; fo= -nt-size: 12px; border-radius: 3px; } - -.input-group-addon.input-lg, .input-group-lg > .input-group-addon, .input-g= -roup-lg > .input-group-btn > .input-group-addon.btn { padding: 10px 16px; f= -ont-size: 18px; border-radius: 6px; } - -.input-group-addon input[type=3D"radio"], .input-group-addon input[type=3D"= -checkbox"] { margin-top: 0px; } - -.input-group .form-control:first-child, .input-group-addon:first-child, .in= -put-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group= - > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:= -last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:= -last-child > .btn-group:not(:last-child) > .btn { border-top-right-radius: = -0px; border-bottom-right-radius: 0px; } - -.input-group-addon:first-child { border-right: 0px; } - -.input-group .form-control:last-child, .input-group-addon:last-child, .inpu= -t-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .= -btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first= --child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:= -not(:first-child) > .btn { border-top-left-radius: 0px; border-bottom-left-= -radius: 0px; } - -.input-group-addon:last-child { border-left: 0px; } - -.input-group-btn { position: relative; font-size: 0px; white-space: nowrap;= - } - -.input-group-btn > .btn { position: relative; } - -.input-group-btn > .btn + .btn { margin-left: -1px; } - -.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-= -btn > .btn:active { z-index: 2; } - -.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-gr= -oup { margin-right: -1px; } - -.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-grou= -p { z-index: 2; margin-left: -1px; } - -.nav { padding-left: 0px; margin-bottom: 0px; list-style: none; } - -.nav::before, .nav::after { display: table; content: " "; } - -.nav::after { clear: both; } - -.nav > li { position: relative; display: block; } - -.nav > li > a { position: relative; display: block; padding: 10px 15px; } - -.nav > li > a:hover, .nav > li > a:focus { text-decoration: none; backgroun= -d-color: rgb(238, 238, 238); } - -.nav > li.disabled > a { color: rgb(119, 119, 119); } - -.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: rgb(119= -, 119, 119); text-decoration: none; cursor: not-allowed; background-color: = -transparent; } - -.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-col= -or: rgb(238, 238, 238); border-color: rgb(219, 62, 62); } - -.nav .nav-divider { height: 1px; margin: 9px 0px; overflow: hidden; backgro= -und-color: rgb(229, 229, 229); } - -.nav > li > a > img { max-width: none; } - -.nav-tabs { border-bottom: 1px solid rgb(221, 221, 221); } - -.nav-tabs > li { float: left; margin-bottom: -1px; } - -.nav-tabs > li > a { margin-right: 2px; line-height: 1.42857; border: 1px s= -olid transparent; border-radius: 4px 4px 0px 0px; } - -.nav-tabs > li > a:hover { border-color: rgb(238, 238, 238) rgb(238, 238, 2= -38) rgb(221, 221, 221); } - -.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.= -active > a:focus { color: rgb(85, 85, 85); cursor: default; background-colo= -r: rgb(255, 255, 255); border-width: 1px; border-style: solid; border-color= -: rgb(221, 221, 221) rgb(221, 221, 221) transparent; border-image: initial;= - } - -.nav-pills > li { float: left; } - -.nav-pills > li > a { border-radius: 4px; } - -.nav-pills > li + li { margin-left: 2px; } - -.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > = -li.active > a:focus { color: rgb(255, 255, 255); background-color: rgb(219,= - 62, 62); } - -.nav-stacked > li { float: none; } - -.nav-stacked > li + li { margin-top: 2px; margin-left: 0px; } - -.nav-justified, .nav-tabs.nav-justified { width: 100%; } - -.nav-justified > li, .nav-tabs.nav-justified > li { float: none; } - -.nav-justified > li > a, .nav-tabs.nav-justified > li > a { margin-bottom: = -5px; text-align: center; } - -.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } - -@media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { display: table-cell; = -width: 1%; } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { margin-bottom= -: 0px; } -} - -.nav-tabs-justified, .nav-tabs.nav-justified { border-bottom: 0px; } - -.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { margin-rig= -ht: 0px; border-radius: 4px; } - -.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .= -nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:f= -ocus { border: 1px solid rgb(221, 221, 221); } - -@media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { border-b= -ottom: 1px solid rgb(221, 221, 221); border-radius: 4px 4px 0px 0px; } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,= - .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a= -:focus { border-bottom-color: rgb(255, 255, 255); } -} - -.tab-content > .tab-pane { display: none; } - -.tab-content > .active { display: block; } - -.nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0px; b= -order-top-right-radius: 0px; } - -.navbar { position: relative; min-height: 50px; margin-bottom: 20px; border= -: 1px solid transparent; } - -.navbar::before, .navbar::after { display: table; content: " "; } - -.navbar::after { clear: both; } - -@media (min-width: 768px) { - .navbar { border-radius: 4px; } -} - -.navbar-header::before, .navbar-header::after { display: table; content: " = -"; } - -.navbar-header::after { clear: both; } - -@media (min-width: 768px) { - .navbar-header { float: left; } -} - -.navbar-collapse { padding-right: 15px; padding-left: 15px; overflow-x: vis= -ible; border-top: 1px solid transparent; box-shadow: rgba(255, 255, 255, 0.= -1) 0px 1px 0px inset; } - -.navbar-collapse::before, .navbar-collapse::after { display: table; content= -: " "; } - -.navbar-collapse::after { clear: both; } - -.navbar-collapse.in { overflow-y: auto; } - -@media (min-width: 768px) { - .navbar-collapse { width: auto; border-top: 0px; box-shadow: none; } - .navbar-collapse.collapse { padding-bottom: 0px; display: block !importan= -t; height: auto !important; overflow: visible !important; } - .navbar-collapse.in { overflow-y: visible; } - .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, = -.navbar-fixed-bottom .navbar-collapse { padding-right: 0px; padding-left: 0= -px; } -} - -.navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0px; left= -: 0px; z-index: 1030; } - -.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {= - max-height: 340px; } - -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse= - { max-height: 200px; } -} - -@media (min-width: 768px) { - .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0px; } -} - -.navbar-fixed-top { top: 0px; border-width: 0px 0px 1px; } - -.navbar-fixed-bottom { bottom: 0px; margin-bottom: 0px; border-width: 1px 0= -px 0px; } - -.container > .navbar-header, .container > .navbar-collapse, .container-flui= -d > .navbar-header, .container-fluid > .navbar-collapse { margin-right: -15= -px; margin-left: -15px; } - -@media (min-width: 768px) { - .container > .navbar-header, .container > .navbar-collapse, .container-fl= -uid > .navbar-header, .container-fluid > .navbar-collapse { margin-right: 0= -px; margin-left: 0px; } -} - -.navbar-static-top { z-index: 1000; border-width: 0px 0px 1px; } - -@media (min-width: 768px) { - .navbar-static-top { border-radius: 0px; } -} - -.navbar-brand { float: left; height: 50px; padding: 15px; font-size: 18px; = -line-height: 20px; } - -.navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } - -.navbar-brand > img { display: block; } - -@media (min-width: 768px) { - .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-br= -and { margin-left: -15px; } -} - -.navbar-toggle { position: relative; float: right; padding: 9px 10px; margi= -n-right: 15px; margin-top: 8px; margin-bottom: 8px; background-color: trans= -parent; background-image: none; border: 1px solid transparent; border-radiu= -s: 4px; } - -.navbar-toggle:focus { outline: 0px; } - -.navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border= --radius: 1px; } - -.navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } - -@media (min-width: 768px) { - .navbar-toggle { display: none; } -} - -.navbar-nav { margin: 7.5px -15px; } - -.navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height= -: 20px; } - -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { position: static; float: none; width: = -auto; margin-top: 0px; background-color: transparent; border: 0px; box-shad= -ow: none; } - .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-me= -nu .dropdown-header { padding: 5px 15px 5px 25px; } - .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropd= -own-menu > li > a:focus { background-image: none; } -} - -@media (min-width: 768px) { - .navbar-nav { float: left; margin: 0px; } - .navbar-nav > li { float: left; } - .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; } -} - -.navbar-form { padding: 10px 15px; margin: 8px -15px; border-top: 1px solid= - transparent; border-bottom: 1px solid transparent; box-shadow: rgba(255, 2= -55, 255, 0.1) 0px 1px 0px inset, rgba(255, 255, 255, 0.1) 0px 1px 0px; } - -@media (min-width: 768px) { - .navbar-form .form-group { display: inline-block; margin-bottom: 0px; ver= -tical-align: middle; } - .navbar-form .form-control { display: inline-block; width: auto; vertical= --align: middle; } - .navbar-form .form-control-static { display: inline-block; } - .navbar-form .input-group { display: inline-table; vertical-align: middle= -; } - .navbar-form .input-group .input-group-addon, .navbar-form .input-group .= -input-group-btn, .navbar-form .input-group .form-control { width: auto; } - .navbar-form .input-group > .form-control { width: 100%; } - .navbar-form .control-label { margin-bottom: 0px; vertical-align: middle;= - } - .navbar-form .radio, .navbar-form .checkbox { display: inline-block; marg= -in-top: 0px; margin-bottom: 0px; vertical-align: middle; } - .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0= -px; } - .navbar-form .radio input[type=3D"radio"], .navbar-form .checkbox input[t= -ype=3D"checkbox"] { position: relative; margin-left: 0px; } - .navbar-form .has-feedback .form-control-feedback { top: 0px; } -} - -@media (max-width: 767px) { - .navbar-form .form-group { margin-bottom: 5px; } - .navbar-form .form-group:last-child { margin-bottom: 0px; } -} - -@media (min-width: 768px) { - .navbar-form { width: auto; padding-top: 0px; padding-bottom: 0px; margin= --right: 0px; margin-left: 0px; border: 0px; box-shadow: none; } -} - -.navbar-nav > li > .dropdown-menu { margin-top: 0px; border-top-left-radius= -: 0px; border-top-right-radius: 0px; } - -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0px= -; border-radius: 4px 4px 0px 0px; } - -.navbar-btn { margin-top: 8px; margin-bottom: 8px; } - -.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { margin-top: 10px; mar= -gin-bottom: 10px; } - -.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { margin-top: 14px; mar= -gin-bottom: 14px; } - -.navbar-text { margin-top: 15px; margin-bottom: 15px; } - -@media (min-width: 768px) { - .navbar-text { float: left; margin-right: 15px; margin-left: 15px; } -} - -@media (min-width: 768px) { - .navbar-left { float: left !important; } - .navbar-right { margin-right: -15px; float: right !important; } - .navbar-right ~ .navbar-right { margin-right: 0px; } -} - -.navbar-default { background-color: rgb(248, 248, 248); border-color: rgb(2= -31, 231, 231); } - -.navbar-default .navbar-brand { color: rgb(119, 119, 119); } - -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { = -color: rgb(94, 94, 94); background-color: transparent; } - -.navbar-default .navbar-text { color: rgb(119, 119, 119); } - -.navbar-default .navbar-nav > li > a { color: rgb(119, 119, 119); } - -.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > l= -i > a:focus { color: rgb(51, 51, 51); background-color: transparent; } - -.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .a= -ctive > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: r= -gb(85, 85, 85); background-color: rgb(231, 231, 231); } - -.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > = -.disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { co= -lor: rgb(204, 204, 204); background-color: transparent; } - -.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .ope= -n > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: rgb(85,= - 85, 85); background-color: rgb(231, 231, 231); } - -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: rgb(11= -9, 119, 119); } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-= -default .navbar-nav .open .dropdown-menu > li > a:focus { color: rgb(51, 51= -, 51); background-color: transparent; } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-d= -efault .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-defaul= -t .navbar-nav .open .dropdown-menu > .active > a:focus { color: rgb(85, 85,= - 85); background-color: rgb(231, 231, 231); } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar= --default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-de= -fault .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: rgb(2= -04, 204, 204); background-color: transparent; } -} - -.navbar-default .navbar-toggle { border-color: rgb(221, 221, 221); } - -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus = -{ background-color: rgb(221, 221, 221); } - -.navbar-default .navbar-toggle .icon-bar { background-color: rgb(136, 136, = -136); } - -.navbar-default .navbar-collapse, .navbar-default .navbar-form { border-col= -or: rgb(231, 231, 231); } - -.navbar-default .navbar-link { color: rgb(119, 119, 119); } - -.navbar-default .navbar-link:hover { color: rgb(51, 51, 51); } - -.navbar-default .btn-link { color: rgb(119, 119, 119); } - -.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: r= -gb(51, 51, 51); } - -.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabl= -ed]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[dis= -abled] .navbar-default .btn-link:focus { color: rgb(204, 204, 204); } - -.navbar-inverse { background-color: rgb(34, 34, 34); border-color: rgb(9, 9= -, 9); } - -.navbar-inverse .navbar-brand { color: rgb(157, 157, 157); } - -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { = -color: rgb(255, 255, 255); background-color: transparent; } - -.navbar-inverse .navbar-text { color: rgb(157, 157, 157); } - -.navbar-inverse .navbar-nav > li > a { color: rgb(157, 157, 157); } - -.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > l= -i > a:focus { color: rgb(255, 255, 255); background-color: transparent; } - -.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .a= -ctive > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: r= -gb(255, 255, 255); background-color: rgb(9, 9, 9); } - -.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > = -.disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { co= -lor: rgb(68, 68, 68); background-color: transparent; } - -.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .ope= -n > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: rgb(255= -, 255, 255); background-color: rgb(9, 9, 9); } - -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { bor= -der-color: rgb(9, 9, 9); } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-co= -lor: rgb(9, 9, 9); } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: rgb(15= -7, 157, 157); } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-= -inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: rgb(255, 2= -55, 255); background-color: transparent; } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-i= -nverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-invers= -e .navbar-nav .open .dropdown-menu > .active > a:focus { color: rgb(255, 25= -5, 255); background-color: rgb(9, 9, 9); } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar= --inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-in= -verse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: rgb(6= -8, 68, 68); background-color: transparent; } -} - -.navbar-inverse .navbar-toggle { border-color: rgb(51, 51, 51); } - -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus = -{ background-color: rgb(51, 51, 51); } - -.navbar-inverse .navbar-toggle .icon-bar { background-color: rgb(255, 255, = -255); } - -.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-col= -or: rgb(16, 16, 16); } - -.navbar-inverse .navbar-link { color: rgb(157, 157, 157); } - -.navbar-inverse .navbar-link:hover { color: rgb(255, 255, 255); } - -.navbar-inverse .btn-link { color: rgb(157, 157, 157); } - -.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: r= -gb(255, 255, 255); } - -.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabl= -ed]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[dis= -abled] .navbar-inverse .btn-link:focus { color: rgb(68, 68, 68); } - -.breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; bac= -kground-color: rgb(245, 245, 245); border-radius: 4px; } - -.breadcrumb > li { display: inline-block; } - -.breadcrumb > li + li::before { padding: 0px 5px; color: rgb(204, 204, 204)= -; content: "/=C2=A0"; } - -.breadcrumb > .active { color: rgb(119, 119, 119); } - -.pagination { display: inline-block; padding-left: 0px; margin: 20px 0px; b= -order-radius: 4px; } - -.pagination > li { display: inline; } - -.pagination > li > a, .pagination > li > span { position: relative; float: = -left; padding: 6px 12px; margin-left: -1px; line-height: 1.42857; color: rg= -b(219, 62, 62); text-decoration: none; background-color: rgb(255, 255, 255)= -; border: 1px solid rgb(221, 221, 221); } - -.pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > = -span:hover, .pagination > li > span:focus { z-index: 2; color: rgb(172, 32,= - 32); background-color: rgb(238, 238, 238); border-color: rgb(221, 221, 221= -); } - -.pagination > li:first-child > a, .pagination > li:first-child > span { mar= -gin-left: 0px; border-top-left-radius: 4px; border-bottom-left-radius: 4px;= - } - -.pagination > li:last-child > a, .pagination > li:last-child > span { borde= -r-top-right-radius: 4px; border-bottom-right-radius: 4px; } - -.pagination > .active > a, .pagination > .active > a:hover, .pagination > .= -active > a:focus, .pagination > .active > span, .pagination > .active > spa= -n:hover, .pagination > .active > span:focus { z-index: 3; color: rgb(255, 2= -55, 255); cursor: default; background-color: rgb(219, 62, 62); border-color= -: rgb(219, 62, 62); } - -.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagi= -nation > .disabled > span:focus, .pagination > .disabled > a, .pagination >= - .disabled > a:hover, .pagination > .disabled > a:focus { color: rgb(119, 1= -19, 119); cursor: not-allowed; background-color: rgb(255, 255, 255); border= --color: rgb(221, 221, 221); } - -.pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; f= -ont-size: 18px; line-height: 1.33333; } - -.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span= - { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } - -.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {= - border-top-right-radius: 6px; border-bottom-right-radius: 6px; } - -.pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; fo= -nt-size: 12px; line-height: 1.5; } - -.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span= - { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } - -.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {= - border-top-right-radius: 3px; border-bottom-right-radius: 3px; } - -.pager { padding-left: 0px; margin: 20px 0px; text-align: center; list-styl= -e: none; } - -.pager::before, .pager::after { display: table; content: " "; } - -.pager::after { clear: both; } - -.pager li { display: inline; } - -.pager li > a, .pager li > span { display: inline-block; padding: 5px 14px;= - background-color: rgb(255, 255, 255); border: 1px solid rgb(221, 221, 221)= -; border-radius: 15px; } - -.pager li > a:hover, .pager li > a:focus { text-decoration: none; backgroun= -d-color: rgb(238, 238, 238); } - -.pager .next > a, .pager .next > span { float: right; } - -.pager .previous > a, .pager .previous > span { float: left; } - -.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focu= -s, .pager .disabled > span { color: rgb(119, 119, 119); cursor: not-allowed= -; background-color: rgb(255, 255, 255); } - -.label { display: inline; padding: 0.2em 0.6em 0.3em; font-size: 75%; font-= -weight: 700; line-height: 1; color: rgb(255, 255, 255); text-align: center;= - white-space: nowrap; vertical-align: baseline; border-radius: 0.25em; } - -.label:empty { display: none; } - -.btn .label { position: relative; top: -1px; } - -a.label:hover, a.label:focus { color: rgb(255, 255, 255); text-decoration: = -none; cursor: pointer; } - -.label-default { background-color: rgb(119, 119, 119); } - -.label-default[href]:hover, .label-default[href]:focus { background-color: = -rgb(94, 94, 94); } - -.label-primary { background-color: rgb(219, 62, 62); } - -.label-primary[href]:hover, .label-primary[href]:focus { background-color: = -rgb(194, 36, 36); } - -.label-success { background-color: rgb(92, 184, 92); } - -.label-success[href]:hover, .label-success[href]:focus { background-color: = -rgb(68, 157, 68); } - -.label-info { background-color: rgb(152, 163, 174); } - -.label-info[href]:hover, .label-info[href]:focus { background-color: rgb(12= -3, 138, 152); } - -.label-warning { background-color: rgb(240, 173, 78); } - -.label-warning[href]:hover, .label-warning[href]:focus { background-color: = -rgb(236, 151, 31); } - -.label-danger { background-color: rgb(217, 83, 79); } - -.label-danger[href]:hover, .label-danger[href]:focus { background-color: rg= -b(201, 48, 44); } - -.badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-siz= -e: 12px; font-weight: bold; line-height: 1; color: rgb(255, 255, 255); text= --align: center; white-space: nowrap; vertical-align: middle; background-col= -or: rgb(119, 119, 119); border-radius: 10px; } - -.badge:empty { display: none; } - -.btn .badge { position: relative; top: -1px; } - -.btn-xs .badge, .btn-group-xs > .btn .badge { top: 0px; padding: 1px 5px; } - -.list-group-item.active > .badge, .nav-pills > .active > a > .badge { color= -: rgb(219, 62, 62); background-color: rgb(255, 255, 255); } - -.list-group-item > .badge { float: right; } - -.list-group-item > .badge + .badge { margin-right: 5px; } - -.nav-pills > li > a > .badge { margin-left: 3px; } - -a.badge:hover, a.badge:focus { color: rgb(255, 255, 255); text-decoration: = -none; cursor: pointer; } - -.jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; = -color: inherit; background-color: rgb(238, 238, 238); } - -.jumbotron h1, .jumbotron .h1 { color: inherit; } - -.jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } - -.jumbotron > hr { border-top-color: rgb(213, 213, 213); } - -.container .jumbotron, .container-fluid .jumbotron { padding-right: 15px; p= -adding-left: 15px; border-radius: 6px; } - -.jumbotron .container { max-width: 100%; } - -@media screen and (min-width: 768px) { - .jumbotron { padding-top: 48px; padding-bottom: 48px; } - .container .jumbotron, .container-fluid .jumbotron { padding-right: 60px;= - padding-left: 60px; } - .jumbotron h1, .jumbotron .h1 { font-size: 63px; } -} - -.thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height= -: 1.42857; background-color: rgb(255, 255, 255); border: 1px solid rgb(221,= - 221, 221); border-radius: 4px; transition: border 0.2s ease-in-out 0s; } - -.thumbnail > img, .thumbnail a > img { display: block; max-width: 100%; hei= -ght: auto; margin-right: auto; margin-left: auto; } - -.thumbnail .caption { padding: 9px; color: rgb(51, 51, 51); } - -a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: rg= -b(219, 62, 62); } - -.alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent;= - border-radius: 4px; } - -.alert h4 { margin-top: 0px; color: inherit; } - -.alert .alert-link { font-weight: bold; } - -.alert > p, .alert > ul { margin-bottom: 0px; } - -.alert > p + p { margin-top: 5px; } - -.alert-dismissable, .alert-dismissible { padding-right: 35px; } - -.alert-dismissable .close, .alert-dismissible .close { position: relative; = -top: -2px; right: -21px; color: inherit; } - -.alert-success { color: rgb(60, 118, 61); background-color: rgb(223, 240, 2= -16); border-color: rgb(214, 233, 198); } - -.alert-success hr { border-top-color: rgb(201, 226, 179); } - -.alert-success .alert-link { color: rgb(43, 84, 44); } - -.alert-info { color: rgb(152, 163, 174); background-color: rgb(238, 240, 24= -1); border-color: rgb(218, 223, 226); } - -.alert-info hr { border-top-color: rgb(203, 211, 214); } - -.alert-info .alert-link { color: rgb(123, 138, 152); } - -.alert-warning { color: rgb(138, 109, 59); background-color: rgb(252, 248, = -227); border-color: rgb(250, 235, 204); } - -.alert-warning hr { border-top-color: rgb(247, 225, 181); } - -.alert-warning .alert-link { color: rgb(102, 81, 44); } - -.alert-danger { color: rgb(169, 68, 66); background-color: rgb(242, 222, 22= -2); border-color: rgb(235, 204, 209); } - -.alert-danger hr { border-top-color: rgb(228, 185, 192); } - -.alert-danger .alert-link { color: rgb(132, 53, 52); } - -@-webkit-keyframes progress-bar-stripes {=20 - 0% { background-position: 40px 0px; } - 100% { background-position: 0px 0px; } -} - -@keyframes progress-bar-stripes {=20 - 0% { background-position: 40px 0px; } - 100% { background-position: 0px 0px; } -} - -.progress { height: 20px; margin-bottom: 20px; overflow: hidden; background= --color: rgb(245, 245, 245); border-radius: 4px; box-shadow: rgba(0, 0, 0, 0= -.1) 0px 1px 2px inset; } - -.progress-bar { float: left; width: 0%; height: 100%; font-size: 12px; line= --height: 20px; color: rgb(255, 255, 255); text-align: center; background-co= -lor: rgb(219, 62, 62); box-shadow: rgba(0, 0, 0, 0.15) 0px -1px 0px inset; = -transition: width 0.6s ease 0s; } - -.progress-striped .progress-bar, .progress-bar-striped { background-image: = -linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, tran= -sparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, = -transparent 75%, transparent); background-size: 40px 40px; } - -.progress.active .progress-bar, .progress-bar.active { animation: 2s linear= - 0s infinite normal none running progress-bar-stripes; } - -.progress-bar-success { background-color: rgb(92, 184, 92); } - -.progress-striped .progress-bar-success { background-image: linear-gradient= -(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rg= -ba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%= -, transparent); } - -.progress-bar-info { background-color: rgb(152, 163, 174); } - -.progress-striped .progress-bar-info { background-image: linear-gradient(45= -deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(= -255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, t= -ransparent); } - -.progress-bar-warning { background-color: rgb(240, 173, 78); } - -.progress-striped .progress-bar-warning { background-image: linear-gradient= -(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rg= -ba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%= -, transparent); } - -.progress-bar-danger { background-color: rgb(217, 83, 79); } - -.progress-striped .progress-bar-danger { background-image: linear-gradient(= -45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgb= -a(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%,= - transparent); } - -.media { margin-top: 15px; } - -.media:first-child { margin-top: 0px; } - -.media, .media-body { overflow: hidden; zoom: 1; } - -.media-body { width: 10000px; } - -.media-object { display: block; } - -.media-object.img-thumbnail { max-width: none; } - -.media-right, .media > .pull-right { padding-left: 10px; } - -.media-left, .media > .pull-left { padding-right: 10px; } - -.media-left, .media-right, .media-body { display: table-cell; vertical-alig= -n: top; } - -.media-middle { vertical-align: middle; } - -.media-bottom { vertical-align: bottom; } - -.media-heading { margin-top: 0px; margin-bottom: 5px; } - -.media-list { padding-left: 0px; list-style: none; } - -.list-group { padding-left: 0px; margin-bottom: 20px; } - -.list-group-item { position: relative; display: block; padding: 10px 15px; = -margin-bottom: -1px; background-color: rgb(255, 255, 255); border: 1px soli= -d rgb(221, 221, 221); } - -.list-group-item:first-child { border-top-left-radius: 4px; border-top-righ= -t-radius: 4px; } - -.list-group-item:last-child { margin-bottom: 0px; border-bottom-right-radiu= -s: 4px; border-bottom-left-radius: 4px; } - -.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-ite= -m.disabled:focus { color: rgb(119, 119, 119); cursor: not-allowed; backgrou= -nd-color: rgb(238, 238, 238); } - -.list-group-item.disabled .list-group-item-heading, .list-group-item.disabl= -ed:hover .list-group-item-heading, .list-group-item.disabled:focus .list-gr= -oup-item-heading { color: inherit; } - -.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:= -hover .list-group-item-text, .list-group-item.disabled:focus .list-group-it= -em-text { color: rgb(119, 119, 119); } - -.list-group-item.active, .list-group-item.active:hover, .list-group-item.ac= -tive:focus { z-index: 2; color: rgb(255, 255, 255); background-color: rgb(2= -19, 62, 62); border-color: rgb(219, 62, 62); } - -.list-group-item.active .list-group-item-heading, .list-group-item.active .= -list-group-item-heading > small, .list-group-item.active .list-group-item-h= -eading > .small, .list-group-item.active:hover .list-group-item-heading, .l= -ist-group-item.active:hover .list-group-item-heading > small, .list-group-i= -tem.active:hover .list-group-item-heading > .small, .list-group-item.active= -:focus .list-group-item-heading, .list-group-item.active:focus .list-group-= -item-heading > small, .list-group-item.active:focus .list-group-item-headin= -g > .small { color: inherit; } - -.list-group-item.active .list-group-item-text, .list-group-item.active:hove= -r .list-group-item-text, .list-group-item.active:focus .list-group-item-tex= -t { color: rgb(251, 234, 234); } - -a.list-group-item, button.list-group-item { color: rgb(85, 85, 85); } - -a.list-group-item .list-group-item-heading, button.list-group-item .list-gr= -oup-item-heading { color: rgb(51, 51, 51); } - -a.list-group-item:hover, a.list-group-item:focus, button.list-group-item:ho= -ver, button.list-group-item:focus { color: rgb(85, 85, 85); text-decoration= -: none; background-color: rgb(245, 245, 245); } - -button.list-group-item { width: 100%; text-align: left; } - -.list-group-item-success { color: rgb(60, 118, 61); background-color: rgb(2= -23, 240, 216); } - -a.list-group-item-success, button.list-group-item-success { color: rgb(60, = -118, 61); } - -a.list-group-item-success .list-group-item-heading, button.list-group-item-= -success .list-group-item-heading { color: inherit; } - -a.list-group-item-success:hover, a.list-group-item-success:focus, button.li= -st-group-item-success:hover, button.list-group-item-success:focus { color: = -rgb(60, 118, 61); background-color: rgb(208, 233, 198); } - -a.list-group-item-success.active, a.list-group-item-success.active:hover, a= -.list-group-item-success.active:focus, button.list-group-item-success.activ= -e, button.list-group-item-success.active:hover, button.list-group-item-succ= -ess.active:focus { color: rgb(255, 255, 255); background-color: rgb(60, 118= -, 61); border-color: rgb(60, 118, 61); } - -.list-group-item-info { color: rgb(152, 163, 174); background-color: rgb(23= -8, 240, 241); } - -a.list-group-item-info, button.list-group-item-info { color: rgb(152, 163, = -174); } - -a.list-group-item-info .list-group-item-heading, button.list-group-item-inf= -o .list-group-item-heading { color: inherit; } - -a.list-group-item-info:hover, a.list-group-item-info:focus, button.list-gro= -up-item-info:hover, button.list-group-item-info:focus { color: rgb(152, 163= -, 174); background-color: rgb(223, 227, 230); } - -a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-= -group-item-info.active:focus, button.list-group-item-info.active, button.li= -st-group-item-info.active:hover, button.list-group-item-info.active:focus {= - color: rgb(255, 255, 255); background-color: rgb(152, 163, 174); border-co= -lor: rgb(152, 163, 174); } - -.list-group-item-warning { color: rgb(138, 109, 59); background-color: rgb(= -252, 248, 227); } - -a.list-group-item-warning, button.list-group-item-warning { color: rgb(138,= - 109, 59); } - -a.list-group-item-warning .list-group-item-heading, button.list-group-item-= -warning .list-group-item-heading { color: inherit; } - -a.list-group-item-warning:hover, a.list-group-item-warning:focus, button.li= -st-group-item-warning:hover, button.list-group-item-warning:focus { color: = -rgb(138, 109, 59); background-color: rgb(250, 242, 204); } - -a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a= -.list-group-item-warning.active:focus, button.list-group-item-warning.activ= -e, button.list-group-item-warning.active:hover, button.list-group-item-warn= -ing.active:focus { color: rgb(255, 255, 255); background-color: rgb(138, 10= -9, 59); border-color: rgb(138, 109, 59); } - -.list-group-item-danger { color: rgb(169, 68, 66); background-color: rgb(24= -2, 222, 222); } - -a.list-group-item-danger, button.list-group-item-danger { color: rgb(169, 6= -8, 66); } - -a.list-group-item-danger .list-group-item-heading, button.list-group-item-d= -anger .list-group-item-heading { color: inherit; } - -a.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list= --group-item-danger:hover, button.list-group-item-danger:focus { color: rgb(= -169, 68, 66); background-color: rgb(235, 204, 204); } - -a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.l= -ist-group-item-danger.active:focus, button.list-group-item-danger.active, b= -utton.list-group-item-danger.active:hover, button.list-group-item-danger.ac= -tive:focus { color: rgb(255, 255, 255); background-color: rgb(169, 68, 66);= - border-color: rgb(169, 68, 66); } - -.list-group-item-heading { margin-top: 0px; margin-bottom: 5px; } - -.list-group-item-text { margin-bottom: 0px; line-height: 1.3; } - -.panel { margin-bottom: 20px; background-color: rgb(255, 255, 255); border:= - 1px solid transparent; border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.05)= - 0px 1px 1px; } - -.panel-body { padding: 15px; } - -.panel-body::before, .panel-body::after { display: table; content: " "; } - -.panel-body::after { clear: both; } - -.panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; = -border-top-left-radius: 3px; border-top-right-radius: 3px; } - -.panel-heading > .dropdown .dropdown-toggle { color: inherit; } - -.panel-title { margin-top: 0px; margin-bottom: 0px; font-size: 16px; color:= - inherit; } - -.panel-title > a, .panel-title > small, .panel-title > .small, .panel-title= - > small > a, .panel-title > .small > a { color: inherit; } - -.panel-footer { padding: 10px 15px; background-color: rgb(245, 245, 245); b= -order-top: 1px solid rgb(221, 221, 221); border-bottom-right-radius: 3px; b= -order-bottom-left-radius: 3px; } - -.panel > .list-group, .panel > .panel-collapse > .list-group { margin-botto= -m: 0px; } - -.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-gro= -up .list-group-item { border-width: 1px 0px; border-radius: 0px; } - -.panel > .list-group:first-child .list-group-item:first-child, .panel > .pa= -nel-collapse > .list-group:first-child .list-group-item:first-child { borde= -r-top: 0px; border-top-left-radius: 3px; border-top-right-radius: 3px; } - -.panel > .list-group:last-child .list-group-item:last-child, .panel > .pane= -l-collapse > .list-group:last-child .list-group-item:last-child { border-bo= -ttom: 0px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;= - } - -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:fi= -rst-child { border-top-left-radius: 0px; border-top-right-radius: 0px; } - -.panel-heading + .list-group .list-group-item:first-child { border-top-widt= -h: 0px; } - -.list-group + .panel-footer { border-top-width: 0px; } - -.panel > .table, .panel > .table-responsive > .table, .panel > .panel-colla= -pse > .table { margin-bottom: 0px; } - -.panel > .table caption, .panel > .table-responsive > .table caption, .pane= -l > .panel-collapse > .table caption { padding-right: 15px; padding-left: 1= -5px; } - -.panel > .table:first-child, .panel > .table-responsive:first-child > .tabl= -e:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; = -} - -.panel > .table:first-child > thead:first-child > tr:first-child, .panel > = -.table:first-child > tbody:first-child > tr:first-child, .panel > .table-re= -sponsive:first-child > .table:first-child > thead:first-child > tr:first-ch= -ild, .panel > .table-responsive:first-child > .table:first-child > tbody:fi= -rst-child > tr:first-child { border-top-left-radius: 3px; border-top-right-= -radius: 3px; } - -.panel > .table:first-child > thead:first-child > tr:first-child td:first-c= -hild, .panel > .table:first-child > thead:first-child > tr:first-child th:f= -irst-child, .panel > .table:first-child > tbody:first-child > tr:first-chil= -d td:first-child, .panel > .table:first-child > tbody:first-child > tr:firs= -t-child th:first-child, .panel > .table-responsive:first-child > .table:fir= -st-child > thead:first-child > tr:first-child td:first-child, .panel > .tab= -le-responsive:first-child > .table:first-child > thead:first-child > tr:fir= -st-child th:first-child, .panel > .table-responsive:first-child > .table:fi= -rst-child > tbody:first-child > tr:first-child td:first-child, .panel > .ta= -ble-responsive:first-child > .table:first-child > tbody:first-child > tr:fi= -rst-child th:first-child { border-top-left-radius: 3px; } - -.panel > .table:first-child > thead:first-child > tr:first-child td:last-ch= -ild, .panel > .table:first-child > thead:first-child > tr:first-child th:la= -st-child, .panel > .table:first-child > tbody:first-child > tr:first-child = -td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-c= -hild th:last-child, .panel > .table-responsive:first-child > .table:first-c= -hild > thead:first-child > tr:first-child td:last-child, .panel > .table-re= -sponsive:first-child > .table:first-child > thead:first-child > tr:first-ch= -ild th:last-child, .panel > .table-responsive:first-child > .table:first-ch= -ild > tbody:first-child > tr:first-child td:last-child, .panel > .table-res= -ponsive:first-child > .table:first-child > tbody:first-child > tr:first-chi= -ld th:last-child { border-top-right-radius: 3px; } - -.panel > .table:last-child, .panel > .table-responsive:last-child > .table:= -last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3p= -x; } - -.panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .ta= -ble:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsi= -ve:last-child > .table:last-child > tbody:last-child > tr:last-child, .pane= -l > .table-responsive:last-child > .table:last-child > tfoot:last-child > t= -r:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: = -3px; } - -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-chil= -d, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-c= -hild, .panel > .table:last-child > tfoot:last-child > tr:last-child td:firs= -t-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:f= -irst-child, .panel > .table-responsive:last-child > .table:last-child > tbo= -dy:last-child > tr:last-child td:first-child, .panel > .table-responsive:la= -st-child > .table:last-child > tbody:last-child > tr:last-child th:first-ch= -ild, .panel > .table-responsive:last-child > .table:last-child > tfoot:last= --child > tr:last-child td:first-child, .panel > .table-responsive:last-chil= -d > .table:last-child > tfoot:last-child > tr:last-child th:first-child { b= -order-bottom-left-radius: 3px; } - -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child= -, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-chi= -ld, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-c= -hild, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last= --child, .panel > .table-responsive:last-child > .table:last-child > tbody:l= -ast-child > tr:last-child td:last-child, .panel > .table-responsive:last-ch= -ild > .table:last-child > tbody:last-child > tr:last-child th:last-child, .= -panel > .table-responsive:last-child > .table:last-child > tfoot:last-child= - > tr:last-child td:last-child, .panel > .table-responsive:last-child > .ta= -ble:last-child > tfoot:last-child > tr:last-child th:last-child { border-bo= -ttom-right-radius: 3px; } - -.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .p= -anel > .table + .panel-body, .panel > .table-responsive + .panel-body { bor= -der-top: 1px solid rgb(221, 221, 221); } - -.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > = -tbody:first-child > tr:first-child td { border-top: 0px; } - -.panel > .table-bordered, .panel > .table-responsive > .table-bordered { bo= -rder: 0px; } - -.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-bor= -dered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr = -> th:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .= -panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bord= -ered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bor= -dered > thead > tr > th:first-child, .panel > .table-responsive > .table-bo= -rdered > thead > tr > td:first-child, .panel > .table-responsive > .table-b= -ordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-= -bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table= --bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .tabl= -e-bordered > tfoot > tr > td:first-child { border-left: 0px; } - -.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-bord= -ered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > = -th:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .pane= -l > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered = -> tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered = -> thead > tr > th:last-child, .panel > .table-responsive > .table-bordered = -> thead > tr > td:last-child, .panel > .table-responsive > .table-bordered = -> tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered = -> tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered = -> tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered = -> tfoot > tr > td:last-child { border-right: 0px; } - -.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bor= -dered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:= -first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .= -panel > .table-responsive > .table-bordered > thead > tr:first-child > td, = -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,= - .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td= -, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > t= -h { border-bottom: 0px; } - -.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bord= -ered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:la= -st-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .pane= -l > .table-responsive > .table-bordered > tbody > tr:last-child > td, .pane= -l > .table-responsive > .table-bordered > tbody > tr:last-child > th, .pane= -l > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .pane= -l > .table-responsive > .table-bordered > tfoot > tr:last-child > th { bord= -er-bottom: 0px; } - -.panel > .table-responsive { margin-bottom: 0px; border: 0px; } - -.panel-group { margin-bottom: 20px; } - -.panel-group .panel { margin-bottom: 0px; border-radius: 4px; } - -.panel-group .panel + .panel { margin-top: 5px; } - -.panel-group .panel-heading { border-bottom: 0px; } - -.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .= -panel-heading + .panel-collapse > .list-group { border-top: 1px solid rgb(2= -21, 221, 221); } - -.panel-group .panel-footer { border-top: 0px; } - -.panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1= -px solid rgb(221, 221, 221); } - -.panel-default { border-color: rgb(221, 221, 221); } - -.panel-default > .panel-heading { color: rgb(51, 51, 51); background-color:= - rgb(245, 245, 245); border-color: rgb(221, 221, 221); } - -.panel-default > .panel-heading + .panel-collapse > .panel-body { border-to= -p-color: rgb(221, 221, 221); } - -.panel-default > .panel-heading .badge { color: rgb(245, 245, 245); backgro= -und-color: rgb(51, 51, 51); } - -.panel-default > .panel-footer + .panel-collapse > .panel-body { border-bot= -tom-color: rgb(221, 221, 221); } - -.panel-primary { border-color: rgb(219, 62, 62); } - -.panel-primary > .panel-heading { color: rgb(255, 255, 255); background-col= -or: rgb(219, 62, 62); border-color: rgb(219, 62, 62); } - -.panel-primary > .panel-heading + .panel-collapse > .panel-body { border-to= -p-color: rgb(219, 62, 62); } - -.panel-primary > .panel-heading .badge { color: rgb(219, 62, 62); backgroun= -d-color: rgb(255, 255, 255); } - -.panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bot= -tom-color: rgb(219, 62, 62); } - -.panel-success { border-color: rgb(214, 233, 198); } - -.panel-success > .panel-heading { color: rgb(60, 118, 61); background-color= -: rgb(223, 240, 216); border-color: rgb(214, 233, 198); } - -.panel-success > .panel-heading + .panel-collapse > .panel-body { border-to= -p-color: rgb(214, 233, 198); } - -.panel-success > .panel-heading .badge { color: rgb(223, 240, 216); backgro= -und-color: rgb(60, 118, 61); } - -.panel-success > .panel-footer + .panel-collapse > .panel-body { border-bot= -tom-color: rgb(214, 233, 198); } - -.panel-info { border-color: rgb(218, 223, 226); } - -.panel-info > .panel-heading { color: rgb(152, 163, 174); background-color:= - rgb(238, 240, 241); border-color: rgb(218, 223, 226); } - -.panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-c= -olor: rgb(218, 223, 226); } - -.panel-info > .panel-heading .badge { color: rgb(238, 240, 241); background= --color: rgb(152, 163, 174); } - -.panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom= --color: rgb(218, 223, 226); } - -.panel-warning { border-color: rgb(250, 235, 204); } - -.panel-warning > .panel-heading { color: rgb(138, 109, 59); background-colo= -r: rgb(252, 248, 227); border-color: rgb(250, 235, 204); } - -.panel-warning > .panel-heading + .panel-collapse > .panel-body { border-to= -p-color: rgb(250, 235, 204); } - -.panel-warning > .panel-heading .badge { color: rgb(252, 248, 227); backgro= -und-color: rgb(138, 109, 59); } - -.panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bot= -tom-color: rgb(250, 235, 204); } - -.panel-danger { border-color: rgb(235, 204, 209); } - -.panel-danger > .panel-heading { color: rgb(169, 68, 66); background-color:= - rgb(242, 222, 222); border-color: rgb(235, 204, 209); } - -.panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top= --color: rgb(235, 204, 209); } - -.panel-danger > .panel-heading .badge { color: rgb(242, 222, 222); backgrou= -nd-color: rgb(169, 68, 66); } - -.panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bott= -om-color: rgb(235, 204, 209); } - -.embed-responsive { position: relative; display: block; height: 0px; paddin= -g: 0px; overflow: hidden; } - -.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-= -responsive embed, .embed-responsive object, .embed-responsive video { posit= -ion: absolute; top: 0px; bottom: 0px; left: 0px; width: 100%; height: 100%;= - border: 0px; } - -.embed-responsive-16by9 { padding-bottom: 56.25%; } - -.embed-responsive-4by3 { padding-bottom: 75%; } - -.well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-co= -lor: rgb(245, 245, 245); border: 1px solid rgb(227, 227, 227); border-radiu= -s: 4px; box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 1px inset; } - -.well blockquote { border-color: rgba(0, 0, 0, 0.15); } - -.well-lg { padding: 24px; border-radius: 6px; } - -.well-sm { padding: 9px; border-radius: 3px; } - -.close { float: right; font-size: 21px; font-weight: bold; line-height: 1; = -color: rgb(0, 0, 0); text-shadow: rgb(255, 255, 255) 0px 1px 0px; opacity: = -0.2; } - -.close:hover, .close:focus { color: rgb(0, 0, 0); text-decoration: none; cu= -rsor: pointer; opacity: 0.5; } - -button.close { padding: 0px; cursor: pointer; background: transparent; bord= -er: 0px; appearance: none; } - -.modal-open { overflow: hidden; } - -.modal { position: fixed; inset: 0px; z-index: 1050; display: none; overflo= -w: hidden; outline: 0px; } - -.modal.fade .modal-dialog { transform: translate(0px, -25%); transition: tr= -ansform 0.3s ease-out 0s; } - -.modal.in .modal-dialog { transform: translate(0px, 0px); } - -.modal-open .modal { overflow: hidden auto; } - -.modal-dialog { position: relative; width: auto; margin: 10px; } - -.modal-content { position: relative; background-color: rgb(255, 255, 255); = -background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-= -radius: 6px; box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 9px; outline: 0px; } - -.modal-backdrop { position: fixed; inset: 0px; z-index: 1040; background-co= -lor: rgb(0, 0, 0); } - -.modal-backdrop.fade { opacity: 0; } - -.modal-backdrop.in { opacity: 0.5; } - -.modal-header { padding: 15px; border-bottom: 1px solid rgb(229, 229, 229);= - } - -.modal-header::before, .modal-header::after { display: table; content: " ";= - } - -.modal-header::after { clear: both; } - -.modal-header .close { margin-top: -2px; } - -.modal-title { margin: 0px; line-height: 1.42857; } - -.modal-body { position: relative; padding: 15px; } - -.modal-footer { padding: 15px; text-align: right; border-top: 1px solid rgb= -(229, 229, 229); } - -.modal-footer::before, .modal-footer::after { display: table; content: " ";= - } - -.modal-footer::after { clear: both; } - -.modal-footer .btn + .btn { margin-bottom: 0px; margin-left: 5px; } - -.modal-footer .btn-group .btn + .btn { margin-left: -1px; } - -.modal-footer .btn-block + .btn-block { margin-left: 0px; } - -.modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; h= -eight: 50px; overflow: scroll; } - -@media (min-width: 768px) { - .modal-dialog { width: 600px; margin: 30px auto; } - .modal-content { box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px; } - .modal-sm { width: 300px; } -} - -@media (min-width: 992px) { - .modal-lg { width: 900px; } -} - -.tooltip { position: absolute; z-index: 1070; display: block; font-family: = -aktiv-grotesk, sans-serif; font-style: normal; font-weight: 400; line-heigh= -t: 1.42857; line-break: auto; text-align: start; text-decoration: none; tex= -t-shadow: none; text-transform: none; letter-spacing: normal; word-break: n= -ormal; word-spacing: normal; overflow-wrap: normal; white-space: normal; fo= -nt-size: 12px; opacity: 0; } - -.tooltip.in { opacity: 0.9; } - -.tooltip.top { padding: 5px 0px; margin-top: -3px; } - -.tooltip.right { padding: 0px 5px; margin-left: 3px; } - -.tooltip.bottom { padding: 5px 0px; margin-top: 3px; } - -.tooltip.left { padding: 0px 5px; margin-left: -3px; } - -.tooltip.top .tooltip-arrow { bottom: 0px; left: 50%; margin-left: -5px; bo= -rder-width: 5px 5px 0px; border-top-color: white; } - -.tooltip.top-left .tooltip-arrow { right: 5px; bottom: 0px; margin-bottom: = --5px; border-width: 5px 5px 0px; border-top-color: white; } - -.tooltip.top-right .tooltip-arrow { bottom: 0px; left: 5px; margin-bottom: = --5px; border-width: 5px 5px 0px; border-top-color: white; } - -.tooltip.right .tooltip-arrow { top: 50%; left: 0px; margin-top: -5px; bord= -er-width: 5px 5px 5px 0px; border-right-color: white; } - -.tooltip.left .tooltip-arrow { top: 50%; right: 0px; margin-top: -5px; bord= -er-width: 5px 0px 5px 5px; border-left-color: white; } - -.tooltip.bottom .tooltip-arrow { top: 0px; left: 50%; margin-left: -5px; bo= -rder-width: 0px 5px 5px; border-bottom-color: white; } - -.tooltip.bottom-left .tooltip-arrow { top: 0px; right: 5px; margin-top: -5p= -x; border-width: 0px 5px 5px; border-bottom-color: white; } - -.tooltip.bottom-right .tooltip-arrow { top: 0px; left: 5px; margin-top: -5p= -x; border-width: 0px 5px 5px; border-bottom-color: white; } - -.tooltip-inner { max-width: 200px; padding: 3px 8px; color: black; text-ali= -gn: center; background-color: white; border-radius: 4px; } - -.tooltip-arrow { position: absolute; width: 0px; height: 0px; border-color:= - transparent; border-style: solid; } - -.popover { position: absolute; top: 0px; left: 0px; z-index: 1060; display:= - none; max-width: 276px; padding: 1px; font-family: aktiv-grotesk, sans-ser= -if; font-style: normal; font-weight: 400; line-height: 1.42857; line-break:= - auto; text-align: start; text-decoration: none; text-shadow: none; text-tr= -ansform: none; letter-spacing: normal; word-break: normal; word-spacing: no= -rmal; overflow-wrap: normal; white-space: normal; font-size: 14px; backgrou= -nd-color: rgb(255, 255, 255); background-clip: padding-box; border: 1px sol= -id rgba(0, 0, 0, 0.2); border-radius: 6px; box-shadow: rgba(0, 0, 0, 0.2) 0= -px 5px 10px; } - -.popover.top { margin-top: -10px; } - -.popover.right { margin-left: 10px; } - -.popover.bottom { margin-top: 10px; } - -.popover.left { margin-left: -10px; } - -.popover > .arrow { border-width: 11px; } - -.popover > .arrow, .popover > .arrow::after { position: absolute; display: = -block; width: 0px; height: 0px; border-color: transparent; border-style: so= -lid; } - -.popover > .arrow::after { content: ""; border-width: 10px; } - -.popover.top > .arrow { bottom: -11px; left: 50%; margin-left: -11px; borde= -r-top-color: rgba(0, 0, 0, 0.25); border-bottom-width: 0px; } - -.popover.top > .arrow::after { bottom: 1px; margin-left: -10px; content: " = -"; border-top-color: rgb(255, 255, 255); border-bottom-width: 0px; } - -.popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-= -right-color: rgba(0, 0, 0, 0.25); border-left-width: 0px; } - -.popover.right > .arrow::after { bottom: -10px; left: 1px; content: " "; bo= -rder-right-color: rgb(255, 255, 255); border-left-width: 0px; } - -.popover.bottom > .arrow { top: -11px; left: 50%; margin-left: -11px; borde= -r-top-width: 0px; border-bottom-color: rgba(0, 0, 0, 0.25); } - -.popover.bottom > .arrow::after { top: 1px; margin-left: -10px; content: " = -"; border-top-width: 0px; border-bottom-color: rgb(255, 255, 255); } - -.popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-= -right-width: 0px; border-left-color: rgba(0, 0, 0, 0.25); } - -.popover.left > .arrow::after { right: 1px; bottom: -10px; content: " "; bo= -rder-right-width: 0px; border-left-color: rgb(255, 255, 255); } - -.popover-title { padding: 8px 14px; margin: 0px; font-size: 14px; backgroun= -d-color: rgb(247, 247, 247); border-bottom: 1px solid rgb(235, 235, 235); b= -order-radius: 5px 5px 0px 0px; } - -.popover-content { padding: 9px 14px; } - -.carousel { position: relative; } - -.carousel-inner { position: relative; width: 100%; overflow: hidden; } - -.carousel-inner > .item { position: relative; display: none; transition: le= -ft 0.6s ease-in-out 0s; } - -.carousel-inner > .item > img, .carousel-inner > .item > a > img { display:= - block; max-width: 100%; height: auto; line-height: 1; } - -@media (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { transition: transform 0.6s ease-in-out 0s; back= -face-visibility: hidden; perspective: 1000px; } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { tran= -sform: translate3d(100%, 0px, 0px); left: 0px; } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { trans= -form: translate3d(-100%, 0px, 0px); left: 0px; } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .c= -arousel-inner > .item.active { transform: translate3d(0px, 0px, 0px); left:= - 0px; } -} - -.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev= - { display: block; } - -.carousel-inner > .active { left: 0px; } - -.carousel-inner > .next, .carousel-inner > .prev { position: absolute; top:= - 0px; width: 100%; } - -.carousel-inner > .next { left: 100%; } - -.carousel-inner > .prev { left: -100%; } - -.carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0px; } - -.carousel-inner > .active.left { left: -100%; } - -.carousel-inner > .active.right { left: 100%; } - -.carousel-control { position: absolute; top: 0px; bottom: 0px; left: 0px; w= -idth: 15%; font-size: 20px; color: rgb(255, 255, 255); text-align: center; = -text-shadow: rgba(0, 0, 0, 0.6) 0px 1px 2px; background-color: rgba(0, 0, 0= -, 0); opacity: 0.5; } - -.carousel-control.left { background-image: linear-gradient(to right, rgba(0= -, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); background-repeat: repeat-x; } - -.carousel-control.right { right: 0px; left: auto; background-image: linear-= -gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); backgroun= -d-repeat: repeat-x; } - -.carousel-control:hover, .carousel-control:focus { color: rgb(255, 255, 255= -); text-decoration: none; outline: 0px; opacity: 0.9; } - -.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-contr= -ol .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { po= -sition: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: = --10px; } - -.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { l= -eft: 50%; margin-left: -10px; } - -.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { = -right: 50%; margin-right: -10px; } - -.carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; h= -eight: 20px; font-family: serif; line-height: 1; } - -.carousel-control .icon-prev::before { content: "=E2=80=B9"; } - -.carousel-control .icon-next::before { content: "=E2=80=BA"; } - -.carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index= -: 15; width: 60%; padding-left: 0px; margin-left: -30%; text-align: center;= - list-style: none; } - -.carousel-indicators li { display: inline-block; width: 10px; height: 10px;= - margin: 1px; text-indent: -999px; cursor: pointer; background-color: rgba(= -0, 0, 0, 0); border: 1px solid rgb(255, 255, 255); border-radius: 10px; } - -.carousel-indicators .active { width: 12px; height: 12px; margin: 0px; back= -ground-color: rgb(255, 255, 255); } - -.carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%= -; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: rgb(255, 255= -, 255); text-align: center; text-shadow: rgba(0, 0, 0, 0.6) 0px 1px 2px; } - -.carousel-caption .btn { text-shadow: none; } - -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-c= -hevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { = -width: 30px; height: 30px; margin-top: -10px; font-size: 30px; } - .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {= - margin-left: -10px; } - .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next = -{ margin-right: -10px; } - .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } - .carousel-indicators { bottom: 20px; } -} - -.clearfix::before, .clearfix::after { display: table; content: " "; } - -.clearfix::after { clear: both; } - -.center-block { display: block; margin-right: auto; margin-left: auto; } - -.pull-right { float: right !important; } - -.pull-left { float: left !important; } - -.hide { display: none !important; } - -.show { display: block !important; } - -.invisible { visibility: hidden; } - -.text-hide { font: 0px / 0 a; color: transparent; text-shadow: none; backgr= -ound-color: transparent; border: 0px; } - -.hidden { display: none !important; } - -.affix { position: fixed; } - -.visible-xs { display: none !important; } - -.visible-sm { display: none !important; } - -.visible-md { display: none !important; } - -.visible-lg { display: none !important; } - -.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-s= -m-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .= -visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg= --inline, .visible-lg-inline-block { display: none !important; } - -@media (max-width: 767px) { - .visible-xs { display: block !important; } - table.visible-xs { display: table !important; } - tr.visible-xs { display: table-row !important; } - th.visible-xs, td.visible-xs { display: table-cell !important; } -} - -@media (max-width: 767px) { - .visible-xs-block { display: block !important; } -} - -@media (max-width: 767px) { - .visible-xs-inline { display: inline !important; } -} - -@media (max-width: 767px) { - .visible-xs-inline-block { display: inline-block !important; } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { display: block !important; } - table.visible-sm { display: table !important; } - tr.visible-sm { display: table-row !important; } - th.visible-sm, td.visible-sm { display: table-cell !important; } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { display: block !important; } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { display: inline !important; } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { display: inline-block !important; } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { display: block !important; } - table.visible-md { display: table !important; } - tr.visible-md { display: table-row !important; } - th.visible-md, td.visible-md { display: table-cell !important; } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { display: block !important; } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { display: inline !important; } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { display: inline-block !important; } -} - -@media (min-width: 1200px) { - .visible-lg { display: block !important; } - table.visible-lg { display: table !important; } - tr.visible-lg { display: table-row !important; } - th.visible-lg, td.visible-lg { display: table-cell !important; } -} - -@media (min-width: 1200px) { - .visible-lg-block { display: block !important; } -} - -@media (min-width: 1200px) { - .visible-lg-inline { display: inline !important; } -} - -@media (min-width: 1200px) { - .visible-lg-inline-block { display: inline-block !important; } -} - -@media (max-width: 767px) { - .hidden-xs { display: none !important; } -} - -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { display: none !important; } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { display: none !important; } -} - -@media (min-width: 1200px) { - .hidden-lg { display: none !important; } -} - -.visible-print { display: none !important; } - -@media print { - .visible-print { display: block !important; } - table.visible-print { display: table !important; } - tr.visible-print { display: table-row !important; } - th.visible-print, td.visible-print { display: table-cell !important; } -} - -.visible-print-block { display: none !important; } - -@media print { - .visible-print-block { display: block !important; } -} - -.visible-print-inline { display: none !important; } - -@media print { - .visible-print-inline { display: inline !important; } -} - -.visible-print-inline-block { display: none !important; } - -@media print { - .visible-print-inline-block { display: inline-block !important; } -} - -@media print { - .hidden-print { display: none !important; } -} - -@-webkit-keyframes blink {=20 - 0% { border-color: rgb(237, 237, 237); } - 100% { border-color: rgb(185, 74, 72); } -} - -@keyframes blink {=20 - 0% { border-color: rgb(237, 237, 237); } - 100% { border-color: rgb(185, 74, 72); } -} - -.tokenfield { height: auto; min-height: 34px; padding-bottom: 0px; } - -.tokenfield.focus { border-color: rgb(102, 175, 233); outline: 0px; box-sha= -dow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px 0= -px 8px; } - -.tokenfield .token { box-sizing: border-box; border-radius: 3px; display: i= -nline-block; border: 1px solid rgb(217, 217, 217); background-color: rgb(23= -7, 237, 237); white-space: nowrap; margin: -1px 5px 5px 0px; height: 22px; = -vertical-align: top; cursor: default; } - -.tokenfield .token:hover { border-color: rgb(185, 185, 185); } - -.tokenfield .token.active { border-color: rgba(82, 168, 236, 0.8); } - -.tokenfield .token.duplicate { border-color: rgb(235, 204, 209); animation-= -name: blink; animation-duration: 0.1s; animation-direction: normal; animati= -on-timing-function: ease; animation-iteration-count: infinite; } - -.tokenfield .token.invalid { background: none; border-width: 1px; border-st= -yle: solid solid dotted; border-color: transparent transparent rgb(217, 83,= - 79); border-image: initial; border-radius: 0px; } - -.tokenfield .token.invalid.active { background: rgb(237, 237, 237); border:= - 1px solid rgb(237, 237, 237); border-radius: 3px; } - -.tokenfield .token .token-label { display: inline-block; overflow: hidden; = -text-overflow: ellipsis; padding-left: 4px; vertical-align: top; } - -.tokenfield .token .close { font-family: Arial; display: inline-block; font= --size: 1.1em; line-height: 1.49em; margin-left: 5px; float: none; height: 1= -00%; vertical-align: top; padding-right: 4px; } - -.tokenfield .token-input { background: none; width: 60px; min-width: 60px; = -border: 0px; height: 20px; padding: 0px; margin-bottom: 6px; box-shadow: no= -ne; } - -.tokenfield .token-input:focus { border-color: transparent; outline: 0px; b= -ox-shadow: none; } - -.tokenfield.disabled { cursor: not-allowed; background-color: rgb(238, 238,= - 238); } - -.tokenfield.disabled .token-input { cursor: not-allowed; } - -.tokenfield.disabled .token:hover { cursor: not-allowed; border-color: rgb(= -217, 217, 217); } - -.tokenfield.disabled .token:hover .close { cursor: not-allowed; opacity: 0.= -2; } - -.has-warning .tokenfield.focus { border-color: rgb(102, 81, 44); box-shadow= -: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(192, 161, 107) 0px 0px 6px; } - -.has-error .tokenfield.focus { border-color: rgb(132, 53, 52); box-shadow: = -rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(206, 132, 131) 0px 0px 6px; } - -.has-success .tokenfield.focus { border-color: rgb(43, 84, 44); box-shadow:= - rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(103, 177, 104) 0px 0px 6px; } - -.tokenfield.input-sm, .input-group-sm > .input-group-btn > .tokenfield.btn,= - .input-group-sm .tokenfield { min-height: 30px; padding-bottom: 0px; } - -.input-group-sm .token, .tokenfield.input-sm .token, .input-group-sm > .inp= -ut-group-btn > .tokenfield.btn .token { height: 20px; margin-bottom: 4px; } - -.input-group-sm .token-input, .tokenfield.input-sm .token-input, .input-gro= -up-sm > .input-group-btn > .tokenfield.btn .token-input { height: 18px; mar= -gin-bottom: 5px; } - -.tokenfield.input-lg, .input-group-lg > .input-group-btn > .tokenfield.btn,= - .input-group-lg .tokenfield { height: auto; min-height: 45px; padding-bott= -om: 4px; } - -.input-group-lg .token, .tokenfield.input-lg .token, .input-group-lg > .inp= -ut-group-btn > .tokenfield.btn .token { height: 25px; } - -.input-group-lg .token-label, .tokenfield.input-lg .token-label, .input-gro= -up-lg > .input-group-btn > .tokenfield.btn .token-label { line-height: 23px= -; } - -.input-group-lg .token .close, .tokenfield.input-lg .token .close { line-he= -ight: 1.3em; } - -.input-group-lg .token-input, .tokenfield.input-lg .token-input, .input-gro= -up-lg > .input-group-btn > .tokenfield.btn .token-input { height: 23px; lin= -e-height: 23px; margin-bottom: 6px; vertical-align: top; } - -.tokenfield.rtl { direction: rtl; text-align: right; } - -.tokenfield.rtl .token { margin: -1px 0px 5px 5px; } - -.tokenfield.rtl .token .token-label { padding-left: 0px; padding-right: 4px= -; } - -.datepicker { border-radius: 4px; direction: ltr; } - -.datepicker-inline { width: 220px; } - -.datepicker-rtl { direction: rtl; } - -.datepicker-rtl.dropdown-menu { left: auto; } - -.datepicker-rtl table tr td span { float: right; } - -.datepicker-dropdown { top: 0px; left: 0px; padding: 4px; } - -.datepicker-dropdown::before { content: ""; display: inline-block; border-w= -idth: 0px 7px 7px; border-left-style: solid; border-left-color: transparent= -; border-right-style: solid; border-right-color: transparent; border-bottom= --style: solid; border-top-style: initial; border-top-color: initial; border= --bottom-color: rgba(0, 0, 0, 0.2); position: absolute; } - -.datepicker-dropdown::after { content: ""; display: inline-block; border-wi= -dth: 0px 6px 6px; border-left-style: solid; border-left-color: transparent;= - border-right-style: solid; border-right-color: transparent; border-bottom-= -style: solid; border-bottom-color: rgb(255, 255, 255); border-top-style: in= -itial; border-top-color: initial; position: absolute; } - -.datepicker-dropdown.datepicker-orient-left::before { left: 6px; } - -.datepicker-dropdown.datepicker-orient-left::after { left: 7px; } - -.datepicker-dropdown.datepicker-orient-right::before { right: 6px; } - -.datepicker-dropdown.datepicker-orient-right::after { right: 7px; } - -.datepicker-dropdown.datepicker-orient-bottom::before { top: -7px; } - -.datepicker-dropdown.datepicker-orient-bottom::after { top: -6px; } - -.datepicker-dropdown.datepicker-orient-top::before { bottom: -7px; border-b= -ottom: 0px; border-top: 7px solid rgba(0, 0, 0, 0.15); } - -.datepicker-dropdown.datepicker-orient-top::after { bottom: -6px; border-bo= -ttom: 0px; border-top: 6px solid rgb(255, 255, 255); } - -.datepicker table { margin: 0px; user-select: none; } - -.datepicker table tr td, .datepicker table tr th { text-align: center; widt= -h: 30px; height: 30px; border-radius: 4px; border: none; } - -.table-striped .datepicker table tr td, .table-striped .datepicker table tr= - th { background-color: transparent; } - -.datepicker table tr td.old, .datepicker table tr td.new { color: rgb(119, = -119, 119); } - -.datepicker table tr td.day:hover, .datepicker table tr td.focused { backgr= -ound: rgb(238, 238, 238); cursor: pointer; } - -.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover { = -background: none; color: rgb(119, 119, 119); cursor: default; } - -.datepicker table tr td.highlighted { color: rgb(0, 0, 0); background-color= -: rgb(217, 237, 247); border-color: rgb(133, 197, 229); border-radius: 0px;= - } - -.datepicker table tr td.highlighted:focus, .datepicker table tr td.highligh= -ted.focus { color: rgb(0, 0, 0); background-color: rgb(175, 217, 238); bord= -er-color: rgb(41, 143, 194); } - -.datepicker table tr td.highlighted:hover { color: rgb(0, 0, 0); background= --color: rgb(175, 217, 238); border-color: rgb(82, 173, 219); } - -.datepicker table tr td.highlighted:active, .datepicker table tr td.highlig= -hted.active { color: rgb(0, 0, 0); background-color: rgb(175, 217, 238); bo= -rder-color: rgb(82, 173, 219); } - -.datepicker table tr td.highlighted:active:hover, .datepicker table tr td.h= -ighlighted.active:hover, .datepicker table tr td.highlighted:active:focus, = -.datepicker table tr td.highlighted.active:focus, .datepicker table tr td.h= -ighlighted.focus:active, .datepicker table tr td.highlighted.active.focus {= - color: rgb(0, 0, 0); background-color: rgb(145, 203, 232); border-color: r= -gb(41, 143, 194); } - -.datepicker table tr td.highlighted.disabled:hover, .datepicker table tr td= -.highlighted[disabled]:hover, fieldset[disabled] .datepicker table tr td.hi= -ghlighted:hover, .datepicker table tr td.highlighted.disabled:focus, .datep= -icker table tr td.highlighted[disabled]:focus, fieldset[disabled] .datepick= -er table tr td.highlighted:focus, .datepicker table tr td.highlighted.disab= -led.focus, .datepicker table tr td.highlighted.focus[disabled], fieldset[di= -sabled] .datepicker table tr td.highlighted.focus { background-color: rgb(2= -17, 237, 247); border-color: rgb(133, 197, 229); } - -.datepicker table tr td.highlighted.focused { background: rgb(175, 217, 238= -); } - -.datepicker table tr td.highlighted.disabled, .datepicker table tr td.highl= -ighted.disabled:active { background: rgb(217, 237, 247); color: rgb(119, 11= -9, 119); } - -.datepicker table tr td.today { color: rgb(0, 0, 0); background-color: rgb(= -255, 219, 153); border-color: rgb(255, 183, 51); } - -.datepicker table tr td.today:focus, .datepicker table tr td.today.focus { = -color: rgb(0, 0, 0); background-color: rgb(255, 201, 102); border-color: rg= -b(179, 116, 0); } - -.datepicker table tr td.today:hover { color: rgb(0, 0, 0); background-color= -: rgb(255, 201, 102); border-color: rgb(245, 158, 0); } - -.datepicker table tr td.today:active, .datepicker table tr td.today.active = -{ color: rgb(0, 0, 0); background-color: rgb(255, 201, 102); border-color: = -rgb(245, 158, 0); } - -.datepicker table tr td.today:active:hover, .datepicker table tr td.today.a= -ctive:hover, .datepicker table tr td.today:active:focus, .datepicker table = -tr td.today.active:focus, .datepicker table tr td.today.focus:active, .date= -picker table tr td.today.active.focus { color: rgb(0, 0, 0); background-col= -or: rgb(255, 188, 66); border-color: rgb(179, 116, 0); } - -.datepicker table tr td.today.disabled:hover, .datepicker table tr td.today= -[disabled]:hover, fieldset[disabled] .datepicker table tr td.today:hover, .= -datepicker table tr td.today.disabled:focus, .datepicker table tr td.today[= -disabled]:focus, fieldset[disabled] .datepicker table tr td.today:focus, .d= -atepicker table tr td.today.disabled.focus, .datepicker table tr td.today.f= -ocus[disabled], fieldset[disabled] .datepicker table tr td.today.focus { ba= -ckground-color: rgb(255, 219, 153); border-color: rgb(255, 183, 51); } - -.datepicker table tr td.today.focused { background: rgb(255, 201, 102); } - -.datepicker table tr td.today.disabled, .datepicker table tr td.today.disab= -led:active { background: rgb(255, 219, 153); color: rgb(119, 119, 119); } - -.datepicker table tr td.range { color: rgb(0, 0, 0); background-color: rgb(= -238, 238, 238); border-color: rgb(187, 187, 187); border-radius: 0px; } - -.datepicker table tr td.range:focus, .datepicker table tr td.range.focus { = -color: rgb(0, 0, 0); background-color: rgb(213, 213, 213); border-color: rg= -b(124, 124, 124); } - -.datepicker table tr td.range:hover { color: rgb(0, 0, 0); background-color= -: rgb(213, 213, 213); border-color: rgb(157, 157, 157); } - -.datepicker table tr td.range:active, .datepicker table tr td.range.active = -{ color: rgb(0, 0, 0); background-color: rgb(213, 213, 213); border-color: = -rgb(157, 157, 157); } - -.datepicker table tr td.range:active:hover, .datepicker table tr td.range.a= -ctive:hover, .datepicker table tr td.range:active:focus, .datepicker table = -tr td.range.active:focus, .datepicker table tr td.range.focus:active, .date= -picker table tr td.range.active.focus { color: rgb(0, 0, 0); background-col= -or: rgb(195, 195, 195); border-color: rgb(124, 124, 124); } - -.datepicker table tr td.range.disabled:hover, .datepicker table tr td.range= -[disabled]:hover, fieldset[disabled] .datepicker table tr td.range:hover, .= -datepicker table tr td.range.disabled:focus, .datepicker table tr td.range[= -disabled]:focus, fieldset[disabled] .datepicker table tr td.range:focus, .d= -atepicker table tr td.range.disabled.focus, .datepicker table tr td.range.f= -ocus[disabled], fieldset[disabled] .datepicker table tr td.range.focus { ba= -ckground-color: rgb(238, 238, 238); border-color: rgb(187, 187, 187); } - -.datepicker table tr td.range.focused { background: rgb(213, 213, 213); } - -.datepicker table tr td.range.disabled, .datepicker table tr td.range.disab= -led:active { background: rgb(238, 238, 238); color: rgb(119, 119, 119); } - -.datepicker table tr td.range.highlighted { color: rgb(0, 0, 0); background= --color: rgb(228, 238, 243); border-color: rgb(157, 193, 211); } - -.datepicker table tr td.range.highlighted:focus, .datepicker table tr td.ra= -nge.highlighted.focus { color: rgb(0, 0, 0); background-color: rgb(193, 215= -, 227); border-color: rgb(75, 136, 166); } - -.datepicker table tr td.range.highlighted:hover { color: rgb(0, 0, 0); back= -ground-color: rgb(193, 215, 227); border-color: rgb(115, 166, 192); } - -.datepicker table tr td.range.highlighted:active, .datepicker table tr td.r= -ange.highlighted.active { color: rgb(0, 0, 0); background-color: rgb(193, 2= -15, 227); border-color: rgb(115, 166, 192); } - -.datepicker table tr td.range.highlighted:active:hover, .datepicker table t= -r td.range.highlighted.active:hover, .datepicker table tr td.range.highligh= -ted:active:focus, .datepicker table tr td.range.highlighted.active:focus, .= -datepicker table tr td.range.highlighted.focus:active, .datepicker table tr= - td.range.highlighted.active.focus { color: rgb(0, 0, 0); background-color:= - rgb(168, 200, 216); border-color: rgb(75, 136, 166); } - -.datepicker table tr td.range.highlighted.disabled:hover, .datepicker table= - tr td.range.highlighted[disabled]:hover, fieldset[disabled] .datepicker ta= -ble tr td.range.highlighted:hover, .datepicker table tr td.range.highlighte= -d.disabled:focus, .datepicker table tr td.range.highlighted[disabled]:focus= -, fieldset[disabled] .datepicker table tr td.range.highlighted:focus, .date= -picker table tr td.range.highlighted.disabled.focus, .datepicker table tr t= -d.range.highlighted.focus[disabled], fieldset[disabled] .datepicker table t= -r td.range.highlighted.focus { background-color: rgb(228, 238, 243); border= --color: rgb(157, 193, 211); } - -.datepicker table tr td.range.highlighted.focused { background: rgb(193, 21= -5, 227); } - -.datepicker table tr td.range.highlighted.disabled, .datepicker table tr td= -.range.highlighted.disabled:active { background: rgb(228, 238, 243); color:= - rgb(119, 119, 119); } - -.datepicker table tr td.range.today { color: rgb(0, 0, 0); background-color= -: rgb(247, 202, 119); border-color: rgb(241, 164, 23); } - -.datepicker table tr td.range.today:focus, .datepicker table tr td.range.to= -day.focus { color: rgb(0, 0, 0); background-color: rgb(244, 183, 71); borde= -r-color: rgb(129, 86, 8); } - -.datepicker table tr td.range.today:hover { color: rgb(0, 0, 0); background= --color: rgb(244, 183, 71); border-color: rgb(191, 128, 12); } - -.datepicker table tr td.range.today:active, .datepicker table tr td.range.t= -oday.active { color: rgb(0, 0, 0); background-color: rgb(244, 183, 71); bor= -der-color: rgb(191, 128, 12); } - -.datepicker table tr td.range.today:active:hover, .datepicker table tr td.r= -ange.today.active:hover, .datepicker table tr td.range.today:active:focus, = -.datepicker table tr td.range.today.active:focus, .datepicker table tr td.r= -ange.today.focus:active, .datepicker table tr td.range.today.active.focus {= - color: rgb(0, 0, 0); background-color: rgb(242, 170, 37); border-color: rg= -b(129, 86, 8); } - -.datepicker table tr td.range.today.disabled:hover, .datepicker table tr td= -.range.today[disabled]:hover, fieldset[disabled] .datepicker table tr td.ra= -nge.today:hover, .datepicker table tr td.range.today.disabled:focus, .datep= -icker table tr td.range.today[disabled]:focus, fieldset[disabled] .datepick= -er table tr td.range.today:focus, .datepicker table tr td.range.today.disab= -led.focus, .datepicker table tr td.range.today.focus[disabled], fieldset[di= -sabled] .datepicker table tr td.range.today.focus { background-color: rgb(2= -47, 202, 119); border-color: rgb(241, 164, 23); } - -.datepicker table tr td.range.today.disabled, .datepicker table tr td.range= -.today.disabled:active { background: rgb(247, 202, 119); color: rgb(119, 11= -9, 119); } - -.datepicker table tr td.selected, .datepicker table tr td.selected.highligh= -ted { color: rgb(255, 255, 255); background-color: rgb(119, 119, 119); bord= -er-color: rgb(85, 85, 85); text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px; } - -.datepicker table tr td.selected:focus, .datepicker table tr td.selected.hi= -ghlighted:focus, .datepicker table tr td.selected.focus, .datepicker table = -tr td.selected.highlighted.focus { color: rgb(255, 255, 255); background-co= -lor: rgb(94, 94, 94); border-color: rgb(22, 22, 22); } - -.datepicker table tr td.selected:hover, .datepicker table tr td.selected.hi= -ghlighted:hover { color: rgb(255, 255, 255); background-color: rgb(94, 94, = -94); border-color: rgb(55, 55, 55); } - -.datepicker table tr td.selected:active, .datepicker table tr td.selected.h= -ighlighted:active, .datepicker table tr td.selected.active, .datepicker tab= -le tr td.selected.highlighted.active { color: rgb(255, 255, 255); backgroun= -d-color: rgb(94, 94, 94); border-color: rgb(55, 55, 55); } - -.datepicker table tr td.selected:active:hover, .datepicker table tr td.sele= -cted.highlighted:active:hover, .datepicker table tr td.selected.active:hove= -r, .datepicker table tr td.selected.highlighted.active:hover, .datepicker t= -able tr td.selected:active:focus, .datepicker table tr td.selected.highligh= -ted:active:focus, .datepicker table tr td.selected.active:focus, .datepicke= -r table tr td.selected.highlighted.active:focus, .datepicker table tr td.se= -lected.focus:active, .datepicker table tr td.selected.highlighted.focus:act= -ive, .datepicker table tr td.selected.active.focus, .datepicker table tr td= -.selected.highlighted.active.focus { color: rgb(255, 255, 255); background-= -color: rgb(76, 76, 76); border-color: rgb(22, 22, 22); } - -.datepicker table tr td.selected.disabled:hover, .datepicker table tr td.se= -lected.highlighted.disabled:hover, .datepicker table tr td.selected[disable= -d]:hover, .datepicker table tr td.selected.highlighted[disabled]:hover, fie= -ldset[disabled] .datepicker table tr td.selected:hover, fieldset[disabled] = -.datepicker table tr td.selected.highlighted:hover, .datepicker table tr td= -.selected.disabled:focus, .datepicker table tr td.selected.highlighted.disa= -bled:focus, .datepicker table tr td.selected[disabled]:focus, .datepicker t= -able tr td.selected.highlighted[disabled]:focus, fieldset[disabled] .datepi= -cker table tr td.selected:focus, fieldset[disabled] .datepicker table tr td= -.selected.highlighted:focus, .datepicker table tr td.selected.disabled.focu= -s, .datepicker table tr td.selected.highlighted.disabled.focus, .datepicker= - table tr td.selected.focus[disabled], .datepicker table tr td.selected.hig= -hlighted.focus[disabled], fieldset[disabled] .datepicker table tr td.select= -ed.focus, fieldset[disabled] .datepicker table tr td.selected.highlighted.f= -ocus { background-color: rgb(119, 119, 119); border-color: rgb(85, 85, 85);= - } - -.datepicker table tr td.active, .datepicker table tr td.active.highlighted = -{ color: rgb(255, 255, 255); background-color: rgb(51, 122, 183); border-co= -lor: rgb(46, 109, 164); text-shadow: rgba(0, 0, 0, 0.25) 0px -1px 0px; } - -.datepicker table tr td.active:focus, .datepicker table tr td.active.highli= -ghted:focus, .datepicker table tr td.active.focus, .datepicker table tr td.= -active.highlighted.focus { color: rgb(255, 255, 255); background-color: rgb= -(40, 96, 144); border-color: rgb(18, 43, 64); } - -.datepicker table tr td.active:hover, .datepicker table tr td.active.highli= -ghted:hover { color: rgb(255, 255, 255); background-color: rgb(40, 96, 144)= -; border-color: rgb(32, 77, 116); } - -.datepicker table tr td.active:active, .datepicker table tr td.active.highl= -ighted:active, .datepicker table tr td.active.active, .datepicker table tr = -td.active.highlighted.active { color: rgb(255, 255, 255); background-color:= - rgb(40, 96, 144); border-color: rgb(32, 77, 116); } - -.datepicker table tr td.active:active:hover, .datepicker table tr td.active= -.highlighted:active:hover, .datepicker table tr td.active.active:hover, .da= -tepicker table tr td.active.highlighted.active:hover, .datepicker table tr = -td.active:active:focus, .datepicker table tr td.active.highlighted:active:f= -ocus, .datepicker table tr td.active.active:focus, .datepicker table tr td.= -active.highlighted.active:focus, .datepicker table tr td.active.focus:activ= -e, .datepicker table tr td.active.highlighted.focus:active, .datepicker tab= -le tr td.active.active.focus, .datepicker table tr td.active.highlighted.ac= -tive.focus { color: rgb(255, 255, 255); background-color: rgb(32, 77, 116);= - border-color: rgb(18, 43, 64); } - -.datepicker table tr td.active.disabled:hover, .datepicker table tr td.acti= -ve.highlighted.disabled:hover, .datepicker table tr td.active[disabled]:hov= -er, .datepicker table tr td.active.highlighted[disabled]:hover, fieldset[di= -sabled] .datepicker table tr td.active:hover, fieldset[disabled] .datepicke= -r table tr td.active.highlighted:hover, .datepicker table tr td.active.disa= -bled:focus, .datepicker table tr td.active.highlighted.disabled:focus, .dat= -epicker table tr td.active[disabled]:focus, .datepicker table tr td.active.= -highlighted[disabled]:focus, fieldset[disabled] .datepicker table tr td.act= -ive:focus, fieldset[disabled] .datepicker table tr td.active.highlighted:fo= -cus, .datepicker table tr td.active.disabled.focus, .datepicker table tr td= -.active.highlighted.disabled.focus, .datepicker table tr td.active.focus[di= -sabled], .datepicker table tr td.active.highlighted.focus[disabled], fields= -et[disabled] .datepicker table tr td.active.focus, fieldset[disabled] .date= -picker table tr td.active.highlighted.focus { background-color: rgb(51, 122= -, 183); border-color: rgb(46, 109, 164); } - -.datepicker table tr td span { display: block; width: 23%; height: 54px; li= -ne-height: 54px; float: left; margin: 1%; cursor: pointer; border-radius: 4= -px; } - -.datepicker table tr td span:hover, .datepicker table tr td span.focused { = -background: rgb(238, 238, 238); } - -.datepicker table tr td span.disabled, .datepicker table tr td span.disable= -d:hover { background: none; color: rgb(119, 119, 119); cursor: default; } - -.datepicker table tr td span.active, .datepicker table tr td span.active:ho= -ver, .datepicker table tr td span.active.disabled, .datepicker table tr td = -span.active.disabled:hover { color: rgb(255, 255, 255); background-color: r= -gb(51, 122, 183); border-color: rgb(46, 109, 164); text-shadow: rgba(0, 0, = -0, 0.25) 0px -1px 0px; } - -.datepicker table tr td span.active:focus, .datepicker table tr td span.act= -ive:hover:focus, .datepicker table tr td span.active.disabled:focus, .datep= -icker table tr td span.active.disabled:hover:focus, .datepicker table tr td= - span.active.focus, .datepicker table tr td span.active.focus:hover, .datep= -icker table tr td span.active.disabled.focus, .datepicker table tr td span.= -active.disabled.focus:hover { color: rgb(255, 255, 255); background-color: = -rgb(40, 96, 144); border-color: rgb(18, 43, 64); } - -.datepicker table tr td span.active:hover, .datepicker table tr td span.act= -ive:hover:hover, .datepicker table tr td span.active.disabled:hover, .datep= -icker table tr td span.active.disabled:hover:hover { color: rgb(255, 255, 2= -55); background-color: rgb(40, 96, 144); border-color: rgb(32, 77, 116); } - -.datepicker table tr td span.active:active, .datepicker table tr td span.ac= -tive:hover:active, .datepicker table tr td span.active.disabled:active, .da= -tepicker table tr td span.active.disabled:hover:active, .datepicker table t= -r td span.active.active, .datepicker table tr td span.active.active:hover, = -.datepicker table tr td span.active.disabled.active, .datepicker table tr t= -d span.active.disabled.active:hover { color: rgb(255, 255, 255); background= --color: rgb(40, 96, 144); border-color: rgb(32, 77, 116); } - -.datepicker table tr td span.active:active:hover, .datepicker table tr td s= -pan.active:hover:active:hover, .datepicker table tr td span.active.disabled= -:active:hover, .datepicker table tr td span.active.disabled:hover:active:ho= -ver, .datepicker table tr td span.active.active:hover, .datepicker table tr= - td span.active.active:hover:hover, .datepicker table tr td span.active.dis= -abled.active:hover, .datepicker table tr td span.active.disabled.active:hov= -er:hover, .datepicker table tr td span.active:active:focus, .datepicker tab= -le tr td span.active:hover:active:focus, .datepicker table tr td span.activ= -e.disabled:active:focus, .datepicker table tr td span.active.disabled:hover= -:active:focus, .datepicker table tr td span.active.active:focus, .datepicke= -r table tr td span.active.active:hover:focus, .datepicker table tr td span.= -active.disabled.active:focus, .datepicker table tr td span.active.disabled.= -active:hover:focus, .datepicker table tr td span.active.focus:active, .date= -picker table tr td span.active.focus:hover:active, .datepicker table tr td = -span.active.disabled.focus:active, .datepicker table tr td span.active.disa= -bled.focus:hover:active, .datepicker table tr td span.active.active.focus, = -.datepicker table tr td span.active.active.focus:hover, .datepicker table t= -r td span.active.disabled.active.focus, .datepicker table tr td span.active= -.disabled.active.focus:hover { color: rgb(255, 255, 255); background-color:= - rgb(32, 77, 116); border-color: rgb(18, 43, 64); } - -.datepicker table tr td span.active.disabled:hover, .datepicker table tr td= - span.active.disabled:hover:hover, .datepicker table tr td span.active.disa= -bled.disabled:hover, .datepicker table tr td span.active.disabled.disabled:= -hover:hover, .datepicker table tr td span.active[disabled]:hover, .datepick= -er table tr td span.active[disabled]:hover:hover, .datepicker table tr td s= -pan.active.disabled[disabled]:hover, .datepicker table tr td span.active.di= -sabled[disabled]:hover:hover, fieldset[disabled] .datepicker table tr td sp= -an.active:hover, fieldset[disabled] .datepicker table tr td span.active:hov= -er:hover, fieldset[disabled] .datepicker table tr td span.active.disabled:h= -over, fieldset[disabled] .datepicker table tr td span.active.disabled:hover= -:hover, .datepicker table tr td span.active.disabled:focus, .datepicker tab= -le tr td span.active.disabled:hover:focus, .datepicker table tr td span.act= -ive.disabled.disabled:focus, .datepicker table tr td span.active.disabled.d= -isabled:hover:focus, .datepicker table tr td span.active[disabled]:focus, .= -datepicker table tr td span.active[disabled]:hover:focus, .datepicker table= - tr td span.active.disabled[disabled]:focus, .datepicker table tr td span.a= -ctive.disabled[disabled]:hover:focus, fieldset[disabled] .datepicker table = -tr td span.active:focus, fieldset[disabled] .datepicker table tr td span.ac= -tive:hover:focus, fieldset[disabled] .datepicker table tr td span.active.di= -sabled:focus, fieldset[disabled] .datepicker table tr td span.active.disabl= -ed:hover:focus, .datepicker table tr td span.active.disabled.focus, .datepi= -cker table tr td span.active.disabled.focus:hover, .datepicker table tr td = -span.active.disabled.disabled.focus, .datepicker table tr td span.active.di= -sabled.disabled.focus:hover, .datepicker table tr td span.active.focus[disa= -bled], .datepicker table tr td span.active.focus[disabled]:hover, .datepick= -er table tr td span.active.disabled.focus[disabled], .datepicker table tr t= -d span.active.disabled.focus[disabled]:hover, fieldset[disabled] .datepicke= -r table tr td span.active.focus, fieldset[disabled] .datepicker table tr td= - span.active.focus:hover, fieldset[disabled] .datepicker table tr td span.a= -ctive.disabled.focus, fieldset[disabled] .datepicker table tr td span.activ= -e.disabled.focus:hover { background-color: rgb(51, 122, 183); border-color:= - rgb(46, 109, 164); } - -.datepicker table tr td span.old, .datepicker table tr td span.new { color:= - rgb(119, 119, 119); } - -.datepicker .datepicker-switch { width: 145px; } - -.datepicker .datepicker-switch, .datepicker .prev, .datepicker .next, .date= -picker tfoot tr th { cursor: pointer; } - -.datepicker .datepicker-switch:hover, .datepicker .prev:hover, .datepicker = -.next:hover, .datepicker tfoot tr th:hover { background: rgb(238, 238, 238)= -; } - -.datepicker .prev.disabled, .datepicker .next.disabled { visibility: hidden= -; } - -.datepicker .cw { font-size: 10px; width: 12px; padding: 0px 2px 0px 5px; v= -ertical-align: middle; } - -.input-group.date .input-group-addon { cursor: pointer; } - -.input-daterange { width: 100%; } - -.input-daterange input { text-align: center; } - -.input-daterange input:first-child { border-radius: 3px 0px 0px 3px; } - -.input-daterange input:last-child { border-radius: 0px 3px 3px 0px; } - -.input-daterange .input-group-addon { width: auto; min-width: 16px; padding= -: 4px 5px; line-height: 1.42857; border-width: 1px 0px; margin-left: -5px; = -margin-right: -5px; } - -.CodeMirror { color: rgb(0, 0, 0); } - -.CodeMirror-lines { padding: 4px 0px; } - -.CodeMirror pre { padding: 0px 4px; } - -.CodeMirror-gutter-filler, .CodeMirror-scrollbar-filler { background-color:= - rgb(255, 255, 255); } - -.CodeMirror-gutters { border-right: 1px solid rgb(221, 221, 221); backgroun= -d-color: rgb(247, 247, 247); white-space: nowrap; } - -.CodeMirror-linenumber { padding: 0px 3px 0px 5px; min-width: 20px; text-al= -ign: right; color: rgb(153, 153, 153); white-space: nowrap; } - -.CodeMirror-guttermarker { color: rgb(0, 0, 0); } - -.CodeMirror-guttermarker-subtle { color: rgb(153, 153, 153); } - -.CodeMirror-cursor { border-left: 1px solid rgb(0, 0, 0); border-right: non= -e; width: 0px; } - -.CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid silver;= - } - -.cm-fat-cursor .CodeMirror-cursor { width: auto; background: rgb(119, 238, = -119); border: 0px !important; } - -.cm-fat-cursor div.CodeMirror-cursors { z-index: 1; } - -.cm-animate-fat-cursor { width: auto; border: 0px; animation: 1.06s steps(1= -) 0s infinite normal none running blink; background-color: rgb(119, 238, 11= -9); } - -@-webkit-keyframes blink {=20 - 50% { background-color: transparent; } -} - -@keyframes blink {=20 - 50% { background-color: transparent; } -} - -.cm-tab { display: inline-block; text-decoration: inherit; } - -.CodeMirror-ruler { border-left: 1px solid rgb(204, 204, 204); position: ab= -solute; } - -.cm-s-default .cm-header { color: rgb(0, 0, 255); } - -.cm-s-default .cm-quote { color: rgb(0, 153, 0); } - -.cm-negative { color: rgb(221, 68, 68); } - -.cm-positive { color: rgb(34, 153, 34); } - -.cm-header, .cm-strong { font-weight: 700; } - -.cm-em { font-style: italic; } - -.cm-link { text-decoration: underline; } - -.cm-strikethrough { text-decoration: line-through; } - -.cm-s-default .cm-keyword { color: rgb(119, 0, 136); } - -.cm-s-default .cm-atom { color: rgb(34, 17, 153); } - -.cm-s-default .cm-number { color: rgb(17, 102, 68); } - -.cm-s-default .cm-def { color: rgb(0, 0, 255); } - -.cm-s-default .cm-variable-2 { color: rgb(0, 85, 170); } - -.cm-s-default .cm-variable-3 { color: rgb(0, 136, 85); } - -.cm-s-default .cm-comment { color: rgb(170, 85, 0); } - -.cm-s-default .cm-string { color: rgb(170, 17, 17); } - -.cm-s-default .cm-string-2 { color: rgb(255, 85, 0); } - -.cm-s-default .cm-meta, .cm-s-default .cm-qualifier { color: rgb(85, 85, 85= -); } - -.cm-s-default .cm-builtin { color: rgb(51, 0, 170); } - -.cm-s-default .cm-bracket { color: rgb(153, 153, 119); } - -.cm-s-default .cm-tag { color: rgb(17, 119, 0); } - -.cm-s-default .cm-attribute { color: rgb(0, 0, 204); } - -.cm-s-default .cm-hr { color: rgb(153, 153, 153); } - -.cm-s-default .cm-link { color: rgb(0, 0, 204); } - -.cm-invalidchar, .cm-s-default .cm-error { color: red; } - -.CodeMirror-composing { border-bottom: 2px solid; } - -div.CodeMirror span.CodeMirror-matchingbracket { color: rgb(0, 255, 0); } - -div.CodeMirror span.CodeMirror-nonmatchingbracket { color: rgb(255, 34, 34)= -; } - -.CodeMirror-matchingtag { background: rgba(255, 150, 0, 0.3); } - -.CodeMirror-activeline-background { background: rgb(232, 242, 255); } - -.CodeMirror { position: relative; overflow: hidden; background: rgb(255, 25= -5, 255); } - -.CodeMirror-scroll { margin-bottom: -30px; margin-right: -30px; padding-bot= -tom: 30px; height: 100%; outline: 0px; position: relative; overflow: scroll= - !important; } - -.CodeMirror-sizer { position: relative; border-right: 30px solid transparen= -t; } - -.CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-fi= -ller, .CodeMirror-vscrollbar { position: absolute; z-index: 6; display: non= -e; } - -.CodeMirror-vscrollbar { right: 0px; top: 0px; overflow: hidden scroll; } - -.CodeMirror-hscrollbar { bottom: 0px; left: 0px; overflow: scroll hidden; } - -.CodeMirror-scrollbar-filler { right: 0px; bottom: 0px; } - -.CodeMirror-gutter-filler { left: 0px; bottom: 0px; } - -.CodeMirror-gutters { position: absolute; left: 0px; top: 0px; min-height: = -100%; z-index: 3; } - -.CodeMirror-gutter { white-space: normal; height: 100%; display: inline-blo= -ck; vertical-align: top; margin-bottom: -30px; } - -.CodeMirror-gutter-wrapper { position: absolute; z-index: 4; user-select: n= -one; background: 0px 0px !important; border: none !important; } - -.CodeMirror-gutter-background { position: absolute; top: 0px; bottom: 0px; = -z-index: 4; } - -.CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } - -.CodeMirror-lines { cursor: text; min-height: 1px; } - -.CodeMirror pre { border-radius: 0px; border-width: 0px; background: 0px 0p= -x; font-family: inherit; font-size: inherit; margin: 0px; white-space: pre;= - overflow-wrap: normal; line-height: inherit; color: inherit; z-index: 2; p= -osition: relative; overflow: visible; -webkit-tap-highlight-color: transpar= -ent; font-variant-ligatures: none; } - -.CodeMirror-wrap pre { overflow-wrap: break-word; white-space: pre-wrap; wo= -rd-break: normal; } - -.CodeMirror-linebackground { position: absolute; inset: 0px; z-index: 0; } - -.CodeMirror-linewidget { position: relative; z-index: 2; overflow: auto; } - -.CodeMirror-code { outline: 0px; } - -.CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber, .CodeMirro= -r-scroll, .CodeMirror-sizer { box-sizing: content-box; } - -.CodeMirror-measure { position: absolute; width: 100%; height: 0px; overflo= -w: hidden; visibility: hidden; } - -.CodeMirror-cursor { position: absolute; } - -.CodeMirror-measure pre { position: static; } - -div.CodeMirror-cursors { visibility: hidden; position: relative; z-index: 3= -; } - -.CodeMirror-focused div.CodeMirror-cursors, div.CodeMirror-dragcursors { vi= -sibility: visible; } - -.CodeMirror-selected { background: rgb(217, 217, 217); } - -.CodeMirror-focused .CodeMirror-selected, .CodeMirror-line::selection, .Cod= -eMirror-line > span::selection, .CodeMirror-line > span > span::selection {= - background: rgb(215, 212, 240); } - -.CodeMirror-crosshair { cursor: crosshair; } - -.cm-searching { background: rgba(255, 255, 0, 0.4); } - -.cm-force-border { padding-right: 0.1px; } - -@media print { - .CodeMirror div.CodeMirror-cursors { visibility: hidden; } -} - -.cm-tab-wrap-hack::after { content: ""; } - -span.CodeMirror-selectedtext { background: 0px 0px; } - -.CodeMirror { height: auto; min-height: 300px; border: 1px solid rgb(221, 2= -21, 221); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; = -padding: 10px; font: inherit; z-index: 1; } - -.CodeMirror-scroll { min-height: 300px; } - -.CodeMirror-fullscreen { background: rgb(255, 255, 255); inset: 50px 0px 0p= -x; height: auto; z-index: 9; position: fixed !important; } - -.CodeMirror-sided { width: 50% !important; } - -.editor-toolbar { position: relative; opacity: 0.6; user-select: none; padd= -ing: 0px 10px; border-top: 1px solid rgb(187, 187, 187); border-left: 1px s= -olid rgb(187, 187, 187); border-right: 1px solid rgb(187, 187, 187); border= --top-left-radius: 4px; border-top-right-radius: 4px; } - -.editor-toolbar::after, .editor-toolbar::before { display: block; content: = -" "; height: 1px; } - -.editor-toolbar::before { margin-bottom: 8px; } - -.editor-toolbar::after { margin-top: 8px; } - -.editor-toolbar:hover, .editor-wrapper input.title:focus, .editor-wrapper i= -nput.title:hover { opacity: 0.8; } - -.editor-toolbar.fullscreen { width: 100%; height: 50px; overflow: auto hidd= -en; white-space: nowrap; padding-top: 10px; padding-bottom: 10px; box-sizin= -g: border-box; background: rgb(255, 255, 255); border: 0px; position: fixed= -; top: 0px; left: 0px; opacity: 1; z-index: 9; } - -.editor-toolbar.fullscreen::before { width: 20px; height: 50px; background:= - linear-gradient(to right, white 0px, rgba(255, 255, 255, 0) 100%); positio= -n: fixed; top: 0px; left: 0px; margin: 0px; padding: 0px; } - -.editor-toolbar.fullscreen::after { width: 20px; height: 50px; background: = -linear-gradient(to right, rgba(255, 255, 255, 0) 0px, white 100%); position= -: fixed; top: 0px; right: 0px; margin: 0px; padding: 0px; } - -.editor-toolbar a { display: inline-block; text-align: center; width: 30px;= - height: 30px; margin: 0px; border: 1px solid transparent; border-radius: 3= -px; cursor: pointer; text-decoration: none !important; color: rgb(44, 62, 8= -0) !important; } - -.editor-toolbar a.active, .editor-toolbar a:hover { background: rgb(252, 25= -2, 252); border-color: rgb(149, 165, 166); } - -.editor-toolbar a::before { line-height: 30px; } - -.editor-toolbar i.separator { display: inline-block; width: 0px; border-lef= -t: 1px solid rgb(217, 217, 217); border-right: 1px solid rgb(255, 255, 255)= -; color: transparent; text-indent: -10px; margin: 0px 6px; } - -.editor-toolbar a.fa-header-x::after { font-family: Arial, "Helvetica Neue"= -, Helvetica, sans-serif; font-size: 65%; vertical-align: text-bottom; posit= -ion: relative; top: 2px; } - -.editor-toolbar a.fa-header-1::after { content: "1"; } - -.editor-toolbar a.fa-header-2::after { content: "2"; } - -.editor-toolbar a.fa-header-3::after { content: "3"; } - -.editor-toolbar a.fa-header-bigger::after { content: "=E2=96=B2"; } - -.editor-toolbar a.fa-header-smaller::after { content: "=E2=96=BC"; } - -.editor-toolbar.disabled-for-preview a:not(.no-disable) { pointer-events: n= -one; background: rgb(255, 255, 255); border-color: transparent; text-shadow= -: inherit; } - -@media only screen and (max-width: 700px) { - .editor-toolbar a.no-mobile { display: none; } -} - -.editor-statusbar { padding: 8px 10px; font-size: 12px; color: rgb(149, 150= -, 148); text-align: right; } - -.editor-statusbar span { display: inline-block; min-width: 4em; margin-left= -: 1em; } - -.editor-preview, .editor-preview-side { padding: 10px; background: rgb(250,= - 250, 250); overflow: auto; display: none; box-sizing: border-box; } - -.editor-statusbar .lines::before { content: "lines: "; } - -.editor-statusbar .words::before { content: "words: "; } - -.editor-statusbar .characters::before { content: "characters: "; } - -.editor-preview { position: absolute; width: 100%; height: 100%; top: 0px; = -left: 0px; z-index: 7; } - -.editor-preview-side { position: fixed; bottom: 0px; width: 50%; top: 50px;= - right: 0px; z-index: 9; border: 1px solid rgb(221, 221, 221); } - -.editor-preview-active, .editor-preview-active-side { display: block; } - -.editor-preview-side > p, .editor-preview > p { margin-top: 0px; } - -.editor-preview pre, .editor-preview-side pre { background: rgb(238, 238, 2= -38); margin-bottom: 10px; } - -.editor-preview table td, .editor-preview table th, .editor-preview-side ta= -ble td, .editor-preview-side table th { border: 1px solid rgb(221, 221, 221= -); padding: 5px; } - -.CodeMirror .CodeMirror-code .cm-tag { color: rgb(99, 163, 92); } - -.CodeMirror .CodeMirror-code .cm-attribute { color: rgb(121, 93, 163); } - -.CodeMirror .CodeMirror-code .cm-string { color: rgb(24, 54, 145); } - -.CodeMirror .CodeMirror-selected { background: rgb(217, 217, 217); } - -.CodeMirror .CodeMirror-code .cm-header-1 { font-size: 200%; line-height: 2= -00%; } - -.CodeMirror .CodeMirror-code .cm-header-2 { font-size: 160%; line-height: 1= -60%; } - -.CodeMirror .CodeMirror-code .cm-header-3 { font-size: 125%; line-height: 1= -25%; } - -.CodeMirror .CodeMirror-code .cm-header-4 { font-size: 110%; line-height: 1= -10%; } - -.CodeMirror .CodeMirror-code .cm-comment { background: rgba(0, 0, 0, 0.05);= - border-radius: 2px; } - -.CodeMirror .CodeMirror-code .cm-link { color: rgb(127, 140, 141); } - -.CodeMirror .CodeMirror-code .cm-url { color: rgb(170, 178, 179); } - -.CodeMirror .CodeMirror-code .cm-strikethrough { text-decoration: line-thro= -ugh; } - -.CodeMirror .CodeMirror-placeholder { opacity: 0.5; } - -.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(= -.cm-word) { background: rgba(255, 0, 0, 0.15); } - -@keyframes a {=20 - 40% { opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(42p= -x, 0px, 0px); } - 100% { opacity: 0; transform: scale(0.1) translate3d(-2000px, 0px, 0px); = -transform-origin: left center; } -} - -.UppyAnimation-zoomOutLeft { animation-name: a; animation-duration: 1s; ani= -mation-fill-mode: both; } - -.Uppy-root [aria-label][role~=3D"tooltip"] { position: relative !important;= - } - -.Uppy-root [aria-label][role~=3D"tooltip"]::after, .Uppy-root [aria-label][= -role~=3D"tooltip"]::before { transform: translateZ(0px) !important; backfac= -e-visibility: hidden !important; will-change: transform !important; opacity= -: 0 !important; pointer-events: none !important; transition: all var(--micr= -otip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-= -out) var(--microtip-transition-delay, 0s) !important; position: absolute !i= -mportant; box-sizing: border-box !important; z-index: 10 !important; transf= -orm-origin: center top !important; } - -.Uppy-root [aria-label][role~=3D"tooltip"]::before { background-size: 100% = -!important; content: "" !important; } - -.Uppy-root [aria-label][role~=3D"tooltip"]::after { background: rgba(18, 18= -, 18, 0.9) !important; border-radius: 4px !important; color: rgb(255, 255, = -255) !important; content: attr(aria-label) !important; font-size: var(--mic= -rotip-font-size, 13px) !important; font-weight: var(--microtip-font-weight,= - normal) !important; text-transform: var(--microtip-text-transform, none) != -important; padding: 0.5em 1em !important; white-space: nowrap !important; b= -ox-sizing: content-box !important; } - -.Uppy-root [aria-label][role~=3D"tooltip"]:focus::after, .Uppy-root [aria-l= -abel][role~=3D"tooltip"]:focus::before, .Uppy-root [aria-label][role~=3D"to= -oltip"]:hover::after, .Uppy-root [aria-label][role~=3D"tooltip"]:hover::bef= -ore { opacity: 1 !important; pointer-events: auto !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"top"]::before { b= -ackground: url("data:image/svg+xml;charset=3Dutf-8,%3Csvg xmlns=3D'http://w= -ww.w3.org/2000/svg' width=3D'36' height=3D'12'%3E%3Cpath fill=3D'rgba(17, 1= -7, 17, 0.9)' d=3D'M2.658 0h32.004c-6 0-11.627 12.002-16.002 12.002C14.285 1= -2.002 8.594 0 2.658 0z'/%3E%3C/svg%3E") no-repeat !important; height: 6px != -important; width: 18px !important; margin-bottom: 5px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"top"]::after { ma= -rgin-bottom: 11px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"top"]::before { t= -ransform: translate3d(-50%, 0px, 0px) !important; bottom: 100% !important; = -left: 50% !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"top"]:hover::befo= -re { transform: translate3d(-50%, -5px, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"top"]::after { tr= -ansform: translate3d(-50%, 0px, 0px) !important; bottom: 100% !important; l= -eft: 50% !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"top"]:hover::after= - { transform: translate3d(-50%, -5px, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"top-left"]::after = -{ transform: translate3d(calc(-100% + 16px), 0px, 0px) !important; bottom: = -100% !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"top-left"]:hover::= -after { transform: translate3d(calc(-100% + 16px), -5px, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"top-right"]::after= - { transform: translate3d(calc(0% + -16px), 0px, 0px) !important; bottom: 1= -00% !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"top-right"]:hover:= -:after { transform: translate3d(calc(0% + -16px), -5px, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"bottom"]::before = -{ background: url("data:image/svg+xml;charset=3Dutf-8,%3Csvg xmlns=3D'http:= -//www.w3.org/2000/svg' width=3D'36' height=3D'12'%3E%3Cpath fill=3D'rgba(17= -, 17, 17, 0.9)' d=3D'M33.342 12H1.338c6 0 11.627-12.002 16.002-12.002C21.71= -5-.002 27.406 12 33.342 12z'/%3E%3C/svg%3E") no-repeat !important; height: = -6px !important; width: 18px !important; margin-top: 5px !important; margin-= -bottom: 0px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"bottom"]::after {= - margin-top: 11px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"bottom"]::before = -{ transform: translate3d(-50%, -10px, 0px) !important; bottom: auto !import= -ant; left: 50% !important; top: 100% !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"bottom"]:hover::b= -efore { transform: translate3d(-50%, 0px, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position|=3D"bottom"]::after {= - transform: translate3d(-50%, -10px, 0px) !important; top: 100% !important;= - left: 50% !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"bottom"]:hover::af= -ter { transform: translate3d(-50%, 0px, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"bottom-left"]::aft= -er { transform: translate3d(calc(-100% + 16px), -10px, 0px) !important; top= -: 100% !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"bottom-left"]:hove= -r::after { transform: translate3d(calc(-100% + 16px), 0px, 0px) !important;= - } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"bottom-right"]::af= -ter { transform: translate3d(calc(0% + -16px), -10px, 0px) !important; top:= - 100% !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"bottom-right"]:hov= -er::after { transform: translate3d(calc(0% + -16px), 0px, 0px) !important; = -} - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"left"]::after, .Up= -py-root [role~=3D"tooltip"][data-microtip-position=3D"left"]::before { inse= -t: 50% 100% auto auto !important; transform: translate3d(10px, -50%, 0px) != -important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"left"]::before { b= -ackground: url("data:image/svg+xml;charset=3Dutf-8,%3Csvg xmlns=3D'http://w= -ww.w3.org/2000/svg' width=3D'12' height=3D'36'%3E%3Cpath fill=3D'rgba(17, 1= -7, 17, 0.9)' d=3D'M0 33.342V1.338c0 6 12.002 11.627 12.002 16.002C12.002 21= -.715 0 27.406 0 33.342z'/%3E%3C/svg%3E") no-repeat !important; height: 18px= - !important; width: 6px !important; margin-right: 5px !important; margin-bo= -ttom: 0px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"left"]::after { ma= -rgin-right: 11px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"left"]:hover::afte= -r, .Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"left"]:hover::b= -efore { transform: translate3d(0px, -50%, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"right"]::after, .U= -ppy-root [role~=3D"tooltip"][data-microtip-position=3D"right"]::before { bo= -ttom: auto !important; left: 100% !important; top: 50% !important; transfor= -m: translate3d(-10px, -50%, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"right"]::before { = -background: url("data:image/svg+xml;charset=3Dutf-8,%3Csvg xmlns=3D'http://= -www.w3.org/2000/svg' width=3D'12' height=3D'36'%3E%3Cpath fill=3D'rgba(17, = -17, 17, 0.9)' d=3D'M12 2.658v32.004c0-6-12.002-11.627-12.002-16.002C-.002 1= -4.285 12 8.594 12 2.658z'/%3E%3C/svg%3E") no-repeat !important; height: 18p= -x !important; width: 6px !important; margin-bottom: 0px !important; margin-= -left: 5px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"right"]::after { m= -argin-left: 11px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"right"]:hover::aft= -er, .Uppy-root [role~=3D"tooltip"][data-microtip-position=3D"right"]:hover:= -:before { transform: translate3d(0px, -50%, 0px) !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-size=3D"small"]::after { white= --space: normal !important; width: 80px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-size=3D"medium"]::after { whit= -e-space: normal !important; width: 150px !important; } - -.Uppy-root [role~=3D"tooltip"][data-microtip-size=3D"large"]::after { white= --space: normal !important; width: 260px !important; } - -.uppy-Root { color: initial !important; font-family: -apple-system, BlinkMa= -cSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, ro= -boto, noto, "segoe ui", arial, sans-serif !important; font-feature-settings= -: initial !important; font-kerning: initial !important; font-optical-sizing= -: initial !important; font-palette: initial !important; font-size: initial = -!important; font-stretch: initial !important; font-style: initial !importan= -t; font-synthesis: initial !important; font-variant: initial !important; fo= -nt-variation-settings: initial !important; font-weight: initial !important;= - forced-color-adjust: initial !important; text-orientation: initial !import= -ant; text-rendering: initial !important; -webkit-font-smoothing: initial !i= -mportant; -webkit-locale: initial !important; -webkit-text-orientation: ini= -tial !important; -webkit-writing-mode: initial !important; writing-mode: in= -itial !important; zoom: initial !important; accent-color: initial !importan= -t; place-content: initial !important; place-items: initial !important; plac= -e-self: initial !important; alignment-baseline: initial !important; animati= -on-composition: initial !important; animation: initial !important; app-regi= -on: initial !important; appearance: initial !important; aspect-ratio: initi= -al !important; backdrop-filter: initial !important; backface-visibility: in= -itial !important; background: initial !important; background-blend-mode: in= -itial !important; baseline-shift: initial !important; baseline-source: init= -ial !important; block-size: initial !important; border-block: initial !impo= -rtant; border: initial !important; border-radius: initial !important; borde= -r-collapse: initial !important; border-end-end-radius: initial !important; = -border-end-start-radius: initial !important; border-inline: initial !import= -ant; border-start-end-radius: initial !important; border-start-start-radius= -: initial !important; inset: initial !important; box-shadow: initial !impor= -tant; box-sizing: border-box !important; break-after: initial !important; b= -reak-before: initial !important; break-inside: initial !important; buffered= --rendering: initial !important; caption-side: initial !important; caret-col= -or: initial !important; clear: initial !important; clip: initial !important= -; clip-path: initial !important; clip-rule: initial !important; color-inter= -polation: initial !important; color-interpolation-filters: initial !importa= -nt; color-rendering: initial !important; color-scheme: initial !important; = -columns: initial !important; column-fill: initial !important; gap: initial = -!important; column-rule: initial !important; column-span: initial !importan= -t; contain: initial !important; contain-intrinsic-block-size: initial !impo= -rtant; contain-intrinsic-size: initial !important; contain-intrinsic-inline= --size: initial !important; container: initial !important; content: initial = -!important; content-visibility: initial !important; counter-increment: init= -ial !important; counter-reset: initial !important; counter-set: initial !im= -portant; cursor: initial !important; cx: initial !important; cy: initial !i= -mportant; d: initial !important; display: initial !important; dominant-base= -line: initial !important; empty-cells: initial !important; fill: initial !i= -mportant; fill-opacity: initial !important; fill-rule: initial !important; = -filter: initial !important; flex: initial !important; flex-flow: initial !i= -mportant; float: initial !important; flood-color: initial !important; flood= --opacity: initial !important; grid: initial !important; grid-area: initial = -!important; height: initial !important; hyphenate-character: initial !impor= -tant; hyphenate-limit-chars: initial !important; hyphens: initial !importan= -t; image-orientation: initial !important; image-rendering: initial !importa= -nt; initial-letter: initial !important; inline-size: initial !important; in= -set-block: initial !important; inset-inline: initial !important; isolation:= - initial !important; letter-spacing: initial !important; lighting-color: in= -itial !important; line-break: initial !important; line-height: 1 !important= -; list-style: initial !important; margin-block: initial !important; margin:= - initial !important; margin-inline: initial !important; marker: initial !im= -portant; mask: initial !important; mask-type: initial !important; math-dept= -h: initial !important; math-shift: initial !important; math-style: initial = -!important; max-block-size: initial !important; max-height: initial !import= -ant; max-inline-size: initial !important; max-width: initial !important; mi= -n-block-size: initial !important; min-height: initial !important; min-inlin= -e-size: initial !important; min-width: initial !important; mix-blend-mode: = -initial !important; object-fit: initial !important; object-position: initia= -l !important; object-view-box: initial !important; offset: initial !importa= -nt; opacity: initial !important; order: initial !important; orphans: initia= -l !important; outline: initial !important; outline-offset: initial !importa= -nt; overflow-anchor: initial !important; overflow-clip-margin: initial !imp= -ortant; overflow-wrap: initial !important; overflow: initial !important; ov= -erscroll-behavior-block: initial !important; overscroll-behavior-inline: in= -itial !important; overscroll-behavior: initial !important; padding-block: i= -nitial !important; padding: initial !important; padding-inline: initial !im= -portant; page: initial !important; page-orientation: initial !important; pa= -int-order: initial !important; perspective: initial !important; perspective= --origin: initial !important; pointer-events: initial !important; position: = -initial !important; quotes: initial !important; r: initial !important; resi= -ze: initial !important; rotate: initial !important; ruby-position: initial = -!important; rx: initial !important; ry: initial !important; scale: initial = -!important; scroll-behavior: initial !important; scroll-margin-block: initi= -al !important; scroll-margin: initial !important; scroll-margin-inline: ini= -tial !important; scroll-padding-block: initial !important; scroll-padding: = -initial !important; scroll-padding-inline: initial !important; scroll-snap-= -align: initial !important; scroll-snap-stop: initial !important; scroll-sna= -p-type: initial !important; scrollbar-gutter: initial !important; shape-ima= -ge-threshold: initial !important; shape-margin: initial !important; shape-o= -utside: initial !important; shape-rendering: initial !important; size: init= -ial !important; speak: initial !important; stop-color: initial !important; = -stop-opacity: initial !important; stroke: initial !important; stroke-dashar= -ray: initial !important; stroke-dashoffset: initial !important; stroke-line= -cap: initial !important; stroke-linejoin: initial !important; stroke-miterl= -imit: initial !important; stroke-opacity: initial !important; stroke-width:= - initial !important; tab-size: initial !important; table-layout: initial !i= -mportant; text-align: initial !important; text-align-last: initial !importa= -nt; text-anchor: initial !important; text-combine-upright: initial !importa= -nt; text-decoration: initial !important; text-decoration-skip-ink: initial = -!important; text-emphasis: initial !important; text-emphasis-position: init= -ial !important; text-indent: initial !important; text-overflow: initial !im= -portant; text-shadow: initial !important; text-size-adjust: initial !import= -ant; text-transform: initial !important; text-underline-offset: initial !im= -portant; text-underline-position: initial !important; white-space: initial = -!important; touch-action: initial !important; transform: initial !important= -; transform-box: initial !important; transform-origin: initial !important; = -transform-style: initial !important; transition: initial !important; transl= -ate: initial !important; user-select: initial !important; vector-effect: in= -itial !important; vertical-align: initial !important; view-transition-name:= - initial !important; visibility: initial !important; border-spacing: initia= -l !important; -webkit-box-align: initial !important; -webkit-box-decoration= --break: initial !important; -webkit-box-direction: initial !important; -web= -kit-box-flex: initial !important; -webkit-box-ordinal-group: initial !impor= -tant; -webkit-box-orient: initial !important; -webkit-box-pack: initial !im= -portant; -webkit-box-reflect: initial !important; -webkit-highlight: initia= -l !important; -webkit-line-break: initial !important; -webkit-line-clamp: i= -nitial !important; -webkit-mask-box-image: initial !important; -webkit-mask= -: initial !important; -webkit-mask-composite: initial !important; -webkit-p= -rint-color-adjust: initial !important; -webkit-rtl-ordering: initial !impor= -tant; -webkit-ruby-position: initial !important; -webkit-tap-highlight-colo= -r: initial !important; -webkit-text-combine: initial !important; -webkit-te= -xt-decorations-in-effect: initial !important; -webkit-text-fill-color: init= -ial !important; -webkit-text-security: initial !important; -webkit-text-str= -oke: initial !important; -webkit-user-drag: initial !important; -webkit-use= -r-modify: initial !important; widows: initial !important; width: initial !i= -mportant; will-change: initial !important; word-break: initial !important; = -word-spacing: initial !important; x: initial !important; y: initial !import= -ant; z-index: initial !important; } - -.uppy-Root *, .uppy-Root ::after, .uppy-Root ::before { box-sizing: inherit= - !important; } - -.UppyIcon { max-width: 100% !important; max-height: 100% !important; fill: = -currentcolor !important; display: inline-block !important; vertical-align: = -text-top !important; overflow: hidden !important; } - -.UppyIcon--svg-baseline { bottom: -0.125em !important; position: relative != -important; } - -.UppyButton--circular { background: none !important; appearance: none !impo= -rtant; font-family: inherit !important; font-size: inherit !important; line= --height: 1 !important; padding: 0px !important; margin: 0px !important; bor= -der: 0px !important; color: inherit !important; box-shadow: rgba(0, 0, 0, 0= -.2) 1px 2px 4px 0px !important; border-radius: 50% !important; cursor: poin= -ter !important; transition: all 0.3s ease 0s !important; } - -.UppyButton--blue { color: rgb(255, 255, 255) !important; background-color:= - rgb(34, 117, 215) !important; } - -.UppyButton--blue:focus, .UppyButton--blue:hover { background-color: rgb(27= -, 93, 171) !important; } - -.UppyButton--red { color: rgb(255, 255, 255) !important; background-color: = -rgb(211, 47, 47) !important; } - -.UppyButton--red:focus, .UppyButton--red:hover { background-color: rgb(171,= - 36, 36) !important; } - -.UppyButton--sizeM { width: 60px !important; height: 60px !important; } - -.UppyButton--sizeS { width: 45px !important; height: 45px !important; } - -.uppy-u-reset { animation: 0s ease 0s 1 normal none running none; backface-= -visibility: visible !important; background: none 0px 0px / auto repeat scro= -ll padding-box border-box transparent !important; border: medium none curre= -ntcolor !important; border-collapse: separate !important; border-radius: 0p= -x !important; border-spacing: 0px !important; inset: auto !important; box-s= -hadow: none !important; caption-side: top !important; clear: none !importan= -t; clip: auto !important; color: rgb(0, 0, 0) !important; columns: auto !im= -portant; column-fill: balance !important; column-gap: normal !important; co= -lumn-rule: medium none currentcolor !important; content: normal !important;= - counter-increment: none !important; counter-reset: none !important; cursor= -: auto !important; display: inline !important; empty-cells: show !important= -; float: none !important; font-family: serif !important; font-size: medium = -!important; font-style: normal !important; font-variant: normal !important;= - font-weight: 400 !important; font-stretch: normal !important; line-height:= - normal !important; height: auto !important; hyphens: none !important; lett= -er-spacing: normal !important; list-style: outside none disc !important; ma= -rgin: 0px !important; max-height: none !important; max-width: none !importa= -nt; min-height: 0px !important; min-width: 0px !important; opacity: 1 !impo= -rtant; orphans: 2 !important; overflow: visible !important; padding: 0px !i= -mportant; break-after: auto !important; break-before: auto !important; brea= -k-inside: auto !important; perspective: none !important; perspective-origin= -: 50% 50% !important; position: static !important; tab-size: 8 !important; = -table-layout: auto !important; text-align: left !important; text-align-last= -: auto !important; text-decoration: none !important; text-indent: 0px !impo= -rtant; text-shadow: none !important; text-transform: none !important; trans= -form: none !important; transform-origin: 50% 50% 0px !important; transform-= -style: flat !important; transition: none 0s ease 0s !important; unicode-bid= -i: normal !important; vertical-align: baseline !important; visibility: visi= -ble !important; white-space: normal !important; widows: 2 !important; width= -: auto !important; word-spacing: normal !important; z-index: auto !importan= -t; } - -.uppy-c-textInput { border: 1px solid rgba(148, 148, 148, 0.5) !important; = -border-radius: 4px !important; font-size: 13px !important; line-height: 1.5= - !important; padding: 6px 8px !important; } - -.uppy-Dashboard--wide .uppy-c-textInput { font-size: 15px !important; line-= -height: 1.8 !important; padding: 8px 12px !important; } - -.uppy-c-textInput:focus { border-color: rgb(34, 117, 215) !important; outli= -ne: none !important; box-shadow: rgba(34, 117, 215, 0.3) 0px 0px 1px 1px !i= -mportant; } - -.uppy-c-btn { display: inline-block !important; text-align: center !importa= -nt; white-space: nowrap !important; vertical-align: middle !important; font= --family: inherit !important; font-size: 16px !important; line-height: 1 !im= -portant; font-weight: 300 !important; transition: all 0.3s ease 0s !importa= -nt; user-select: none !important; } - -.uppy-c-btn:not(:disabled):not(.disabled) { cursor: pointer !important; } - -.uppy-c-btn-primary { font-size: 13px !important; padding: 10px 18px !impor= -tant; border-radius: 4px !important; background-color: rgb(34, 117, 215) !i= -mportant; color: rgb(255, 255, 255) !important; } - -.uppy-Dashboard--wide .uppy-c-btn-primary { font-size: 15px !important; pad= -ding: 13px 28px !important; } - -.uppy-c-btn-primary:hover { background-color: rgb(27, 93, 171) !important; = -} - -.uppy-c-btn-primary:focus { outline: none !important; box-shadow: rgba(34, = -117, 215, 0.7) 0px 0px 3px 1px !important; } - -.uppy-c-btn-link { font-size: 13px !important; line-height: 1 !important; p= -adding: 10px 18px !important; border-radius: 4px !important; background-col= -or: transparent !important; color: rgb(0, 0, 0) !important; } - -.uppy-Dashboard--wide .uppy-c-btn-link { font-size: 15px !important; paddin= -g: 13px 28px !important; } - -.uppy-c-btn-link:hover { text-decoration: underline !important; } - -.uppy-c-btn-link:focus { outline: none !important; box-shadow: rgba(34, 117= -, 215, 0.7) 0px 0px 3px 1px !important; } - -.uppy-c-btn--small { font-size: 0.9em !important; padding: 7px 16px !import= -ant; border-radius: 2px !important; } - -.uppy-Dashboard--wide .uppy-c-btn--small { padding: 8px 10px !important; bo= -rder-radius: 2px !important; } - -.uppy-FileInput-container { margin-bottom: 15px !important; } - -.uppy-FileInput-btn { background: none !important; appearance: none !import= -ant; line-height: 1 !important; margin: 0px !important; font-family: sans-s= -erif !important; font-size: 0.85em !important; padding: 10px 15px !importan= -t; color: rgb(20, 69, 127) !important; border: 1px solid rgb(20, 69, 127) != -important; border-radius: 8px !important; cursor: pointer !important; } - -.uppy-FileInput-btn:hover { background-color: rgb(20, 69, 127) !important; = -color: rgb(255, 255, 255) !important; } - -.uppy-Informer { position: absolute !important; bottom: 0px !important; lef= -t: 0px !important; right: 0px !important; text-align: center !important; fo= -nt-size: 12px !important; font-weight: 500 !important; padding: 0px 15px !i= -mportant; height: 35px !important; line-height: 35px !important; background= --color: rgb(0, 0, 0) !important; color: rgb(255, 255, 255) !important; opac= -ity: 1 !important; transform: none !important; transition: all 0.3s ease-in= - 0s !important; z-index: 1004 !important; } - -.uppy-Dashboard--wide .uppy-Informer { height: 45px !important; line-height= -: 45px !important; font-size: 13px !important; } - -.uppy-Informer[aria-hidden=3D"true"] { opacity: 0 !important; transform: tr= -anslateY(200%) !important; transition: all 0.3s ease-in 0s !important; } - -.uppy-Informer p { margin: 0px !important; padding: 0px !important; height:= - 35px !important; line-height: 35px !important; } - -.uppy-Dashboard--wide .uppy-Informer p { height: 45px !important; line-heig= -ht: 45px !important; } - -.uppy-Informer span { line-height: 12px !important; width: 13px !important;= - height: 13px !important; display: inline-block !important; vertical-align:= - middle !important; background-color: rgb(255, 255, 255) !important; border= --radius: 50% !important; position: relative !important; top: -1px !importan= -t; left: 3px !important; font-size: 10px !important; margin-left: -1px !imp= -ortant; } - -.uppy-Informer span::after { line-height: 1.3 !important; overflow-wrap: br= -eak-word !important; } - -.uppy-Dashboard--modal { z-index: 1001 !important; } - -.uppy-Dashboard--modal[aria-hidden=3D"true"] { display: none !important; } - -.uppy-Dashboard-isOpen { overflow: hidden !important; height: 100vh !import= -ant; } - -.uppy-Dashboard--modal .uppy-Dashboard-overlay { position: fixed !important= -; inset: 0px !important; background-color: rgba(0, 0, 0, 0.5) !important; z= --index: 1001 !important; } - -.uppy-Dashboard-inner { position: relative !important; background-color: rg= -b(250, 250, 250) !important; max-width: 100% !important; max-height: 100% != -important; width: 100% !important; height: 100% !important; outline: none != -important; border: 1px solid rgba(148, 148, 148, 0.2) !important; } - -.uppy-Dashboard--modal .uppy-Dashboard-inner { z-index: 1002 !important; } - -@media only screen and (min-width: 768px) { - .uppy-Dashboard-inner { width: 750px !important; height: 550px !important= -; border-radius: 5px !important; } -} - -.uppy-Dashboard-poweredBy { position: absolute !important; right: 4px !impo= -rtant; bottom: -23px !important; font-size: 11px !important; color: rgba(14= -8, 148, 148, 0.8) !important; text-align: right !important; text-decoration= -: none !important; } - -.uppy-Dashboard--modal .uppy-Dashboard-poweredBy { color: rgba(255, 255, 25= -5, 0.7) !important; } - -.uppy-Dashboard-poweredByUppy { color: rgb(147, 147, 147) !important; } - -.uppy-Dashboard--modal .uppy-Dashboard-poweredByUppy { color: rgb(255, 255,= - 255) !important; } - -.uppy-Dashboard-poweredByIcon { stroke: rgb(147, 147, 147) !important; fill= -: none !important; margin-left: 1px !important; margin-right: 2px !importan= -t; } - -.uppy-Dashboard--modal .uppy-Dashboard-poweredByIcon { stroke: none !import= -ant; fill: rgb(235, 33, 119) !important; } - -.uppy-Dashboard-innerWrap { display: flex !important; flex-direction: colum= -n !important; height: 100% !important; overflow: hidden !important; min-hei= -ght: 300px !important; position: relative !important; } - -@media only screen and (min-width: 768px) { - .uppy-Dashboard-innerWrap { border-radius: 5px !important; } -} - -.uppy-Dashboard--modal .uppy-Dashboard-inner { position: fixed !important; = -top: 0px !important; left: 0px !important; border: none !important; } - -@media only screen and (min-width: 768px) { - .uppy-Dashboard--modal .uppy-Dashboard-inner { top: 50% !important; left:= - 50% !important; transform: translate(-50%, -50%) !important; box-shadow: r= -gba(0, 0, 0, 0.15) 0px 5px 15px 4px !important; } -} - -.uppy-Dashboard-close { background: none !important; appearance: none !impo= -rtant; font-family: inherit !important; line-height: 1 !important; padding:= - 0px !important; margin: 0px !important; border: 0px !important; display: n= -one !important; position: absolute !important; top: 2px !important; right: = -8px !important; cursor: pointer !important; color: rgba(82, 82, 82, 0.5) !i= -mportant; transition: all 0.3s ease 0s !important; font-size: 23px !importa= -nt; } - -.uppy-Dashboard--wide .uppy-Dashboard-close { font-size: 30px !important; t= -op: 2px !important; right: 8px !important; } - -.uppy-Dashboard--modal .uppy-Dashboard-close { z-index: 1005 !important; di= -splay: block !important; } - -.uppy-Dashboard-close:hover { color: rgb(34, 117, 215) !important; } - -.uppy-DashboardTabs { padding-top: 7px !important; padding-bottom: 7px !imp= -ortant; border-bottom: 1px solid rgba(148, 148, 148, 0.3) !important; } - -.uppy-DashboardTabs[aria-hidden=3D"true"] { display: none !important; } - -.uppy-DashboardTabs-title { font-size: 15px !important; line-height: 30px != -important; font-weight: 400 !important; margin: 0px !important; padding: 0p= -x !important; text-align: center !important; color: rgb(82, 82, 82) !import= -ant; } - -.uppy-Dashboard--wide .uppy-DashboardTabs-title { font-size: 17px !importan= -t; line-height: 40px !important; } - -.uppy-Dashboard-browse { background: none !important; appearance: none !imp= -ortant; font-family: inherit !important; font-size: inherit !important; lin= -e-height: 1 !important; padding: 0px !important; margin: 0px !important; bo= -rder: 0px !important; cursor: pointer !important; color: rgba(34, 117, 215,= - 0.9) !important; } - -.uppy-Dashboard-browse:focus { outline: none !important; border-bottom: 2px= - solid rgb(34, 117, 215) !important; } - -.uppy-DashboardTabs-list { list-style-type: none !important; margin: 0px !i= -mportant; padding: 0px !important; display: flex !important; justify-conten= -t: center !important; align-items: center !important; } - -.uppy-DashboardTab { width: 70px !important; margin: 0px !important; displa= -y: inline-block !important; text-align: center !important; } - -.uppy-Dashboard--wide .uppy-DashboardTab { width: 75px !important; margin: = -0px 5px !important; } - -.uppy-DashboardTab-btn { width: 100% !important; cursor: pointer !important= -; border: 0px !important; background-color: transparent !important; appeara= -nce: none !important; transition: all 0.3s ease 0s !important; color: rgb(8= -3, 83, 83) !important; } - -.uppy-DashboardTab-btn:hover { color: rgb(34, 117, 215) !important; } - -.uppy-DashboardTab-name { font-size: 8px !important; margin-top: 5px !impor= -tant; margin-bottom: 0px !important; font-weight: 400 !important; overflow-= -x: hidden !important; text-overflow: ellipsis !important; white-space: nowr= -ap !important; } - -.uppy-Dashboard--wide .uppy-DashboardTab-name { font-size: 9px !important; = -} - -.uppy-DashboardTab .UppyIcon { width: 18px !important; height: 18px !import= -ant; vertical-align: middle !important; } - -.uppy-Dashboard--wide .uppy-DashboardTab .UppyIcon { width: 23px !important= -; height: 23px !important; } - -.uppy-Dashboard-input { width: 0.1px !important; height: 0.1px !important; = -opacity: 0 !important; overflow: hidden !important; position: absolute !imp= -ortant; z-index: -1 !important; } - -.uppy-DashboardContent-bar { position: absolute !important; top: 0px !impor= -tant; left: 0px !important; display: flex !important; align-items: center != -important; height: 40px !important; width: 100% !important; border-bottom: = -1px solid rgba(148, 148, 148, 0.3) !important; z-index: 1004 !important; ba= -ckground-color: rgb(245, 245, 245) !important; padding: 0px 15px !important= -; } - -.uppy-Dashboard--wide .uppy-DashboardContent-bar { height: 50px !important;= - } - -.uppy-DashboardContent-title { position: absolute !important; top: 0px !imp= -ortant; left: 0px !important; right: 0px !important; text-align: center !im= -portant; font-size: 14px !important; line-height: 40px !important; font-wei= -ght: 400 !important; max-width: 170px !important; text-overflow: ellipsis != -important; white-space: nowrap !important; overflow-x: hidden !important; m= -argin: auto !important; } - -.uppy-Dashboard--wide .uppy-DashboardContent-title { font-size: 16px !impor= -tant; line-height: 50px !important; max-width: 300px !important; } - -.uppy-DashboardContent-back { background: none !important; appearance: none= - !important; font-family: inherit !important; line-height: 1 !important; pa= -dding: 0px !important; margin: 0px !important; border: 0px !important; font= --size: 14px !important; font-weight: 400 !important; cursor: pointer !impor= -tant; color: rgb(34, 117, 215) !important; } - -.uppy-Dashboard--wide .uppy-DashboardContent-back { font-size: 15px !import= -ant; } - -.uppy-DashboardContent-panel { position: absolute !important; inset: 0px !i= -mportant; transform: translateY(-105%) !important; transition: transform 0.= -2s ease-in-out 0s !important; will-change: transform !important; background= --color: rgb(245, 245, 245) !important; box-shadow: rgba(0, 0, 0, 0.15) 0px = -0px 10px 5px !important; padding-top: 40px !important; overflow: hidden !im= -portant; z-index: 1004 !important; } - -.uppy-Dashboard--wide .uppy-DashboardContent-panel { padding-top: 50px !imp= -ortant; } - -.uppy-DashboardContent-panel[aria-hidden=3D"false"] { transform: none !impo= -rtant; } - -.uppy-Dashboard-progress { position: absolute !important; bottom: 0px !impo= -rtant; left: 0px !important; width: 100% !important; height: 12% !important= -; } - -.uppy-Dashboard-progressBarContainer.is-active { z-index: 1004 !important; = -} - -.uppy-Dashboard-next, .uppy-Dashboard-progressBarContainer.is-active { posi= -tion: absolute !important; top: 0px !important; left: 0px !important; width= -: 100% !important; height: 100% !important; } - -.uppy-Dashboard-next { background: none rgba(148, 148, 148, 0.7) !important= -; appearance: none !important; border: 0px !important; z-index: 1002 !impor= -tant; transition: background-color 0.5s ease 0s !important; color: rgb(255,= - 255, 255) !important; font-family: inherit !important; font-size: 14px !im= -portant; line-height: 1 !important; padding: 0px !important; margin: 0px !i= -mportant; outline: none !important; cursor: not-allowed !important; } - -.uppy-Dashboard-next.is-active { cursor: pointer !important; background-col= -or: rgb(34, 117, 215) !important; } - -.uppy-Dashboard-next.is-active:hover { background-color: rgb(20, 69, 127) != -important; } - -.uppy-Dashboard-filesContainer { position: relative !important; overflow-y:= - hidden !important; margin: 0px !important; flex: 1 1 0% !important; } - -.uppy-Dashboard-filesContainer::after { content: "" !important; display: ta= -ble !important; clear: both !important; } - -.uppy-Dashboard-files { margin: 0px !important; padding: 0px 0px 10px !impo= -rtant; overflow-y: auto !important; position: absolute !important; inset: 0= -px !important; } - -.uppy-Dashboard--wide .uppy-Dashboard-files { padding: 15px 10px 10px !impo= -rtant; } - -.uppy-Dashboard.drag .uppy-Dashboard-innerWrap { background-color: rgb(204,= - 204, 204) !important; } - -.uppy-Dashboard.drag .uppy-Dashboard-files--noFiles { border-color: rgb(204= -, 204, 204) !important; } - -.uppy-Dashboard-bgIcon { height: 100% !important; display: flex !important;= - align-items: center !important; justify-content: center !important; } - -.uppy-Dashboard.drag .uppy-Dashboard-bgIcon { opacity: 1 !important; } - -.uppy-Dashboard-dropFilesTitle { max-width: 460px !important; text-align: c= -enter !important; font-size: 18px !important; line-height: 1.45 !important;= - font-weight: 300 !important; color: rgba(82, 82, 82, 0.8) !important; padd= -ing: 0px 15px !important; } - -.uppy-Dashboard--wide .uppy-Dashboard-dropFilesTitle { font-size: 24px !imp= -ortant; } - -.uppy-Dashboard-note { font-size: 13px !important; line-height: 1.2 !import= -ant; text-align: center !important; color: rgba(82, 82, 82, 0.7) !important= -; position: absolute !important; bottom: 20px !important; left: 0px !import= -ant; width: 100% !important; } - -.uppy-Dashboard--wide .uppy-Dashboard-note { font-size: 14px !important; } - -.uppy-DashboardItem { list-style: none !important; margin: 10px 0px !import= -ant; position: relative !important; display: flex !important; align-items: = -center !important; border-bottom: 1px solid rgb(236, 236, 236) !important; = -padding-bottom: 10px !important; padding-left: 10px !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem { flex-direction: column !importa= -nt; float: left !important; width: 140px !important; height: 170px !importa= -nt; margin: 5px 15px !important; border-top: 0px !important; border-right: = -0px !important; border-left: 0px !important; border-image: initial !importa= -nt; background-color: initial !important; border-bottom: none !important; p= -adding-bottom: 0px !important; padding-left: 0px !important; } - -.uppy-DashboardItem-preview { width: 60px !important; height: 60px !importa= -nt; border-bottom: 0px !important; position: relative !important; display: = -flex !important; justify-content: center !important; align-items: center !i= -mportant; } - -.uppy-Dashboard--wide .uppy-DashboardItem-preview { width: 100% !important;= - height: 100px !important; border: 0px !important; } - -.uppy-DashboardItem-previewLink { position: absolute !important; inset: 0px= - !important; z-index: 1002 !important; } - -.uppy-DashboardItem-sourceIcon { display: inline-block !important; vertical= --align: middle !important; color: rgba(148, 148, 148, 0.6) !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-sourceIcon, .uppy-DashboardItem-s= -ourceIcon { width: 10px !important; height: 10px !important; } - -.uppy-DashboardItem-previewInnerWrap { width: 100% !important; height: 100%= - !important; overflow: hidden !important; position: relative !important; di= -splay: flex !important; justify-content: center !important; align-items: ce= -nter !important; flex-direction: column !important; box-shadow: rgba(148, 1= -48, 148, 0.7) 0px 0px 2px 0px !important; border-radius: 3px !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-previewInnerWrap { box-shadow: rg= -ba(0, 0, 0, 0.2) 0px 1px 3px !important; border-radius: 3px !important; } - -.uppy-DashboardItem-previewInnerWrap::after { content: "" !important; posit= -ion: absolute !important; inset: 0px !important; background-color: rgba(0, = -0, 0, 0.65) !important; display: none !important; z-index: 1001 !important;= - } - -.uppy-DashboardItem-preview img { width: 100% !important; height: 100% !imp= -ortant; object-fit: cover !important; } - -.uppy-DashboardItem-previewIconWrap { height: 80px !important; max-height: = -90% !important; position: relative !important; } - -.uppy-DashboardItem-previewIconBg { width: 100% !important; height: 100% !i= -mportant; filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 0px 1px) !important; } - -.uppy-DashboardItem-previewIcon { width: 18px !important; height: 18px !imp= -ortant; z-index: 100 !important; position: absolute !important; top: 50% !i= -mportant; left: 50% !important; transform: translate(-50%, -50%) !important= -; } - -.uppy-Dashboard--wide .uppy-DashboardItem-previewIcon { width: 25px !import= -ant; height: 25px !important; } - -.uppy-DashboardItem-previewType { position: absolute !important; bottom: 14= -px !important; left: 50% !important; transform: translate(-50%) !important;= - text-transform: uppercase !important; font-size: 9px !important; letter-sp= -acing: 1px !important; color: rgb(82, 82, 82) !important; z-index: 100 !imp= -ortant; user-select: none !important; } - -.uppy-DashboardItem-info { padding-left: 15px !important; position: relativ= -e !important; max-width: 65% !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-info { width: 100% !important; ma= -x-width: 100% !important; flex: 1 1 0% !important; padding: 10px 19px 0px 3= -px !important; border-top: 0px !important; } - -.uppy-DashboardItem-name { font-size: 11px !important; line-height: 1.35 !i= -mportant; font-weight: 500 !important; margin: 0px 0px 3px !important; padd= -ing: 0px !important; max-height: 28px !important; text-overflow: ellipsis != -important; white-space: nowrap !important; overflow: hidden !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-name { word-break: break-all !imp= -ortant; white-space: normal !important; } - -.uppy-DashboardItem-name a { text-decoration: underline !important; color: = -rgb(0, 0, 0) !important; } - -.uppy-DashboardItem-status { font-size: 11px !important; font-weight: 400 != -important; color: rgb(147, 147, 147) !important; margin-bottom: 4px !import= -ant; } - -.uppy-DashboardItem-statusSize { display: inline-block !important; vertical= --align: bottom !important; text-transform: uppercase !important; margin-rig= -ht: 3px !important; } - -.uppy-DashboardItem-copyLink, .uppy-DashboardItem-edit { background: none != -important; appearance: none !important; font-family: inherit !important; li= -ne-height: 1 !important; padding: 0px !important; margin: 0px !important; b= -order: 0px !important; color: inherit !important; font-size: 12px !importan= -t; text-align: left !important; cursor: pointer !important; position: absol= -ute !important; top: 0px !important; right: -20px !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-copyLink, .uppy-Dashboard--wide .= -uppy-DashboardItem-edit { top: 9px !important; right: 3px !important; } - -.uppy-DashboardItem-edit .UppyIcon { width: 11px !important; height: 11px != -important; color: rgb(82, 82, 82) !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-edit .UppyIcon { width: 12px !imp= -ortant; height: 12px !important; } - -.uppy-DashboardItem-copyLink .UppyIcon { width: 11px !important; height: 11= -px !important; color: rgb(82, 82, 82) !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-copyLink .UppyIcon { width: 13px = -!important; height: 13px !important; } - -.uppy-DashboardItem-action { position: absolute !important; top: 23px !impo= -rtant; right: 5px !important; z-index: 1002 !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-action { top: -8px !important; ri= -ght: -8px !important; } - -.uppy-DashboardItem-remove { background: none !important; appearance: none = -!important; font-family: inherit !important; font-size: inherit !important;= - line-height: 1 !important; padding: 0px !important; margin: 0px !important= -; border: 0px !important; cursor: pointer !important; color: rgb(133, 133, = -133) !important; width: 16px !important; height: 16px !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-remove { width: 20px !important; = -height: 20px !important; color: rgb(102, 102, 102) !important; } - -.uppy-DashboardItem.is-inprogress:not(.is-resumable) .uppy-DashboardItem-re= -move { display: none !important; } - -.uppy-DashboardItem-progress { position: absolute !important; top: 50% !imp= -ortant; left: 50% !important; transform: translate(-50%, -50%) !important; = -z-index: 1002 !important; color: rgb(255, 255, 255) !important; text-align:= - center !important; width: 120px !important; display: none !important; } - -.uppy-DashboardItem.is-complete .uppy-DashboardItem-progress { transform: n= -one !important; top: -9px !important; right: -8px !important; left: auto !i= -mportant; width: auto !important; } - -.uppy-DashboardItem.is-complete .uppy-DashboardItem-progress, .uppy-Dashboa= -rdItem.is-error .uppy-DashboardItem-progress, .uppy-DashboardItem.is-inprog= -ress .uppy-DashboardItem-progress { display: block !important; } - -.uppy-DashboardItem-progressIndicator { background: none !important; appear= -ance: none !important; font-family: inherit !important; font-size: inherit = -!important; line-height: 1 !important; padding: 0px !important; margin: 0px= - !important; border: 0px !important; color: inherit !important; width: 38px= - !important; height: 38px !important; opacity: 0.9 !important; cursor: poin= -ter !important; transition: all 0.35s ease 0s !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-progressIndicator { width: 55px != -important; height: 55px !important; } - -.uppy-DashboardItem.is-error .uppy-DashboardItem-progressIndicator { width:= - 18px !important; height: 18px !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem.is-error .uppy-DashboardItem-prog= -ressIndicator { width: 28px !important; height: 28px !important; } - -.uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator { wid= -th: 18px !important; height: 18px !important; opacity: 1 !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem.is-complete .uppy-DashboardItem-p= -rogressIndicator { width: 25px !important; height: 25px !important; } - -.uppy-DashboardItem-progressInfo { font-size: 9px !important; line-height: = -1 !important; font-weight: 500 !important; height: 10px !important; display= -: none !important; position: absolute !important; bottom: -10px !important;= - left: 0px !important; width: 100% !important; text-shadow: rgba(0, 0, 0, 0= -.3) 0px 1px 0px !important; } - -.uppy-Dashboard--wide .uppy-DashboardItem-progressInfo { display: block !im= -portant; } - -.UppyIcon-progressCircle { width: 100% !important; height: 100% !important;= - } - -.uppy-DashboardItem .bg { stroke: rgba(255, 255, 255, 0.4) !important; opac= -ity: 0 !important; } - -.uppy-DashboardItem .progress { stroke: rgb(255, 255, 255) !important; tran= -sition: stroke-dashoffset 0.5s ease-out 0s !important; opacity: 0 !importan= -t; } - -.uppy-DashboardItem .play { stroke: rgb(255, 255, 255) !important; display:= - none !important; } - -.uppy-DashboardItem .cancel, .uppy-DashboardItem .pause, .uppy-DashboardIte= -m .play { fill: rgb(255, 255, 255) !important; opacity: 0 !important; trans= -ition: all 0.2s ease 0s !important; } - -.uppy-DashboardItem .pause { stroke: rgb(255, 255, 255) !important; display= -: none !important; } - -.uppy-DashboardItem.is-error .retry { fill: rgb(255, 255, 255) !important; = -} - -.uppy-DashboardItem.is-resumable .pause, .uppy-DashboardItem.is-resumable .= -play { display: block !important; } - -.uppy-DashboardItem.is-resumable .cancel { display: none !important; } - -.UppyIcon-progressCircle .check { opacity: 0 !important; fill: rgb(255, 255= -, 255) !important; transition: all 0.2s ease 0s !important; } - -.uppy-DashboardItem.is-inprogress .bg, .uppy-DashboardItem.is-inprogress .c= -ancel, .uppy-DashboardItem.is-inprogress .pause, .uppy-DashboardItem.is-inp= -rogress .progress { opacity: 1 !important; } - -.uppy-DashboardItem.is-error .uppy-DashboardItem-previewInnerWrap::after, .= -uppy-DashboardItem.is-inprogress .uppy-DashboardItem-previewInnerWrap::afte= -r { display: block !important; } - -.uppy-DashboardItem.is-paused .pause { opacity: 0 !important; } - -.uppy-DashboardItem.is-paused .play { opacity: 1 !important; } - -.uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator { cur= -sor: default !important; } - -.uppy-DashboardItem.is-complete .progress { stroke: rgb(27, 178, 64) !impor= -tant; fill: rgb(27, 178, 64) !important; opacity: 1 !important; } - -.uppy-DashboardItem.is-complete .check { opacity: 1 !important; } - -.uppy-DashboardItem-progressNum { position: relative !important; z-index: 1= -001 !important; } - -.uppy-DashboardItem-progressInner { height: 15px !important; background-col= -or: rgb(34, 117, 215) !important; position: absolute !important; top: 0px != -important; left: 0px !important; } - -.uppy-Dashboard-actions { height: 55px !important; border-top: 1px solid rg= -ba(148, 148, 148, 0.2) !important; display: flex !important; align-items: c= -enter !important; padding: 0px 15px !important; } - -.uppy-Dashboard--wide .uppy-Dashboard-actions { height: 75px !important; } - -.uppy-Dashboard-actionsBtn { margin-right: 10px !important; } - -.uppy-Dashboard-pauseResume .UppyIcon { width: 100% !important; height: 100= -% !important; } - -.uppy-Dashboard-upload { position: relative !important; width: 50px !import= -ant; height: 50px !important; } - -.uppy-Dashboard--wide .uppy-Dashboard-upload { width: 60px !important; heig= -ht: 60px !important; } - -.uppy-Dashboard-upload .UppyIcon { position: relative !important; top: 1px = -!important; width: 50% !important; } - -.uppy-Dashboard-uploadCount { position: absolute !important; top: -12px !im= -portant; right: -12px !important; background-color: rgb(27, 178, 64) !impor= -tant; color: rgb(255, 255, 255) !important; border-radius: 50% !important; = -width: 16px !important; height: 16px !important; line-height: 16px !importa= -nt; font-size: 8px !important; } - -.uppy-Dashboard--wide .uppy-Dashboard-uploadCount { width: 18px !important;= - height: 18px !important; line-height: 18px !important; font-size: 9px !imp= -ortant; } - -.uppy-DashboardFileCard { transform: translateY(0px) !important; transition= -: all 0.25s ease-in-out 0s !important; width: 100% !important; height: 100%= - !important; position: absolute !important; inset: 0px !important; z-index:= - 1004 !important; box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 4px !importan= -t; background-color: rgb(255, 255, 255) !important; } - -.uppy-DashboardFileCard[aria-hidden=3D"true"] { transform: translateY(-105%= -) !important; } - -.uppy-DashboardFileCard-inner { display: flex !important; flex-direction: c= -olumn !important; height: 100% !important; padding-top: 40px !important; } - -.uppy-Dashboard--wide .uppy-DashboardFileCard-inner { padding-top: 50px !im= -portant; } - -.uppy-DashboardFileCard-preview { background-color: rgb(249, 249, 249); dis= -play: flex !important; align-items: center !important; justify-content: cen= -ter !important; flex-grow: 1 !important; border-bottom: 1px solid rgba(148,= - 148, 148, 0.3) !important; position: relative !important; } - -.uppy-DashboardFileCard-preview img { box-shadow: rgba(0, 0, 0, 0.15) 0px 3= -px 20px !important; max-width: 90% !important; max-height: 90% !important; = -object-fit: cover !important; border-radius: 3px !important; position: abso= -lute !important; } - -.uppy-DashboardFileCard-info { padding: 30px 20px 20px !important; max-heig= -ht: 40% !important; flex-grow: 1 !important; overflow-y: auto !important; } - -.uppy-DashboardFileCard-fieldset { font-size: 0px !important; border: 0px != -important; padding: 0px !important; max-width: 640px !important; margin: au= -to auto 12px !important; } - -.uppy-DashboardFileCard-label { display: inline-block !important; vertical-= -align: middle !important; width: 22% !important; font-size: 12px !important= -; color: rgb(82, 82, 82) !important; } - -.uppy-Dashboard--wide .uppy-DashboardFileCard-label { font-size: 13px !impo= -rtant; } - -.uppy-DashboardFileCard-input { display: inline-block !important; vertical-= -align: middle !important; width: 78% !important; } - -.uppy-DragDrop-container { display: flex !important; align-items: center !i= -mportant; justify-content: center !important; border-radius: 7px !important= -; background-color: rgb(255, 255, 255) !important; } - -.uppy-DragDrop-inner { margin: 0px !important; text-align: center !importan= -t; padding: 80px 20px !important; line-height: 1.4 !important; } - -.uppy-DragDrop-arrow { width: 60px !important; height: 60px !important; fil= -l: rgb(224, 224, 224) !important; margin-bottom: 17px !important; } - -.uppy-DragDrop-container.is-dragdrop-supported { border: 2px dashed rgb(173= -, 173, 173) !important; } - -.uppy-DragDrop-container.drag { border-color: rgb(147, 147, 147) !important= -; background-color: rgb(230, 230, 230) !important; } - -.uppy-DragDrop-container.drag .uppy-DragDrop-arrow { fill: rgb(147, 147, 14= -7) !important; } - -.uppy-DragDrop-input { width: 0.1px !important; height: 0.1px !important; o= -pacity: 0 !important; overflow: hidden !important; position: absolute !impo= -rtant; z-index: -1 !important; } - -.uppy-DragDrop-label { display: block !important; cursor: pointer !importan= -t; font-size: 1.15em !important; margin-bottom: 5px !important; } - -.uppy-DragDrop-note { font-size: 1em !important; color: rgb(173, 173, 173) = -!important; } - -.uppy-DragDrop-dragText { color: rgb(34, 117, 215) !important; } - -.uppy-Provider-auth, .uppy-Provider-error, .uppy-Provider-loading { display= -: flex !important; align-items: center !important; justify-content: center = -!important; flex-flow: column wrap !important; height: 100% !important; } - -.uppy-Provider-authIcon .UppyIcon { width: 100px !important; height: 75px != -important; color: rgba(82, 82, 82, 0.3) !important; margin-bottom: 15px !im= -portant; } - -.uppy-Provider-authTitle { font-size: 20px !important; line-height: 1.4 !im= -portant; font-weight: 300 !important; margin-bottom: 30px !important; paddi= -ng: 0px 15px !important; max-width: 500px !important; text-align: center !i= -mportant; } - -.uppy-Provider-breadcrumbs { flex: 1 1 0% !important; color: rgb(83, 83, 83= -) !important; font-size: 12px !important; list-style-type: none !important;= - padding: 0px !important; margin: 0px !important; } - -.uppy-Provider-breadcrumbsIcon { display: inline !important; color: rgb(83,= - 83, 83) !important; vertical-align: middle !important; margin-right: 8px != -important; } - -.uppy-Provider-breadcrumbsIcon .UppyIcon { width: 13px !important; height: = -13px !important; } - -.uppy-Provider-breadcrumbs button { background: none !important; appearance= -: none !important; font-family: inherit !important; line-height: 1 !importa= -nt; padding: 0px !important; margin: 0px !important; border: 0px !important= -; color: inherit !important; cursor: pointer !important; font-size: 14px !i= -mportant; } - -.uppy-Provider-breadcrumbs button:hover { text-decoration: underline !impor= -tant; } - -.uppy-Provider-breadcrumbs button:focus { outline: rgb(145, 145, 145) dotte= -d 1px !important; } - -.uppy-Provider-breadcrumbs li { display: inline-block !important; margin: 0= -px !important; } - -.uppy-Provider-breadcrumbs li ~ li::before { content: "/" !important; paddi= -ng: 0px 7px !important; } - -.uppy-ProviderBrowser { display: flex !important; flex-direction: column !i= -mportant; font-size: 13px !important; font-weight: 400 !important; height: = -100% !important; } - -.uppy-ProviderBrowser-user { margin: 16px 0px !important; } - -.uppy-ProviderBrowser-header { z-index: 1001 !important; border-bottom: 1px= - solid rgb(235, 235, 235) !important; position: relative !important; } - -.uppy-ProviderBrowser-headerBar { height: 40px !important; line-height: 40p= -x !important; display: flex !important; align-items: center !important; pad= -ding: 0px 16px !important; background-color: rgb(249, 249, 249) !important;= - z-index: 1001 !important; color: rgb(96, 96, 96) !important; } - -.uppy-ProviderBrowser-headerBar--simple { text-align: center !important; di= -splay: block !important; } - -.uppy-ProviderBrowser-search { width: 100% !important; background-color: rg= -b(255, 255, 255) !important; position: relative !important; height: 30px !i= -mportant; margin-top: 15px !important; margin-bottom: 5px !important; } - -.uppy-ProviderBrowser-searchInput { width: 100% !important; height: 30px !i= -mportant; background-color: transparent !important; outline: 0px !important= -; font-family: sans-serif !important; font-size: 14px !important; line-heig= -ht: 30px !important; border: 0px !important; padding: 0px 16px 0px 43px !im= -portant; z-index: 1001 !important; } - -.uppy-ProviderBrowser-searchIcon { width: 16px !important; height: 16px !im= -portant; left: 16px !important; } - -.uppy-ProviderBrowser-searchClose, .uppy-ProviderBrowser-searchIcon { posit= -ion: absolute !important; top: 7px !important; z-index: 1002 !important; co= -lor: rgba(148, 148, 148, 0.6) !important; } - -.uppy-ProviderBrowser-searchClose { width: 12px !important; height: 12px !i= -mportant; right: 16px !important; cursor: pointer !important; } - -.uppy-ProviderBrowser-userLogout { background: none !important; appearance:= - none !important; font-family: inherit !important; font-size: inherit !impo= -rtant; line-height: 1 !important; padding: 0px !important; margin: 0px !imp= -ortant; border: 0px !important; color: inherit !important; cursor: pointer = -!important; } - -.uppy-ProviderBrowser-userLogout:hover { text-decoration: underline !import= -ant; } - -.uppy-ProviderBrowser-body { flex: 1 1 0% !important; position: relative !i= -mportant; } - -.uppy-ProviderBrowser-list { flex: 1 1 0% !important; display: block !impor= -tant; width: 100% !important; height: 100% !important; background-color: rg= -b(255, 255, 255) !important; border-spacing: 0px !important; overflow: hidd= -en auto !important; position: absolute !important; inset: 0px !important; l= -ist-style: none !important; margin: 0px !important; padding: 0px !important= -; } - -.uppy-ProviderBrowserItem-inner { background: none !important; appearance: = -none !important; font-family: inherit !important; font-size: inherit !impor= -tant; line-height: 1 !important; padding: 0px !important; margin: 0px !impo= -rtant; border: 0px !important; color: inherit !important; cursor: pointer != -important; font-weight: 600 !important; } - -.uppy-ProviderBrowser-viewType--list { background-color: rgb(255, 255, 255)= - !important; } - -.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem { padding: 1= -0px 15px !important; } - -.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner { max-= -width: 80% !important; overflow-wrap: break-word !important; text-align: le= -ft !important; line-height: 1.4 !important; } - -.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img { = -vertical-align: text-top !important; margin-right: 3px !important; } - -.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox lab= -el::before { border-color: rgba(82, 82, 82, 0.4) !important; } - -.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox inp= -ut:checked + label::before { border-color: rgb(34, 117, 215) !important; } - -.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowser-list { display: = -flex !important; flex-flow: row wrap !important; justify-content: space-bet= -ween !important; padding: 6px !important; } - -.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowser-list::after { co= -ntent: "" !important; flex: 1 1 auto !important; } - -.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem { display: i= -nline-block !important; width: 50% !important; position: relative !importan= -t; padding: 8px !important; } - -.uppy-ProviderBrowser-viewType--grid .uppy-Dashboard--wide .uppy-ProviderBr= -owserItem { width: 33.3333% !important; padding: 12px !important; } - -.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem--selected .u= -ppy-ProviderBrowserItem-inner { box-shadow: rgba(27, 93, 171, 0.9) 0px 0px = -0px 3px !important; } - -.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-inner { widt= -h: 100% !important; height: 100% !important; border-radius: 4px !important;= - overflow: hidden !important; border: 2px solid transparent !important; } - -.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem img { width:= - 100% !important; height: 100% !important; vertical-align: middle !importan= -t; } - -.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox { d= -isplay: none !important; } - -.uppy-Dashboard--wide .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBr= -owserItem { width: 25% !important; } - -.uppy-ProviderBrowserItem-checkbox input { opacity: 0 !important; } - -.uppy-ProviderBrowserItem-checkbox { position: relative !important; display= -: inline-block !important; top: -3px !important; margin-right: 20px !import= -ant; } - -.uppy-ProviderBrowserItem-checkbox label { display: block !important; } - -.uppy-ProviderBrowserItem-checkbox label::after, .uppy-ProviderBrowserItem-= -checkbox label::before { position: absolute !important; cursor: pointer !im= -portant; } - -.uppy-ProviderBrowserItem-checkbox label::before { content: "" !important; = -display: inline-block !important; height: 18px !important; width: 18px !imp= -ortant; top: 2px !important; border: 1px solid rgb(34, 117, 215) !important= -; background-color: rgb(255, 255, 255) !important; border-radius: 2px !impo= -rtant; } - -.uppy-ProviderBrowserItem-checkbox label::after { content: "" !important; d= -isplay: inline-block !important; height: 5px !important; width: 8px !import= -ant; left: 5px !important; top: 8px !important; border-left: 2px solid rgb(= -255, 255, 255) !important; border-bottom: 2px solid rgb(255, 255, 255) !imp= -ortant; transform: rotate(-45deg) !important; } - -.uppy-ProviderBrowserItem-checkbox input + label::after { content: none !im= -portant; } - -.uppy-ProviderBrowserItem-checkbox input:checked + label::after { content: = -"" !important; } - -.uppy-ProviderBrowserItem-checkbox input:checked + label::before { backgrou= -nd-color: rgb(34, 117, 215) !important; } - -.uppy-ProviderBrowserItem-checkbox input:focus + label::before { outline: r= -gb(59, 153, 252) auto 5px !important; } - -.uppy-ProviderBrowser-doneBtn { position: absolute !important; bottom: 16px= - !important; right: 16px !important; z-index: 1002 !important; width: 50px = -!important; height: 50px !important; } - -.uppy-Dashboard--wide .uppy-ProviderBrowser-doneBtn { width: 60px !importan= -t; height: 60px !important; } - -.uppy-ProviderBrowser-doneBtn .UppyIcon { width: 45% !important; height: 45= -% !important; } - -.uppy-Url { width: 100% !important; height: 100% !important; display: flex = -!important; flex-direction: column !important; justify-content: center !imp= -ortant; align-items: center !important; } - -.uppy-Url-input { width: 90% !important; max-width: 650px !important; margi= -n-bottom: 15px !important; } - -.uppy-Dashboard--wide .uppy-Url-input { margin-bottom: 30px !important; } - -.uppy-Url-importButton { padding: 13px 25px !important; } - -.uppy-Dashboard--wide .uppy-Url-importButton { padding: 13px 35px !importan= -t; } - -.uppy-ProgressBar { position: absolute !important; top: 0px !important; lef= -t: 0px !important; width: 100% !important; height: 3px !important; z-index:= - 10000 !important; transition: height 0.2s ease 0s !important; } - -.uppy-ProgressBar[aria-hidden=3D"true"] { height: 0px !important; } - -.uppy-ProgressBar-inner { background-color: rgb(34, 117, 215) !important; b= -ox-shadow: rgba(34, 117, 215, 0.7) 0px 0px 10px !important; height: 100% !i= -mportant; width: 0px !important; transition: width 0.4s ease 0s !important;= - } - -.uppy-ProgressBar-percentage { display: none !important; text-align: center= - !important; position: absolute !important; top: 50% !important; left: 50% = -!important; transform: translate(-50%, -50%) !important; color: rgb(255, 25= -5, 255) !important; } - -.uppy-StatusBar { display: flex !important; position: relative !important; = -height: 35px !important; line-height: 35px !important; font-size: 12px !imp= -ortant; font-weight: 400 !important; color: rgb(255, 255, 255) !important; = -background-color: rgb(26, 26, 26) !important; z-index: 1001 !important; tra= -nsition: height 0.2s ease 0s !important; } - -.uppy-Dashboard--wide .uppy-StatusBar { height: 45px !important; font-size:= - 14px !important; } - -.uppy-StatusBar[aria-hidden=3D"true"] { overflow-y: hidden !important; heig= -ht: 0px !important; } - -.uppy-StatusBar.is-complete .uppy-StatusBar-progress { background-color: rg= -b(27, 178, 64) !important; } - -.uppy-StatusBar.is-error .uppy-StatusBar-progress { background-color: rgb(2= -11, 47, 47) !important; } - -.uppy-StatusBar.is-complete .uppy-StatusBar-content { width: 100% !importan= -t; text-align: center !important; padding-left: 0px !important; justify-con= -tent: center !important; } - -.uppy-StatusBar.is-waiting:not([aria-hidden=3D"true"]) { background-color: = -rgb(255, 255, 255) !important; height: 65px !important; border-top: 1px sol= -id rgba(148, 148, 148, 0.3) !important; } - -.uppy-StatusBar-progress { background-color: rgb(34, 117, 215) !important; = -height: 100% !important; position: absolute !important; z-index: 1001 !impo= -rtant; transition: background-color 0s ease 0s, width 0.3s ease-out 0s !imp= -ortant; } - -.uppy-StatusBar-progress.is-indeterminate { animation: 1s linear 0s infinit= -e normal none running b; background-size: 64px 64px !important; background-= -image: linear-gradient(45deg, rgb(27, 93, 171) 25%, transparent 0px, transp= -arent 50%, rgb(27, 93, 171) 0px, rgb(27, 93, 171) 75%, transparent 0px, tra= -nsparent) !important; } - -.uppy-StatusBar.is-waiting .uppy-StatusBar-progress { display: none !import= -ant; } - -@keyframes b {=20 - 0% { background-position: 64px 0px; } - 100% { background-position: 0px 0px; } -} - -.uppy-StatusBar-content { display: flex !important; align-items: center !im= -portant; position: relative !important; z-index: 1002 !important; padding-l= -eft: 15px !important; white-space: nowrap !important; text-overflow: ellips= -is !important; color: rgb(255, 255, 255) !important; height: 100% !importan= -t; } - -.uppy-StatusBar-status { line-height: 1.35 !important; font-weight: 400 !im= -portant; letter-spacing: 0.5px !important; } - -.uppy-StatusBar-statusPrimary { font-size: 13px !important; } - -.uppy-StatusBar-statusSecondary { font-size: 11px !important; display: none= - !important; } - -.uppy-StatusBar--detailedProgress .uppy-StatusBar-statusSecondary { display= -: inline !important; } - -.uppy-StatusBar-statusIndicator { color: rgb(255, 255, 255) !important; mar= -gin-right: 15px !important; cursor: pointer !important; } - -.uppy-StatusBar.is-complete .uppy-StatusBar-statusIndicator { width: 15px != -important; margin-right: 7px !important; } - -.uppy-StatusBar-actions { display: flex !important; align-items: center !im= -portant; position: absolute !important; top: 0px !important; bottom: 0px !i= -mportant; right: 15px !important; z-index: 1004 !important; } - -.uppy-StatusBar.is-waiting .uppy-StatusBar-actions { width: 100% !important= -; position: static !important; padding: 0px 15px !important; } - -.uppy-StatusBar-actionBtn { font-size: 12px !important; padding: 6px !impor= -tant; border-radius: 4px !important; } - -.uppy-Dashboard--wide .uppy-StatusBar-actionBtn { padding: 7px 10px !import= -ant; } - -.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload { font-size: 1= -4px !important; width: 100% !important; padding: 15px 10px !important; } - -.uppy-Dashboard--wide .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn-= --upload { padding: 13px 28px !important; width: auto !important; } - -.uppy-StatusBar-actionBtn:not(:last-child) { margin-right: 10px !important;= - } - -.uppy-StatusBar:not(.is-waiting) .uppy-StatusBar-actionBtn--upload { backgr= -ound-color: transparent !important; border: 1px solid rgb(255, 255, 255) !i= -mportant; color: rgb(255, 255, 255) !important; } - -.uppy-StatusBar-actionBtn--retry { background-color: rgb(255, 255, 255) !im= -portant; color: rgb(211, 47, 47) !important; border: 1px solid transparent = -!important; } - -.uppy-StatusBar-actionBtn--cancel { background-color: transparent !importan= -t; border: 1px solid rgb(255, 255, 255) !important; color: rgb(255, 255, 25= -5) !important; } - -.uppy-StatusBar-details { line-height: 12px !important; width: 13px !import= -ant; height: 13px !important; display: inline-block !important; vertical-al= -ign: middle !important; color: rgb(211, 47, 47) !important; background-colo= -r: rgb(255, 255, 255) !important; border-radius: 50% !important; position: = -relative !important; top: -1px !important; left: 6px !important; font-size:= - 10px !important; text-align: center !important; } - -.uppy-StatusBar-details::after { line-height: 1.3 !important; overflow-wrap= -: break-word !important; } - -.uppy-Webcam-container { width: 100% !important; height: 100% !important; d= -isplay: flex !important; justify-content: center !important; align-items: c= -enter !important; flex-direction: column !important; } - -.uppy-Webcam-videoContainer { width: 100% !important; flex: 1 1 0% !importa= -nt; overflow: hidden !important; background-color: rgb(0, 0, 0) !important;= - } - -.uppy-Webcam-video { width: 100% !important; height: 100% !important; max-w= -idth: 100% !important; max-height: 100% !important; } - -.uppy-Webcam-video--mirrored { transform: scaleX(-1) !important; } - -.uppy-Webcam-buttonContainer { width: 100% !important; height: 75px !import= -ant; border-top: 1px solid rgba(148, 148, 148, 0.2) !important; display: fl= -ex !important; align-items: center !important; justify-content: center !imp= -ortant; padding: 0px 20px !important; } - -.uppy-Webcam-button { width: 45px !important; height: 45px !important; bord= -er-radius: 50% !important; background-color: rgb(211, 47, 47) !important; c= -olor: rgb(255, 255, 255) !important; cursor: pointer !important; transition= -: all 0.3s ease 0s !important; } - -.uppy-Dashboard--wide .uppy-Webcam-button { width: 60px !important; height:= - 60px !important; } - -.uppy-Webcam-button:hover { background-color: rgb(171, 36, 36) !important; = -} - -.uppy-Webcam-button .UppyIcon { width: 30px !important; height: 30px !impor= -tant; } - -.uppy-Webcam-button--picture { margin-right: 12px !important; } - -.uppy-Webcam-permissons { padding: 15px !important; display: flex !importan= -t; align-items: center !important; justify-content: center !important; flex= --flow: column wrap !important; height: 100% !important; } - -.uppy-Webcam-Title { font-size: 22px !important; line-height: 1.35 !importa= -nt; font-weight: 300 !important; margin: 0px 0px 15px !important; padding: = -0px 15px !important; max-width: 500px !important; text-align: center !impor= -tant; } - -.uppy-Webcam-permissons p { text-align: center !important; line-height: 1.4= -5 !important; color: rgb(147, 147, 147) !important; margin: 0px !important;= - } - -.uppy-Webcam-permissonsIcon .UppyIcon { width: 100px !important; height: 75= -px !important; color: rgb(185, 185, 185) !important; margin-bottom: 30px !i= -mportant; } - -@font-face { font-family: FontAwesome; src: url("/assets/font-awesome/fonta= -wesome-webfont-38af9ab8e8340ebba0182e7f6c9ec81038a1fcc162de3393a51bbb9a4153= -259d.woff2?v=3D4.7.0") format("woff2"), url("/assets/font-awesome/fontaweso= -me-webfont-a59f843b55ac195f9f654415c4b63d7936df8d3b8ff70e6a5798007bbcc0733a= -.woff?v=3D4.7.0") format("woff"), url("/assets/font-awesome/fontawesome-web= -font-bfd12acc5442a32d63b289c2466d1ae5d13bb2c4be76703b28e25ade7f602532.ttf?v= -=3D4.7.0") format("truetype"); font-weight: normal; font-style: normal; } - -.fa { display: inline-block; font-style: normal; font-variant: normal; font= --kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; f= -ont-variation-settings: normal; font-weight: normal; font-stretch: normal; = -line-height: 1; font-family: FontAwesome; font-size: inherit; text-renderin= -g: auto; -webkit-font-smoothing: antialiased; } - -.fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -15%; } - -.fa-2x { font-size: 2em; } - -.fa-3x { font-size: 3em; } - -.fa-4x { font-size: 4em; } - -.fa-5x { font-size: 5em; } - -.fa-fw { width: 1.28571em; text-align: center; } - -.fa-ul { padding-left: 0px; margin-left: 2.14286em; list-style-type: none; = -} - -.fa-ul > li { position: relative; } - -.fa-li { position: absolute; left: -2.14286em; width: 2.14286em; top: 0.142= -857em; text-align: center; } - -.fa-li.fa-lg { left: -1.85714em; } - -.fa-border { padding: 0.2em 0.25em 0.15em; border: 0.08em solid rgb(238, 23= -8, 238); border-radius: 0.1em; } - -.fa-pull-left { float: left; } - -.fa-pull-right { float: right; } - -.fa.fa-pull-left { margin-right: 0.3em; } - -.fa.fa-pull-right { margin-left: 0.3em; } - -.pull-right { float: right; } - -.pull-left { float: left; } - -.fa.pull-left { margin-right: 0.3em; } - -.fa.pull-right { margin-left: 0.3em; } - -.fa-spin { animation: 2s linear 0s infinite normal none running fa-spin; } - -.fa-pulse { animation: 1s steps(8) 0s infinite normal none running fa-spin;= - } - -@-webkit-keyframes fa-spin {=20 - 0% { transform: rotate(0deg); } - 100% { transform: rotate(359deg); } -} - -@keyframes fa-spin {=20 - 0% { transform: rotate(0deg); } - 100% { transform: rotate(359deg); } -} - -.fa-rotate-90 { transform: rotate(90deg); } - -.fa-rotate-180 { transform: rotate(180deg); } - -.fa-rotate-270 { transform: rotate(270deg); } - -.fa-flip-horizontal { transform: scale(-1, 1); } - -.fa-flip-vertical { transform: scale(1, -1); } - -:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-= -flip-horizontal, :root .fa-flip-vertical { filter: none; } - -.fa-stack { position: relative; display: inline-block; width: 2em; height: = -2em; line-height: 2em; vertical-align: middle; } - -.fa-stack-1x, .fa-stack-2x { position: absolute; left: 0px; width: 100%; te= -xt-align: center; } - -.fa-stack-1x { line-height: inherit; } - -.fa-stack-2x { font-size: 2em; } - -.fa-inverse { color: rgb(255, 255, 255); } - -.fa-glass::before { content: "=EF=80=80"; } - -.fa-music::before { content: "=EF=80=81"; } - -.fa-search::before { content: "=EF=80=82"; } - -.fa-envelope-o::before { content: "=EF=80=83"; } - -.fa-heart::before { content: "=EF=80=84"; } - -.fa-star::before { content: "=EF=80=85"; } - -.fa-star-o::before { content: "=EF=80=86"; } - -.fa-user::before { content: "=EF=80=87"; } - -.fa-film::before { content: "=EF=80=88"; } - -.fa-th-large::before { content: "=EF=80=89"; } - -.fa-th::before { content: "=EF=80=8A"; } - -.fa-th-list::before { content: "=EF=80=8B"; } - -.fa-check::before { content: "=EF=80=8C"; } - -.fa-remove::before, .fa-close::before, .fa-times::before { content: "=EF=80= -=8D"; } - -.fa-search-plus::before { content: "=EF=80=8E"; } - -.fa-search-minus::before { content: "=EF=80=90"; } - -.fa-power-off::before { content: "=EF=80=91"; } - -.fa-signal::before { content: "=EF=80=92"; } - -.fa-gear::before, .fa-cog::before { content: "=EF=80=93"; } - -.fa-trash-o::before { content: "=EF=80=94"; } - -.fa-home::before { content: "=EF=80=95"; } - -.fa-file-o::before { content: "=EF=80=96"; } - -.fa-clock-o::before { content: "=EF=80=97"; } - -.fa-road::before { content: "=EF=80=98"; } - -.fa-download::before { content: "=EF=80=99"; } - -.fa-arrow-circle-o-down::before { content: "=EF=80=9A"; } - -.fa-arrow-circle-o-up::before { content: "=EF=80=9B"; } - -.fa-inbox::before { content: "=EF=80=9C"; } - -.fa-play-circle-o::before { content: "=EF=80=9D"; } - -.fa-rotate-right::before, .fa-repeat::before { content: "=EF=80=9E"; } - -.fa-refresh::before { content: "=EF=80=A1"; } - -.fa-list-alt::before { content: "=EF=80=A2"; } - -.fa-lock::before { content: "=EF=80=A3"; } - -.fa-flag::before { content: "=EF=80=A4"; } - -.fa-headphones::before { content: "=EF=80=A5"; } - -.fa-volume-off::before { content: "=EF=80=A6"; } - -.fa-volume-down::before { content: "=EF=80=A7"; } - -.fa-volume-up::before { content: "=EF=80=A8"; } - -.fa-qrcode::before { content: "=EF=80=A9"; } - -.fa-barcode::before { content: "=EF=80=AA"; } - -.fa-tag::before { content: "=EF=80=AB"; } - -.fa-tags::before { content: "=EF=80=AC"; } - -.fa-book::before { content: "=EF=80=AD"; } - -.fa-bookmark::before { content: "=EF=80=AE"; } - -.fa-print::before { content: "=EF=80=AF"; } - -.fa-camera::before { content: "=EF=80=B0"; } - -.fa-font::before { content: "=EF=80=B1"; } - -.fa-bold::before { content: "=EF=80=B2"; } - -.fa-italic::before { content: "=EF=80=B3"; } - -.fa-text-height::before { content: "=EF=80=B4"; } - -.fa-text-width::before { content: "=EF=80=B5"; } - -.fa-align-left::before { content: "=EF=80=B6"; } - -.fa-align-center::before { content: "=EF=80=B7"; } - -.fa-align-right::before { content: "=EF=80=B8"; } - -.fa-align-justify::before { content: "=EF=80=B9"; } - -.fa-list::before { content: "=EF=80=BA"; } - -.fa-dedent::before, .fa-outdent::before { content: "=EF=80=BB"; } - -.fa-indent::before { content: "=EF=80=BC"; } - -.fa-video-camera::before { content: "=EF=80=BD"; } - -.fa-photo::before, .fa-image::before, .fa-picture-o::before { content: "=EF= -=80=BE"; } - -.fa-pencil::before { content: "=EF=81=80"; } - -.fa-map-marker::before { content: "=EF=81=81"; } - -.fa-adjust::before { content: "=EF=81=82"; } - -.fa-tint::before { content: "=EF=81=83"; } - -.fa-edit::before, .fa-pencil-square-o::before { content: "=EF=81=84"; } - -.fa-share-square-o::before { content: "=EF=81=85"; } - -.fa-check-square-o::before { content: "=EF=81=86"; } - -.fa-arrows::before { content: "=EF=81=87"; } - -.fa-step-backward::before { content: "=EF=81=88"; } - -.fa-fast-backward::before { content: "=EF=81=89"; } - -.fa-backward::before { content: "=EF=81=8A"; } - -.fa-play::before { content: "=EF=81=8B"; } - -.fa-pause::before { content: "=EF=81=8C"; } - -.fa-stop::before { content: "=EF=81=8D"; } - -.fa-forward::before { content: "=EF=81=8E"; } - -.fa-fast-forward::before { content: "=EF=81=90"; } - -.fa-step-forward::before { content: "=EF=81=91"; } - -.fa-eject::before { content: "=EF=81=92"; } - -.fa-chevron-left::before { content: "=EF=81=93"; } - -.fa-chevron-right::before { content: "=EF=81=94"; } - -.fa-plus-circle::before { content: "=EF=81=95"; } - -.fa-minus-circle::before { content: "=EF=81=96"; } - -.fa-times-circle::before { content: "=EF=81=97"; } - -.fa-check-circle::before { content: "=EF=81=98"; } - -.fa-question-circle::before { content: "=EF=81=99"; } - -.fa-info-circle::before { content: "=EF=81=9A"; } - -.fa-crosshairs::before { content: "=EF=81=9B"; } - -.fa-times-circle-o::before { content: "=EF=81=9C"; } - -.fa-check-circle-o::before { content: "=EF=81=9D"; } - -.fa-ban::before { content: "=EF=81=9E"; } - -.fa-arrow-left::before { content: "=EF=81=A0"; } - -.fa-arrow-right::before { content: "=EF=81=A1"; } - -.fa-arrow-up::before { content: "=EF=81=A2"; } - -.fa-arrow-down::before { content: "=EF=81=A3"; } - -.fa-mail-forward::before, .fa-share::before { content: "=EF=81=A4"; } - -.fa-expand::before { content: "=EF=81=A5"; } - -.fa-compress::before { content: "=EF=81=A6"; } - -.fa-plus::before { content: "=EF=81=A7"; } - -.fa-minus::before { content: "=EF=81=A8"; } - -.fa-asterisk::before { content: "=EF=81=A9"; } - -.fa-exclamation-circle::before { content: "=EF=81=AA"; } - -.fa-gift::before { content: "=EF=81=AB"; } - -.fa-leaf::before { content: "=EF=81=AC"; } - -.fa-fire::before { content: "=EF=81=AD"; } - -.fa-eye::before { content: "=EF=81=AE"; } - -.fa-eye-slash::before { content: "=EF=81=B0"; } - -.fa-warning::before, .fa-exclamation-triangle::before { content: "=EF=81=B1= -"; } - -.fa-plane::before { content: "=EF=81=B2"; } - -.fa-calendar::before { content: "=EF=81=B3"; } - -.fa-random::before { content: "=EF=81=B4"; } - -.fa-comment::before { content: "=EF=81=B5"; } - -.fa-magnet::before { content: "=EF=81=B6"; } - -.fa-chevron-up::before { content: "=EF=81=B7"; } - -.fa-chevron-down::before { content: "=EF=81=B8"; } - -.fa-retweet::before { content: "=EF=81=B9"; } - -.fa-shopping-cart::before { content: "=EF=81=BA"; } - -.fa-folder::before { content: "=EF=81=BB"; } - -.fa-folder-open::before { content: "=EF=81=BC"; } - -.fa-arrows-v::before { content: "=EF=81=BD"; } - -.fa-arrows-h::before { content: "=EF=81=BE"; } - -.fa-bar-chart-o::before, .fa-bar-chart::before { content: "=EF=82=80"; } - -.fa-twitter-square::before { content: "=EF=82=81"; } - -.fa-facebook-square::before { content: "=EF=82=82"; } - -.fa-camera-retro::before { content: "=EF=82=83"; } - -.fa-key::before { content: "=EF=82=84"; } - -.fa-gears::before, .fa-cogs::before { content: "=EF=82=85"; } - -.fa-comments::before { content: "=EF=82=86"; } - -.fa-thumbs-o-up::before { content: "=EF=82=87"; } - -.fa-thumbs-o-down::before { content: "=EF=82=88"; } - -.fa-star-half::before { content: "=EF=82=89"; } - -.fa-heart-o::before { content: "=EF=82=8A"; } - -.fa-sign-out::before { content: "=EF=82=8B"; } - -.fa-linkedin-square::before { content: "=EF=82=8C"; } - -.fa-thumb-tack::before { content: "=EF=82=8D"; } - -.fa-external-link::before { content: "=EF=82=8E"; } - -.fa-sign-in::before { content: "=EF=82=90"; } - -.fa-trophy::before { content: "=EF=82=91"; } - -.fa-github-square::before { content: "=EF=82=92"; } - -.fa-upload::before { content: "=EF=82=93"; } - -.fa-lemon-o::before { content: "=EF=82=94"; } - -.fa-phone::before { content: "=EF=82=95"; } - -.fa-square-o::before { content: "=EF=82=96"; } - -.fa-bookmark-o::before { content: "=EF=82=97"; } - -.fa-phone-square::before { content: "=EF=82=98"; } - -.fa-twitter::before { content: "=EF=82=99"; } - -.fa-facebook-f::before, .fa-facebook::before { content: "=EF=82=9A"; } - -.fa-github::before { content: "=EF=82=9B"; } - -.fa-unlock::before { content: "=EF=82=9C"; } - -.fa-credit-card::before { content: "=EF=82=9D"; } - -.fa-feed::before, .fa-rss::before { content: "=EF=82=9E"; } - -.fa-hdd-o::before { content: "=EF=82=A0"; } - -.fa-bullhorn::before { content: "=EF=82=A1"; } - -.fa-bell::before { content: "=EF=83=B3"; } - -.fa-certificate::before { content: "=EF=82=A3"; } - -.fa-hand-o-right::before { content: "=EF=82=A4"; } - -.fa-hand-o-left::before { content: "=EF=82=A5"; } - -.fa-hand-o-up::before { content: "=EF=82=A6"; } - -.fa-hand-o-down::before { content: "=EF=82=A7"; } - -.fa-arrow-circle-left::before { content: "=EF=82=A8"; } - -.fa-arrow-circle-right::before { content: "=EF=82=A9"; } - -.fa-arrow-circle-up::before { content: "=EF=82=AA"; } - -.fa-arrow-circle-down::before { content: "=EF=82=AB"; } - -.fa-globe::before { content: "=EF=82=AC"; } - -.fa-wrench::before { content: "=EF=82=AD"; } - -.fa-tasks::before { content: "=EF=82=AE"; } - -.fa-filter::before { content: "=EF=82=B0"; } - -.fa-briefcase::before { content: "=EF=82=B1"; } - -.fa-arrows-alt::before { content: "=EF=82=B2"; } - -.fa-group::before, .fa-users::before { content: "=EF=83=80"; } - -.fa-chain::before, .fa-link::before { content: "=EF=83=81"; } - -.fa-cloud::before { content: "=EF=83=82"; } - -.fa-flask::before { content: "=EF=83=83"; } - -.fa-cut::before, .fa-scissors::before { content: "=EF=83=84"; } - -.fa-copy::before, .fa-files-o::before { content: "=EF=83=85"; } - -.fa-paperclip::before { content: "=EF=83=86"; } - -.fa-save::before, .fa-floppy-o::before { content: "=EF=83=87"; } - -.fa-square::before { content: "=EF=83=88"; } - -.fa-navicon::before, .fa-reorder::before, .fa-bars::before { content: "=EF= -=83=89"; } - -.fa-list-ul::before { content: "=EF=83=8A"; } - -.fa-list-ol::before { content: "=EF=83=8B"; } - -.fa-strikethrough::before { content: "=EF=83=8C"; } - -.fa-underline::before { content: "=EF=83=8D"; } - -.fa-table::before { content: "=EF=83=8E"; } - -.fa-magic::before { content: "=EF=83=90"; } - -.fa-truck::before { content: "=EF=83=91"; } - -.fa-pinterest::before { content: "=EF=83=92"; } - -.fa-pinterest-square::before { content: "=EF=83=93"; } - -.fa-google-plus-square::before { content: "=EF=83=94"; } - -.fa-google-plus::before { content: "=EF=83=95"; } - -.fa-money::before { content: "=EF=83=96"; } - -.fa-caret-down::before { content: "=EF=83=97"; } - -.fa-caret-up::before { content: "=EF=83=98"; } - -.fa-caret-left::before { content: "=EF=83=99"; } - -.fa-caret-right::before { content: "=EF=83=9A"; } - -.fa-columns::before { content: "=EF=83=9B"; } - -.fa-unsorted::before, .fa-sort::before { content: "=EF=83=9C"; } - -.fa-sort-down::before, .fa-sort-desc::before { content: "=EF=83=9D"; } - -.fa-sort-up::before, .fa-sort-asc::before { content: "=EF=83=9E"; } - -.fa-envelope::before { content: "=EF=83=A0"; } - -.fa-linkedin::before { content: "=EF=83=A1"; } - -.fa-rotate-left::before, .fa-undo::before { content: "=EF=83=A2"; } - -.fa-legal::before, .fa-gavel::before { content: "=EF=83=A3"; } - -.fa-dashboard::before, .fa-tachometer::before { content: "=EF=83=A4"; } - -.fa-comment-o::before { content: "=EF=83=A5"; } - -.fa-comments-o::before { content: "=EF=83=A6"; } - -.fa-flash::before, .fa-bolt::before { content: "=EF=83=A7"; } - -.fa-sitemap::before { content: "=EF=83=A8"; } - -.fa-umbrella::before { content: "=EF=83=A9"; } - -.fa-paste::before, .fa-clipboard::before { content: "=EF=83=AA"; } - -.fa-lightbulb-o::before { content: "=EF=83=AB"; } - -.fa-exchange::before { content: "=EF=83=AC"; } - -.fa-cloud-download::before { content: "=EF=83=AD"; } - -.fa-cloud-upload::before { content: "=EF=83=AE"; } - -.fa-user-md::before { content: "=EF=83=B0"; } - -.fa-stethoscope::before { content: "=EF=83=B1"; } - -.fa-suitcase::before { content: "=EF=83=B2"; } - -.fa-bell-o::before { content: "=EF=82=A2"; } - -.fa-coffee::before { content: "=EF=83=B4"; } - -.fa-cutlery::before { content: "=EF=83=B5"; } - -.fa-file-text-o::before { content: "=EF=83=B6"; } - -.fa-building-o::before { content: "=EF=83=B7"; } - -.fa-hospital-o::before { content: "=EF=83=B8"; } - -.fa-ambulance::before { content: "=EF=83=B9"; } - -.fa-medkit::before { content: "=EF=83=BA"; } - -.fa-fighter-jet::before { content: "=EF=83=BB"; } - -.fa-beer::before { content: "=EF=83=BC"; } - -.fa-h-square::before { content: "=EF=83=BD"; } - -.fa-plus-square::before { content: "=EF=83=BE"; } - -.fa-angle-double-left::before { content: "=EF=84=80"; } - -.fa-angle-double-right::before { content: "=EF=84=81"; } - -.fa-angle-double-up::before { content: "=EF=84=82"; } - -.fa-angle-double-down::before { content: "=EF=84=83"; } - -.fa-angle-left::before { content: "=EF=84=84"; } - -.fa-angle-right::before { content: "=EF=84=85"; } - -.fa-angle-up::before { content: "=EF=84=86"; } - -.fa-angle-down::before { content: "=EF=84=87"; } - -.fa-desktop::before { content: "=EF=84=88"; } - -.fa-laptop::before { content: "=EF=84=89"; } - -.fa-tablet::before { content: "=EF=84=8A"; } - -.fa-mobile-phone::before, .fa-mobile::before { content: "=EF=84=8B"; } - -.fa-circle-o::before { content: "=EF=84=8C"; } - -.fa-quote-left::before { content: "=EF=84=8D"; } - -.fa-quote-right::before { content: "=EF=84=8E"; } - -.fa-spinner::before { content: "=EF=84=90"; } - -.fa-circle::before { content: "=EF=84=91"; } - -.fa-mail-reply::before, .fa-reply::before { content: "=EF=84=92"; } - -.fa-github-alt::before { content: "=EF=84=93"; } - -.fa-folder-o::before { content: "=EF=84=94"; } - -.fa-folder-open-o::before { content: "=EF=84=95"; } - -.fa-smile-o::before { content: "=EF=84=98"; } - -.fa-frown-o::before { content: "=EF=84=99"; } - -.fa-meh-o::before { content: "=EF=84=9A"; } - -.fa-gamepad::before { content: "=EF=84=9B"; } - -.fa-keyboard-o::before { content: "=EF=84=9C"; } - -.fa-flag-o::before { content: "=EF=84=9D"; } - -.fa-flag-checkered::before { content: "=EF=84=9E"; } - -.fa-terminal::before { content: "=EF=84=A0"; } - -.fa-code::before { content: "=EF=84=A1"; } - -.fa-mail-reply-all::before, .fa-reply-all::before { content: "=EF=84=A2"; } - -.fa-star-half-empty::before, .fa-star-half-full::before, .fa-star-half-o::b= -efore { content: "=EF=84=A3"; } - -.fa-location-arrow::before { content: "=EF=84=A4"; } - -.fa-crop::before { content: "=EF=84=A5"; } - -.fa-code-fork::before { content: "=EF=84=A6"; } - -.fa-unlink::before, .fa-chain-broken::before { content: "=EF=84=A7"; } - -.fa-question::before { content: "=EF=84=A8"; } - -.fa-info::before { content: "=EF=84=A9"; } - -.fa-exclamation::before { content: "=EF=84=AA"; } - -.fa-superscript::before { content: "=EF=84=AB"; } - -.fa-subscript::before { content: "=EF=84=AC"; } - -.fa-eraser::before { content: "=EF=84=AD"; } - -.fa-puzzle-piece::before { content: "=EF=84=AE"; } - -.fa-microphone::before { content: "=EF=84=B0"; } - -.fa-microphone-slash::before { content: "=EF=84=B1"; } - -.fa-shield::before { content: "=EF=84=B2"; } - -.fa-calendar-o::before { content: "=EF=84=B3"; } - -.fa-fire-extinguisher::before { content: "=EF=84=B4"; } - -.fa-rocket::before { content: "=EF=84=B5"; } - -.fa-maxcdn::before { content: "=EF=84=B6"; } - -.fa-chevron-circle-left::before { content: "=EF=84=B7"; } - -.fa-chevron-circle-right::before { content: "=EF=84=B8"; } - -.fa-chevron-circle-up::before { content: "=EF=84=B9"; } - -.fa-chevron-circle-down::before { content: "=EF=84=BA"; } - -.fa-html5::before { content: "=EF=84=BB"; } - -.fa-css3::before { content: "=EF=84=BC"; } - -.fa-anchor::before { content: "=EF=84=BD"; } - -.fa-unlock-alt::before { content: "=EF=84=BE"; } - -.fa-bullseye::before { content: "=EF=85=80"; } - -.fa-ellipsis-h::before { content: "=EF=85=81"; } - -.fa-ellipsis-v::before { content: "=EF=85=82"; } - -.fa-rss-square::before { content: "=EF=85=83"; } - -.fa-play-circle::before { content: "=EF=85=84"; } - -.fa-ticket::before { content: "=EF=85=85"; } - -.fa-minus-square::before { content: "=EF=85=86"; } - -.fa-minus-square-o::before { content: "=EF=85=87"; } - -.fa-level-up::before { content: "=EF=85=88"; } - -.fa-level-down::before { content: "=EF=85=89"; } - -.fa-check-square::before { content: "=EF=85=8A"; } - -.fa-pencil-square::before { content: "=EF=85=8B"; } - -.fa-external-link-square::before { content: "=EF=85=8C"; } - -.fa-share-square::before { content: "=EF=85=8D"; } - -.fa-compass::before { content: "=EF=85=8E"; } - -.fa-toggle-down::before, .fa-caret-square-o-down::before { content: "=EF=85= -=90"; } - -.fa-toggle-up::before, .fa-caret-square-o-up::before { content: "=EF=85=91"= -; } - -.fa-toggle-right::before, .fa-caret-square-o-right::before { content: "=EF= -=85=92"; } - -.fa-euro::before, .fa-eur::before { content: "=EF=85=93"; } - -.fa-gbp::before { content: "=EF=85=94"; } - -.fa-dollar::before, .fa-usd::before { content: "=EF=85=95"; } - -.fa-rupee::before, .fa-inr::before { content: "=EF=85=96"; } - -.fa-cny::before, .fa-rmb::before, .fa-yen::before, .fa-jpy::before { conten= -t: "=EF=85=97"; } - -.fa-ruble::before, .fa-rouble::before, .fa-rub::before { content: "=EF=85= -=98"; } - -.fa-won::before, .fa-krw::before { content: "=EF=85=99"; } - -.fa-bitcoin::before, .fa-btc::before { content: "=EF=85=9A"; } - -.fa-file::before { content: "=EF=85=9B"; } - -.fa-file-text::before { content: "=EF=85=9C"; } - -.fa-sort-alpha-asc::before { content: "=EF=85=9D"; } - -.fa-sort-alpha-desc::before { content: "=EF=85=9E"; } - -.fa-sort-amount-asc::before { content: "=EF=85=A0"; } - -.fa-sort-amount-desc::before { content: "=EF=85=A1"; } - -.fa-sort-numeric-asc::before { content: "=EF=85=A2"; } - -.fa-sort-numeric-desc::before { content: "=EF=85=A3"; } - -.fa-thumbs-up::before { content: "=EF=85=A4"; } - -.fa-thumbs-down::before { content: "=EF=85=A5"; } - -.fa-youtube-square::before { content: "=EF=85=A6"; } - -.fa-youtube::before { content: "=EF=85=A7"; } - -.fa-xing::before { content: "=EF=85=A8"; } - -.fa-xing-square::before { content: "=EF=85=A9"; } - -.fa-youtube-play::before { content: "=EF=85=AA"; } - -.fa-dropbox::before { content: "=EF=85=AB"; } - -.fa-stack-overflow::before { content: "=EF=85=AC"; } - -.fa-instagram::before { content: "=EF=85=AD"; } - -.fa-flickr::before { content: "=EF=85=AE"; } - -.fa-adn::before { content: "=EF=85=B0"; } - -.fa-bitbucket::before { content: "=EF=85=B1"; } - -.fa-bitbucket-square::before { content: "=EF=85=B2"; } - -.fa-tumblr::before { content: "=EF=85=B3"; } - -.fa-tumblr-square::before { content: "=EF=85=B4"; } - -.fa-long-arrow-down::before { content: "=EF=85=B5"; } - -.fa-long-arrow-up::before { content: "=EF=85=B6"; } - -.fa-long-arrow-left::before { content: "=EF=85=B7"; } - -.fa-long-arrow-right::before { content: "=EF=85=B8"; } - -.fa-apple::before { content: "=EF=85=B9"; } - -.fa-windows::before { content: "=EF=85=BA"; } - -.fa-android::before { content: "=EF=85=BB"; } - -.fa-linux::before { content: "=EF=85=BC"; } - -.fa-dribbble::before { content: "=EF=85=BD"; } - -.fa-skype::before { content: "=EF=85=BE"; } - -.fa-foursquare::before { content: "=EF=86=80"; } - -.fa-trello::before { content: "=EF=86=81"; } - -.fa-female::before { content: "=EF=86=82"; } - -.fa-male::before { content: "=EF=86=83"; } - -.fa-gittip::before, .fa-gratipay::before { content: "=EF=86=84"; } - -.fa-sun-o::before { content: "=EF=86=85"; } - -.fa-moon-o::before { content: "=EF=86=86"; } - -.fa-archive::before { content: "=EF=86=87"; } - -.fa-bug::before { content: "=EF=86=88"; } - -.fa-vk::before { content: "=EF=86=89"; } - -.fa-weibo::before { content: "=EF=86=8A"; } - -.fa-renren::before { content: "=EF=86=8B"; } - -.fa-pagelines::before { content: "=EF=86=8C"; } - -.fa-stack-exchange::before { content: "=EF=86=8D"; } - -.fa-arrow-circle-o-right::before { content: "=EF=86=8E"; } - -.fa-arrow-circle-o-left::before { content: "=EF=86=90"; } - -.fa-toggle-left::before, .fa-caret-square-o-left::before { content: "=EF=86= -=91"; } - -.fa-dot-circle-o::before { content: "=EF=86=92"; } - -.fa-wheelchair::before { content: "=EF=86=93"; } - -.fa-vimeo-square::before { content: "=EF=86=94"; } - -.fa-turkish-lira::before, .fa-try::before { content: "=EF=86=95"; } - -.fa-plus-square-o::before { content: "=EF=86=96"; } - -.fa-space-shuttle::before { content: "=EF=86=97"; } - -.fa-slack::before { content: "=EF=86=98"; } - -.fa-envelope-square::before { content: "=EF=86=99"; } - -.fa-wordpress::before { content: "=EF=86=9A"; } - -.fa-openid::before { content: "=EF=86=9B"; } - -.fa-institution::before, .fa-bank::before, .fa-university::before { content= -: "=EF=86=9C"; } - -.fa-mortar-board::before, .fa-graduation-cap::before { content: "=EF=86=9D"= -; } - -.fa-yahoo::before { content: "=EF=86=9E"; } - -.fa-google::before { content: "=EF=86=A0"; } - -.fa-reddit::before { content: "=EF=86=A1"; } - -.fa-reddit-square::before { content: "=EF=86=A2"; } - -.fa-stumbleupon-circle::before { content: "=EF=86=A3"; } - -.fa-stumbleupon::before { content: "=EF=86=A4"; } - -.fa-delicious::before { content: "=EF=86=A5"; } - -.fa-digg::before { content: "=EF=86=A6"; } - -.fa-pied-piper-pp::before { content: "=EF=86=A7"; } - -.fa-pied-piper-alt::before { content: "=EF=86=A8"; } - -.fa-drupal::before { content: "=EF=86=A9"; } - -.fa-joomla::before { content: "=EF=86=AA"; } - -.fa-language::before { content: "=EF=86=AB"; } - -.fa-fax::before { content: "=EF=86=AC"; } - -.fa-building::before { content: "=EF=86=AD"; } - -.fa-child::before { content: "=EF=86=AE"; } - -.fa-paw::before { content: "=EF=86=B0"; } - -.fa-spoon::before { content: "=EF=86=B1"; } - -.fa-cube::before { content: "=EF=86=B2"; } - -.fa-cubes::before { content: "=EF=86=B3"; } - -.fa-behance::before { content: "=EF=86=B4"; } - -.fa-behance-square::before { content: "=EF=86=B5"; } - -.fa-steam::before { content: "=EF=86=B6"; } - -.fa-steam-square::before { content: "=EF=86=B7"; } - -.fa-recycle::before { content: "=EF=86=B8"; } - -.fa-automobile::before, .fa-car::before { content: "=EF=86=B9"; } - -.fa-cab::before, .fa-taxi::before { content: "=EF=86=BA"; } - -.fa-tree::before { content: "=EF=86=BB"; } - -.fa-spotify::before { content: "=EF=86=BC"; } - -.fa-deviantart::before { content: "=EF=86=BD"; } - -.fa-soundcloud::before { content: "=EF=86=BE"; } - -.fa-database::before { content: "=EF=87=80"; } - -.fa-file-pdf-o::before { content: "=EF=87=81"; } - -.fa-file-word-o::before { content: "=EF=87=82"; } - -.fa-file-excel-o::before { content: "=EF=87=83"; } - -.fa-file-powerpoint-o::before { content: "=EF=87=84"; } - -.fa-file-photo-o::before, .fa-file-picture-o::before, .fa-file-image-o::bef= -ore { content: "=EF=87=85"; } - -.fa-file-zip-o::before, .fa-file-archive-o::before { content: "=EF=87=86"; = -} - -.fa-file-sound-o::before, .fa-file-audio-o::before { content: "=EF=87=87"; = -} - -.fa-file-movie-o::before, .fa-file-video-o::before { content: "=EF=87=88"; = -} - -.fa-file-code-o::before { content: "=EF=87=89"; } - -.fa-vine::before { content: "=EF=87=8A"; } - -.fa-codepen::before { content: "=EF=87=8B"; } - -.fa-jsfiddle::before { content: "=EF=87=8C"; } - -.fa-life-bouy::before, .fa-life-buoy::before, .fa-life-saver::before, .fa-s= -upport::before, .fa-life-ring::before { content: "=EF=87=8D"; } - -.fa-circle-o-notch::before { content: "=EF=87=8E"; } - -.fa-ra::before, .fa-resistance::before, .fa-rebel::before { content: "=EF= -=87=90"; } - -.fa-ge::before, .fa-empire::before { content: "=EF=87=91"; } - -.fa-git-square::before { content: "=EF=87=92"; } - -.fa-git::before { content: "=EF=87=93"; } - -.fa-y-combinator-square::before, .fa-yc-square::before, .fa-hacker-news::be= -fore { content: "=EF=87=94"; } - -.fa-tencent-weibo::before { content: "=EF=87=95"; } - -.fa-qq::before { content: "=EF=87=96"; } - -.fa-wechat::before, .fa-weixin::before { content: "=EF=87=97"; } - -.fa-send::before, .fa-paper-plane::before { content: "=EF=87=98"; } - -.fa-send-o::before, .fa-paper-plane-o::before { content: "=EF=87=99"; } - -.fa-history::before { content: "=EF=87=9A"; } - -.fa-circle-thin::before { content: "=EF=87=9B"; } - -.fa-header::before { content: "=EF=87=9C"; } - -.fa-paragraph::before { content: "=EF=87=9D"; } - -.fa-sliders::before { content: "=EF=87=9E"; } - -.fa-share-alt::before { content: "=EF=87=A0"; } - -.fa-share-alt-square::before { content: "=EF=87=A1"; } - -.fa-bomb::before { content: "=EF=87=A2"; } - -.fa-soccer-ball-o::before, .fa-futbol-o::before { content: "=EF=87=A3"; } - -.fa-tty::before { content: "=EF=87=A4"; } - -.fa-binoculars::before { content: "=EF=87=A5"; } - -.fa-plug::before { content: "=EF=87=A6"; } - -.fa-slideshare::before { content: "=EF=87=A7"; } - -.fa-twitch::before { content: "=EF=87=A8"; } - -.fa-yelp::before { content: "=EF=87=A9"; } - -.fa-newspaper-o::before { content: "=EF=87=AA"; } - -.fa-wifi::before { content: "=EF=87=AB"; } - -.fa-calculator::before { content: "=EF=87=AC"; } - -.fa-paypal::before { content: "=EF=87=AD"; } - -.fa-google-wallet::before { content: "=EF=87=AE"; } - -.fa-cc-visa::before { content: "=EF=87=B0"; } - -.fa-cc-mastercard::before { content: "=EF=87=B1"; } - -.fa-cc-discover::before { content: "=EF=87=B2"; } - -.fa-cc-amex::before { content: "=EF=87=B3"; } - -.fa-cc-paypal::before { content: "=EF=87=B4"; } - -.fa-cc-stripe::before { content: "=EF=87=B5"; } - -.fa-bell-slash::before { content: "=EF=87=B6"; } - -.fa-bell-slash-o::before { content: "=EF=87=B7"; } - -.fa-trash::before { content: "=EF=87=B8"; } - -.fa-copyright::before { content: "=EF=87=B9"; } - -.fa-at::before { content: "=EF=87=BA"; } - -.fa-eyedropper::before { content: "=EF=87=BB"; } - -.fa-paint-brush::before { content: "=EF=87=BC"; } - -.fa-birthday-cake::before { content: "=EF=87=BD"; } - -.fa-area-chart::before { content: "=EF=87=BE"; } - -.fa-pie-chart::before { content: "=EF=88=80"; } - -.fa-line-chart::before { content: "=EF=88=81"; } - -.fa-lastfm::before { content: "=EF=88=82"; } - -.fa-lastfm-square::before { content: "=EF=88=83"; } - -.fa-toggle-off::before { content: "=EF=88=84"; } - -.fa-toggle-on::before { content: "=EF=88=85"; } - -.fa-bicycle::before { content: "=EF=88=86"; } - -.fa-bus::before { content: "=EF=88=87"; } - -.fa-ioxhost::before { content: "=EF=88=88"; } - -.fa-angellist::before { content: "=EF=88=89"; } - -.fa-cc::before { content: "=EF=88=8A"; } - -.fa-shekel::before, .fa-sheqel::before, .fa-ils::before { content: "=EF=88= -=8B"; } - -.fa-meanpath::before { content: "=EF=88=8C"; } - -.fa-buysellads::before { content: "=EF=88=8D"; } - -.fa-connectdevelop::before { content: "=EF=88=8E"; } - -.fa-dashcube::before { content: "=EF=88=90"; } - -.fa-forumbee::before { content: "=EF=88=91"; } - -.fa-leanpub::before { content: "=EF=88=92"; } - -.fa-sellsy::before { content: "=EF=88=93"; } - -.fa-shirtsinbulk::before { content: "=EF=88=94"; } - -.fa-simplybuilt::before { content: "=EF=88=95"; } - -.fa-skyatlas::before { content: "=EF=88=96"; } - -.fa-cart-plus::before { content: "=EF=88=97"; } - -.fa-cart-arrow-down::before { content: "=EF=88=98"; } - -.fa-diamond::before { content: "=EF=88=99"; } - -.fa-ship::before { content: "=EF=88=9A"; } - -.fa-user-secret::before { content: "=EF=88=9B"; } - -.fa-motorcycle::before { content: "=EF=88=9C"; } - -.fa-street-view::before { content: "=EF=88=9D"; } - -.fa-heartbeat::before { content: "=EF=88=9E"; } - -.fa-venus::before { content: "=EF=88=A1"; } - -.fa-mars::before { content: "=EF=88=A2"; } - -.fa-mercury::before { content: "=EF=88=A3"; } - -.fa-intersex::before, .fa-transgender::before { content: "=EF=88=A4"; } - -.fa-transgender-alt::before { content: "=EF=88=A5"; } - -.fa-venus-double::before { content: "=EF=88=A6"; } - -.fa-mars-double::before { content: "=EF=88=A7"; } - -.fa-venus-mars::before { content: "=EF=88=A8"; } - -.fa-mars-stroke::before { content: "=EF=88=A9"; } - -.fa-mars-stroke-v::before { content: "=EF=88=AA"; } - -.fa-mars-stroke-h::before { content: "=EF=88=AB"; } - -.fa-neuter::before { content: "=EF=88=AC"; } - -.fa-genderless::before { content: "=EF=88=AD"; } - -.fa-facebook-official::before { content: "=EF=88=B0"; } - -.fa-pinterest-p::before { content: "=EF=88=B1"; } - -.fa-whatsapp::before { content: "=EF=88=B2"; } - -.fa-server::before { content: "=EF=88=B3"; } - -.fa-user-plus::before { content: "=EF=88=B4"; } - -.fa-user-times::before { content: "=EF=88=B5"; } - -.fa-hotel::before, .fa-bed::before { content: "=EF=88=B6"; } - -.fa-viacoin::before { content: "=EF=88=B7"; } - -.fa-train::before { content: "=EF=88=B8"; } - -.fa-subway::before { content: "=EF=88=B9"; } - -.fa-medium::before { content: "=EF=88=BA"; } - -.fa-yc::before, .fa-y-combinator::before { content: "=EF=88=BB"; } - -.fa-optin-monster::before { content: "=EF=88=BC"; } - -.fa-opencart::before { content: "=EF=88=BD"; } - -.fa-expeditedssl::before { content: "=EF=88=BE"; } - -.fa-battery-4::before, .fa-battery::before, .fa-battery-full::before { cont= -ent: "=EF=89=80"; } - -.fa-battery-3::before, .fa-battery-three-quarters::before { content: "=EF= -=89=81"; } - -.fa-battery-2::before, .fa-battery-half::before { content: "=EF=89=82"; } - -.fa-battery-1::before, .fa-battery-quarter::before { content: "=EF=89=83"; = -} - -.fa-battery-0::before, .fa-battery-empty::before { content: "=EF=89=84"; } - -.fa-mouse-pointer::before { content: "=EF=89=85"; } - -.fa-i-cursor::before { content: "=EF=89=86"; } - -.fa-object-group::before { content: "=EF=89=87"; } - -.fa-object-ungroup::before { content: "=EF=89=88"; } - -.fa-sticky-note::before { content: "=EF=89=89"; } - -.fa-sticky-note-o::before { content: "=EF=89=8A"; } - -.fa-cc-jcb::before { content: "=EF=89=8B"; } - -.fa-cc-diners-club::before { content: "=EF=89=8C"; } - -.fa-clone::before { content: "=EF=89=8D"; } - -.fa-balance-scale::before { content: "=EF=89=8E"; } - -.fa-hourglass-o::before { content: "=EF=89=90"; } - -.fa-hourglass-1::before, .fa-hourglass-start::before { content: "=EF=89=91"= -; } - -.fa-hourglass-2::before, .fa-hourglass-half::before { content: "=EF=89=92";= - } - -.fa-hourglass-3::before, .fa-hourglass-end::before { content: "=EF=89=93"; = -} - -.fa-hourglass::before { content: "=EF=89=94"; } - -.fa-hand-grab-o::before, .fa-hand-rock-o::before { content: "=EF=89=95"; } - -.fa-hand-stop-o::before, .fa-hand-paper-o::before { content: "=EF=89=96"; } - -.fa-hand-scissors-o::before { content: "=EF=89=97"; } - -.fa-hand-lizard-o::before { content: "=EF=89=98"; } - -.fa-hand-spock-o::before { content: "=EF=89=99"; } - -.fa-hand-pointer-o::before { content: "=EF=89=9A"; } - -.fa-hand-peace-o::before { content: "=EF=89=9B"; } - -.fa-trademark::before { content: "=EF=89=9C"; } - -.fa-registered::before { content: "=EF=89=9D"; } - -.fa-creative-commons::before { content: "=EF=89=9E"; } - -.fa-gg::before { content: "=EF=89=A0"; } - -.fa-gg-circle::before { content: "=EF=89=A1"; } - -.fa-tripadvisor::before { content: "=EF=89=A2"; } - -.fa-odnoklassniki::before { content: "=EF=89=A3"; } - -.fa-odnoklassniki-square::before { content: "=EF=89=A4"; } - -.fa-get-pocket::before { content: "=EF=89=A5"; } - -.fa-wikipedia-w::before { content: "=EF=89=A6"; } - -.fa-safari::before { content: "=EF=89=A7"; } - -.fa-chrome::before { content: "=EF=89=A8"; } - -.fa-firefox::before { content: "=EF=89=A9"; } - -.fa-opera::before { content: "=EF=89=AA"; } - -.fa-internet-explorer::before { content: "=EF=89=AB"; } - -.fa-tv::before, .fa-television::before { content: "=EF=89=AC"; } - -.fa-contao::before { content: "=EF=89=AD"; } - -.fa-500px::before { content: "=EF=89=AE"; } - -.fa-amazon::before { content: "=EF=89=B0"; } - -.fa-calendar-plus-o::before { content: "=EF=89=B1"; } - -.fa-calendar-minus-o::before { content: "=EF=89=B2"; } - -.fa-calendar-times-o::before { content: "=EF=89=B3"; } - -.fa-calendar-check-o::before { content: "=EF=89=B4"; } - -.fa-industry::before { content: "=EF=89=B5"; } - -.fa-map-pin::before { content: "=EF=89=B6"; } - -.fa-map-signs::before { content: "=EF=89=B7"; } - -.fa-map-o::before { content: "=EF=89=B8"; } - -.fa-map::before { content: "=EF=89=B9"; } - -.fa-commenting::before { content: "=EF=89=BA"; } - -.fa-commenting-o::before { content: "=EF=89=BB"; } - -.fa-houzz::before { content: "=EF=89=BC"; } - -.fa-vimeo::before { content: "=EF=89=BD"; } - -.fa-black-tie::before { content: "=EF=89=BE"; } - -.fa-fonticons::before { content: "=EF=8A=80"; } - -.fa-reddit-alien::before { content: "=EF=8A=81"; } - -.fa-edge::before { content: "=EF=8A=82"; } - -.fa-credit-card-alt::before { content: "=EF=8A=83"; } - -.fa-codiepie::before { content: "=EF=8A=84"; } - -.fa-modx::before { content: "=EF=8A=85"; } - -.fa-fort-awesome::before { content: "=EF=8A=86"; } - -.fa-usb::before { content: "=EF=8A=87"; } - -.fa-product-hunt::before { content: "=EF=8A=88"; } - -.fa-mixcloud::before { content: "=EF=8A=89"; } - -.fa-scribd::before { content: "=EF=8A=8A"; } - -.fa-pause-circle::before { content: "=EF=8A=8B"; } - -.fa-pause-circle-o::before { content: "=EF=8A=8C"; } - -.fa-stop-circle::before { content: "=EF=8A=8D"; } - -.fa-stop-circle-o::before { content: "=EF=8A=8E"; } - -.fa-shopping-bag::before { content: "=EF=8A=90"; } - -.fa-shopping-basket::before { content: "=EF=8A=91"; } - -.fa-hashtag::before { content: "=EF=8A=92"; } - -.fa-bluetooth::before { content: "=EF=8A=93"; } - -.fa-bluetooth-b::before { content: "=EF=8A=94"; } - -.fa-percent::before { content: "=EF=8A=95"; } - -.fa-gitlab::before { content: "=EF=8A=96"; } - -.fa-wpbeginner::before { content: "=EF=8A=97"; } - -.fa-wpforms::before { content: "=EF=8A=98"; } - -.fa-envira::before { content: "=EF=8A=99"; } - -.fa-universal-access::before { content: "=EF=8A=9A"; } - -.fa-wheelchair-alt::before { content: "=EF=8A=9B"; } - -.fa-question-circle-o::before { content: "=EF=8A=9C"; } - -.fa-blind::before { content: "=EF=8A=9D"; } - -.fa-audio-description::before { content: "=EF=8A=9E"; } - -.fa-volume-control-phone::before { content: "=EF=8A=A0"; } - -.fa-braille::before { content: "=EF=8A=A1"; } - -.fa-assistive-listening-systems::before { content: "=EF=8A=A2"; } - -.fa-asl-interpreting::before, .fa-american-sign-language-interpreting::befo= -re { content: "=EF=8A=A3"; } - -.fa-deafness::before, .fa-hard-of-hearing::before, .fa-deaf::before { conte= -nt: "=EF=8A=A4"; } - -.fa-glide::before { content: "=EF=8A=A5"; } - -.fa-glide-g::before { content: "=EF=8A=A6"; } - -.fa-signing::before, .fa-sign-language::before { content: "=EF=8A=A7"; } - -.fa-low-vision::before { content: "=EF=8A=A8"; } - -.fa-viadeo::before { content: "=EF=8A=A9"; } - -.fa-viadeo-square::before { content: "=EF=8A=AA"; } - -.fa-snapchat::before { content: "=EF=8A=AB"; } - -.fa-snapchat-ghost::before { content: "=EF=8A=AC"; } - -.fa-snapchat-square::before { content: "=EF=8A=AD"; } - -.fa-pied-piper::before { content: "=EF=8A=AE"; } - -.fa-first-order::before { content: "=EF=8A=B0"; } - -.fa-yoast::before { content: "=EF=8A=B1"; } - -.fa-themeisle::before { content: "=EF=8A=B2"; } - -.fa-google-plus-circle::before, .fa-google-plus-official::before { content:= - "=EF=8A=B3"; } - -.fa-fa::before, .fa-font-awesome::before { content: "=EF=8A=B4"; } - -.fa-handshake-o::before { content: "=EF=8A=B5"; } - -.fa-envelope-open::before { content: "=EF=8A=B6"; } - -.fa-envelope-open-o::before { content: "=EF=8A=B7"; } - -.fa-linode::before { content: "=EF=8A=B8"; } - -.fa-address-book::before { content: "=EF=8A=B9"; } - -.fa-address-book-o::before { content: "=EF=8A=BA"; } - -.fa-vcard::before, .fa-address-card::before { content: "=EF=8A=BB"; } - -.fa-vcard-o::before, .fa-address-card-o::before { content: "=EF=8A=BC"; } - -.fa-user-circle::before { content: "=EF=8A=BD"; } - -.fa-user-circle-o::before { content: "=EF=8A=BE"; } - -.fa-user-o::before { content: "=EF=8B=80"; } - -.fa-id-badge::before { content: "=EF=8B=81"; } - -.fa-drivers-license::before, .fa-id-card::before { content: "=EF=8B=82"; } - -.fa-drivers-license-o::before, .fa-id-card-o::before { content: "=EF=8B=83"= -; } - -.fa-quora::before { content: "=EF=8B=84"; } - -.fa-free-code-camp::before { content: "=EF=8B=85"; } - -.fa-telegram::before { content: "=EF=8B=86"; } - -.fa-thermometer-4::before, .fa-thermometer::before, .fa-thermometer-full::b= -efore { content: "=EF=8B=87"; } - -.fa-thermometer-3::before, .fa-thermometer-three-quarters::before { content= -: "=EF=8B=88"; } - -.fa-thermometer-2::before, .fa-thermometer-half::before { content: "=EF=8B= -=89"; } - -.fa-thermometer-1::before, .fa-thermometer-quarter::before { content: "=EF= -=8B=8A"; } - -.fa-thermometer-0::before, .fa-thermometer-empty::before { content: "=EF=8B= -=8B"; } - -.fa-shower::before { content: "=EF=8B=8C"; } - -.fa-bathtub::before, .fa-s15::before, .fa-bath::before { content: "=EF=8B= -=8D"; } - -.fa-podcast::before { content: "=EF=8B=8E"; } - -.fa-window-maximize::before { content: "=EF=8B=90"; } - -.fa-window-minimize::before { content: "=EF=8B=91"; } - -.fa-window-restore::before { content: "=EF=8B=92"; } - -.fa-times-rectangle::before, .fa-window-close::before { content: "=EF=8B=93= -"; } - -.fa-times-rectangle-o::before, .fa-window-close-o::before { content: "=EF= -=8B=94"; } - -.fa-bandcamp::before { content: "=EF=8B=95"; } - -.fa-grav::before { content: "=EF=8B=96"; } - -.fa-etsy::before { content: "=EF=8B=97"; } - -.fa-imdb::before { content: "=EF=8B=98"; } - -.fa-ravelry::before { content: "=EF=8B=99"; } - -.fa-eercast::before { content: "=EF=8B=9A"; } - -.fa-microchip::before { content: "=EF=8B=9B"; } - -.fa-snowflake-o::before { content: "=EF=8B=9C"; } - -.fa-superpowers::before { content: "=EF=8B=9D"; } - -.fa-wpexplorer::before { content: "=EF=8B=9E"; } - -.fa-meetup::before { content: "=EF=8B=A0"; } - -.sr-only { position: absolute; width: 1px; height: 1px; padding: 0px; margi= -n: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); border: 0px; } - -.sr-only-focusable:active, .sr-only-focusable:focus { position: static; wid= -th: auto; height: auto; margin: 0px; overflow: visible; clip: auto; } - -.rheostat { overflow: visible; } - -.rheostat-background { background-color: rgb(252, 252, 252); border: 1px so= -lid rgb(216, 216, 216); position: relative; } - -.rheostat-progress { background-color: rgb(171, 196, 232); position: absolu= -te; } - -.rheostat-handle { background-color: rgb(255, 255, 255); border: 1px solid = -rgb(216, 216, 216); border-radius: 20%; height: 24px; outline: none; z-inde= -x: 2; width: 24px; } - -.rheostat-handle::before, .rheostat-handle::after { content: ""; display: b= -lock; position: absolute; background-color: rgb(218, 223, 232); } - -.rheostat-horizontal { height: 24px; } - -.rheostat-horizontal .rheostat-background { height: 15px; top: 0px; width: = -100%; } - -.rheostat-horizontal .rheostat-progress { height: 13px; top: 2px; } - -.rheostat-horizontal .rheostat-handle { margin-left: -12px; top: -5px; } - -.rheostat-horizontal .rheostat-handle::before, .rheostat-horizontal .rheost= -at-handle::after { top: 7px; height: 10px; width: 1px; } - -.rheostat-horizontal .rheostat-handle::before { left: 10px; } - -.rheostat-horizontal .rheostat-handle::after { left: 13px; } - -.rheostat-vertical { height: 100%; width: 24px; } - -.rheostat-vertical .rheostat-background { height: 100%; top: 0px; width: 15= -px; } - -.rheostat-vertical .rheostat-progress { left: 2px; width: 13px; } - -.rheostat-vertical .rheostat-handle { left: -5px; margin-top: -12px; } - -.rheostat-vertical .rheostat-handle::before, .rheostat-vertical .rheostat-h= -andle::after { left: 8px; height: 1px; width: 10px; } - -.rheostat-vertical .rheostat-handle::before { top: 10px; } - -.rheostat-vertical .rheostat-handle::after { top: 13px; } - -#navbar-admin .dropdown-submenu { position: relative; } - -#navbar-admin .dropdown-submenu .dropdown-menu { bottom: 0px; left: 100%; m= -argin-top: -1px; } - -#navbar-admin .dropdown-submenu .dropdown-submenu-link .fa { float: right; = -} - -.attachment-container { border: 1px solid rgb(238, 238, 238); border-radius= -: 5px; margin: 12px; min-width: 70px; } - -.attachment-container .img-container { height: 75px; margin: 10px; position= -: relative; } - -.attachment-container .img-container div .file-icon, .attachment-container = -.img-container .fa { inset: 10px 0px 0px; font-size: 400%; margin: auto; po= -sition: absolute; text-align: center; } - -.attachment-container .file-name-container { margin: 10px; } - -.attachment-container .actions { display: flex; flex-flow: row nowrap; just= -ify-content: space-between; } - -.attachment-container .actions a { margin: 0px 10px 5px; } - -.attachments_list { align-items: center; display: flex; flex-flow: row wrap= -; justify-content: flex-start; } - -.project_progress_percentage { float: right; margin: 0px 0px 5px 5px; paddi= -ng: 0px 5px; } - -.bpi-advanced { font-size: 12px; margin-left: 10px; padding: 2px 5px; } - -.bpi-status { font-size: 14px; } - -.user-info { display: block; float: left; padding: 4px; text-align: left; } - -.task-tab { max-width: 120px; min-width: 80px; overflow: hidden; text-overf= -low: ellipsis; white-space: nowrap; } - -.task-title { padding: 12px 0px; } - -.task-content { margin-top: 24px; } - -.percentage-container { padding-top: 12px; } - -.percentage-value { background-color: rgb(217, 83, 79); border-radius: 6px;= - color: rgb(255, 255, 255); display: block; float: left; font-size: 18px; f= -ont-weight: bold; margin: 0px; min-width: 100px; padding: 12px; text-align:= - center; } - -.percentage-content { margin-left: 120px; padding: 12px; } - -.clear::after { clear: left; content: ""; display: block; } - -.copyright-icon { color: rgb(196, 196, 196); padding-right: 6px; } - -.student-list { margin-bottom: 24px; margin-top: -12px; } - -.student-list .icon-item { font-size: 16px; font-weight: 400; padding: 0px = -0px 0px 10px; } - -.student { font-size: 16px; font-weight: bold; line-height: 28px; } - -.match { font-size: 14px; font-weight: normal; line-height: 28px; margin: 0= -px 24px; } - -.count { background-color: rgb(217, 83, 79); border-radius: 16px; color: rg= -b(255, 255, 255); float: right; font-size: 12px; font-weight: bold; margin:= - 0px auto; padding: 4px; text-align: center; width: 36px; } - -.accordion-container { transition: all 0.2s ease 0s; } - -.accordion-header { align-items: center; border: 1px solid rgb(228, 228, 22= -8); border-radius: 4px; padding: 12px; } - -.accordion-header:not(:first-child) { border-top: 1px solid rgb(228, 228, 2= -28); } - -.accordion-content { margin: 0px; overflow: auto; padding: 6px 0px; transit= -ion: all 0.25s ease 0s; width: auto; } - -.accordion-closed { height: 0px; overflow: hidden; padding: 0px; transition= -: all 0.25s ease 0s; } - -.timeline::before { background-color: rgb(238, 238, 238); bottom: 0px; cont= -ent: " "; margin-left: -1.5px; position: absolute; top: 0px; width: 3px; } - -.timeline > li > .timeline-panel { border: 1px solid rgb(212, 212, 212); bo= -x-shadow: rgba(0, 0, 0, 0.176) 0px 1px 6px; } - -.timeline > li > .timeline-panel::before { border-bottom: 15px solid transp= -arent; border-left: none; border-right: 15px solid rgb(204, 204, 204); bord= -er-top: 15px solid transparent; content: " "; left: -15px; position: absolu= -te; top: 26px; } - -.timeline > li > .timeline-panel::after { border-bottom: 14px solid transpa= -rent; border-left: none; border-right: 14px solid rgb(255, 255, 255); borde= -r-top: 14px solid transparent; content: " "; left: -14px; position: absolut= -e; top: 27px; } - -.timeline > li > .timeline-panel.subpanel::before { border-bottom: 15px sol= -id rgb(204, 204, 204); border-left: 15px solid transparent; border-right: 1= -5px solid transparent; border-top: none; left: 26px; top: -15px; } - -.timeline > li > .timeline-panel.subpanel::after { border-bottom: 14px soli= -d rgb(255, 255, 255); border-left: 14px solid transparent; border-right: 14= -px solid transparent; border-top: none; left: 27px; top: -14px; } - -.timeline > li > .timeline-panel.current { border: 1px solid rgb(219, 62, 6= -2); box-shadow: rgb(219, 62, 62) 0px 1px 3px; } - -.timeline > li > .timeline-panel.current::before { border-right: 15px solid= - rgb(219, 62, 62); } - -.timeline > li > .timeline-panel.current.subpanel::before { border-bottom: = -15px solid rgb(219, 62, 62); border-right: 15px solid transparent; } - -@media (max-width: 767px) { - ul.timeline::before { left: 40px; } - ul.timeline > li > .timeline-panel { margin-left: 70px; width: 90% !impor= -tant; } - ul.timeline > li > .timeline-panel::before { border-left-width: 0px; bord= -er-right-width: 15px; left: -15px; right: auto; } - ul.timeline > li > .timeline-panel::after { border-left-width: 0px; borde= -r-right-width: 14px; left: -14px; right: auto; } - ul.timeline > li > .timeline-badge { margin-left: 0px; top: 16px; } -} - -.btn-outline-primary { background-color: transparent !important; border-col= -or: rgb(219, 62, 62) !important; color: rgb(219, 62, 62) !important; } - -.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-prima= -ry.active, .open > .btn-outline-primary.dropdown-toggle { background-color:= - rgb(219, 62, 62) !important; color: white !important; } - -.border { border: 1px solid !important; } - -.border-0 { border: none !important; } - -.border-bottom { border-bottom: 1px solid; } - -.border-danger { border-color: rgb(235, 204, 209) !important; } - -.border-info { border-color: rgb(218, 223, 226) !important; } - -.border-gray { border-color: rgb(221, 221, 221) !important; } - -.border-left-info { border-left-color: rgb(152, 163, 174) !important; } - -.border-left-success { border-left-color: rgb(92, 184, 92) !important; } - -.border-primary { border-color: rgb(219, 62, 62) !important; } - -.border-top { border-top: 1px solid; } - -.border-white { border-color: white !important; } - -.rounded-circle { border-radius: 50% !important; } - -.align-items-baseline { align-items: baseline !important; } - -.align-items-center { align-items: center !important; } - -.align-items-end { align-items: flex-end !important; } - -.d-block { display: block !important; } - -.d-flex { display: flex !important; } - -.d-grid { display: grid !important; } - -.d-inline-flex { display: inline-flex !important; } - -.d-inline-block { display: inline-block; } - -.d-inline-flex { display: inline-flex !important; } - -.flex-column { flex-direction: column !important; } - -.flex-grow-1 { flex-grow: 1 !important; } - -.flex-row-reverse { flex-direction: row-reverse !important; } - -.flex-wrap { flex-wrap: wrap !important; } - -.gap-1 { gap: 0.25rem !important; } - -.gap-2 { gap: 0.5rem !important; } - -.gap-3 { gap: 1rem !important; } - -.gap-4 { gap: 1.5rem !important; } - -.gap-5 { gap: 2rem !important; } - -.justify-content-around { justify-content: space-around !important; } - -.justify-content-between { justify-content: space-between !important; } - -.justify-content-center { justify-content: center !important; } - -.justify-content-end { justify-content: flex-end !important; } - -.justify-content-evenly { justify-content: space-evenly !important; } - -.float-end { float: right !important; } - -.h-auto { height: auto !important; } - -.w-auto { width: auto !important; } - -.w-full { width: 100% !important; } - -.user-select-all { user-select: all !important; } - -.user-select-none { user-select: none !important; } - -.overflow-auto { overflow: auto !important; } - -.overflow-hidden { overflow: hidden !important; } - -.overflow-visible { overflow: visible !important; } - -.position-absolute { position: absolute !important; } - -.position-relative { position: relative !important; } - -.position-sticky { position: sticky !important; } - -.m-auto { margin: auto !important; } - -.m-0 { margin: 0px !important; } - -.mb-0 { margin-bottom: 0px !important; } - -.mb-2 { margin-bottom: 10px !important; } - -.ml-1 { margin-left: 4px !important; } - -.ml-2 { margin-left: 10px !important; } - -.ml-5 { margin-left: 2rem !important; } - -.mr-1 { margin-right: 4px !important; } - -.mr-2 { margin-right: 10px !important; } - -.mt-0 { margin-top: 0px !important; } - -.mt-1 { margin-top: 4px !important; } - -.mt-2 { margin-top: 10px !important; } - -.mt-3 { margin-top: 1rem !important; } - -.mt-4 { margin-top: 1.5rem !important; } - -.mt-5 { margin-top: 2rem !important; } - -.my-2 { margin-bottom: 10px !important; margin-top: 10px !important; } - -.p-0 { padding: 0px !important; } - -.p-1 { padding: 4px !important; } - -.p-2 { padding: 10px !important; } - -.p-3 { padding: 1rem !important; } - -.p-4 { padding: 1.5rem !important; } - -.p-5 { padding: 2rem !important; } - -.pl-5 { padding-left: 2rem !important; } - -.pr-3 { padding-right: 1rem !important; } - -.px-2 { padding-left: 10px !important; padding-right: 10px !important; } - -.px-5 { padding-left: 2rem !important; padding-right: 2rem !important; } - -.py-2 { padding-bottom: 0.5rem !important; padding-top: 0.5rem !important; = -} - -.py-3 { padding-bottom: 1rem !important; padding-top: 1rem !important; } - -.fs-2 { font-size: 2rem !important; } - -.fs-3 { font-size: 1.75rem !important; } - -.fs-4 { font-size: 1.5rem !important; } - -.fs-5 { font-size: 1.25rem !important; } - -.fs-6 { font-size: 1rem !important; } - -.fs-small { font-size: 12px !important; } - -.fw-400 { font-weight: 400 !important; } - -.fw-500 { font-weight: 500 !important; } - -.fw-600 { font-weight: 600 !important; } - -.fw-bold { font-weight: 700 !important; } - -.lh-base { line-height: 1.5 !important; } - -.td-none { text-decoration: none !important; } - -.align-middle { vertical-align: middle !important; } - -.align-middle td, .align-middle th { vertical-align: middle !important; } - -.panel { overflow: hidden; } - -.panel.panel-default { box-shadow: none; } - -.panel.panel-default .panel-heading .panel-title { color: rgb(51, 51, 51); = -} - -.panel.panel-default .panel-heading .panel-title i.panel-title-icon { backg= -round: white; border-radius: 100%; box-shadow: rgba(0, 0, 0, 0.25) 1px 1px = -3px; font-size: 20px; height: 40px; margin-right: 10px; padding: 10px; text= --align: center; width: 40px; } - -.panel > div > .alert, .panel > div > .list-group, .panel > div > .table { = -margin-bottom: 0px; } - -.panel.overflow_visible { overflow: visible; } - -table thead { background-color: rgb(245, 245, 245); } - -table thead th { font-size: 12px; font-weight: 500; padding: 12px 0px 4px; = -text-align: start; } - -table tr.disabled { background-color: rgb(239, 239, 239); } - -table td pre { white-space: pre-wrap; } - -table td.actions { max-width: 100px; text-align: right; } - -table.table-striped td ul { padding-left: 0px; } - -.tooltip { filter: drop-shadow(rgba(0, 0, 0, 0.25) 0px 2px 4px); padding: 8= -px; } - -.tooltip .tooltip-inner { font-size: 12px; } - -.modal-body img { max-width: 100%; } - -.tab-pane > ul.nav-pills { display: flex; gap: 10px; } - -.tab-pane > ul.nav-pills > li > a { background-color: white; border-radius:= - 20px; padding: 5px 15px; } - -.tab-pane > ul.nav-pills > li.active > a { background-color: rgb(219, 62, 6= -2); } - -.calendar-grid ul.weekdays { list-style: none; padding: 30px 5px 0px 0px; w= -idth: 80px; } - -.calendar-grid ul.weekdays li { font-size: 12px; margin: 0px; padding: 21px= - 0px 0px; text-align: right; } - -.calendar-grid .calendar-grid-item { background-color: rgb(241, 241, 241); = -border: 1px solid rgb(223, 225, 227); border-radius: 1px; height: 15px; mar= -gin: 2px; width: 15px; } - -.calendar-grid .calendar-grid-item.clickable { cursor: pointer; } - -.calendar-grid .calendar-grid-item.level-0 { background-color: rgb(244, 197= -, 197); } - -.calendar-grid .calendar-grid-item.level-1 { background-color: rgb(237, 159= -, 159); } - -.calendar-grid .calendar-grid-item.level-2 { background-color: rgb(226, 101= -, 101); } - -.calendar-grid .calendar-grid-item.level-3 { background-color: rgb(219, 62,= - 62); } - -.calendar-grid .calendar-grid-item.level-4 { background-color: rgb(189, 35,= - 35); } - -.calendar-grid .calendar-grid-item.level-5 { background-color: rgb(118, 22,= - 22); } - -.calendar-grid .calendar-grid-item.selected { border-color: rgb(152, 163, 1= -74); } - -.char-counter { padding: 2px 5px; } - -#captains_log_alert a:hover { text-decoration: none; } - -article.pending_logs { margin-top: 80px; } - -.tokenfield .token { background-color: rgb(152, 163, 174); border: 1px soli= -d rgb(152, 163, 174); color: white; } - -.tt-input, .tt-query, .tt-hint { border: 2px solid rgb(204, 204, 204); bord= -er-radius: 8px; height: 30px; line-height: 30px; outline: none; padding: 8p= -x 12px; width: 396px; } - -.tt-query, .tt-input { box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset; = -} - -.tt-hint { color: rgb(153, 153, 153); } - -.tt-menu, .tt-dropdown-menu { background-color: rgb(255, 255, 255); border:= - 1px solid rgba(0, 0, 0, 0.2); border-radius: 8px; box-shadow: rgba(0, 0, 0= -, 0.2) 0px 5px 10px; min-width: 200px; padding: 8px 0px; } - -.tt-suggestion { line-height: 24px; padding: 3px 10px; } - -.tt-suggestion.tt-is-under-cursor, .tt-suggestion.tt-cursor { background-co= -lor: rgb(152, 163, 174); color: white; } - -.tt-suggestion p { margin: 0px; } - -input.colored-checkbox[type=3D"checkbox"] { --form-control-color: currentCo= -lor; --form-control-disabled: #777777; appearance: none; border: 0.05em sol= -id rgb(119, 119, 119); border-radius: 0.15em; display: inline-grid; font: i= -nherit; height: 1.15em; margin: 0px; place-content: center; transform: tran= -slateY(-0.075em); width: 1.15em; } - -input.colored-checkbox[type=3D"checkbox"]::before { box-shadow: white 1em 1= -em inset; clip-path: polygon(10% 48%, 0px 65%, 50% 100%, 100% 16%, 84% 0%, = -43% 70%); content: ""; height: 0.65em; transform: scale(0); transform-origi= -n: center center; transition: transform 150ms ease-in-out 0s; width: 0.65em= -; } - -input.colored-checkbox[type=3D"checkbox"]:checked { background-color: var(-= --form-control-color); border-color: var(--form-control-color); } - -input.colored-checkbox[type=3D"checkbox"]:checked::before { transform: scal= -e(1); } - -input.colored-checkbox[type=3D"checkbox"]:disabled { --form-control-color: = -var(--form-control-disabled); color: var(--form-control-disabled); cursor: = -not-allowed; } - -input.colored-checkbox[type=3D"checkbox"]:disabled + label { color: var(--f= -orm-control-disabled); cursor: not-allowed; } - -input.colored-checkbox[type=3D"checkbox"]:focus { outline: rgb(170, 170, 17= -0) solid 0.05em; outline-offset: 0.1em; } - -input.colored-checkbox[type=3D"checkbox"] + label { margin-left: 0.2em; } - -html, body { height: 100%; min-height: 100%; } - -@media (max-width: 375px) { - body { overflow-y: scroll; } -} - -.empty-state { align-items: center; border: 0.125em dashed rgb(203, 213, 22= -5); border-radius: 1.25em; display: flex; flex-direction: column; font-size= -: 16px; margin-left: auto; margin-right: auto; padding: 2.5em; width: 100%;= - } - -.empty-state > i.fa { color: rgb(156, 163, 175); font-size: 4em; } - -.empty-state > .empty-state-title { font-size: 1.125em; font-weight: 500; l= -ine-height: 1.75em; margin-top: 1em; } - -.empty-state > .empty-state-subtitle { color: rgb(156, 163, 175); display: = -inline-flex; font-size: 1em; font-weight: 300; line-height: 1.5em; } - -.text-muted a { color: inherit; } - -.text-muted a:hover { color: rgb(219, 62, 62); text-decoration: none; } - -ul.nav-tabs li:not(.active) > a > i.fa + span { display: none; } - -@media (min-width: 768px) { - ul.nav-tabs li:not(.active) > a > i.fa + span { display: block; } -} - -.xs-gap { margin-top: 10px !important; } - -.sm-gap { margin-top: 20px !important; } - -.gap { margin-top: 50px !important; } - -.lg-gap { margin-top: 100px !important; } - -.btn > i.fa:first-child:not(:last-child) { margin-right: 5px; } - -.no-outline { outline: none !important; } - -.panel.panel-tile { background: white; border-color: white; box-shadow: non= -e; color: black; } - -.panel .panel-heading.panel-heading-actions { align-items: center; display:= - flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; } - -.field_with_errors { color: rgb(217, 83, 79); } - -.field_with_errors input, .field_with_errors select, .field_with_errors tex= -tarea { background-color: rgb(253, 247, 247); border-color: rgb(217, 83, 79= -); } - -.datepicker .active { background: rgb(219, 62, 62) !important; border-color= -: rgb(219, 62, 62) !important; } - -.toggle-token { background-color: rgb(238, 238, 238); border-radius: 15px; = -color: rgb(89, 89, 89); font-size: 12px; padding: 5px 15px; } - -.toggle-token.active { background-color: rgb(152, 163, 174); color: rgb(255= -, 255, 255); } - -.clean.well { background: white; border-color: rgb(238, 238, 238); box-shad= -ow: none; } - -.clean.well.gray { background-color: rgb(245, 245, 245); } - -.clean.well.few-padding { padding: 10px; } - -.navbar-admin { border-radius: 0px; bottom: 0px; margin-bottom: -40px; posi= -tion: fixed; transition: margin-bottom 0.5s ease 0s; width: 100%; z-index: = -8; } - -.navbar-admin:hover { margin-bottom: 0px; } - -main { height: 100%; overflow-y: auto; padding-left: 0px; } - -@media (max-width: 768px) { - main { padding-top: 50px; } -} - -@media (min-width: 768px) { - main { margin-left: 70px; } -} - -.show .tab-content table td { vertical-align: middle; } - -article { padding: 0px 15px 40px; } - -@media (min-width: 768px) { - article { padding: 0px 25px 40px; } -} - -.offline:not(tr) { opacity: 0.5; } - -.offline td:not(.no-offline) { opacity: 0.5; } - -.deleted { text-decoration: line-through; } - -form .field { margin-top: 15px; } - -form .actions { margin-top: 15px; } - -form .form-control.date-selects { display: inline; width: auto; } - -form label.mandatory::after { content: " * "; } - -.list_in_group li { line-height: 25px; } - -.list-group-item.in_second_deadline { background-color: rgb(252, 248, 227);= - } - -.list-group-item-inline { display: inline-block; } - -.formatted-content { max-width: 700px; } - -@media (min-width: 768px) { - .formatted-content { margin-left: 30px; } -} - -.formatted-content h2 { margin-bottom: 40px; margin-top: 50px; } - -.formatted-content h3 { margin-bottom: 20px; margin-top: 30px; } - -.formatted-content ul { margin-top: 10px; } - -.formatted-content img { height: auto; max-width: 100%; } - -.contains-images img { height: auto; max-width: 100%; } - -textarea.markdown { height: 800px; } - -textarea.markdown.sm { height: 100px; } - -textarea.markdown.md { height: 400px; } - -.spinner { display: none; margin: 10px auto 0px; text-align: center; width:= - 70px; } - -.spinner > div { animation: 1.4s ease-in-out 0s infinite normal both runnin= -g sk-bouncedelay; background-color: rgb(51, 51, 51); border-radius: 100%; d= -isplay: inline-block; height: 18px; width: 18px; } - -.spinner.in-list { margin: 20px auto; } - -.spinner.always-displayed { display: block; } - -.spinner .bounce1 { animation-delay: -0.32s; } - -.spinner .bounce2 { animation-delay: -0.16s; } - -@keyframes sk-bouncedelay {=20 - 0%, 80%, 100% { transform: scale(0); } - 40% { transform: scale(1); } -} - -select.select-inline { display: inline; max-width: 40%; width: auto; } - -td.alert.gray { background-color: rgb(221, 221, 221); } - -.copyright { font-size: 10px; margin: 50px 20px 10px; text-align: right; } - -.alert-warning.school_location { padding: 2px; } - -.big-zindex { position: relative; z-index: 999; } - -#viewing_as_permission_group, #viewing_as, #captains_log_alert { align-item= -s: center; background-color: red; border-bottom: 1px solid rgb(204, 204, 20= -4); color: white; display: flex; justify-content: space-between; max-height= -: 60px; min-height: 30px; padding: 5px; } - -#viewing_as_permission_group a, #viewing_as a, #captains_log_alert a { colo= -r: white; } - -#viewing_as_permission_group { background-color: rgb(255, 183, 9); color: r= -gb(0, 0, 0); } - -#viewing_as_permission_group.group-external { background-color: rgb(250, 20= -4, 94); } - -#viewing_as_permission_group.group-student { background-color: rgb(250, 226= -, 167); } - -#viewing_as_permission_group a { color: rgb(0, 0, 0); font-weight: 600; } - -.markdown-field .CodeMirror { height: 600px; } - -.markdown-field.small-md .CodeMirror { height: 150px; min-height: 150px; } - -.hbtn-table { background-color: transparent; border-collapse: collapse; bor= -der-color: grey; border-spacing: 0px; } - -.hbtn-table th, .hbtn-table td { border: 1px solid rgb(221, 221, 221); padd= -ing: 5px; } - -thead.primary { background-color: rgb(219, 62, 62); color: rgb(255, 255, 25= -5); } - -thead.primary tr th:first-child { border-top-left-radius: 6px; } - -thead.primary tr th:last-child { border-top-right-radius: 6px; } - -#student-switch-curriculum { background-color: white; border-bottom: 1px so= -lid rgb(204, 204, 204); } - -#student-switch-curriculum .dropdown { width: fit-content; } - -#student-switch-curriculum .dropdown .dropdown-menu { max-height: 400px; ov= -erflow-y: auto; } - -#staff_multi_school_locations { background: rgb(52, 58, 64); border-bottom:= - 1px solid rgb(204, 204, 204); color: white; line-height: 30px; margin: 0px= -; padding: 5px 20px; } - -#staff_multi_school_locations .dropdown-menu { color: rgb(0, 0, 0); left: i= -nherit; max-height: 70vh; min-width: 300px; overflow-y: scroll; padding: 5p= -x 10px; right: 0px; } - -#staff_multi_school_locations .dropdown-menu li { height: 38px; } - -#staff_multi_school_locations .dropdown-menu li.separator { height: auto; } - -#staff_multi_school_locations .dropdown-menu li.separator hr { margin: 5px;= - } - -#staff_multi_school_locations .dropdown-menu li.item { display: flex; } - -#staff_multi_school_locations .dropdown-menu li.item input { float: left; m= -argin: 12px 2px; } - -#staff_multi_school_locations .dropdown-menu li.item label { float: left; f= -ont-weight: 400; line-height: 38px; margin: 0px 5px; overflow: hidden; text= --overflow: ellipsis; white-space: nowrap; } - -#staff_multi_school_locations .dropdown-menu li.action { display: block; ma= -rgin-top: 10px; } - -.universal-pagination { bottom: 25px; float: right; position: relative; } - -[readonly=3D"readonly"] { pointer-events: none; user-select: none; } - -@keyframes flickerAnimation {=20 - 0% { opacity: 1; } - 50% { opacity: 0; } - 100% { opacity: 1; } -} - -.animate-flicker { animation: 2s ease 0s infinite normal none running flick= -erAnimation; } - -.font-weight-bold { font-weight: 600; } - -.eqc-result.text-success code { background-color: rgb(182, 221, 182); color= -: rgb(60, 118, 61); } - -.eqc-result.text-primary code { background-color: rgb(222, 234, 244); color= -: rgb(51, 122, 183); } - -div.weekslot-select select { display: inline-block; width: auto; } - -div.weekslot-select select:not(:last-child) { margin-right: 4px; } - -div.weekslot-select .weekslot-label-at { margin: 0px 8px; } - -span.datetime { border-bottom: 0.5px dashed currentcolor; cursor: help; } - -[data-toggle=3D"collapse"] i.fa-chevron-right::before { display: block; tra= -nsition: transform 200ms ease-in 0s; } - -[data-toggle=3D"collapse"][aria-expanded=3D"true"] i.fa-chevron-right::befo= -re { transform: rotate(90deg); } - -[data-toggle=3D"collapse"][aria-expanded=3D"false"] i.fa-chevron-right::bef= -ore { transform: rotate(0deg); } - -.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap;= - } - -#number_of_messages { margin-left: 5px; margin-top: 10px; } - -span.alert.all-passed { font-size: 12px; font-weight: normal; margin-left: = -8px; opacity: 1; padding: 2px 5px; } - -.correction-request-timeline { color: rgb(51, 51, 51); list-style: none; pa= -dding: 0px; } - -.correction-request-timeline .timeline-event { background-color: rgb(238, 2= -38, 238); border-radius: 6px; display: flex; flex-flow: column nowrap; marg= -in-bottom: 4px; } - -.correction-request-timeline .timeline-event .timeline-event-head { align-i= -tems: center; border-radius: 6px; cursor: pointer; display: flex; flex-flow= -: row nowrap; padding: 8px; } - -.correction-request-timeline .timeline-event .timeline-event-head .timeline= --event-chevron { flex-shrink: 0; margin: 0px 8px; transition: all 0.1s ease= - 0s; } - -.correction-request-timeline .timeline-event .timeline-event-head .timeline= --event-chevron > i { transition: transform 0.3s ease-in-out 0s; } - -.correction-request-timeline .timeline-event .timeline-event-head .timeline= --event-sticker { flex-shrink: 0; margin-left: 4px; margin-right: 16px; } - -.correction-request-timeline .timeline-event .timeline-event-head .timeline= --event-title { display: flex; flex-flow: row nowrap; } - -.correction-request-timeline .timeline-event .timeline-event-head .timeline= --event-title > p { margin: 5px 0px; } - -.correction-request-timeline .timeline-event .timeline-event-content { disp= -lay: none; padding: 12px; } - -.correction-request-timeline .timeline-event .timeline-event-content .timel= -ine-event-body { line-height: 0.75; margin-left: 18px; max-height: 720px; o= -verflow: scroll; } - -.correction-request-timeline .timeline-event .timeline-event-content .timel= -ine-event-body ul > li { padding: 6px; } - -.correction-request-timeline .timeline-event .timeline-event-content .timel= -ine-event-body ul > li:not(:last-child) { margin-bottom: 24px; } - -.correction-request-timeline .timeline-event:hover .timeline-event-head { b= -ackground-color: rgb(119, 119, 119); } - -.correction-request-timeline .timeline-event.expanded .timeline-event-head = -{ background-color: rgb(119, 119, 119); } - -.correction-request-timeline .timeline-event.expanded .timeline-event-head = -.timeline-event-chevron > i { transform: rotate(90deg); } - -.correction-request-timeline .timeline-event.expanded .timeline-event-head = -.timeline-event-title { font-weight: 700; } - -.correction-request-timeline .timeline-event.passed.requirement { border: 1= -px solid rgb(38, 166, 85); } - -.correction-request-timeline .timeline-event.passed.requirement .colored { = -color: rgb(38, 166, 85); } - -.correction-request-timeline .timeline-event.passed.code { border: 2px soli= -d rgb(38, 166, 85); } - -.correction-request-timeline .timeline-event.passed.code .colored { color: = -rgb(38, 166, 85); } - -.correction-request-timeline .timeline-event.passed.efficiency { border: 2p= -x solid rgb(118, 1, 168); } - -.correction-request-timeline .timeline-event.passed.efficiency .colored { c= -olor: rgb(118, 1, 168); } - -.correction-request-timeline .timeline-event.passed.answer { border: 2px so= -lid rgb(38, 50, 166); } - -.correction-request-timeline .timeline-event.passed.answer .colored { color= -: rgb(38, 50, 166); } - -.correction-request-timeline .timeline-event.failed.requirement { border: 1= -px solid rgb(248, 0, 2); } - -.correction-request-timeline .timeline-event.failed.requirement .colored { = -color: rgb(248, 0, 2); } - -.correction-request-timeline .timeline-event.failed.code { border: 2px soli= -d rgb(248, 0, 2); } - -.correction-request-timeline .timeline-event.failed.code .colored { color: = -rgb(248, 0, 2); } - -.correction-request-timeline .timeline-event.failed.efficiency { border: 2p= -x solid rgb(255, 215, 0); } - -.correction-request-timeline .timeline-event.failed.efficiency .colored { c= -olor: rgb(255, 215, 0); } - -.correction-request-timeline .timeline-event.failed.answer { border: 2px so= -lid rgb(255, 140, 0); } - -.correction-request-timeline .timeline-event.failed.answer .colored { color= -: rgb(255, 140, 0); } - -#team_review_fixed { border-radius: 10px; bottom: 5px; position: fixed; rig= -ht: 10px; } - -@media (max-width: 1060px) { - #team_review_fixed { margin-top: 40px; position: static; } -} - -input.correction_checkbox { float: left; margin-right: 5px; } - -.correction_reason { border: 1px solid rgb(204, 204, 204); border-radius: 5= -px; margin-top: 5px; padding: 10px 15px; } - -.correction_reason .diff { background-color: white; border-radius: 5px; col= -or: black; margin-top: 5px; padding: 10px; } - -.correction_reason .diff ul { list-style: none; margin: 0px; padding: 0px; = -} - -.correction_reason .diff del { background-color: rgb(255, 196, 196); text-d= -ecoration: none; } - -.correction_reason .diff del strong { background-color: rgb(255, 79, 79); f= -ont-weight: normal; } - -.correction_reason .diff ins { background-color: rgb(212, 255, 217); text-d= -ecoration: none; } - -.correction_reason .diff ins strong { background-color: rgb(45, 204, 63); f= -ont-weight: normal; } - -.manual_review_item .score_value { display: inline-block; font-weight: 600;= - margin-left: 10px; margin-right: 10px; width: 30px; } - -.manual_review_item .slider { margin-left: 0px; } - -.manual_review_item .switch { box-sizing: content-box; display: inline-bloc= -k; margin-left: 30px; position: relative; } - -.manual_review_item .switch-input { display: none; } - -.manual_review_item .switch-label { clip: rect(0px, 0px, 0px, 0px); color: = -transparent; display: block; height: 24px; margin-bottom: 0px; text-indent:= - -150%; user-select: none; width: 48px; } - -.manual_review_item .switch-label::before, .manual_review_item .switch-labe= -l::after { content: ""; cursor: pointer; display: block; position: absolute= -; } - -.manual_review_item .switch-label::before { background-color: rgb(222, 222,= - 222); border-radius: 9999em; height: 100%; transition: background-color 0.= -25s ease 0s; width: 100%; } - -.manual_review_item .switch-label::after { background-color: rgb(255, 255, = -255); border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.45) 0px 0px 2px; heig= -ht: 24px; left: 0px; top: 0px; transition: left 0.25s ease 0s; width: 24px;= - } - -.manual_review_item .switch-input:checked + .switch-label::before { backgro= -und-color: rgb(219, 62, 62); } - -.manual_review_item .switch-input:checked + .switch-label::after { left: 24= -px; } - -.manual_review_item .switch-input:disabled + .switch-label::after { backgro= -und-color: rgb(222, 222, 222); } - -.dhx_cal_my_button { border: 1px solid rgb(206, 206, 206); border-radius: 5= -px; color: rgb(116, 116, 115); cursor: pointer; font-family: arial; font-si= -ze: 12px; font-weight: 700; left: auto; line-height: 30px; padding-top: 0px= -; text-align: center; text-decoration: none; } - -#job-hunter-filter select { margin-right: 10px; } - -#job-hunter-filter input { margin-bottom: 2px; } - -.student-social-links { display: inline-block; margin: 0px 10px; } - -.student-social-links > a { margin: 0px 2px; } - -@media (max-width: 600px) { - .student-social-links { margin: 0px 5px; } - .student-social-links > a { margin: 0px; } -} - -#after_paths_curriculums_choice { list-style: none; padding-left: 0px; padd= -ing-top: 20px; } - -#after_paths_curriculums_choice li { padding-bottom: 3px; } - -#after_paths_curriculums_choice li ul { list-style: none; padding: 5px 20px= - 10px 30px; } - -#after_paths_curriculums_choice li input[type=3D"radio"] { margin-right: 10= -px; } - -#after_paths_curriculums_choice span.alert-info { font-size: 12px; margin-l= -eft: 10px; padding: 2px 5px; } - -#after_paths_curriculums_choice_error { color: rgb(255, 0, 0); display: non= -e; } - -#after_paths_curriculums_choice_spinner { margin-left: 10px; margin-top: 20= -px; } - -.dhx_cal_navline .dhx_cal_tab.active, .dhx_cal_navline .dhx_cal_my_button.a= -ctive { background-color: rgb(224, 0, 60); border: 1px solid rgb(234, 70, 7= -2); color: rgb(255, 255, 255); text-shadow: none; } - -#dhtmlx-filter-modal ul { list-style: none; padding: 0px; } - -#dhtmlx-filter-modal ul li { margin-bottom: 5px; } - -#dhtmlx-filter-modal ul li hr { margin-bottom: 10px; margin-top: 10px; } - -.logged_out_form { background-color: rgb(248, 249, 250); border: 1px solid = -rgb(231, 231, 231); border-radius: 10px; box-shadow: rgb(238, 238, 238) 5px= - 5px 5px; margin: 50px auto; max-width: 400px; padding: 50px; text-align: c= -enter; width: 100%; } - -.logged_out_form #error_explanation { text-align: left; } - -.logged_out_form h2 { margin-top: 0px; } - -.logged_out_form h2 img { height: 80px; } - -.logged_out_form .field { margin-top: 10px; } - -.logged_out_form .actions { margin-top: 10px; } - -.logged_out_form ul#devise_links { list-style: none; margin-bottom: 0px; ma= -rgin-top: 30px; padding-left: 0px; } - -h2.hbtn_logo { background: url("/assets/holberton-logo-full-alx-d0537279415= -12ebe04b797ca87d81a195004e9ff2d8a6aedf4004c5365cf8944.png") center center /= - contain no-repeat; height: 80px; } - -.evaluation_quiz_question_form.missing-answers { border: 1px solid rgb(217,= - 83, 79); } - -.evaluation_quiz_question_answers .answers_type { display: none; } - -.evaluation_quiz_question_answers .answers_type .list_of_select, .evaluatio= -n_quiz_question_answers .answers_type .list_of_select_multiple, .evaluation= -_quiz_question_answers .answers_type .list_of_checkbox, .evaluation_quiz_qu= -estion_answers .answers_type .list_of_scored { padding-left: 0px; width: 80= -%; } - -.evaluation_quiz_question_answers .answers_type .list_of_select i.fa, .eval= -uation_quiz_question_answers .answers_type .list_of_select_multiple i.fa, .= -evaluation_quiz_question_answers .answers_type .list_of_checkbox i.fa, .eva= -luation_quiz_question_answers .answers_type .list_of_scored i.fa { font-siz= -e: 16px; } - -.evaluation_quiz_question_answers .answers_type .list_of_select i.fa:hover,= - .evaluation_quiz_question_answers .answers_type .list_of_select_multiple i= -.fa:hover, .evaluation_quiz_question_answers .answers_type .list_of_checkbo= -x i.fa:hover, .evaluation_quiz_question_answers .answers_type .list_of_scor= -ed i.fa:hover { color: rgb(34, 163, 171); } - -.evaluation_quiz_question_answers .answers_type .list_of_select .select_ite= -m, .evaluation_quiz_question_answers .answers_type .list_of_select .select_= -multiple_item, .evaluation_quiz_question_answers .answers_type .list_of_sel= -ect .checkbox_item, .evaluation_quiz_question_answers .answers_type .list_o= -f_select .scored_item, .evaluation_quiz_question_answers .answers_type .lis= -t_of_select_multiple .select_item, .evaluation_quiz_question_answers .answe= -rs_type .list_of_select_multiple .select_multiple_item, .evaluation_quiz_qu= -estion_answers .answers_type .list_of_select_multiple .checkbox_item, .eval= -uation_quiz_question_answers .answers_type .list_of_select_multiple .scored= -_item, .evaluation_quiz_question_answers .answers_type .list_of_checkbox .s= -elect_item, .evaluation_quiz_question_answers .answers_type .list_of_checkb= -ox .select_multiple_item, .evaluation_quiz_question_answers .answers_type .= -list_of_checkbox .checkbox_item, .evaluation_quiz_question_answers .answers= -_type .list_of_checkbox .scored_item, .evaluation_quiz_question_answers .an= -swers_type .list_of_scored .select_item, .evaluation_quiz_question_answers = -.answers_type .list_of_scored .select_multiple_item, .evaluation_quiz_quest= -ion_answers .answers_type .list_of_scored .checkbox_item, .evaluation_quiz_= -question_answers .answers_type .list_of_scored .scored_item { margin-bottom= -: 5px; padding-left: 0px; } - -.evaluation_quiz_question_answers .answers_type .list_of_select .checkbox_i= -tem_random.selected, .evaluation_quiz_question_answers .answers_type .list_= -of_select .scored_item_random.selected, .evaluation_quiz_question_answers .= -answers_type .list_of_select_multiple .checkbox_item_random.selected, .eval= -uation_quiz_question_answers .answers_type .list_of_select_multiple .scored= -_item_random.selected, .evaluation_quiz_question_answers .answers_type .lis= -t_of_checkbox .checkbox_item_random.selected, .evaluation_quiz_question_ans= -wers .answers_type .list_of_checkbox .scored_item_random.selected, .evaluat= -ion_quiz_question_answers .answers_type .list_of_scored .checkbox_item_rand= -om.selected, .evaluation_quiz_question_answers .answers_type .list_of_score= -d .scored_item_random.selected { color: rgb(34, 163, 171); } - -.evaluation_quiz_question_answers .answers_type .list_of_select .checkbox_i= -tem.dragging, .evaluation_quiz_question_answers .answers_type .list_of_sele= -ct .select_item.dragging, .evaluation_quiz_question_answers .answers_type .= -list_of_select .select_multiple_item.dragging, .evaluation_quiz_question_an= -swers .answers_type .list_of_select .scored_item.dragging, .evaluation_quiz= -_question_answers .answers_type .list_of_select_multiple .checkbox_item.dra= -gging, .evaluation_quiz_question_answers .answers_type .list_of_select_mult= -iple .select_item.dragging, .evaluation_quiz_question_answers .answers_type= - .list_of_select_multiple .select_multiple_item.dragging, .evaluation_quiz_= -question_answers .answers_type .list_of_select_multiple .scored_item.draggi= -ng, .evaluation_quiz_question_answers .answers_type .list_of_checkbox .chec= -kbox_item.dragging, .evaluation_quiz_question_answers .answers_type .list_o= -f_checkbox .select_item.dragging, .evaluation_quiz_question_answers .answer= -s_type .list_of_checkbox .select_multiple_item.dragging, .evaluation_quiz_q= -uestion_answers .answers_type .list_of_checkbox .scored_item.dragging, .eva= -luation_quiz_question_answers .answers_type .list_of_scored .checkbox_item.= -dragging, .evaluation_quiz_question_answers .answers_type .list_of_scored .= -select_item.dragging, .evaluation_quiz_question_answers .answers_type .list= -_of_scored .select_multiple_item.dragging, .evaluation_quiz_question_answer= -s .answers_type .list_of_scored .scored_item.dragging { background: rgb(243= -, 243, 243); border: 1px solid rgb(195, 195, 195); border-radius: 4px; opac= -ity: 0.7; } - -.evaluation_quiz_question_answers .answers_type .list_of_select .checkbox_i= -tem_edit_text, .evaluation_quiz_question_answers .answers_type .list_of_sel= -ect .select_item_edit_text, .evaluation_quiz_question_answers .answers_type= - .list_of_select .select_multiple_item_edit_text, .evaluation_quiz_question= -_answers .answers_type .list_of_select .scored_item_edit_text, .evaluation_= -quiz_question_answers .answers_type .list_of_select_multiple .checkbox_item= -_edit_text, .evaluation_quiz_question_answers .answers_type .list_of_select= -_multiple .select_item_edit_text, .evaluation_quiz_question_answers .answer= -s_type .list_of_select_multiple .select_multiple_item_edit_text, .evaluatio= -n_quiz_question_answers .answers_type .list_of_select_multiple .scored_item= -_edit_text, .evaluation_quiz_question_answers .answers_type .list_of_checkb= -ox .checkbox_item_edit_text, .evaluation_quiz_question_answers .answers_typ= -e .list_of_checkbox .select_item_edit_text, .evaluation_quiz_question_answe= -rs .answers_type .list_of_checkbox .select_multiple_item_edit_text, .evalua= -tion_quiz_question_answers .answers_type .list_of_checkbox .scored_item_edi= -t_text, .evaluation_quiz_question_answers .answers_type .list_of_scored .ch= -eckbox_item_edit_text, .evaluation_quiz_question_answers .answers_type .lis= -t_of_scored .select_item_edit_text, .evaluation_quiz_question_answers .answ= -ers_type .list_of_scored .select_multiple_item_edit_text, .evaluation_quiz_= -question_answers .answers_type .list_of_scored .scored_item_edit_text { wid= -th: 100%; } - -.evaluation_quiz_question_answers .answers_type input { display: inline-blo= -ck; margin-right: 15px; width: 80%; } - -.evaluation_quiz_question_answers .answers_type input[type=3D"checkbox"] { = -width: auto; } - -.evaluation_quiz_question_answers .answers_type input[type=3D"number"] { wi= -dth: 8%; } - -.evaluation_quiz_question_answers .answers_type .checkbox_item.row, .evalua= -tion_quiz_question_answers .answers_type .checkbox_item .row, .evaluation_q= -uiz_question_answers .answers_type .select_item.row, .evaluation_quiz_quest= -ion_answers .answers_type .select_item .row, .evaluation_quiz_question_answ= -ers .answers_type .select_multiple_item.row, .evaluation_quiz_question_answ= -ers .answers_type .select_multiple_item .row, .evaluation_quiz_question_ans= -wers .answers_type .scored_item.row, .evaluation_quiz_question_answers .ans= -wers_type .scored_item .row { align-items: center; display: flex; margin: 0= -px 0px 5px; } - -.evaluation_quiz_question_answers .answers_type .checkbox_item .checkbox_va= -lue, .evaluation_quiz_question_answers .answers_type .checkbox_item .scored= -_value, .evaluation_quiz_question_answers .answers_type .select_item .check= -box_value, .evaluation_quiz_question_answers .answers_type .select_item .sc= -ored_value, .evaluation_quiz_question_answers .answers_type .select_multipl= -e_item .checkbox_value, .evaluation_quiz_question_answers .answers_type .se= -lect_multiple_item .scored_value, .evaluation_quiz_question_answers .answer= -s_type .scored_item .checkbox_value, .evaluation_quiz_question_answers .ans= -wers_type .scored_item .scored_value { padding-left: 0px; } - -.evaluation_quiz_question_answers .answers_type .checkbox_item input, .eval= -uation_quiz_question_answers .answers_type .select_item input, .evaluation_= -quiz_question_answers .answers_type .select_multiple_item input, .evaluatio= -n_quiz_question_answers .answers_type .scored_item input { margin-top: 0px;= - } - -.evaluation_quiz_question_answers .answers_type .checkbox_item pre, .evalua= -tion_quiz_question_answers .answers_type .checkbox_item p, .evaluation_quiz= -_question_answers .answers_type .select_item pre, .evaluation_quiz_question= -_answers .answers_type .select_item p, .evaluation_quiz_question_answers .a= -nswers_type .select_multiple_item pre, .evaluation_quiz_question_answers .a= -nswers_type .select_multiple_item p, .evaluation_quiz_question_answers .ans= -wers_type .scored_item pre, .evaluation_quiz_question_answers .answers_type= - .scored_item p { margin-bottom: 0px; } - -.evaluation_quiz_question_answers .answers_type .select_item.row .w-20 { wi= -dth: 20px; } - -.evaluation_quiz_question_answers .answers_type .with_add_button { min-heig= -ht: 80px; width: 80%; } - -.evaluation_quiz_question_answers .answers_type .select_item_add, .evaluati= -on_quiz_question_answers .answers_type .select_multiple_item_add, .evaluati= -on_quiz_question_answers .answers_type .checkbox_item_add, .evaluation_quiz= -_question_answers .answers_type .scored_item_add { color: rgb(0, 136, 0); c= -ursor: pointer; display: inline-block; font-size: 22px; } - -.evaluation_quiz_question_answers .answers_type .select_item_delete, .evalu= -ation_quiz_question_answers .answers_type .select_multiple_item_delete, .ev= -aluation_quiz_question_answers .answers_type .checkbox_item_delete, .evalua= -tion_quiz_question_answers .answers_type .scored_item_delete { color: rgb(2= -55, 0, 0); cursor: pointer; display: inline-block; font-size: 22px; padding= --left: 15px; padding-right: 30px; text-align: center; } - -.evaluation_quiz_question_answers .evaluation_quiz_question_answers_list .e= -valuation_quiz_question_answer_item { margin-top: 10px; } - -.evaluation_quiz_question_answers .evaluation_quiz_question_answers_list .e= -valuation_quiz_question_answer_item textarea { height: 100px; } - -.evaluation_quiz_question_answers .evaluation_quiz_question_answers_list .e= -valuation_quiz_question_answer_item input[type=3D"checkbox"], .evaluation_q= -uiz_question_answers .evaluation_quiz_question_answers_list .evaluation_qui= -z_question_answer_item input[type=3D"number"] { margin-right: 10px; } - -.evaluation_quiz_question_answers .evaluation_quiz_question_answers_list .e= -valuation_quiz_question_answer_item .evaluation_quiz_question_answer_item_d= -elete { color: rgb(255, 0, 0); cursor: pointer; margin-top: 10px; } - -.evaluation_quiz_question_answers .evaluation_quiz_question_answers_add { c= -olor: rgb(255, 0, 0); cursor: pointer; } - -.evaluation_quiz_question_answer ul { list-style-type: none; padding: 0px; = -} - -.evaluation_quiz_question_answer ul input[type=3D"checkbox"] { float: left;= - margin: 4px 10px 0px 0px; } - -.evaluation_quiz_question_answer ul li { margin: 5px 0px; } - -.evaluation_quiz_question_answer ul li .bkg-li { margin-left: -5px; padding= -: 4px 5px; } - -.evaluation_quiz_question_answer ul li .bkg-li.correct-answer { background:= - rgb(120, 205, 210); } - -.evaluation_quiz_question_answer ul li .bkg-li.wrong-answer { background: r= -gb(224, 0, 60); color: rgb(255, 255, 255); } - -.evaluation-quiz { display: flex; flex-direction: column; min-height: 77vh;= - } - -.evaluation-quiz > .header .level1 { align-items: center; background: white= -; box-shadow: rgb(239, 239, 239) 0px 2px 5px; display: flex; justify-conten= -t: space-between; left: 70px; padding: 10px 20px; position: fixed; top: 0px= -; width: calc(100% - 70px); z-index: 1; } - -.evaluation-quiz > .header .level1 .left, .evaluation-quiz > .header .level= -1 .right { width: 25%; } - -.evaluation-quiz > .header .level1 .left h1, .evaluation-quiz > .header .le= -vel1 .right h1 { margin: 0px; } - -@media screen and (max-width: 500px) { - .evaluation-quiz > .header .level1 .left, .evaluation-quiz > .header .lev= -el1 .right { width: 50%; } -} - -.evaluation-quiz > .header .level1 .center { padding-left: 30px; padding-ri= -ght: 30px; text-align: center; width: 50%; } - -.evaluation-quiz > .header .level1 .center .time-progress .progress { heigh= -t: 10px; margin-bottom: 0px; margin-top: 5px; } - -.evaluation-quiz > .header .level1 .center .time-progress .time-alert { ani= -mation: 1s linear 0s infinite normal none running blink_effect; } - -@keyframes blink_effect {=20 - 0% { visibility: hidden; } - 50% { visibility: hidden; } - 100% { visibility: visible; } -} - -.evaluation-quiz > .header .level1 .center .message { padding: 5px; } - -@media screen and (max-width: 500px) { - .evaluation-quiz > .header .level1 .center { order: 3; width: 100%; } -} - -.evaluation-quiz > .header .level1 .right { text-align: right; } - -.evaluation-quiz > .header .level1 .right .question-progress { display: inl= -ine-block; width: 50px; } - -@media screen and (max-width: 500px) { - .evaluation-quiz > .header .level1 { flex-wrap: wrap; } -} - -@media screen and (max-width: 768px) { - .evaluation-quiz > .header .level1 { left: 0px; padding: 10px; width: 100= -%; } -} - -.evaluation-quiz > .header .level2 { padding-bottom: 30px; padding-top: 110= -px; } - -@media screen and (max-width: 768px) { - .evaluation-quiz > .header .level2 { padding-top: 70px; } -} - -.evaluation-quiz > .header .title { align-items: center; display: flex; jus= -tify-content: space-between; } - -.evaluation-quiz > .header .title > div { font-size: 1em; } - -.evaluation-quiz > .header .description { font-size: 1em; } - -.evaluation-quiz > .header .spinner { margin: 30px auto; } - -.evaluation-quiz .overview { display: flex; flex-direction: column; flex-gr= -ow: 1; justify-content: center; text-align: center; } - -.evaluation-quiz .overview .description { font-size: 1em; margin: 40px 0px;= - text-align: left; } - -.evaluation-quiz .overview button:last-child { margin-left: 10px; } - -.evaluation-quiz .question .header { background: rgb(239, 239, 239); border= -: 1px solid rgb(239, 239, 239); border-top-left-radius: 10px; border-top-ri= -ght-radius: 10px; overflow: auto; padding: 20px; } - -.evaluation-quiz .question .header .title { font-size: 1.3em; } - -.evaluation-quiz .question .header .sub-title, .evaluation-quiz .question .= -header .label { font-size: 1em; } - -.evaluation-quiz .question .header .sub-title { margin-top: 20px; max-width= -: 100%; width: max-content; } - -.evaluation-quiz .question .header .sub-title img { width: 100%; } - -@media screen and (max-width: 768px) { - .evaluation-quiz .question .header .sub-title { width: auto; } -} - -.evaluation-quiz .question form { border: 1px solid rgb(239, 239, 239); bor= -der-bottom-left-radius: 10px; border-bottom-right-radius: 10px; padding: 20= -px; } - -.evaluation-quiz .question form .answer-option-container .answer-option { a= -lign-items: center; cursor: pointer; display: flex; font-size: 1.2em; margi= -n-bottom: 20px; } - -.evaluation-quiz .question form .answer-option-container .answer-option .bt= -n { align-items: center; border-radius: 20px; display: flex; flex-shrink: 0= -; font-size: 1.3em; height: 40px; justify-content: center; margin-right: 20= -px; text-align: center; width: 40px; } - -.evaluation-quiz .question form .answer-option-container .answer-option .co= -ntent p { margin: 0px; } - -.evaluation-quiz .question form textarea { min-height: 150px; min-width: 40= -0px; } - -.evaluation-quiz .question form .actions { align-items: center; display: fl= -ex; justify-content: space-between; margin-top: 50px; text-align: center; } - -@media screen and (max-width: 768px) { - .evaluation-quiz .question form .answer-option-container .answer-option .= -btn { font-size: 1em; height: 40px; width: 40px; } -} - -.fileUploader .uploading { height: 34px; padding: 0px 10px; } - -.fileUploader .uploading a { margin-left: 5px; } - -.fileUploader .progress { height: 7px; margin: 3px 0px 4px; max-width: 400p= -x; } - -.fileUploader .progress .progress-bar { font-size: 7px; line-height: 7px; } - -.fileUploader .success, .fileUploader .error { line-height: 34px; padding: = -0px 10px; } - -.fileUploader .success a, .fileUploader .error a { margin-left: 5px; } - -.panel .gantt_container { border: none; } - -.dhx_year_tooltip { display: none; } - -.scheduler-legend { border: none !important; box-shadow: none !important; c= -olor: rgb(54, 45, 38) !important; cursor: initial !important; font-weight: = -400 !important; } - -.no-project { background-color: rgb(252, 248, 227) !important; border-botto= -m: 2px solid rgb(240, 173, 78) !important; color: rgb(34, 34, 34) !importan= -t; } - -.time-off { background-color: rgb(238, 240, 241) !important; border-bottom:= - 2px solid rgb(152, 163, 174) !important; color: rgb(34, 34, 34) !important= -; } - -.dhx_year_box { margin: 0px !important; } - -.dhx_year_box .dhx_year_month { border: none; color: rgb(219, 62, 62); font= --size: 14px; font-weight: bold; height: 20px; line-height: 20px; padding: 0= -px; } - -.dhx_year_box .dhx_year_grid .dhx_year_week .dhx_scale_bar { border: none; = -color: unset; font-weight: bold; } - -.dhx_year_box .dhx_year_grid .dhx_year_body { border: none; } - -.dhx_year_box .dhx_year_grid .dhx_year_body .dhx_before, .dhx_year_box .dhx= -_year_grid .dhx_year_body .dhx_after { visibility: hidden; } - -.dhx_year_box .dhx_year_grid .dhx_year_body .dhx_month_head { border: none;= - } - -.dhx_year_box .dhx_year_grid .dhx_year_body .dhx_month_head > div.before-st= -art, .dhx_year_box .dhx_year_grid .dhx_year_body .dhx_month_head > div.afte= -r-end { opacity: 0.3; } - -.dhx_year_box .dhx_year_grid .dhx_year_body .dhx_month_body { border: none;= - } - -.groups-grid { display: grid; gap: 1rem; grid-template-columns: repeat(var(= ---groups-grid-cols, 1), minmax(250px, 1fr)); } - -@media (max-width: 767px) { - .groups-grid { --groups-grid-cols: 1; } -} - -@media (min-width: 768px) { - .groups-grid { --groups-grid-cols: 2; } -} - -@media (min-width: 1200px) { - .groups-grid { --groups-grid-cols: 3; } -} - -.groups-grid .panel { height: fit-content; margin-bottom: 0px; } - -.tool-coupons-list li { margin-bottom: 20px; } - -.tool-coupons-list .tc-request { color: rgb(219, 62, 62); cursor: pointer; = -} - -.tool-coupons-list .tc-request:hover { color: rgb(219, 62, 62); } - -.tool-coupons-list .tc-loading { display: none; font-size: 18px; } - -.tool-coupons-list .tc-code { display: none; } - -.tool-coupons-list .tc-error { color: rgb(217, 83, 79); display: none; marg= -in-left: 20px; } - -.tool-coupons-list .tc-info { margin-top: 10px; } - -.navigation hr { border-top-color: rgb(238, 238, 238); } - -.navigation > ul { list-style: none; } - -.navigation > ul > li { margin: 13px 0px; } - -.navigation > ul > li > div { margin: 13px 0px; } - -.navigation > ul > li a { align-items: center; color: inherit; display: fle= -x; text-decoration: none; } - -.navigation > ul > li a:hover, .navigation > ul > li a:active { text-decora= -tion: none; } - -.navigation > ul > li a .icon, .navigation > ul > li a .image { align-items= -: center; border-radius: 15px; color: rgb(152, 163, 174); display: flex; fo= -nt-size: 20px; height: 44px; justify-content: center; margin: auto; width: = -44px; } - -@media (max-width: 768px) { - .navigation > ul > li a .icon, .navigation > ul > li a .image { margin: 0= -px 20px 0px 0px; } -} - -.navigation > ul > li a .icon:hover, .navigation > ul > li a .image:hover {= - background-color: rgb(219, 62, 62); color: rgb(238, 238, 238); } - -.navigation > ul > li a .icon.active, .navigation > ul > li a .image.active= - { background-color: rgb(219, 62, 62); color: rgb(238, 238, 238); } - -.navigation > ul > li a .image { padding: 10px; } - -.navigation > ul > li a .image .inner { background-repeat: no-repeat; backg= -round-size: cover; border-radius: 10px; height: 100%; width: 100%; } - -.navigation > ul > li a .image.slack .inner { background-image: url("/asset= -s/slack-logo-4e959344c754db5a76e6d3b54c4b6507ca081239996f13f4d4fe521745e2c0= -aa.svg"); } - -.navigation > ul > li a .visible-xs { color: black; font-size: 16px; } - -#nps_form .nps_slider { margin: 30px 0px; } - -#nps_form .nps_slider ul { display: flex; flex-flow: wrap; list-style: none= -; margin: 0px; padding: 0px; user-select: none; } - -#nps_form .nps_slider ul li { position: relative; } - -#nps_form .nps_slider ul li.number label { background: rgb(248, 249, 250); = -border: 1px solid rgb(222, 226, 230); border-radius: 24px; color: rgb(73, 8= -0, 87); cursor: pointer; font-size: 20px; font-weight: 600; height: 48px; l= -ine-height: 48px; text-align: center; width: 48px; } - -#nps_form .nps_slider ul li.number label:hover { background: rgb(181, 227, = -216); color: rgb(255, 255, 255); } - -#nps_form .nps_slider ul li.number input[type=3D"radio"] { display: none; } - -#nps_form .nps_slider ul li.number input[type=3D"radio"]:checked + label { = -background: rgb(161, 214, 202); border-color: rgb(161, 214, 202); color: rg= -b(255, 255, 255); } - -#nps_form .nps_slider ul li.number.has_legend { margin-bottom: 30px; } - -#nps_form .nps_slider ul li.number .legend { left: 0px; margin: 0px; positi= -on: absolute; width: max-content; } - -@media (min-width: 928px) { - #nps_form .nps_slider ul li.number:last-child .legend { left: auto; right= -: 0px; } -} - -#nps_form .nps_slider ul li.sep { border-bottom: 2px solid rgb(222, 226, 23= -0); height: 23px; margin-top: 0px; width: 20px; } - -#nps_form textarea { margin: 0px; max-width: 1000px; min-height: 100px; pad= -ding: 10px; } - -#nps_form .actions { margin: 30px 0px; } - -.pagination { display: flex; flex-flow: row nowrap; gap: 2px; justify-conte= -nt: center; margin-bottom: 16px; margin-top: 16px; text-align: center; } - -.pagination a, .pagination span, .pagination em { border: 1px solid transpa= -rent; border-radius: 6px; color: rgb(51, 51, 51); cursor: pointer; font-sty= -le: normal; line-height: 20px; min-width: 32px; padding: 5px 10px; text-ali= -gn: center; transition: border-color 0.2s cubic-bezier(0.3, 0, 0.5, 1) 0s; = -user-select: none; vertical-align: middle; white-space: nowrap; } - -.pagination a:hover, .pagination a:focus, .pagination span:hover, .paginati= -on span:focus, .pagination em:hover, .pagination em:focus { border-color: r= -gb(206, 206, 206); text-decoration: none; transition-duration: 0.1s; } - -.pagination .current, .pagination .current:hover, .pagination [aria-current= -]:not([aria-current=3D"false"]) { background-color: rgb(219, 62, 62); borde= -r-color: transparent; color: rgb(255, 255, 255); } - -.pagination .previous, .pagination .next { color: rgb(219, 62, 62); } - -.pagination .page-gap, .pagination .disabled, .pagination [aria-disabled=3D= -"true"], .pagination .page-gap:hover, .pagination .disabled:hover, .paginat= -ion [aria-disabled=3D"true"]:hover { border-color: transparent; color: rgb(= -85, 85, 85); cursor: default; } - -.pathway .progress-bordered { border-color: rgb(229, 230, 230); } - -.pathway .progress-bordered.active { border-color: rgb(152, 163, 174); } - -.pathway .progress-rectangle { background: rgb(229, 230, 230); } - -.pathway .progress-rectangle.active { background: rgb(152, 163, 174); } - -.pathway .project-circle { background: white; } - -.pathway .project-circle .circular-progress-bar-radial-separator { backgrou= -nd: white; } - -.pathway .project-circle .CircularProgressbar-path { stroke: rgb(219, 62, 6= -2); } - -.pathway .project-circle .CircularProgressbar-trail { stroke: rgb(229, 230,= - 230); } - -.pathway .project-circle .project-circle-body.active { background: rgb(152,= - 163, 174); } - -.pathway .project-circle .project-circle-score { background: white; box-sha= -dow: rgb(229, 230, 230) 0px 0px 1px 1px; color: rgb(219, 62, 62); font-weig= -ht: bold; } - -.pathway .project-circle-on-tile { background: white; } - -.pathway .project-circle-on-tile .circular-progress-bar-radial-separator { = -background: white; } - -.pathway .project-circle-on-tile .CircularProgressbar-trail { stroke: rgb(1= -52, 163, 174); } - -@media print { - main { overflow-y: visible; } - .signed_in main { margin-left: 0px; } - nav { display: none; } - .no-print { display: none; } -} - -.project .metadata { font-size: 11px; } - -.project .project-header .panel-body .metadata { margin: 20px 0px; } - -.project .project-header .panel-body .metadata .list-group-item { backgroun= -d-color: transparent; } - -@media (max-width: 420px) { - .project .project-header .panel-body { flex-wrap: wrap; } - .project .project-header .panel-body .pathway { margin: auto; } - .project .project-header .panel-body .actions { justify-content: center; = -} -} - -.project .admin-corner .list-group-item { font-size: 11px; } - -div.well h3:first-child { margin-top: 0px; } - -#form-project #quiz textarea { height: 200px; } - -#form-project #quiz .quiz_question_answers .quiz_question_answers_list .qui= -z_question_answer_item { margin-top: 10px; } - -#form-project #quiz .quiz_question_answers .quiz_question_answers_list .qui= -z_question_answer_item textarea { height: 100px; } - -#form-project #quiz .quiz_question_answers .quiz_question_answers_list .qui= -z_question_answer_item input[type=3D"checkbox"] { margin-right: 10px; } - -#form-project #quiz .quiz_question_answers .quiz_question_answers_list .qui= -z_question_answer_item .quiz_question_answer_item_delete { color: rgb(255, = -0, 0); cursor: pointer; margin-top: 10px; } - -#form-project #quiz .quiz_question_answers .quiz_question_answers_add { col= -or: rgb(255, 0, 0); cursor: pointer; } - -.quiz_questions_show_container h4.quiz_question { font-weight: bold; margin= --bottom: 20px; } - -.quiz_questions_show_container .quiz_question_item_container { margin-top: = -20px; } - -.quiz_questions_show_container .quiz_question_item_container > :only-child = -{ margin-left: -20px; padding-left: 20px; } - -.quiz_questions_show_container .quiz_question_item_container > .wrong:only-= -child { border-bottom-left-radius: 6px; border-left: 8px solid rgb(217, 83,= - 79); border-top-left-radius: 6px; padding-left: 12px; } - -.quiz_questions_show_container .quiz_question_item_container > .wrong:only-= -child h4.quiz_question { color: rgb(217, 83, 79); } - -.quiz_questions_show_container .quiz_question_item_container > .wrong:only-= -child .quiz_question_answers input[type=3D"checkbox"]:checked + label { col= -or: rgb(217, 83, 79); } - -.quiz_questions_show_container .quiz_question_answers { list-style-type: no= -ne; padding: 0px; } - -.quiz_questions_show_container .quiz_question_answers input[type=3D"checkbo= -x"], .quiz_questions_show_container .quiz_question_answers input[type=3D"ra= -dio"] { float: left; margin: 4px 10px 0px 0px; } - -.quiz_questions_show_container .quiz_question_answers label { display: inhe= -rit; font-weight: inherit; margin-bottom: unset; max-width: unset; } - -.quiz_questions_show_container .quiz_questions_results { margin-top: 30px; = -text-align: center; } - -.quiz_questions_show_container .quiz_questions_results .error { color: rgb(= -217, 83, 79); display: none; font-weight: bold; margin: 30px; } - -.quiz_questions_show_container .quiz_questions_results .spinner { display: = -none; } - -#quiz_questions_collapse_toggle { cursor: pointer; margin: 0px 5px; text-de= -coration: underline; } - -.slider-horizontal { margin-left: 20px; } - -.slider-horizontal .slider-handle { background: rgb(219, 62, 62); } - -#slider_value_right { margin-left: 20px; } - -h2.no-margin-bottom { margin-bottom: 20px; } - -input[data-type=3D"comment"] { display: inline-block; margin-left: 3px; wid= -th: 84%; } - -#reefinery_save_button { float: right; margin-right: 7px; position: relativ= -e; width: 200px; } - -#reefinery_save_button.sending { opacity: 0.5; } - -#reefinery_save_button i { font-size: 18px; opacity: 0; position: absolute;= - right: 20px; transform: scale(0.0001); transition: opacity 0.3s ease-in-ou= -t 0s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s; } - -#reefinery_save_button.score_saved i { opacity: 1; transform: scale(1); } - -#reefinery_skip_button { left: 90px; position: relative; width: 200px; } - -#reefinery_skip_button.sending { opacity: 0.5; } - -#reefinery_skip_button i { font-size: 18px; opacity: 0; position: absolute;= - right: 20px; transform: scale(0.0001); transition: opacity 0.3s ease-in-ou= -t 0s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s; } - -#reefinery_skip_button.score_saved i { opacity: 1; transform: scale(1); } - -#student_reefinery_footer { background-color: rgb(248, 248, 248); border-to= -p: 1px solid rgb(205, 205, 205); bottom: 0px; box-shadow: rgb(136, 136, 136= -) 2px 2px 10px; left: 70px; padding: 16px 50px; position: fixed; right: 0px= -; transition: height 0.25s ease 0s; } - -#student_reefinery_footer.less_10min { background-color: rgb(255, 193, 119)= -; } - -#student_reefinery_footer.less_5min { background-color: rgb(255, 145, 119);= - } - -#student_reefinery_footer.less_1min { background-color: rgb(250, 67, 67); } - -#student_reefinery_footer .small_panel { align-items: center; display: flex= -; justify-content: space-between; } - -#student_reefinery_footer .small_panel .student_reefinery_who { max-width: = -33%; text-align: left; } - -#student_reefinery_footer .small_panel .student_reefinery_progress { max-wi= -dth: 33%; text-align: center; } - -#student_reefinery_footer .small_panel .student_reefinery_time { max-width:= - 33%; text-align: right; } - -#student_reefinery_footer .full_panel { display: none; } - -#student_reefinery_footer.show_panel { height: 100%; overflow: scroll; } - -#student_reefinery_footer.show_panel .small_panel { display: none; } - -#student_reefinery_footer.show_panel .full_panel { display: block; } - -#student_reefinery_footer textarea { max-width: 100%; min-height: 100px; mi= -n-width: 100%; } - -@media (max-width: 768px) { - #student_reefinery_footer { left: 0px; padding: 12px 32px; } -} - -.interviewer_help { display: none; } - -.interviewer_help_button, .interviewer_extra_help_button { color: rgb(219, = -62, 62); cursor: pointer; } - -#task_extra_help { margin-bottom: 10px; } - -#task_extra_help .interviewer_extra_help_content { display: none; } - -#task_project_link { margin-bottom: 10px; } - -div.reefinery_dialog { background-color: rgb(239, 239, 239); border-width: = -4px 1px 2px; border-style: solid; border-image: initial; border-color: rgb(= -176, 1, 0) rgb(153, 153, 153) rgb(187, 187, 187); border-top-left-radius: 9= -px; border-top-right-radius: 9px; margin: 4em auto 0px; max-width: 33em; pa= -dding-bottom: 10px; text-align: center; } - -div.reefinery_dialog h1 { color: rgb(115, 14, 21); font-size: 100%; line-he= -ight: 1.5em; } - -.reefinery_correction ul { padding-left: 0px; } - -.reefinery_correction li { list-style-type: none; padding-left: 20px; } - -.reefinery_topics_task h4 { margin-top: 50px; } - -.reefinery_topics_task p.info { margin: 0px; } - -.rheostat-progress { background-color: rgb(219, 62, 62); } - -.school_location_facility_spaces .action { cursor: pointer; display: block;= - font-size: 22px; height: 34px; width: 34px; } - -.school_location_facility_spaces .action.add_new_value { color: rgb(0, 136,= - 0); } - -.school_location_facility_spaces .action.remove_value { color: rgb(255, 0, = -0); } - -.school_location_facility_spaces .values_list li { line-height: 34px; } - -.school_location_facility_spaces .values_list li .action { display: inline;= - margin-left: 20px; } - -.search-container { padding: 1rem 0px 2.5rem; } - -.search-results { border-bottom-left-radius: 4px; border-bottom-right-radiu= -s: 4px; box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.= -05) 0px 4px 6px -2px; max-height: 20rem; overflow-y: auto; position: absolu= -te; width: calc(100% - 30px); z-index: 3; } - -.search-results .list-group > div:first-child, .search-results .list-group-= -item:first-child { border-bottom: 0px; border-top: 0px; border-top-left-rad= -ius: 0px; border-top-right-radius: 0px; margin-bottom: 0px; } - -.search-results .list-group-item:last-child { border-bottom: 0px; } - -.search-results .list-group > .list-group-item { box-shadow: rgba(0, 0, 0, = -0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px; } - -#search-button { position: fixed; transition: all 0.4s ease-out 0s; z-index= -: 200; } - -#search-button .fa-window-minimize { display: none; } - -#search-button .fa-window-minimize, #search-button .fa-search { position: a= -bsolute; transition: all 0.4s ease-out 0s; } - -#search-button:hover { transition: all 0.4s ease-out 0s; } - -#search-button:hover .fa-window-minimize, #search-button:hover .fa-search {= - transition: all 0.4s ease-out 0s; } - -#search-bar { background-color: rgb(219, 62, 62); border: none; border-radi= -us: 10px; color: white; height: 50px; text-align: center; width: 100%; } - -#search-bar:focus { outline: none; } - -#search-bar::placeholder { color: white; } - -#search-modal #search-bar-container { position: relative; } - -#search-modal #search-error-message { position: relative; text-align: cente= -r; } - -#search-modal .search-result-card .fa { color: rgb(219, 62, 62); } - -#search-modal .search-result-card .users-full_name, #search-modal .search-r= -esult-card .users-batch { display: inline-block; } - -#search-modal .search-result-card .users-full_name { margin-right: 15px; } - -#search-modal .search-result-card .users-batch { margin-left: 10px; } - -@media (min-width: 320px) and (max-width: 768px) { - #search-button { border-radius: 7px; bottom: 20px; height: 44px; right: 2= -0px; width: 44px; } - #search-button .fa-window-minimize, #search-button .fa-search { font-size= -: 30px; top: 15%; } - #search-button .fa-search { left: 19%; } - #search-button .fa-window-minimize { left: 16%; } - #search-bar { font-size: medium; } - #search-error-message { font-size: medium; } -} - -@media (min-width: 769px) and (max-width: 1024px) { - #search-button { border-radius: 7px; bottom: 30px; height: 44px; right: 3= -0px; width: 44px; } - #search-button .fa-window-minimize, #search-button .fa-search { font-size= -: 30px; top: 15%; } - #search-button .fa-search { left: 19%; } - #search-button .fa-window-minimize { left: 16%; } - #search-bar { font-size: larger; } - #search-error-message { font-size: larger; } -} - -@media (min-width: 1025px) { - #search-button { border-radius: 7px; bottom: 40px; height: 50px; right: 4= -0px; width: 50px; } - #search-button .fa-window-minimize, #search-button .fa-search { font-size= -: 30px; top: 18%; } - #search-button .fa-search { left: 22%; } - #search-button .fa-window-minimize { left: 19%; } - #search-bar { font-size: large; } - #search-error-message { font-size: large; } -} - -.sidebar { background: white; border-right: 1px solid rgb(229, 230, 230); b= -ottom: 0px; overflow-y: scroll; padding-top: 20px; position: absolute; text= --align: center; top: 0px; width: 70px; } - -.sidebar::-webkit-scrollbar { display: none; } - -.sidebar .logo-container { background: white; border-bottom: 1px solid rgb(= -238, 238, 238); border-right: 1px solid rgb(238, 238, 238); left: 0px; padd= -ing: 20px 10px; position: fixed; top: 0px; width: 70px; } - -.sidebar .logo-container .logo { background: url("/assets/holberton-logo-fu= -ll-alx-d053727941512ebe04b797ca87d81a195004e9ff2d8a6aedf4004c5365cf8944.png= -") center center / contain no-repeat; height: 40px; margin: auto; width: 40= -px; } - -.sidebar > ul { margin-bottom: 140px; margin-top: 70px; padding: 0px 10px; = -} - -.sidebar > ul > li:last-child { background: white; border-right: 1px solid = -rgb(238, 238, 238); border-top: 1px solid rgb(238, 238, 238); bottom: 0px; = -left: 0px; margin-bottom: 0px; position: fixed; width: 70px; } - -@media (min-width: 992px) { - .student-home .self-paced .panel { height: 350px; } -} - -.student-home .self-paced .level-card .highcharts-graph { fill: rgb(219, 62= -, 62); opacity: 0.7; stroke: rgb(152, 163, 174); } - -.student-home .self-paced .level-card .highcharts-point { fill: rgb(152, 16= -3, 174); } - -.student-home .self-paced .progress-card .col-xs-3 { width: 140px; } - -.student-home .self-paced .progress-card .col-xs-9 { width: auto; } - -.student-home .self-paced .progress-card .progress-information { background= --color: white; margin-top: -10px; padding-top: 20px; z-index: 2; } - -@media (max-width: 991px) { - .student-home .self-paced .progress-card .progress-information { backgrou= -nd-color: transparent; } -} - -.student-home .self-paced .progress-card .progress-information .profile-pic= - { background-repeat: no-repeat; background-size: cover; border: 3px solid = -white; border-radius: 10px; box-shadow: rgb(229, 230, 230) 10px 20px 10px; = -height: 80px; margin: 0px 0px 20px 40px; width: 80px; } - -.student-home .self-paced .progress-card .progress-information .current-pos= -ition { font-family: inherit; font-size: 29px; margin: 0px 0px 20px 40px; w= -hite-space: nowrap; } - -.student-home .self-paced .progress-card .progress-information .current-inf= -ormation { margin: 0px 0px 0px 40px; white-space: nowrap; } - -.student-home .self-paced .progress-card .progress-pathway { height: 300px;= - margin-top: -10px; overflow: auto; z-index: 1; } - -@media (max-width: 991px) { - .student-home .self-paced .progress-card .progress-pathway { margin-top: = -15px; width: 100%; } -} - -.student-home .self-paced .summary-card .project-info { margin: 35px 20px 2= -0px; } - -.student-home .self-paced .summary-card .project-info h3 { font-size: 29px;= - margin-top: 0px; } - -.student-home .self-paced .summary-card .project-info p { margin: 0px; } - -.student-home .self-paced .summary-card .project-actions .btn { margin-bott= -om: 6px; } - -@media (min-width: 992px) { - .student-home .self-paced .events-card { height: 180px; } - .student-home .self-paced .events-card .list-group { height: 110px; overf= -low-y: scroll; } -} - -@media (min-width: 992px) { - .student-home .self-paced .user-reports-card { height: 150px; } -} - -.student-home .self-paced .concepts-card .list-group { height: 280px; overf= -low-y: scroll; } - -.student-home .self-paced .concepts-card .list-group .list-group-item { ali= -gn-items: center; display: flex; } - -.student-home .self-paced .concepts-card .list-group .list-group-item i { f= -ont-size: 30px; } - -.student-home .self-paced .concepts-card .list-group .list-group-item .cont= -ent { margin-left: 20px; } - -.blog_post_div { background-color: rgb(246, 245, 245); border: 1px solid rg= -b(238, 238, 238); border-radius: 5px; padding: 20px; } - -.blog_post_div .task_url_error_msg { color: rgb(217, 83, 79); } - -.task-card { margin-bottom: 50px; } - -.task-card .panel-heading > div { display: flex; } - -.task-card .panel-heading > div .label:not(:first-child) { margin-left: 5px= -; } - -.task-card .panel-footer .student_task_done .yes, .task-card .panel-footer = -.student_task_done .no, .task-card .panel-footer .student_task_done .pendin= -g { display: none; } - -.task-card .panel-footer .student_task_done.yes .yes, .task-card .panel-foo= -ter .student_task_done.no .no, .task-card .panel-footer .student_task_done.= -pending .pending { display: inline; } - -.task-card .panel-footer .student_task_done.pending { cursor: not-allowed; = -opacity: 0.5; } - -.task-card .panel-footer .student_task_done.yes { background-color: rgb(223= -, 240, 216); border-color: rgb(214, 233, 198); color: rgb(60, 118, 61); } - -.task-card .panel-footer .task_ask_new_correction.btn .in_progress_info, .t= -ask-card .panel-footer .task_ask_new_correction.btn .error_occurred_info { = -display: none; font-style: italic; } - -.task-card .panel-footer .task_ask_new_correction.btn.in_progress { cursor:= - default; opacity: 0.5; } - -.task-card .panel-footer .task_ask_new_correction.btn.in_progress .in_progr= -ess_info { display: inline; } - -.task-card .panel-footer .task_ask_new_correction.btn.in_progress .error_oc= -curred_info { display: none; } - -.task-card .panel-footer .task_ask_new_correction.btn.error_occurred .error= -_occurred_info { display: inline; } - -.users-done-list-inline { color: rgb(112, 135, 70); display: none; margin-b= -ottom: 10px; } - -.users-done-list-inline .more { cursor: pointer; font-weight: bold; } - -.task_correction_modal { text-align: left; } - -.task_correction_modal .error { color: rgb(217, 83, 79); font-weight: 600; = -margin: 20px; } - -.task_correction_modal .info { color: rgb(43, 82, 166); font-weight: 600; m= -argin: 20px; } - -.task_correction_modal .check { background-color: rgb(218, 243, 216); borde= -r: 1px solid rgb(204, 204, 204); border-radius: 4px; margin: 10px 0px; padd= -ing: 10px; } - -.task_correction_modal .check.failed { background-color: rgb(246, 220, 221)= -; } - -.task_correction_modal .check .commands { list-style-type: none; padding: 0= -px; } - -.task_correction_modal .check .commands .command { background-color: rgb(21= -8, 243, 216); border: 1px solid rgb(204, 204, 204); border-radius: 4px; mar= -gin: 10px 0px; padding: 5px; } - -.task_correction_modal .check .commands .command.failed { background-color:= - rgb(246, 220, 221); } - -.task_correction_modal .check .commands .command ul { list-style: none; pad= -ding: 5px; } - -.task_correction_modal .check-inline { background-color: rgb(238, 238, 238)= -; border-radius: 4px; display: inline-block; margin: 10px 5px; padding: 10p= -x 5px; position: relative; } - -.task_correction_modal .check-inline .information { position: absolute; rig= -ht: 5px; top: 3px; font-size: 12px !important; margin: 0px !important; } - -.task_correction_modal .check-inline .fa-check-circle, .task_correction_mod= -al .check-inline .fa-info-circle { color: rgb(38, 166, 85); } - -.task_correction_modal .check-inline .fa-check-circle { margin: 0px 5px; } - -.task_correction_modal .check-inline .fa-times-circle, .task_correction_mod= -al .check-inline .fa-info-circle { color: rgb(248, 0, 2); } - -.task_correction_modal .check-inline .fa-times-circle { margin: 0px 5px; } - -.task_correction_modal .check-inline.requirement.success { border: 1px soli= -d rgb(38, 166, 85); } - -.task_correction_modal .check-inline.requirement.success .fa-info-circle { = -color: rgb(38, 166, 85); } - -.task_correction_modal .check-inline.requirement.fail { border: 1px solid r= -gb(248, 0, 2); } - -.task_correction_modal .check-inline.requirement.fail .fa-info-circle { col= -or: rgb(248, 0, 2); } - -.task_correction_modal .check-inline.code.success { border: 2px solid rgb(3= -8, 166, 85); } - -.task_correction_modal .check-inline.code.success .fa-info-circle { color: = -rgb(38, 166, 85); } - -.task_correction_modal .check-inline.code.fail { border: 2px solid rgb(248,= - 0, 2); } - -.task_correction_modal .check-inline.code.fail .fa-info-circle { color: rgb= -(248, 0, 2); } - -.task_correction_modal .check-inline.answer.success { border: 2px solid rgb= -(38, 50, 166); } - -.task_correction_modal .check-inline.answer.success .fa-check-circle, .task= -_correction_modal .check-inline.answer.success .fa-info-circle { color: rgb= -(38, 50, 166); } - -.task_correction_modal .check-inline.answer.fail { border: 2px solid rgb(25= -5, 140, 0); } - -.task_correction_modal .check-inline.answer.fail .fa-times-circle, .task_co= -rrection_modal .check-inline.answer.fail .fa-info-circle { color: rgb(255, = -140, 0); } - -.task_correction_modal .check-inline.efficiency.success { border: 2px solid= - rgb(118, 1, 168); } - -.task_correction_modal .check-inline.efficiency.success .fa-check-circle, .= -task_correction_modal .check-inline.efficiency.success .fa-info-circle { co= -lor: rgb(118, 1, 168); } - -.task_correction_modal .check-inline.efficiency.fail { border: 2px solid rg= -b(255, 215, 0); } - -.task_correction_modal .check-inline.efficiency.fail .fa-times-circle, .tas= -k_correction_modal .check-inline.efficiency.fail .fa-info-circle { color: r= -gb(255, 215, 0); } - -.task_correction_modal .help { display: none; min-height: 30px; } - -.task_correction_modal .help button { appearance: none; background: none; b= -order: none; float: right; font-size: 20px; height: 30px; width: 30px; } - -.task_correction_modal .help .help-container { display: none; padding-top: = -30px; } - -.task_correction_modal .help .help-container.show { display: block; } - -.task_correction_modal .help .help-container .check-line { display: flex; f= -lex-direction: row; justify-content: center; } - -.task_correction_modal .help .help-container .check-line .check-inline:last= --child { margin-left: 30px; } - -.task_correction_modal.checker_in_beta .post-check-message { display: none;= - } - -.task_progress_score_bar { background: rgb(251, 254, 255); border: 1px soli= -d rgb(238, 238, 238); border-radius: 5px; color: rgb(152, 163, 174); height= -: 30px; line-height: 30px; margin-bottom: 20px; margin-right: 200px; positi= -on: relative; } - -.task_progress_score_bar .task_progress_bar { background: repeating-linear-= -gradient(-45deg, rgb(233, 236, 239), rgb(233, 236, 239) 10px, rgb(252, 252,= - 253) 10px, rgb(252, 252, 253) 20px); border-radius: 5px; height: 100%; tra= -nsition: width 0.5s ease-in 0s; width: 0%; } - -.task_progress_score_bar .task_score_bar { background: rgb(238, 240, 241); = -border-radius: 5px; height: 100%; width: 0%; } - -.task_progress_score_bar .task_progress_score_text { left: 10px; position: = -absolute; top: 0px; } - -.task_progress_score_bar .task_progress_value { font-size: 12px; font-style= -: italic; } - -.modal-title span { margin-left: 10px; padding: 5px; } - -.task_get_qa_review .list-group-item { border: 1px solid rgb(187, 187, 187)= -; border-radius: 0px; } - -.task_get_qa_review .list-group-item:first-child { border-top-left-radius: = -4px; border-top-right-radius: 4px; } - -.task_get_qa_review .list-group-item:last-child { border-bottom-left-radius= -: 4px; border-bottom-right-radius: 4px; } - -.task_get_qa_review .correction_reason { margin-bottom: 10px; overflow-x: a= -uto; } - -.task-card > .list-group .carousel .carousel-indicators > li { background-c= -olor: inherit; border: none; border-radius: 0px; display: list-item; font-s= -ize: 12px; height: auto; margin: 0px 6px; text-indent: unset; width: auto; = -} - -.task-card > .list-group .carousel .carousel-indicators > li.active { font-= -size: 130%; } - -.users-done-modal .modal-title { text-align: left; } - -.users-done-modal .list-group-item { text-align: left; } - -.users-done-modal a.student_task_help { font-size: 16px; width: 100%; } - -.users-done-modal .list-group .user { border: 1px solid rgb(221, 221, 221);= - margin: -1px 20px; min-height: 50px; padding: 5px 20px; text-align: left; = -} - -.users-done-modal .list-group .user > div { margin-top: 8px; } - -.users-done-modal .list-group .user a { color: inherit; margin-right: 5px; = -} - -.users-done-modal .list-group .user .full_name { margin: 0px 15px 0px 5px; = -} - -.users-done-modal .list-group .user .slack { margin-right: 5px; } - -.users-done-modal .list-group .user .batch { float: right; } - -.topbar.navbar-default { margin-bottom: 0px; } - -.topbar.navbar-default .navbar-collapse { border-bottom: 1px solid rgb(238,= - 238, 238); } - -.topbar .navbar-brand { align-items: center; display: flex; padding: 10px; = -} - -.topbar .navbar-brand .logo { background: url("/assets/holberton-logo-full-= -alx-d053727941512ebe04b797ca87d81a195004e9ff2d8a6aedf4004c5365cf8944.png") = -center center / contain no-repeat; height: 30px; width: 30px; } - -.topbar .nav li a { padding: 0px 13px; } - -.topbar hr { margin-bottom: 0px; margin-top: 0px; } - -#uploaderModal .uppy-DashboardItem-previewLink, #uploaderModal .uppy-Dashbo= -ardItem-copyLink { display: none; } - -#uploaderModal .uppy-new-upload-img-layer { align-items: center; display: f= -lex; flex-direction: row; height: 100%; justify-content: center; position: = -absolute; width: 100%; z-index: 1; } - -#uploaderModal .uppy-new-upload-img-layer i { background: rgb(255, 255, 255= -); border-radius: 35px; cursor: pointer; font-size: 25px; height: 35px; pad= -ding-left: 2px; padding-top: 5px; text-align: center; width: 35px; } - -#uploaderModal .gallery-filters { padding: 10px; } - -#uploaderModal .gallery-filters .gallery-filters-type { margin-right: 10px;= - } - -#uploaderModal .gallery-filters .gallery-filters-nb-elements { margin-left:= - 10px; margin-right: 10px; } - -#uploaderModal .gallery-filters .pageRefresh { margin-left: 10px; padding: = -4px; } - -#uploaderModal #image-gallery { display: flex; flex-wrap: wrap; } - -#uploaderModal #image-gallery .gallery-image-wrapper { background-repeat: n= -o-repeat; background-size: cover; display: inline-block; margin: 5px; posit= -ion: relative; width: 23%; } - -#uploaderModal #image-gallery .gallery-image-wrapper .bg-image { background= --size: cover; border: 1px solid rgb(242, 242, 242); border-radius: 3px; hei= -ght: 100px; position: relative; } - -#uploaderModal #image-gallery .gallery-image-wrapper .bg-image .preview-foo= -ter { background: rgba(0, 0, 0, 0.35); bottom: 0px; height: 20px; left: 0px= -; position: absolute; right: 0px; } - -#uploaderModal #image-gallery .gallery-image-wrapper .bg-image .preview-foo= -ter .upload-add { background: rgba(255, 255, 255, 0.9); border-radius: 22px= -; cursor: pointer; font-size: 16px; height: 100%; margin: auto; text-align:= - center; width: 22px; } - -#uploaderModal #image-gallery .gallery-image-wrapper .bg-image .preview-foo= -ter .upload-remove { border-radius: 18px; bottom: 2px; color: rgb(217, 83, = -79); cursor: pointer; font-size: 12px; position: absolute; right: 5px; text= --align: center; width: 18px; } - -#uploaderModal #image-gallery .gallery-image-wrapper .bg-image .preview-foo= -ter .upload-preview { border-radius: 18px; bottom: 2px; cursor: pointer; fo= -nt-size: 12px; left: 5px; position: absolute; text-align: center; width: 18= -px; } - -#uploaderModal #image-gallery .gallery-image-wrapper .bg-image .preview-foo= -ter .upload-preview .upload-preview-link { color: rgb(255, 255, 255); } - -#uploaderModal #image-gallery .gallery-image-wrapper .upload-name { font-si= -ze: 11px; height: 15px; overflow: hidden; text-align: center; vertical-alig= -n: middle; white-space: nowrap; } - -#uploaderModal .upload-url-container { display: flex; } - -#uploaderModal .upload-url-container a { margin-left: 15px; } - -#uploaderModal #pills-url .gallery-image-wrapper { background-repeat: no-re= -peat; background-size: cover; display: inline-block; margin: 5px; position:= - relative; width: 23%; } - -#uploaderModal #pills-url .gallery-image-wrapper .bg-image { background-siz= -e: cover; border: 1px solid rgb(242, 242, 242); border-radius: 3px; height:= - 100px; position: relative; } - -#uploaderModal #pills-url .gallery-image-wrapper .bg-image .preview-footer = -{ background: rgba(0, 0, 0, 0.35); bottom: 0px; height: 20px; left: 0px; po= -sition: absolute; right: 0px; } - -#uploaderModal #pills-url .gallery-image-wrapper .bg-image .preview-footer = -.upload-add { background: rgba(255, 255, 255, 0.9); border-radius: 22px; cu= -rsor: pointer; font-size: 16px; height: 100%; margin: auto; text-align: cen= -ter; width: 22px; } - -#uploaderModal #pills-url .gallery-image-wrapper .bg-image .preview-footer = -.upload-remove { border-radius: 18px; bottom: 2px; color: rgb(217, 83, 79);= - cursor: pointer; font-size: 12px; position: absolute; right: 5px; text-ali= -gn: center; width: 18px; } - -#uploaderModal #pills-url .gallery-image-wrapper .bg-image .preview-footer = -.upload-preview { border-radius: 18px; bottom: 2px; cursor: pointer; font-s= -ize: 12px; left: 5px; position: absolute; text-align: center; width: 18px; = -} - -#uploaderModal #pills-url .gallery-image-wrapper .bg-image .preview-footer = -.upload-preview .upload-preview-link { color: rgb(255, 255, 255); } - -#uploaderModal #pills-url .gallery-image-wrapper .upload-name { font-size: = -11px; height: 15px; overflow: hidden; text-align: center; vertical-align: m= -iddle; white-space: nowrap; } - -.btn-webterm { background-color: rgb(34, 34, 34) !important; border-color: = -rgb(68, 68, 68) !important; color: white !important; } - -.btn-webterm:hover, .btn-webterm:active, .btn-webterm.active, .open > .btn-= -webterm.dropdown-toggle { background-color: rgb(0, 0, 0) !important; color:= - white !important; } - -.btn-webterm > i.fa { color: green; font-weight: bold; } - -.user_report_type_values .action { cursor: pointer; display: block; font-si= -ze: 22px; height: 34px; width: 34px; } - -.user_report_type_values .action.add_new_value { color: rgb(0, 136, 0); } - -.user_report_type_values .action.remove_value { color: rgb(255, 0, 0); } - -.user_report_type_values .values_list li { line-height: 34px; } - -.user_report_type_values .values_list li .action { display: inline; margin-= -left: 20px; } - -.students-table .contact { font-size: 20px; } - -.students-table .contact a { text-decoration: none; } - -img.placeholder-user { background-image: url("/images/missing/profile.png")= -; background-repeat: no-repeat; background-size: auto; height: 100px; width= -: 100px; } - -.user-preview h3 { margin-top: 5px; } - -.user-preview p { margin: 0px; } - -.user-preview .user-preview-social { color: inherit; } - -.corrections-dropdown .dropdown-item { color: black; display: block; paddin= -g-bottom: 5px; padding-top: 5px; text-align: center; text-decoration: none;= - } - -.corrections-dropdown .dropdown-item:hover { background-color: rgb(235, 0, = -69); color: white; } - -.corrections-modal .modal-title { text-align: center; } - -.corrections-modal .errors { display: none; } - -.corrections-modal .field { margin-bottom: 20px; } - -.corrections-modal .field .date-selects { display: inline-block; width: aut= -o; } - -.corrections-modal .btn-primary { width: 100%; } - -.user-github-card .panel-heading a { color: rgb(51, 51, 51); text-decoratio= -n: underline; } - -.user-github-card img.github-avatar { border-radius: 50%; height: 40px; mar= -gin-right: 10px; width: 40px; } - -#profile-summary { align-items: center; display: grid; gap: 1rem; grid-temp= -late: "Picture Name" auto "Meta Meta" auto / min-content auto; } - -#profile-summary #summary-picture { grid-area: Picture / Picture / Picture = -/ Picture; } - -#profile-summary #summary-name { grid-area: Name / Name / Name / Name; } - -#profile-summary #summary-meta { grid-area: Meta / Meta / Meta / Meta; } - -#profile-summary #summary-meta #summary-meta-list { display: grid; gap: 0.5= -rem 1rem; } - -@media (min-width: 992px) { - #profile-summary { grid-template-areas: "Picture Name" "Picture Meta"; } - #profile-summary #summary-picture .rounded-circle { height: 150px !import= -ant; width: 150px !important; } - #profile-summary #summary-name { font-size: 3rem !important; } - #profile-summary #summary-meta #summary-meta-list { grid-auto-flow: colum= -n dense; grid-template-rows: auto auto; width: fit-content; } -} - -#versioning_model-modal .modal-dialog { width: 1000px; } - -#versioning_model-modal .empty { color: rgb(92, 92, 92); margin: 20px; text= --align: center; } - -#versioning_model-modal .date_author { float: right; } - -#versioning_model-modal .list-group-item h1 { font-size: 16px; font-weight:= - 600; margin: 10px 0px; } - -#versioning_model-modal .list-group-item pre { border-radius: 0px; } - -#versioning_model-modal .list-group-item pre.version-initial { background-c= -olor: rgb(255, 238, 240); border-bottom: none; margin-bottom: 0px; } - -#versioning_model-modal .list-group-item pre.version-final { background-col= -or: rgb(230, 255, 237); } - -.video-rooms .video-rooms-head .panel-body { padding-bottom: 10px; padding-= -top: 10px; } - -.video-rooms .video-rooms-head .panel-body input[type=3D"search"] { border:= - none; box-shadow: none; } - -.video-rooms .video-rooms-head .panel-body input[type=3D"search"]::placehol= -der { color: rgb(159, 179, 186); font-weight: normal; } - -.video-rooms .video-rooms-grid { display: grid; } - -@media only screen and (max-width: 700px) { - .video-rooms .video-rooms-grid { gap: 20px; grid-auto-rows: 220px; grid-t= -emplate-columns: repeat(auto-fill, minmax(160px, 1fr)); } -} - -@media only screen and (min-width: 700px) { - .video-rooms .video-rooms-grid { gap: 30px; grid-auto-rows: 250px; grid-t= -emplate-columns: repeat(auto-fill, minmax(210px, 1fr)); } -} - -.video-rooms .video-rooms-grid .panel { margin: 0px; } - -.video-rooms .video-rooms-grid .panel .colored-icon { margin: 0px auto; } - -.video-rooms .video-rooms-grid .panel .panel-body > :first-child { transiti= -on: margin-top 0.1s ease-out 0s; } - -@media only screen and (max-width: 700px) { - .video-rooms .video-rooms-grid .panel .panel-body > :first-child { margin= --top: 24px; } -} - -@media only screen and (min-width: 700px) { - .video-rooms .video-rooms-grid .panel .panel-body > :first-child { margin= --top: 42px; } -} - -@media only screen and (max-width: 700px) { - .video-rooms .video-rooms-grid .panel .panel-body > .video-room-name { ma= -rgin-top: 8px; } -} - -@media only screen and (min-width: 700px) { - .video-rooms .video-rooms-grid .panel .panel-body > .video-room-name { ma= -rgin-top: 20px; } -} - -.video-rooms .video-rooms-grid .panel a.btn { transform: scaleY(0); transfo= -rm-origin: center bottom; transition: transform 0.1s ease-out 0s; } - -@media only screen and (max-width: 700px) { - .video-rooms .video-rooms-grid .panel:hover .panel-body > :first-child { = -margin-top: 0px; } -} - -@media only screen and (min-width: 700px) { - .video-rooms .video-rooms-grid .panel:hover .panel-body > :first-child { = -margin-top: 10px; } -} - -.video-rooms .video-rooms-grid .panel:hover .panel-body a.btn { transform: = -scaleY(1); } - -.video-rooms .video-rooms-list tbody tr { border-bottom: 15px solid transpa= -rent; border-top: 15px solid transparent; } - -.video-rooms .video-rooms-list tbody tr > td { border: none; padding: 0px; = -vertical-align: middle; } - -.video-rooms .video-rooms-list tbody tr > td .video-room-name { display: fl= -ex; flex-direction: column; } - -.video-rooms .video-rooms-list tbody tr > td .video-room-name > .video-room= --author { display: none; } - -.video-rooms .video-rooms-list tbody tr > td:first-child { padding-left: 24= -px; } - -.video-rooms .video-rooms-list tbody tr > td:last-child { padding-right: 24= -px; } - -.video-rooms .video-rooms-list tbody tr > td a.btn { transform: scaleX(0); = -transform-origin: right center; transition: transform 0.1s ease-out 0s; } - -.video-rooms .video-rooms-list tbody tr:hover > td a.btn { transform: scale= -X(1); } - -@media only screen and (max-width: 700px) { - .video-rooms .video-rooms-list thead { display: none; } - .video-rooms .video-rooms-list tbody .video-room-name > .video-room-autho= -r { display: flex !important; } - .video-rooms .video-rooms-list tbody .video-room-name > .video-room-autho= -r > .video-room-creation { margin-right: 8px !important; } - .video-rooms .video-rooms-list tbody tr > .video-room-labels, .video-room= -s .video-rooms-list tbody tr > .video-room-creation, .video-rooms .video-ro= -oms-list tbody tr > .video-room-author { display: none !important; } - .video-rooms .video-rooms-list tbody tr a.btn > span { display: none !imp= -ortant; } -} - -.video-rooms .video-rooms-grid .video-room-name, .video-rooms .video-rooms-= -list .video-room-name { font-size: 14px; font-weight: bold; } - -.video-rooms .video-rooms-grid .video-room-creation, .video-rooms .video-ro= -oms-grid .video-room-author, .video-rooms .video-rooms-list .video-room-cre= -ation, .video-rooms .video-rooms-list .video-room-author { color: rgb(158, = -178, 185); font-size: 11px; font-weight: 500; } - -.video-rooms .video-rooms-grid .video-room-labels > .label:not(:last-child)= -, .video-rooms .video-rooms-list .video-room-labels > .label:not(:last-chil= -d) { margin-right: 8px; } - -.video-rooms .colored-icon::before { background: url("/assets/holberton-log= -o-full-alx-d053727941512ebe04b797ca87d81a195004e9ff2d8a6aedf4004c5365cf8944= -.png") center center / contain no-repeat; content: " "; display: block; hei= -ght: 100%; width: 100%; } - -.file_upload_video { align-items: center; border-color: rgb(152, 163, 174) = -rgb(152, 163, 174) rgb(152, 163, 174) rgb(0, 0, 0); border-left-width: 3px;= - border-left-style: solid; display: flex; flex-flow: row nowrap; padding: 0= -px 20px; } - -.file_upload_video .upload-icon { margin-right: 20px; } - -.vjs-title { background-image: linear-gradient(to top, rgba(23, 23, 23, 0) = -0px, rgba(0, 0, 0, 0.4) 100%); color: rgb(255, 255, 255); font-size: 16px; = -left: 0px; opacity: 1; overflow: hidden; padding: 0px 15px 5px; position: a= -bsolute; top: 0px; transition: opacity 0.3s ease 0s; visibility: visible; w= -idth: 100%; } - -.vjs-title .vjs-title-field { height: 2.5em; line-height: 2.5em; overflow: = -hidden; text-overflow: ellipsis; width: 100%; } - -.vjs-user-inactive.vjs-playing .vjs-title { opacity: 0; visibility: hidden;= - } - -.player-description-container > .description-container > .description-inner= --container { display: flex; flex-direction: column; } - -@media only screen and (min-width: 700px) { - .player-description-container { display: flex; flex-flow: row wrap; } - .player-description-container > .player-container { flex: 1 1 0%; margin-= -right: 16px; } - .player-description-container > .description-container { flex: 1 1 0%; po= -sition: relative; } - .player-description-container > .description-container > .description-inn= -er-container { height: 100%; left: 0px; overflow: auto; position: absolute;= - top: 0px; width: 100%; } -} - -@media only screen and (max-width: 700px) { - .player-description-container { display: flex; flex-flow: column; } -} -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: text/css -Content-Transfer-Encoding: quoted-printable -Content-Location: https://intranet.alxswe.com/assets/bootstrap-slider/dist/css/bootstrap-slider-934dd091b4bd05d1a8f1dd81023987aac8c61d906a162b1855cdbcb2792c7d5b.css - -@charset "utf-8"; - -.slider { display: inline-block; vertical-align: middle; position: relative= -; } - -.slider.slider-horizontal { width: 210px; height: 20px; } - -.slider.slider-horizontal .slider-track { height: 10px; width: 100%; margin= --top: -5px; top: 50%; left: 0px; } - -.slider.slider-horizontal .slider-selection, .slider.slider-horizontal .sli= -der-track-low, .slider.slider-horizontal .slider-track-high { height: 100%;= - top: 0px; bottom: 0px; } - -.slider.slider-horizontal .slider-tick, .slider.slider-horizontal .slider-h= -andle { margin-left: -10px; } - -.slider.slider-horizontal .slider-tick.triangle, .slider.slider-horizontal = -.slider-handle.triangle { position: relative; top: 50%; transform: translat= -eY(-50%); border-width: 0px 10px 10px; width: 0px; height: 0px; border-bott= -om-color: rgb(3, 111, 165); margin-top: 0px; } - -.slider.slider-horizontal .slider-tick-container { white-space: nowrap; pos= -ition: absolute; top: 0px; left: 0px; width: 100%; } - -.slider.slider-horizontal .slider-tick-label-container { white-space: nowra= -p; margin-top: 20px; } - -.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {= - display: inline-block; text-align: center; } - -.slider.slider-horizontal.slider-rtl .slider-track { left: initial; right: = -0px; } - -.slider.slider-horizontal.slider-rtl .slider-tick, .slider.slider-horizonta= -l.slider-rtl .slider-handle { margin-left: initial; margin-right: -10px; } - -.slider.slider-horizontal.slider-rtl .slider-tick-container { left: initial= -; right: 0px; } - -.slider.slider-vertical { height: 210px; width: 20px; } - -.slider.slider-vertical .slider-track { width: 10px; height: 100%; left: 25= -%; top: 0px; } - -.slider.slider-vertical .slider-selection { width: 100%; left: 0px; top: 0p= -x; bottom: 0px; } - -.slider.slider-vertical .slider-track-low, .slider.slider-vertical .slider-= -track-high { width: 100%; left: 0px; right: 0px; } - -.slider.slider-vertical .slider-tick, .slider.slider-vertical .slider-handl= -e { margin-top: -10px; } - -.slider.slider-vertical .slider-tick.triangle, .slider.slider-vertical .sli= -der-handle.triangle { border-width: 10px 0px 10px 10px; width: 1px; height:= - 1px; border-left-color: rgb(3, 111, 165); margin-left: 0px; } - -.slider.slider-vertical .slider-tick-label-container { white-space: nowrap;= - } - -.slider.slider-vertical .slider-tick-label-container .slider-tick-label { p= -adding-left: 4px; } - -.slider.slider-vertical.slider-rtl .slider-track { left: initial; right: 25= -%; } - -.slider.slider-vertical.slider-rtl .slider-selection { left: initial; right= -: 0px; } - -.slider.slider-vertical.slider-rtl .slider-tick.triangle, .slider.slider-ve= -rtical.slider-rtl .slider-handle.triangle { border-width: 10px 10px 10px 0p= -x; } - -.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tic= -k-label { padding-left: initial; padding-right: 4px; } - -.slider.slider-disabled .slider-handle { background-color: rgb(207, 207, 20= -7); background-image: linear-gradient(rgb(223, 223, 223), rgb(190, 190, 190= -)); background-repeat: repeat-x; } - -.slider.slider-disabled .slider-track { background-color: rgb(231, 231, 231= -); background-image: linear-gradient(rgb(229, 229, 229), rgb(233, 233, 233)= -); background-repeat: repeat-x; cursor: not-allowed; } - -.slider input { display: none; } - -.slider .tooltip-inner { white-space: nowrap; max-width: none; } - -.slider .bs-tooltip-top .tooltip-inner, .slider .bs-tooltip-bottom .tooltip= --inner { position: relative; left: -50%; } - -.slider.bs-tooltip-left .tooltip-inner, .slider.bs-tooltip-right .tooltip-i= -nner { position: relative; top: -100%; } - -.slider .tooltip { pointer-events: none; } - -.slider .tooltip.bs-tooltip-top .arrow, .slider .tooltip.bs-tooltip-bottom = -.arrow { left: -0.4rem; } - -.slider .tooltip.bs-tooltip-top { margin-top: -44px; } - -.slider .tooltip.bs-tooltip-bottom { margin-top: 2px; } - -.slider .tooltip.bs-tooltip-left, .slider .tooltip.bs-tooltip-right { margi= -n-top: -14px; } - -.slider .tooltip.bs-tooltip-left .arrow, .slider .tooltip.bs-tooltip-right = -.arrow { top: 8px; } - -.slider .hide { display: none; } - -.slider-track { background-color: rgb(247, 247, 247); background-image: lin= -ear-gradient(rgb(245, 245, 245), rgb(249, 249, 249)); background-repeat: re= -peat-x; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px inset; border-radius: 4p= -x; position: absolute; cursor: pointer; } - -.slider-selection { background-color: rgb(247, 247, 247); background-image:= - linear-gradient(rgb(249, 249, 249), rgb(245, 245, 245)); background-repeat= -: repeat-x; box-shadow: rgba(0, 0, 0, 0.15) 0px -1px 0px inset; box-sizing:= - border-box; border-radius: 4px; position: absolute; } - -.slider-selection.tick-slider-selection { background-color: rgb(70, 193, 25= -4); background-image: linear-gradient(rgb(82, 197, 255), rgb(58, 188, 253))= -; background-repeat: repeat-x; } - -.slider-track-low, .slider-track-high { box-sizing: border-box; border-radi= -us: 4px; position: absolute; background: transparent; } - -.slider-handle { background-image: linear-gradient(rgb(4, 128, 190), rgb(3,= - 111, 165)); background-repeat: repeat-x; box-shadow: rgba(255, 255, 255, 0= -.2) 0px 1px 0px inset, rgba(0, 0, 0, 0.05) 0px 1px 2px; position: absolute;= - top: 0px; width: 20px; height: 20px; background-color: rgb(4, 128, 190); b= -order: 0px solid transparent; } - -.slider-handle:hover { cursor: pointer; } - -.slider-handle.round { border-radius: 20px; } - -.slider-handle.triangle { background: none transparent; } - -.slider-handle.custom { background: none transparent; } - -.slider-handle.custom::before { line-height: 20px; font-size: 20px; content= -: "=E2=98=85"; color: rgb(114, 98, 4); } - -.slider-tick { background-color: rgb(247, 247, 247); background-image: line= -ar-gradient(rgb(245, 245, 245), rgb(249, 249, 249)); background-repeat: rep= -eat-x; box-shadow: rgba(0, 0, 0, 0.15) 0px -1px 0px inset; box-sizing: bord= -er-box; position: absolute; cursor: pointer; width: 20px; height: 20px; fil= -ter: none; opacity: 0.8; border: 0px solid transparent; } - -.slider-tick.round { border-radius: 50%; } - -.slider-tick.triangle { background: none transparent; } - -.slider-tick.custom { background: none transparent; } - -.slider-tick.custom::before { line-height: 20px; font-size: 20px; content: = -"=E2=98=85"; color: rgb(114, 98, 4); } - -.slider-tick.in-selection { background-color: rgb(70, 193, 254); background= --image: linear-gradient(rgb(82, 197, 255), rgb(58, 188, 253)); background-r= -epeat: repeat-x; opacity: 1; } -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: image/svg+xml -Content-Transfer-Encoding: quoted-printable -Content-Location: https://intranet.alxswe.com/assets/slack-logo-4e959344c754db5a76e6d3b54c4b6507ca081239996f13f4d4fe521745e2c0aa.svg - - - - - - -=0A -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: image/png -Content-Transfer-Encoding: base64 -Content-Location: https://intranet.alxswe.com/assets/holberton-logo-full-alx-d053727941512ebe04b797ca87d81a195004e9ff2d8a6aedf4004c5365cf8944.png - -iVBORw0KGgoAAAANSUhEUgAAAOAAAADgCAYAAAAaLWrhAAAKeElEQVR4AezBgQAAAACAoP2pF6kC -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -gNm7CyDHjSWM4+Mcs0aWun1hZmbm5PAxMzMzMzOHmZmZmZmZmZmTfZ/rWleJjtZrjWYkdar+VnDl -kvTLjNe2pqZ/WObJ6AfoN8iEkaYHof6tiP6EHkIDttM5CBktjPQg1DXmjdCB6Fk0IHUB7u1if5oC -1IhGAtk70GnojQydAlSALtOYI/RVdHkenAJUgJo7eIuj36M7M2AKUAFqriNaH5h2QU9lsBSgAtRc -x/w2dGT+9Z0CVICaO3QT0KfRhTlMClABas4iGgYwX8+/vlOAClArobjTGQMwj6CBqgCM8Jyx3QXb -TZEJpZj5bTZN/45MaHUfAkwTgHdUAaDgG2WZj5b9PBwxr4eM72Ki7Wd/GCFJdkQmpLoPAaZVB6CM -fMxH5fb1QJSmqyPjq7fgy0rTHXUE1GozAgLfaGzz+LLuBYQ1POHb1jI/k39OgnCHygPUFKBMO49c -wD7vLxsh8G03T3xZSbKDTkG1ik5BZeQTfIPoPpmOljLy5aadgSFUgAqwgJEPW8E36O6NiFZHxlWC -7+menleS/K8yADUFKNPOI4a4//uiJFkNmaLL4+sR4X8DB6gpQJl2Cr4hR3RXZO0KyBQV8G0z79d8 -oY6EClAB9j7tFHx9RnQH4KxYIL7eRz5vI6ECVIC94xtpmQ8v+LncKQh948sj/E8wADUFCHxje8fn -fiTMv89XNMIoilrIuK77EF5aEAAF3wlowFlE90RxvBoygw34plnm550+rzTdA+dhIS8ANQUIfBNd -4st1L2Ct2gO+58p4XoJwZLkA9cJvWeYRDmohM8h8AxxmmQ9DAyV2F3CtgMw8y418JSH8o34UbX4R -TbLMa6N3o2+if6Bj0dnoPHQuOh0X1Z7Y/gR9Em2JlpzHhb8ettc7aIuqAIzTtIXeVfbFjm4HsuXn -gW9qNvKV2COYCWyBjKu6D5VLbjb7dXQguneIB/d5wflHNAWNlAt/Y0cn823BA8wXx2+3zC96QLjC -XPA96wHfBsggBWiZJ1mi7uh1KnrBwQG/UTB+Br3h4OfPqBpAQfhOy/ySB4TLeRz5Hs3wNR4g0KWy -psHdZZ0ABZir3e4ifKFkBDfGzF/0NPJthEyjAVrmYegrGTx/KUBB+I7SR0LkAd+GyJRVqPjWReeF -c2IUoCB8V40RPpaNfI0GaIm+U+Z0RwEqQnnNtzEyzQVINAH4Dgz5RClAKU0/YJlfrRE+GfkaCtAy -L4zOr8IJU4AS0QcFoU47qwwwnvWG+HXVOnEKUBB+yDK/UmF8GyPTXIBJ0h35rvdw8BVgsQhf1dd8 -VQMYx+Mt0YXVRqUABeGHK4TwcVx/myDTXIBR1LJEB1UMkAKsPsLHstvmNxqgTZJv1wmXApSYP4Xe -CBifjHxNBhjHa9bzzVwFKH1aEOq0MziAsz5eVu/XfQowQ/h6QPg2RabxAC3RFxuBTQH6Hwlz+BRg -mrYt830KsDEAu+f9Mx4/VvjQm/ApQJskP2gSOAUoMf/d0/H+MDKhV8pOosmTJ2B7f0kH/jW5cE/E -RXw4OtoyX4yeUYDlAoyJtrbMD3g63ldh/0sjE3Kl7MQSfaqEA34y+hxO/GrYjkXmLREtiu0UbP+G -7SMK0Dm+mdlNcz12c0y0sgJ0+5vPy22aTkFm0DEvCoh/x/Y1BegE39vc39Cpp7utrdJYgJZ5eYc3 -9vkvQI1FZohNKXBqrAAFX2jf5xSEKzUTYKfzfUf3a/wlMn2XJKtY5jsVYEHTTsEXYHdFcbwGMiHl -fAeW6EgHtzPfAZmiitrtdeT1igLsB59MOwPuvu4nsRoD0BJNdPDe35UR82hkiswSfUkB+h/5nEfU -RbhGMwAyb1j0WwxRp7Otw2/mX6wAe8Y3wzU+BwjvFYQ1B9jpfKjgg3cOMs7qdN6mAHvG537a6Wok -tHYNZHzm9IfjJP2wUp9uIBqH7V0K0AM+f9PR1es8Bf1HgQfsxYhoCWRcZpn/owAXiG+6L3wOui9K -03WQ8ZHTH26ZDy3yUw2WaAQyTmP+nAJcAD5Zq6FGPSgIawfwrAIP0uHIOC9NZyhAByOfIvQC8JwC -D9AuZQDEhb+5Apyj3Mq0te0BXLdrK8C5RbQnMs5j3kYBBoHvAez7t9i+5gHhOnUBeKLrtyAc9D4F -6Bdfbn2+j3u4vcWDEdHayLjO9W8Udy/woDyMJjkH2On8QAHOxjfFC77cEmHWD8IHKr9CLg7c74pc -NNP51EBG7aYDBLwWepdlftbnQil9ItQ14nHQvlzkAQGQvzgFyLyU3DKx0QBlcdTDAlwo5ROlI0zT -PyLjqu6Du5inF36jnTie5PCDA79H+lE0hIt9omU+IRh8kp2F8LWS8O0RRdFIZFzVfXCWTZLlCl89 -h+iPyBQdTu4S8pUkBYgE4VhBGM4qRSUtjSb4FkKmogARUcsyX1rwwXnZttubIlNUUbvdyi40BVgq -wsczfD3nclWmNN0T128LmWoDRJZ5Bwcfor0To+tSyBQS0V/0G/HzRTjOMp/of60G5yOh4JORr/oA -EdG7HF3QN+JgrVzA69Q/6T1hXCF0vzimrE/4mj984QMca5nvdfX6ARfH5yxRC5keW0luZTigAHua -jh7R95vcnc66yBQW0bu7L036el5J8j8X+PwDRJZIpqHOOtsSzbS4QAaxjt3K8tvOZ/S+oENCOKoP -hA8VjS+H8IUh4vsvMj4qZSdRmq5e0kIdN6H/oS+imWhrtK18M//n6IT+/k+pADOE2B7pfeTLZdvt -3r+tgZEPmXoDZG5Z5uPRQPVTgIJwtGU+soeRb52S1p8c/D1qkmQHZOoNUMLB2bI+mBRgNhIOAuHD -+PfWK3kRWLlFogd8YQKUiI6uDygFmI2E2B41r5GvdHySnd9ImKY7IBNCZe9wleyg1CAFKEWznmse -4cM9vOZzORK+mMO3IzKNBCj9UgHWB2BuOnr0m/Ctj4z34vhts79SlSQ7IhNSpe8ware7J+oi/yAU -oIuRENtdQluZNiZ6u03TvyMTWl52GiXJipb5Cf8oFKDmN387T9N3yXe7FKACVICeEH5DASpABegX -4S8UoAJUgH4R/kgBKkAF6DPmz3r5nKYC1BSgRLSlZb5dASpABegPIVvmAxSgAlSAPmP+ELpZASpA -Begrotgy/wg9qAAVoAL0FTMJxGtd35kZnY/eUICaApyzkZb5HZZo5wLvM/MiOgV92xItEjNv4Aj3 -zCEAvMcBwP2Q0RRgfxFFlnlz9DV0BLoePYIeX0B3oQvwM/6E7bvRcrkLf2P594pu+x4Bjsb2isKf -R6ezw//bp0MCAAAYBGDvn/ooIqAmFmFxCAglICAgCAgICAICAoKAgIAgICAgCAgICAICAoKAgIAg -ICAgCAgICAKCgICAICAgIAgICAgCAgKCgICAICAgIAgICAgCAgKCgICAICAgIAgIAgICgoCAgFsg -IAgICAgCAgKCgICAICAgIAgICAgCAgKCgICAICAgIAgICAgCAg9H9z/o/ZpGqQAAAABJRU5ErkJg -gg== - -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: text/css -Content-Transfer-Encoding: quoted-printable -Content-Location: https://intranet.alxswe.com/packs/css/application-87456da7.css - -@charset "utf-8"; - -.dhtmlx_message_area { position: fixed; right: 5px; width: 250px; z-index: = -11; } - -.dhtmlx-info { min-width: 120px; padding: 4px 4px 4px 20px; font-family: Ta= -homa; z-index: 14; overflow: hidden; margin: 5px 5px 10px; transition: all = -0.5s ease 0s; } - -.dhtmlx-info.hidden { height: 0px; padding: 0px; border-width: 0px; margin:= - 0px; overflow: hidden; } - -.dhtmlx_modal_box { overflow: hidden; display: inline-block; position: fixe= -d; min-width: 300px; width: 330px; text-align: center; background: rgb(255,= - 255, 255); box-shadow: rgb(136, 136, 136) 0px 0px 14px; border: 1px solid = -rgb(255, 255, 255); z-index: 18; border-radius: 6px; font-family: Tahoma, s= -an-serif; } - -.dhtmlx_popup_text { margin: 15px 15px 5px; font-size: 14px; color: rgb(0, = -0, 0); min-height: 30px; border-radius: 6px; } - -.dhtmlx_popup_title { border-top-left-radius: 5px; border-top-right-radius:= - 5px; border-width: 0px; background: url("data:image/png;base64,iVBORw0KGgo= -AAAANSUhEUgAAAAEAAAAoCAMAAAAIaGBFAAAAhFBMVEVwcHBubm5sbGxqampoaGhmZmZlZWVjY2= -NhYWFfX19dXV1bW1taWlpYWFhWVlZUVFRSUlJRUVFPT09NTU1LS0tJSUlHR0dGRkZERERCQkJAQ= -EA+Pj49PT09PT0+Pj5AQEBBQUFDQ0NERERGRkZHR0dJSUlKSkpMTExMTEw5OTk5OTk5OTkny8YE= -AAAAQklEQVQImQXBCRJCAAAAwKVSQqdyjSPXNP7/QLsIhA6OTiJnF7GrRCpzc/fw9PKW+/gqlCq= -1RqvTG/yMJrPF6m/bAVEhAxxnHG0oAAAAAElFTkSuQmCC"); } - -.dhtmlx-info, .dhtmlx_button, .dhtmlx_popup_button { user-select: none; cur= -sor: pointer; } - -.dhtmlx_popup_text { overflow: hidden; } - -.dhtmlx_popup_controls { border-radius: 6px; padding: 5px 5px 9px; } - -.dhtmlx_button, .dhtmlx_popup_button { height: 30px; line-height: 28px; dis= -play: inline-block; margin: 0px 5px; border-radius: 6px; color: rgb(255, 25= -5, 255); border: 1px solid rgb(131, 131, 131); box-shadow: none; } - -.dhtmlx_popup_button { min-width: 120px; background: rgb(255, 255, 255); } - -.dhtmlx_button input, .dhtmlx_popup_button div { border: 1px solid rgb(255,= - 255, 255); background: none rgb(255, 255, 255); border-radius: 6px; font-s= -ize: 15px; box-sizing: content-box; text-shadow: none; color: rgb(68, 68, 6= -8); font-weight: 400; padding: 0px; margin: 0px; vertical-align: top; heigh= -t: 28px; line-height: 28px; } - -.dhtmlx_popup_button.dhtmlx_ok_button div { background: rgb(34, 161, 188); = -border: 1px solid rgb(34, 161, 188); color: rgb(255, 255, 255); text-shadow= -: rgb(111, 111, 111) 0px -1px 0px; outline: 0px; } - -.dhtmlx_popup_button.dhtmlx_ok_button { border: 1px solid rgb(34, 161, 188)= -; background-color: rgb(34, 161, 188); outline: 0px; } - -.dhtmlx_button input:active, .dhtmlx_button input:focus, .dhtmlx_popup_butt= -on div:active, .dhtmlx_popup_button div:focus { background: none rgb(255, 2= -55, 255); color: rgb(68, 68, 68); box-shadow: none; outline: 0px; } - -.dhtmlx_popup_button.dhtmlx_cancel_button div:active { background-color: tr= -ansparent; border-color: transparent; outline: 0px; } - -div.dhx_modal_cover { z-index: 17; } - -.dhtmlx-info img, .dhtmlx_modal_box img { float: left; margin-right: 20px; = -} - -.dhtmlx-alert-error .dhtmlx_popup_title, .dhtmlx-confirm-error .dhtmlx_popu= -p_title { background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA= -EAAAAsCAIAAAArRUU2AAAATklEQVR4nIWLuw2AMBBDjVuQiBT2oWbRDATrnB0KQOJoqPzRe3BrH= -I6dcBASYREKovtK6/6DsDOX+stN+3H1YX9ciRgnYq5EWYhS2dftBIuLT4JyIrPCAAAAAElFTkSu= -QmCC"); } - -.dhtmlx-alert-error, .dhtmlx-confirm-error { border: 1px solid red; } - -.dhtmlx_popup_title { color: rgb(255, 255, 255); text-shadow: rgb(0, 0, 0) = -1px 1px; height: 40px; line-height: 40px; font-size: 20px; } - -.dhtmlx-error, .dhtmlx-info { font-size: 14px; color: rgb(0, 0, 0); box-sha= -dow: rgb(136, 136, 136) 0px 0px 10px; padding: 0px; background-color: rgb(2= -55, 255, 255); border-radius: 3px; border: 1px solid rgb(255, 255, 255); } - -.dhtmlx-info div { padding: 5px 10px; background-color: rgb(255, 255, 255);= - border-radius: 3px; border: 1px solid rgb(184, 184, 184); } - -.dhtmlx_message_area .dhtmlx-error { background-color: rgb(216, 27, 27); bo= -rder: 1px solid rgb(255, 60, 60); box-shadow: rgb(0, 0, 0) 0px 0px 10px; } - -.dhtmlx_message_area .dhtmlx-error div { background-color: rgb(216, 27, 27)= -; border: 1px solid rgb(148, 0, 0); color: rgb(255, 255, 255); } - -.dhtmlx_modal_box.dhtmlx-error .dhtmlx_popup_title { background: rgb(216, 2= -7, 27); border: 1px solid rgb(255, 60, 60); color: rgb(255, 255, 255); } - -.dhx_cal_event .dhx_body, .dhx_cal_event .dhx_footer, .dhx_cal_event .dhx_h= -eader, .dhx_cal_event .dhx_title { background-color: rgb(23, 150, 176); bor= -der: 1px solid transparent; color: rgb(255, 255, 255); overflow: hidden; wi= -dth: 100%; } - -.dhx_move_denied .dhx_cal_event .dhx_header, .dhx_move_denied .dhx_cal_even= -t .dhx_title { cursor: default; } - -.dhx_cal_event .dhx_header { height: 1px; margin: 0px 0px 0px 1px; border-w= -idth: 1px 1px 0px; cursor: pointer; } - -.dhx_cal_event .dhx_title { height: 12px; border-width: 1px 1px 0px; border= --bottom-style: dotted; border-radius: 4px 4px 0px 0px; font-size: 12px; lin= -e-height: 12px; font-weight: 700; background-position: 100% center; backgro= -und-repeat: no-repeat; cursor: pointer; } - -.dhx_cal_container_rtl .dhx_cal_event .dhx_title, .dhx_cal_event .dhx_title= - { text-align: center; padding: 1px 0px 0px; } - -.dhx_cal_event .dhx_body, .dhx_cal_event.dhx_cal_select_menu .dhx_body { bo= -rder-width: 0px 1px 1px; padding: 5px 5px 8px; border-radius: 0px 0px 4px 4= -px; font-weight: 400; line-height: normal; } - -.dhx_cal_container_rtl .dhx_cal_event .dhx_body { padding: 5px 5px 8px; } - -.dhx_cal_event.dhx_cal_select_menu { box-shadow: rgb(255, 255, 255) 0px 0px= - 1px; } - -.dhx_resize_denied, .dhx_resize_denied .dhx_event_resize { cursor: default = -!important; } - -.dhx_cal_event .dhx_event_resize { cursor: ns-resize; } - -.dhx_cal_event .dhx_footer, .dhx_cal_event .dhx_select_menu_footer { height= -: 5px; margin: -6px 0px 0px 2px; border-width: 0px; position: relative; top= -: auto; background: url("/packs/media/imgs_dhx_terrace/resizing-de53967e.pn= -g") 50% center no-repeat rgb(23, 150, 176); } - -.dhx_cal_event .dhx_resize_denied.dhx_event_resize.dhx_footer { height: 0px= -; } - -.dhx_cal_event_line { background-color: rgb(23, 150, 176); border: 1px soli= -d transparent; border-radius: 2px; font-family: Arial, san-serif; font-size= -: 12px; font-weight: 400; line-height: 17px; height: 20px; padding: 0px 0px= - 0px 10px; color: rgb(255, 255, 255); cursor: pointer; overflow: hidden; } - -.dhx_cal_container_rtl .dhx_cal_event_line { padding: 0px 9px 0px 0px; } - -.dhx_cal_event_line_start { border-top-left-radius: 9px; border-bottom-left= --radius: 9px; } - -.dhx_cal_container_rtl .dhx_cal_event_line_start { border-top-left-radius: = -2px; border-bottom-left-radius: 2px; } - -.dhx_cal_event_line_end { border-top-right-radius: 9px; border-bottom-right= --radius: 9px; } - -.dhx_cal_container_rtl .dhx_cal_event_line_end { border-top-right-radius: 2= -px; border-bottom-right-radius: 2px; } - -.dhx_cal_container_rtl .dhx_cal_event_line_start { border-top-right-radius:= - 9px; border-bottom-right-radius: 9px; } - -.dhx_cal_container_rtl .dhx_cal_event_line_end { border-top-left-radius: 9p= -x; border-bottom-left-radius: 9px; } - -.dhx_cal_event_clear { height: 20px; padding: 0px 0px 0px 2px; color: rgb(1= -4, 100, 160); font-family: Tahoma, san-serif; font-size: 8pt; line-height: = -normal; white-space: nowrap; overflow: hidden; cursor: pointer; background-= -color: transparent; font-weight: 400; } - -.dhx_cal_event.dhx_cal_editor { border: 1px solid rgb(23, 150, 176); z-inde= -x: 10; position: absolute; overflow: hidden; } - -textarea.dhx_cal_editor { width: 100%; height: 100%; border: 0px solid rgb(= -0, 0, 0); padding: 0px; margin: 0px; overflow: auto; font-family: Arial, sa= -n-serif; font-size: 12px; } - -div.dhx_menu_head { background-image: url("/packs/media/imgs_dhx_terrace/co= -ntrols-e6e9e708.png"); background-position: 0px -43px; width: 10px; height:= - 10px; margin-left: 5px; margin-top: 1px; border: none; cursor: default; } - -.dhx_cal_container_rtl div.dhx_menu_head { margin-left: 0px; margin-right: = -5px; } - -div.dhx_menu_icon { background-image: url("/packs/media/imgs_dhx_terrace/co= -ntrols-e6e9e708.png"); width: 20px; height: 20px; margin-left: -5px; margin= --top: 0px; border: none; cursor: pointer; } - -.dhx_cal_container_rtl div.dhx_menu_icon { margin-left: 0px; margin-right: = --3px; } - -div.icon_details { background-position: 0px 0px; } - -div.icon_edit { background-position: -22px 0px; } - -div.icon_save { background-position: -84px -1px; } - -div.icon_cancel { background-position: -62px 0px; } - -div.icon_delete { background-position: -42px 0px; } - -.dhx_month_link { position: absolute; box-sizing: border-box; text-align: r= -ight; cursor: pointer; padding-right: 10px; font-size: 8pt; font-family: Ta= -homa, san-serif; } - -.dhx_month_link a { color: rgb(0, 0, 255); } - -.dhx_month_link a:hover { text-decoration: underline; color: rgb(0, 0, 179)= -; } - -.dhx_global_tip { font-family: Tahoma, Helvetica; text-align: center; font-= -size: 20px; position: fixed; top: 60px; right: 20px; background-color: rgba= -(255, 255, 255, 0.698); color: rgb(0, 0, 0); z-index: 14; padding: 20px 30p= -x; width: 190px; } - -.dhx_global_tip div { font-size: 30px; } - -@media (-moz-touch-enabled) { - .dhx_cal_container { user-select: none; } -} - -.dhx_cal_data div.dhx_cal_event_clear, .dhx_cal_data div.dhx_cal_event_line= -, .dhx_multi_day div.dhx_cal_event_clear, .dhx_multi_day div.dhx_cal_event_= -line { box-sizing: border-box; } - -@media only screen and (max-width: 550px) { - .dhx_cal_event_clear, .dhx_cal_event_line { padding-left: 2px; } -} - -.dhx_unselectable, .dhx_unselectable div { user-select: none; } - -.dhx_cal_light { -webkit-tap-highlight-color: transparent; background-color= -: rgb(255, 255, 255); border-radius: 5px; color: rgb(46, 46, 46); font-fami= -ly: Tahoma, san-serif; font-size: 8pt; box-shadow: rgb(136, 136, 136) 5px 5= -px 5px; position: absolute; z-index: 15; width: 580px; } - -.dhx_cal_light_rtl { box-shadow: rgb(136, 136, 136) -5px 5px 5px; } - -.dhx_cal_ltitle { padding: 2px 0px 2px 5px; height: 30px; line-height: 30px= -; border-bottom: 1px solid rgb(206, 206, 206); background: 0px 0px; margin:= - 0px; border-radius: 0px; overflow: hidden; white-space: nowrap; } - -.dhx_cal_ltext.dhx_cal_template { position: relative; } - -.dhx_cal_ltitle span { white-space: nowrap; } - -.dhx_time { font-weight: 700; padding: 0px 0px 0px 10px; font-size: 8pt; di= -splay: inline-block; margin: 0px; } - -.dhx_cal_light_rtl .dhx_time { padding: 0px 10px 0px 0px; } - -.dhx_cal_light_wide { width: 650px; } - -.dhx_mark { position: relative; top: 3px; background-image: url("/packs/med= -ia/imgs/controls-570d224a.gif"); background-position: 0px -43px; padding-le= -ft: 10px; } - -.dhx_ie6 .dhx_mark { background-position: 6px -41px; } - -.dhx_cal_light select { font-family: Tahoma, san-serif; font-size: 8pt; col= -or: rgb(46, 46, 46); padding: 2px; margin: 0px; } - -.dhx_cal_light .dhx_title { padding: 0px 0px 0px 13px; font-size: 8pt; text= --transform: none; color: inherit; display: inline-block; margin: 0px; } - -.dhx_cal_larea { background-color: rgb(255, 255, 255); overflow: hidden; } - -.dhx_cal_light_wide .dhx_cal_larea { border-top-width: 0px; margin: 0px 0px= - 0px 3px; } - -.dhx_cal_light_rtl .dhx_cal_larea { margin: 0px 3px 0px 0px; } - -.dhx_cal_light_wide .dhx_wrap_section { border-top: 0px; border-bottom: 1px= - solid rgb(206, 206, 206); position: relative; background-color: rgb(255, 2= -55, 255); overflow: hidden; padding: 5px 0px; margin: 0px; } - -.dhx_cal_lsection { background-color: rgb(255, 255, 255); color: rgb(116, 1= -16, 115); font-weight: 700; font-family: Arial, san-serif; font-size: 18px;= - padding: 5px 0px 5px 10px; } - -.dhx_cal_light_wide .dhx_cal_lsection { border: 0px; float: left; text-alig= -n: right; width: 100px; min-height: 20px; line-height: normal; height: auto= -; font-size: 13px; padding: 5px 0px 0px 10px; margin: 0px; } - -.dhx_cal_lsection .dhx_fullday { float: right; margin-right: 5px; color: rg= -b(116, 115, 115); font-family: Arial, san-serif; font-size: 12px; font-weig= -ht: 400; line-height: 20px; vertical-align: top; cursor: pointer; } - -.dhx_cal_lsection .dhx_fullday input[type=3D"checkbox"] { margin: 3px 3px 3= -px 4px; } - -.dhx_cal_ltext { overflow: hidden; float: none; width: auto; height: auto; = -padding: 2px 0px 2px 10px; } - -.dhx_readonly { height: 15px; } - -.dhx_cal_ltext textarea { background-color: rgb(249, 249, 249); overflow: a= -uto; color: rgb(46, 46, 46); height: 100%; width: 100%; resize: none; borde= -r: 1px solid rgb(206, 206, 206); line-height: 20px; font-family: inherit; p= -adding: 2px; } - -.dhx_section_time { white-space: nowrap; } - -.dhx_cal_light_wide .dhx_section_time { padding: 2px 0px 0px !important; he= -ight: 20px !important; } - -.dhx_section_time { text-align: center; } - -.dhx_cal_light_wide .dhx_section_time { background: 0px 0px; } - -.dhx_btn_set { padding: 0px; float: left; margin: 12px 0px 0px 20px; font-s= -ize: 12px; font-weight: 700; border-radius: 3px; text-transform: none; colo= -r: rgb(116, 116, 115); } - -.dhx_right_btn_set { margin-right: 20px; } - -.dhx_btn_set div { float: left; height: 30px; line-height: 30px; padding: 0= -px 20px; vertical-align: middle; cursor: pointer; } - -.dhx_btn_set, .dhx_cancel_btn_set { border: 1px solid rgb(206, 206, 206); b= -ackground-color: transparent; color: rgb(69, 69, 68); float: left; } - -.dhx_cal_light_rtl .dhx_btn_set, .dhx_cal_light_rtl .dhx_cancel_btn_set { f= -loat: right; } - -.dhx_save_btn { background-image: url("/packs/media/imgs/controls-570d224a.= -gif"); background-position: -84px 0px; width: 21px; } - -.dhx_cancel_btn { background-position: -63px 0px; } - -.dhx_cancel_btn, .dhx_delete_btn { background-image: url("/packs/media/imgs= -/controls-570d224a.gif"); width: 20px; } - -.dhx_delete_btn { background-position: -42px 0px; } - -.dhx_delete_btn_set { border: 1px solid rgb(255, 136, 49); background-color= -: rgb(255, 136, 49); color: rgb(255, 255, 255); text-shadow: rgb(147, 117, = -95) 0px -1px 0px; margin: 12px 20px 0px; } - -.dhx_save_btn_set { border: 1px solid rgb(206, 206, 206); color: rgb(255, 2= -55, 255); text-shadow: rgb(111, 111, 111) 0px -1px 0px; background-color: r= -gb(34, 161, 188); } - -.dhx_cal_cover { width: 100%; height: 100%; position: fixed; z-index: 14; t= -op: 0px; left: 0px; background-color: rgb(0, 0, 0); opacity: 0.1; } - -.dhx_custom_button { padding: 0px 3px; font-family: Arial, san-serif; font-= -size: 8pt; font-weight: 400; margin-right: 5px; margin-top: 0px; cursor: po= -inter; } - -.dhx_custom_button div { cursor: pointer; float: left; height: 21px; line-h= -eight: 21px; vertical-align: middle; } - -.dhx_cal_light_wide .dhx_cal_lsection .dhx_fullday { float: none; margin: 0= -px; font-weight: 700; font-size: 13px; cursor: pointer; } - -.dhx_cal_light_wide .dhx_cal_larea { width: 730px; } - -.dhx_cal_light_wide { width: 738px; } - -.dhx_cal_light_wide .dhx_cal_checkbox label { padding-left: 0px; } - -.dhx_wrap_section .dhx_cal_wide_checkbox input[type=3D"checkbox"] { margin-= -top: 8px; margin-left: 14px; } - -.dhx_cal_light_rtl .dhx_wrap_section .dhx_cal_wide_checkbox input[type=3D"c= -heckbox"] { margin: 8px 14px 0px 0px; } - -.dhx_cal_light input { font-family: Tahoma, san-serif; font-size: 8pt; colo= -r: rgb(116, 116, 115); } - -#input_1518604462804 { margin: 0px 0px 0px 11px; border-bottom: 0px; } - -.dhx_custom_button { float: right; height: 21px; } - -.dhx_cal_light_wide .dhx_custom_button { position: absolute; top: 0px; righ= -t: 0px; margin-top: 6px; } - -.dhx_cal_light_wide .dhx_repeat_right { margin-right: 55px; } - -.dhx_cal_light_rtl { direction: rtl; } - -.dhx_cal_light_rtl .dhx_cal_ltitle { padding: 2px 5px 2px 0px; } - -.dhx_cal_light_rtl .dhx_mark { padding: 0px 10px 0px 0px; } - -.dhx_cal_light_rtl .dhx_title { padding: 0px 13px 0px 0px; } - -.dhx_cal_light_rtl .dhx_wrap_section { padding: 5px 0px; } - -.dhx_cal_light_rtl .dhx_wrap_section .dhx_cal_ltext.dhx_cal_template { dire= -ction: ltr; float: right; margin-right: 15px !important; } - -.dhx_cal_light_rtl .dhx_cal_lsection { float: right; text-align: left; marg= -in: 0px; } - -.dhx_cal_light_rtl .dhx_cal_ltext { padding: 2px 10px 2px 0px; } - -.dhx_cal_light_rtl .dhx_cal_ltext textarea { padding: 2px; } - -.dhx_cal_light_rtl .dhx_section_time { padding: 2px 0px 0px !important; } - -.dhx_cal_light_rtl select { padding: 2px; margin: 0px; } - -.dhx_cal_light_rtl .dhx_custom_button { left: 15px; right: unset; } - -@media only screen and (max-width: 1023px) { - .dhx_cal_overflow_container { overflow: auto !important; } - .dhx_cal_light.dhx_cal_light_responsive { padding-bottom: 2vw; width: 98v= -w !important; height: auto !important; left: 1% !important; top: 1.953vw !i= -mportant; font-size: 3.906vw !important; line-height: 3.906vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_btn_set { font-size: 3.906vw= -; padding: 1.953vw 1.563vw; margin-bottom: 1.953vw !important; height: auto= - !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_btn_set div { height: 2.93vw= -; line-height: 2.93vw; padding: 0px 1.563vw; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_larea { width: auto !imp= -ortant; margin-left: 0px !important; height: 100% !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_larea label { display: i= -nline; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_lsection { margin-left: = -3vw; margin-right: 0px; font-size: 3.906vw !important; width: 23.438vw !imp= -ortant; line-height: 3.906vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_lsection .dhx_custom_but= -ton { padding: 0.977vw 4.492vw 0.977vw 1.563vw; min-height: 5.371vw; min-wi= -dth: 25.391vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_ltitle { margin-bottom: = -0.5rem; height: 2rem !important; line-height: 2rem !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_ltitle span { font-size:= - 3.906vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_lsection div.dhx_custom_= -button, .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_radio, .dhx_cal_li= -ght.dhx_cal_light_responsive .dhx_cal_template, .dhx_cal_light.dhx_cal_ligh= -t_responsive .dhx_wrap_section .dhx_section_time select, .dhx_cal_light.dhx= -_cal_light_responsive select, .dhx_cal_light.dhx_cal_light_responsive texta= -rea { font-size: 3.5vw; line-height: 3.5vw; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_lsection div.dhx_custom_= -button label, .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_radio label,= - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_template label, .dhx_cal_= -light.dhx_cal_light_responsive .dhx_wrap_section .dhx_section_time select l= -abel, .dhx_cal_light.dhx_cal_light_responsive select label, .dhx_cal_light.= -dhx_cal_light_responsive textarea label { margin: 1vw 3vw 1vw 0.5vw; vertic= -al-align: top; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_section_time select, .dhx_ca= -l_light.dhx_cal_light_responsive select { min-height: 5.859vw; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_ltext { min-height: 4.88= -3vw; margin-left: 26.5vw !important; height: 100% !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_repeat_center, .dhx_cal_ligh= -t.dhx_cal_light_responsive .dhx_repeat_divider, .dhx_cal_light.dhx_cal_ligh= -t_responsive .dhx_repeat_left, .dhx_cal_light.dhx_cal_light_responsive .dhx= -_repeat_right { height: 11.23vw; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_wrap_section .dhx_section_ti= -me { padding-left: 28.5vw !important; width: auto !important; min-height: 1= -9.531vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_wrap_section .dhx_section_ti= -me select { float: left; margin: 1.465vw 0.5vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_wrap_section .dhx_section_ti= -me .dhx_lightbox_time_select { width: 14.648vw; padding-left: 1.953vw !impo= -rtant; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_wrap_section .dhx_section_ti= -me .dhx_lightbox_day_select { min-width: 7.813vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_wrap_section .dhx_section_ti= -me .dhx_lightbox_year_select { min-width: 13.672vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_wrap_section .dhx_section_ti= -me .dhx_lightbox_month_select { width: 20.508vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_cal_wide_checkbox { height: = -100% !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_multi_select_control { verti= -cal-align: middle; height: 100% !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_multi_select_control input {= - vertical-align: middle; } - .dhx_cal_light.dhx_cal_light_responsive input { width: 4.883vw; height: 4= -.883vw; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_custom_button div { height: = -auto; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_custom_button .dhx_custom_bu= -tton_recurring { background-size: 7.813vw !important; width: 6.836vw !impor= -tant; height: 6.836vw !important; background-repeat: no-repeat !important; = -background-position: -25px -1px !important; padding-top: 0px !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_wrap_section { margin: 0.977= -vw 0px; min-height: 7.813vw !important; max-width: 92.773vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat { margin: 6.836v= -w 0px 0px 23.438vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat form { height: 4= -8.828vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat div { width: 70v= -w !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_left= - br { content: " "; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat input { top: 1.4= -65vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat select { width: = -14.648vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat label { padding-= -right: 1.465vw; white-space: nowrap; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_date= -, .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_text= -, .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat form, .dhx_cal_l= -ight.dhx_cal_light_responsive .dhx_form_repeat form select, .dhx_cal_light.= -dhx_cal_light_responsive .dhx_form_repeat label { font-size: 2.93vw !import= -ant; line-height: 2.93vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_cent= -er, .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_di= -vider, .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat= -_left, .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat= -_right { height: auto; float: none; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_cent= -er { height: auto !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_cent= -er, .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_le= -ft { padding-bottom: 10px; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_text= - { border: 1px solid rgb(206, 206, 206); background-color: rgb(249, 249, 24= -9); width: 6.836vw !important; height: 5.859vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_chec= -kbox { width: 2.93vw !important; height: 2.93vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_days= - label { font-size: 2.441vw !important; line-height: 2.5vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_righ= -t { float: left; height: auto !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_righ= -t .dhx_repeat_date { margin-top: 1.465vw; width: 19.531vw !important; heigh= -t: 7.813vw !important; padding-left: 1.465vw !important; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_divi= -der { border-top: 1px solid rgb(206, 206, 206); border-left: 0px; width: 70= -vw; height: 1px; } - .dhx_cal_light.dhx_cal_light_responsive .dhx_fullday input { vertical-ali= -gn: middle; } - .dhx_cal_light.dhx_cal_light_responsive .combo { height: auto !important;= - } - .dhx_cal_light.dhx_cal_light_responsive .dhx_custom_button .dhx_custom_bu= -tton_recurring { background-position: -14px -1px !important; width: 4.836vw= - !important; height: 4.836vw !important; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_cal_larea { margin-right= -: 0px !important; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_cal_lsection { margin-le= -ft: 0px !important; margin-right: 0px !important; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_cal_ltext { margin-right= -: 23.438vw !important; margin-left: 0px !important; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_wrap_section .dhx_cal_wi= -de_checkbox input[type=3D"checkbox"] { margin: 0.781vw 1.367vw 0px 0px; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_wrap_section .dhx_sectio= -n_time { padding-right: 23.438vw !important; padding-left: 0px !important; = -} - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_wrap_section .dhx_sectio= -n_time select { float: right; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_wrap_section .dhx_sectio= -n_time .dhx_lightbox_time_select { padding-right: 1.953vw !important; paddi= -ng-left: 0px !important; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_wrap_section .dhx_sectio= -n_time span { display: none; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_form_repeat { margin: 6.= -836vw 23.438vw 0px 0px !important; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_form_repeat label { padd= -ing-left: 1.465vw; padding-right: 0px !important; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_= -right { float: left; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_form_repeat .dhx_repeat_= -right .dhx_repeat_date { padding-right: 1.465vw !important; padding-left: 0= -px !important; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_multi_select_control.dhx= -_multi_select_control_vertical { float: right; } - .dhx_cal_light_rtl.dhx_cal_light_responsive .dhx_multi_select_control { f= -loat: unset; } -} - -.dhx_minical_popup { position: absolute; z-index: 16; width: 251px; height:= - 175px; } - -.dhx_scale_bar_header { position: absolute; border-bottom: 1px dotted rgb(1= -63, 149, 136); width: 100%; } - -.dhx_expand_icon { position: absolute; top: 0px; right: 0px; background-ima= -ge: url("/packs/media/imgs/collapse_expand_icon-be4e9fbd.gif"); width: 18px= -; height: 18px; cursor: pointer; background-position: 0px 18px; z-index: 4;= - } - -.dhx_agenda_area, .dhx_scheduler_agenda .dhx_cal_data { background-image: u= -rl("/packs/media/imgs/databg-17c53bd1.png"); } - -.dhx_agenda_area { width: 100%; overflow-y: auto; } - -.dhx_agenda_line { height: 21px; clear: both; overflow: hidden; } - -.dhx_agenda_line div { float: left; width: 188px; border-right: 1px dotted = -rgb(136, 148, 163); text-align: center; line-height: 21px; overflow: hidden= -; } - -.dhx_cal_container_rtl .dhx_agenda_line div { float: right; } - -.dhx_cal_container_rtl .dhx_agenda_line .description_header { padding-right= -: 15px; float: right; } - -.dhx_cal_header div.dhx_agenda_line div, .dhx_cal_header div.dhx_agenda_lin= -e span, .dhx_cal_header div.dhx_map_line { font-weight: 400; color: rgb(116= -, 116, 115); } - -.dhx_cal_container_rtl .dhx_cal_header div.dhx_map_line { float: right; } - -.dhx_cal_container_rtl .dhx_agenda_area .dhx_agenda_line div { border-left:= - 0px dotted rgb(0, 0, 0); } - -.dhx_agenda_area .dhx_agenda_line div { border-right: 0px dotted rgb(0, 0, = -0); } - -.dhx_v_border { position: absolute; left: 187px; top: 0px; border-right: 1p= -x dotted rgb(136, 148, 163); width: 1px; height: 100%; } - -.dhx_cal_container_rtl .dhx_v_border { right: 186px; left: unset; } - -.dhx_agenda_line .dhx_event_icon { width: 20px; border-width: 0px; backgrou= -nd: url("/packs/media/imgs/icon-a7d5db52.png") 5px 4px no-repeat; cursor: p= -ointer; } - -.dhx_cal_container_rtl .dhx_agenda_line .dhx_event_icon { background-positi= -on-x: 2px; } - -.dhx_agenda_line span { padding-left: 5px; line-height: 21px; } - -.dhx_cal_container_rtl .dhx_agenda_line span { padding-left: 0px; padding-r= -ight: 5px; } - -.dhx_year_week { position: relative; } - -.dhx_cal_container_rtl .dhx_year_body { border-left: 0px; border-right: 1px= - solid rgb(206, 206, 206); } - -.dhx_cal_container_rtl .dhx_year_box .dhx_scale_bar_last { border-left: 1px= - solid rgb(206, 206, 206); } - -.dhx_year_month { height: 18px; padding-top: 3px; text-align: center; verti= -cal-align: middle; } - -.dhx_year_body .dhx_after .dhx_month_head, .dhx_year_body .dhx_after .dhx_m= -onth_head a, .dhx_year_body .dhx_before .dhx_month_head, .dhx_year_body .dh= -x_before .dhx_month_head a { color: rgb(226, 227, 230); } - -.dhx_year_body .dhx_month_body { height: 0px; overflow: hidden; } - -.dhx_month_head.dhx_year_event { background-color: rgb(255, 231, 99); } - -.dhx_year_body .dhx_after .dhx_month_head, .dhx_year_body .dhx_before .dhx_= -month_head { cursor: default; } - -.dhx_year_tooltip { border: 1px solid rgb(187, 187, 187); background-image:= - url("/packs/media/imgs/databg-17c53bd1.png"); position: absolute; z-index:= - 12; width: 300px; height: auto; font-family: Tahoma; font-size: 8pt; overf= -low: hidden; } - -.dhx_tooltip_line { line-height: 20px; height: 20px; overflow: hidden; } - -.dhx_tooltip_line .dhx_event_icon { width: 20px; height: 20px; padding-righ= -t: 10px; float: left; border-width: 0px; position: relative; background: ur= -l("/packs/media/imgs/icon-a7d5db52.png") 5px 4px no-repeat; cursor: pointer= -; } - -.dhx_tooltip_date { float: left; width: auto; padding-left: 5px; text-align= -: center; } - -.dhx_text_disabled { font-family: Tahoma, san-serif; font-size: 8pt; } - -.dhx_mini_calendar { user-select: none; } - -.dhx_mini_calendar .dhx_month_head { cursor: pointer; } - -.dhx_mini_calendar .dhx_calendar_click { background-color: rgb(194, 213, 25= -2); } - -.dhx_cal_navline div.dhx_minical_icon { width: 18px; height: 18px; left: 19= -0px; top: 1px; cursor: pointer; background: url("/packs/media/imgs_dhx_terr= -ace/calendar-4eae83e9.gif") no-repeat; } - -.dhx_grid_rtl { direction: rtl; } - -.dhx_matrix_scell, .dhx_timeline_scale_header { height: 100%; font-family: = -Tahoma, san-serif; font-size: 8pt; color: inherit; font-weight: 500; } - -.dhx_matrix_cell, .dhx_matrix_scell { overflow: hidden; text-align: center;= - vertical-align: middle; border-bottom: 1px solid rgb(206, 206, 206); borde= -r-right: 1px solid rgb(206, 206, 206); } - -.dhx_cal_container_rtl .dhx_matrix_cell, .dhx_cal_container_rtl .dhx_matrix= -_scell { border-right: unset; border-left: 1px solid rgb(206, 206, 206); } - -.dhx_timeline_scale_header { border-right: 1px solid rgb(206, 206, 206); } - -.dhx_cal_container_rtl .dhx_timeline_scale_header { border-right: unset; bo= -rder-left: 1px solid rgb(206, 206, 206); } - -.dhx_cal_data .dhx_timeline_table_wrapper div { box-sizing: border-box; } - -.dhx_matrix_cell { background-color: rgb(255, 255, 255); } - -.dhx_matrix_line { overflow: hidden; } - -.dhx_matrix_cell div, .dhx_matrix_scell div { overflow: hidden; text-align:= - center; height: auto; } - -.dhx_cal_lsection .dhx_readonly { font-size: 8pt; padding: 2px; color: rgb(= -136, 122, 46); } - -.dhx_cal_event_line .dhx_event_resize { cursor: ew-resize; background: url(= -"/packs/media/imgs_dhx_terrace/resize_dots-86cc2887.png") repeat-y; positio= -n: absolute; top: 0px; width: 4px; height: 100%; } - -.dhx_event_resize_start { left: 0px; } - -.dhx_cal_container_rtl .dhx_event_resize_start { left: unset; right: 0px; } - -.dhx_event_resize_end { right: 0px; } - -.dhx_cal_container_rtl .dhx_event_resize_end { right: unset; left: 0px; } - -.dhx_data_table.folder .dhx_matrix_cell, .dhx_matrix_scell.folder { backgro= -und-color: rgb(150, 147, 148); cursor: pointer; } - -.dhx_matrix_scell .dhx_scell_level0 { padding-left: 5px; } - -.dhx_matrix_scell .dhx_scell_level1 { padding-left: 20px; } - -.dhx_matrix_scell .dhx_scell_level2 { padding-left: 35px; } - -.dhx_matrix_scell .dhx_scell_level3 { padding-left: 50px; } - -.dhx_matrix_scell .dhx_scell_level4 { padding-left: 65px; } - -.dhx_matrix_scell.folder { border-right: 0px; font-weight: 700; text-align:= - left; } - -.dhx_matrix_scell.folder, .dhx_timeline_label_row.dhx_row_folder { overflow= -: visible; } - -.dhx_matrix_scell.folder > div { display: flex; align-items: center; height= -: inherit; } - -.dhx_matrix_scell.folder .dhx_scell_expand { width: 12px; position: relativ= -e; flex-shrink: 0; } - -.dhx_matrix_scell.folder .dhx_scell_name { width: auto; color: inherit; tex= -t-transform: none; font-weight: inherit; max-height: 100%; } - -.dhx_matrix_scell.item .dhx_scell_name { padding-left: 15px; text-align: le= -ft; } - -.dhx_cal_container_rtl .dhx_matrix_scell .dhx_scell_level0 { padding-left: = -0px; padding-right: 5px; } - -.dhx_cal_container_rtl .dhx_matrix_scell .dhx_scell_level1 { padding-left: = -0px; padding-right: 20px; } - -.dhx_cal_container_rtl .dhx_matrix_scell .dhx_scell_level2 { padding-left: = -0px; padding-right: 35px; } - -.dhx_cal_container_rtl .dhx_matrix_scell .dhx_scell_level3 { padding-left: = -0px; padding-right: 50px; } - -.dhx_cal_container_rtl .dhx_matrix_scell .dhx_scell_level4 { padding-left: = -0px; padding-right: 65px; } - -.dhx_cal_container_rtl .dhx_matrix_scell.folder .dhx_scell_expand { padding= --right: 0px; padding-left: 3px; } - -.dhx_cal_container_rtl .dhx_matrix_scell.item .dhx_scell_name { padding-lef= -t: 0px; padding-right: 15px; text-align: right; } - -.dhx_data_table.folder .dhx_matrix_cell { border-right: 0px; } - -.dhx_section_timeline { overflow: hidden; padding: 4px 0px 2px 10px; } - -.dhx_section_timeline select { width: 552px; } - -.dhx_map_area { width: 100%; height: 100%; overflow: hidden auto; backgroun= -d-image: url("/packs/media/imgs/databg-17c53bd1.png"); } - -.dhx_map_line .dhx_event_icon { width: 20px; border-width: 0px; background:= - url("/packs/media/imgs/icon-a7d5db52.png") 5px 4px no-repeat; cursor: poin= -ter; } - -.dhx_cal_container_rtl .dhx_map_line .dhx_event_icon { margin-right: 3px; } - -.dhx_map_line { height: 21px; clear: both; overflow: hidden; } - -.dhx_map { position: absolute; } - -.dhx_map_line .headline_description, .dhx_map_line div { float: left; borde= -r-right: 1px dotted rgb(136, 148, 163); text-align: center; line-height: 21= -px; overflow: hidden; } - -.dhx_map_line .dhx_map_description { float: left; border-right: 0px dotted = -rgb(136, 148, 163); text-align: center; line-height: 21px; overflow: hidden= -; } - -.dhx_map_line .headline_date, .dhx_map_line .headline_description { border-= -left: 0px; } - -.dhx_cal_container_rtl .dhx_map_line div { float: right; } - -.dhx_cal_container_rtl .dhx_map_line .headline_date, .dhx_cal_container_rtl= - .dhx_map_line .headline_description { float: right; border-left: 1px solid= - rgb(206, 206, 206); border-right: 0px; } - -.dhx_map_line .line_description { float: left; border-right: 1px dotted rgb= -(136, 148, 163); text-align: left; padding-left: 5px; line-height: 21px; ov= -erflow: hidden; } - -.dhx_cal_container_rtl .dhx_map_line .line_description { float: right; text= --align: right; padding-left: unset; } - -.dhx_map_line.highlight { background-color: rgb(196, 197, 204); } - -.dhx_map_area .dhx_map_line div { border-right: 0px dotted rgb(136, 148, 16= -3); } - -.dhtmlXTooltip.tooltip { box-shadow: rgb(136, 136, 136) 3px 3px 3px; backgr= -ound-color: rgb(255, 255, 255); cursor: default; padding: 10px; position: f= -ixed; z-index: 9; opacity: 1; font-family: Arial, san-serif; } - -.dhtmlXTooltip_rtl, .dhx_tooltip_rtl { direction: rtl; } - -.dhx_tooltip_rtl .dhx_tooltip_date { float: right; padding: 0px 5px 0px 0px= -; } - -.dhx_tooltip_rtl .dhx_tooltip_line { margin: 0px 0px 0px 12px; padding: 0px= - 4px 0px 0px; } - -.dhx_tooltip_rtl .dhx_tooltip_line .dhx_event_icon.icon_details { float: ri= -ght; padding: 0px 0px 0px 10px; } - -.dhx_cal_checkbox label { padding-left: 5px; } - -.dhx_cal_light .radio { padding: 2px 0px 2px 10px; } - -.dhx_cal_light .radio input, .dhx_cal_light .radio label { line-height: 15p= -x; } - -.dhx_cal_light .radio input { vertical-align: middle; margin: 0px; padding:= - 0px; } - -.dhx_cal_light .radio label { vertical-align: middle; padding-right: 10px; = -} - -.dhx_cal_light .combo { padding: 4px; } - -.dhx_cal_light_wide .combo > div, .dhx_cal_light_wide .dhx_combo_box { left= -: 10px; width: 608px !important; } - -.dhx_wa_column { float: left; } - -.dhx_cal_container_rtl .dhx_wa_column { float: right; } - -.dhx_cal_container_rtl .dhx_wa_column_last .dhx_wa_day_cont { border-right:= - 1px solid rgb(206, 206, 206); } - -.dhx_wa_scale_bar { font-family: Tahoma, san-serif; padding-left: 10px; fon= -t-size: 11px; } - -.dhx_cal_container_rtl .dhx_wa_scale_bar { padding-left: 0px; padding-right= -: 10px; } - -.dhx_wa_day_data { background-color: rgb(252, 254, 252); overflow-y: auto; = -} - -.dhx_wa_ev_body { font-size: 12px; padding: 5px 0px 5px 7px; } - -.dhx_cal_container_rtl .dhx_wa_ev_body { padding: 5px 7px 5px 0px; } - -.dhx_wa_ev_body_rtl { direction: rtl; } - -.dhx_wa_dnd { font-family: Tahoma, san-serif; position: absolute; padding-r= -ight: 7px; border: 1px solid rgb(183, 165, 67); color: rgb(136, 122, 226) != -important; background-color: rgb(255, 231, 99) !important; } - -.dhx_wa_ev_body.dhx_cal_event_selected { background-color: rgb(156, 193, 21= -9); color: rgb(255, 255, 255); } - -.dhx_second_scale_bar { padding-top: 2px; } - -.dhx_cal_header div.dhx_grid_line div { border-left: 1px solid rgb(206, 206= -, 206); } - -.dhx_cal_container_rtl .dhx_cal_header div.dhx_grid_line div { border-right= -: 1px solid rgb(206, 206, 206); border-left: 0px; } - -.dhx_grid_area { width: 100%; height: 100%; overflow-y: auto; background-co= -lor: rgb(252, 254, 252); } - -.dhx_grid_area table { border-collapse: collapse; border-spacing: 0px; widt= -h: 100%; table-layout: fixed; } - -.dhx_grid_area td { table-layout: fixed; text-align: center; } - -.dhx_grid_line { height: 21px; clear: both; overflow: hidden; } - -.dhx_grid_line div { float: left; cursor: default; padding-top: 0px; paddin= -g-bottom: 0px; text-align: center; line-height: 21px; overflow: hidden; } - -.dhx_cal_container_rtl .dhx_grid_line div { float: right; } - -.dhx_grid_area td, .dhx_grid_line div { padding-left: 8px; padding-right: 8= -px; } - -.dhx_grid_area tr.dhx_grid_event { height: 21px; overflow: hidden; margin: = -0px 0px 1px; } - -.dhx_grid_area tr.dhx_grid_event td { border-bottom: 1px solid rgb(236, 238= -, 244); } - -.dhx_cal_container_rtl .dhx_grid_area tr.dhx_grid_event td { border-bottom:= - 1px solid rgb(236, 238, 244); direction: ltr; } - -.dhx_cal_container_rtl .dhx_map_line div.dhx_map_event_time { float: right;= - direction: ltr; } - -.dhx_grid_area tr.dhx_grid_event:nth-child(2n) td, .dhx_grid_area tr.dhx_gr= -id_event:nth-child(2n+1) td { border-bottom-width: 0px; border-bottom-style= -: none; } - -.dhx_grid_area tr.dhx_grid_event:nth-child(2n) { background-color: rgb(236,= - 238, 244); } - -.dhx_grid_area .dhx_grid_dummy { table-layout: auto; margin: 0px !important= -; padding: 0px !important; } - -.dhx_grid_v_border { position: absolute; border-right: 1px solid rgb(164, 1= -90, 212); width: 1px; height: 100%; } - -.dhx_cal_container_rtl .dhx_grid_v_border { border-left: 1px solid rgb(164,= - 190, 212); border-right: 0px; } - -.dhx_grid_event_selected { background-color: rgb(156, 193, 219) !important;= - color: rgb(255, 255, 255) !important; } - -.dhx_grid_sort_desc .dhx_grid_view_sort { background-position: 0px -55px; } - -.dhx_grid_sort_asc .dhx_grid_view_sort { background-position: 0px -66px; } - -.dhx_grid_view_sort { width: 10px; height: 10px; position: absolute; top: 5= -px; background-repeat: no-repeat; background-image: url("/packs/media/imgs/= -images-b8bd4a95.png"); border: none !important; } - -.dhx_marked_timespan { position: absolute; width: 100%; margin-left: 0px; } - -.dhx_time_block { position: absolute; width: 100%; background: silver; opac= -ity: 0.4; z-index: 1; } - -.dhx_time_block_reset { opacity: 1; } - -.dhx_mini_calendar .dhx_marked_timespan, .dhx_scheduler_month .dhx_marked_t= -imespan { display: none; } - -.dhx_now_time { width: 100%; border-bottom: 2px solid red; } - -.dhx_scheduler_month .dhx_now_time { border-bottom: 0px; border-left: 2px s= -olid red; } - -.dhx_matrix_now_time { border-left: 2px solid red; } - -.dhx_matrix_now_time, .dhx_now_time { opacity: 0.5; } - -.dhx_cal_quick_info { border: 2px solid rgb(136, 136, 136); border-radius: = -5px; position: absolute; z-index: 8; font-family: Tahoma, san-serif; font-s= -ize: 8pt; background-color: rgba(50, 50, 50, 0.5); padding: 0px 0px 0px 7px= -; width: 300px; transition: left 0.5s ease 0s, right 0.5s ease 0s; } - -.dhx_no_animate { transition: none 0s ease 0s; } - -.dhx_cal_quick_info.dhx_qi_left .dhx_qi_big_icon { float: right; } - -.dhx_quick_info_rtl.dhx_cal_quick_info.dhx_qi_left .dhx_qi_big_icon { float= -: left; } - -.dhx_cal_qi_title { padding: 5px 0px 10px 5px; color: rgb(255, 255, 255); l= -etter-spacing: 1px; } - -.dhx_cal_container_rtl .dhx_cal_qi_title { padding: 5px 18px 10px 0px; text= --align: right; } - -.dhx_cal_qi_tdate { font-size: 14px; } - -.dhx_cal_qi_tcontent { font-size: 18px; font-weight: 700; } - -.dhx_cal_qi_content { border: 1px solid rgb(136, 136, 136); background-colo= -r: rgb(254, 254, 254); padding: 16px 8px; font-size: 14px; color: rgb(68, 6= -8, 68); width: 275px; overflow: hidden; } - -.dhx_quick_info_rtl .dhx_cal_qi_content { padding: 16px 8px; direction: rtl= -; } - -.dhx_qi_big_icon { min-width: 60px; padding: 5px 10px 5px 5px; margin: 5px = -9px 5px 0px; background-color: rgb(23, 150, 176); border-bottom: 1px solid = -rgb(102, 102, 102); border-right: 1px solid rgb(102, 102, 102); border-radi= -us: 3px; line-height: 20px; color: rgb(255, 255, 255); vertical-align: midd= -le; cursor: pointer; float: left; } - -.dhx_quick_info_rtl .dhx_qi_big_icon { padding: 5px 5px 5px 10px; margin: 5= -px 0px 5px 9px; } - -.dhx_cal_qi_controls div { float: left; height: 20px; text-align: center; l= -ine-height: 20px; } - -.dhx_quick_info_rtl .dhx_cal_qi_controls div { float: right; } - -.dhx_quick_info_rtl.dhx_qi_right .dhx_cal_qi_controls { padding-right: 15px= -; } - -.dhx_qi_big_icon .dhx_menu_icon { margin: 0px 8px 0px 0px; } - -.dhx_quick_info_rtl .dhx_qi_big_icon .dhx_menu_icon { margin: 0px 0px 0px 8= -px; } - -.dhx_drag_marker { width: 100%; opacity: 0.5; background-color: rgb(255, 23= -1, 99); position: absolute; border-top: 1px solid rgb(182, 182, 182); borde= -r-bottom: 1px solid rgb(182, 182, 182); box-sizing: border-box !important; = -} - -.dhx_focus_slot { background: rgb(255, 231, 99); position: absolute; pointe= -r-events: none; opacity: 0.3; } - -.dhx_cal_container :focus { outline-style: auto; } - -.dhx_no_select { user-select: none; } - -.dhx_drag_placeholder { z-index: 10; opacity: 0.8; } - -.dhx_drag_placeholder .dhx_cal_select_menu { display: none; } - -.dhx_timeline_scale_header { z-index: 2; text-align: center; vertical-align= -: middle; } - -.dhx_timeline_label_wrapper, .dhx_timeline_scale_header { position: absolut= -e; overflow: hidden; background-color: rgb(255, 255, 255); } - -.dhx_timeline_label_wrapper { z-index: 1; } - -.dhx_timeline_label_col { position: relative; } - -.dhx_timeline_label_row { position: absolute; left: 0px; background-color: = -inherit; } - -.dhx_timeline_data_wrapper { position: absolute; z-index: 0; left: 0px; wid= -th: 100%; } - -.dhx_timeline_data_row { position: relative; } - -.dhx_timeline_data_cell { position: absolute; top: 0px; height: 100%; } - -.dhx_timeline_table_wrapper .dhx_marked_timespan { z-index: 1; } - -.dhx_timeline_table_wrapper .dhx_time_block { z-index: 2; } - -.dhx_timeline_table_wrapper .dhx_cal_event_line { z-index: 1; } - -.dhx_timeline_table_wrapper .dhx_timeline_scrollable_data { overflow-x: aut= -o; } - -.dhtmlx_modal_box *, .dhx_cal_data, .dhx_cal_data div, .dhx_cal_data table = -*, .dhx_cal_header, .dhx_cal_header div, .dhx_cal_light .dhx_cal_lsection, = -.dhx_cal_light .dhx_wrap_section, .dhx_cal_navline div, .dhx_cal_quick_info= -, .dhx_cal_quick_info div, .dhx_multi_day, .dhx_multi_day div, .dhx_tooltip= -_line div { box-sizing: content-box; } - -.dhx_form_repeat label { margin-bottom: 0px; } - -.dhx_cal_data div.dhx_scale_hour, .dhx_cal_data table .dhx_matrix_cell, .dh= -x_cal_data table .dhx_matrix_scell { box-sizing: border-box; } - -.dhx_cal_data table { border-collapse: separate; } - -.dhx_cal_light .dhx_cal_radio input[type=3D"radio"] { margin: 3px 3px 0px 5= -px; } - -.dhx_cal_light_rtl .dhx_cal_radio input[type=3D"radio"] { margin: 3px 5px 0= -px 3px; } - -.dhx_cal_light .dhx_cal_radio label { display: inline-block; margin: 0px; p= -osition: relative; top: -3px; } - -.dhx_cal_light_rtl .dhx_cal_radio label { margin: 0px; } - -.dhx_cal_event div { line-height: normal; } - -.dhx_cal_container { position: relative; overflow: hidden; background-color= -: rgb(255, 255, 255); font-family: Arial, san-serif; font-size: 12px; } - -.dhx_cal_container div { } - -.dhx_cal_navline { height: 20px; position: absolute; z-index: 3; width: 750= -px; color: rgb(47, 58, 72); } - -.dhx_cal_navline div { position: absolute; white-space: nowrap; top: 14px; = -} - -.dhx_cal_navline .dhx_cal_date { border: 0px; font-size: 18px; font-weight:= - 400; font-family: Arial, san-serif; width: 100%; text-align: center; left:= - 0px; padding: 1px 0px 0px; color: rgb(69, 69, 68); z-index: -1; } - -.dhx_cal_button .dhx_left_bg { width: 1px; overflow: hidden; height: 17px; = -z-index: 5; top: 0px; } - -.dhx_cal_prev_button { right: 61px; background-image: url("/packs/media/img= -s_dhx_terrace/arrow_left-9c91d5d0.png"); background-position: 50% center; w= -idth: 46px; border: 1px solid rgb(206, 206, 206); border-radius: 5px 0px 0p= -x 5px; } - -.dhx_cal_prev_button, .dhx_cal_today_button { cursor: pointer; background-r= -epeat: no-repeat; height: 30px; } - -.dhx_cal_today_button { text-align: center; font-size: inherit; font-weight= -: 700; color: rgb(116, 116, 115); right: 123px; background-image: none; bac= -kground-position: -62px 0px; width: 80px; border: 1px solid rgb(206, 206, 2= -06); border-radius: 5px; text-decoration: none; text-transform: none; } - -.dhx_cal_next_button { right: 14px; background-image: url("/packs/media/img= -s_dhx_terrace/arrow_right-650a136b.png"); background-position: 50% center; = -background-repeat: no-repeat; width: 46px; border: 1px solid rgb(206, 206, = -206); border-radius: 0px 5px 5px 0px; } - -.dhx_cal_next_button, .dhx_cal_tab { cursor: pointer; height: 30px; } - -.dhx_cal_tab { width: 60px; text-align: center; text-transform: none; paddi= -ng-top: 0px; border-radius: 0px; color: rgb(116, 116, 115); } - -.dhx_cal_tab, .dhx_cal_tab.active { text-decoration: none; font-weight: 700= -; border: 1px solid rgb(206, 206, 206); font-size: inherit; } - -.dhx_cal_tab.active { cursor: default; color: rgb(69, 69, 68); background-c= -olor: rgb(240, 237, 231); z-index: 25; } - -.dhx_cal_tab_first { border-radius: 5px 0px 0px 5px; border-right: 0px; } - -.dhx_cal_tab_last { border-radius: 0px 5px 5px 0px; } - -.dhx_cal_header { position: absolute; overflow: hidden; left: 10px; backgro= -und: rgb(255, 255, 255); border-top: 1px solid rgb(206, 206, 206); border-r= -ight: 1px solid rgb(206, 206, 206); z-index: 2; } - -.dhx_cal_container_rtl .dhx_cal_header { left: unset; } - -.dhx_cal_data { -webkit-tap-highlight-color: transparent; border-top: 1px s= -olid rgb(206, 206, 206); position: absolute; width: 600px; overflow: hidden= - auto; } - -.dhx_cal_container_rtl .dhx_cal_data { direction: rtl; } - -.dhx_cal_data, .dhx_cal_event, .dhx_cal_event_clear, .dhx_cal_event_line { = -touch-action: pan-y; } - -.dhx_scale_bar { position: absolute; text-align: center; background-color: = -rgb(255, 255, 255); padding: 2px 0px 0px; border-left: 1px solid rgb(206, 2= -06, 206); font-size: 11px; font-weight: inherit; line-height: 16px; color: = -rgb(118, 118, 118); } - -.scheduler_container_resize_watcher { background: 0px 0px; width: 100%; hei= -ght: 100%; position: absolute; top: 0px; left: 0px; z-index: -1; pointer-ev= -ents: none; border: 0px; box-sizing: border-box; opacity: 0; } - -.dhx_scale_holder { position: absolute; border-right: 1px solid rgb(206, 20= -6, 206); background-image: url("/packs/media/imgs_dhx_terrace/databg-0eefed= -7f.png"); image-rendering: pixelated; } - -.dhx_cal_container_rtl .dhx_cal_header, .dhx_cal_container_rtl .dhx_scale_h= -older { border-left: 1px solid rgb(206, 206, 206); border-right: 0px; } - -.dhx_cal_container_rtl .dhx_scale_bar { border-left: 0px; border-right: 1px= - solid rgb(206, 206, 206); } - -.dhx_cal_container_rtl .dhx_month_body, .dhx_cal_container_rtl .dhx_month_h= -ead { border-right: 0px; border-left: 1px solid rgb(206, 206, 206); } - -.dhx_scale_holder_now { image-rendering: pixelated; position: absolute; bor= -der-right: 1px solid rgb(206, 206, 206); background-image: url("/packs/medi= -a/imgs_dhx_terrace/databg_now-5f38f3fd.png"); } - -.dhx_cal_container_rtl .dhx_scale_holder_now { border-right: 0px; border-le= -ft: 1px solid rgb(206, 206, 206); } - -.dhx_scale_hour { border-bottom: 1px solid rgb(206, 206, 206); text-align: = -center; line-height: 44px; color: rgb(118, 118, 118); font-size: 11px; over= -flow: hidden; } - -.dhx_month_head, .dhx_scale_hour { background-color: rgb(255, 255, 255); fo= -nt-weight: inherit; } - -.dhx_month_head { height: 21px; padding: 0px 5px 0px 0px; font-size: 12px; = -line-height: 21px; color: rgb(54, 45, 38); border-right: 1px solid rgb(206,= - 206, 206); text-align: right; } - -.dhx_cal_container_rtl .dhx_month_head { text-align: left; padding: 0px 0px= - 0px 5px; } - -.dhx_after .dhx_month_head, .dhx_before .dhx_month_head { background-color:= - rgb(255, 255, 255); color: rgb(187, 187, 187); } - -.dhx_now .dhx_month_head { font-weight: 400; } - -.dhx_scale_hour_border { border-left: 1px dotted rgb(136, 148, 163); } - -.dhx_month_body { border-right: 1px solid rgb(206, 206, 206); border-bottom= -: 1px solid rgb(206, 206, 206); } - -.dhx_after .dhx_month_body, .dhx_before .dhx_month_body, .dhx_month_body { = -background-color: rgb(255, 255, 255); } - -.dhx_now .dhx_month_body, .dhx_now .dhx_month_head { background-color: rgb(= -255, 243, 161); } - -.dhx_scale_ignore { display: none; } - -.dhx_cal_drag { background-color: rgb(255, 231, 99); border: 1px solid rgb(= -183, 165, 67); opacity: 0.5; } - -.dhx_cal_drag, .dhx_loading { position: absolute; z-index: 13; } - -.dhx_loading { width: 128px; height: 15px; background-image: url("/packs/me= -dia/imgs/loading-5d6d6fe7.gif"); } - -.dhx_multi_day, .dhx_multi_day_icon { background-color: rgb(255, 255, 255);= - border-right: 1px solid rgb(206, 206, 206); } - -.dhx_multi_day { position: absolute; border-top: 1px solid rgb(206, 206, 20= -6); background-color: rgb(255, 255, 255); border-right: none; box-shadow: n= -one; } - -.dhx_cal_container_rtl .dhx_multi_day { direction: rtl; } - -.dhx_multi_day_icon, .dhx_multi_day_icon_small { background-color: rgb(255,= - 255, 255); background-position: 50% center; border-bottom: 1px solid rgb(2= -06, 206, 206); border-right: 1px solid rgb(206, 206, 206); background-repea= -t: no-repeat; } - -.dhx_cal_container_rtl .dhx_multi_day_icon, .dhx_cal_container_rtl .dhx_mul= -ti_day_icon_small { border-right: 0px; border-left: 1px solid rgb(206, 206,= - 206); } - -.dhx_multi_day_icon { background-image: url("/packs/media/imgs_dhx_terrace/= -clock_big-e3df5481.gif"); } - -.dhx_multi_day_icon_small { background-image: url("/packs/media/imgs_dhx_te= -rrace/clock_small-4d216801.gif"); } - -.dhtmlxLayoutPolyContainer_dhx_skyblue .dhx_cal_container { background-colo= -r: rgb(208, 229, 255); } - -.dhx_month_body_border, .dhx_month_head_border, .dhx_scale_bar_border, .dhx= -_scale_hour_border { border-left: 1px dotted rgb(136, 148, 163); } - -.dhx_cal_navline .dhx_cal_export { width: 18px; height: 18px; top: 0px; } - -.dhx_cal_navline .dhx_cal_export.pdf { left: 2px; background-image: url("/p= -acks/media/imgs/export_pdf-43434e11.png"); } - -.dhx_cal_navline .dhx_cal_export.ical { left: 24px; background-image: url("= -/packs/media/imgs/export_ical-2243f6e9.png"); } - -.dhx_cal_navline.dhx_cal_navline_flex { display: flex; flex-direction: row;= - align-items: center; padding: 0px 1vw; box-sizing: border-box; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab { box-sizing: border-box= -; height: 32px; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab_last { margin-right: 14p= -x; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab { border-left-style: non= -e; box-shadow: rgb(206, 206, 206) -1px 0px 0px; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_date { width: auto; flex-gro= -w: 1; } - -.dhx_cal_navline.dhx_cal_navline_flex div { position: static; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_navbar_row { display: flex; = -flex-flow: row wrap; align-items: center; padding: 0px 1vw; box-sizing: bor= -der-box; height: 100%; width: 100%; flex-grow: 1; flex-shrink: 1; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_prev_button + .dhx_cal_next_= -button { border-left-style: none; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_navbar_rows_container { disp= -lay: flex; align-items: center; flex-direction: column; box-sizing: border-= -box; flex-grow: 1; height: 100%; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_line_break, .dhx_cal_navline= -.dhx_cal_navline_flex .dhx_cal_line_spacer { display: block; width: auto; f= -lex-grow: 1; } - -.dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab_standalone, .dhx_cal_nav= -line.dhx_cal_navline_flex .dhx_cal_today_button { margin: 0px 7px; } - -@media only screen and (max-width: 1023px) { - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab, .dhx_cal_navline.dhx_= -cal_navline_flex .dhx_cal_tab.active, .dhx_cal_navline.dhx_cal_navline_flex= - .dhx_cal_today_button { min-width: 4vw; font-size: 1.3vw; box-sizing: cont= -ent-box; padding: 0px 0.5vw; width: auto; } - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_next_button, .dhx_cal_navl= -ine.dhx_cal_navline_flex .dhx_cal_prev_button, .dhx_cal_navline.dhx_cal_nav= -line_flex .dhx_cal_tab, .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab.= -active, .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_today_button { heigh= -t: 2.5vw; line-height: 2.5vw; } - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab_last { margin-right: 2= -vw; } -} - -@media only screen and (max-width: 840px) { - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab, .dhx_cal_navline.dhx_= -cal_navline_flex .dhx_cal_tab.active, .dhx_cal_navline.dhx_cal_navline_flex= - .dhx_cal_today_button { min-width: 4vw; font-size: 1.5vw; box-sizing: cont= -ent-box; padding: 0px 0.5vw; width: auto; } - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_next_button, .dhx_cal_navl= -ine.dhx_cal_navline_flex .dhx_cal_prev_button, .dhx_cal_navline.dhx_cal_nav= -line_flex .dhx_cal_tab, .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab.= -active, .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_today_button { heigh= -t: 4vw; line-height: 4vw; } - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab_last { margin-right: 1= -vw; } - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_date { font-size: 2.5vw; } -} - -@media only screen and (max-width: 480px) { - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab, .dhx_cal_navline.dhx_= -cal_navline_flex .dhx_cal_tab.active, .dhx_cal_navline.dhx_cal_navline_flex= - .dhx_cal_today_button { font-size: 0.8rem; padding: 0px 2vw; } - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_next_button, .dhx_cal_navl= -ine.dhx_cal_navline_flex .dhx_cal_prev_button, .dhx_cal_navline.dhx_cal_nav= -line_flex .dhx_cal_tab, .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_tab.= -active, .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_today_button { heigh= -t: 6vw; line-height: 6vw; } - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_next_button, .dhx_cal_navl= -ine.dhx_cal_navline_flex .dhx_cal_prev_button { width: 2rem; } - .dhx_cal_navline.dhx_cal_navline_flex .dhx_cal_date { font-size: 4vw; } -} - -.dhx_cal_touch_active { overscroll-behavior: none; } - -.dhx_form_repeat, .dhx_form_repeat input { margin: 0px; padding: 0px 0px 0p= -x 5px; font-family: Tahoma, Verdana; font-size: 11px; line-height: 24px; } - -.dhx_form_repeat { overflow: hidden; } - -.dhx_cal_light_wide .dhx_form_repeat { background-color: transparent; } - -.dhx_repeat_center, .dhx_repeat_divider, .dhx_repeat_left, .dhx_repeat_righ= -t { height: 115px; box-sizing: border-box; } - -.dhx_repeat_center, .dhx_repeat_left { padding: 10px 0px 0px 10px; float: l= -eft; } - -.dhx_repeat_left { width: 105px; } - -.dhx_repeat_center { width: 345px; padding-top: 22px; } - -.dhx_repeat_divider { float: left; border-left: 1px dotted rgb(220, 196, 62= -); width: 1px; } - -.dhx_repeat_right { float: right; width: 173px; padding: 17px 3px 0px 10px;= - } - -.dhx_cal_light_rtl .dhx_repeat_center, .dhx_cal_light_rtl .dhx_repeat_divid= -er, .dhx_cal_light_rtl .dhx_repeat_left, .dhx_cal_light_rtl .dhx_repeat_rig= -ht { float: none; display: inline-block; vertical-align: top; } - -.dhx_cal_light_rtl .dhx_repeat_right { margin-right: 0px; } - -input.dhx_repeat_text { height: 16px; width: 27px; margin: 0px 4px; line-he= -ight: 18px; padding: 0px 0px 0px 2px; } - -.dhx_cal_light_rtl input.dhx_repeat_text { padding: 0px 2px 0px 0px; } - -.dhx_form_repeat select { height: 20px; width: 87px; padding: 0px 0px 0px 2= -px; margin: 0px 4px; } - -.dhx_cal_light_rtl .dhx_form_repeat select { padding: 0px 2px 0px 0px; } - -input.dhx_repeat_date { height: 18px; width: 80px; padding: 0px 0px 0px 2px= -; margin: 0px 4px; background-repeat: no-repeat; background-position: 64px = -0px; border: 1px solid rgb(127, 157, 185); line-height: 18px; } - -.dhx_cal_light_rtl input.dhx_repeat_date { padding: 0px 2px 0px 0px; } - -input[type=3D"radio"].dhx_repeat_radio { margin: 5px 4px 0px 0px; display: = -inline-block; position: relative; top: 2px; } - -.dhx_cal_light_rtl input[type=3D"radio"].dhx_repeat_radio { margin: 5px 0px= - 0px 4px; } - -input.dhx_repeat_checkbox { margin: 4px 4px 0px 0px; } - -.dhx_repeat_days td { padding-right: 5px; } - -.dhx_repeat_days label { font-size: 10px; } - -.dhx_custom_button { width: 90px; border-radius: 4px; } - -.dhx_custom_button_recurring { background-image: url("/packs/media/imgs_dhx= -_terrace/but_repeat-393ad20d.gif"); background-position: -5px 20px; width: = -20px; margin-right: 10px; } - -.dhx_cal_light_rec { width: 640px; } - -.dhx_cal_light_rec .dhx_cal_larea { width: 632px; } - -.dhx_cal_light_rec.dhx_cal_light_wide { width: 816px; } - -.dhx_cal_light_rec.dhx_cal_light_wide .dhx_cal_larea { width: 808px; } - -.dhx_cal_event.dhx_cal_select_menu .dhx_footer, .dhx_cal_event .dhx_header = -{ display: none; } - -.dhx_cal_event.dhx_cal_editor { border: 1px solid transparent; } - -div.dhx_menu_head, div.dhx_menu_icon { background-image: url("/packs/media/= -imgs_dhx_terrace/controls-e6e9e708.png"); } - -.dhx_cal_tab.active { text-shadow: rgb(255, 255, 255) 0px 1px 0px; } - -.dhx_cal_tab_standalone { padding: 0px 5px; border-radius: 5px !important; = -} - -.dhx_cal_larea { margin-left: 0px; border: 1px solid transparent; } - -.dhx_cal_light_wide .dhx_cal_lsection .dhx_fullday, .dhx_cal_lsection, .dhx= -_cal_lsection .dhx_fullday { color: rgb(116, 116, 115); } - -.dhx_cal_light { border: 1px solid rgb(206, 206, 206); } - -.dhx_section_time { background-color: transparent; } - -.dhx_btn_set div:first-child, .dhx_cancel_btn, .dhx_delete_btn, .dhx_save_b= -tn { display: none; } - -.dhx_cal_ltitle span { float: left; } - -.dhx_cal_light_rtl .dhx_cal_ltitle span { float: none; } - -.dhx_mark { display: none; } - -.dhx_close_icon { float: right; width: 9px; height: 9px; background: url("/= -packs/media/imgs_dhx_terrace/close_icon-4c24eb7b.png") 50% center no-repeat= -; padding: 10px; margin-top: 1px; } - -.dhx_cal_light_wide .dhx_cal_ltext.dhx_cal_template { line-height: 22px; } - -.dhx_cal_ltext textarea { box-sizing: border-box; } - -.dhx_cal_container.dhx_mini_calendar { box-sizing: border-box; border: 1px = -solid rgb(206, 206, 206); box-shadow: rgb(204, 204, 204) 2px 2px 5px; borde= -r-radius: 3px; } - -.dhx_mini_calendar .dhx_year_month { border: 1px solid rgb(206, 206, 206); = -font-family: Arial; } - -.dhx_mini_calendar .dhx_month_body, .dhx_mini_calendar .dhx_month_head, .dh= -x_mini_calendar .dhx_scale_bar, .dhx_mini_calendar .dhx_year_body, .dhx_min= -i_calendar .dhx_year_month { border-color: transparent; } - -.dhx_mini_calendar .dhx_year_body { padding-top: 1px; } - -.dhx_mini_calendar .dhx_scale_bar { border-width: 0px; } - -.dhx_mini_calendar .dhx_year_week { border-bottom: 1px solid rgb(206, 206, = -206); padding-top: 1px; } - -.dhx_mini_calendar .dhx_month_head { padding-right: 0px; margin-right: 1px;= - text-align: center; } - -.dhx_mini_calendar .dhx_cal_next_button, .dhx_mini_calendar .dhx_cal_prev_b= -utton { border: 0px; height: 20px; } - -.dhx_cal_navline div.dhx_minical_icon { left: 210px; top: 14px; width: 30px= -; height: 30px; background-position: 3px 5px; } - -.dhx_second_scale_bar { border-bottom: 1px solid rgb(206, 206, 206); } - -.dhx_repeat_divider { border-left: 1px solid rgb(206, 206, 206); } - -.dhx_custom_button { background-color: rgb(255, 255, 255); border: 1px soli= -d rgb(206, 206, 206); color: rgb(116, 116, 115); } - -.dhx_agenda_line div, .dhx_v_border { border-right: 1px solid rgb(206, 206,= - 206); } - -.dhx_cal_container_rtl .dhx_agenda_line div, .dhx_cal_container_rtl .dhx_v_= -border { border-right: 0px; border-left: 1px solid rgb(206, 206, 206); } - -.dhx_year_month { border: 1px solid rgb(206, 206, 206); } - -.dhx_scale_bar_last { border-right: 1px solid rgb(206, 206, 206); } - -.dhx_year_body { border-left: 1px solid rgb(206, 206, 206); } - -.dhx_expand_icon { top: -3px; } - -.dhx_cal_header .dhx_cal_next_button, .dhx_cal_header .dhx_cal_prev_button = -{ width: 20px; height: 20px; border: 0px; top: 0px !important; } - -.dhx_cal_header .dhx_cal_next_button { border-left: 1px solid rgb(206, 206,= - 206); right: 1px !important; } - -.dhx_cal_header .dhx_cal_prev_button { border-right: 1px solid rgb(206, 206= -, 206); left: 1px !important; } - -.dhx_cal_date, .dhx_cal_next_button, .dhx_cal_prev_button, .dhx_cal_tab, .d= -hx_cal_today_button { line-height: 30px; } - -.dhx_map_line .headline_date, .dhx_map_line .headline_description { border:= - 0px; } - -.dhx_map_line .headline_date { border-right: 1px solid rgb(206, 206, 206); = -} - -.dhtmlXTooltip.tooltip { border-left: 1px solid rgb(206, 206, 206); border-= -top: 1px solid rgb(206, 206, 206); color: rgb(116, 116, 115); font-size: 12= -px; line-height: 16px; } - -.dhx_wa_scale_bar { border-top: 1px solid rgb(206, 206, 206); border-bottom= -: 1px solid rgb(206, 206, 206); } - -.dhx_wa_column_last .dhx_wa_day_cont { border-left: 1px solid rgb(206, 206,= - 206); } - -.dhx_wa_ev_body { border-bottom: 1px solid rgb(206, 206, 206); } - -.dhx_wa_scale_bar { background-color: rgb(240, 237, 231); } - -.dhx_wa_ev_body.dhx_cal_event_selected { background-color: rgb(255, 243, 16= -1); color: rgb(54, 45, 38); } - -.dhx_wa_dnd { border: 1px solid rgb(204, 177, 119); background-color: rgb(2= -53, 219, 147) !important; color: rgb(116, 116, 115) !important; } - -.dhx_text_disabled { color: rgb(46, 46, 46); } - -.dhx_cal_ltext .dhx_text_disabled { line-height: 22px; } - -.dhx_grid_v_border { border-right-color: rgb(206, 206, 206); } - -.dhx_cal_container_rtl .dhx_grid_v_border { border-left-color: rgb(206, 206= -, 206); } - -.dhx_month_body_border, .dhx_month_head_border, .dhx_scale_bar_border, .dhx= -_scale_hour_border { border-left: 1px solid rgb(206, 206, 206); } - -.dhx_cal_navline .dhx_cal_export { width: 32px; height: 32px; margin: 2px; = -cursor: pointer; top: 12px; } - -.dhx_cal_navline .dhx_cal_export.pdf { left: auto; right: 249px; background= --image: url("/packs/media/imgs_dhx_terrace/export_pdf-bc9322c5.png"); } - -.dhx_cal_navline .dhx_cal_export.ical { left: auto; right: 210px; backgroun= -d-image: url("/packs/media/imgs_dhx_terrace/export_ical-313990a8.png"); } - -.dhx_mini_calendar { padding: 5px; } - -.dhx_mini_calendar .dhx_calendar_click, .dhx_mini_calendar .dhx_year_event = -{ border-radius: 7px; } - -.dhx_mini_calendar .dhx_month_head { margin: 2px; } - -.dhx_mini_calendar .dhx_year_month { line-height: 20px; height: 25px; font-= -size: 14px; } - -.dhx_mini_calendar .dhx_cal_next_button, .dhx_mini_calendar .dhx_cal_prev_b= -utton { top: 8px !important; } - -.gridHoverStyle, .gridSelection, .timelineSelection { background-color: rgb= -(255, 243, 161); } - -.gantt_grid_scale .gantt_grid_head_cell { color: rgb(166, 166, 166); border= --top: none !important; border-right: none !important; } - -.gantt_grid_data .gantt_cell { border-right: none; color: rgb(69, 69, 69); = -} - -.gantt_task_link .gantt_link_arrow_right { border-width: 6px; margin-top: -= -3px; } - -.gantt_task_link .gantt_link_arrow_left { border-width: 6px; margin-left: -= -6px; margin-top: -3px; } - -.gantt_task_link .gantt_link_arrow_down, .gantt_task_link .gantt_link_arrow= -_up { border-width: 6px; } - -.gantt_task_line .gantt_task_progress_drag { bottom: -4px; height: 10px; ma= -rgin-left: -8px; width: 16px; } - -.chartHeaderBg { background-color: rgb(255, 255, 255); } - -.gantt_task .gantt_task_scale .gantt_scale_cell { color: rgb(166, 166, 166)= -; border-right: 1px solid rgb(235, 235, 235); } - -.gantt_row.gantt_project, .gantt_row.odd.gantt_project { background-color: = -rgb(237, 255, 239); } - -.gantt_task_row.gantt_project, .gantt_task_row.odd.gantt_project { backgrou= -nd-color: rgb(245, 255, 246); } - -.gantt_task_line.gantt_project { background-color: rgb(101, 193, 111); bord= -er: 1px solid rgb(60, 148, 69); } - -.gantt_task_line.gantt_project .gantt_task_progress { background-color: rgb= -(70, 173, 81); } - -.buttonBg { background: rgb(255, 255, 255); } - -.gantt_cal_light .gantt_btn_set { margin: 5px 10px; } - -.gantt_btn_set.gantt_cancel_btn_set { background: rgb(255, 255, 255); color= -: rgb(69, 69, 69); border: 1px solid rgb(206, 206, 206); } - -.gantt_btn_set.gantt_save_btn_set { background: rgb(61, 185, 211); text-sha= -dow: rgb(36, 138, 159) 0px -1px 0px; color: rgb(255, 255, 255); } - -.gantt_btn_set.gantt_delete_btn_set { background: rgb(236, 142, 0); text-sh= -adow: rgb(170, 102, 0) 0px -1px 0px; color: rgb(255, 255, 255); } - -.gantt_cal_light_wide { padding-left: 0px !important; padding-right: 0px !i= -mportant; } - -.gantt_cal_light_wide .gantt_cal_larea { border-left: none !important; bord= -er-right: none !important; } - -.gantt_popup_button.gantt_ok_button { background: rgb(61, 185, 211); text-s= -hadow: rgb(36, 138, 159) 0px -1px 0px; color: rgb(255, 255, 255); font-weig= -ht: 700; border-width: 0px; } - -.gantt_popup_button.gantt_cancel_button { font-weight: 700; color: rgb(69, = -69, 68); } - -.gantt_popup_title { background-color: rgb(255, 255, 255); } - -.gantt_popup_shadow { box-shadow: rgba(0, 0, 0, 0.07) 3px 3px 3px; } - -.gantt_qi_big_icon.icon_edit { color: rgb(69, 69, 69); background: rgb(255,= - 255, 255); } - -.gantt_qi_big_icon.icon_delete { text-shadow: rgb(170, 102, 0) 0px -1px 0px= -; background: rgb(236, 142, 0); color: rgb(255, 255, 255); border-width: 0p= -x; } - -.gantt_tooltip { box-shadow: rgba(0, 0, 0, 0.07) 3px 3px 3px; border-left: = -1px solid rgba(0, 0, 0, 0.07); border-top: 1px solid rgba(0, 0, 0, 0.07); f= -ont-size: 8pt; color: rgb(69, 69, 69); } - -.gantt_container, .gantt_tooltip { background-color: rgb(255, 255, 255); fo= -nt-family: Arial; } - -.gantt_container { font-size: 13px; border: 1px solid rgb(206, 206, 206); p= -osition: relative; white-space: nowrap; overflow: hidden; } - -.gantt_touch_active { overscroll-behavior: none; } - -.gantt_task_scroll { overflow-x: scroll; } - -.gantt_grid, .gantt_task { position: relative; overflow: hidden; display: i= -nline-block; vertical-align: top; } - -.gantt_grid_scale, .gantt_task_scale { color: rgb(107, 107, 107); font-size= -: 12px; border-bottom: 1px solid rgb(206, 206, 206); box-sizing: border-box= -; } - -.gantt_grid_scale, .gantt_task_scale, .gantt_task_vscroll { background-colo= -r: rgb(255, 255, 255); } - -.gantt_scale_line { box-sizing: border-box; border-top: 1px solid rgb(206, = -206, 206); } - -.gantt_scale_line:first-child { border-top: none; } - -.gantt_grid_head_cell { display: inline-block; vertical-align: top; border-= -right: 1px solid rgb(206, 206, 206); text-align: center; position: relative= -; cursor: default; height: 100%; box-sizing: border-box; line-height: 33px;= - user-select: none; overflow: hidden; } - -.gantt_scale_line { clear: both; } - -.gantt_grid_data { width: 100%; overflow: hidden; position: relative; } - -.gantt_row { position: relative; user-select: none; } - -.gantt_add, .gantt_grid_head_add { width: 100%; height: 100%; background-im= -age: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9= -hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG= -9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY= -3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFk= -b2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICA= -gICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLX= -JkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wP= -SJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFk= -b2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGF= -wLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG= -9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTQ3MjMyMENDNkI0M= -TFFMjk4MTI5QTg3MDhFNDVDQTkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTQ3MjMyMERD= -NkI0MTFFMjk4MTI5QTg3MDhFNDVDQTkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGF= -uY2VJRD0ieG1wLmlpZDo1NDcyMzIwQUM2QjQxMUUyOTgxMjlBODcwOEU0NUNBOSIgc3RSZWY6ZG= -9jdW1lbnRJRD0ieG1wLmRpZDo1NDcyMzIwQkM2QjQxMUUyOTgxMjlBODcwOEU0NUNBOSIvPiA8L= -3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0i= -ciI/PshZT8UAAABbSURBVHjaYrTdeZmBEsCER+4wEP+H4sPkGGCDg020ARR7gb4GIAcYDKMDdPn= -DyAbYkGG5DVW9cIQMvUdBBAuUY4vDz8iAcZinA2zgCHqAYQMseAywJcYFAAEGAM+UFGuohFczAA= -AAAElFTkSuQmCC"); background-position: 50% center; background-repeat: no-re= -peat; cursor: pointer; position: relative; opacity: 0.3; } - -.gantt_grid_head_cell.gantt_grid_head_add { opacity: 0.6; top: 0px; } - -.gantt_grid_head_cell.gantt_grid_head_add:hover { opacity: 1; } - -.gantt_grid_data .gantt_row.odd:hover, .gantt_grid_data .gantt_row:hover { = -background-color: rgb(255, 243, 161); } - -.gantt_grid_data .gantt_row.odd:hover .gantt_add, .gantt_grid_data .gantt_r= -ow:hover .gantt_add { opacity: 1; } - -.gantt_row, .gantt_task_row { border-bottom: 1px solid rgb(235, 235, 235); = -background-color: rgb(255, 255, 255); } - -.gantt_row.odd, .gantt_task_row.odd { background-color: rgb(255, 255, 255);= - } - -.gantt_cell, .gantt_grid_head_cell, .gantt_row, .gantt_scale_cell, .gantt_t= -ask_cell, .gantt_task_row { box-sizing: border-box; } - -.gantt_grid_head_cell, .gantt_scale_cell { line-height: inherit; } - -.gantt_grid_scale .gantt_grid_column_resize_wrap { cursor: col-resize; posi= -tion: absolute; width: 13px; margin-left: -7px; } - -.gantt_grid_column_resize_wrap .gantt_grid_column_resize { background-color= -: rgb(206, 206, 206); height: 100%; width: 1px; margin: 0px auto; } - -.gantt_task_grid_row_resize_wrap { cursor: row-resize; position: absolute; = -height: 13px; margin-top: -7px; left: 0px; width: 100%; } - -.gantt_task_grid_row_resize_wrap .gantt_task_grid_row_resize { background-c= -olor: rgb(235, 235, 235); top: 6px; height: 1px; width: 100%; margin: 0px a= -uto; position: relative; } - -.gantt_drag_marker.gantt_grid_resize_area, .gantt_drag_marker.gantt_row_gri= -d_resize_area { background-color: rgba(232, 232, 232, 0.5); height: 100%; w= -idth: 100%; box-sizing: border-box; } - -.gantt_drag_marker.gantt_grid_resize_area { border-left: 1px solid rgb(206,= - 206, 206); border-right: 1px solid rgb(206, 206, 206); } - -.gantt_drag_marker.gantt_row_grid_resize_area { border-top: 1px solid rgb(2= -06, 206, 206); border-bottom: 1px solid rgb(206, 206, 206); pointer-events:= - none; } - -.gantt_row { display: flex; } - -.gantt_row > div { flex-shrink: 0; flex-grow: 0; } - -.gantt_cell { vertical-align: top; border-right: 1px solid rgb(235, 235, 23= -5); padding-left: 6px; padding-right: 6px; height: 100%; overflow: hidden; = -white-space: nowrap; font-size: 13px; } - -.gantt_cell_tree { display: flex; flex-wrap: nowrap; } - -.gantt_grid_data .gantt_last_cell, .gantt_grid_scale .gantt_last_cell, .gan= -tt_task .gantt_task_scale .gantt_scale_cell.gantt_last_cell, .gantt_task_bg= - .gantt_last_cell { border-right-width: 0px; } - -.gantt_task .gantt_task_scale .gantt_scale_cell.gantt_last_cell { border-ri= -ght-width: 1px; } - -.gantt_task_bg { overflow: hidden; } - -.gantt_scale_cell { display: inline-block; white-space: nowrap; overflow: h= -idden; border-right: 1px solid rgb(206, 206, 206); text-align: center; heig= -ht: 100%; } - -.gantt_task_cell { display: inline-block; height: 100%; border-right: 1px s= -olid rgb(235, 235, 235); } - -.gantt_layout_cell.gantt_ver_scroll { width: 0px; background-color: transpa= -rent; height: 1px; overflow: hidden scroll; position: absolute; right: 0px;= - z-index: 1; } - -.gantt_ver_scroll > div { width: 1px; height: 1px; } - -.gantt_hor_scroll { height: 0px; background-color: transparent; width: 100%= -; clear: both; overflow: scroll hidden; } - -.gantt_layout_cell .gantt_hor_scroll { position: absolute; } - -.gantt_hor_scroll > div { width: 5000px; height: 1px; } - -.gantt_tree_icon, .gantt_tree_indent { flex-grow: 0; flex-shrink: 0; } - -.gantt_tree_indent { width: 15px; height: 100%; } - -.gantt_tree_content, .gantt_tree_icon { vertical-align: top; } - -.gantt_tree_icon { width: 28px; height: 100%; background-repeat: no-repeat;= - background-position: 50% center; } - -.gantt_tree_content { height: 100%; white-space: nowrap; min-width: 0px; } - -.gantt_tree_icon.gantt_open { background-image: url("data:image/png;base64,= -iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAArklEQVQ4T2NkoBJgpJI5DEPAoFO= -nTv0/c+YMQR+bmJgwmJmZwX2E4bVp06b9j4yMZODg4MBp2I8fPxiWL1/OkJWVNUAGcXJyMnz//h= -3uQrJdRLFBIAPQAchlJLsIFuCMjIwM////B5sJMoRkg2CuIdtrQcHBDOxsbHBfCQgIMHz48AHO/= -/nrF8O6tWsJR7+7uzsDIxMTznT0/98/hp07d+I3iGopm2DewKFg8OV+AJWkfRMrTobLAAAAAElF= -TkSuQmCC"); width: 18px; cursor: pointer; } - -.gantt_tree_icon.gantt_close { background-image: url("data:image/png;base64= -,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAkUlEQVQ4T2NkoBJgpJI5DEPAoF= -OnTv0/c+YMQR+bmJgwmJmZwX2E4bVp06b9j4yMZODg4MBp2I8fPxiWL1/OkJWVNeIN4uTkxAin7= -9+/M5AcRtgCHGQIyQbhijaiDQoKDmZgZ2PDGf0/f/1iWLd2LeHod3d3Z2BkYsJp0P9//xh27tyJ= -3yCqpWyCeQOHgsGX+wEZpW4T5LCxKwAAAABJRU5ErkJggg=3D=3D"); width: 18px; cursor= -: pointer; } - -.gantt_tree_icon.gantt_blank { width: 18px; } - -.gantt_tree_icon.gantt_folder_open { background-image: url("data:image/png;= -base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAs0lEQVQ4T62T0Q2EIBBE= -pQlzuaaMsQoqooqLsSljbMLLmMxmUXBR4U+Qt7Mzi2sqLVeJ00SgEMKWAnvvzYLyAyHfT5sU2fX= -DJSwCAXK8MI0/UTkva7IIFJsg3NSwnKdFoKtAWOQ1CN7CEqeTotE5L7QyJhmBcklZM4ZgTiAr3i= -OU3kD93ppO5SkMjB1EeXdBWoSkRql3YeIRe+cGvktS056JR9wsmeBUkujCfNXWCPC8GugPqn5ii= -/hV+FoAAAAASUVORK5CYII=3D"); } - -.gantt_tree_icon.gantt_folder_closed { background-image: url("data:image/pn= -g;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAfElEQVQ4T2NkoBJgpJ= -I5DCgGTZ8+/T82gzMzMwlaCFcAM0RKQgyrI/0Dg/EahmIQyBB0DRvXr4W78tmLV1gtAbmYoEEgn= -ciG4QpTogzCFyEwSyg2CBS2oCAZNQh3cA+hMAJ5AlcKxuVBlOgnNgVjMwyUrQjmamKLGaoZBAAO= -TFyLnFFW4wAAAABJRU5ErkJggg=3D=3D"); } - -.gantt_tree_icon.gantt_file { background-image: url("data:image/png;base64,= -iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAeElEQVQ4T2NkoBJgRDZn+vTp/wm= -Zm5mZiaIHph7DICkJMUJmMfgHBmMYhtUgbAo3rl+L4lp0NUQbBPI2umuRDaPIIFAYwAyjv0HoMQ= -ALM5JdhG4QLMxGDcKdyIdoGIE89OzFK4KZF5Rl8EY/QROQFGA1iBQD0NUCAJVjcxO0naAQAAAAA= -ElFTkSuQmCC"); } - -.gantt_grid_head_cell .gantt_sort { position: absolute; right: 5px; top: 8p= -x; width: 7px; height: 13px; background-repeat: no-repeat; background-posit= -ion: 50% center; } - -.gantt_grid_head_cell .gantt_sort.gantt_asc { background-image: url("data:i= -mage/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAANCAYAAABlyXS1AAAARUlEQVR4nGN= -gQAKGxib/GbABkIS7b8B/DAUwCRiGK0CXwFBAb1DfP/U/LszwHwi2X7qFgUEArBtdAVwCBmAKMC= -SQFSDzAWXXaOHsXeqkAAAAAElFTkSuQmCC"); } - -.gantt_grid_head_cell .gantt_sort.gantt_desc { background-image: url("data:= -image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAANCAYAAABlyXS1AAAARUlEQVR42m= -NgQAL1/VP/M2ADIIntF2/9x1AAlrh0C47hCmA60DFYwX88gIFGwNDY5D8uDFbg7hvwHx2jmIBTA= -lkB0e4BAEjlaNtBWJPnAAAAAElFTkSuQmCC"); } - -.gantt_inserted, .gantt_updated { font-weight: 700; } - -.gantt_deleted { text-decoration: line-through; } - -.gantt_invalid { background-color: rgb(255, 224, 224); } - -.gantt_error { color: red; } - -.gantt_status { right: 1px; padding: 5px 10px; background: rgba(156, 156, 1= -56, 0.1); position: absolute; top: 1px; transition: opacity 0.2s ease 0s; o= -pacity: 0; } - -.gantt_status.gantt_status_visible { opacity: 1; } - -#gantt_ajax_dots span { transition: opacity 0.2s ease 0s; background-repeat= -: no-repeat; opacity: 0; } - -#gantt_ajax_dots span.gantt_dot_visible { opacity: 1; } - -.gantt_column_drag_marker { border: 1px solid rgb(206, 206, 206); opacity: = -0.8; } - -.gantt_grid_head_cell_dragged { border: 1px solid rgb(206, 206, 206); opaci= -ty: 0.3; } - -.gantt_grid_target_marker { position: absolute; top: 0px; width: 2px; heigh= -t: 100%; background-color: rgb(255, 160, 17); transform: translateX(-1px); = -} - -.gantt_grid_target_marker::after, .gantt_grid_target_marker::before { displ= -ay: block; content: ""; position: absolute; left: -5px; width: 0px; height:= - 0px; border: 6px solid transparent; } - -.gantt_grid_target_marker::before { border-top-color: rgb(255, 160, 17); } - -.gantt_grid_target_marker::after { bottom: 0px; border-bottom-color: rgb(25= -5, 160, 17); } - -.gantt_message_area { position: fixed; right: 5px; width: 250px; z-index: 1= -000; } - -.gantt-info { min-width: 120px; padding: 4px 4px 4px 20px; font-family: Ari= -al; z-index: 10000; margin: 5px 5px 10px; transition: all 0.5s ease 0s; } - -.gantt-info.hidden { height: 0px; padding: 0px; border-width: 0px; margin: = -0px; overflow: hidden; } - -.gantt_modal_box { overflow: hidden; display: inline-block; min-width: 250p= -x; width: 250px; text-align: center; position: fixed; z-index: 20000; box-s= -hadow: rgba(0, 0, 0, 0.07) 3px 3px 3px; font-family: Arial; border-radius: = -6px; border: 1px solid rgb(206, 206, 206); background: rgb(255, 255, 255); = -} - -.gantt_popup_title { border-top-left-radius: 6px; border-top-right-radius: = -6px; border-width: 0px; } - -.gantt_button, .gantt_popup_button { border: 1px solid rgb(206, 206, 206); = -height: 30px; line-height: 30px; display: inline-block; margin: 0px 5px; bo= -rder-radius: 4px; background: rgb(255, 255, 255); } - -.gantt-info, .gantt_button, .gantt_popup_button { user-select: none; cursor= -: pointer; } - -.gantt_popup_text { overflow: hidden; } - -.gantt_popup_controls { border-radius: 6px; padding: 10px; } - -.gantt_popup_button { min-width: 100px; } - -div.dhx_modal_cover { background-color: rgb(0, 0, 0); cursor: default; opac= -ity: 0.2; position: fixed; z-index: 19999; left: 0px; top: 0px; width: 100%= -; height: 100%; border: none; zoom: 1; } - -.gantt-info img, .gantt_modal_box img { float: left; margin-right: 20px; } - -.gantt-alert-error, .gantt-confirm-error { border: 1px solid red; } - -.gantt_button input, .gantt_popup_button div { border-radius: 4px; font-siz= -e: 14px; box-sizing: content-box; padding: 0px; margin: 0px; vertical-align= -: top; } - -.gantt_popup_title { border-bottom: 1px solid rgb(206, 206, 206); height: 4= -0px; line-height: 40px; font-size: 20px; } - -.gantt_popup_text { margin: 15px 15px 5px; font-size: 14px; color: rgb(0, 0= -, 0); min-height: 30px; border-radius: 6px; } - -.gantt-error, .gantt-info { font-size: 14px; color: rgb(0, 0, 0); box-shado= -w: rgba(0, 0, 0, 0.07) 3px 3px 3px; padding: 0px; background-color: rgb(255= -, 255, 255); border-radius: 3px; border: 1px solid rgb(255, 255, 255); } - -.gantt-info div { padding: 5px 10px; background-color: rgb(255, 255, 255); = -border-radius: 3px; border: 1px solid rgb(206, 206, 206); } - -.gantt-error { background-color: rgb(216, 27, 27); border: 1px solid rgb(25= -5, 60, 60); } - -.gantt-error div { background-color: rgb(216, 27, 27); border: 1px solid rg= -b(148, 0, 0); color: rgb(255, 255, 255); } - -.gantt-warning { background-color: rgb(255, 144, 0); border: 1px solid rgb(= -255, 166, 51); } - -.gantt-warning div { background-color: rgb(255, 144, 0); border: 1px solid = -rgb(179, 101, 0); color: rgb(255, 255, 255); } - -.gantt_data_area div, .gantt_grid div { -webkit-tap-highlight-color: rgba(0= -, 0, 0, 0); } - -.gantt_data_area { position: relative; overflow: hidden; user-select: none;= - } - -.gantt_links_area { position: absolute; left: 0px; top: 0px; } - -.gantt_side_content, .gantt_task_content, .gantt_task_progress { line-heigh= -t: inherit; overflow: hidden; height: 100%; } - -.gantt_task_content { font-size: 12px; color: rgb(255, 255, 255); width: 10= -0%; top: 0px; cursor: pointer; position: absolute; white-space: nowrap; tex= -t-align: center; } - -.gantt_task_progress { text-align: center; z-index: 0; background: rgb(41, = -156, 180); } - -.gantt_task_progress_wrapper { border-radius: inherit; position: relative; = -width: 100%; height: 100%; overflow: hidden; } - -.gantt_task_line { border-radius: 2px; position: absolute; box-sizing: bord= -er-box; background-color: rgb(61, 185, 211); border: 1px solid rgb(40, 152,= - 176); user-select: none; } - -.gantt_task_line.gantt_drag_move div { cursor: move; } - -.gantt_touch_move, .gantt_touch_progress .gantt_touch_resize { transform: s= -cale(1.02, 1.1); transform-origin: 50% center; } - -.gantt_touch_progress .gantt_task_progress_drag, .gantt_touch_resize .gantt= -_task_drag { transform: scaleY(1.3); transform-origin: 50% center; } - -.gantt_side_content { position: absolute; white-space: nowrap; color: rgb(1= -10, 110, 110); top: 0px; font-size: 11px; } - -.gantt_side_content.gantt_left { right: 100%; padding-right: 20px; } - -.gantt_side_content.gantt_right { left: 100%; padding-left: 20px; } - -.gantt_side_content.gantt_link_crossing { bottom: 8.75px; top: auto; } - -.gantt_link_arrow, .gantt_task_link .gantt_line_wrapper { position: absolut= -e; cursor: pointer; } - -.gantt_line_wrapper div { background-color: rgb(255, 160, 17); } - -.gantt_task_link:hover .gantt_line_wrapper div { box-shadow: rgb(255, 160, = -17) 0px 0px 5px 0px; } - -.gantt_task_link div.gantt_link_arrow { background-color: transparent; bord= -er-style: solid; width: 0px; height: 0px; } - -.gantt_link_control { position: absolute; width: 20px; top: 0px; } - -.gantt_link_control div { display: none; cursor: pointer; box-sizing: borde= -r-box; position: relative; top: 50%; margin-top: -7.5px; vertical-align: mi= -ddle; border: 1px solid rgb(146, 146, 146); border-radius: 6.5px; height: 1= -3px; width: 13px; background-color: rgb(240, 240, 240); } - -.gantt_link_control.task_right div.gantt_link_point { margin-left: 7px; } - -.gantt_link_control div:hover { background-color: rgb(255, 255, 255); } - -.gantt_link_control.task_left { left: -20px; } - -.gantt_link_control.task_right { right: -20px; } - -.gantt_link_target .gantt_link_control div, .gantt_task_line.gantt_drag_mov= -e .gantt_link_control div, .gantt_task_line.gantt_drag_move .gantt_task_dra= -g, .gantt_task_line.gantt_drag_move .gantt_task_progress_drag, .gantt_task_= -line.gantt_drag_progress .gantt_link_control div, .gantt_task_line.gantt_dr= -ag_progress .gantt_task_drag, .gantt_task_line.gantt_drag_progress .gantt_t= -ask_progress_drag, .gantt_task_line.gantt_drag_resize .gantt_link_control d= -iv, .gantt_task_line.gantt_drag_resize .gantt_task_drag, .gantt_task_line.g= -antt_drag_resize .gantt_task_progress_drag, .gantt_task_line.gantt_selected= - .gantt_link_control div, .gantt_task_line.gantt_selected .gantt_task_drag,= - .gantt_task_line.gantt_selected .gantt_task_progress_drag, .gantt_task_lin= -e:hover .gantt_link_control div, .gantt_task_line:hover .gantt_task_drag, .= -gantt_task_line:hover .gantt_task_progress_drag { display: block; } - -.gantt_link_source, .gantt_link_target { box-shadow: rgb(61, 185, 211) 0px = -0px 3px; } - -.gantt_link_target.link_finish_allow, .gantt_link_target.link_start_allow {= - box-shadow: rgb(255, 191, 94) 0px 0px 3px; } - -.gantt_link_target.link_finish_deny, .gantt_link_target.link_start_deny { b= -ox-shadow: rgb(232, 126, 123) 0px 0px 3px; } - -.link_finish_allow .gantt_link_control.task_end_date div, .link_start_allow= - .gantt_link_control.task_start_date div { background-color: rgb(255, 191, = -94); border-color: rgb(255, 160, 17); } - -.link_finish_deny .gantt_link_control.task_end_date div, .link_start_deny .= -gantt_link_control.task_start_date div { background-color: rgb(232, 126, 12= -3); border-color: rgb(221, 62, 58); } - -.gantt_link_arrow_right { border-width: 4px 0px 4px 6px; border-left-color:= - rgb(255, 160, 17); border-top-color: transparent !important; border-right-= -color: transparent !important; border-bottom-color: transparent !important;= - } - -.gantt_link_arrow_left { border-width: 4px 6px 4px 0px; margin-top: -1px; b= -order-right-color: rgb(255, 160, 17); border-top-color: transparent !import= -ant; border-bottom-color: transparent !important; border-left-color: transp= -arent !important; } - -.gantt_link_arrow_up { border-width: 0px 4px 6px; border-bottom-color: rgb(= -255, 160, 17); border-top-color: transparent !important; border-right-color= -: transparent !important; border-left-color: transparent !important; } - -.gantt_link_arrow_down { border-width: 4px 6px 0px 4px; border-top-color: r= -gb(255, 160, 17); border-right-color: transparent !important; border-bottom= --color: transparent !important; border-left-color: transparent !important; = -} - -.gantt_task_drag, .gantt_task_progress_drag { cursor: ew-resize; display: n= -one; position: absolute; } - -.gantt_task_drag.task_right { cursor: e-resize; } - -.gantt_task_drag.task_left { cursor: w-resize; } - -.gantt_task_drag { height: 100%; width: 8px; z-index: 1; top: -1px; } - -.gantt_task_drag.task_left { left: -7px; } - -.gantt_task_drag.task_right { right: -7px; } - -.gantt_task_progress_drag { height: 8px; width: 8px; bottom: -4px; margin-l= -eft: -4px; background-position: center bottom; background-image: url("data:= -image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAAGXRFWHRTb2= -Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAA= -Dw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4= -OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3J= -lIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZj= -pSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtb= -nMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMu= -YWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXA= -vMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS= -9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZ= -G93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkY3Rjk0RUVDMkYzMTFFMkI1OThEQTA3= -ODU0OTkzMEEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkY3Rjk0RUZDMkYzMTFFMkI1OTh= -EQTA3ODU0OTkzMEEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLm= -lpZDoyRjdGOTRFQ0MyRjMxMUUyQjU5OERBMDc4NTQ5OTMwQSIgc3RSZWY6ZG9jdW1lbnRJRD0ie= -G1wLmRpZDoyRjdGOTRFREMyRjMxMUUyQjU5OERBMDc4NTQ5OTMwQSIvPiA8L3JkZjpEZXNjcmlw= -dGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PobPBzIAAAD= -kSURBVHjaYpk2bRoDDsAExL1QdjEQ/8OmiAWHZk4gXqymqhQM4ty6fU8OSMUA8XdiDBAB4k0a6i= -qWRga6EKcwMQXduHlnL5DpB8Rv0J2JDFSA+JiOtgZcMwiA2CAxkBxUDVYDLEAKgIpV9XQ0MZwFE= -gPJAZnHoWpRDAgC4n2W5saiQKfjClQGkBxQDciL+6B6wAbkA/EqJwdrTkUFOQZCAKQGpBbIXA3S= -CzJggo+XK7OEuBgDsQCkFqgHrBfsBT5eHgZSAUwP2IBfv36TbABMDygdtK1Zv6UESLORaAbIhG6= -AAAMAKN8wE24DXWcAAAAASUVORK5CYII=3D"); background-repeat: no-repeat; z-inde= -x: 1; } - -.gantt_task_progress_drag:hover { background-image: url("data:image/png;bas= -e64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAABmJLR0QA/wD/AP+gvaeTAAA= -ACXBIWXMAAAsTAAALEwEAmpwYAAAAs0lEQVQoz6WMPW7CQBgFJxZaiZ60qcgdwjVMmzu8gpwhDU= -LabXyBdHAGuzRHivQiQZovigS2+Jtu95t5T03TMITtCtjEc5VSOgx5k5F4CnxJWgKUUl5sv6eUv= -k/daiCeAe1fDCCpBtq4jQ/YngO9pMWpGH99OOcDtt8ifmWEuO3D/R+wXQOdpGcuIGkGdNFQ2Raw= -lTTlSsLd2RY55+O95JyPFQ/y8MAE+CylfADpxvYHWP8CXj+JR4wdKHYAAAAASUVORK5CYII=3D"= -); } - -.gantt_link_tooltip { box-shadow: rgb(136, 136, 136) 3px 3px 3px; backgroun= -d-color: rgb(255, 255, 255); border-left: 1px dotted rgb(206, 206, 206); bo= -rder-top: 1px dotted rgb(206, 206, 206); font-family: Tahoma; font-size: 8p= -t; color: rgb(68, 68, 68); padding: 6px; line-height: 20px; } - -.gantt_link_direction { height: 0px; border-width: 0px 0px 2px; border-top-= -style: initial; border-right-style: initial; border-left-style: initial; bo= -rder-color: rgb(255, 160, 17); border-image: initial; border-bottom-style: = -dashed; transform-origin: 0px 0px; z-index: 2; margin-left: 1px; position: = -absolute; } - -.gantt_grid_data .gantt_row.gantt_selected, .gantt_grid_data .gantt_row.odd= -.gantt_selected, .gantt_task_row.gantt_selected { background-color: rgb(255= -, 243, 161); } - -.gantt_task_row.gantt_selected .gantt_task_cell { border-right-color: rgb(2= -55, 236, 110); } - -.gantt_task_line.gantt_selected { box-shadow: rgb(41, 156, 180) 0px 0px 5px= -; } - -.gantt_task_line.gantt_project.gantt_selected { box-shadow: rgb(70, 173, 81= -) 0px 0px 5px; } - -.gantt_task_line.gantt_milestone { visibility: hidden; background-color: rg= -b(211, 61, 175); border: 0px solid rgb(97, 22, 79); box-sizing: content-box= -; } - -.gantt_task_line.gantt_milestone div { visibility: visible; } - -.gantt_task_line.gantt_milestone .gantt_task_content { background: inherit;= - border-color: inherit; border-style: inherit; border-image: inherit; borde= -r-width: 1px; border-radius: inherit; box-sizing: border-box; transform: ro= -tate(45deg); } - -.gantt_task_line.gantt_task_inline_color { border-color: rgb(153, 153, 153)= -; } - -.gantt_task_line.gantt_task_inline_color .gantt_task_progress { background-= -color: rgb(54, 54, 54); opacity: 0.2; } - -.gantt_task_line.gantt_task_inline_color.gantt_project.gantt_selected, .gan= -tt_task_line.gantt_task_inline_color.gantt_selected { box-shadow: rgb(153, = -153, 153) 0px 0px 5px; } - -.gantt_task_link.gantt_link_inline_color:hover .gantt_line_wrapper div { bo= -x-shadow: rgb(153, 153, 153) 0px 0px 5px 0px; } - -.gantt_critical_task { background-color: rgb(230, 48, 48); border-color: rg= -b(157, 58, 58); } - -.gantt_critical_task .gantt_task_progress { background-color: rgba(0, 0, 0,= - 0.4); } - -.gantt_critical_link .gantt_line_wrapper > div { background-color: rgb(230,= - 48, 48); } - -.gantt_critical_link .gantt_link_arrow { border-color: rgb(230, 48, 48); } - -.gantt_btn_set:focus, .gantt_cell:focus, .gantt_grid_head_cell:focus, .gant= -t_popup_button:focus, .gantt_qi_big_icon:focus, .gantt_row:focus { box-shad= -ow: rgb(77, 144, 254) 0px 0px 1px 1px inset; } - -.gantt_split_parent, .gantt_split_subproject { opacity: 0.1; pointer-events= -: none; } - -.gantt_rollup_child .gantt_link_control, .gantt_rollup_child:hover .gantt_l= -ink_control { display: none; } - -.gantt_unselectable, .gantt_unselectable div { user-select: none; } - -.gantt_cal_light { -webkit-tap-highlight-color: transparent; background: rg= -b(255, 255, 255); border-radius: 6px; font-family: Arial; border: 1px solid= - rgb(206, 206, 206); color: rgb(107, 107, 107); font-size: 12px; position: = -absolute; z-index: 10001; width: 550px; height: 250px; box-shadow: rgba(0, = -0, 0, 0.07) 3px 3px 3px; } - -.gantt_cal_light_wide { width: 650px; } - -.gantt_cal_light select { font-family: Arial; border: 1px solid rgb(206, 20= -6, 206); font-size: 13px; padding: 2px; margin: 0px; } - -.gantt_cal_ltitle { padding: 7px 10px; overflow: hidden; border-radius: 6px= - 6px 0px 0px; } - -.gantt_cal_ltitle, .gantt_cal_ltitle span { white-space: nowrap; } - -.gantt_cal_lsection { color: rgb(114, 114, 114); font-weight: 700; padding:= - 12px 0px 5px 10px; } - -.gantt_cal_lsection .gantt_fullday { float: right; margin-right: 5px; font-= -size: 12px; font-weight: 400; line-height: 20px; vertical-align: top; curso= -r: pointer; } - -.gantt_cal_lsection { font-size: 13px; } - -.gantt_cal_ltext { padding: 2px 10px; overflow: hidden; } - -.gantt_cal_ltext textarea { overflow: hidden auto; font-family: Arial; font= --size: 13px; box-sizing: border-box; border: 1px solid rgb(206, 206, 206); = -height: 100%; width: 100%; resize: none; outline: none !important; } - -.gantt_section_constraint [data-constraint-time-select] { margin-left: 20px= -; } - -.gantt_time { font-weight: 700; } - -.gantt_cal_light .gantt_title { padding-left: 10px; } - -.gantt_cal_larea { border-top: 1px solid rgb(206, 206, 206); border-bottom:= - 1px solid rgb(206, 206, 206); border-image: initial; border-right: none; b= -order-left: none; background-color: rgb(255, 255, 255); overflow: hidden; h= -eight: 1px; } - -.gantt_btn_set { margin: 10px 7px 5px 10px; padding: 5px 15px 5px 10px; flo= -at: left; border-radius: 4px; border: 0px solid rgb(206, 206, 206); height:= - 32px; font-weight: 700; background: rgb(255, 255, 255); box-sizing: border= --box; cursor: pointer; } - -.gantt_hidden { display: none; } - -.gantt_btn_set div { float: left; font-size: 13px; height: 22px; line-heigh= -t: 22px; background-repeat: no-repeat; vertical-align: middle; } - -.gantt_save_btn { background-image: url("data:image/png;base64,iVBORw0KGgoA= -AAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR= -5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/Ii= -BpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvY= -mU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwg= -MjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8= -vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbi= -ByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4b= -Wxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9= -Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmV= -hdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSU= -Q9InhtcC5paWQ6MTk1OUU5RDFDMzA0MTFFMkExMUZBQTdDNDAzOUE5RjMiIHhtcE1NOkRvY3VtZ= -W50SUQ9InhtcC5kaWQ6MTk1OUU5RDJDMzA0MTFFMkExMUZBQTdDNDAzOUE5RjMiPiA8eG1wTU06= -RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxOTU5RTlDRkMzMDQxMUUyQTE= -xRkFBN0M0MDM5QTlGMyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxOTU5RTlEMEMzMDQxMU= -UyQTExRkFBN0M0MDM5QTlGMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6e= -G1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjDroXYAAAEXSURBVHjaYvz//z8DJYCRUgPIAUxA= -bAnEHiAHMIBcQCwGaRYXF3e6evXqoffv39/dv38/CymaGSUkJBzv3LlzCsj///fv3wdAihkkIQn= -EvkAshU8zLy+v7a1bt06ANP/79+87kDIAy505cybq06dPr3p7ezuwGQLTfOPGjWP/ESAZLg8kPK= -BO+g01RBJNszWyZqC6uSgWgIg/f/4shxnS2dnZBjMEqNkSFGBImi8CKTYMA4BYCGjIczRDHC5du= -nQQSfN7IKWI4UUkjjdMMdCwnw8ePLjwHxV4Yw1gZA5Q47z/2EELzhhCE+ABGvIQWSeQvwcU38Qa= -AML2wHj+C/X3MyAlijeB4ZBoBOIPQGxJKIVSnBsBAgwABddBclWfcZUAAAAASUVORK5CYII=3D"= -); margin-top: 2px; width: 21px; } - -.gantt_cancel_btn { margin-top: 2px; background-image: url("data:image/png;= -base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBB= -ZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2t= -ldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldG= -EgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jM= -DExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1s= -bnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJ= -kZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY2= -9tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tL= -yIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJj= -ZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHh= -tcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDkzMDA3MzlDMzA0MTFFMjg2QTVFMzFEQzgwRkJERD= -YiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDkzMDA3M0FDMzA0MTFFMjg2QTVFMzFEQzgwR= -kJERDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowOTMw= -MDczN0MzMDQxMUUyODZBNUUzMURDODBGQkRENiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo= -wOTMwMDczOEMzMDQxMUUyODZBNUUzMURDODBGQkRENiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC= -9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmYuYOUAAAEdSURBVHjaY= -vz//z8DJYAFXWDlypU8QKoIiD2A2AwqfAqIdwBxX3h4+Bdk9YzILgBqtgdS84FYEYeF94E4EWjI= -QZgAE5LmQCB1AKoZZKMPEAtAMYh9GSp3AKjWD8UFQAEhIPshEIOc3wHENUBb/qJ57SyQMoJyPwK= -xElDNO1gYFEE17wMKVmIJlzNQzeegrjaA6qmBecEbSvfh0GwMxGeBhoPoemQ9MAO0kEIbl2YTqP= -AFKK2IbMB3AjabYIkRZmQD7kNpMyI0G0PpO8gGbIUFJj7NQDk2INWIrIcJKfBAKcwJqvkcDs0Tg= -FgXGo19KCkRmpDWQdWDEk0NUoCBoq0FqhkE/IEWbKJKUmZEz43QzFSKIzN1481M5ACAAAMAlfl/= -lCwRpagAAAAASUVORK5CYII=3D"); width: 20px; } - -.gantt_delete_btn { background-image: url("data:image/png;base64,iVBORw0KGg= -oAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlY= -WR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/= -IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWR= -vYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MS= -wgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwO= -i8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlv= -biByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB= -4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZW= -Y9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDc= -mVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNl= -SUQ9InhtcC5paWQ6MjFENzI3NUNDMzA0MTFFMjhBNjJGQTc3MUIyQzYzNEYiIHhtcE1NOkRvY3V= -tZW50SUQ9InhtcC5kaWQ6MjFENzI3NURDMzA0MTFFMjhBNjJGQTc3MUIyQzYzNEYiPiA8eG1wTU= -06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyMUQ3Mjc1QUMzMDQxMUUyO= -EE2MkZBNzcxQjJDNjM0RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyMUQ3Mjc1QkMzMDQx= -MUUyOEE2MkZBNzcxQjJDNjM0RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g= -6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmUD0gAAAABvSURBVHjaYvz//z8DIyMjAxYQic= -Reji4J0ofKQNP8HwmgGQbXB8IsWGwDSSwDuioKjY9uBthVjFAXYHUGAQA2kYmBUoAUBpGk0LAwg= -BvwH+YX4mkwptgLowYMRgOITUyYKRFIN/wnDjQgJySAAAMApryKzL8wjfUAAAAASUVORK5CYII= -=3D"); margin-top: 2px; width: 20px; } - -.gantt_cal_cover { width: 100%; height: 100%; position: fixed; z-index: 100= -00; top: 0px; left: 0px; background-color: rgb(0, 0, 0); opacity: 0.1; } - -.gantt_custom_button { padding: 0px 3px; font-family: Arial; font-size: 13p= -x; font-weight: 400; margin-right: 10px; margin-top: -5px; cursor: pointer;= - float: right; height: 21px; width: 90px; border: 1px solid rgb(206, 206, 2= -06); text-align: center; border-radius: 4px; } - -.gantt_custom_button div { cursor: pointer; float: none; height: 21px; line= --height: 21px; vertical-align: middle; } - -.gantt_custom_button div:first-child { display: none; } - -.gantt_cal_light_wide { width: 580px; padding: 2px 4px; } - -.gantt_cal_light_wide .gantt_cal_larea { box-sizing: border-box; border: 1p= -x solid rgb(206, 206, 206); } - -.gantt_cal_light_wide .gantt_cal_lsection { border: 0px; float: left; text-= -align: right; width: 80px; height: 20px; padding: 5px 10px 0px 0px; } - -.gantt_cal_light_wide .gantt_wrap_section { position: relative; padding: 10= -px 0px; overflow: hidden; border-bottom: 1px solid rgb(235, 235, 235); } - -.gantt_cal_light_wide .gantt_section_time { overflow: hidden; padding-right= -: 0px; padding-top: 2px !important; height: 20px !important; } - -.gantt_cal_light_wide .gantt_cal_ltext { padding-right: 0px; } - -.gantt_cal_light_wide .gantt_cal_larea { padding: 0px 10px; width: 100%; } - -.gantt_cal_light_wide .gantt_section_time { background: transparent; } - -.gantt_cal_light_wide .gantt_cal_checkbox label { padding-left: 0px; } - -.gantt_cal_light_wide .gantt_cal_lsection .gantt_fullday { float: none; mar= -gin-right: 0px; font-weight: 700; cursor: pointer; } - -.gantt_cal_light_wide .gantt_custom_button { position: absolute; top: 0px; = -right: 0px; margin-top: 2px; } - -.gantt_cal_light_wide .gantt_repeat_right { margin-right: 55px; } - -.gantt_cal_light_wide.gantt_cal_light_full { width: 738px; } - -.gantt_cal_wide_checkbox input { margin-top: 8px; margin-left: 14px; } - -.gantt_cal_light input { font-size: 13px; } - -.gantt_section_time { background-color: rgb(255, 255, 255); white-space: no= -wrap; padding-right: 10px; padding-bottom: 5px; padding-left: 10px; padding= --top: 2px !important; } - -.gantt_section_time .gantt_time_selects { float: left; height: 25px; } - -.gantt_section_time .gantt_time_selects select { height: 23px; padding: 2px= -; border: 1px solid rgb(206, 206, 206); } - -.gantt_duration { width: 100px; height: 23px; float: left; white-space: now= -rap; margin-left: 20px; line-height: 23px; } - -.gantt_duration .gantt_duration_dec, .gantt_duration .gantt_duration_inc, .= -gantt_duration .gantt_duration_value { box-sizing: border-box; text-align: = -center; vertical-align: top; height: 100%; border: 1px solid rgb(206, 206, = -206); } - -.gantt_duration .gantt_duration_value { width: 40px; padding: 3px 4px; bord= -er-left-width: 0px; border-right-width: 0px; } - -.gantt_duration .gantt_duration_value.gantt_duration_value_formatted { widt= -h: 70px; } - -.gantt_duration .gantt_duration_dec, .gantt_duration .gantt_duration_inc { = -width: 20px; padding: 1px; background: rgb(255, 255, 255); } - -.gantt_duration .gantt_duration_dec { border-top-left-radius: 4px; border-b= -ottom-left-radius: 4px; } - -.gantt_duration .gantt_duration_inc { margin-right: 4px; border-top-right-r= -adius: 4px; border-bottom-right-radius: 4px; } - -.gantt_resources { max-height: 150px; height: auto; overflow-y: auto; } - -.gantt_resource_row { display: block; padding: 10px 0px; border-bottom: 1px= - solid rgb(235, 235, 235); cursor: pointer; } - -.gantt_resource_row input[type=3D"checkbox"]:not(:checked), .gantt_resource= -_row input[type=3D"checkbox"]:not(:checked) ~ div { opacity: 0.5; } - -.gantt_resource_toggle { vertical-align: middle; } - -.gantt_resources_filter .gantt_resources_filter_input { padding: 1px 2px; b= -ox-sizing: border-box; } - -.gantt_resources_filter .switch_unsetted { vertical-align: middle; } - -.gantt_resource_cell { display: inline-block; } - -.gantt_resource_cell.gantt_resource_cell_checkbox { width: 24px; max-width:= - 24px; min-width: 24px; vertical-align: middle; } - -.gantt_resource_cell.gantt_resource_cell_label { width: 40%; max-width: 40%= -; vertical-align: middle; } - -.gantt_resource_cell.gantt_resource_cell_value { width: 30%; max-width: 30%= -; vertical-align: middle; } - -.gantt_resource_cell.gantt_resource_cell_value input, .gantt_resource_cell.= -gantt_resource_cell_value select { width: 80%; vertical-align: middle; padd= -ing: 1px 2px; box-sizing: border-box; } - -.gantt_resource_cell.gantt_resource_cell_unit { width: 10%; max-width: 10%;= - vertical-align: middle; } - -.gantt_resource_early_value { opacity: 0.8; font-size: 0.9em; } - -.gantt_cal_quick_info { border: 1px solid rgb(206, 206, 206); border-radius= -: 6px; position: absolute; z-index: 300; box-shadow: rgba(0, 0, 0, 0.07) 3p= -x 3px 3px; background-color: rgb(255, 255, 255); width: 300px; transition: = -left 0.5s ease 0s, right 0.5s ease 0s; } - -.gantt_no_animate { transition: none 0s ease 0s; } - -.gantt_cal_quick_info.gantt_qi_left .gantt_qi_big_icon { float: right; } - -.gantt_cal_qi_title { border-radius: 6px 6px 0px 0px; padding: 5px 0px 8px = -12px; color: rgb(69, 69, 69); background-color: rgb(255, 255, 255); border-= -bottom: 1px solid rgb(206, 206, 206); } - -.gantt_cal_qi_tdate { font-size: 14px; font-weight: 700; } - -.gantt_cal_qi_tcontent { font-size: 13px; } - -.gantt_cal_qi_content { padding: 16px 8px; font-size: 13px; color: rgb(69, = -69, 69); overflow: hidden; } - -.gantt_cal_qi_controls { border-radius: 0px 0px 6px 6px; padding-left: 7px;= - } - -.gantt_cal_qi_controls .gantt_menu_icon { margin-top: 6px; background-repea= -t: no-repeat; } - -.gantt_cal_qi_controls .gantt_menu_icon.icon_edit { width: 20px; background= --image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACN= -iR0NAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAB3RJTUUH3QYFCjI= -5ZQj5bAAAAFNJREFUOMvt0zEOACAIA0DkwTymH8bJTRTKZGJXyaWEKPKTCQAH4Ls37cItcDUzsx= -HNDLZNhCq7Gt1wh9ErV7EjyGAhyGLphlnsClWuS32rn0czAV+vNGrM/LBtAAAAAElFTkSuQmCC"= -); } - -.gantt_cal_qi_controls .gantt_menu_icon.icon_delete { width: 20px; backgrou= -nd-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAA= -Af8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvb= -S5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVT= -ek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs= -9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNy= -AgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyL= -zIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6= -eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25= -zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb2= -0veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvd= -G9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MjFENzI3NUND= -MzA0MTFFMjhBNjJGQTc3MUIyQzYzNEYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MjFENzI= -3NURDMzA0MTFFMjhBNjJGQTc3MUIyQzYzNEYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW= -5zdGFuY2VJRD0ieG1wLmlpZDoyMUQ3Mjc1QUMzMDQxMUUyOEE2MkZBNzcxQjJDNjM0RiIgc3RSZ= -WY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyMUQ3Mjc1QkMzMDQxMUUyOEE2MkZBNzcxQjJDNjM0RiIv= -PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGV= -uZD0iciI/PmUD0gAAAABvSURBVHjaYvz//z8DIyMjAxYQicReji4J0ofKQNP8HwmgGQbXB8IsWG= -wDSSwDuioKjY9uBthVjFAXYHUGAQA2kYmBUoAUBpGk0LAwgBvwH+YX4mkwptgLowYMRgOITUyYK= -RFIN/wnDjQgJySAAAMApryKzL8wjfUAAAAASUVORK5CYII=3D"); } - -.gantt_qi_big_icon { font-size: 13px; border-radius: 4px; font-weight: 700;= - background: rgb(255, 255, 255); margin: 5px 9px 8px 0px; min-width: 60px; = -line-height: 32px; vertical-align: middle; padding: 0px 10px 0px 5px; curso= -r: pointer; border: 1px solid rgb(206, 206, 206); } - -.gantt_cal_qi_controls div { float: left; height: 32px; text-align: center;= - line-height: 32px; } - -.gantt_tooltip { padding: 10px; position: absolute; z-index: 50; white-spac= -e: nowrap; } - -.gantt_resource_marker { position: absolute; text-align: center; font-size:= - 14px; color: rgb(255, 255, 255); } - -.gantt_resource_marker_ok { background: rgba(78, 208, 134, 0.75); } - -.gantt_resource_marker_overtime { background: rgba(255, 133, 133, 0.69); } - -.gantt_histogram_label { width: 100%; height: 100%; position: absolute; z-i= -ndex: 1; font-weight: 700; font-size: 13px; } - -.gantt_histogram_fill { background-color: rgba(41, 157, 180, 0.2); width: 1= -00%; position: absolute; bottom: 0px; } - -.gantt_histogram_hor_bar { height: 1px; margin-top: -1px; } - -.gantt_histogram_hor_bar, .gantt_histogram_vert_bar { position: absolute; b= -ackground: rgb(41, 157, 180); margin-left: -1px; } - -.gantt_histogram_vert_bar { width: 1px; } - -.gantt_histogram_cell { position: absolute; text-align: center; font-size: = -13px; color: rgb(0, 0, 0); } - -.gantt_marker { height: 100%; width: 2px; top: 0px; position: absolute; tex= -t-align: center; background-color: rgba(255, 0, 0, 0.4); box-sizing: border= --box; } - -.gantt_marker .gantt_marker_content { padding: 5px; background: inherit; co= -lor: rgb(255, 255, 255); position: absolute; font-size: 12px; line-height: = -12px; opacity: 0.8; } - -.gantt_marker_area { position: absolute; top: 0px; left: 0px; } - -.gantt_grid_editor_placeholder { position: absolute; } - -.gantt_grid_editor_placeholder > div, .gantt_grid_editor_placeholder input,= - .gantt_grid_editor_placeholder select { width: 100%; height: 100%; box-siz= -ing: border-box; } - -.gantt_row_placeholder div { opacity: 0.5; } - -.gantt_row_placeholder .gantt_add, .gantt_row_placeholder .gantt_file { dis= -play: none; } - -.gantt_drag_marker.gantt_grid_dnd_marker { background-color: transparent; t= -ransition: all 0.1s ease 0s; } - -.gantt_grid_dnd_marker_line { height: 4px; width: 100%; background-color: r= -gb(52, 152, 219); } - -.gantt_grid_dnd_marker_line::before { background: rgb(255, 255, 255); width= -: 12px; height: 12px; box-sizing: border-box; border: 3px solid rgb(52, 152= -, 219); border-radius: 6px; content: ""; line-height: 1px; display: block; = -position: absolute; margin-left: -11px; margin-top: -4px; pointer-events: n= -one; } - -.gantt_grid_dnd_marker_folder { height: 100%; width: 100%; position: absolu= -te; pointer-events: none; box-sizing: border-box; box-shadow: rgb(63, 152, = -219) 0px 0px 0px 2px inset; background: transparent; } - -.gantt_overlay_area { display: none; } - -.gantt_overlay, .gantt_overlay_area { position: absolute; height: inherit; = -width: inherit; top: 0px; left: 0px; } - -.gantt_click_drag_rect { position: absolute; left: 0px; top: 0px; outline: = -rgb(63, 152, 219) solid 1px; background-color: rgba(52, 152, 219, 0.3); } - -.gantt_timeline_move_available, .gantt_timeline_move_available * { cursor: = -move; } - -.gantt_rtl .gantt_grid { text-align: right; } - -.gantt_rtl .gantt_cell, .gantt_rtl .gantt_row { flex-direction: row-reverse= -; } - -.gantt_layout_content { width: 100%; overflow: auto; box-sizing: border-box= -; } - -.gantt_layout_cell { position: relative; box-sizing: border-box; } - -.gantt_layout_cell > .gantt_layout_header { background: rgb(51, 170, 232); = -color: rgb(255, 255, 255); font-size: 17px; padding: 5px 10px; box-sizing: = -border-box; } - -.gantt_layout_header.collapsed_x { background: rgb(169, 169, 169); } - -.gantt_layout_header.collapsed_x .gantt_header_arrow::before { content: "= -=E2=87=A7"; } - -.gantt_layout_header.collapsed_y { background: rgb(169, 169, 169); } - -.gantt_layout_header.collapsed_y .gantt_header_arrow::before { content: "= -=E2=87=A9"; } - -.gantt_layout_header { cursor: pointer; } - -.gantt_layout_header .gantt_header_arrow { float: right; text-align: right;= - } - -.gantt_layout_header .gantt_header_arrow::before { content: "=E2=87=A6"; } - -.gantt_layout_header.vertical .gantt_header_arrow::before { content: "=E2= -=87=A7"; } - -.gantt_layout_outer_scroll_vertical .gantt_layout_content { overflow-y: hid= -den; } - -.gantt_layout_outer_scroll_horizontal .gantt_layout_content { overflow-x: h= -idden; } - -.gantt_layout_x > .gantt_layout_cell { display: inline-block; vertical-alig= -n: top; } - -.gantt_layout_x { white-space: nowrap; } - -.gantt_resizing { opacity: 0.7; background: rgb(242, 242, 242); } - -.gantt_layout_cell_border_right.gantt_resizer { overflow: visible; border-r= -ight: 0px; } - -.gantt_resizer { cursor: e-resize; position: relative; } - -.gantt_resizer_y { cursor: n-resize; } - -.gantt_resizer_stick { background: rgb(51, 170, 232); z-index: 9999; positi= -on: absolute; top: 0px; width: 100%; } - -.gantt_resizer_x .gantt_resizer_x { position: absolute; width: 20px; height= -: 100%; margin-left: -10px; top: 0px; left: 0px; z-index: 1; } - -.gantt_resizer_y .gantt_resizer_y { position: absolute; height: 20px; width= -: 100%; top: -10px; left: 0px; z-index: 1; } - -.gantt_resizer_error { background: rgb(205, 92, 92) !important; } - -.gantt_layout_cell_border_left { border-left: 1px solid rgb(206, 206, 206);= - } - -.gantt_layout_cell_border_right { border-right: 1px solid rgb(206, 206, 206= -); } - -.gantt_layout_cell_border_top { border-top: 1px solid rgb(206, 206, 206); } - -.gantt_layout_cell_border_bottom { border-bottom: 1px solid rgb(206, 206, 2= -06); } - -.gantt_layout_cell_border_transparent { border-color: transparent; } - -.gantt_window { position: absolute; top: 50%; left: 50%; z-index: 999999999= -; background: rgb(255, 255, 255); } - -.gantt_window_content { position: relative; } - -.gantt_window_content_header { background: rgb(51, 153, 204); color: rgb(25= -5, 255, 255); height: 33px; padding: 10px 10px 0px; border-bottom: 2px soli= -d rgb(255, 255, 255); position: relative; } - -.gantt_window_content_header_text { padding-left: 10%; } - -.gantt_window_content_header_buttons { position: absolute; top: 10px; right= -: 10px; } - -.gantt_window_content_header_buttons:hover { color: rgb(0, 0, 0); cursor: p= -ointer; } - -.gantt_window_content_resizer { position: absolute; width: 15px; height: 15= -px; bottom: 0px; line-height: 15px; right: -1px; text-align: center; backgr= -ound-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAMA= -AAAMCGV4AAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAABZJREFUeAFjIAUwUshlpJD= -LSIhLGAAACQ4AFk79JaMAAAAASUVORK5CYII=3D"); cursor: nw-resize; z-index: 999;= - } - -.gantt_window_content_frame { position: absolute; top: 0px; left: 0px; widt= -h: 100%; height: 100%; background: rgba(0, 0, 0, 0.1); z-index: 9999; } - -.gantt_window_drag { cursor: pointer !important; } - -.gantt_window_resizing { overflow: visible; } - -.gantt_window_resizing_body { overflow: hidden !important; } - -.gantt_window_modal { background: rgba(0, 0, 0, 0.1); z-index: 9999; top: 0= -px; left: 0px; width: 100%; height: 100%; position: fixed; } - -.gantt_cal_light, .gantt_cal_quick_info, .gantt_container, .gantt_message_a= -rea, .gantt_modal_box, .gantt_tooltip { text-rendering: optimizelegibility;= - -webkit-font-smoothing: antialiased; } - -.gantt_noselect { user-select: none; } - -.gantt_noselect .gantt_grid_data .gantt_row.odd:hover, .gantt_noselect .gan= -tt_grid_data .gantt_row:hover { background-color: unset; } - -.gantt_drag_marker { position: absolute; top: -1000px; left: -1000px; font-= -family: Arial; font-size: 13px; z-index: 1; white-space: nowrap; } - -.gantt_drag_marker .gantt_tree_icon.gantt_blank, .gantt_drag_marker .gantt_= -tree_icon.gantt_close, .gantt_drag_marker .gantt_tree_icon.gantt_open, .gan= -tt_drag_marker .gantt_tree_indent { display: none; } - -.gantt_drag_marker, .gantt_drag_marker .gantt_row.odd { background-color: r= -gb(255, 255, 255); } - -.gantt_drag_marker .gantt_row { border-left: 1px solid rgb(210, 210, 210); = -border-top: 1px solid rgb(210, 210, 210); } - -.gantt_drag_marker .gantt_cell { border-color: rgb(210, 210, 210); } - -.gantt_row.gantt_over, .gantt_task_row.gantt_over { background-color: rgb(0= -, 112, 254); } - -.gantt_row.gantt_transparent .gantt_cell { opacity: 0.7; } - -.gantt_task_row.gantt_transparent { background-color: rgb(248, 253, 253); } - -.gantt_popup_button.gantt_delete_button { background: rgb(61, 185, 211); te= -xt-shadow: rgb(36, 138, 159) 0px -1px 0px; color: rgb(255, 255, 255); font-= -weight: 700; border-width: 0px; } - -.gantt_container_resize_watcher { background: transparent; width: 100%; hei= -ght: 100%; position: absolute; top: 0px; left: 0px; z-index: -1; pointer-ev= -ents: none; border: 0px; box-sizing: border-box; opacity: 0; } - -.hljs { display: block; overflow-x: auto; padding: 0.5em; color: rgb(51, 51= -, 51); background: rgb(248, 248, 248); } - -.hljs-comment, .hljs-quote { color: rgb(153, 153, 136); font-style: italic;= - } - -.hljs-keyword, .hljs-selector-tag, .hljs-subst { color: rgb(51, 51, 51); fo= -nt-weight: 700; } - -.hljs-literal, .hljs-number, .hljs-tag .hljs-attr, .hljs-template-variable,= - .hljs-variable { color: teal; } - -.hljs-doctag, .hljs-string { color: rgb(221, 17, 68); } - -.hljs-section, .hljs-selector-id, .hljs-title { color: rgb(153, 0, 0); font= --weight: 700; } - -.hljs-subst { font-weight: 400; } - -.hljs-class .hljs-title, .hljs-type { color: rgb(68, 85, 136); font-weight:= - 700; } - -.hljs-attribute, .hljs-name, .hljs-tag { color: navy; font-weight: 400; } - -.hljs-link, .hljs-regexp { color: rgb(0, 153, 38); } - -.hljs-bullet, .hljs-symbol { color: rgb(153, 0, 115); } - -.hljs-built_in, .hljs-builtin-name { color: rgb(0, 134, 179); } - -.hljs-meta { color: rgb(153, 153, 153); font-weight: 700; } - -.hljs-deletion { background: rgb(255, 221, 221); } - -.hljs-addition { background: rgb(221, 255, 221); } - -.hljs-emphasis { font-style: italic; } - -.hljs-strong { font-weight: 700; } - -.CircularProgressbar { width: 100%; vertical-align: middle; } - -.CircularProgressbar .CircularProgressbar-path { stroke: rgb(62, 152, 199);= - stroke-linecap: round; transition: stroke-dashoffset 0.5s ease 0s; } - -.CircularProgressbar .CircularProgressbar-trail { stroke: rgb(214, 214, 214= -); stroke-linecap: round; } - -.CircularProgressbar .CircularProgressbar-text { fill: rgb(62, 152, 199); f= -ont-size: 20px; dominant-baseline: middle; text-anchor: middle; } - -.CircularProgressbar .CircularProgressbar-background { fill: rgb(214, 214, = -214); } - -.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-back= -ground { fill: rgb(62, 152, 199); } - -.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-text= - { fill: rgb(255, 255, 255); } - -.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-path= - { stroke: rgb(255, 255, 255); } - -.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-trai= -l { stroke: transparent; } - -.video-js .vjs-big-play-button .vjs-icon-placeholder::before, .video-js .vj= -s-modal-dialog, .vjs-button > .vjs-icon-placeholder::before, .vjs-modal-dia= -log .vjs-modal-dialog-content { position: absolute; top: 0px; left: 0px; wi= -dth: 100%; height: 100%; } - -.video-js .vjs-big-play-button .vjs-icon-placeholder::before, .vjs-button >= - .vjs-icon-placeholder::before { text-align: center; } - -@font-face { font-family: VideoJS; src: url("data:application/font-woff;cha= -rset=3Dutf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAA= -AAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAA= -ADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAA= -AAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAA= -DngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJx= -jYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BU= -gAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZ= -gQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quI= -EN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4Mi= -JMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9H= -d5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0i= -FLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2I= -W4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3= -v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/i= -rwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS= -6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6K= -nGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrL= -h36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9M= -J15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9Ov= -MK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKT= -x3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7y= -SVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL= -1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXH= -AkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI= -8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u= -5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qO= -s9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk= -7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pq= -UyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPM= -o9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgk= -BnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+O= -HlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pV= -rsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445= -oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenp= -W6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLf= -OgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdUL= -Vl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07= -h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1l= -FYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNr= -hdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyK= -MvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL= -5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ= -2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweW= -ubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3= -BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAo= -FpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7= -a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH= -1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7z= -Q8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNt= -D72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZ= -jwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJy= -kMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJz= -rWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id= -17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s= -1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwH= -H6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5J= -E5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+b= -KfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk= -1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65= -ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8= -BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxM= -J3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5Nwf= -Dn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK= -0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2Bk= -YGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB= -+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG= -4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2= -lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAej= -dm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8= -WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmV= -FlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Y= -u6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxt= -kMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0E= -XKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndl= -r6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rF= -UQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX= -7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPx= -AFP0BpLeJPA=3D=3D") format("woff"); font-weight: 400; font-style: normal; } - -.video-js .vjs-big-play-button .vjs-icon-placeholder::before, .video-js .vj= -s-play-control .vjs-icon-placeholder, .vjs-icon-play { font-family: VideoJS= -; font-weight: 400; font-style: normal; } - -.video-js .vjs-big-play-button .vjs-icon-placeholder::before, .video-js .vj= -s-play-control .vjs-icon-placeholder::before, .vjs-icon-play::before { cont= -ent: "=EF=84=81"; } - -.vjs-icon-play-circle { font-family: VideoJS; font-weight: 400; font-style:= - normal; } - -.vjs-icon-play-circle::before { content: "=EF=84=82"; } - -.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder, .vjs-icon-pa= -use { font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder::before, .vjs= --icon-pause::before { content: "=EF=84=83"; } - -.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder, .vjs-icon-volu= -me-mute { font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder::before, .vjs-i= -con-volume-mute::before { content: "=EF=84=84"; } - -.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder, .vjs-icon-volu= -me-low { font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder::before, .vjs-i= -con-volume-low::before { content: "=EF=84=85"; } - -.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder, .vjs-icon-volu= -me-mid { font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder::before, .vjs-i= -con-volume-mid::before { content: "=EF=84=86"; } - -.video-js .vjs-mute-control .vjs-icon-placeholder, .vjs-icon-volume-high { = -font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-mute-control .vjs-icon-placeholder::before, .vjs-icon-volume= --high::before { content: "=EF=84=87"; } - -.video-js .vjs-fullscreen-control .vjs-icon-placeholder, .vjs-icon-fullscre= -en-enter { font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-fullscreen-control .vjs-icon-placeholder::before, .vjs-icon-= -fullscreen-enter::before { content: "=EF=84=88"; } - -.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder, .vj= -s-icon-fullscreen-exit { font-family: VideoJS; font-weight: 400; font-style= -: normal; } - -.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder::bef= -ore, .vjs-icon-fullscreen-exit::before { content: "=EF=84=89"; } - -.vjs-icon-square { font-family: VideoJS; font-weight: 400; font-style: norm= -al; } - -.vjs-icon-square::before { content: "=EF=84=8A"; } - -.vjs-icon-spinner { font-family: VideoJS; font-weight: 400; font-style: nor= -mal; } - -.vjs-icon-spinner::before { content: "=EF=84=8B"; } - -.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,= - .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder= -, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholde= -r, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placehold= -er, .video-js .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-s= -ubtitles-button .vjs-icon-placeholder, .vjs-icon-subtitles { font-family: V= -ideoJS; font-weight: 400; font-style: normal; } - -.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:= -:before, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-pla= -ceholder::before, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs= --icon-placeholder::before, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-bu= -tton .vjs-icon-placeholder::before, .video-js .vjs-subs-caps-button .vjs-ic= -on-placeholder::before, .video-js .vjs-subtitles-button .vjs-icon-placehold= -er::before, .vjs-icon-subtitles::before { content: "=EF=84=8C"; } - -.video-js .vjs-captions-button .vjs-icon-placeholder, .video-js:lang(en) .v= -js-subs-caps-button .vjs-icon-placeholder, .video-js:lang(fr-CA) .vjs-subs-= -caps-button .vjs-icon-placeholder, .vjs-icon-captions { font-family: VideoJ= -S; font-weight: 400; font-style: normal; } - -.video-js .vjs-captions-button .vjs-icon-placeholder::before, .video-js:lan= -g(en) .vjs-subs-caps-button .vjs-icon-placeholder::before, .video-js:lang(f= -r-CA) .vjs-subs-caps-button .vjs-icon-placeholder::before, .vjs-icon-captio= -ns::before { content: "=EF=84=8D"; } - -.video-js .vjs-chapters-button .vjs-icon-placeholder, .vjs-icon-chapters { = -font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-chapters-button .vjs-icon-placeholder::before, .vjs-icon-cha= -pters::before { content: "=EF=84=8E"; } - -.vjs-icon-share { font-family: VideoJS; font-weight: 400; font-style: norma= -l; } - -.vjs-icon-share::before { content: "=EF=84=8F"; } - -.vjs-icon-cog { font-family: VideoJS; font-weight: 400; font-style: normal;= - } - -.vjs-icon-cog::before { content: "=EF=84=90"; } - -.video-js .vjs-play-progress, .video-js .vjs-volume-level, .vjs-icon-circle= -, .vjs-seek-to-live-control .vjs-icon-placeholder { font-family: VideoJS; f= -ont-weight: 400; font-style: normal; } - -.video-js .vjs-play-progress::before, .video-js .vjs-volume-level::before, = -.vjs-icon-circle::before, .vjs-seek-to-live-control .vjs-icon-placeholder::= -before { content: "=EF=84=91"; } - -.vjs-icon-circle-outline { font-family: VideoJS; font-weight: 400; font-sty= -le: normal; } - -.vjs-icon-circle-outline::before { content: "=EF=84=92"; } - -.vjs-icon-circle-inner-circle { font-family: VideoJS; font-weight: 400; fon= -t-style: normal; } - -.vjs-icon-circle-inner-circle::before { content: "=EF=84=93"; } - -.vjs-icon-hd { font-family: VideoJS; font-weight: 400; font-style: normal; = -} - -.vjs-icon-hd::before { content: "=EF=84=94"; } - -.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder, .vjs-icon-ca= -ncel { font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder::before, .vjs= --icon-cancel::before { content: "=EF=84=95"; } - -.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder, .vjs-icon-repl= -ay { font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder::before, .vjs-i= -con-replay::before { content: "=EF=84=96"; } - -.vjs-icon-facebook { font-family: VideoJS; font-weight: 400; font-style: no= -rmal; } - -.vjs-icon-facebook::before { content: "=EF=84=97"; } - -.vjs-icon-gplus { font-family: VideoJS; font-weight: 400; font-style: norma= -l; } - -.vjs-icon-gplus::before { content: "=EF=84=98"; } - -.vjs-icon-linkedin { font-family: VideoJS; font-weight: 400; font-style: no= -rmal; } - -.vjs-icon-linkedin::before { content: "=EF=84=99"; } - -.vjs-icon-twitter { font-family: VideoJS; font-weight: 400; font-style: nor= -mal; } - -.vjs-icon-twitter::before { content: "=EF=84=9A"; } - -.vjs-icon-tumblr { font-family: VideoJS; font-weight: 400; font-style: norm= -al; } - -.vjs-icon-tumblr::before { content: "=EF=84=9B"; } - -.vjs-icon-pinterest { font-family: VideoJS; font-weight: 400; font-style: n= -ormal; } - -.vjs-icon-pinterest::before { content: "=EF=84=9C"; } - -.video-js .vjs-descriptions-button .vjs-icon-placeholder, .vjs-icon-audio-d= -escription { font-family: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-descriptions-button .vjs-icon-placeholder::before, .vjs-icon= --audio-description::before { content: "=EF=84=9D"; } - -.video-js .vjs-audio-button .vjs-icon-placeholder, .vjs-icon-audio { font-f= -amily: VideoJS; font-weight: 400; font-style: normal; } - -.video-js .vjs-audio-button .vjs-icon-placeholder::before, .vjs-icon-audio:= -:before { content: "=EF=84=9E"; } - -.vjs-icon-next-item { font-family: VideoJS; font-weight: 400; font-style: n= -ormal; } - -.vjs-icon-next-item::before { content: "=EF=84=9F"; } - -.vjs-icon-previous-item { font-family: VideoJS; font-weight: 400; font-styl= -e: normal; } - -.vjs-icon-previous-item::before { content: "=EF=84=A0"; } - -.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder, .vjs-icon-= -picture-in-picture-enter { font-family: VideoJS; font-weight: 400; font-sty= -le: normal; } - -.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder::before, .v= -js-icon-picture-in-picture-enter::before { content: "=EF=84=A1"; } - -.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-= -placeholder, .vjs-icon-picture-in-picture-exit { font-family: VideoJS; font= --weight: 400; font-style: normal; } - -.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-= -placeholder::before, .vjs-icon-picture-in-picture-exit::before { content: "= -=EF=84=A2"; } - -.video-js { display: block; vertical-align: top; box-sizing: border-box; co= -lor: rgb(255, 255, 255); background-color: rgb(0, 0, 0); position: relative= -; padding: 0px; font-size: 10px; line-height: 1; font-weight: 400; font-sty= -le: normal; font-family: Arial, Helvetica, sans-serif; word-break: normal; = -} - -.video-js:-webkit-full-screen { width: 100% !important; height: 100% !impor= -tant; } - -.video-js[tabindex=3D"-1"] { outline: none; } - -.video-js *, .video-js ::after, .video-js ::before { box-sizing: inherit; } - -.video-js ul { font-family: inherit; font-size: inherit; line-height: inher= -it; list-style-position: outside; margin: 0px; } - -.video-js.vjs-1-1, .video-js.vjs-4-3, .video-js.vjs-9-16, .video-js.vjs-16-= -9, .video-js.vjs-fluid { width: 100%; max-width: 100%; height: 0px; } - -.video-js.vjs-16-9 { padding-top: 56.25%; } - -.video-js.vjs-4-3 { padding-top: 75%; } - -.video-js.vjs-9-16 { padding-top: 177.778%; } - -.video-js.vjs-1-1 { padding-top: 100%; } - -.video-js.vjs-fill, .video-js .vjs-tech { width: 100%; height: 100%; } - -.video-js .vjs-tech { position: absolute; top: 0px; left: 0px; } - -body.vjs-full-window { padding: 0px; margin: 0px; height: 100%; } - -.vjs-full-window .video-js.vjs-fullscreen { position: fixed; overflow: hidd= -en; z-index: 1000; inset: 0px; } - -.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) { width: 100% !important; = -height: 100% !important; padding-top: 0px !important; } - -.video-js.vjs-fullscreen.vjs-user-inactive { cursor: none; } - -.vjs-hidden { display: none !important; } - -.vjs-disabled { opacity: 0.5; cursor: default; } - -.video-js .vjs-offscreen { height: 1px; left: -9999px; position: absolute; = -top: 0px; width: 1px; } - -.vjs-lock-showing { display: block !important; opacity: 1 !important; visib= -ility: visible !important; } - -.vjs-no-js { padding: 20px; color: rgb(255, 255, 255); background-color: rg= -b(0, 0, 0); font-size: 18px; font-family: Arial, Helvetica, sans-serif; tex= -t-align: center; width: 300px; height: 150px; margin: 0px auto; } - -.vjs-no-js a, .vjs-no-js a:visited { color: rgb(102, 168, 204); } - -.video-js .vjs-big-play-button { font-size: 3em; line-height: 1.5em; height= -: 1.63332em; width: 3em; display: block; position: absolute; top: 10px; lef= -t: 10px; padding: 0px; cursor: pointer; opacity: 1; border: 0.06666em solid= - rgb(255, 255, 255); background-color: rgba(43, 51, 63, 0.7); border-radius= -: 0.3em; transition: all 0.4s ease 0s; } - -.vjs-big-play-centered .vjs-big-play-button { top: 50%; left: 50%; margin-t= -op: -0.81666em; margin-left: -1.5em; } - -.video-js .vjs-big-play-button:focus, .video-js:hover .vjs-big-play-button = -{ border-color: rgb(255, 255, 255); background-color: rgba(115, 133, 159, 0= -.5); transition: all 0s ease 0s; } - -.vjs-controls-disabled .vjs-big-play-button, .vjs-error .vjs-big-play-butto= -n, .vjs-has-started .vjs-big-play-button, .vjs-using-native-controls .vjs-b= -ig-play-button { display: none; } - -.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play= --button { display: block; } - -.video-js button { background: none; border: none; color: inherit; display:= - inline-block; font-size: inherit; line-height: inherit; text-transform: no= -ne; text-decoration: none; transition: none 0s ease 0s; appearance: none; } - -.vjs-control .vjs-button { width: 100%; height: 100%; } - -.video-js .vjs-control.vjs-close-button { cursor: pointer; height: 3em; pos= -ition: absolute; right: 0px; top: 0.5em; z-index: 2; } - -.video-js .vjs-modal-dialog { background: linear-gradient(rgba(0, 0, 0, 0.8= -), rgba(255, 255, 255, 0)); overflow: auto; } - -.video-js .vjs-modal-dialog > * { box-sizing: border-box; } - -.vjs-modal-dialog .vjs-modal-dialog-content { font-size: 1.2em; line-height= -: 1.5; padding: 20px 24px; z-index: 1; } - -.vjs-menu-button { cursor: pointer; } - -.vjs-menu-button.vjs-disabled { cursor: default; } - -.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu { display: = -none; } - -.vjs-menu .vjs-menu-content { display: block; padding: 0px; margin: 0px; fo= -nt-family: Arial, Helvetica, sans-serif; overflow: auto; } - -.vjs-menu .vjs-menu-content > * { box-sizing: border-box; } - -.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu { display: none= -; } - -.vjs-menu li { list-style: none; margin: 0px; padding: 0.2em 0px; line-heig= -ht: 1.4em; font-size: 1.2em; text-align: center; text-transform: lowercase;= - } - -.js-focus-visible .vjs-menu li.vjs-menu-item:hover, .vjs-menu li.vjs-menu-i= -tem:focus, .vjs-menu li.vjs-menu-item:hover { background-color: rgba(115, 1= -33, 159, 0.5); } - -.js-focus-visible .vjs-menu li.vjs-selected:hover, .vjs-menu li.vjs-selecte= -d, .vjs-menu li.vjs-selected:focus, .vjs-menu li.vjs-selected:hover { backg= -round-color: rgb(255, 255, 255); color: rgb(43, 51, 63); } - -.js-focus-visible .vjs-menu :not(.vjs-selected):focus:not(.focus-visible), = -.video-js .vjs-menu :not(.vjs-selected):focus:not(:focus-visible) { backgro= -und: none; } - -.vjs-menu li.vjs-menu-title { text-align: center; text-transform: uppercase= -; font-size: 1em; line-height: 2em; padding: 0px; margin: 0px 0px 0.3em; fo= -nt-weight: 700; cursor: default; } - -.vjs-menu-button-popup .vjs-menu { display: none; position: absolute; botto= -m: 0px; width: 10em; left: -3em; height: 0px; margin-bottom: 1.5em; border-= -top-color: rgba(43, 51, 63, 0.7); } - -.vjs-menu-button-popup .vjs-menu .vjs-menu-content { background-color: rgba= -(43, 51, 63, 0.7); position: absolute; width: 100%; bottom: 1.5em; max-heig= -ht: 15em; } - -.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-l= -ayout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content { max-heig= -ht: 5em; } - -.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content { max-= -height: 10em; } - -.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content { max= --height: 14em; } - -.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-l= -ayout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout= --x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content { max-height: 2= -5em; } - -.vjs-menu-button-popup .vjs-menu.vjs-lock-showing, .vjs-workinghover .vjs-m= -enu-button-popup.vjs-hover .vjs-menu { display: block; } - -.video-js .vjs-menu-button-inline { transition: all 0.4s ease 0s; overflow:= - hidden; } - -.video-js .vjs-menu-button-inline::before { width: 2.22222em; } - -.video-js .vjs-menu-button-inline.vjs-slider-active, .video-js .vjs-menu-bu= -tton-inline:focus, .video-js .vjs-menu-button-inline:hover, .video-js.vjs-n= -o-flex .vjs-menu-button-inline { width: 12em; } - -.vjs-menu-button-inline .vjs-menu { opacity: 0; height: 100%; width: auto; = -position: absolute; left: 4em; top: 0px; padding: 0px; margin: 0px; transit= -ion: all 0.4s ease 0s; } - -.vjs-menu-button-inline.vjs-slider-active .vjs-menu, .vjs-menu-button-inlin= -e:focus .vjs-menu, .vjs-menu-button-inline:hover .vjs-menu { display: block= -; opacity: 1; } - -.vjs-no-flex .vjs-menu-button-inline .vjs-menu { display: block; opacity: 1= -; position: relative; width: auto; } - -.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu, .vjs-no-f= -lex .vjs-menu-button-inline:focus .vjs-menu, .vjs-no-flex .vjs-menu-button-= -inline:hover .vjs-menu { width: auto; } - -.vjs-menu-button-inline .vjs-menu-content { width: auto; height: 100%; marg= -in: 0px; overflow: hidden; } - -.video-js .vjs-control-bar { display: none; width: 100%; position: absolute= -; bottom: 0px; left: 0px; right: 0px; height: 3em; background-color: rgba(4= -3, 51, 63, 0.7); } - -.vjs-has-started .vjs-control-bar { display: flex; visibility: visible; opa= -city: 1; transition: visibility 0.1s ease 0s, opacity 0.1s ease 0s; } - -.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar { visibilit= -y: visible; opacity: 0; transition: visibility 1s ease 0s, opacity 1s ease = -0s; } - -.vjs-controls-disabled .vjs-control-bar, .vjs-error .vjs-control-bar, .vjs-= -using-native-controls .vjs-control-bar { display: none !important; } - -.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {= - opacity: 1; visibility: visible; } - -.vjs-has-started.vjs-no-flex .vjs-control-bar { display: table; } - -.video-js .vjs-control { position: relative; text-align: center; margin: 0p= -x; padding: 0px; height: 100%; width: 4em; flex: 0 0 auto; } - -.vjs-button > .vjs-icon-placeholder::before { font-size: 1.8em; line-height= -: 1.67; } - -.vjs-button > .vjs-icon-placeholder { display: block; } - -.video-js .vjs-control:focus, .video-js .vjs-control:focus::before, .video-= -js .vjs-control:hover::before { text-shadow: rgb(255, 255, 255) 0px 0px 1em= -; } - -.video-js .vjs-control-text { border: 0px; clip: rect(0px, 0px, 0px, 0px); = -height: 1px; overflow: hidden; padding: 0px; position: absolute; width: 1px= -; } - -.vjs-no-flex .vjs-control { display: table-cell; vertical-align: middle; } - -.video-js .vjs-custom-control-spacer { display: none; } - -.video-js .vjs-progress-control { cursor: pointer; flex: 1 1 auto; display:= - flex; align-items: center; min-width: 4em; touch-action: none; } - -.video-js .vjs-progress-control.disabled { cursor: default; } - -.vjs-live .vjs-progress-control { display: none; } - -.vjs-liveui .vjs-progress-control { display: flex; align-items: center; } - -.vjs-no-flex .vjs-progress-control { width: auto; } - -.video-js .vjs-progress-holder { flex: 1 1 auto; transition: all 0.2s ease = -0s; height: 0.3em; } - -.video-js .vjs-progress-control .vjs-progress-holder { margin: 0px 10px; } - -.video-js .vjs-progress-control:hover .vjs-progress-holder { font-size: 1.6= -6667em; } - -.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled { font-= -size: 1em; } - -.video-js .vjs-progress-holder .vjs-load-progress, .video-js .vjs-progress-= -holder .vjs-load-progress div, .video-js .vjs-progress-holder .vjs-play-pro= -gress { position: absolute; display: block; height: 100%; margin: 0px; padd= -ing: 0px; width: 0px; } - -.video-js .vjs-play-progress { background-color: rgb(255, 255, 255); } - -.video-js .vjs-play-progress::before { font-size: 0.9em; position: absolute= -; right: -0.5em; top: -0.333333em; z-index: 1; } - -.video-js .vjs-load-progress { background: rgba(115, 133, 159, 0.5); } - -.video-js .vjs-load-progress div { background: rgba(115, 133, 159, 0.75); } - -.video-js .vjs-time-tooltip { background-color: rgba(255, 255, 255, 0.8); b= -order-radius: 0.3em; color: rgb(0, 0, 0); float: right; font-family: Arial,= - Helvetica, sans-serif; font-size: 1em; padding: 6px 8px 8px; pointer-event= -s: none; position: absolute; top: -3.4em; visibility: hidden; z-index: 1; } - -.video-js .vjs-progress-holder:focus .vjs-time-tooltip { display: none; } - -.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-= -tooltip, .video-js .vjs-progress-control:hover .vjs-time-tooltip { display:= - block; font-size: 0.6em; visibility: visible; } - -.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip { font-siz= -e: 1em; } - -.video-js .vjs-progress-control .vjs-mouse-display { display: none; positio= -n: absolute; width: 1px; height: 100%; background-color: rgb(0, 0, 0); z-in= -dex: 1; } - -.vjs-no-flex .vjs-progress-control .vjs-mouse-display { z-index: 0; } - -.video-js .vjs-progress-control:hover .vjs-mouse-display { display: block; = -} - -.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display { visi= -bility: hidden; opacity: 0; transition: visibility 1s ease 0s, opacity 1s e= -ase 0s; } - -.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-di= -splay { display: none; } - -.vjs-mouse-display .vjs-time-tooltip { color: rgb(255, 255, 255); backgroun= -d-color: rgba(0, 0, 0, 0.8); } - -.video-js .vjs-slider { position: relative; cursor: pointer; padding: 0px; = -margin: 0px 0.45em; user-select: none; background-color: rgba(115, 133, 159= -, 0.5); } - -.video-js .vjs-slider.disabled { cursor: default; } - -.video-js .vjs-slider:focus { text-shadow: rgb(255, 255, 255) 0px 0px 1em; = -box-shadow: rgb(255, 255, 255) 0px 0px 1em; } - -.video-js .vjs-mute-control { cursor: pointer; flex: 0 0 auto; } - -.video-js .vjs-volume-control { cursor: pointer; margin-right: 1em; display= -: flex; } - -.video-js .vjs-volume-control.vjs-volume-horizontal { width: 5em; } - -.video-js .vjs-volume-panel .vjs-volume-control { visibility: visible; opac= -ity: 0; width: 1px; height: 1px; margin-left: -1px; } - -.video-js .vjs-volume-panel { transition: width 1s ease 0s; } - -.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-contr= -ol, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .v= -js-volume-panel .vjs-volume-control.vjs-slider-active, .video-js .vjs-volum= -e-panel .vjs-volume-control:active, .video-js .vjs-volume-panel:active .vjs= --volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control { vi= -sibility: visible; opacity: 1; position: relative; transition: visibility 0= -.1s ease 0s, opacity 0.1s ease 0s, height 0.1s ease 0s, width 0.1s ease 0s,= - left 0s ease 0s, top 0s ease 0s; } - -.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-contr= -ol.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-volume= --control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-con= -trol.vjs-slider-active.vjs-volume-horizontal, .video-js .vjs-volume-panel .= -vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-pane= -l:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-p= -anel:focus .vjs-volume-control.vjs-volume-horizontal { width: 5em; height: = -3em; margin-right: 0px; } - -.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-contr= -ol.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-c= -ontrol.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control= -.vjs-slider-active.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-vo= -lume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel:active= - .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus= - .vjs-volume-control.vjs-volume-vertical { left: -3.5em; transition: left 0= -s ease 0s; } - -.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-j= -s .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-j= -s .vjs-volume-panel.vjs-volume-panel-horizontal:active { width: 10em; trans= -ition: width 0.1s ease 0s; } - -.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-onl= -y { width: 4em; } - -.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical { heigh= -t: 8em; width: 3em; left: -3000em; transition: visibility 1s ease 0s, opaci= -ty 1s ease 0s, height 1s ease 1s, width 1s ease 1s, left 1s ease 1s, top 1s= - ease 1s; } - -.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal { tra= -nsition: visibility 1s ease 0s, opacity 1s ease 0s, height 1s ease 1s, widt= -h 1s ease 0s, left 1s ease 1s, top 1s ease 1s; } - -.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-hori= -zontal { width: 5em; height: 3em; visibility: visible; opacity: 1; position= -: relative; transition: none 0s ease 0s; } - -.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical, .video-js.vj= -s-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical { posit= -ion: absolute; bottom: 3em; left: 0.5em; } - -.video-js .vjs-volume-panel { display: flex; } - -.video-js .vjs-volume-bar { margin: 1.35em 0.45em; } - -.vjs-volume-bar.vjs-slider-horizontal { width: 5em; height: 0.3em; } - -.vjs-volume-bar.vjs-slider-vertical { width: 0.3em; height: 5em; margin: 1.= -35em auto; } - -.video-js .vjs-volume-level { position: absolute; bottom: 0px; left: 0px; b= -ackground-color: rgb(255, 255, 255); } - -.video-js .vjs-volume-level::before { position: absolute; font-size: 0.9em;= - z-index: 1; } - -.vjs-slider-vertical .vjs-volume-level { width: 0.3em; } - -.vjs-slider-vertical .vjs-volume-level::before { top: -0.5em; left: -0.3em;= - z-index: 1; } - -.vjs-slider-horizontal .vjs-volume-level { height: 0.3em; } - -.vjs-slider-horizontal .vjs-volume-level::before { top: -0.3em; right: -0.5= -em; } - -.video-js .vjs-volume-panel.vjs-volume-panel-vertical { width: 4em; } - -.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level { height: 100%; } - -.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level { width: 100%; } - -.video-js .vjs-volume-vertical { width: 3em; height: 8em; bottom: 8em; back= -ground-color: rgba(43, 51, 63, 0.7); } - -.video-js .vjs-volume-horizontal .vjs-menu { left: -2em; } - -.video-js .vjs-volume-tooltip { background-color: rgba(255, 255, 255, 0.8);= - border-radius: 0.3em; color: rgb(0, 0, 0); float: right; font-family: Aria= -l, Helvetica, sans-serif; font-size: 1em; padding: 6px 8px 8px; pointer-eve= -nts: none; position: absolute; top: -3.4em; visibility: hidden; z-index: 1;= - } - -.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-= -tooltip, .video-js .vjs-volume-control:hover .vjs-volume-tooltip { display:= - block; font-size: 1em; visibility: visible; } - -.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume= --tooltip, .video-js .vjs-volume-vertical:hover .vjs-volume-tooltip { left: = -1em; top: -12px; } - -.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip { font-siz= -e: 1em; } - -.video-js .vjs-volume-control .vjs-mouse-display { display: none; position:= - absolute; width: 100%; height: 1px; background-color: rgb(0, 0, 0); z-inde= -x: 1; } - -.video-js .vjs-volume-horizontal .vjs-mouse-display { width: 1px; height: 1= -00%; } - -.vjs-no-flex .vjs-volume-control .vjs-mouse-display { z-index: 0; } - -.video-js .vjs-volume-control:hover .vjs-mouse-display { display: block; } - -.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display { visibi= -lity: hidden; opacity: 0; transition: visibility 1s ease 0s, opacity 1s eas= -e 0s; } - -.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-disp= -lay { display: none; } - -.vjs-mouse-display .vjs-volume-tooltip { color: rgb(255, 255, 255); backgro= -und-color: rgba(0, 0, 0, 0.8); } - -.vjs-poster { display: inline-block; vertical-align: middle; background-rep= -eat: no-repeat; background-position: 50% 50%; background-size: contain; bac= -kground-color: rgb(0, 0, 0); cursor: pointer; margin: 0px; padding: 0px; po= -sition: absolute; inset: 0px; height: 100%; } - -.vjs-has-started .vjs-poster { display: none; } - -.vjs-audio.vjs-has-started .vjs-poster { display: block; } - -.vjs-using-native-controls .vjs-poster { display: none; } - -.video-js .vjs-live-control { display: flex; align-items: flex-start; flex:= - 1 1 auto; font-size: 1em; line-height: 3em; } - -.vjs-no-flex .vjs-live-control { display: table-cell; width: auto; text-ali= -gn: left; } - -.video-js.vjs-liveui .vjs-live-control, .video-js:not(.vjs-live) .vjs-live-= -control { display: none; } - -.video-js .vjs-seek-to-live-control { align-items: center; cursor: pointer;= - flex: 0 0 auto; display: inline-flex; height: 100%; padding-left: 0.5em; p= -adding-right: 0.5em; font-size: 1em; line-height: 3em; width: auto; min-wid= -th: 4em; } - -.vjs-no-flex .vjs-seek-to-live-control { display: table-cell; width: auto; = -text-align: left; } - -.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control, .video-js:no= -t(.vjs-live) .vjs-seek-to-live-control { display: none; } - -.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge { cursor: auto; } - -.vjs-seek-to-live-control .vjs-icon-placeholder { margin-right: 0.5em; colo= -r: rgb(136, 136, 136); } - -.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholde= -r { color: red; } - -.video-js .vjs-time-control { flex: 0 0 auto; font-size: 1em; line-height: = -3em; min-width: 2em; width: auto; padding-left: 1em; padding-right: 1em; } - -.video-js .vjs-current-time, .video-js .vjs-duration, .vjs-live .vjs-time-c= -ontrol, .vjs-no-flex .vjs-current-time, .vjs-no-flex .vjs-duration { displa= -y: none; } - -.vjs-time-divider { display: none; line-height: 3em; } - -.vjs-live .vjs-time-divider { display: none; } - -.video-js .vjs-play-control { cursor: pointer; } - -.video-js .vjs-play-control .vjs-icon-placeholder { flex: 0 0 auto; } - -.vjs-text-track-display { position: absolute; inset: 0px 0px 3em; pointer-e= -vents: none; } - -.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display { bottom: 1= -em; } - -.video-js .vjs-text-track { font-size: 1.4em; text-align: center; margin-bo= -ttom: 0.1em; } - -.vjs-subtitles { color: rgb(255, 255, 255); } - -.vjs-captions { color: rgb(255, 204, 102); } - -.vjs-tt-cue { display: block; } - -video::-webkit-media-text-track-display { transform: translateY(-3em); } - -.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-dis= -play { transform: translateY(-1.5em); } - -.video-js .vjs-fullscreen-control, .video-js .vjs-picture-in-picture-contro= -l { cursor: pointer; flex: 0 0 auto; } - -.vjs-playback-rate .vjs-playback-rate-value, .vjs-playback-rate > .vjs-menu= --button { position: absolute; top: 0px; left: 0px; width: 100%; height: 100= -%; } - -.vjs-playback-rate .vjs-playback-rate-value { pointer-events: none; font-si= -ze: 1.5em; line-height: 2; text-align: center; } - -.vjs-playback-rate .vjs-menu { width: 4em; left: 0px; } - -.vjs-error .vjs-error-display .vjs-modal-dialog-content { font-size: 1.4em;= - text-align: center; } - -.vjs-error .vjs-error-display::before { color: rgb(255, 255, 255); content:= - "X"; font-family: Arial, Helvetica, sans-serif; font-size: 4em; left: 0px;= - line-height: 1; margin-top: -0.5em; position: absolute; text-shadow: rgb(0= -, 0, 0) 0.05em 0.05em 0.1em; text-align: center; top: 50%; vertical-align: = -middle; width: 100%; } - -.vjs-loading-spinner { display: none; position: absolute; top: 50%; left: 5= -0%; margin: -25px 0px 0px -25px; opacity: 0.85; text-align: left; border: 6= -px solid rgba(43, 51, 63, 0.7); box-sizing: border-box; background-clip: pa= -dding-box; width: 50px; height: 50px; border-radius: 25px; visibility: hidd= -en; } - -.vjs-seeking .vjs-loading-spinner, .vjs-waiting .vjs-loading-spinner { disp= -lay: block; animation: 0s linear 0.3s 1 normal forwards running vjs-spinner= --show; } - -.vjs-loading-spinner::after, .vjs-loading-spinner::before { content: ""; po= -sition: absolute; margin: -6px; box-sizing: inherit; width: inherit; height= -: inherit; border-radius: inherit; opacity: 1; border-style: inherit; borde= -r-width: inherit; border-image: inherit; border-color: rgb(255, 255, 255) t= -ransparent transparent; } - -.vjs-seeking .vjs-loading-spinner::after, .vjs-seeking .vjs-loading-spinner= -::before, .vjs-waiting .vjs-loading-spinner::after, .vjs-waiting .vjs-loadi= -ng-spinner::before { animation: 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) 0s infi= -nite normal none running vjs-spinner-spin, 1.1s linear 0s infinite normal n= -one running vjs-spinner-fade; } - -.vjs-seeking .vjs-loading-spinner::before, .vjs-waiting .vjs-loading-spinne= -r::before { border-top-color: rgb(255, 255, 255); } - -.vjs-seeking .vjs-loading-spinner::after, .vjs-waiting .vjs-loading-spinner= -::after { border-top-color: rgb(255, 255, 255); animation-delay: 0.44s; } - -@keyframes vjs-spinner-show {=20 - 100% { visibility: visible; } -} - -@-webkit-keyframes vjs-spinner-show {=20 - 100% { visibility: visible; } -} - -@keyframes vjs-spinner-spin {=20 - 100% { transform: rotate(1turn); } -} - -@-webkit-keyframes vjs-spinner-spin {=20 - 100% { transform: rotate(1turn); } -} - -@keyframes vjs-spinner-fade {=20 - 0% { border-top-color: rgb(115, 133, 159); } - 20% { border-top-color: rgb(115, 133, 159); } - 35% { border-top-color: rgb(255, 255, 255); } - 60% { border-top-color: rgb(115, 133, 159); } - 100% { border-top-color: rgb(115, 133, 159); } -} - -@-webkit-keyframes vjs-spinner-fade {=20 - 0% { border-top-color: rgb(115, 133, 159); } - 20% { border-top-color: rgb(115, 133, 159); } - 35% { border-top-color: rgb(255, 255, 255); } - 60% { border-top-color: rgb(115, 133, 159); } - 100% { border-top-color: rgb(115, 133, 159); } -} - -.vjs-chapters-button .vjs-menu ul { width: 24em; } - -.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-me= -nu-item-text .vjs-icon-placeholder { vertical-align: middle; display: inlin= -e-block; margin-bottom: -0.1em; } - -.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-me= -nu-item-text .vjs-icon-placeholder::before { font-family: VideoJS; content:= - "=EF=84=8D"; font-size: 1.5em; line-height: inherit; } - -.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-= -item-text .vjs-icon-placeholder { vertical-align: middle; display: inline-b= -lock; margin-bottom: -0.1em; } - -.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-= -item-text .vjs-icon-placeholder::before { font-family: VideoJS; content: " = -=EF=84=9D"; font-size: 1.5em; line-height: inherit; } - -.video-js.vjs-layout-small .vjs-audio-button, .video-js.vjs-layout-small .v= -js-captions-button, .video-js.vjs-layout-small .vjs-chapters-button, .video= --js.vjs-layout-small .vjs-current-time, .video-js.vjs-layout-small .vjs-des= -criptions-button, .video-js.vjs-layout-small .vjs-duration, .video-js.vjs-l= -ayout-small .vjs-playback-rate, .video-js.vjs-layout-small .vjs-remaining-t= -ime, .video-js.vjs-layout-small .vjs-subtitles-button, .video-js.vjs-layout= --small .vjs-time-divider, .video-js.vjs-layout-small .vjs-volume-control, .= -video-js.vjs-layout-tiny .vjs-audio-button, .video-js.vjs-layout-tiny .vjs-= -captions-button, .video-js.vjs-layout-tiny .vjs-chapters-button, .video-js.= -vjs-layout-tiny .vjs-current-time, .video-js.vjs-layout-tiny .vjs-descripti= -ons-button, .video-js.vjs-layout-tiny .vjs-duration, .video-js.vjs-layout-t= -iny .vjs-playback-rate, .video-js.vjs-layout-tiny .vjs-remaining-time, .vid= -eo-js.vjs-layout-tiny .vjs-subtitles-button, .video-js.vjs-layout-tiny .vjs= --time-divider, .video-js.vjs-layout-tiny .vjs-volume-control, .video-js.vjs= --layout-x-small .vjs-audio-button, .video-js.vjs-layout-x-small .vjs-captio= -ns-button, .video-js.vjs-layout-x-small .vjs-chapters-button, .video-js.vjs= --layout-x-small .vjs-current-time, .video-js.vjs-layout-x-small .vjs-descri= -ptions-button, .video-js.vjs-layout-x-small .vjs-duration, .video-js.vjs-la= -yout-x-small .vjs-playback-rate, .video-js.vjs-layout-x-small .vjs-remainin= -g-time, .video-js.vjs-layout-x-small .vjs-subtitles-button, .video-js.vjs-l= -ayout-x-small .vjs-time-divider, .video-js.vjs-layout-x-small .vjs-volume-c= -ontrol { display: none !important; } - -.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vj= -s-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-pa= -nel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-vol= -ume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs= --volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-= -volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny = -.vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x= --small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .vi= -deo-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:act= -ive, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizo= -ntal:hover { width: auto; } - -.video-js.vjs-layout-tiny .vjs-subs-caps-button, .video-js.vjs-layout-x-sma= -ll:not(.vjs-live) .vjs-subs-caps-button, .video-js.vjs-layout-x-small:not(.= -vjs-liveui) .vjs-subs-caps-button { display: none; } - -.video-js.vjs-layout-tiny .vjs-custom-control-spacer, .video-js.vjs-layout-= -x-small.vjs-liveui .vjs-custom-control-spacer { flex: 1 1 auto; display: bl= -ock; } - -.video-js.vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer, .video-js= -.vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer { wid= -th: auto; } - -.video-js.vjs-layout-tiny .vjs-progress-control, .video-js.vjs-layout-x-sma= -ll.vjs-liveui .vjs-progress-control { display: none; } - -.vjs-modal-dialog.vjs-text-track-settings { background-color: rgba(43, 51, = -63, 0.75); color: rgb(255, 255, 255); height: 70%; } - -.vjs-text-track-settings .vjs-modal-dialog-content { display: table; } - -.vjs-text-track-settings .vjs-track-settings-colors, .vjs-text-track-settin= -gs .vjs-track-settings-controls, .vjs-text-track-settings .vjs-track-settin= -gs-font { display: table-cell; } - -.vjs-text-track-settings .vjs-track-settings-controls { text-align: right; = -vertical-align: bottom; } - -@supports (display:grid) { - .vjs-text-track-settings .vjs-modal-dialog-content { display: grid; grid-= -template-columns: 1fr 1fr; grid-template-rows: 1fr; padding: 20px 24px 0px;= - } - .vjs-track-settings-controls .vjs-default-button { margin-bottom: 20px; } - .vjs-text-track-settings .vjs-track-settings-controls { grid-column: 1 / = --1; } - .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content, .vj= -s-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content, .vjs-layo= -ut-x-small .vjs-text-track-settings .vjs-modal-dialog-content { grid-templa= -te-columns: 1fr; } -} - -.vjs-track-setting > select { margin-right: 1em; margin-bottom: 0.5em; } - -.vjs-text-track-settings fieldset { margin: 5px; padding: 3px; border: none= -; } - -.vjs-text-track-settings fieldset span { display: inline-block; } - -.vjs-text-track-settings fieldset span > select { max-width: 7.3em; } - -.vjs-text-track-settings legend { color: rgb(255, 255, 255); margin: 0px 0p= -x 5px; } - -.vjs-text-track-settings .vjs-label { position: absolute; clip: rect(1px, 1= -px, 1px, 1px); display: block; margin: 0px 0px 5px; padding: 0px; border: 0= -px; height: 1px; width: 1px; overflow: hidden; } - -.vjs-track-settings-controls button:active, .vjs-track-settings-controls bu= -tton:focus { outline-style: solid; outline-width: medium; background-image:= - linear-gradient(0deg, rgb(255, 255, 255) 88%, rgb(115, 133, 159)); } - -.vjs-track-settings-controls button:hover { color: rgba(43, 51, 63, 0.75); = -} - -.vjs-track-settings-controls button { background-color: rgb(255, 255, 255);= - background-image: linear-gradient(-180deg, rgb(255, 255, 255) 88%, rgb(115= -, 133, 159)); color: rgb(43, 51, 63); cursor: pointer; border-radius: 2px; = -} - -.vjs-track-settings-controls .vjs-default-button { margin-right: 1em; } - -@media print { - .video-js > :not(.vjs-tech):not(.vjs-poster) { visibility: hidden; } -} - -.vjs-resize-manager { position: absolute; top: 0px; left: 0px; width: 100%;= - height: 100%; border: none; z-index: -1000; } - -.js-focus-visible .video-js :focus:not(.focus-visible), .video-js :focus:no= -t(:focus-visible) { outline: none; } - -.video-js.vjs-hls-quality-selector { display: block; } -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl---- -Content-Type: image/jpeg -Content-Transfer-Encoding: base64 -Content-Location: https://s3.amazonaws.com/alx-intranet.hbtn.io/users/photos/000/159/610/thumb/photo-1554050857-c84a8abdb5e2.jpeg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIARDDGGGOUSBVO6H7D%2F20230615%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230615T074822Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&X-Amz-Signature=a9058b3ad6d5309e05c92cf9ee7bac1fe5f87a03d4e6cd187285b462fa4e561d - -/9j/4AAQSkZJRgABAQEASABIAAD/4gO8SUNDX1BST0ZJTEUAAQEAAAOsS0NNUwIQAABtbnRyUkdC -IFhZWiAHzgAMAAEAEgA6ABVhY3NwTVNGVAAAAABLT0RBUk9NTQAAAAAAAAAAAAAAAAAA9tYAAQAA -AADTK0tPREEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxj -cHJ0AAABFAAAAEhkZXNjAAABXAAAAIN3dHB0AAAB4AAAABRyVFJDAAAB9AAAAA5nVFJDAAAB9AAA -AA5iVFJDAAAB9AAAAA5yWFlaAAACBAAAABRnWFlaAAACGAAAABRiWFlaAAACLAAAABRkbW5kAAAC -QAAAAG5kbWRkAAACsAAAANFtbW9kAAADhAAAACh0ZXh0AAAAAENvcHlyaWdodCAoYykgRWFzdG1h -biBLb2RhayBDb21wYW55LCAxOTk5LCBhbGwgcmlnaHRzIHJlc2VydmVkLgBkZXNjAAAAAAAAAA1Q -cm9QaG90byBSR0IAAAAAAAAAAA7+/wBQAHIAbwBQAGgAbwB0AG8AIABSAEcAQgAAAAANUHJvUGhv -dG8gUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAABYWVogAAAAAAAA9tYAAQAAAADTLGN1cnYAAAAAAAAAAQHNAABYWVogAAAAAAAAzDQAAEm9 -AAAAAFhZWiAAAAAAAAAinAAAtj4AAAAAWFlaIAAAAAAAAAgGAAAABgAA0y1kZXNjAAAAAAAAAAZL -T0RBSwAAAAAAAAAAB/7/AEsATwBEAEEASwAAAAAGS09EQUsAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAnUmVm -ZXJlbmNlIE91dHB1dCBNZWRpdW0gTWV0cmljKFJPTU0pICAAAAAAAAAAACj+/wBSAGUAZgBlAHIA -ZQBuAGMAZQAgAE8AdQB0AHAAdQB0ACAATQBlAGQAaQB1AG0AIABNAGUAdAByAGkAYwAoAFIATwBN -AE0AKQAgACAAAAAAJ1JlZmVyZW5jZSBPdXRwdXQgTWVkaXVtIE1ldHJpYyhST01NKSAgAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABtbW9kAAAAAAAABhAAAJ0DAQEBAbDPO4AAAAAAAAAA -AAAAAAAAAAAA/9sAQwAJBgYIBgUJCAcICgkJCg0WDg0MDA0aExQQFh8cISAfHB4eIycyKiMlLyUe -His7LC8zNTg4OCEqPUE8NkEyNzg1/9sAQwEJCgoNCw0ZDg4ZNSQeJDU1NTU1NTU1NTU1NTU1NTU1 -NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1/8AAEQgAyADIAwEiAAIRAQMRAf/EABgA -AQEBAQEAAAAAAAAAAAAAAAABAgMH/8QAJBABAQEAAgICAgMBAQEAAAAAAAERITECQRJRYXEDIoET -kaH/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf/EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhED -EQA/APEwFUzjr8nGCAvrrn7RbLOLMSAC5wgL6CS2aAJwvd65v0egQAFLMv4pGv5f+f8A18v+Xyn8 -e/1+ebn5wGFIAAgKGZP2AdAAAAC/o8s+X9ZZPzdBPYAILAA7C227ewAn5mm7yC9Xi/qouWzdn12g -AigBP2bPoA5uhgAYABOADAJ1zoAvj8ed3rj9gIs547Qlzqgd3mn/ANAEU3hfDx+Xlnynj+fLoECH -HoAACyy8mrJPuJ1eQAADr6AAAFnxy/LeuM+0AAOAAD9AsnOd/WBLZdlyz3BRLm8cgIASXkAwxZ+8 -qdgsz43rb+EwN0A3jAAJEWe+ugEWXLs4pvGZz9gL4z5WzZON5QA43jcL+wBfLNtkyfX0h1AAk3rk -AMa/k/k8v5fO+Xnd8r3ckRAAAAAOgwANzpZmXbd9cF59ggAH40PQCKAAWy5kzj/0A25npFAAwAWX -viEky97+jxtksls3i57Amc7/AIeVltsmTeJ9JFBfHx8vLfjLcm3PqIv9fj7+W8/WJJu9cc9gt8vK -+ElvHj0IAnvonF60Xx+O/wB9zL19+gQAAAACZ9gTvvBcQAAD0AATihmAd6bx1/oAEABQBbZkyZc5 -57TQ75tAlzqhzIAnQAAZwAAAvj5Xxu+Nsv4WWzxvjky56ZWTZc3QN4TeM9ABvO7yfsAAAAAAAAzg -BcuS2XL1cL0bczScAdkEBfXYAIAAUAPYvGXvftPWAEAAAFQX10CHo9HoAAAAAMJAUk25FuXyvx2T -81kF64AnAAgAAAAABQOk8vKTq7WLdqA3PP7all6cm/C9g0vM9s/KKAAgNePw+Pl8p5fLj45ePzrK -qJ7M2cegAJxdnA14eM8vPx8fLynhLZL5Xcn54Bn9r/upZz3oAAAKAgAAbnYBbkYt08rrIAAAADXh -eWWvDNB0k2W8cfkRZnuagQQUWTdQAFXi+F255TMmd/6yAAC27bZM/CAAAAluFuRi3QN50ABFQAAA -ABvwYXxuUHRU3YAG+gAF1NwBbbZJbxOkAAAAXb19ggAM+VZAAAAABBQQVAFQBrxuVtzdJ0AAAAAA -AAAABc9XQAcwBQAQAAAAABAAWOgIACgAAAAAAAAAD//Z - -------MultipartBoundary--NHo1mDnpFE5MoynBYns0xJEfTLh4hotEhG4lYnRFgl------