first commit
@@ -0,0 +1,5 @@
|
||||
{"properties": [{
|
||||
"name": "app.upload.path",
|
||||
"type": "java.lang.String",
|
||||
"description": "A description for 'app.upload.path'"
|
||||
}]}
|
||||
26
src/main/resources/application-dev.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
# ===== 개발 환경 =====
|
||||
spring:
|
||||
datasource:
|
||||
driver-class-name: org.mariadb.jdbc.Driver
|
||||
url: jdbc:mariadb://localhost:3306/owrawww?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Seoul
|
||||
username: owrawww
|
||||
password: owrawww
|
||||
|
||||
thymeleaf:
|
||||
cache: false # 개발 중 템플릿 즉시 반영
|
||||
|
||||
mybatis:
|
||||
configuration:
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # SQL 콘솔 출력
|
||||
|
||||
server:
|
||||
port: 8080
|
||||
|
||||
logging:
|
||||
level:
|
||||
com.owrawww: DEBUG
|
||||
org.springframework.security: DEBUG
|
||||
|
||||
app:
|
||||
upload:
|
||||
path: D:\home\www\owrainfo\uploads
|
||||
26
src/main/resources/application-prod.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
# ===== 운영 환경 =====
|
||||
spring:
|
||||
datasource:
|
||||
driver-class-name: org.mariadb.jdbc.Driver
|
||||
url: jdbc:mariadb://172.16.10.125:3306/db_owrainfo?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Seoul
|
||||
username: owrainfo
|
||||
password: owra5313
|
||||
|
||||
thymeleaf:
|
||||
cache: true # 운영에서는 캐시 활성화
|
||||
|
||||
mybatis:
|
||||
configuration:
|
||||
log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl # SQL 로그 비활성화
|
||||
|
||||
server:
|
||||
port: 8080
|
||||
|
||||
logging:
|
||||
level:
|
||||
com.owrawww: WARN
|
||||
org.springframework.security: WARN
|
||||
|
||||
app:
|
||||
upload:
|
||||
path: /home/www/owrainfo/uploads
|
||||
27
src/main/resources/application-test.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
# ===== 테스트 환경 =====
|
||||
spring:
|
||||
datasource:
|
||||
driver-class-name: org.mariadb.jdbc.Driver
|
||||
url: jdbc:mariadb://222.239.166.125:3306/db_owrainfo?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Seoul
|
||||
username: owrainfo
|
||||
password: owra5313
|
||||
|
||||
thymeleaf:
|
||||
cache: false
|
||||
|
||||
mybatis:
|
||||
configuration:
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
|
||||
server:
|
||||
port: 8081
|
||||
|
||||
logging:
|
||||
level:
|
||||
com.owrawww: WARN
|
||||
org.springframework.security: WARN
|
||||
|
||||
app:
|
||||
upload:
|
||||
path: /home/www/owrainfo/uploads
|
||||
|
||||
32
src/main/resources/application.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
# 활성 프로파일 설정 (dev / test / prod)
|
||||
spring:
|
||||
profiles:
|
||||
active: test
|
||||
|
||||
thymeleaf:
|
||||
encoding: UTF-8
|
||||
mode: HTML
|
||||
|
||||
datasource:
|
||||
hikari:
|
||||
connection-init-sql: "SET NAMES utf8mb4"
|
||||
|
||||
mybatis:
|
||||
mapper-locations: classpath:mapper/**/*.xml
|
||||
type-aliases-package: com.owrawww.domain
|
||||
configuration:
|
||||
map-underscore-to-camel-case: true
|
||||
|
||||
server:
|
||||
servlet:
|
||||
encoding:
|
||||
charset: UTF-8
|
||||
force: true
|
||||
multipart:
|
||||
enabled: true
|
||||
max-file-size: 10MB
|
||||
max-request-size: 11MB
|
||||
|
||||
app:
|
||||
upload:
|
||||
path: D:/uploads/owrawww/careers # 기본값 (프로파일별로 override)
|
||||
109
src/main/resources/mapper/BbsMapper.xml
Normal file
@@ -0,0 +1,109 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
|
||||
<mapper namespace="com.owrawww.domain.mapper.BbsMapper">
|
||||
|
||||
<resultMap id="bbsResultMap" type="com.owrawww.domain.Bbs">
|
||||
<id property="id" column="id"/>
|
||||
<result property="title" column="title"/>
|
||||
<result property="name" column="name"/>
|
||||
<result property="regDate" column="in_date"/>
|
||||
<result property="body" column="body"/>
|
||||
<result property="viewCnt" column="view_cnt"/>
|
||||
<result property="mainImg" column="main_img"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="searchCondition">
|
||||
<if test="keyword != null and keyword != ''">
|
||||
<choose>
|
||||
<when test="searchType == 'title'">
|
||||
AND title LIKE CONCAT('%', #{keyword}, '%')
|
||||
</when>
|
||||
<when test="searchType == 'content'">
|
||||
AND body LIKE CONCAT('%', #{keyword}, '%')
|
||||
</when>
|
||||
<otherwise>
|
||||
AND (title LIKE CONCAT('%', #{keyword}, '%')
|
||||
OR body LIKE CONCAT('%', #{keyword}, '%'))
|
||||
</otherwise>
|
||||
</choose>
|
||||
</if>
|
||||
</sql>
|
||||
|
||||
<select id="selectList" parameterType="map" resultMap="bbsResultMap">
|
||||
SELECT id, title, name, DATE_FORMAT(in_date, '%Y-%m-%d') AS in_date, main_img , count as view_cnt
|
||||
FROM bbs_table
|
||||
<where>
|
||||
top_code = #{topCode}
|
||||
AND left_code = #{leftCode}
|
||||
AND sub_gubun = #{subGubun}
|
||||
<include refid="searchCondition"/>
|
||||
</where>
|
||||
ORDER BY id DESC
|
||||
LIMIT #{size} OFFSET #{offset}
|
||||
</select>
|
||||
|
||||
<select id="selectCount" parameterType="map" resultType="int">
|
||||
SELECT COUNT(*)
|
||||
FROM bbs_table
|
||||
<where>
|
||||
top_code = #{topCode}
|
||||
AND left_code = #{leftCode}
|
||||
AND sub_gubun = #{subGubun}
|
||||
<include refid="searchCondition"/>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<!-- 상세 조회 -->
|
||||
<select id="selectById" parameterType="map" resultMap="bbsResultMap">
|
||||
SELECT id, title, name, body, count AS view_cnt, main_img,
|
||||
DATE_FORMAT(in_date, '%Y-%m-%d') AS in_date
|
||||
FROM bbs_table
|
||||
WHERE id = #{id}
|
||||
AND top_code = #{topCode}
|
||||
AND left_code = #{leftCode}
|
||||
AND sub_gubun = #{subGubun}
|
||||
</select>
|
||||
|
||||
<!-- 이전글 (id 내림차순 기준 → id < 현재) -->
|
||||
<select id="selectPrev" parameterType="map" resultMap="bbsResultMap">
|
||||
SELECT id, title, DATE_FORMAT(in_date, '%Y-%m-%d') AS in_date
|
||||
FROM bbs_table
|
||||
WHERE id < #{id}
|
||||
AND top_code = #{topCode}
|
||||
AND left_code = #{leftCode}
|
||||
AND sub_gubun = #{subGubun}
|
||||
ORDER BY id DESC
|
||||
LIMIT 1
|
||||
</select>
|
||||
|
||||
<!-- 다음글 (id 오름차순 기준 → id > 현재) -->
|
||||
<select id="selectNext" parameterType="map" resultMap="bbsResultMap">
|
||||
SELECT id, title, DATE_FORMAT(in_date, '%Y-%m-%d') AS in_date
|
||||
FROM bbs_table
|
||||
WHERE id > #{id}
|
||||
AND top_code = #{topCode}
|
||||
AND left_code = #{leftCode}
|
||||
AND sub_gubun = #{subGubun}
|
||||
ORDER BY id ASC
|
||||
LIMIT 1
|
||||
</select>
|
||||
|
||||
<!-- 조회수 증가 -->
|
||||
<update id="incrementViewCnt" parameterType="long">
|
||||
UPDATE bbs_table SET count = count + 1 WHERE id = #{id}
|
||||
</update>
|
||||
|
||||
<!-- 메인 미리보기 (최신 N건) -->
|
||||
<select id="selectPreview" parameterType="map" resultMap="bbsResultMap">
|
||||
SELECT id, title, DATE_FORMAT(in_date, '%Y-%m-%d') AS in_date
|
||||
FROM bbs_table
|
||||
WHERE top_code = #{topCode}
|
||||
AND left_code = #{leftCode}
|
||||
AND sub_gubun = #{subGubun}
|
||||
ORDER BY id DESC
|
||||
LIMIT #{limit}
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
12
src/main/resources/mapper/CareersMapper.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
|
||||
<mapper namespace="com.owrawww.domain.mapper.CareersMapper">
|
||||
|
||||
<insert id="insert" parameterType="com.owrawww.domain.Careers" useGeneratedKeys="true" keyProperty="id">
|
||||
INSERT INTO application_table (code, title, name, type, phone, email, comment, depth, in_date, top_code, left_code, sub_gubun, solution_gubun, f_real_name, f_name, f_path, f_type)
|
||||
VALUES (#{code}, #{title}, #{name}, #{dept}, #{tel}, #{email}, #{comment}, #{depth}, now(), #{topCode}, #{leftCode}, #{subGubun}, #{solutionGubun}, #{orgFileName}, #{fileName}, #{filePath}, #{fileType})
|
||||
</insert>
|
||||
|
||||
</mapper>
|
||||
12
src/main/resources/mapper/InquiryMapper.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
|
||||
<mapper namespace="com.owrawww.domain.mapper.InquiryMapper">
|
||||
|
||||
<insert id="insert" parameterType="com.owrawww.domain.Inquiry" useGeneratedKeys="true" keyProperty="id">
|
||||
INSERT INTO application_table (code, title, name, type, phone, email, comment, depth, in_date, top_code, left_code, sub_gubun, solution_gubun)
|
||||
VALUES (#{code}, #{title}, #{name}, #{type}, #{tel}, #{email}, #{comment}, #{depth}, now(), #{topCode}, #{leftCode}, #{subGubun}, #{solutionGubun})
|
||||
</insert>
|
||||
|
||||
</mapper>
|
||||
46
src/main/resources/mapper/UserMapper.xml
Normal file
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
|
||||
<mapper namespace="com.owrawww.domain.mapper.UserMapper">
|
||||
|
||||
<resultMap id="userResultMap" type="com.owrawww.domain.User">
|
||||
<id property="id" column="id"/>
|
||||
<result property="username" column="username"/>
|
||||
<result property="password" column="password"/>
|
||||
<result property="role" column="role"/>
|
||||
<result property="email" column="email"/>
|
||||
<result property="enabled" column="enabled"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="findByUsername" parameterType="string" resultMap="userResultMap">
|
||||
SELECT id, username, password, role, email, enabled
|
||||
FROM users
|
||||
WHERE username = #{username}
|
||||
</select>
|
||||
|
||||
<select id="findAll" resultMap="userResultMap">
|
||||
SELECT id, username, password, role, email, enabled
|
||||
FROM users
|
||||
ORDER BY id ASC
|
||||
</select>
|
||||
|
||||
<insert id="insert" parameterType="com.owrawww.domain.User" useGeneratedKeys="true" keyProperty="id">
|
||||
INSERT INTO users (username, password, role, email, enabled)
|
||||
VALUES (#{username}, #{password}, #{role}, #{email}, #{enabled})
|
||||
</insert>
|
||||
|
||||
<update id="update" parameterType="com.owrawww.domain.User">
|
||||
UPDATE users
|
||||
SET password = #{password},
|
||||
role = #{role},
|
||||
email = #{email},
|
||||
enabled = #{enabled}
|
||||
WHERE id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteById" parameterType="long">
|
||||
DELETE FROM users WHERE id = #{id}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
||||
39
src/main/resources/schema.sql
Normal file
@@ -0,0 +1,39 @@
|
||||
-- owrawww 데이터베이스 생성
|
||||
CREATE DATABASE IF NOT EXISTS owrawww
|
||||
CHARACTER SET utf8mb4
|
||||
COLLATE utf8mb4_unicode_ci;
|
||||
|
||||
CREATE USER IF NOT EXISTS 'owrawww'@'localhost' IDENTIFIED BY 'owrawww';
|
||||
GRANT ALL PRIVILEGES ON owrawww.* TO 'owrawww'@'localhost';
|
||||
FLUSH PRIVILEGES;
|
||||
|
||||
USE owrawww;
|
||||
|
||||
-- users 테이블
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
id BIGINT NOT NULL AUTO_INCREMENT,
|
||||
username VARCHAR(50) NOT NULL UNIQUE,
|
||||
password VARCHAR(255) NOT NULL,
|
||||
role VARCHAR(20) NOT NULL DEFAULT 'ROLE_USER',
|
||||
email VARCHAR(100),
|
||||
enabled TINYINT(1) NOT NULL DEFAULT 1,
|
||||
PRIMARY KEY (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- inquiry 테이블 (제휴문의)
|
||||
CREATE TABLE IF NOT EXISTS inquiry (
|
||||
id BIGINT NOT NULL AUTO_INCREMENT,
|
||||
name VARCHAR(100) NOT NULL,
|
||||
email VARCHAR(100) NOT NULL,
|
||||
tel VARCHAR(30) NOT NULL,
|
||||
dept VARCHAR(50) NOT NULL,
|
||||
title VARCHAR(200) NOT NULL,
|
||||
content TEXT NOT NULL,
|
||||
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- 테스트 계정 (비밀번호: Test1234!)
|
||||
-- BCrypt 해시값 사전 생성 필요 시 아래 INSERT 사용
|
||||
-- INSERT INTO users (username, password, role, email, enabled)
|
||||
-- VALUES ('admin', '$2a$10$...', 'ROLE_ADMIN', 'admin@owrawww.com', 1);
|
||||
1
src/main/resources/static/css/aos.css
Normal file
716
src/main/resources/static/css/board.css
Normal file
@@ -0,0 +1,716 @@
|
||||
@charset "utf-8";
|
||||
|
||||
/* ==========================================================================
|
||||
BOARD.CSS
|
||||
일반 게시판 / 갤러리 게시판 공통 스타일
|
||||
|
||||
브레이크포인트
|
||||
├─ PC 1025px ~ : 번호 | 제목 | 날짜 가로 한 줄
|
||||
├─ 태블릿 769~1024px : 간격·폰트 소폭 축소
|
||||
└─ 모바일 ~768px : 번호+날짜 위 / 제목 아래 카드형 전환
|
||||
└ 소형 ~480px : 패딩·검색·페이지네이션 추가 조정
|
||||
|
||||
─────────────────────────────────────────────────────
|
||||
SECTION 1. 게시판 탭
|
||||
SECTION 2. 검색 영역
|
||||
SECTION 3. 리스트 (ul/li)
|
||||
SECTION 4. 페이지네이션
|
||||
SECTION 5. 갤러리 게시판 (추후 사용)
|
||||
SECTION 6. 반응형 — 태블릿 (≤1024px)
|
||||
SECTION 7. 반응형 — 모바일 카드형 (≤768px)
|
||||
SECTION 8. 반응형 — 소형 모바일 (≤480px)
|
||||
========================================================================== */
|
||||
|
||||
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
SECTION 2. 검색 영역
|
||||
========================================================================== */
|
||||
.board-search-wrap {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
.board-search {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
width: 100%;
|
||||
max-width: 55rem;
|
||||
height: 6rem;
|
||||
border: 1px solid var(--bd-color);
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
background: #fff;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
/* 셀렉트박스 */
|
||||
.search-select-wrap {
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
width: 14rem;
|
||||
border-right: 1px solid var(--bd-color);
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.search-select {
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0 3.2rem 0 1.6rem;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 500;
|
||||
color: var(--dark);
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.select-arrow {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 0.8rem;
|
||||
transform: translateY(-50%);
|
||||
pointer-events: none;
|
||||
color: var(--cont2);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.select-arrow .material-symbols-outlined {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
/* 검색 인풋 */
|
||||
.search-input-wrap {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-width: 0; /* flex 자식 overflow 방지 */
|
||||
}
|
||||
|
||||
.search-input {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0 1.6rem;
|
||||
font-size: 1.5rem;
|
||||
color: var(--dark);
|
||||
border: none;
|
||||
outline: none;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.search-input::placeholder {
|
||||
color: #aab3bf;
|
||||
}
|
||||
|
||||
/* 검색 버튼 */
|
||||
.search-btn {
|
||||
flex-shrink: 0;
|
||||
width: 6rem;
|
||||
background: var(--navy);
|
||||
border: none;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.search-btn:hover { background: #0b85e0; }
|
||||
.search-btn:active { background: #0972c4; }
|
||||
|
||||
.search-btn .material-symbols-outlined {
|
||||
font-size: 3.2rem;
|
||||
}
|
||||
|
||||
|
||||
.board-list-wrap {
|
||||
width: 100%;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
/* ul 초기화 */
|
||||
.board-list {
|
||||
border-top: 2px solid var(--navy);
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* ── 개별 행 ── */
|
||||
.board-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
padding: 0;
|
||||
border-bottom: 1px solid var(--bd-color);
|
||||
transition: background 0.15s;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.board-item:hover {
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
/* 번호 */
|
||||
.item-num {
|
||||
flex-shrink: 0;
|
||||
width: 10rem;
|
||||
padding: 2rem 1.2rem;
|
||||
text-align: center;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 500;
|
||||
color: #C2D1E0;
|
||||
font-family: var(--e-font);
|
||||
}
|
||||
|
||||
/* 제목 */
|
||||
.item-title {
|
||||
flex: 1;
|
||||
min-width: 0; /* 텍스트 overflow 처리를 위해 필수 */
|
||||
display: block;
|
||||
padding: 2.4rem 1.2rem;
|
||||
font-size: 1.8rem;
|
||||
font-weight: 400;
|
||||
color: var(--dark);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
transition: color 0.15s;
|
||||
}
|
||||
|
||||
.item-title:hover {
|
||||
color: var(--primary);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* 날짜 */
|
||||
.item-date {
|
||||
flex-shrink: 0;
|
||||
width: 14rem;
|
||||
padding: 2rem 1.2rem;
|
||||
text-align: center;
|
||||
font-size: 1.6rem;
|
||||
color: #C2D1E0;
|
||||
white-space: nowrap;
|
||||
font-family: var(--e-font);
|
||||
}
|
||||
|
||||
/* 데이터 없음 */
|
||||
.board-item.board-empty {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 7rem 0;
|
||||
color: #aab3bf;
|
||||
font-size: 1.6rem;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.board-item.board-empty:hover {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
SECTION 4. 페이지네이션
|
||||
========================================================================== */
|
||||
.board-pagination-wrap {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 1rem 0 2rem;
|
||||
}
|
||||
|
||||
.board-pagination {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.4rem;
|
||||
}
|
||||
|
||||
/* 화살표 버튼 */
|
||||
.pg-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 3.6rem;
|
||||
height: 3.6rem;
|
||||
background: #fff;
|
||||
border: 0;
|
||||
border-radius: 4px;
|
||||
color: #000;
|
||||
transition: background 0.15s, color 0.15s, border-color 0.15s;
|
||||
cursor: pointer;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.pg-btn .material-symbols-outlined { font-size: 1.8rem; }
|
||||
|
||||
.pg-btn:hover {
|
||||
background: var(--bg);
|
||||
border-color: var(--primary);
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.pg-btn:disabled,
|
||||
.pg-btn.disabled {
|
||||
opacity: 0.35;
|
||||
cursor: default;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* 숫자 목록 */
|
||||
.pg-list {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.4rem;
|
||||
margin: 0 0.4rem;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* 숫자 버튼 */
|
||||
.pg-num {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 3.6rem;
|
||||
height: 3.6rem;
|
||||
background: #fff;
|
||||
border: 0;
|
||||
border-radius: 4px;
|
||||
font-size: 1.6rem;
|
||||
font-weight: 500;
|
||||
color: var(--cont2);
|
||||
font-family: var(--e-font);
|
||||
transition: background 0.15s, color 0.15s, border-color 0.15s;
|
||||
cursor: pointer;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.pg-num:hover {
|
||||
background: var(--bg);
|
||||
border-color: var(--primary);
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.pg-num.active {
|
||||
background: var(--primary);
|
||||
border-color: var(--primary);
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
SECTION 5. 갤러리 게시판 (추후 사용)
|
||||
board_gallery.html 에서 .board-gallery-wrap 사용
|
||||
========================================================================== */
|
||||
|
||||
/* 갤러리 그리드 */
|
||||
.board-gallery-wrap {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 3rem;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
/* 갤러리 카드 */
|
||||
.gallery-card {
|
||||
display: block;
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2rem;
|
||||
transition: box-shadow 0.2s, transform 0.2s;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
/* 썸네일 */
|
||||
.gallery-card__thumb {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-top: 70%; /* 3:2 비율 */
|
||||
background: var(--bg);
|
||||
overflow: hidden;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.gallery-card__thumb:hover {
|
||||
box-shadow: 0 8px 24px rgba(19, 152, 248, 0.12);
|
||||
}
|
||||
|
||||
.gallery-card__thumb img {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
|
||||
.gallery-card:hover .gallery-card__thumb img {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.gallery-card__thumb .no-img {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #c5cdd6;
|
||||
}
|
||||
|
||||
|
||||
/* 카드 내용 */
|
||||
.gallery-card__body {
|
||||
padding: 1.4rem 0 1.6rem;
|
||||
}
|
||||
|
||||
.gallery-card__title {
|
||||
font-size: 2rem;
|
||||
font-weight: 600;
|
||||
color: var(--dark);
|
||||
line-height: 1.5;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
margin-bottom: 0.8rem;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
SECTION 6. 반응형 — 태블릿 (≤1024px)
|
||||
========================================================================== */
|
||||
@media (max-width: 1024px) {
|
||||
|
||||
/* 번호 컬럼 살짝 좁힘 */
|
||||
.item-num { width: 8rem; }
|
||||
.item-date { width: 12rem; }
|
||||
|
||||
/* 갤러리 3열 */
|
||||
.board-gallery-wrap {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 768px) {
|
||||
|
||||
/* ── 검색 ── */
|
||||
.board-search {
|
||||
max-width: 100%;
|
||||
height: 4.8rem;
|
||||
}
|
||||
|
||||
.search-select-wrap { width: 10rem; }
|
||||
|
||||
.search-select {
|
||||
font-size: 1.4rem;
|
||||
padding-left: 1.2rem;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
font-size: 1.4rem;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
/* ── 리스트 카드형 전환 ── */
|
||||
.board-list-wrap {
|
||||
border-top-width: 2px;
|
||||
}
|
||||
|
||||
.item-num {
|
||||
order: 1;
|
||||
flex: none;
|
||||
width: 5rem;
|
||||
padding: 1.6rem 0.4rem;
|
||||
font-size: 1.3rem;
|
||||
text-align: center;
|
||||
}
|
||||
.item-num::after { display: none; }
|
||||
|
||||
.item-title {
|
||||
order: 2;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
width: 0; /* overflow 강제 제한 */
|
||||
padding: 1.6rem 0.6rem;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 400;
|
||||
white-space: nowrap; /* 한 줄 */
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.item-date {
|
||||
order: 3;
|
||||
flex: none;
|
||||
width: 9rem;
|
||||
padding: 1.6rem 0.4rem;
|
||||
font-size: 1.2rem;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
/* 갤러리 2열 */
|
||||
.board-gallery-wrap {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1.6rem;
|
||||
}
|
||||
.gallery-card {
|
||||
margin-bottom:0;
|
||||
}
|
||||
.gallery-card__title {
|
||||
font-size:1.5rem;
|
||||
}
|
||||
|
||||
|
||||
/* 페이지네이션 버튼 크기 */
|
||||
.pg-btn,
|
||||
.pg-num {
|
||||
width: 3.8rem;
|
||||
height: 3.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
SECTION 8. 반응형 — 소형 모바일 (≤480px)
|
||||
========================================================================== */
|
||||
@media (max-width: 480px) {
|
||||
|
||||
/* 검색 */
|
||||
.board-search-wrap { margin-bottom: 2.4rem; }
|
||||
|
||||
.board-search { height: 4.4rem; }
|
||||
|
||||
.search-select-wrap { width: 9rem; }
|
||||
|
||||
.search-select { font-size: 1.35rem; }
|
||||
|
||||
.search-input {
|
||||
font-size: 1.35rem;
|
||||
padding: 0 0.8rem;
|
||||
}
|
||||
|
||||
.search-btn { width: 5rem; }
|
||||
|
||||
/* 리스트 */
|
||||
.board-item { padding: 1.4rem 1.2rem; }
|
||||
|
||||
.item-title { font-size: 1.45rem; }
|
||||
|
||||
/* 갤러리 2열 유지, 간격 축소 */
|
||||
.board-gallery-wrap { gap: 1.2rem; }
|
||||
|
||||
|
||||
/* 페이지네이션 — 첫/마지막 버튼 숨김 */
|
||||
.pg-btn.pg-first,
|
||||
.pg-btn.pg-last {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.pg-btn,
|
||||
.pg-num {
|
||||
width: 3.4rem;
|
||||
height: 3.4rem;
|
||||
font-size: 1.35rem;
|
||||
}
|
||||
|
||||
.pg-btn .material-symbols-outlined { font-size: 1.6rem; }
|
||||
}
|
||||
|
||||
|
||||
/* =============================================
|
||||
게시판 뷰 — 추가 스타일
|
||||
============================================= */
|
||||
|
||||
/* 뷰 헤더 */
|
||||
.board-view-head {
|
||||
border-top: 2px solid var(--color-primary, #1a3c6e);
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding: 22px 4px;
|
||||
}
|
||||
.board-view-head .view-title {
|
||||
font-size: 2.4rem;
|
||||
font-weight: 600;
|
||||
color: #111;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.board-view-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.board-view-meta .meta-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
font-size: 1.6rem;
|
||||
color: #888;
|
||||
}
|
||||
.board-view-meta .meta-item .material-symbols-outlined {
|
||||
font-size: 1.6rem;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/* 본문 */
|
||||
.board-view-body {
|
||||
min-height: 280px;
|
||||
padding: 40px 4px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
font-size: 1.6rem;
|
||||
color: #333;
|
||||
line-height: 1.9;
|
||||
}
|
||||
.board-view-body img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
margin: 16px 0;
|
||||
}
|
||||
|
||||
/* 첨부파일 */
|
||||
.board-view-attach {
|
||||
padding: 2.4rem 0.2rem;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
.board-view-attach .attach-label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 1.6rem;
|
||||
font-weight: 600;
|
||||
color: #444;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.board-view-attach .attach-label .material-symbols-outlined {
|
||||
font-size: 1.4rem;
|
||||
color: #777;
|
||||
}
|
||||
.attach-file-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
.attach-file-list li a {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 1.4rem;
|
||||
color: #555;
|
||||
text-decoration: none;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
.attach-file-list li a:hover {
|
||||
color: var(--color-primary, #1a3c6e);
|
||||
text-decoration: underline;
|
||||
}
|
||||
.attach-file-list li a .material-symbols-outlined {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
/* 이전글 / 다음글 */
|
||||
.board-view-nav {
|
||||
margin-top: 0;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
.board-view-nav .nav-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
padding: 14px 4px;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
.board-view-nav .nav-item:first-child {
|
||||
border-top: none;
|
||||
}
|
||||
.board-view-nav .nav-label {
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
font-size: 1.6rem;
|
||||
font-weight: 600;
|
||||
color: #999;
|
||||
min-width: 54px;
|
||||
}
|
||||
.board-view-nav .nav-label .material-symbols-outlined {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
.board-view-nav .nav-link {
|
||||
flex: 1;
|
||||
font-size: 1.6rem;
|
||||
color: #444;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
.board-view-nav .nav-link:hover {
|
||||
color: var(--color-primary, #1a3c6e);
|
||||
}
|
||||
.board-view-nav .nav-link.disabled {
|
||||
color: #bbb;
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
}
|
||||
.board-view-nav .nav-date {
|
||||
flex-shrink: 0;
|
||||
font-size: 1.4rem;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/* 버튼 영역 */
|
||||
.board-view-btn-wrap {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 36px;
|
||||
}
|
||||
.btn-list {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
padding: 10px 30px;
|
||||
background: #fff;
|
||||
border: 1px solid #bbb;
|
||||
border-radius: 4px;
|
||||
font-size: 1.6rem;
|
||||
color: #555;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s, border-color 0.2s, color 0.2s;
|
||||
}
|
||||
.btn-list:hover {
|
||||
background: var(--color-primary, #1a3c6e);
|
||||
border-color: var(--color-primary, #1a3c6e);
|
||||
color: #fff;
|
||||
}
|
||||
.btn-list .material-symbols-outlined {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
/* 반응형 */
|
||||
@media (max-width: 768px) {
|
||||
.board-view-head .view-title {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
.board-view-nav .nav-date {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
532
src/main/resources/static/css/common.css
Normal file
@@ -0,0 +1,532 @@
|
||||
@charset "utf-8";
|
||||
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
|
||||
@import url("./font-awesome/css/font-awesome.min.css");
|
||||
@font-face {
|
||||
font-family: 'Pretendard Variable';
|
||||
font-weight: 45 920;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
src: local('Pretendard Variable'), url('./fonts/PretendardVariable.woff2') format('woff2-variations');
|
||||
}
|
||||
@font-face {
|
||||
font-family:'Material Icons';
|
||||
font-style:normal;
|
||||
font-weight:400;
|
||||
src:url(https://example.com/MaterialIcons-Regular.eot);
|
||||
src:local('Material Icons'),local('MaterialIcons-Regular'),url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),url(https://example.com/MaterialIcons-Regular.woff) format('woff'),url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
|
||||
}
|
||||
.material-icons {
|
||||
font-family:'Material Icons';
|
||||
font-weight:normal;
|
||||
font-style:normal;
|
||||
font-size:2.4rem; /* 24px */
|
||||
display:inline-block;
|
||||
line-height:1;
|
||||
text-transform:none;
|
||||
letter-spacing:normal;
|
||||
word-wrap:normal;
|
||||
white-space:nowrap;
|
||||
direction:ltr;
|
||||
text-rendering:optimizeLegibility;
|
||||
font-feature-settings:'liga';
|
||||
}
|
||||
|
||||
/* ========================== 초기화 [s] */
|
||||
* { -webkit-text-size-adjust:none }
|
||||
*,:after,:before { box-sizing:border-box }
|
||||
|
||||
:root {
|
||||
--primary:#1398F8;
|
||||
--navy:#032B69;
|
||||
--dark:#222;
|
||||
--mint:#45E6D9;
|
||||
--gray:rgba(68,87,118,0.1);
|
||||
--bg:#F3F9FF;
|
||||
--mainsize:1440px;
|
||||
--bd-color:#DEE6EE;
|
||||
--cont1:#444;
|
||||
--cont2:#666;
|
||||
--k-font:'Pretendard Variable';
|
||||
--e-font:"Outfit",sans-serif;
|
||||
|
||||
--col-gap : 14px; /* 열 사이 */
|
||||
--card-gap : 10px; /* 같은 열 안 카드 사이 */
|
||||
--row-gap : 14px; /* 행(row) 사이 */
|
||||
--card-r : 12px; /* 카드 모서리 둥글기 */
|
||||
--body-pad : 14px; /* 카드 바디 패딩 */
|
||||
|
||||
|
||||
}
|
||||
|
||||
html { font-size:62.5% } /* 1rem = 10px */
|
||||
|
||||
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
|
||||
margin:0; padding:0; border:0; vertical-align:baseline
|
||||
}
|
||||
body { background:#fff; font-size:1.8rem; /* 13px */ font-family:var(--k-font); overflow-x:hidden }
|
||||
h1,h2,h3,h4,h5,h6,input,button,textarea,select { font-family:var(--k-font) }
|
||||
a { text-decoration:none !important }
|
||||
a:hover { text-decoration:none !important }
|
||||
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display:block }
|
||||
ol,ul,dl,dt,dd { list-style:none }
|
||||
blockquote,q { quotes:none }
|
||||
blockquote:before,blockquote:after,q:before,q:after {content:none;}
|
||||
table { border-collapse:collapse; border-spacing:0 }
|
||||
input,button { margin:0; padding:0; font-family:'Pretendard Variable' }
|
||||
input[type="submit"] { cursor:pointer }
|
||||
button { cursor:pointer }
|
||||
textarea,select { font-family:'Pretendard Variable' }
|
||||
select { margin:0 }
|
||||
label,input,button,select,img { vertical-align:middle }
|
||||
|
||||
.sound_only {
|
||||
display:inline-block !important;
|
||||
position:absolute; top:0; left:0;
|
||||
margin:0 !important; padding:0 !important;
|
||||
font-size:0; line-height:0; border:0 !important; overflow:hidden !important
|
||||
}
|
||||
#wrapper { position:relative; width:100%; margin:0 auto }
|
||||
/* ========================== 초기화 [e] */
|
||||
|
||||
|
||||
/* ========================== HEADER */
|
||||
#hd {
|
||||
--hd-height:100px;
|
||||
position:fixed; top:0; z-index:100; width:100%
|
||||
}
|
||||
#hd.sub { position:absolute !important }
|
||||
|
||||
.top_nav_bg {
|
||||
position:fixed; width:100%; display:none;
|
||||
top:var(--hd-height); left:0; height:380px;
|
||||
border-top:1px solid #e1e1e1; background:#fff;
|
||||
box-shadow:0px 12px 12px -17px rgba(0,0,0,0.25)
|
||||
}
|
||||
#top_nav_wrap { position:relative }
|
||||
|
||||
/* fixed */
|
||||
#top_nav_wrap.fixed { background-color:#fff; box-shadow:0 0 12px rgba(0,0,0,0.05) }
|
||||
#top_nav_wrap.fixed #top_nav>li>a { color:#222 }
|
||||
#top_nav_wrap.fixed .h_center .util .tip li a { color:#222 }
|
||||
#top_nav_wrap.fixed .h_center .util .tip li a.login::after { background-color:#222 }
|
||||
|
||||
/* on */
|
||||
#top_nav_wrap.on { background-color:#fff }
|
||||
#top_nav_wrap.on #top_nav>li>a { color:#222 }
|
||||
#top_nav_wrap.on .h_center .util .tip li a { color:#222 }
|
||||
#top_nav_wrap.on .h_center .util .tip li a.login::after { background-color:#222 }
|
||||
|
||||
/* nav_depth */
|
||||
#top_nav {
|
||||
position:absolute; top:50%; left:50%;
|
||||
transform:translate(-40%,-50%);
|
||||
display:flex; align-items:center
|
||||
}
|
||||
#top_nav li.list { position:relative; color:#848484; font-size:1.6rem; text-align:center } /* 16px */
|
||||
#top_nav>li>a {
|
||||
display:block; padding:0 55px; font-size:1.8rem; /* 18px */ color:#fff;
|
||||
font-weight:500; line-height:var(--hd-height);
|
||||
transition:line-height 0.2s; white-space:nowrap
|
||||
}
|
||||
#top_nav li ul {
|
||||
position:absolute; display:none; left:50%; transform:translateX(-50%);
|
||||
width:100%; height:350px; padding:10px 0
|
||||
}
|
||||
#top_nav li ul a {
|
||||
position:relative; display:block; padding:10px 20px;
|
||||
font-size:1.6rem; /* 16px */ color:#888; letter-spacing:-0.5px
|
||||
}
|
||||
|
||||
/* LNB */
|
||||
#top_nav_wrap {
|
||||
position:relative; width:100%;
|
||||
height:var(--hd-height); margin:0 auto; transition:height 0.2s
|
||||
}
|
||||
#top_nav_wrap .h_center {
|
||||
display:flex; align-items:center; justify-content:space-between;
|
||||
width:100%; height:100%; margin:0 auto; padding:0 20px; max-width:1400px;
|
||||
}
|
||||
#top_nav_wrap .h_center .util {
|
||||
display:flex; align-items:center; justify-content:space-between; width:100%
|
||||
}
|
||||
#top_nav_wrap .h_center .h_left { display:flex; align-items:center }
|
||||
#top_nav.sub li>a { color:#fff }
|
||||
#top_nav.sub li ul a { color:#888 }
|
||||
|
||||
@media (hover:hover) {
|
||||
#top_nav_wrap .h_center .util .tip li a:hover { color:#fff }
|
||||
#top_nav_wrap.fixed .h_center .util .tip li a:hover { color:#222 }
|
||||
#top_nav_wrap.on .h_center .util .tip li a:hover { color:#222 }
|
||||
#top_nav li ul a:hover,#nav li a.hov { color:#333 }
|
||||
}
|
||||
|
||||
/* 반응형 메뉴 [s] */
|
||||
#topmenuM {
|
||||
display:none; position:relative; width:100%;
|
||||
padding:10px 15px; line-height:1.8;
|
||||
background-color:transparent; font-family:'Pretendard Variable';
|
||||
transition:background-color 0.2s
|
||||
}
|
||||
#topmenuM.fixed { background-color:#fff; box-shadow:0 0 12px rgba(0,0,0,0.05) }
|
||||
|
||||
#topmenuM.fixed #m_navBtn span:before,
|
||||
#topmenuM.fixed #m_navBtn span:after { background-color:#222 }
|
||||
#topmenuM.dark #m_navBtn span:before,
|
||||
#topmenuM.dark #m_navBtn span:after { background-color:#222 }
|
||||
|
||||
#m_logo { position:relative }
|
||||
#m_logo a { display:inline-block }
|
||||
#m_logo img { width:150px }
|
||||
|
||||
#m_navBtn {
|
||||
position:absolute; top:18px; right:15px;
|
||||
z-index:5; width:30px; height:30px; cursor:pointer
|
||||
}
|
||||
#m_navBtn span {
|
||||
display:block; position:relative; top:50%;
|
||||
transform:translateY(-50%); width:100%; height:2px
|
||||
}
|
||||
#m_navBtn span:before,#m_navBtn span:after {
|
||||
display:block; content:""; position:absolute; top:-6px;
|
||||
width:30px; height:2px; background-color:#fff;
|
||||
-webkit-transition:all .1s; transition:all .1s
|
||||
}
|
||||
#m_navBtn span:after { top:6px; width:16px; right:0; background-color:#fff }
|
||||
#m_navBtn.on { position:fixed }
|
||||
#m_navBtn.on span:before { top:0; right:-4px; transform:rotate(45deg); background-color:#fff !important;}
|
||||
#m_navBtn.on span:after { top:0; right:-4px; width:30px; transform:rotate(-45deg); background-color:#fff !important; }
|
||||
|
||||
#navWrap {
|
||||
display:none; position:fixed; left:0; top:0;
|
||||
z-index:4; width:100%; height:100%; background-color:rgba(0,0,0,.7)
|
||||
}
|
||||
#navWrap .inner {
|
||||
overflow-y:scroll; opacity:0; position:fixed;
|
||||
right:-40px; top:0; z-index:6; min-width:300px; width:75%; height:100%;
|
||||
padding:60px 0; background-color:var(--navy);
|
||||
-webkit-transition:all .1s; transition:all .1s;
|
||||
}
|
||||
|
||||
|
||||
#navWrap.on .inner { opacity:1; right:0; -webkit-transition:all .4s; transition:all .4s }
|
||||
#navWrap .inner:before {
|
||||
opacity:0; display:block; position:fixed; top:0; right:-40px; z-index:1; content:"";
|
||||
min-width:300px; width:75%; height:60px; background-color:var(--navy);
|
||||
-webkit-transition:all .1s; transition:all .1s
|
||||
}
|
||||
#navWrap.on .inner:before{
|
||||
opacity:1; right:0; -webkit-transition:all .4s; transition:all .4s
|
||||
}
|
||||
#navWrap .inner .mo_hd_copy {
|
||||
position:fixed; right:0; bottom:15px; z-index:2;
|
||||
min-width:300px; width:70%; font-size:1.2rem; /* 12px */ text-align:center; color:#888
|
||||
}
|
||||
#navWrap .inner::-webkit-scrollbar {
|
||||
width: 6px; /* 이 줄이 없으면 track/thumb 스타일이 무시됨 */
|
||||
}
|
||||
#navWrap .inner::-webkit-scrollbar-track {
|
||||
background: var(--navy);
|
||||
border-radius: 10px;
|
||||
}
|
||||
#navWrap .inner::-webkit-scrollbar-thumb {
|
||||
background: var(--navy); /* 핸들 색상 */
|
||||
border-radius: 10px;
|
||||
}
|
||||
/* 대분류 */
|
||||
#topmenuM .m_lnb .m_bmenu {
|
||||
display:block; position:relative; width:100%; height:70px;
|
||||
padding:10px 20px; border:none; border-bottom:1px solid rgba(255,255,255,0.1);
|
||||
background:none; font-size:2rem; line-height:52px;
|
||||
color:#fff; text-align:left; font-family:'Pretendard Variable'
|
||||
}
|
||||
#topmenuM .m_lnb .m_bmenu:after { float:right; content:"\f107"; font-family:'fontawesome'; color:#fff; }
|
||||
#topmenuM .m_lnb .m_bmenu.on:after { content:"\f106" }
|
||||
|
||||
/* 소분류 */
|
||||
#topmenuM .m_smenu {
|
||||
display:none; padding:15px 20px;
|
||||
border-bottom:1px solid rgba(255,255,255,0.1); background-color: rgba(255,255,255,0.1);
|
||||
}
|
||||
#topmenuM .m_smenu li a { font-size:1.6rem;
|
||||
color:rgba(255,255,255,0.8); } /* 16px */
|
||||
#topmenuM .m_smenu li a:hover {
|
||||
color:#fff;
|
||||
}
|
||||
/* PC 햄버거 버튼 */
|
||||
.pc-ham-btn {
|
||||
display:flex; flex-direction:column; justify-content:center;
|
||||
gap:5px; width:20px; height:20px; padding:1px 0; text-decoration:none !important
|
||||
}
|
||||
.pc-ham-btn span {
|
||||
display:block; width:20px; height:2px;
|
||||
background-color:#fff; border-radius:2px; transition:background-color 0.2s
|
||||
}
|
||||
#top_nav_wrap.fixed .pc-ham-btn span,
|
||||
#top_nav_wrap.on .pc-ham-btn span,
|
||||
body.page-inquiry .pc-ham-btn span { background-color:#111 }
|
||||
|
||||
/* 채용정보 페이지 헤더 - 흰 배경 + 검정 폰트 */
|
||||
body.page-inquiry #top_nav_wrap {
|
||||
background-color: #fff;
|
||||
box-shadow: 0 0 12px rgba(0,0,0,0.05);
|
||||
}
|
||||
body.page-inquiry #top_nav > li > a {
|
||||
color: #222;
|
||||
}
|
||||
body.page-inquiry #m_navBtn span:before,
|
||||
body.page-inquiry #m_navBtn span:after {
|
||||
background-color: var(--dark);
|
||||
}
|
||||
/* 채용정보 페이지 - 모바일 헤더 흰 배경 + 검정 햄버거 */
|
||||
body.page-inquiry #topmenuM {
|
||||
background-color: #fff;
|
||||
box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
body.page-inquiry #m_navBtn span:before,
|
||||
body.page-inquiry #m_navBtn span:after {
|
||||
background-color: var(--dark);
|
||||
}
|
||||
|
||||
/* 사이드메뉴 열렸을 때 X 버튼은 흰색 유지 */
|
||||
body.page-inquiry #m_navBtn.on span:before,
|
||||
body.page-inquiry #m_navBtn.on span:after {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
/* PC 로고 교체 */
|
||||
body.page-inquiry #top_logo img {
|
||||
content: url('/img/common/logo_d.png');
|
||||
}
|
||||
/* 모바일 로고 교체 */
|
||||
body.page-inquiry #m_logo img {
|
||||
content: url('/img/common/logo_d.png');
|
||||
}
|
||||
|
||||
/* 헤더 반응형 */
|
||||
@media (max-width:1200px) {
|
||||
#top_logo img { width:150px }
|
||||
#top_nav>li>a { padding:0 50px; font-size:1.6rem }
|
||||
}
|
||||
@media (max-width:1024px) {
|
||||
#top_nav_wrap { display:none }
|
||||
#topmenuM { display:block }
|
||||
.pc-ham-btn { display:none }
|
||||
}
|
||||
/* 반응형 메뉴 [e] */
|
||||
|
||||
|
||||
/* ========================== MAIN */
|
||||
#container {min-height: 1080px;}
|
||||
#container .inner { max-width:var(--mainsize); margin:0 auto }
|
||||
|
||||
/*
|
||||
* group-title
|
||||
* h2: 45px(1600+) → 24px(480px) | clamp(2.4rem, calc(1.875vw + 1.5rem), 4.5rem)
|
||||
* desc: 18px(1600+) → 15px(768px) | clamp(1.5rem, calc(0.36vw + 1.2rem), 1.8rem)
|
||||
*/
|
||||
#container .group-title {
|
||||
display:flex; flex-direction:column; align-items:center;
|
||||
gap:clamp(10px, 1.25vw, 20px);
|
||||
padding-bottom:clamp(20px, calc(5.36vw - 6px), 80px);
|
||||
text-align:center
|
||||
}
|
||||
#container .group-title h2 {
|
||||
font-size:clamp(2.4rem, calc(1.875vw + 1.5rem), 4.5rem); /* 24px~45px */
|
||||
font-weight:700; line-height:1.2; white-space:pre-line;
|
||||
color:#222; word-break:keep-all
|
||||
}
|
||||
#container .group-title p.desc {
|
||||
font-size:clamp(1.5rem, calc(0.36vw + 1.2rem), 1.8rem); /* 15px~18px */
|
||||
font-weight:500; line-height:1.4; word-break:keep-all
|
||||
}
|
||||
|
||||
/* ========================== INDEX */
|
||||
|
||||
/* ========================== CONTAINER */
|
||||
#container { position:relative; width:100%; z-index:0 }
|
||||
#container_wrapper { position:relative; width:100%; zoom:1 }
|
||||
#container_wrapper:after { display:block; visibility:hidden; clear:both; content:"" }
|
||||
|
||||
/* ========================== SNB */
|
||||
#aside { position:relative; z-index:15; width:100%; font-family:'Pretendard Variable';}
|
||||
#aside_wrapper { position:relative; margin:0 auto; zoom:1 }
|
||||
|
||||
/* ========================== CONTENT */
|
||||
#content {
|
||||
overflow:hidden; position:relative; z-index:4;
|
||||
max-width:1300px; min-height:580px; margin:0 auto;
|
||||
padding:90px 95px;
|
||||
border-left:1px solid #e1e1e1; border-right:1px solid #e1e1e1
|
||||
}
|
||||
#content:after { display:block; visibility:hidden; clear:both; content:"" }
|
||||
#idx_area { background:#fff }
|
||||
|
||||
@media (max-width:1300px) { #content { padding:60px 0; border:none } }
|
||||
@media (max-width:1024px) { #content { padding:40px } }
|
||||
@media (max-width:768px) { #content { padding:40px 15px } }
|
||||
|
||||
|
||||
/* ========================== FOOTER */
|
||||
#ft {
|
||||
overflow:hidden;
|
||||
padding:clamp(20px, 1.875vw, 30px) 0 clamp(30px, 4.375vw, 30px);
|
||||
background-color:#2C363F;
|
||||
color:#fff
|
||||
}
|
||||
#ft .inner { max-width:var(--mainsize); margin:0 auto }
|
||||
|
||||
#ft .bottom .ft_menu {
|
||||
display:flex;
|
||||
gap:clamp(14px, 2.5vw, 40px);
|
||||
padding-bottom:clamp(20px, 1.875vw, 30px);
|
||||
border-bottom:1px solid rgba(255,255,255,0.1);
|
||||
margin-bottom:clamp(20px, 1.875vw, 30px)
|
||||
}
|
||||
#ft .bottom .ft_menu li a {
|
||||
font-size:clamp(1.3rem, calc(0.27vw + 1.257rem), 1.6rem); /* 13px~16px */
|
||||
color:#fff
|
||||
}
|
||||
#ft .bottom .ft_menu li a.point { color:var(--primary) }
|
||||
|
||||
#ft .bottom .ft_logo { padding-bottom:clamp(10px, 1.5625vw, 25px) }
|
||||
|
||||
#ft .bottom .ft-info {
|
||||
display:flex;
|
||||
justify-content:space-between
|
||||
}
|
||||
#ft .bottom .ft-info > div { display:flex }
|
||||
|
||||
#ft .bottom .company-info {
|
||||
padding-bottom:clamp(15px, 2.8125vw, 30px);
|
||||
font-size:clamp(1.3rem, calc(0.27vw + 1.257rem), 1.6rem); /* 13px~16px */
|
||||
line-height:1.7;
|
||||
color:#A9BBCA;
|
||||
gap:70px;
|
||||
word-break:keep-all
|
||||
}
|
||||
#ft .bottom .company-info li {
|
||||
float:left;
|
||||
padding-right:40px;
|
||||
position:relative
|
||||
}
|
||||
#ft .bottom .company-info li::after {
|
||||
position:absolute; content:'';
|
||||
width:3px; height:3px; border-radius:3px;
|
||||
right:20px; top:10px; background:#A9BBCA
|
||||
}
|
||||
#ft .bottom .company-info li:last-child::after { display:none }
|
||||
#ft .bottom .company-info .copy {
|
||||
padding-top:clamp(15px, 1.875vw, 30px);
|
||||
text-align:left; clear:both
|
||||
}
|
||||
|
||||
#ft .bottom .ft_logo2 li { float:left; margin-right:15px }
|
||||
#ft .bottom .ft_logo2 li a p {
|
||||
color:#fff; font-size:1rem; /* 10px */
|
||||
padding-top:10px; text-align:center
|
||||
}
|
||||
|
||||
|
||||
/* ========================== 플로트 퀵메뉴 */
|
||||
.quick_wrap {
|
||||
display:flex; align-items:center; flex-direction:column; gap:10px;
|
||||
position:fixed; bottom:50px; right:20px; width:140px;
|
||||
z-index: 90;
|
||||
}
|
||||
.quick_wrap .quick-menu { width:100% }
|
||||
.quick_wrap .quick_list { display:flex; flex-direction:column; gap:10px }
|
||||
.quick_wrap .quick_list>li { display:flex; align-items:center; justify-content:center }
|
||||
.quick_wrap .quick_list>li:last-child { margin-bottom:0 }
|
||||
.quick_wrap .quick_list>li>a {
|
||||
display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px
|
||||
}
|
||||
.quick_wrap .top_btn {
|
||||
display:flex !important; flex-direction:column; align-items:center; justify-content:center;
|
||||
gap:5px; width:85px; height:85px; margin:10px auto 0;
|
||||
background-color:#fff; border:1px solid var(--bd-color); border-radius:50%;
|
||||
font-size:1.3rem; /* 13px */ font-weight:700; color:#222;
|
||||
transition:background-color 0.2s, color 0.2s
|
||||
}
|
||||
.quick_wrap .top_btn .material-icons-round {
|
||||
display:block; font-size:1.6rem; /* 16px */ width:16px; line-height:1; text-align:center
|
||||
}
|
||||
@media (hover:hover) {
|
||||
.quick_wrap .top_btn:hover { border-color:var(--primary); color:var(--primary) }
|
||||
}
|
||||
@media (max-width:1400px) { .quick_wrap { display:none } }
|
||||
|
||||
|
||||
/* ========================== 반응형 하단 버튼 공통 */
|
||||
#fix_tel {
|
||||
opacity:0; display:none; position:fixed;
|
||||
right:10px; bottom:80px; z-index:101;
|
||||
width:65px; height:65px; margin-right:-10px;
|
||||
border-radius:50%; font-size:3rem; /* 30px */ text-align:center;
|
||||
line-height:65px; color:#fff; background:var(--primary);
|
||||
box-shadow:5px 5px 5px rgba(0,0,0,.2);
|
||||
-webkit-transition:all .2s; transition:all .2s
|
||||
}
|
||||
#fix_tel.active { opacity:1; margin-right:0 }
|
||||
|
||||
#ft_btns { display:none; padding:15px }
|
||||
#ft_btns .btns { overflow:hidden }
|
||||
#ft_btns .row2 a { width:50% }
|
||||
#ft_btns a {
|
||||
float:left; display:block; width:100%; height:55px;
|
||||
font-size:1.6rem; /* 16px */ line-height:55px; color:#fff; text-align:center;
|
||||
background:var(--primary); font-family:'Pretendard Variable'; font-weight:700
|
||||
}
|
||||
#ft_btns a.tel { font-size:1.8rem; /* 18px */ font-weight:700; letter-spacing:0; font-family:'Poppins' }
|
||||
#ft_btns a i { padding-right:5px; font-size:1.8rem } /* 18px */
|
||||
#ft_btns a.kakao { font-weight:normal; color:#402325; background-color:#ffe500 }
|
||||
|
||||
|
||||
/* ========================== 반응형 [s] */
|
||||
@media (max-width:1400px) {
|
||||
#ft { padding:20px }
|
||||
#ft .bottom .ft_menu { padding-bottom:20px }
|
||||
}
|
||||
|
||||
@media (max-width:1024px) {
|
||||
#ft .bottom .ft-info,
|
||||
#ft .bottom .ft-info > div { display:block }
|
||||
#ft .bottom { text-align:center }
|
||||
#ft .bottom .ft_menu { justify-content:center }
|
||||
#ft .bottom .ft_logo { display:flex; justify-content:center }
|
||||
#ft .bottom .company-info { text-align:center }
|
||||
#ft .bottom .company-info li { float:none; display:inline-block; padding:0 3px;}
|
||||
#ft .bottom .company-info li::after { display:none }
|
||||
#ft .bottom .company-info .copy { text-align:center }
|
||||
#ft .bottom .copy { flex-direction:column; gap:10px; justify-content:center; align-items:center }
|
||||
#ft .bottom .ft_logo2 ul { display:flex; justify-content:center }
|
||||
}
|
||||
|
||||
@media (max-width:768px) {
|
||||
#login,#agree,#register,#mb_confirm,#result { padding:15px; margin:15px auto; border:none }
|
||||
#login input[type=submit],
|
||||
#agree .btn_wrap input[type=submit],
|
||||
#register .btn_wrap input[type=submit],
|
||||
#find_info input[type=submit],
|
||||
#mb_confirm input[type=submit] { -webkit-appearance:none; appearance:none }
|
||||
#login .bnr .txt p a { color:#0054a6 }
|
||||
#pw_confirm { width:100%; padding:30px 20px; border:none }
|
||||
#agree .inner { padding:15px }
|
||||
#agree .cont { padding:10px }
|
||||
#site_map { padding:30px 20px }
|
||||
#site_map>div { width:100%; margin:0 }
|
||||
#site_map .site_map_box { min-height:auto }
|
||||
#ft .bottom .ft_logo { padding-bottom:10px }
|
||||
}
|
||||
|
||||
@media (max-width:480px) {
|
||||
#fix_tel { display:block }
|
||||
#ft_btns { display:block }
|
||||
#ft { padding:20px 20px 40px }
|
||||
#ft .bottom .ft_menu { flex-wrap:wrap }
|
||||
#ft .bottom .ft_menu li a { text-align:center }
|
||||
#ft .bottom .ft_logo img { width:140px }
|
||||
#ft .bottom .copy { gap:5px }
|
||||
#ft .bottom p.company-info { line-height:1.4;}
|
||||
}
|
||||
/* ========================== 반응형 [e] */
|
||||
@@ -0,0 +1,7 @@
|
||||
I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
|
||||
Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
|
||||
comprehensive icon sets or copy and paste your own.
|
||||
|
||||
Please. Check it out.
|
||||
|
||||
-Dave Gandy
|
||||
2337
src/main/resources/static/css/font-awesome/css/font-awesome.css
vendored
Normal file
4
src/main/resources/static/css/font-awesome/css/font-awesome.min.css
vendored
Normal file
113
src/main/resources/static/css/font-awesome/css/sh_mobile.css
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
@charset "utf-8";/* 상단 레이아웃 */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
|
||||
|
||||
#mo_wrapper{position:relative;max-width:768px;margin:0 auto}
|
||||
|
||||
/* ----------------- head 시작 [s] */
|
||||
#mo_hd{position:relative;z-index:20;font-size:15px;color:#777;letter-spacing:-.2px;line-height:1.8;font-family:'notokr-regular'}
|
||||
#mo_hd_wrapper{position:relative;padding:20px 15px}
|
||||
#mo_hd:after{display:block;content:"";position:absolute;right:0;bottom:0;z-index:1;width:40px;height:40px;background:rgb(255,255,255);background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%)}
|
||||
|
||||
/* 로고 */
|
||||
#mo_logo{position:relative}
|
||||
#mo_logo a{display:inline-block}
|
||||
#mo_logo img{max-height:60px}
|
||||
|
||||
/* 상단 버튼 및 오픈메뉴 */
|
||||
#navBtn{position:absolute;top:18px;right:15px;z-index:5;width:30px;height:30px}
|
||||
#navBtn span{display:block;position:relative;top:50%;transform:translateY(-50%);width:100%;height:2px}
|
||||
#navBtn span:before, #navBtn span:after{display:block;content:"";position:absolute;top:-6px;width:30px;height:2px;background-color:#222;-webkit-transition:all .1s;transition:all .1s}
|
||||
#navBtn span:after{top:6px;width:16px;right:0;background-color:#0065c7}
|
||||
#navBtn.on{position:fixed}
|
||||
#navBtn.on span:before{top:0;right:-4px;transform:rotate(45deg)}
|
||||
#navBtn.on span:after{top:0;right:-4px;width:30px;transform:rotate(-45deg);background-color:#222}
|
||||
#navWrap{display:none;position:fixed;left:50%;top:0;z-index:4;-webkit-transform:translateX(-50%);transform:translateX(-50%);max-width:768px;width:100%;height:100%;background-color:rgba(0,0,0,.7)}
|
||||
#navWrap .inner{overflow-y:scroll;opacity:0;position:fixed;right:-40px;top:0;z-index:6;min-width:300px;width:75%;height:100%;padding:60px 0;background-color:#fff;-webkit-transition:all .1s;transition:all .1s}
|
||||
#navWrap.on .inner{opacity:1;right:0;-webkit-transition:all .4s;transition:all .4s}
|
||||
#navWrap .inner:before, #navWrap .inner:after{opacity:0;display:block;position:fixed;top:0;right:-40px;z-index:1;content:"";min-width:300px;width:70%;height:60px;background-color:#fff;-webkit-transition:all .1s;transition:all .1s}
|
||||
#navWrap .inner:after{top:auto;bottom:0}
|
||||
#navWrap.on .inner:before, #navWrap.on .inner:after{opacity:1;right:0;-webkit-transition:all .4s;transition:all .4s}
|
||||
#navWrap .inner .copy{position:fixed;right:0;bottom:15px;z-index:2;min-width:300px;width:70%;font-size:12px;text-align:center;color:#888}
|
||||
|
||||
/* 대분류 */
|
||||
#mo_hd .lnb .bmenu{display:block;position:relative;width:100%;height:52px;padding:0 20px;border:none;border-bottom:1px solid #ddd;background:none;font-size:16px;line-height:52px;color:#222;text-align:left;font-family:'notokr-medium'}
|
||||
#mo_hd .lnb .bmenu:after{float:right;content:"\f107";font-family:'fontawesome'}
|
||||
#mo_hd .lnb .bmenu.on:after{content:"\f106"}
|
||||
#mo_hd .lnb .mn_empty{line-height:100px;text-align:center}
|
||||
|
||||
/* 소분류 */
|
||||
#mo_hd .smenu{display:none;padding:15px 20px;border-bottom:1px solid #ddd;background-color:#f2f3f5}
|
||||
#mo_hd .smenu li a{font-size:14px;color:#777}
|
||||
|
||||
/* 스크롤 메뉴 */
|
||||
#roll_mn{position:relative;width:100%;padding-left:15px;overflow-x:scroll}
|
||||
#roll_mn ul{display:table;width:100%;padding-right:50px}
|
||||
#roll_mn ul li{display:table-cell;position:relative;padding-right:10px;white-space:nowrap}
|
||||
#roll_mn ul li+li{padding:0 10px}
|
||||
#roll_mn ul li a{display:block;position:relative;padding-bottom:10px;font-size:15px;color:#222;font-family:'notokr-medium'}
|
||||
#roll_mn ul li.on:after{display:block;content:"";position:absolute;left:0;bottom:0;z-index:3;width:calc(100% - 10px);height:4px;background-color:#222}
|
||||
#roll_mn ul li+li.on:after{left:10px;width:calc(100% - 20px)}
|
||||
/* ----------------- head 끝 [e] */
|
||||
|
||||
/* ----------------- index 시작 [s] */
|
||||
#mo_container{position:relative}
|
||||
#mo_section{position:relative;font-size:14px;color:#777;word-break:keep-all;letter-spacing:-.3px;line-height:1.8;font-family:'notokr-regular'}
|
||||
|
||||
/* 인사말 */
|
||||
#matc01{padding:25px 15px}
|
||||
#matc01 p{margin-bottom:8px;font-size:24px;font-weight:700;color:#222;letter-spacing:0;font-family:'Poppins'}
|
||||
#matc01 span{display:block;margin-top:12px;font-size:13px;color:#222;font-family:'notokr-medium'}
|
||||
|
||||
/* 메뉴버튼 */
|
||||
#matc02{padding:15px;background-color:#f2f3f5}
|
||||
#matc02 ul{padding:2px 0 0 2px}
|
||||
#matc02 ul:after{display:block;content:"";visibility:hidden;clear:both}
|
||||
#matc02 ul li{float:left;position:relative;width:50%;height:52px;margin:-1px 0 0 -1px;border:1px solid #d1d1d1;font-size:15px;line-height:51px;background-color:#fff;font-family:'notokr-medium'}
|
||||
#matc02 ul li:before{display:block;content:"";position:absolute;left:12px;top:50%;width:4px;height:4px;margin-top:-2px;background-color:#222}
|
||||
#matc02 ul li a{display:block;padding-left:25px;color:#222}
|
||||
#matc02 ul li.mn_empty{width:100%;text-align:center}
|
||||
#matc02 ul li.mn_empty:before{display:none}
|
||||
@media (max-width:320px){
|
||||
#matc02 ul li{font-size:14px}
|
||||
#matc02 ul li:before{left:10px;width:2px;height:2px;margin-top:-1px}
|
||||
#matc02 ul li a{padding-left:18px}
|
||||
}
|
||||
|
||||
/* 최신글 */
|
||||
#matc03{padding:25px 15px 0}
|
||||
#matc03 .tit{position:relative;margin-bottom:5px;padding-bottom:5px;border-bottom:1px solid #d1d1d1;font-size:24px;font-weight:700;color:#222;letter-spacing:0;font-family:'Poppins'}
|
||||
#matc03 .tit a{float:right;padding:15px 0 0 0;font-size:12px}
|
||||
#matc03 .tit:after{position:absolute;content:"";position:absolute;right:0;bottom:-1px;width:65px;height:1px;background-color:#555}
|
||||
#matc03 ul li{padding:20px 0;line-height:1}
|
||||
#matc03 ul li+li{border-top:1px dotted #ccc}
|
||||
#matc03 ul li p{overflow:hidden;margin-bottom:10px;font-size:15px;text-overflow:ellipsis;white-space:nowrap}
|
||||
#matc03 ul li p:before{display:inline-block;vertical-align:4px;content:"";width:3px;height:3px;margin-right:5px;background-color:#222}
|
||||
#matc03 ul li span{padding-left:10px;font-size:13px;letter-spacing:0;color:#777}
|
||||
#matc03 ul li em{display:inline-block;vertical-align:2px;width:14px;height:14px;margin-left:5px;border-radius:2px;font-size:10px;font-weight:600;color:#fff;text-align:center;line-height:14px;font-style:normal;background-color:#0065c7;font-family:'Poppins'}
|
||||
|
||||
/* 버튼영역 */
|
||||
#matc04{padding:15px}
|
||||
#matc04 .btns{overflow:hidden}
|
||||
#matc04 .row2 a{width:50%}
|
||||
#matc04 a{float:left;display:block;width:100%;height:55px;font-size:17px;line-height:55px;color:#fff;text-align:center;background-color:#0065c7;font-family:'notokr-bold'}
|
||||
#matc04 a.tel{font-size:18px;font-weight:700;letter-spacing:0;font-family:'Poppins'}
|
||||
#matc04 a i{padding-right:5px;font-size:18px}
|
||||
#matc04 a.kakao{font-weight:normal;color:#402325;background-color:#ffe500}
|
||||
/* ----------------- index 끝 [e] */
|
||||
|
||||
/* ----------------- content 시작 [s] */
|
||||
#mo_cont_tit{padding:12px 0;border-top:1px solid #d1d1d1;border-bottom:1px solid #eee;font-size:16px;letter-spacing:-.3px;color:#222;text-align:center;font-family:'notokr-medium'}
|
||||
#mo_content{min-height:200px}
|
||||
/* ----------------- content 끝 [e] */
|
||||
|
||||
/* ----------------- tail 시작 [s] */
|
||||
#fix_tel{opacity:0;display:block;position:fixed;right:15px;bottom:20px;width:65px;height:65px;margin-right:-10px;border-radius:50%;font-size:30px;text-align:center;line-height:65px;color:#fff;background-color:#0077ea; box-shadow:5px 5px 5px rgba(0,0,0,.2);-webkit-transition:all .2s;transition:all .2s}
|
||||
#fix_tel.active{opacity:1;margin-right:0}
|
||||
#mo_ft{margin-top:20px;font-size:13px;color:#666;word-break:keep-all;letter-spacing:-.3px;line-height:1.8;text-align:center;background-color:#222;font-family:'notokr-regular'}
|
||||
#mo_ft ul{padding:35px 0 20px}
|
||||
#mo_ft ul li{display:inline-block}
|
||||
#mo_ft ul li+li:before{display:inline-block;content:"";width:1px;height:10px;margin:0 10px;background-color:#555}
|
||||
#mo_ft ul li a{font-size:13px;color:#aaa}
|
||||
#mo_ft .inner{padding:0 15px}
|
||||
#mo_ft .copy{padding:15px 0;margin-top:25px;background-color:#111}
|
||||
/* ----------------- tail 끝 [e] */
|
||||
BIN
src/main/resources/static/css/font-awesome/fonts/FontAwesome.otf
Normal file
|
After Width: | Height: | Size: 434 KiB |
34
src/main/resources/static/css/font-awesome/less/animated.less
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// Animated Icons
|
||||
// --------------------------
|
||||
|
||||
.@{fa-css-prefix}-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.@{fa-css-prefix}-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
25
src/main/resources/static/css/font-awesome/less/bordered-pulled.less
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
// Bordered & Pulled
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid .08em @fa-border-color;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.@{fa-css-prefix}-pull-left { float: left; }
|
||||
.@{fa-css-prefix}-pull-right { float: right; }
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
&.@{fa-css-prefix}-pull-left { margin-right: .3em; }
|
||||
&.@{fa-css-prefix}-pull-right { margin-left: .3em; }
|
||||
}
|
||||
|
||||
/* Deprecated as of 4.4.0 */
|
||||
.pull-right { float: right; }
|
||||
.pull-left { float: left; }
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
&.pull-left { margin-right: .3em; }
|
||||
&.pull-right { margin-left: .3em; }
|
||||
}
|
||||
12
src/main/resources/static/css/font-awesome/less/core.less
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
// Base Class Definition
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
display: inline-block;
|
||||
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
6
src/main/resources/static/css/font-awesome/less/fixed-width.less
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
// Fixed Width Icons
|
||||
// -------------------------
|
||||
.@{fa-css-prefix}-fw {
|
||||
width: (18em / 14);
|
||||
text-align: center;
|
||||
}
|
||||
18
src/main/resources/static/css/font-awesome/less/font-awesome.less
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
/*!
|
||||
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
*/
|
||||
|
||||
@import "variables.less";
|
||||
@import "mixins.less";
|
||||
@import "path.less";
|
||||
@import "core.less";
|
||||
@import "larger.less";
|
||||
@import "fixed-width.less";
|
||||
@import "list.less";
|
||||
@import "bordered-pulled.less";
|
||||
@import "animated.less";
|
||||
@import "rotated-flipped.less";
|
||||
@import "stacked.less";
|
||||
@import "icons.less";
|
||||
@import "screen-reader.less";
|
||||
789
src/main/resources/static/css/font-awesome/less/icons.less
vendored
Normal file
@@ -0,0 +1,789 @@
|
||||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||||
readers do not read off random characters that represent icons */
|
||||
|
||||
.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }
|
||||
.@{fa-css-prefix}-music:before { content: @fa-var-music; }
|
||||
.@{fa-css-prefix}-search:before { content: @fa-var-search; }
|
||||
.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }
|
||||
.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }
|
||||
.@{fa-css-prefix}-star:before { content: @fa-var-star; }
|
||||
.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }
|
||||
.@{fa-css-prefix}-user:before { content: @fa-var-user; }
|
||||
.@{fa-css-prefix}-film:before { content: @fa-var-film; }
|
||||
.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }
|
||||
.@{fa-css-prefix}-th:before { content: @fa-var-th; }
|
||||
.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }
|
||||
.@{fa-css-prefix}-check:before { content: @fa-var-check; }
|
||||
.@{fa-css-prefix}-remove:before,
|
||||
.@{fa-css-prefix}-close:before,
|
||||
.@{fa-css-prefix}-times:before { content: @fa-var-times; }
|
||||
.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }
|
||||
.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }
|
||||
.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }
|
||||
.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }
|
||||
.@{fa-css-prefix}-gear:before,
|
||||
.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }
|
||||
.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }
|
||||
.@{fa-css-prefix}-home:before { content: @fa-var-home; }
|
||||
.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }
|
||||
.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }
|
||||
.@{fa-css-prefix}-road:before { content: @fa-var-road; }
|
||||
.@{fa-css-prefix}-download:before { content: @fa-var-download; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }
|
||||
.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }
|
||||
.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }
|
||||
.@{fa-css-prefix}-rotate-right:before,
|
||||
.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }
|
||||
.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }
|
||||
.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }
|
||||
.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }
|
||||
.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }
|
||||
.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }
|
||||
.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }
|
||||
.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }
|
||||
.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }
|
||||
.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }
|
||||
.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }
|
||||
.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }
|
||||
.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }
|
||||
.@{fa-css-prefix}-book:before { content: @fa-var-book; }
|
||||
.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }
|
||||
.@{fa-css-prefix}-print:before { content: @fa-var-print; }
|
||||
.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }
|
||||
.@{fa-css-prefix}-font:before { content: @fa-var-font; }
|
||||
.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }
|
||||
.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }
|
||||
.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }
|
||||
.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }
|
||||
.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }
|
||||
.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }
|
||||
.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }
|
||||
.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }
|
||||
.@{fa-css-prefix}-list:before { content: @fa-var-list; }
|
||||
.@{fa-css-prefix}-dedent:before,
|
||||
.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }
|
||||
.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }
|
||||
.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }
|
||||
.@{fa-css-prefix}-photo:before,
|
||||
.@{fa-css-prefix}-image:before,
|
||||
.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }
|
||||
.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }
|
||||
.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }
|
||||
.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }
|
||||
.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }
|
||||
.@{fa-css-prefix}-edit:before,
|
||||
.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }
|
||||
.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }
|
||||
.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }
|
||||
.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }
|
||||
.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }
|
||||
.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }
|
||||
.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }
|
||||
.@{fa-css-prefix}-play:before { content: @fa-var-play; }
|
||||
.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }
|
||||
.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }
|
||||
.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }
|
||||
.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }
|
||||
.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }
|
||||
.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }
|
||||
.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }
|
||||
.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }
|
||||
.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }
|
||||
.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }
|
||||
.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }
|
||||
.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }
|
||||
.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }
|
||||
.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }
|
||||
.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }
|
||||
.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }
|
||||
.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }
|
||||
.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }
|
||||
.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }
|
||||
.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }
|
||||
.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }
|
||||
.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }
|
||||
.@{fa-css-prefix}-mail-forward:before,
|
||||
.@{fa-css-prefix}-share:before { content: @fa-var-share; }
|
||||
.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }
|
||||
.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }
|
||||
.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }
|
||||
.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }
|
||||
.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }
|
||||
.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }
|
||||
.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }
|
||||
.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }
|
||||
.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }
|
||||
.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }
|
||||
.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }
|
||||
.@{fa-css-prefix}-warning:before,
|
||||
.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }
|
||||
.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }
|
||||
.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }
|
||||
.@{fa-css-prefix}-random:before { content: @fa-var-random; }
|
||||
.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }
|
||||
.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }
|
||||
.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }
|
||||
.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }
|
||||
.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }
|
||||
.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }
|
||||
.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }
|
||||
.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }
|
||||
.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }
|
||||
.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }
|
||||
.@{fa-css-prefix}-bar-chart-o:before,
|
||||
.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }
|
||||
.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }
|
||||
.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }
|
||||
.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }
|
||||
.@{fa-css-prefix}-key:before { content: @fa-var-key; }
|
||||
.@{fa-css-prefix}-gears:before,
|
||||
.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }
|
||||
.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }
|
||||
.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }
|
||||
.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }
|
||||
.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }
|
||||
.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }
|
||||
.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }
|
||||
.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }
|
||||
.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }
|
||||
.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }
|
||||
.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }
|
||||
.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }
|
||||
.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }
|
||||
.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }
|
||||
.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }
|
||||
.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }
|
||||
.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }
|
||||
.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }
|
||||
.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }
|
||||
.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }
|
||||
.@{fa-css-prefix}-facebook-f:before,
|
||||
.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }
|
||||
.@{fa-css-prefix}-github:before { content: @fa-var-github; }
|
||||
.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }
|
||||
.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }
|
||||
.@{fa-css-prefix}-feed:before,
|
||||
.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }
|
||||
.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }
|
||||
.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }
|
||||
.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }
|
||||
.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }
|
||||
.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }
|
||||
.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }
|
||||
.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }
|
||||
.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }
|
||||
.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }
|
||||
.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }
|
||||
.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }
|
||||
.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }
|
||||
.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }
|
||||
.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }
|
||||
.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }
|
||||
.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }
|
||||
.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }
|
||||
.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }
|
||||
.@{fa-css-prefix}-group:before,
|
||||
.@{fa-css-prefix}-users:before { content: @fa-var-users; }
|
||||
.@{fa-css-prefix}-chain:before,
|
||||
.@{fa-css-prefix}-link:before { content: @fa-var-link; }
|
||||
.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }
|
||||
.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }
|
||||
.@{fa-css-prefix}-cut:before,
|
||||
.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }
|
||||
.@{fa-css-prefix}-copy:before,
|
||||
.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }
|
||||
.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }
|
||||
.@{fa-css-prefix}-save:before,
|
||||
.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }
|
||||
.@{fa-css-prefix}-square:before { content: @fa-var-square; }
|
||||
.@{fa-css-prefix}-navicon:before,
|
||||
.@{fa-css-prefix}-reorder:before,
|
||||
.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }
|
||||
.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }
|
||||
.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }
|
||||
.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }
|
||||
.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }
|
||||
.@{fa-css-prefix}-table:before { content: @fa-var-table; }
|
||||
.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }
|
||||
.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }
|
||||
.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }
|
||||
.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }
|
||||
.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }
|
||||
.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }
|
||||
.@{fa-css-prefix}-money:before { content: @fa-var-money; }
|
||||
.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }
|
||||
.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }
|
||||
.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }
|
||||
.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }
|
||||
.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }
|
||||
.@{fa-css-prefix}-unsorted:before,
|
||||
.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }
|
||||
.@{fa-css-prefix}-sort-down:before,
|
||||
.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }
|
||||
.@{fa-css-prefix}-sort-up:before,
|
||||
.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }
|
||||
.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }
|
||||
.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }
|
||||
.@{fa-css-prefix}-rotate-left:before,
|
||||
.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }
|
||||
.@{fa-css-prefix}-legal:before,
|
||||
.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }
|
||||
.@{fa-css-prefix}-dashboard:before,
|
||||
.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }
|
||||
.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }
|
||||
.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }
|
||||
.@{fa-css-prefix}-flash:before,
|
||||
.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }
|
||||
.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }
|
||||
.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }
|
||||
.@{fa-css-prefix}-paste:before,
|
||||
.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }
|
||||
.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }
|
||||
.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }
|
||||
.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }
|
||||
.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }
|
||||
.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }
|
||||
.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }
|
||||
.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }
|
||||
.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }
|
||||
.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }
|
||||
.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }
|
||||
.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }
|
||||
.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }
|
||||
.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }
|
||||
.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }
|
||||
.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }
|
||||
.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }
|
||||
.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }
|
||||
.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }
|
||||
.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }
|
||||
.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }
|
||||
.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }
|
||||
.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }
|
||||
.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }
|
||||
.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }
|
||||
.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }
|
||||
.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }
|
||||
.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }
|
||||
.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }
|
||||
.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }
|
||||
.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }
|
||||
.@{fa-css-prefix}-mobile-phone:before,
|
||||
.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }
|
||||
.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }
|
||||
.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }
|
||||
.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }
|
||||
.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }
|
||||
.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }
|
||||
.@{fa-css-prefix}-mail-reply:before,
|
||||
.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }
|
||||
.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }
|
||||
.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }
|
||||
.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }
|
||||
.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }
|
||||
.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }
|
||||
.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }
|
||||
.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }
|
||||
.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }
|
||||
.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }
|
||||
.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }
|
||||
.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }
|
||||
.@{fa-css-prefix}-code:before { content: @fa-var-code; }
|
||||
.@{fa-css-prefix}-mail-reply-all:before,
|
||||
.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }
|
||||
.@{fa-css-prefix}-star-half-empty:before,
|
||||
.@{fa-css-prefix}-star-half-full:before,
|
||||
.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }
|
||||
.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }
|
||||
.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }
|
||||
.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }
|
||||
.@{fa-css-prefix}-unlink:before,
|
||||
.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }
|
||||
.@{fa-css-prefix}-question:before { content: @fa-var-question; }
|
||||
.@{fa-css-prefix}-info:before { content: @fa-var-info; }
|
||||
.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }
|
||||
.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }
|
||||
.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }
|
||||
.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }
|
||||
.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }
|
||||
.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }
|
||||
.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }
|
||||
.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }
|
||||
.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }
|
||||
.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }
|
||||
.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }
|
||||
.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }
|
||||
.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }
|
||||
.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }
|
||||
.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }
|
||||
.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }
|
||||
.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }
|
||||
.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }
|
||||
.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }
|
||||
.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }
|
||||
.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }
|
||||
.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }
|
||||
.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }
|
||||
.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }
|
||||
.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }
|
||||
.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }
|
||||
.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }
|
||||
.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }
|
||||
.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }
|
||||
.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }
|
||||
.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }
|
||||
.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }
|
||||
.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }
|
||||
.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }
|
||||
.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }
|
||||
.@{fa-css-prefix}-toggle-down:before,
|
||||
.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }
|
||||
.@{fa-css-prefix}-toggle-up:before,
|
||||
.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }
|
||||
.@{fa-css-prefix}-toggle-right:before,
|
||||
.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }
|
||||
.@{fa-css-prefix}-euro:before,
|
||||
.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }
|
||||
.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }
|
||||
.@{fa-css-prefix}-dollar:before,
|
||||
.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }
|
||||
.@{fa-css-prefix}-rupee:before,
|
||||
.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }
|
||||
.@{fa-css-prefix}-cny:before,
|
||||
.@{fa-css-prefix}-rmb:before,
|
||||
.@{fa-css-prefix}-yen:before,
|
||||
.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }
|
||||
.@{fa-css-prefix}-ruble:before,
|
||||
.@{fa-css-prefix}-rouble:before,
|
||||
.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }
|
||||
.@{fa-css-prefix}-won:before,
|
||||
.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }
|
||||
.@{fa-css-prefix}-bitcoin:before,
|
||||
.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }
|
||||
.@{fa-css-prefix}-file:before { content: @fa-var-file; }
|
||||
.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }
|
||||
.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }
|
||||
.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }
|
||||
.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }
|
||||
.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }
|
||||
.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }
|
||||
.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }
|
||||
.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }
|
||||
.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }
|
||||
.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }
|
||||
.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }
|
||||
.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }
|
||||
.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }
|
||||
.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }
|
||||
.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }
|
||||
.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }
|
||||
.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }
|
||||
.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }
|
||||
.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }
|
||||
.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }
|
||||
.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }
|
||||
.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }
|
||||
.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }
|
||||
.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }
|
||||
.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }
|
||||
.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }
|
||||
.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }
|
||||
.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }
|
||||
.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }
|
||||
.@{fa-css-prefix}-android:before { content: @fa-var-android; }
|
||||
.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }
|
||||
.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }
|
||||
.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }
|
||||
.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }
|
||||
.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }
|
||||
.@{fa-css-prefix}-female:before { content: @fa-var-female; }
|
||||
.@{fa-css-prefix}-male:before { content: @fa-var-male; }
|
||||
.@{fa-css-prefix}-gittip:before,
|
||||
.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }
|
||||
.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }
|
||||
.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }
|
||||
.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }
|
||||
.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }
|
||||
.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }
|
||||
.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }
|
||||
.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }
|
||||
.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }
|
||||
.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }
|
||||
.@{fa-css-prefix}-toggle-left:before,
|
||||
.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }
|
||||
.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }
|
||||
.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }
|
||||
.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }
|
||||
.@{fa-css-prefix}-turkish-lira:before,
|
||||
.@{fa-css-prefix}-try:before { content: @fa-var-try; }
|
||||
.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }
|
||||
.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }
|
||||
.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }
|
||||
.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }
|
||||
.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }
|
||||
.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }
|
||||
.@{fa-css-prefix}-institution:before,
|
||||
.@{fa-css-prefix}-bank:before,
|
||||
.@{fa-css-prefix}-university:before { content: @fa-var-university; }
|
||||
.@{fa-css-prefix}-mortar-board:before,
|
||||
.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }
|
||||
.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }
|
||||
.@{fa-css-prefix}-google:before { content: @fa-var-google; }
|
||||
.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }
|
||||
.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }
|
||||
.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }
|
||||
.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }
|
||||
.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }
|
||||
.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }
|
||||
.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }
|
||||
.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }
|
||||
.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }
|
||||
.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }
|
||||
.@{fa-css-prefix}-language:before { content: @fa-var-language; }
|
||||
.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }
|
||||
.@{fa-css-prefix}-building:before { content: @fa-var-building; }
|
||||
.@{fa-css-prefix}-child:before { content: @fa-var-child; }
|
||||
.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }
|
||||
.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }
|
||||
.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }
|
||||
.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }
|
||||
.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }
|
||||
.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }
|
||||
.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }
|
||||
.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }
|
||||
.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }
|
||||
.@{fa-css-prefix}-automobile:before,
|
||||
.@{fa-css-prefix}-car:before { content: @fa-var-car; }
|
||||
.@{fa-css-prefix}-cab:before,
|
||||
.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }
|
||||
.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }
|
||||
.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }
|
||||
.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }
|
||||
.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }
|
||||
.@{fa-css-prefix}-database:before { content: @fa-var-database; }
|
||||
.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }
|
||||
.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }
|
||||
.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }
|
||||
.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }
|
||||
.@{fa-css-prefix}-file-photo-o:before,
|
||||
.@{fa-css-prefix}-file-picture-o:before,
|
||||
.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }
|
||||
.@{fa-css-prefix}-file-zip-o:before,
|
||||
.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }
|
||||
.@{fa-css-prefix}-file-sound-o:before,
|
||||
.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }
|
||||
.@{fa-css-prefix}-file-movie-o:before,
|
||||
.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }
|
||||
.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }
|
||||
.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }
|
||||
.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }
|
||||
.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }
|
||||
.@{fa-css-prefix}-life-bouy:before,
|
||||
.@{fa-css-prefix}-life-buoy:before,
|
||||
.@{fa-css-prefix}-life-saver:before,
|
||||
.@{fa-css-prefix}-support:before,
|
||||
.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }
|
||||
.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }
|
||||
.@{fa-css-prefix}-ra:before,
|
||||
.@{fa-css-prefix}-resistance:before,
|
||||
.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }
|
||||
.@{fa-css-prefix}-ge:before,
|
||||
.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }
|
||||
.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }
|
||||
.@{fa-css-prefix}-git:before { content: @fa-var-git; }
|
||||
.@{fa-css-prefix}-y-combinator-square:before,
|
||||
.@{fa-css-prefix}-yc-square:before,
|
||||
.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }
|
||||
.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }
|
||||
.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }
|
||||
.@{fa-css-prefix}-wechat:before,
|
||||
.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }
|
||||
.@{fa-css-prefix}-send:before,
|
||||
.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }
|
||||
.@{fa-css-prefix}-send-o:before,
|
||||
.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }
|
||||
.@{fa-css-prefix}-history:before { content: @fa-var-history; }
|
||||
.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }
|
||||
.@{fa-css-prefix}-header:before { content: @fa-var-header; }
|
||||
.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }
|
||||
.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }
|
||||
.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }
|
||||
.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }
|
||||
.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }
|
||||
.@{fa-css-prefix}-soccer-ball-o:before,
|
||||
.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }
|
||||
.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }
|
||||
.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }
|
||||
.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }
|
||||
.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }
|
||||
.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }
|
||||
.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }
|
||||
.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }
|
||||
.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }
|
||||
.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }
|
||||
.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }
|
||||
.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }
|
||||
.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }
|
||||
.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }
|
||||
.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }
|
||||
.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }
|
||||
.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }
|
||||
.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }
|
||||
.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }
|
||||
.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }
|
||||
.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }
|
||||
.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }
|
||||
.@{fa-css-prefix}-at:before { content: @fa-var-at; }
|
||||
.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }
|
||||
.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }
|
||||
.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }
|
||||
.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }
|
||||
.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }
|
||||
.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }
|
||||
.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }
|
||||
.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }
|
||||
.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }
|
||||
.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }
|
||||
.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }
|
||||
.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }
|
||||
.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }
|
||||
.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }
|
||||
.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }
|
||||
.@{fa-css-prefix}-shekel:before,
|
||||
.@{fa-css-prefix}-sheqel:before,
|
||||
.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }
|
||||
.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }
|
||||
.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }
|
||||
.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }
|
||||
.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }
|
||||
.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }
|
||||
.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }
|
||||
.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }
|
||||
.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }
|
||||
.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }
|
||||
.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }
|
||||
.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }
|
||||
.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }
|
||||
.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }
|
||||
.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }
|
||||
.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }
|
||||
.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }
|
||||
.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }
|
||||
.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }
|
||||
.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }
|
||||
.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }
|
||||
.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }
|
||||
.@{fa-css-prefix}-intersex:before,
|
||||
.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }
|
||||
.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }
|
||||
.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }
|
||||
.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }
|
||||
.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }
|
||||
.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }
|
||||
.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }
|
||||
.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }
|
||||
.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }
|
||||
.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }
|
||||
.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }
|
||||
.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }
|
||||
.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }
|
||||
.@{fa-css-prefix}-server:before { content: @fa-var-server; }
|
||||
.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }
|
||||
.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }
|
||||
.@{fa-css-prefix}-hotel:before,
|
||||
.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }
|
||||
.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }
|
||||
.@{fa-css-prefix}-train:before { content: @fa-var-train; }
|
||||
.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }
|
||||
.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }
|
||||
.@{fa-css-prefix}-yc:before,
|
||||
.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }
|
||||
.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }
|
||||
.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }
|
||||
.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }
|
||||
.@{fa-css-prefix}-battery-4:before,
|
||||
.@{fa-css-prefix}-battery:before,
|
||||
.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }
|
||||
.@{fa-css-prefix}-battery-3:before,
|
||||
.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }
|
||||
.@{fa-css-prefix}-battery-2:before,
|
||||
.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }
|
||||
.@{fa-css-prefix}-battery-1:before,
|
||||
.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }
|
||||
.@{fa-css-prefix}-battery-0:before,
|
||||
.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }
|
||||
.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }
|
||||
.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }
|
||||
.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }
|
||||
.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }
|
||||
.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }
|
||||
.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }
|
||||
.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }
|
||||
.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }
|
||||
.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }
|
||||
.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }
|
||||
.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }
|
||||
.@{fa-css-prefix}-hourglass-1:before,
|
||||
.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }
|
||||
.@{fa-css-prefix}-hourglass-2:before,
|
||||
.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }
|
||||
.@{fa-css-prefix}-hourglass-3:before,
|
||||
.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }
|
||||
.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }
|
||||
.@{fa-css-prefix}-hand-grab-o:before,
|
||||
.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }
|
||||
.@{fa-css-prefix}-hand-stop-o:before,
|
||||
.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }
|
||||
.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }
|
||||
.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }
|
||||
.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }
|
||||
.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }
|
||||
.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }
|
||||
.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }
|
||||
.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }
|
||||
.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }
|
||||
.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }
|
||||
.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }
|
||||
.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }
|
||||
.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }
|
||||
.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }
|
||||
.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }
|
||||
.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }
|
||||
.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }
|
||||
.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }
|
||||
.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }
|
||||
.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }
|
||||
.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }
|
||||
.@{fa-css-prefix}-tv:before,
|
||||
.@{fa-css-prefix}-television:before { content: @fa-var-television; }
|
||||
.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }
|
||||
.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }
|
||||
.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }
|
||||
.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }
|
||||
.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }
|
||||
.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }
|
||||
.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }
|
||||
.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }
|
||||
.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }
|
||||
.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }
|
||||
.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }
|
||||
.@{fa-css-prefix}-map:before { content: @fa-var-map; }
|
||||
.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }
|
||||
.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }
|
||||
.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }
|
||||
.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }
|
||||
.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }
|
||||
.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }
|
||||
.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }
|
||||
.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }
|
||||
.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }
|
||||
.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }
|
||||
.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }
|
||||
.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }
|
||||
.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }
|
||||
.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }
|
||||
.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }
|
||||
.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }
|
||||
.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }
|
||||
.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }
|
||||
.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }
|
||||
.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }
|
||||
.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }
|
||||
.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }
|
||||
.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }
|
||||
.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }
|
||||
.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }
|
||||
.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }
|
||||
.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }
|
||||
.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }
|
||||
.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }
|
||||
.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }
|
||||
.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }
|
||||
.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }
|
||||
.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
|
||||
.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
|
||||
.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }
|
||||
.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }
|
||||
.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }
|
||||
.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }
|
||||
.@{fa-css-prefix}-asl-interpreting:before,
|
||||
.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }
|
||||
.@{fa-css-prefix}-deafness:before,
|
||||
.@{fa-css-prefix}-hard-of-hearing:before,
|
||||
.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }
|
||||
.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }
|
||||
.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }
|
||||
.@{fa-css-prefix}-signing:before,
|
||||
.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }
|
||||
.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }
|
||||
.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }
|
||||
.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }
|
||||
.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }
|
||||
.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }
|
||||
.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }
|
||||
.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }
|
||||
.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }
|
||||
.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }
|
||||
.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }
|
||||
.@{fa-css-prefix}-google-plus-circle:before,
|
||||
.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }
|
||||
.@{fa-css-prefix}-fa:before,
|
||||
.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }
|
||||
.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }
|
||||
.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }
|
||||
.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }
|
||||
.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }
|
||||
.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }
|
||||
.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }
|
||||
.@{fa-css-prefix}-vcard:before,
|
||||
.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }
|
||||
.@{fa-css-prefix}-vcard-o:before,
|
||||
.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }
|
||||
.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }
|
||||
.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }
|
||||
.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }
|
||||
.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }
|
||||
.@{fa-css-prefix}-drivers-license:before,
|
||||
.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }
|
||||
.@{fa-css-prefix}-drivers-license-o:before,
|
||||
.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }
|
||||
.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }
|
||||
.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }
|
||||
.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }
|
||||
.@{fa-css-prefix}-thermometer-4:before,
|
||||
.@{fa-css-prefix}-thermometer:before,
|
||||
.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }
|
||||
.@{fa-css-prefix}-thermometer-3:before,
|
||||
.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }
|
||||
.@{fa-css-prefix}-thermometer-2:before,
|
||||
.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }
|
||||
.@{fa-css-prefix}-thermometer-1:before,
|
||||
.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }
|
||||
.@{fa-css-prefix}-thermometer-0:before,
|
||||
.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }
|
||||
.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }
|
||||
.@{fa-css-prefix}-bathtub:before,
|
||||
.@{fa-css-prefix}-s15:before,
|
||||
.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }
|
||||
.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }
|
||||
.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }
|
||||
.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }
|
||||
.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }
|
||||
.@{fa-css-prefix}-times-rectangle:before,
|
||||
.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }
|
||||
.@{fa-css-prefix}-times-rectangle-o:before,
|
||||
.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }
|
||||
.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }
|
||||
.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }
|
||||
.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }
|
||||
.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }
|
||||
.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }
|
||||
.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }
|
||||
.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }
|
||||
.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }
|
||||
.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }
|
||||
.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }
|
||||
.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }
|
||||
13
src/main/resources/static/css/font-awesome/less/larger.less
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
// Icon Sizes
|
||||
// -------------------------
|
||||
|
||||
/* makes the font 33% larger relative to the icon container */
|
||||
.@{fa-css-prefix}-lg {
|
||||
font-size: (4em / 3);
|
||||
line-height: (3em / 4);
|
||||
vertical-align: -15%;
|
||||
}
|
||||
.@{fa-css-prefix}-2x { font-size: 2em; }
|
||||
.@{fa-css-prefix}-3x { font-size: 3em; }
|
||||
.@{fa-css-prefix}-4x { font-size: 4em; }
|
||||
.@{fa-css-prefix}-5x { font-size: 5em; }
|
||||
19
src/main/resources/static/css/font-awesome/less/list.less
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// List Icons
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-ul {
|
||||
padding-left: 0;
|
||||
margin-left: @fa-li-width;
|
||||
list-style-type: none;
|
||||
> li { position: relative; }
|
||||
}
|
||||
.@{fa-css-prefix}-li {
|
||||
position: absolute;
|
||||
left: -@fa-li-width;
|
||||
width: @fa-li-width;
|
||||
top: (2em / 14);
|
||||
text-align: center;
|
||||
&.@{fa-css-prefix}-lg {
|
||||
left: (-@fa-li-width + (4em / 14));
|
||||
}
|
||||
}
|
||||
60
src/main/resources/static/css/font-awesome/less/mixins.less
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
// Mixins
|
||||
// --------------------------
|
||||
|
||||
.fa-icon() {
|
||||
display: inline-block;
|
||||
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
|
||||
.fa-icon-rotate(@degrees, @rotation) {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
|
||||
-webkit-transform: rotate(@degrees);
|
||||
-ms-transform: rotate(@degrees);
|
||||
transform: rotate(@degrees);
|
||||
}
|
||||
|
||||
.fa-icon-flip(@horiz, @vert, @rotation) {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
|
||||
-webkit-transform: scale(@horiz, @vert);
|
||||
-ms-transform: scale(@horiz, @vert);
|
||||
transform: scale(@horiz, @vert);
|
||||
}
|
||||
|
||||
|
||||
// Only display content to screen readers. A la Bootstrap 4.
|
||||
//
|
||||
// See: http://a11yproject.com/posts/how-to-hide-content/
|
||||
|
||||
.sr-only() {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0,0,0,0);
|
||||
border: 0;
|
||||
}
|
||||
|
||||
// Use in conjunction with .sr-only to only display content when it's focused.
|
||||
//
|
||||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
||||
//
|
||||
// Credit: HTML5 Boilerplate
|
||||
|
||||
.sr-only-focusable() {
|
||||
&:active,
|
||||
&:focus {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
}
|
||||
}
|
||||
15
src/main/resources/static/css/font-awesome/less/path.less
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/* FONT PATH
|
||||
* -------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: 'FontAwesome';
|
||||
src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
|
||||
src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
|
||||
url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
|
||||
url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
|
||||
url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
|
||||
url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
|
||||
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
20
src/main/resources/static/css/font-awesome/less/rotated-flipped.less
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// Rotated & Flipped Icons
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
|
||||
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
|
||||
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
|
||||
|
||||
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
|
||||
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
|
||||
|
||||
// Hook for IE8-9
|
||||
// -------------------------
|
||||
|
||||
:root .@{fa-css-prefix}-rotate-90,
|
||||
:root .@{fa-css-prefix}-rotate-180,
|
||||
:root .@{fa-css-prefix}-rotate-270,
|
||||
:root .@{fa-css-prefix}-flip-horizontal,
|
||||
:root .@{fa-css-prefix}-flip-vertical {
|
||||
filter: none;
|
||||
}
|
||||
5
src/main/resources/static/css/font-awesome/less/screen-reader.less
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
// Screen Readers
|
||||
// -------------------------
|
||||
|
||||
.sr-only { .sr-only(); }
|
||||
.sr-only-focusable { .sr-only-focusable(); }
|
||||
20
src/main/resources/static/css/font-awesome/less/stacked.less
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// Stacked Icons
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-stack {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.@{fa-css-prefix}-stack-1x { line-height: inherit; }
|
||||
.@{fa-css-prefix}-stack-2x { font-size: 2em; }
|
||||
.@{fa-css-prefix}-inverse { color: @fa-inverse; }
|
||||
800
src/main/resources/static/css/font-awesome/less/variables.less
vendored
Normal file
@@ -0,0 +1,800 @@
|
||||
// Variables
|
||||
// --------------------------
|
||||
|
||||
@fa-font-path: "../fonts";
|
||||
@fa-font-size-base: 14px;
|
||||
@fa-line-height-base: 1;
|
||||
//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly
|
||||
@fa-css-prefix: fa;
|
||||
@fa-version: "4.7.0";
|
||||
@fa-border-color: #eee;
|
||||
@fa-inverse: #fff;
|
||||
@fa-li-width: (30em / 14);
|
||||
|
||||
@fa-var-500px: "\f26e";
|
||||
@fa-var-address-book: "\f2b9";
|
||||
@fa-var-address-book-o: "\f2ba";
|
||||
@fa-var-address-card: "\f2bb";
|
||||
@fa-var-address-card-o: "\f2bc";
|
||||
@fa-var-adjust: "\f042";
|
||||
@fa-var-adn: "\f170";
|
||||
@fa-var-align-center: "\f037";
|
||||
@fa-var-align-justify: "\f039";
|
||||
@fa-var-align-left: "\f036";
|
||||
@fa-var-align-right: "\f038";
|
||||
@fa-var-amazon: "\f270";
|
||||
@fa-var-ambulance: "\f0f9";
|
||||
@fa-var-american-sign-language-interpreting: "\f2a3";
|
||||
@fa-var-anchor: "\f13d";
|
||||
@fa-var-android: "\f17b";
|
||||
@fa-var-angellist: "\f209";
|
||||
@fa-var-angle-double-down: "\f103";
|
||||
@fa-var-angle-double-left: "\f100";
|
||||
@fa-var-angle-double-right: "\f101";
|
||||
@fa-var-angle-double-up: "\f102";
|
||||
@fa-var-angle-down: "\f107";
|
||||
@fa-var-angle-left: "\f104";
|
||||
@fa-var-angle-right: "\f105";
|
||||
@fa-var-angle-up: "\f106";
|
||||
@fa-var-apple: "\f179";
|
||||
@fa-var-archive: "\f187";
|
||||
@fa-var-area-chart: "\f1fe";
|
||||
@fa-var-arrow-circle-down: "\f0ab";
|
||||
@fa-var-arrow-circle-left: "\f0a8";
|
||||
@fa-var-arrow-circle-o-down: "\f01a";
|
||||
@fa-var-arrow-circle-o-left: "\f190";
|
||||
@fa-var-arrow-circle-o-right: "\f18e";
|
||||
@fa-var-arrow-circle-o-up: "\f01b";
|
||||
@fa-var-arrow-circle-right: "\f0a9";
|
||||
@fa-var-arrow-circle-up: "\f0aa";
|
||||
@fa-var-arrow-down: "\f063";
|
||||
@fa-var-arrow-left: "\f060";
|
||||
@fa-var-arrow-right: "\f061";
|
||||
@fa-var-arrow-up: "\f062";
|
||||
@fa-var-arrows: "\f047";
|
||||
@fa-var-arrows-alt: "\f0b2";
|
||||
@fa-var-arrows-h: "\f07e";
|
||||
@fa-var-arrows-v: "\f07d";
|
||||
@fa-var-asl-interpreting: "\f2a3";
|
||||
@fa-var-assistive-listening-systems: "\f2a2";
|
||||
@fa-var-asterisk: "\f069";
|
||||
@fa-var-at: "\f1fa";
|
||||
@fa-var-audio-description: "\f29e";
|
||||
@fa-var-automobile: "\f1b9";
|
||||
@fa-var-backward: "\f04a";
|
||||
@fa-var-balance-scale: "\f24e";
|
||||
@fa-var-ban: "\f05e";
|
||||
@fa-var-bandcamp: "\f2d5";
|
||||
@fa-var-bank: "\f19c";
|
||||
@fa-var-bar-chart: "\f080";
|
||||
@fa-var-bar-chart-o: "\f080";
|
||||
@fa-var-barcode: "\f02a";
|
||||
@fa-var-bars: "\f0c9";
|
||||
@fa-var-bath: "\f2cd";
|
||||
@fa-var-bathtub: "\f2cd";
|
||||
@fa-var-battery: "\f240";
|
||||
@fa-var-battery-0: "\f244";
|
||||
@fa-var-battery-1: "\f243";
|
||||
@fa-var-battery-2: "\f242";
|
||||
@fa-var-battery-3: "\f241";
|
||||
@fa-var-battery-4: "\f240";
|
||||
@fa-var-battery-empty: "\f244";
|
||||
@fa-var-battery-full: "\f240";
|
||||
@fa-var-battery-half: "\f242";
|
||||
@fa-var-battery-quarter: "\f243";
|
||||
@fa-var-battery-three-quarters: "\f241";
|
||||
@fa-var-bed: "\f236";
|
||||
@fa-var-beer: "\f0fc";
|
||||
@fa-var-behance: "\f1b4";
|
||||
@fa-var-behance-square: "\f1b5";
|
||||
@fa-var-bell: "\f0f3";
|
||||
@fa-var-bell-o: "\f0a2";
|
||||
@fa-var-bell-slash: "\f1f6";
|
||||
@fa-var-bell-slash-o: "\f1f7";
|
||||
@fa-var-bicycle: "\f206";
|
||||
@fa-var-binoculars: "\f1e5";
|
||||
@fa-var-birthday-cake: "\f1fd";
|
||||
@fa-var-bitbucket: "\f171";
|
||||
@fa-var-bitbucket-square: "\f172";
|
||||
@fa-var-bitcoin: "\f15a";
|
||||
@fa-var-black-tie: "\f27e";
|
||||
@fa-var-blind: "\f29d";
|
||||
@fa-var-bluetooth: "\f293";
|
||||
@fa-var-bluetooth-b: "\f294";
|
||||
@fa-var-bold: "\f032";
|
||||
@fa-var-bolt: "\f0e7";
|
||||
@fa-var-bomb: "\f1e2";
|
||||
@fa-var-book: "\f02d";
|
||||
@fa-var-bookmark: "\f02e";
|
||||
@fa-var-bookmark-o: "\f097";
|
||||
@fa-var-braille: "\f2a1";
|
||||
@fa-var-briefcase: "\f0b1";
|
||||
@fa-var-btc: "\f15a";
|
||||
@fa-var-bug: "\f188";
|
||||
@fa-var-building: "\f1ad";
|
||||
@fa-var-building-o: "\f0f7";
|
||||
@fa-var-bullhorn: "\f0a1";
|
||||
@fa-var-bullseye: "\f140";
|
||||
@fa-var-bus: "\f207";
|
||||
@fa-var-buysellads: "\f20d";
|
||||
@fa-var-cab: "\f1ba";
|
||||
@fa-var-calculator: "\f1ec";
|
||||
@fa-var-calendar: "\f073";
|
||||
@fa-var-calendar-check-o: "\f274";
|
||||
@fa-var-calendar-minus-o: "\f272";
|
||||
@fa-var-calendar-o: "\f133";
|
||||
@fa-var-calendar-plus-o: "\f271";
|
||||
@fa-var-calendar-times-o: "\f273";
|
||||
@fa-var-camera: "\f030";
|
||||
@fa-var-camera-retro: "\f083";
|
||||
@fa-var-car: "\f1b9";
|
||||
@fa-var-caret-down: "\f0d7";
|
||||
@fa-var-caret-left: "\f0d9";
|
||||
@fa-var-caret-right: "\f0da";
|
||||
@fa-var-caret-square-o-down: "\f150";
|
||||
@fa-var-caret-square-o-left: "\f191";
|
||||
@fa-var-caret-square-o-right: "\f152";
|
||||
@fa-var-caret-square-o-up: "\f151";
|
||||
@fa-var-caret-up: "\f0d8";
|
||||
@fa-var-cart-arrow-down: "\f218";
|
||||
@fa-var-cart-plus: "\f217";
|
||||
@fa-var-cc: "\f20a";
|
||||
@fa-var-cc-amex: "\f1f3";
|
||||
@fa-var-cc-diners-club: "\f24c";
|
||||
@fa-var-cc-discover: "\f1f2";
|
||||
@fa-var-cc-jcb: "\f24b";
|
||||
@fa-var-cc-mastercard: "\f1f1";
|
||||
@fa-var-cc-paypal: "\f1f4";
|
||||
@fa-var-cc-stripe: "\f1f5";
|
||||
@fa-var-cc-visa: "\f1f0";
|
||||
@fa-var-certificate: "\f0a3";
|
||||
@fa-var-chain: "\f0c1";
|
||||
@fa-var-chain-broken: "\f127";
|
||||
@fa-var-check: "\f00c";
|
||||
@fa-var-check-circle: "\f058";
|
||||
@fa-var-check-circle-o: "\f05d";
|
||||
@fa-var-check-square: "\f14a";
|
||||
@fa-var-check-square-o: "\f046";
|
||||
@fa-var-chevron-circle-down: "\f13a";
|
||||
@fa-var-chevron-circle-left: "\f137";
|
||||
@fa-var-chevron-circle-right: "\f138";
|
||||
@fa-var-chevron-circle-up: "\f139";
|
||||
@fa-var-chevron-down: "\f078";
|
||||
@fa-var-chevron-left: "\f053";
|
||||
@fa-var-chevron-right: "\f054";
|
||||
@fa-var-chevron-up: "\f077";
|
||||
@fa-var-child: "\f1ae";
|
||||
@fa-var-chrome: "\f268";
|
||||
@fa-var-circle: "\f111";
|
||||
@fa-var-circle-o: "\f10c";
|
||||
@fa-var-circle-o-notch: "\f1ce";
|
||||
@fa-var-circle-thin: "\f1db";
|
||||
@fa-var-clipboard: "\f0ea";
|
||||
@fa-var-clock-o: "\f017";
|
||||
@fa-var-clone: "\f24d";
|
||||
@fa-var-close: "\f00d";
|
||||
@fa-var-cloud: "\f0c2";
|
||||
@fa-var-cloud-download: "\f0ed";
|
||||
@fa-var-cloud-upload: "\f0ee";
|
||||
@fa-var-cny: "\f157";
|
||||
@fa-var-code: "\f121";
|
||||
@fa-var-code-fork: "\f126";
|
||||
@fa-var-codepen: "\f1cb";
|
||||
@fa-var-codiepie: "\f284";
|
||||
@fa-var-coffee: "\f0f4";
|
||||
@fa-var-cog: "\f013";
|
||||
@fa-var-cogs: "\f085";
|
||||
@fa-var-columns: "\f0db";
|
||||
@fa-var-comment: "\f075";
|
||||
@fa-var-comment-o: "\f0e5";
|
||||
@fa-var-commenting: "\f27a";
|
||||
@fa-var-commenting-o: "\f27b";
|
||||
@fa-var-comments: "\f086";
|
||||
@fa-var-comments-o: "\f0e6";
|
||||
@fa-var-compass: "\f14e";
|
||||
@fa-var-compress: "\f066";
|
||||
@fa-var-connectdevelop: "\f20e";
|
||||
@fa-var-contao: "\f26d";
|
||||
@fa-var-copy: "\f0c5";
|
||||
@fa-var-copyright: "\f1f9";
|
||||
@fa-var-creative-commons: "\f25e";
|
||||
@fa-var-credit-card: "\f09d";
|
||||
@fa-var-credit-card-alt: "\f283";
|
||||
@fa-var-crop: "\f125";
|
||||
@fa-var-crosshairs: "\f05b";
|
||||
@fa-var-css3: "\f13c";
|
||||
@fa-var-cube: "\f1b2";
|
||||
@fa-var-cubes: "\f1b3";
|
||||
@fa-var-cut: "\f0c4";
|
||||
@fa-var-cutlery: "\f0f5";
|
||||
@fa-var-dashboard: "\f0e4";
|
||||
@fa-var-dashcube: "\f210";
|
||||
@fa-var-database: "\f1c0";
|
||||
@fa-var-deaf: "\f2a4";
|
||||
@fa-var-deafness: "\f2a4";
|
||||
@fa-var-dedent: "\f03b";
|
||||
@fa-var-delicious: "\f1a5";
|
||||
@fa-var-desktop: "\f108";
|
||||
@fa-var-deviantart: "\f1bd";
|
||||
@fa-var-diamond: "\f219";
|
||||
@fa-var-digg: "\f1a6";
|
||||
@fa-var-dollar: "\f155";
|
||||
@fa-var-dot-circle-o: "\f192";
|
||||
@fa-var-download: "\f019";
|
||||
@fa-var-dribbble: "\f17d";
|
||||
@fa-var-drivers-license: "\f2c2";
|
||||
@fa-var-drivers-license-o: "\f2c3";
|
||||
@fa-var-dropbox: "\f16b";
|
||||
@fa-var-drupal: "\f1a9";
|
||||
@fa-var-edge: "\f282";
|
||||
@fa-var-edit: "\f044";
|
||||
@fa-var-eercast: "\f2da";
|
||||
@fa-var-eject: "\f052";
|
||||
@fa-var-ellipsis-h: "\f141";
|
||||
@fa-var-ellipsis-v: "\f142";
|
||||
@fa-var-empire: "\f1d1";
|
||||
@fa-var-envelope: "\f0e0";
|
||||
@fa-var-envelope-o: "\f003";
|
||||
@fa-var-envelope-open: "\f2b6";
|
||||
@fa-var-envelope-open-o: "\f2b7";
|
||||
@fa-var-envelope-square: "\f199";
|
||||
@fa-var-envira: "\f299";
|
||||
@fa-var-eraser: "\f12d";
|
||||
@fa-var-etsy: "\f2d7";
|
||||
@fa-var-eur: "\f153";
|
||||
@fa-var-euro: "\f153";
|
||||
@fa-var-exchange: "\f0ec";
|
||||
@fa-var-exclamation: "\f12a";
|
||||
@fa-var-exclamation-circle: "\f06a";
|
||||
@fa-var-exclamation-triangle: "\f071";
|
||||
@fa-var-expand: "\f065";
|
||||
@fa-var-expeditedssl: "\f23e";
|
||||
@fa-var-external-link: "\f08e";
|
||||
@fa-var-external-link-square: "\f14c";
|
||||
@fa-var-eye: "\f06e";
|
||||
@fa-var-eye-slash: "\f070";
|
||||
@fa-var-eyedropper: "\f1fb";
|
||||
@fa-var-fa: "\f2b4";
|
||||
@fa-var-facebook: "\f09a";
|
||||
@fa-var-facebook-f: "\f09a";
|
||||
@fa-var-facebook-official: "\f230";
|
||||
@fa-var-facebook-square: "\f082";
|
||||
@fa-var-fast-backward: "\f049";
|
||||
@fa-var-fast-forward: "\f050";
|
||||
@fa-var-fax: "\f1ac";
|
||||
@fa-var-feed: "\f09e";
|
||||
@fa-var-female: "\f182";
|
||||
@fa-var-fighter-jet: "\f0fb";
|
||||
@fa-var-file: "\f15b";
|
||||
@fa-var-file-archive-o: "\f1c6";
|
||||
@fa-var-file-audio-o: "\f1c7";
|
||||
@fa-var-file-code-o: "\f1c9";
|
||||
@fa-var-file-excel-o: "\f1c3";
|
||||
@fa-var-file-image-o: "\f1c5";
|
||||
@fa-var-file-movie-o: "\f1c8";
|
||||
@fa-var-file-o: "\f016";
|
||||
@fa-var-file-pdf-o: "\f1c1";
|
||||
@fa-var-file-photo-o: "\f1c5";
|
||||
@fa-var-file-picture-o: "\f1c5";
|
||||
@fa-var-file-powerpoint-o: "\f1c4";
|
||||
@fa-var-file-sound-o: "\f1c7";
|
||||
@fa-var-file-text: "\f15c";
|
||||
@fa-var-file-text-o: "\f0f6";
|
||||
@fa-var-file-video-o: "\f1c8";
|
||||
@fa-var-file-word-o: "\f1c2";
|
||||
@fa-var-file-zip-o: "\f1c6";
|
||||
@fa-var-files-o: "\f0c5";
|
||||
@fa-var-film: "\f008";
|
||||
@fa-var-filter: "\f0b0";
|
||||
@fa-var-fire: "\f06d";
|
||||
@fa-var-fire-extinguisher: "\f134";
|
||||
@fa-var-firefox: "\f269";
|
||||
@fa-var-first-order: "\f2b0";
|
||||
@fa-var-flag: "\f024";
|
||||
@fa-var-flag-checkered: "\f11e";
|
||||
@fa-var-flag-o: "\f11d";
|
||||
@fa-var-flash: "\f0e7";
|
||||
@fa-var-flask: "\f0c3";
|
||||
@fa-var-flickr: "\f16e";
|
||||
@fa-var-floppy-o: "\f0c7";
|
||||
@fa-var-folder: "\f07b";
|
||||
@fa-var-folder-o: "\f114";
|
||||
@fa-var-folder-open: "\f07c";
|
||||
@fa-var-folder-open-o: "\f115";
|
||||
@fa-var-font: "\f031";
|
||||
@fa-var-font-awesome: "\f2b4";
|
||||
@fa-var-fonticons: "\f280";
|
||||
@fa-var-fort-awesome: "\f286";
|
||||
@fa-var-forumbee: "\f211";
|
||||
@fa-var-forward: "\f04e";
|
||||
@fa-var-foursquare: "\f180";
|
||||
@fa-var-free-code-camp: "\f2c5";
|
||||
@fa-var-frown-o: "\f119";
|
||||
@fa-var-futbol-o: "\f1e3";
|
||||
@fa-var-gamepad: "\f11b";
|
||||
@fa-var-gavel: "\f0e3";
|
||||
@fa-var-gbp: "\f154";
|
||||
@fa-var-ge: "\f1d1";
|
||||
@fa-var-gear: "\f013";
|
||||
@fa-var-gears: "\f085";
|
||||
@fa-var-genderless: "\f22d";
|
||||
@fa-var-get-pocket: "\f265";
|
||||
@fa-var-gg: "\f260";
|
||||
@fa-var-gg-circle: "\f261";
|
||||
@fa-var-gift: "\f06b";
|
||||
@fa-var-git: "\f1d3";
|
||||
@fa-var-git-square: "\f1d2";
|
||||
@fa-var-github: "\f09b";
|
||||
@fa-var-github-alt: "\f113";
|
||||
@fa-var-github-square: "\f092";
|
||||
@fa-var-gitlab: "\f296";
|
||||
@fa-var-gittip: "\f184";
|
||||
@fa-var-glass: "\f000";
|
||||
@fa-var-glide: "\f2a5";
|
||||
@fa-var-glide-g: "\f2a6";
|
||||
@fa-var-globe: "\f0ac";
|
||||
@fa-var-google: "\f1a0";
|
||||
@fa-var-google-plus: "\f0d5";
|
||||
@fa-var-google-plus-circle: "\f2b3";
|
||||
@fa-var-google-plus-official: "\f2b3";
|
||||
@fa-var-google-plus-square: "\f0d4";
|
||||
@fa-var-google-wallet: "\f1ee";
|
||||
@fa-var-graduation-cap: "\f19d";
|
||||
@fa-var-gratipay: "\f184";
|
||||
@fa-var-grav: "\f2d6";
|
||||
@fa-var-group: "\f0c0";
|
||||
@fa-var-h-square: "\f0fd";
|
||||
@fa-var-hacker-news: "\f1d4";
|
||||
@fa-var-hand-grab-o: "\f255";
|
||||
@fa-var-hand-lizard-o: "\f258";
|
||||
@fa-var-hand-o-down: "\f0a7";
|
||||
@fa-var-hand-o-left: "\f0a5";
|
||||
@fa-var-hand-o-right: "\f0a4";
|
||||
@fa-var-hand-o-up: "\f0a6";
|
||||
@fa-var-hand-paper-o: "\f256";
|
||||
@fa-var-hand-peace-o: "\f25b";
|
||||
@fa-var-hand-pointer-o: "\f25a";
|
||||
@fa-var-hand-rock-o: "\f255";
|
||||
@fa-var-hand-scissors-o: "\f257";
|
||||
@fa-var-hand-spock-o: "\f259";
|
||||
@fa-var-hand-stop-o: "\f256";
|
||||
@fa-var-handshake-o: "\f2b5";
|
||||
@fa-var-hard-of-hearing: "\f2a4";
|
||||
@fa-var-hashtag: "\f292";
|
||||
@fa-var-hdd-o: "\f0a0";
|
||||
@fa-var-header: "\f1dc";
|
||||
@fa-var-headphones: "\f025";
|
||||
@fa-var-heart: "\f004";
|
||||
@fa-var-heart-o: "\f08a";
|
||||
@fa-var-heartbeat: "\f21e";
|
||||
@fa-var-history: "\f1da";
|
||||
@fa-var-home: "\f015";
|
||||
@fa-var-hospital-o: "\f0f8";
|
||||
@fa-var-hotel: "\f236";
|
||||
@fa-var-hourglass: "\f254";
|
||||
@fa-var-hourglass-1: "\f251";
|
||||
@fa-var-hourglass-2: "\f252";
|
||||
@fa-var-hourglass-3: "\f253";
|
||||
@fa-var-hourglass-end: "\f253";
|
||||
@fa-var-hourglass-half: "\f252";
|
||||
@fa-var-hourglass-o: "\f250";
|
||||
@fa-var-hourglass-start: "\f251";
|
||||
@fa-var-houzz: "\f27c";
|
||||
@fa-var-html5: "\f13b";
|
||||
@fa-var-i-cursor: "\f246";
|
||||
@fa-var-id-badge: "\f2c1";
|
||||
@fa-var-id-card: "\f2c2";
|
||||
@fa-var-id-card-o: "\f2c3";
|
||||
@fa-var-ils: "\f20b";
|
||||
@fa-var-image: "\f03e";
|
||||
@fa-var-imdb: "\f2d8";
|
||||
@fa-var-inbox: "\f01c";
|
||||
@fa-var-indent: "\f03c";
|
||||
@fa-var-industry: "\f275";
|
||||
@fa-var-info: "\f129";
|
||||
@fa-var-info-circle: "\f05a";
|
||||
@fa-var-inr: "\f156";
|
||||
@fa-var-instagram: "\f16d";
|
||||
@fa-var-institution: "\f19c";
|
||||
@fa-var-internet-explorer: "\f26b";
|
||||
@fa-var-intersex: "\f224";
|
||||
@fa-var-ioxhost: "\f208";
|
||||
@fa-var-italic: "\f033";
|
||||
@fa-var-joomla: "\f1aa";
|
||||
@fa-var-jpy: "\f157";
|
||||
@fa-var-jsfiddle: "\f1cc";
|
||||
@fa-var-key: "\f084";
|
||||
@fa-var-keyboard-o: "\f11c";
|
||||
@fa-var-krw: "\f159";
|
||||
@fa-var-language: "\f1ab";
|
||||
@fa-var-laptop: "\f109";
|
||||
@fa-var-lastfm: "\f202";
|
||||
@fa-var-lastfm-square: "\f203";
|
||||
@fa-var-leaf: "\f06c";
|
||||
@fa-var-leanpub: "\f212";
|
||||
@fa-var-legal: "\f0e3";
|
||||
@fa-var-lemon-o: "\f094";
|
||||
@fa-var-level-down: "\f149";
|
||||
@fa-var-level-up: "\f148";
|
||||
@fa-var-life-bouy: "\f1cd";
|
||||
@fa-var-life-buoy: "\f1cd";
|
||||
@fa-var-life-ring: "\f1cd";
|
||||
@fa-var-life-saver: "\f1cd";
|
||||
@fa-var-lightbulb-o: "\f0eb";
|
||||
@fa-var-line-chart: "\f201";
|
||||
@fa-var-link: "\f0c1";
|
||||
@fa-var-linkedin: "\f0e1";
|
||||
@fa-var-linkedin-square: "\f08c";
|
||||
@fa-var-linode: "\f2b8";
|
||||
@fa-var-linux: "\f17c";
|
||||
@fa-var-list: "\f03a";
|
||||
@fa-var-list-alt: "\f022";
|
||||
@fa-var-list-ol: "\f0cb";
|
||||
@fa-var-list-ul: "\f0ca";
|
||||
@fa-var-location-arrow: "\f124";
|
||||
@fa-var-lock: "\f023";
|
||||
@fa-var-long-arrow-down: "\f175";
|
||||
@fa-var-long-arrow-left: "\f177";
|
||||
@fa-var-long-arrow-right: "\f178";
|
||||
@fa-var-long-arrow-up: "\f176";
|
||||
@fa-var-low-vision: "\f2a8";
|
||||
@fa-var-magic: "\f0d0";
|
||||
@fa-var-magnet: "\f076";
|
||||
@fa-var-mail-forward: "\f064";
|
||||
@fa-var-mail-reply: "\f112";
|
||||
@fa-var-mail-reply-all: "\f122";
|
||||
@fa-var-male: "\f183";
|
||||
@fa-var-map: "\f279";
|
||||
@fa-var-map-marker: "\f041";
|
||||
@fa-var-map-o: "\f278";
|
||||
@fa-var-map-pin: "\f276";
|
||||
@fa-var-map-signs: "\f277";
|
||||
@fa-var-mars: "\f222";
|
||||
@fa-var-mars-double: "\f227";
|
||||
@fa-var-mars-stroke: "\f229";
|
||||
@fa-var-mars-stroke-h: "\f22b";
|
||||
@fa-var-mars-stroke-v: "\f22a";
|
||||
@fa-var-maxcdn: "\f136";
|
||||
@fa-var-meanpath: "\f20c";
|
||||
@fa-var-medium: "\f23a";
|
||||
@fa-var-medkit: "\f0fa";
|
||||
@fa-var-meetup: "\f2e0";
|
||||
@fa-var-meh-o: "\f11a";
|
||||
@fa-var-mercury: "\f223";
|
||||
@fa-var-microchip: "\f2db";
|
||||
@fa-var-microphone: "\f130";
|
||||
@fa-var-microphone-slash: "\f131";
|
||||
@fa-var-minus: "\f068";
|
||||
@fa-var-minus-circle: "\f056";
|
||||
@fa-var-minus-square: "\f146";
|
||||
@fa-var-minus-square-o: "\f147";
|
||||
@fa-var-mixcloud: "\f289";
|
||||
@fa-var-mobile: "\f10b";
|
||||
@fa-var-mobile-phone: "\f10b";
|
||||
@fa-var-modx: "\f285";
|
||||
@fa-var-money: "\f0d6";
|
||||
@fa-var-moon-o: "\f186";
|
||||
@fa-var-mortar-board: "\f19d";
|
||||
@fa-var-motorcycle: "\f21c";
|
||||
@fa-var-mouse-pointer: "\f245";
|
||||
@fa-var-music: "\f001";
|
||||
@fa-var-navicon: "\f0c9";
|
||||
@fa-var-neuter: "\f22c";
|
||||
@fa-var-newspaper-o: "\f1ea";
|
||||
@fa-var-object-group: "\f247";
|
||||
@fa-var-object-ungroup: "\f248";
|
||||
@fa-var-odnoklassniki: "\f263";
|
||||
@fa-var-odnoklassniki-square: "\f264";
|
||||
@fa-var-opencart: "\f23d";
|
||||
@fa-var-openid: "\f19b";
|
||||
@fa-var-opera: "\f26a";
|
||||
@fa-var-optin-monster: "\f23c";
|
||||
@fa-var-outdent: "\f03b";
|
||||
@fa-var-pagelines: "\f18c";
|
||||
@fa-var-paint-brush: "\f1fc";
|
||||
@fa-var-paper-plane: "\f1d8";
|
||||
@fa-var-paper-plane-o: "\f1d9";
|
||||
@fa-var-paperclip: "\f0c6";
|
||||
@fa-var-paragraph: "\f1dd";
|
||||
@fa-var-paste: "\f0ea";
|
||||
@fa-var-pause: "\f04c";
|
||||
@fa-var-pause-circle: "\f28b";
|
||||
@fa-var-pause-circle-o: "\f28c";
|
||||
@fa-var-paw: "\f1b0";
|
||||
@fa-var-paypal: "\f1ed";
|
||||
@fa-var-pencil: "\f040";
|
||||
@fa-var-pencil-square: "\f14b";
|
||||
@fa-var-pencil-square-o: "\f044";
|
||||
@fa-var-percent: "\f295";
|
||||
@fa-var-phone: "\f095";
|
||||
@fa-var-phone-square: "\f098";
|
||||
@fa-var-photo: "\f03e";
|
||||
@fa-var-picture-o: "\f03e";
|
||||
@fa-var-pie-chart: "\f200";
|
||||
@fa-var-pied-piper: "\f2ae";
|
||||
@fa-var-pied-piper-alt: "\f1a8";
|
||||
@fa-var-pied-piper-pp: "\f1a7";
|
||||
@fa-var-pinterest: "\f0d2";
|
||||
@fa-var-pinterest-p: "\f231";
|
||||
@fa-var-pinterest-square: "\f0d3";
|
||||
@fa-var-plane: "\f072";
|
||||
@fa-var-play: "\f04b";
|
||||
@fa-var-play-circle: "\f144";
|
||||
@fa-var-play-circle-o: "\f01d";
|
||||
@fa-var-plug: "\f1e6";
|
||||
@fa-var-plus: "\f067";
|
||||
@fa-var-plus-circle: "\f055";
|
||||
@fa-var-plus-square: "\f0fe";
|
||||
@fa-var-plus-square-o: "\f196";
|
||||
@fa-var-podcast: "\f2ce";
|
||||
@fa-var-power-off: "\f011";
|
||||
@fa-var-print: "\f02f";
|
||||
@fa-var-product-hunt: "\f288";
|
||||
@fa-var-puzzle-piece: "\f12e";
|
||||
@fa-var-qq: "\f1d6";
|
||||
@fa-var-qrcode: "\f029";
|
||||
@fa-var-question: "\f128";
|
||||
@fa-var-question-circle: "\f059";
|
||||
@fa-var-question-circle-o: "\f29c";
|
||||
@fa-var-quora: "\f2c4";
|
||||
@fa-var-quote-left: "\f10d";
|
||||
@fa-var-quote-right: "\f10e";
|
||||
@fa-var-ra: "\f1d0";
|
||||
@fa-var-random: "\f074";
|
||||
@fa-var-ravelry: "\f2d9";
|
||||
@fa-var-rebel: "\f1d0";
|
||||
@fa-var-recycle: "\f1b8";
|
||||
@fa-var-reddit: "\f1a1";
|
||||
@fa-var-reddit-alien: "\f281";
|
||||
@fa-var-reddit-square: "\f1a2";
|
||||
@fa-var-refresh: "\f021";
|
||||
@fa-var-registered: "\f25d";
|
||||
@fa-var-remove: "\f00d";
|
||||
@fa-var-renren: "\f18b";
|
||||
@fa-var-reorder: "\f0c9";
|
||||
@fa-var-repeat: "\f01e";
|
||||
@fa-var-reply: "\f112";
|
||||
@fa-var-reply-all: "\f122";
|
||||
@fa-var-resistance: "\f1d0";
|
||||
@fa-var-retweet: "\f079";
|
||||
@fa-var-rmb: "\f157";
|
||||
@fa-var-road: "\f018";
|
||||
@fa-var-rocket: "\f135";
|
||||
@fa-var-rotate-left: "\f0e2";
|
||||
@fa-var-rotate-right: "\f01e";
|
||||
@fa-var-rouble: "\f158";
|
||||
@fa-var-rss: "\f09e";
|
||||
@fa-var-rss-square: "\f143";
|
||||
@fa-var-rub: "\f158";
|
||||
@fa-var-ruble: "\f158";
|
||||
@fa-var-rupee: "\f156";
|
||||
@fa-var-s15: "\f2cd";
|
||||
@fa-var-safari: "\f267";
|
||||
@fa-var-save: "\f0c7";
|
||||
@fa-var-scissors: "\f0c4";
|
||||
@fa-var-scribd: "\f28a";
|
||||
@fa-var-search: "\f002";
|
||||
@fa-var-search-minus: "\f010";
|
||||
@fa-var-search-plus: "\f00e";
|
||||
@fa-var-sellsy: "\f213";
|
||||
@fa-var-send: "\f1d8";
|
||||
@fa-var-send-o: "\f1d9";
|
||||
@fa-var-server: "\f233";
|
||||
@fa-var-share: "\f064";
|
||||
@fa-var-share-alt: "\f1e0";
|
||||
@fa-var-share-alt-square: "\f1e1";
|
||||
@fa-var-share-square: "\f14d";
|
||||
@fa-var-share-square-o: "\f045";
|
||||
@fa-var-shekel: "\f20b";
|
||||
@fa-var-sheqel: "\f20b";
|
||||
@fa-var-shield: "\f132";
|
||||
@fa-var-ship: "\f21a";
|
||||
@fa-var-shirtsinbulk: "\f214";
|
||||
@fa-var-shopping-bag: "\f290";
|
||||
@fa-var-shopping-basket: "\f291";
|
||||
@fa-var-shopping-cart: "\f07a";
|
||||
@fa-var-shower: "\f2cc";
|
||||
@fa-var-sign-in: "\f090";
|
||||
@fa-var-sign-language: "\f2a7";
|
||||
@fa-var-sign-out: "\f08b";
|
||||
@fa-var-signal: "\f012";
|
||||
@fa-var-signing: "\f2a7";
|
||||
@fa-var-simplybuilt: "\f215";
|
||||
@fa-var-sitemap: "\f0e8";
|
||||
@fa-var-skyatlas: "\f216";
|
||||
@fa-var-skype: "\f17e";
|
||||
@fa-var-slack: "\f198";
|
||||
@fa-var-sliders: "\f1de";
|
||||
@fa-var-slideshare: "\f1e7";
|
||||
@fa-var-smile-o: "\f118";
|
||||
@fa-var-snapchat: "\f2ab";
|
||||
@fa-var-snapchat-ghost: "\f2ac";
|
||||
@fa-var-snapchat-square: "\f2ad";
|
||||
@fa-var-snowflake-o: "\f2dc";
|
||||
@fa-var-soccer-ball-o: "\f1e3";
|
||||
@fa-var-sort: "\f0dc";
|
||||
@fa-var-sort-alpha-asc: "\f15d";
|
||||
@fa-var-sort-alpha-desc: "\f15e";
|
||||
@fa-var-sort-amount-asc: "\f160";
|
||||
@fa-var-sort-amount-desc: "\f161";
|
||||
@fa-var-sort-asc: "\f0de";
|
||||
@fa-var-sort-desc: "\f0dd";
|
||||
@fa-var-sort-down: "\f0dd";
|
||||
@fa-var-sort-numeric-asc: "\f162";
|
||||
@fa-var-sort-numeric-desc: "\f163";
|
||||
@fa-var-sort-up: "\f0de";
|
||||
@fa-var-soundcloud: "\f1be";
|
||||
@fa-var-space-shuttle: "\f197";
|
||||
@fa-var-spinner: "\f110";
|
||||
@fa-var-spoon: "\f1b1";
|
||||
@fa-var-spotify: "\f1bc";
|
||||
@fa-var-square: "\f0c8";
|
||||
@fa-var-square-o: "\f096";
|
||||
@fa-var-stack-exchange: "\f18d";
|
||||
@fa-var-stack-overflow: "\f16c";
|
||||
@fa-var-star: "\f005";
|
||||
@fa-var-star-half: "\f089";
|
||||
@fa-var-star-half-empty: "\f123";
|
||||
@fa-var-star-half-full: "\f123";
|
||||
@fa-var-star-half-o: "\f123";
|
||||
@fa-var-star-o: "\f006";
|
||||
@fa-var-steam: "\f1b6";
|
||||
@fa-var-steam-square: "\f1b7";
|
||||
@fa-var-step-backward: "\f048";
|
||||
@fa-var-step-forward: "\f051";
|
||||
@fa-var-stethoscope: "\f0f1";
|
||||
@fa-var-sticky-note: "\f249";
|
||||
@fa-var-sticky-note-o: "\f24a";
|
||||
@fa-var-stop: "\f04d";
|
||||
@fa-var-stop-circle: "\f28d";
|
||||
@fa-var-stop-circle-o: "\f28e";
|
||||
@fa-var-street-view: "\f21d";
|
||||
@fa-var-strikethrough: "\f0cc";
|
||||
@fa-var-stumbleupon: "\f1a4";
|
||||
@fa-var-stumbleupon-circle: "\f1a3";
|
||||
@fa-var-subscript: "\f12c";
|
||||
@fa-var-subway: "\f239";
|
||||
@fa-var-suitcase: "\f0f2";
|
||||
@fa-var-sun-o: "\f185";
|
||||
@fa-var-superpowers: "\f2dd";
|
||||
@fa-var-superscript: "\f12b";
|
||||
@fa-var-support: "\f1cd";
|
||||
@fa-var-table: "\f0ce";
|
||||
@fa-var-tablet: "\f10a";
|
||||
@fa-var-tachometer: "\f0e4";
|
||||
@fa-var-tag: "\f02b";
|
||||
@fa-var-tags: "\f02c";
|
||||
@fa-var-tasks: "\f0ae";
|
||||
@fa-var-taxi: "\f1ba";
|
||||
@fa-var-telegram: "\f2c6";
|
||||
@fa-var-television: "\f26c";
|
||||
@fa-var-tencent-weibo: "\f1d5";
|
||||
@fa-var-terminal: "\f120";
|
||||
@fa-var-text-height: "\f034";
|
||||
@fa-var-text-width: "\f035";
|
||||
@fa-var-th: "\f00a";
|
||||
@fa-var-th-large: "\f009";
|
||||
@fa-var-th-list: "\f00b";
|
||||
@fa-var-themeisle: "\f2b2";
|
||||
@fa-var-thermometer: "\f2c7";
|
||||
@fa-var-thermometer-0: "\f2cb";
|
||||
@fa-var-thermometer-1: "\f2ca";
|
||||
@fa-var-thermometer-2: "\f2c9";
|
||||
@fa-var-thermometer-3: "\f2c8";
|
||||
@fa-var-thermometer-4: "\f2c7";
|
||||
@fa-var-thermometer-empty: "\f2cb";
|
||||
@fa-var-thermometer-full: "\f2c7";
|
||||
@fa-var-thermometer-half: "\f2c9";
|
||||
@fa-var-thermometer-quarter: "\f2ca";
|
||||
@fa-var-thermometer-three-quarters: "\f2c8";
|
||||
@fa-var-thumb-tack: "\f08d";
|
||||
@fa-var-thumbs-down: "\f165";
|
||||
@fa-var-thumbs-o-down: "\f088";
|
||||
@fa-var-thumbs-o-up: "\f087";
|
||||
@fa-var-thumbs-up: "\f164";
|
||||
@fa-var-ticket: "\f145";
|
||||
@fa-var-times: "\f00d";
|
||||
@fa-var-times-circle: "\f057";
|
||||
@fa-var-times-circle-o: "\f05c";
|
||||
@fa-var-times-rectangle: "\f2d3";
|
||||
@fa-var-times-rectangle-o: "\f2d4";
|
||||
@fa-var-tint: "\f043";
|
||||
@fa-var-toggle-down: "\f150";
|
||||
@fa-var-toggle-left: "\f191";
|
||||
@fa-var-toggle-off: "\f204";
|
||||
@fa-var-toggle-on: "\f205";
|
||||
@fa-var-toggle-right: "\f152";
|
||||
@fa-var-toggle-up: "\f151";
|
||||
@fa-var-trademark: "\f25c";
|
||||
@fa-var-train: "\f238";
|
||||
@fa-var-transgender: "\f224";
|
||||
@fa-var-transgender-alt: "\f225";
|
||||
@fa-var-trash: "\f1f8";
|
||||
@fa-var-trash-o: "\f014";
|
||||
@fa-var-tree: "\f1bb";
|
||||
@fa-var-trello: "\f181";
|
||||
@fa-var-tripadvisor: "\f262";
|
||||
@fa-var-trophy: "\f091";
|
||||
@fa-var-truck: "\f0d1";
|
||||
@fa-var-try: "\f195";
|
||||
@fa-var-tty: "\f1e4";
|
||||
@fa-var-tumblr: "\f173";
|
||||
@fa-var-tumblr-square: "\f174";
|
||||
@fa-var-turkish-lira: "\f195";
|
||||
@fa-var-tv: "\f26c";
|
||||
@fa-var-twitch: "\f1e8";
|
||||
@fa-var-twitter: "\f099";
|
||||
@fa-var-twitter-square: "\f081";
|
||||
@fa-var-umbrella: "\f0e9";
|
||||
@fa-var-underline: "\f0cd";
|
||||
@fa-var-undo: "\f0e2";
|
||||
@fa-var-universal-access: "\f29a";
|
||||
@fa-var-university: "\f19c";
|
||||
@fa-var-unlink: "\f127";
|
||||
@fa-var-unlock: "\f09c";
|
||||
@fa-var-unlock-alt: "\f13e";
|
||||
@fa-var-unsorted: "\f0dc";
|
||||
@fa-var-upload: "\f093";
|
||||
@fa-var-usb: "\f287";
|
||||
@fa-var-usd: "\f155";
|
||||
@fa-var-user: "\f007";
|
||||
@fa-var-user-circle: "\f2bd";
|
||||
@fa-var-user-circle-o: "\f2be";
|
||||
@fa-var-user-md: "\f0f0";
|
||||
@fa-var-user-o: "\f2c0";
|
||||
@fa-var-user-plus: "\f234";
|
||||
@fa-var-user-secret: "\f21b";
|
||||
@fa-var-user-times: "\f235";
|
||||
@fa-var-users: "\f0c0";
|
||||
@fa-var-vcard: "\f2bb";
|
||||
@fa-var-vcard-o: "\f2bc";
|
||||
@fa-var-venus: "\f221";
|
||||
@fa-var-venus-double: "\f226";
|
||||
@fa-var-venus-mars: "\f228";
|
||||
@fa-var-viacoin: "\f237";
|
||||
@fa-var-viadeo: "\f2a9";
|
||||
@fa-var-viadeo-square: "\f2aa";
|
||||
@fa-var-video-camera: "\f03d";
|
||||
@fa-var-vimeo: "\f27d";
|
||||
@fa-var-vimeo-square: "\f194";
|
||||
@fa-var-vine: "\f1ca";
|
||||
@fa-var-vk: "\f189";
|
||||
@fa-var-volume-control-phone: "\f2a0";
|
||||
@fa-var-volume-down: "\f027";
|
||||
@fa-var-volume-off: "\f026";
|
||||
@fa-var-volume-up: "\f028";
|
||||
@fa-var-warning: "\f071";
|
||||
@fa-var-wechat: "\f1d7";
|
||||
@fa-var-weibo: "\f18a";
|
||||
@fa-var-weixin: "\f1d7";
|
||||
@fa-var-whatsapp: "\f232";
|
||||
@fa-var-wheelchair: "\f193";
|
||||
@fa-var-wheelchair-alt: "\f29b";
|
||||
@fa-var-wifi: "\f1eb";
|
||||
@fa-var-wikipedia-w: "\f266";
|
||||
@fa-var-window-close: "\f2d3";
|
||||
@fa-var-window-close-o: "\f2d4";
|
||||
@fa-var-window-maximize: "\f2d0";
|
||||
@fa-var-window-minimize: "\f2d1";
|
||||
@fa-var-window-restore: "\f2d2";
|
||||
@fa-var-windows: "\f17a";
|
||||
@fa-var-won: "\f159";
|
||||
@fa-var-wordpress: "\f19a";
|
||||
@fa-var-wpbeginner: "\f297";
|
||||
@fa-var-wpexplorer: "\f2de";
|
||||
@fa-var-wpforms: "\f298";
|
||||
@fa-var-wrench: "\f0ad";
|
||||
@fa-var-xing: "\f168";
|
||||
@fa-var-xing-square: "\f169";
|
||||
@fa-var-y-combinator: "\f23b";
|
||||
@fa-var-y-combinator-square: "\f1d4";
|
||||
@fa-var-yahoo: "\f19e";
|
||||
@fa-var-yc: "\f23b";
|
||||
@fa-var-yc-square: "\f1d4";
|
||||
@fa-var-yelp: "\f1e9";
|
||||
@fa-var-yen: "\f157";
|
||||
@fa-var-yoast: "\f2b1";
|
||||
@fa-var-youtube: "\f167";
|
||||
@fa-var-youtube-play: "\f16a";
|
||||
@fa-var-youtube-square: "\f166";
|
||||
|
||||
34
src/main/resources/static/css/font-awesome/scss/_animated.scss
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// Spinning Icons
|
||||
// --------------------------
|
||||
|
||||
.#{$fa-css-prefix}-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
25
src/main/resources/static/css/font-awesome/scss/_bordered-pulled.scss
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
// Bordered & Pulled
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid .08em $fa-border-color;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-pull-left { float: left; }
|
||||
.#{$fa-css-prefix}-pull-right { float: right; }
|
||||
|
||||
.#{$fa-css-prefix} {
|
||||
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
|
||||
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
|
||||
}
|
||||
|
||||
/* Deprecated as of 4.4.0 */
|
||||
.pull-right { float: right; }
|
||||
.pull-left { float: left; }
|
||||
|
||||
.#{$fa-css-prefix} {
|
||||
&.pull-left { margin-right: .3em; }
|
||||
&.pull-right { margin-left: .3em; }
|
||||
}
|
||||
12
src/main/resources/static/css/font-awesome/scss/_core.scss
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
// Base Class Definition
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix} {
|
||||
display: inline-block;
|
||||
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
6
src/main/resources/static/css/font-awesome/scss/_fixed-width.scss
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
// Fixed Width Icons
|
||||
// -------------------------
|
||||
.#{$fa-css-prefix}-fw {
|
||||
width: (18em / 14);
|
||||
text-align: center;
|
||||
}
|
||||
789
src/main/resources/static/css/font-awesome/scss/_icons.scss
vendored
Normal file
@@ -0,0 +1,789 @@
|
||||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||||
readers do not read off random characters that represent icons */
|
||||
|
||||
.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; }
|
||||
.#{$fa-css-prefix}-music:before { content: $fa-var-music; }
|
||||
.#{$fa-css-prefix}-search:before { content: $fa-var-search; }
|
||||
.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; }
|
||||
.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; }
|
||||
.#{$fa-css-prefix}-star:before { content: $fa-var-star; }
|
||||
.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; }
|
||||
.#{$fa-css-prefix}-user:before { content: $fa-var-user; }
|
||||
.#{$fa-css-prefix}-film:before { content: $fa-var-film; }
|
||||
.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; }
|
||||
.#{$fa-css-prefix}-th:before { content: $fa-var-th; }
|
||||
.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; }
|
||||
.#{$fa-css-prefix}-check:before { content: $fa-var-check; }
|
||||
.#{$fa-css-prefix}-remove:before,
|
||||
.#{$fa-css-prefix}-close:before,
|
||||
.#{$fa-css-prefix}-times:before { content: $fa-var-times; }
|
||||
.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; }
|
||||
.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; }
|
||||
.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; }
|
||||
.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; }
|
||||
.#{$fa-css-prefix}-gear:before,
|
||||
.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; }
|
||||
.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; }
|
||||
.#{$fa-css-prefix}-home:before { content: $fa-var-home; }
|
||||
.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; }
|
||||
.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; }
|
||||
.#{$fa-css-prefix}-road:before { content: $fa-var-road; }
|
||||
.#{$fa-css-prefix}-download:before { content: $fa-var-download; }
|
||||
.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; }
|
||||
.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; }
|
||||
.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; }
|
||||
.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; }
|
||||
.#{$fa-css-prefix}-rotate-right:before,
|
||||
.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; }
|
||||
.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; }
|
||||
.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; }
|
||||
.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; }
|
||||
.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; }
|
||||
.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; }
|
||||
.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; }
|
||||
.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; }
|
||||
.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; }
|
||||
.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; }
|
||||
.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; }
|
||||
.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; }
|
||||
.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; }
|
||||
.#{$fa-css-prefix}-book:before { content: $fa-var-book; }
|
||||
.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; }
|
||||
.#{$fa-css-prefix}-print:before { content: $fa-var-print; }
|
||||
.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; }
|
||||
.#{$fa-css-prefix}-font:before { content: $fa-var-font; }
|
||||
.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; }
|
||||
.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; }
|
||||
.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; }
|
||||
.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; }
|
||||
.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; }
|
||||
.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; }
|
||||
.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; }
|
||||
.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; }
|
||||
.#{$fa-css-prefix}-list:before { content: $fa-var-list; }
|
||||
.#{$fa-css-prefix}-dedent:before,
|
||||
.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; }
|
||||
.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; }
|
||||
.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; }
|
||||
.#{$fa-css-prefix}-photo:before,
|
||||
.#{$fa-css-prefix}-image:before,
|
||||
.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; }
|
||||
.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; }
|
||||
.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; }
|
||||
.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; }
|
||||
.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; }
|
||||
.#{$fa-css-prefix}-edit:before,
|
||||
.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; }
|
||||
.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; }
|
||||
.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; }
|
||||
.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; }
|
||||
.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; }
|
||||
.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; }
|
||||
.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; }
|
||||
.#{$fa-css-prefix}-play:before { content: $fa-var-play; }
|
||||
.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; }
|
||||
.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; }
|
||||
.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; }
|
||||
.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; }
|
||||
.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; }
|
||||
.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; }
|
||||
.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; }
|
||||
.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; }
|
||||
.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; }
|
||||
.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; }
|
||||
.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; }
|
||||
.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; }
|
||||
.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; }
|
||||
.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; }
|
||||
.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; }
|
||||
.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; }
|
||||
.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; }
|
||||
.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; }
|
||||
.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; }
|
||||
.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; }
|
||||
.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; }
|
||||
.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; }
|
||||
.#{$fa-css-prefix}-mail-forward:before,
|
||||
.#{$fa-css-prefix}-share:before { content: $fa-var-share; }
|
||||
.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; }
|
||||
.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; }
|
||||
.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; }
|
||||
.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; }
|
||||
.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; }
|
||||
.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; }
|
||||
.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; }
|
||||
.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; }
|
||||
.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; }
|
||||
.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; }
|
||||
.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; }
|
||||
.#{$fa-css-prefix}-warning:before,
|
||||
.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; }
|
||||
.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; }
|
||||
.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; }
|
||||
.#{$fa-css-prefix}-random:before { content: $fa-var-random; }
|
||||
.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; }
|
||||
.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; }
|
||||
.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; }
|
||||
.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; }
|
||||
.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; }
|
||||
.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; }
|
||||
.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; }
|
||||
.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; }
|
||||
.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; }
|
||||
.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; }
|
||||
.#{$fa-css-prefix}-bar-chart-o:before,
|
||||
.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; }
|
||||
.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; }
|
||||
.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; }
|
||||
.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; }
|
||||
.#{$fa-css-prefix}-key:before { content: $fa-var-key; }
|
||||
.#{$fa-css-prefix}-gears:before,
|
||||
.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; }
|
||||
.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; }
|
||||
.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; }
|
||||
.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; }
|
||||
.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; }
|
||||
.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; }
|
||||
.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; }
|
||||
.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; }
|
||||
.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; }
|
||||
.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; }
|
||||
.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; }
|
||||
.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; }
|
||||
.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; }
|
||||
.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; }
|
||||
.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; }
|
||||
.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; }
|
||||
.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; }
|
||||
.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; }
|
||||
.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; }
|
||||
.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; }
|
||||
.#{$fa-css-prefix}-facebook-f:before,
|
||||
.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; }
|
||||
.#{$fa-css-prefix}-github:before { content: $fa-var-github; }
|
||||
.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; }
|
||||
.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; }
|
||||
.#{$fa-css-prefix}-feed:before,
|
||||
.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; }
|
||||
.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; }
|
||||
.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; }
|
||||
.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; }
|
||||
.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; }
|
||||
.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; }
|
||||
.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; }
|
||||
.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; }
|
||||
.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; }
|
||||
.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; }
|
||||
.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; }
|
||||
.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; }
|
||||
.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; }
|
||||
.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; }
|
||||
.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; }
|
||||
.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; }
|
||||
.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; }
|
||||
.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; }
|
||||
.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; }
|
||||
.#{$fa-css-prefix}-group:before,
|
||||
.#{$fa-css-prefix}-users:before { content: $fa-var-users; }
|
||||
.#{$fa-css-prefix}-chain:before,
|
||||
.#{$fa-css-prefix}-link:before { content: $fa-var-link; }
|
||||
.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; }
|
||||
.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; }
|
||||
.#{$fa-css-prefix}-cut:before,
|
||||
.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; }
|
||||
.#{$fa-css-prefix}-copy:before,
|
||||
.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; }
|
||||
.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; }
|
||||
.#{$fa-css-prefix}-save:before,
|
||||
.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; }
|
||||
.#{$fa-css-prefix}-square:before { content: $fa-var-square; }
|
||||
.#{$fa-css-prefix}-navicon:before,
|
||||
.#{$fa-css-prefix}-reorder:before,
|
||||
.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; }
|
||||
.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; }
|
||||
.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; }
|
||||
.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; }
|
||||
.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; }
|
||||
.#{$fa-css-prefix}-table:before { content: $fa-var-table; }
|
||||
.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; }
|
||||
.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; }
|
||||
.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; }
|
||||
.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; }
|
||||
.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; }
|
||||
.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; }
|
||||
.#{$fa-css-prefix}-money:before { content: $fa-var-money; }
|
||||
.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; }
|
||||
.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; }
|
||||
.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; }
|
||||
.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; }
|
||||
.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; }
|
||||
.#{$fa-css-prefix}-unsorted:before,
|
||||
.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; }
|
||||
.#{$fa-css-prefix}-sort-down:before,
|
||||
.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; }
|
||||
.#{$fa-css-prefix}-sort-up:before,
|
||||
.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; }
|
||||
.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; }
|
||||
.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; }
|
||||
.#{$fa-css-prefix}-rotate-left:before,
|
||||
.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; }
|
||||
.#{$fa-css-prefix}-legal:before,
|
||||
.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; }
|
||||
.#{$fa-css-prefix}-dashboard:before,
|
||||
.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; }
|
||||
.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; }
|
||||
.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; }
|
||||
.#{$fa-css-prefix}-flash:before,
|
||||
.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; }
|
||||
.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; }
|
||||
.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; }
|
||||
.#{$fa-css-prefix}-paste:before,
|
||||
.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; }
|
||||
.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; }
|
||||
.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; }
|
||||
.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; }
|
||||
.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; }
|
||||
.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; }
|
||||
.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; }
|
||||
.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; }
|
||||
.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; }
|
||||
.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; }
|
||||
.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; }
|
||||
.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; }
|
||||
.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; }
|
||||
.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; }
|
||||
.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; }
|
||||
.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; }
|
||||
.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; }
|
||||
.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; }
|
||||
.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; }
|
||||
.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; }
|
||||
.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; }
|
||||
.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; }
|
||||
.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; }
|
||||
.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; }
|
||||
.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; }
|
||||
.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; }
|
||||
.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; }
|
||||
.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; }
|
||||
.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; }
|
||||
.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; }
|
||||
.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; }
|
||||
.#{$fa-css-prefix}-mobile-phone:before,
|
||||
.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; }
|
||||
.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; }
|
||||
.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; }
|
||||
.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; }
|
||||
.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; }
|
||||
.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; }
|
||||
.#{$fa-css-prefix}-mail-reply:before,
|
||||
.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; }
|
||||
.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; }
|
||||
.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; }
|
||||
.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; }
|
||||
.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; }
|
||||
.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; }
|
||||
.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; }
|
||||
.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; }
|
||||
.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; }
|
||||
.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; }
|
||||
.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; }
|
||||
.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; }
|
||||
.#{$fa-css-prefix}-code:before { content: $fa-var-code; }
|
||||
.#{$fa-css-prefix}-mail-reply-all:before,
|
||||
.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; }
|
||||
.#{$fa-css-prefix}-star-half-empty:before,
|
||||
.#{$fa-css-prefix}-star-half-full:before,
|
||||
.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; }
|
||||
.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; }
|
||||
.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; }
|
||||
.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; }
|
||||
.#{$fa-css-prefix}-unlink:before,
|
||||
.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; }
|
||||
.#{$fa-css-prefix}-question:before { content: $fa-var-question; }
|
||||
.#{$fa-css-prefix}-info:before { content: $fa-var-info; }
|
||||
.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; }
|
||||
.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; }
|
||||
.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; }
|
||||
.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; }
|
||||
.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; }
|
||||
.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; }
|
||||
.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; }
|
||||
.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; }
|
||||
.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; }
|
||||
.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; }
|
||||
.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; }
|
||||
.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; }
|
||||
.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; }
|
||||
.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; }
|
||||
.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; }
|
||||
.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; }
|
||||
.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; }
|
||||
.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; }
|
||||
.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; }
|
||||
.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; }
|
||||
.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; }
|
||||
.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; }
|
||||
.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; }
|
||||
.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; }
|
||||
.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; }
|
||||
.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; }
|
||||
.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; }
|
||||
.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; }
|
||||
.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; }
|
||||
.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; }
|
||||
.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; }
|
||||
.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; }
|
||||
.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; }
|
||||
.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; }
|
||||
.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; }
|
||||
.#{$fa-css-prefix}-toggle-down:before,
|
||||
.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; }
|
||||
.#{$fa-css-prefix}-toggle-up:before,
|
||||
.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; }
|
||||
.#{$fa-css-prefix}-toggle-right:before,
|
||||
.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; }
|
||||
.#{$fa-css-prefix}-euro:before,
|
||||
.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; }
|
||||
.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; }
|
||||
.#{$fa-css-prefix}-dollar:before,
|
||||
.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; }
|
||||
.#{$fa-css-prefix}-rupee:before,
|
||||
.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; }
|
||||
.#{$fa-css-prefix}-cny:before,
|
||||
.#{$fa-css-prefix}-rmb:before,
|
||||
.#{$fa-css-prefix}-yen:before,
|
||||
.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; }
|
||||
.#{$fa-css-prefix}-ruble:before,
|
||||
.#{$fa-css-prefix}-rouble:before,
|
||||
.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; }
|
||||
.#{$fa-css-prefix}-won:before,
|
||||
.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; }
|
||||
.#{$fa-css-prefix}-bitcoin:before,
|
||||
.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; }
|
||||
.#{$fa-css-prefix}-file:before { content: $fa-var-file; }
|
||||
.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; }
|
||||
.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; }
|
||||
.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; }
|
||||
.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; }
|
||||
.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; }
|
||||
.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; }
|
||||
.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; }
|
||||
.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; }
|
||||
.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; }
|
||||
.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; }
|
||||
.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; }
|
||||
.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; }
|
||||
.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; }
|
||||
.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; }
|
||||
.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; }
|
||||
.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; }
|
||||
.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; }
|
||||
.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; }
|
||||
.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; }
|
||||
.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; }
|
||||
.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; }
|
||||
.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; }
|
||||
.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; }
|
||||
.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; }
|
||||
.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; }
|
||||
.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; }
|
||||
.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; }
|
||||
.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; }
|
||||
.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; }
|
||||
.#{$fa-css-prefix}-android:before { content: $fa-var-android; }
|
||||
.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; }
|
||||
.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; }
|
||||
.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; }
|
||||
.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; }
|
||||
.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; }
|
||||
.#{$fa-css-prefix}-female:before { content: $fa-var-female; }
|
||||
.#{$fa-css-prefix}-male:before { content: $fa-var-male; }
|
||||
.#{$fa-css-prefix}-gittip:before,
|
||||
.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; }
|
||||
.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; }
|
||||
.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; }
|
||||
.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; }
|
||||
.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; }
|
||||
.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; }
|
||||
.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; }
|
||||
.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; }
|
||||
.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; }
|
||||
.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; }
|
||||
.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; }
|
||||
.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; }
|
||||
.#{$fa-css-prefix}-toggle-left:before,
|
||||
.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; }
|
||||
.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; }
|
||||
.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; }
|
||||
.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; }
|
||||
.#{$fa-css-prefix}-turkish-lira:before,
|
||||
.#{$fa-css-prefix}-try:before { content: $fa-var-try; }
|
||||
.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; }
|
||||
.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; }
|
||||
.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; }
|
||||
.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; }
|
||||
.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; }
|
||||
.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; }
|
||||
.#{$fa-css-prefix}-institution:before,
|
||||
.#{$fa-css-prefix}-bank:before,
|
||||
.#{$fa-css-prefix}-university:before { content: $fa-var-university; }
|
||||
.#{$fa-css-prefix}-mortar-board:before,
|
||||
.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; }
|
||||
.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; }
|
||||
.#{$fa-css-prefix}-google:before { content: $fa-var-google; }
|
||||
.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; }
|
||||
.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; }
|
||||
.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; }
|
||||
.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; }
|
||||
.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; }
|
||||
.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; }
|
||||
.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; }
|
||||
.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; }
|
||||
.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; }
|
||||
.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; }
|
||||
.#{$fa-css-prefix}-language:before { content: $fa-var-language; }
|
||||
.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; }
|
||||
.#{$fa-css-prefix}-building:before { content: $fa-var-building; }
|
||||
.#{$fa-css-prefix}-child:before { content: $fa-var-child; }
|
||||
.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; }
|
||||
.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; }
|
||||
.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; }
|
||||
.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; }
|
||||
.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; }
|
||||
.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; }
|
||||
.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; }
|
||||
.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; }
|
||||
.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; }
|
||||
.#{$fa-css-prefix}-automobile:before,
|
||||
.#{$fa-css-prefix}-car:before { content: $fa-var-car; }
|
||||
.#{$fa-css-prefix}-cab:before,
|
||||
.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; }
|
||||
.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; }
|
||||
.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; }
|
||||
.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; }
|
||||
.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; }
|
||||
.#{$fa-css-prefix}-database:before { content: $fa-var-database; }
|
||||
.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; }
|
||||
.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; }
|
||||
.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; }
|
||||
.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; }
|
||||
.#{$fa-css-prefix}-file-photo-o:before,
|
||||
.#{$fa-css-prefix}-file-picture-o:before,
|
||||
.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; }
|
||||
.#{$fa-css-prefix}-file-zip-o:before,
|
||||
.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; }
|
||||
.#{$fa-css-prefix}-file-sound-o:before,
|
||||
.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; }
|
||||
.#{$fa-css-prefix}-file-movie-o:before,
|
||||
.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; }
|
||||
.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; }
|
||||
.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; }
|
||||
.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; }
|
||||
.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; }
|
||||
.#{$fa-css-prefix}-life-bouy:before,
|
||||
.#{$fa-css-prefix}-life-buoy:before,
|
||||
.#{$fa-css-prefix}-life-saver:before,
|
||||
.#{$fa-css-prefix}-support:before,
|
||||
.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; }
|
||||
.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; }
|
||||
.#{$fa-css-prefix}-ra:before,
|
||||
.#{$fa-css-prefix}-resistance:before,
|
||||
.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; }
|
||||
.#{$fa-css-prefix}-ge:before,
|
||||
.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; }
|
||||
.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; }
|
||||
.#{$fa-css-prefix}-git:before { content: $fa-var-git; }
|
||||
.#{$fa-css-prefix}-y-combinator-square:before,
|
||||
.#{$fa-css-prefix}-yc-square:before,
|
||||
.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; }
|
||||
.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; }
|
||||
.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; }
|
||||
.#{$fa-css-prefix}-wechat:before,
|
||||
.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; }
|
||||
.#{$fa-css-prefix}-send:before,
|
||||
.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; }
|
||||
.#{$fa-css-prefix}-send-o:before,
|
||||
.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; }
|
||||
.#{$fa-css-prefix}-history:before { content: $fa-var-history; }
|
||||
.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; }
|
||||
.#{$fa-css-prefix}-header:before { content: $fa-var-header; }
|
||||
.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; }
|
||||
.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; }
|
||||
.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; }
|
||||
.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; }
|
||||
.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; }
|
||||
.#{$fa-css-prefix}-soccer-ball-o:before,
|
||||
.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; }
|
||||
.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; }
|
||||
.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; }
|
||||
.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; }
|
||||
.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; }
|
||||
.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; }
|
||||
.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; }
|
||||
.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; }
|
||||
.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; }
|
||||
.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; }
|
||||
.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; }
|
||||
.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; }
|
||||
.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; }
|
||||
.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; }
|
||||
.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; }
|
||||
.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; }
|
||||
.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; }
|
||||
.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; }
|
||||
.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; }
|
||||
.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; }
|
||||
.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; }
|
||||
.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; }
|
||||
.#{$fa-css-prefix}-at:before { content: $fa-var-at; }
|
||||
.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; }
|
||||
.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; }
|
||||
.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; }
|
||||
.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; }
|
||||
.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; }
|
||||
.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; }
|
||||
.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; }
|
||||
.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; }
|
||||
.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; }
|
||||
.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; }
|
||||
.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; }
|
||||
.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; }
|
||||
.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; }
|
||||
.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; }
|
||||
.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; }
|
||||
.#{$fa-css-prefix}-shekel:before,
|
||||
.#{$fa-css-prefix}-sheqel:before,
|
||||
.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; }
|
||||
.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; }
|
||||
.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; }
|
||||
.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; }
|
||||
.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; }
|
||||
.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; }
|
||||
.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; }
|
||||
.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; }
|
||||
.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; }
|
||||
.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; }
|
||||
.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; }
|
||||
.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; }
|
||||
.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; }
|
||||
.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; }
|
||||
.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; }
|
||||
.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; }
|
||||
.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; }
|
||||
.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; }
|
||||
.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; }
|
||||
.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; }
|
||||
.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; }
|
||||
.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; }
|
||||
.#{$fa-css-prefix}-intersex:before,
|
||||
.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; }
|
||||
.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; }
|
||||
.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; }
|
||||
.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; }
|
||||
.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; }
|
||||
.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; }
|
||||
.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; }
|
||||
.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; }
|
||||
.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; }
|
||||
.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; }
|
||||
.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; }
|
||||
.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; }
|
||||
.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; }
|
||||
.#{$fa-css-prefix}-server:before { content: $fa-var-server; }
|
||||
.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; }
|
||||
.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; }
|
||||
.#{$fa-css-prefix}-hotel:before,
|
||||
.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; }
|
||||
.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; }
|
||||
.#{$fa-css-prefix}-train:before { content: $fa-var-train; }
|
||||
.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; }
|
||||
.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; }
|
||||
.#{$fa-css-prefix}-yc:before,
|
||||
.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; }
|
||||
.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; }
|
||||
.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; }
|
||||
.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; }
|
||||
.#{$fa-css-prefix}-battery-4:before,
|
||||
.#{$fa-css-prefix}-battery:before,
|
||||
.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; }
|
||||
.#{$fa-css-prefix}-battery-3:before,
|
||||
.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; }
|
||||
.#{$fa-css-prefix}-battery-2:before,
|
||||
.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; }
|
||||
.#{$fa-css-prefix}-battery-1:before,
|
||||
.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; }
|
||||
.#{$fa-css-prefix}-battery-0:before,
|
||||
.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; }
|
||||
.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; }
|
||||
.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; }
|
||||
.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; }
|
||||
.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; }
|
||||
.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; }
|
||||
.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; }
|
||||
.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; }
|
||||
.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; }
|
||||
.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; }
|
||||
.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; }
|
||||
.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; }
|
||||
.#{$fa-css-prefix}-hourglass-1:before,
|
||||
.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; }
|
||||
.#{$fa-css-prefix}-hourglass-2:before,
|
||||
.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; }
|
||||
.#{$fa-css-prefix}-hourglass-3:before,
|
||||
.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; }
|
||||
.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; }
|
||||
.#{$fa-css-prefix}-hand-grab-o:before,
|
||||
.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; }
|
||||
.#{$fa-css-prefix}-hand-stop-o:before,
|
||||
.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; }
|
||||
.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; }
|
||||
.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; }
|
||||
.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; }
|
||||
.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; }
|
||||
.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; }
|
||||
.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; }
|
||||
.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; }
|
||||
.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; }
|
||||
.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; }
|
||||
.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; }
|
||||
.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; }
|
||||
.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; }
|
||||
.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; }
|
||||
.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; }
|
||||
.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; }
|
||||
.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; }
|
||||
.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; }
|
||||
.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; }
|
||||
.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; }
|
||||
.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; }
|
||||
.#{$fa-css-prefix}-tv:before,
|
||||
.#{$fa-css-prefix}-television:before { content: $fa-var-television; }
|
||||
.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; }
|
||||
.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; }
|
||||
.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; }
|
||||
.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; }
|
||||
.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; }
|
||||
.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; }
|
||||
.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; }
|
||||
.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; }
|
||||
.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; }
|
||||
.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; }
|
||||
.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; }
|
||||
.#{$fa-css-prefix}-map:before { content: $fa-var-map; }
|
||||
.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; }
|
||||
.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; }
|
||||
.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; }
|
||||
.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; }
|
||||
.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; }
|
||||
.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; }
|
||||
.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; }
|
||||
.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; }
|
||||
.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; }
|
||||
.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; }
|
||||
.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; }
|
||||
.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; }
|
||||
.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; }
|
||||
.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; }
|
||||
.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; }
|
||||
.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; }
|
||||
.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; }
|
||||
.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; }
|
||||
.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; }
|
||||
.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; }
|
||||
.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; }
|
||||
.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; }
|
||||
.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; }
|
||||
.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; }
|
||||
.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; }
|
||||
.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; }
|
||||
.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; }
|
||||
.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; }
|
||||
.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; }
|
||||
.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; }
|
||||
.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; }
|
||||
.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; }
|
||||
.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; }
|
||||
.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; }
|
||||
.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; }
|
||||
.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; }
|
||||
.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; }
|
||||
.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; }
|
||||
.#{$fa-css-prefix}-asl-interpreting:before,
|
||||
.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; }
|
||||
.#{$fa-css-prefix}-deafness:before,
|
||||
.#{$fa-css-prefix}-hard-of-hearing:before,
|
||||
.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; }
|
||||
.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; }
|
||||
.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; }
|
||||
.#{$fa-css-prefix}-signing:before,
|
||||
.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; }
|
||||
.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; }
|
||||
.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; }
|
||||
.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; }
|
||||
.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; }
|
||||
.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; }
|
||||
.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; }
|
||||
.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; }
|
||||
.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; }
|
||||
.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; }
|
||||
.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; }
|
||||
.#{$fa-css-prefix}-google-plus-circle:before,
|
||||
.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; }
|
||||
.#{$fa-css-prefix}-fa:before,
|
||||
.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; }
|
||||
.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; }
|
||||
.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; }
|
||||
.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; }
|
||||
.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; }
|
||||
.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; }
|
||||
.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; }
|
||||
.#{$fa-css-prefix}-vcard:before,
|
||||
.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; }
|
||||
.#{$fa-css-prefix}-vcard-o:before,
|
||||
.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; }
|
||||
.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; }
|
||||
.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; }
|
||||
.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; }
|
||||
.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; }
|
||||
.#{$fa-css-prefix}-drivers-license:before,
|
||||
.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; }
|
||||
.#{$fa-css-prefix}-drivers-license-o:before,
|
||||
.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; }
|
||||
.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; }
|
||||
.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; }
|
||||
.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; }
|
||||
.#{$fa-css-prefix}-thermometer-4:before,
|
||||
.#{$fa-css-prefix}-thermometer:before,
|
||||
.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; }
|
||||
.#{$fa-css-prefix}-thermometer-3:before,
|
||||
.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; }
|
||||
.#{$fa-css-prefix}-thermometer-2:before,
|
||||
.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; }
|
||||
.#{$fa-css-prefix}-thermometer-1:before,
|
||||
.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; }
|
||||
.#{$fa-css-prefix}-thermometer-0:before,
|
||||
.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; }
|
||||
.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; }
|
||||
.#{$fa-css-prefix}-bathtub:before,
|
||||
.#{$fa-css-prefix}-s15:before,
|
||||
.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; }
|
||||
.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; }
|
||||
.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; }
|
||||
.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; }
|
||||
.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; }
|
||||
.#{$fa-css-prefix}-times-rectangle:before,
|
||||
.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; }
|
||||
.#{$fa-css-prefix}-times-rectangle-o:before,
|
||||
.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; }
|
||||
.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; }
|
||||
.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; }
|
||||
.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; }
|
||||
.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; }
|
||||
.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; }
|
||||
.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; }
|
||||
.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; }
|
||||
.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; }
|
||||
.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; }
|
||||
.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; }
|
||||
.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; }
|
||||
13
src/main/resources/static/css/font-awesome/scss/_larger.scss
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
// Icon Sizes
|
||||
// -------------------------
|
||||
|
||||
/* makes the font 33% larger relative to the icon container */
|
||||
.#{$fa-css-prefix}-lg {
|
||||
font-size: (4em / 3);
|
||||
line-height: (3em / 4);
|
||||
vertical-align: -15%;
|
||||
}
|
||||
.#{$fa-css-prefix}-2x { font-size: 2em; }
|
||||
.#{$fa-css-prefix}-3x { font-size: 3em; }
|
||||
.#{$fa-css-prefix}-4x { font-size: 4em; }
|
||||
.#{$fa-css-prefix}-5x { font-size: 5em; }
|
||||
19
src/main/resources/static/css/font-awesome/scss/_list.scss
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// List Icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-ul {
|
||||
padding-left: 0;
|
||||
margin-left: $fa-li-width;
|
||||
list-style-type: none;
|
||||
> li { position: relative; }
|
||||
}
|
||||
.#{$fa-css-prefix}-li {
|
||||
position: absolute;
|
||||
left: -$fa-li-width;
|
||||
width: $fa-li-width;
|
||||
top: (2em / 14);
|
||||
text-align: center;
|
||||
&.#{$fa-css-prefix}-lg {
|
||||
left: -$fa-li-width + (4em / 14);
|
||||
}
|
||||
}
|
||||
60
src/main/resources/static/css/font-awesome/scss/_mixins.scss
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
// Mixins
|
||||
// --------------------------
|
||||
|
||||
@mixin fa-icon() {
|
||||
display: inline-block;
|
||||
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
|
||||
@mixin fa-icon-rotate($degrees, $rotation) {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
|
||||
-webkit-transform: rotate($degrees);
|
||||
-ms-transform: rotate($degrees);
|
||||
transform: rotate($degrees);
|
||||
}
|
||||
|
||||
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
|
||||
-webkit-transform: scale($horiz, $vert);
|
||||
-ms-transform: scale($horiz, $vert);
|
||||
transform: scale($horiz, $vert);
|
||||
}
|
||||
|
||||
|
||||
// Only display content to screen readers. A la Bootstrap 4.
|
||||
//
|
||||
// See: http://a11yproject.com/posts/how-to-hide-content/
|
||||
|
||||
@mixin sr-only {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0,0,0,0);
|
||||
border: 0;
|
||||
}
|
||||
|
||||
// Use in conjunction with .sr-only to only display content when it's focused.
|
||||
//
|
||||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
||||
//
|
||||
// Credit: HTML5 Boilerplate
|
||||
|
||||
@mixin sr-only-focusable {
|
||||
&:active,
|
||||
&:focus {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
}
|
||||
}
|
||||
15
src/main/resources/static/css/font-awesome/scss/_path.scss
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/* FONT PATH
|
||||
* -------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: 'FontAwesome';
|
||||
src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
|
||||
src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
|
||||
url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
|
||||
url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
|
||||
url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
|
||||
url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
|
||||
// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
20
src/main/resources/static/css/font-awesome/scss/_rotated-flipped.scss
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// Rotated & Flipped Icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
|
||||
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
|
||||
.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
|
||||
|
||||
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
|
||||
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
|
||||
|
||||
// Hook for IE8-9
|
||||
// -------------------------
|
||||
|
||||
:root .#{$fa-css-prefix}-rotate-90,
|
||||
:root .#{$fa-css-prefix}-rotate-180,
|
||||
:root .#{$fa-css-prefix}-rotate-270,
|
||||
:root .#{$fa-css-prefix}-flip-horizontal,
|
||||
:root .#{$fa-css-prefix}-flip-vertical {
|
||||
filter: none;
|
||||
}
|
||||
5
src/main/resources/static/css/font-awesome/scss/_screen-reader.scss
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
// Screen Readers
|
||||
// -------------------------
|
||||
|
||||
.sr-only { @include sr-only(); }
|
||||
.sr-only-focusable { @include sr-only-focusable(); }
|
||||
20
src/main/resources/static/css/font-awesome/scss/_stacked.scss
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// Stacked Icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-stack {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.#{$fa-css-prefix}-stack-1x { line-height: inherit; }
|
||||
.#{$fa-css-prefix}-stack-2x { font-size: 2em; }
|
||||
.#{$fa-css-prefix}-inverse { color: $fa-inverse; }
|
||||
800
src/main/resources/static/css/font-awesome/scss/_variables.scss
vendored
Normal file
@@ -0,0 +1,800 @@
|
||||
// Variables
|
||||
// --------------------------
|
||||
|
||||
$fa-font-path: "../fonts" !default;
|
||||
$fa-font-size-base: 14px !default;
|
||||
$fa-line-height-base: 1 !default;
|
||||
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly
|
||||
$fa-css-prefix: fa !default;
|
||||
$fa-version: "4.7.0" !default;
|
||||
$fa-border-color: #eee !default;
|
||||
$fa-inverse: #fff !default;
|
||||
$fa-li-width: (30em / 14) !default;
|
||||
|
||||
$fa-var-500px: "\f26e";
|
||||
$fa-var-address-book: "\f2b9";
|
||||
$fa-var-address-book-o: "\f2ba";
|
||||
$fa-var-address-card: "\f2bb";
|
||||
$fa-var-address-card-o: "\f2bc";
|
||||
$fa-var-adjust: "\f042";
|
||||
$fa-var-adn: "\f170";
|
||||
$fa-var-align-center: "\f037";
|
||||
$fa-var-align-justify: "\f039";
|
||||
$fa-var-align-left: "\f036";
|
||||
$fa-var-align-right: "\f038";
|
||||
$fa-var-amazon: "\f270";
|
||||
$fa-var-ambulance: "\f0f9";
|
||||
$fa-var-american-sign-language-interpreting: "\f2a3";
|
||||
$fa-var-anchor: "\f13d";
|
||||
$fa-var-android: "\f17b";
|
||||
$fa-var-angellist: "\f209";
|
||||
$fa-var-angle-double-down: "\f103";
|
||||
$fa-var-angle-double-left: "\f100";
|
||||
$fa-var-angle-double-right: "\f101";
|
||||
$fa-var-angle-double-up: "\f102";
|
||||
$fa-var-angle-down: "\f107";
|
||||
$fa-var-angle-left: "\f104";
|
||||
$fa-var-angle-right: "\f105";
|
||||
$fa-var-angle-up: "\f106";
|
||||
$fa-var-apple: "\f179";
|
||||
$fa-var-archive: "\f187";
|
||||
$fa-var-area-chart: "\f1fe";
|
||||
$fa-var-arrow-circle-down: "\f0ab";
|
||||
$fa-var-arrow-circle-left: "\f0a8";
|
||||
$fa-var-arrow-circle-o-down: "\f01a";
|
||||
$fa-var-arrow-circle-o-left: "\f190";
|
||||
$fa-var-arrow-circle-o-right: "\f18e";
|
||||
$fa-var-arrow-circle-o-up: "\f01b";
|
||||
$fa-var-arrow-circle-right: "\f0a9";
|
||||
$fa-var-arrow-circle-up: "\f0aa";
|
||||
$fa-var-arrow-down: "\f063";
|
||||
$fa-var-arrow-left: "\f060";
|
||||
$fa-var-arrow-right: "\f061";
|
||||
$fa-var-arrow-up: "\f062";
|
||||
$fa-var-arrows: "\f047";
|
||||
$fa-var-arrows-alt: "\f0b2";
|
||||
$fa-var-arrows-h: "\f07e";
|
||||
$fa-var-arrows-v: "\f07d";
|
||||
$fa-var-asl-interpreting: "\f2a3";
|
||||
$fa-var-assistive-listening-systems: "\f2a2";
|
||||
$fa-var-asterisk: "\f069";
|
||||
$fa-var-at: "\f1fa";
|
||||
$fa-var-audio-description: "\f29e";
|
||||
$fa-var-automobile: "\f1b9";
|
||||
$fa-var-backward: "\f04a";
|
||||
$fa-var-balance-scale: "\f24e";
|
||||
$fa-var-ban: "\f05e";
|
||||
$fa-var-bandcamp: "\f2d5";
|
||||
$fa-var-bank: "\f19c";
|
||||
$fa-var-bar-chart: "\f080";
|
||||
$fa-var-bar-chart-o: "\f080";
|
||||
$fa-var-barcode: "\f02a";
|
||||
$fa-var-bars: "\f0c9";
|
||||
$fa-var-bath: "\f2cd";
|
||||
$fa-var-bathtub: "\f2cd";
|
||||
$fa-var-battery: "\f240";
|
||||
$fa-var-battery-0: "\f244";
|
||||
$fa-var-battery-1: "\f243";
|
||||
$fa-var-battery-2: "\f242";
|
||||
$fa-var-battery-3: "\f241";
|
||||
$fa-var-battery-4: "\f240";
|
||||
$fa-var-battery-empty: "\f244";
|
||||
$fa-var-battery-full: "\f240";
|
||||
$fa-var-battery-half: "\f242";
|
||||
$fa-var-battery-quarter: "\f243";
|
||||
$fa-var-battery-three-quarters: "\f241";
|
||||
$fa-var-bed: "\f236";
|
||||
$fa-var-beer: "\f0fc";
|
||||
$fa-var-behance: "\f1b4";
|
||||
$fa-var-behance-square: "\f1b5";
|
||||
$fa-var-bell: "\f0f3";
|
||||
$fa-var-bell-o: "\f0a2";
|
||||
$fa-var-bell-slash: "\f1f6";
|
||||
$fa-var-bell-slash-o: "\f1f7";
|
||||
$fa-var-bicycle: "\f206";
|
||||
$fa-var-binoculars: "\f1e5";
|
||||
$fa-var-birthday-cake: "\f1fd";
|
||||
$fa-var-bitbucket: "\f171";
|
||||
$fa-var-bitbucket-square: "\f172";
|
||||
$fa-var-bitcoin: "\f15a";
|
||||
$fa-var-black-tie: "\f27e";
|
||||
$fa-var-blind: "\f29d";
|
||||
$fa-var-bluetooth: "\f293";
|
||||
$fa-var-bluetooth-b: "\f294";
|
||||
$fa-var-bold: "\f032";
|
||||
$fa-var-bolt: "\f0e7";
|
||||
$fa-var-bomb: "\f1e2";
|
||||
$fa-var-book: "\f02d";
|
||||
$fa-var-bookmark: "\f02e";
|
||||
$fa-var-bookmark-o: "\f097";
|
||||
$fa-var-braille: "\f2a1";
|
||||
$fa-var-briefcase: "\f0b1";
|
||||
$fa-var-btc: "\f15a";
|
||||
$fa-var-bug: "\f188";
|
||||
$fa-var-building: "\f1ad";
|
||||
$fa-var-building-o: "\f0f7";
|
||||
$fa-var-bullhorn: "\f0a1";
|
||||
$fa-var-bullseye: "\f140";
|
||||
$fa-var-bus: "\f207";
|
||||
$fa-var-buysellads: "\f20d";
|
||||
$fa-var-cab: "\f1ba";
|
||||
$fa-var-calculator: "\f1ec";
|
||||
$fa-var-calendar: "\f073";
|
||||
$fa-var-calendar-check-o: "\f274";
|
||||
$fa-var-calendar-minus-o: "\f272";
|
||||
$fa-var-calendar-o: "\f133";
|
||||
$fa-var-calendar-plus-o: "\f271";
|
||||
$fa-var-calendar-times-o: "\f273";
|
||||
$fa-var-camera: "\f030";
|
||||
$fa-var-camera-retro: "\f083";
|
||||
$fa-var-car: "\f1b9";
|
||||
$fa-var-caret-down: "\f0d7";
|
||||
$fa-var-caret-left: "\f0d9";
|
||||
$fa-var-caret-right: "\f0da";
|
||||
$fa-var-caret-square-o-down: "\f150";
|
||||
$fa-var-caret-square-o-left: "\f191";
|
||||
$fa-var-caret-square-o-right: "\f152";
|
||||
$fa-var-caret-square-o-up: "\f151";
|
||||
$fa-var-caret-up: "\f0d8";
|
||||
$fa-var-cart-arrow-down: "\f218";
|
||||
$fa-var-cart-plus: "\f217";
|
||||
$fa-var-cc: "\f20a";
|
||||
$fa-var-cc-amex: "\f1f3";
|
||||
$fa-var-cc-diners-club: "\f24c";
|
||||
$fa-var-cc-discover: "\f1f2";
|
||||
$fa-var-cc-jcb: "\f24b";
|
||||
$fa-var-cc-mastercard: "\f1f1";
|
||||
$fa-var-cc-paypal: "\f1f4";
|
||||
$fa-var-cc-stripe: "\f1f5";
|
||||
$fa-var-cc-visa: "\f1f0";
|
||||
$fa-var-certificate: "\f0a3";
|
||||
$fa-var-chain: "\f0c1";
|
||||
$fa-var-chain-broken: "\f127";
|
||||
$fa-var-check: "\f00c";
|
||||
$fa-var-check-circle: "\f058";
|
||||
$fa-var-check-circle-o: "\f05d";
|
||||
$fa-var-check-square: "\f14a";
|
||||
$fa-var-check-square-o: "\f046";
|
||||
$fa-var-chevron-circle-down: "\f13a";
|
||||
$fa-var-chevron-circle-left: "\f137";
|
||||
$fa-var-chevron-circle-right: "\f138";
|
||||
$fa-var-chevron-circle-up: "\f139";
|
||||
$fa-var-chevron-down: "\f078";
|
||||
$fa-var-chevron-left: "\f053";
|
||||
$fa-var-chevron-right: "\f054";
|
||||
$fa-var-chevron-up: "\f077";
|
||||
$fa-var-child: "\f1ae";
|
||||
$fa-var-chrome: "\f268";
|
||||
$fa-var-circle: "\f111";
|
||||
$fa-var-circle-o: "\f10c";
|
||||
$fa-var-circle-o-notch: "\f1ce";
|
||||
$fa-var-circle-thin: "\f1db";
|
||||
$fa-var-clipboard: "\f0ea";
|
||||
$fa-var-clock-o: "\f017";
|
||||
$fa-var-clone: "\f24d";
|
||||
$fa-var-close: "\f00d";
|
||||
$fa-var-cloud: "\f0c2";
|
||||
$fa-var-cloud-download: "\f0ed";
|
||||
$fa-var-cloud-upload: "\f0ee";
|
||||
$fa-var-cny: "\f157";
|
||||
$fa-var-code: "\f121";
|
||||
$fa-var-code-fork: "\f126";
|
||||
$fa-var-codepen: "\f1cb";
|
||||
$fa-var-codiepie: "\f284";
|
||||
$fa-var-coffee: "\f0f4";
|
||||
$fa-var-cog: "\f013";
|
||||
$fa-var-cogs: "\f085";
|
||||
$fa-var-columns: "\f0db";
|
||||
$fa-var-comment: "\f075";
|
||||
$fa-var-comment-o: "\f0e5";
|
||||
$fa-var-commenting: "\f27a";
|
||||
$fa-var-commenting-o: "\f27b";
|
||||
$fa-var-comments: "\f086";
|
||||
$fa-var-comments-o: "\f0e6";
|
||||
$fa-var-compass: "\f14e";
|
||||
$fa-var-compress: "\f066";
|
||||
$fa-var-connectdevelop: "\f20e";
|
||||
$fa-var-contao: "\f26d";
|
||||
$fa-var-copy: "\f0c5";
|
||||
$fa-var-copyright: "\f1f9";
|
||||
$fa-var-creative-commons: "\f25e";
|
||||
$fa-var-credit-card: "\f09d";
|
||||
$fa-var-credit-card-alt: "\f283";
|
||||
$fa-var-crop: "\f125";
|
||||
$fa-var-crosshairs: "\f05b";
|
||||
$fa-var-css3: "\f13c";
|
||||
$fa-var-cube: "\f1b2";
|
||||
$fa-var-cubes: "\f1b3";
|
||||
$fa-var-cut: "\f0c4";
|
||||
$fa-var-cutlery: "\f0f5";
|
||||
$fa-var-dashboard: "\f0e4";
|
||||
$fa-var-dashcube: "\f210";
|
||||
$fa-var-database: "\f1c0";
|
||||
$fa-var-deaf: "\f2a4";
|
||||
$fa-var-deafness: "\f2a4";
|
||||
$fa-var-dedent: "\f03b";
|
||||
$fa-var-delicious: "\f1a5";
|
||||
$fa-var-desktop: "\f108";
|
||||
$fa-var-deviantart: "\f1bd";
|
||||
$fa-var-diamond: "\f219";
|
||||
$fa-var-digg: "\f1a6";
|
||||
$fa-var-dollar: "\f155";
|
||||
$fa-var-dot-circle-o: "\f192";
|
||||
$fa-var-download: "\f019";
|
||||
$fa-var-dribbble: "\f17d";
|
||||
$fa-var-drivers-license: "\f2c2";
|
||||
$fa-var-drivers-license-o: "\f2c3";
|
||||
$fa-var-dropbox: "\f16b";
|
||||
$fa-var-drupal: "\f1a9";
|
||||
$fa-var-edge: "\f282";
|
||||
$fa-var-edit: "\f044";
|
||||
$fa-var-eercast: "\f2da";
|
||||
$fa-var-eject: "\f052";
|
||||
$fa-var-ellipsis-h: "\f141";
|
||||
$fa-var-ellipsis-v: "\f142";
|
||||
$fa-var-empire: "\f1d1";
|
||||
$fa-var-envelope: "\f0e0";
|
||||
$fa-var-envelope-o: "\f003";
|
||||
$fa-var-envelope-open: "\f2b6";
|
||||
$fa-var-envelope-open-o: "\f2b7";
|
||||
$fa-var-envelope-square: "\f199";
|
||||
$fa-var-envira: "\f299";
|
||||
$fa-var-eraser: "\f12d";
|
||||
$fa-var-etsy: "\f2d7";
|
||||
$fa-var-eur: "\f153";
|
||||
$fa-var-euro: "\f153";
|
||||
$fa-var-exchange: "\f0ec";
|
||||
$fa-var-exclamation: "\f12a";
|
||||
$fa-var-exclamation-circle: "\f06a";
|
||||
$fa-var-exclamation-triangle: "\f071";
|
||||
$fa-var-expand: "\f065";
|
||||
$fa-var-expeditedssl: "\f23e";
|
||||
$fa-var-external-link: "\f08e";
|
||||
$fa-var-external-link-square: "\f14c";
|
||||
$fa-var-eye: "\f06e";
|
||||
$fa-var-eye-slash: "\f070";
|
||||
$fa-var-eyedropper: "\f1fb";
|
||||
$fa-var-fa: "\f2b4";
|
||||
$fa-var-facebook: "\f09a";
|
||||
$fa-var-facebook-f: "\f09a";
|
||||
$fa-var-facebook-official: "\f230";
|
||||
$fa-var-facebook-square: "\f082";
|
||||
$fa-var-fast-backward: "\f049";
|
||||
$fa-var-fast-forward: "\f050";
|
||||
$fa-var-fax: "\f1ac";
|
||||
$fa-var-feed: "\f09e";
|
||||
$fa-var-female: "\f182";
|
||||
$fa-var-fighter-jet: "\f0fb";
|
||||
$fa-var-file: "\f15b";
|
||||
$fa-var-file-archive-o: "\f1c6";
|
||||
$fa-var-file-audio-o: "\f1c7";
|
||||
$fa-var-file-code-o: "\f1c9";
|
||||
$fa-var-file-excel-o: "\f1c3";
|
||||
$fa-var-file-image-o: "\f1c5";
|
||||
$fa-var-file-movie-o: "\f1c8";
|
||||
$fa-var-file-o: "\f016";
|
||||
$fa-var-file-pdf-o: "\f1c1";
|
||||
$fa-var-file-photo-o: "\f1c5";
|
||||
$fa-var-file-picture-o: "\f1c5";
|
||||
$fa-var-file-powerpoint-o: "\f1c4";
|
||||
$fa-var-file-sound-o: "\f1c7";
|
||||
$fa-var-file-text: "\f15c";
|
||||
$fa-var-file-text-o: "\f0f6";
|
||||
$fa-var-file-video-o: "\f1c8";
|
||||
$fa-var-file-word-o: "\f1c2";
|
||||
$fa-var-file-zip-o: "\f1c6";
|
||||
$fa-var-files-o: "\f0c5";
|
||||
$fa-var-film: "\f008";
|
||||
$fa-var-filter: "\f0b0";
|
||||
$fa-var-fire: "\f06d";
|
||||
$fa-var-fire-extinguisher: "\f134";
|
||||
$fa-var-firefox: "\f269";
|
||||
$fa-var-first-order: "\f2b0";
|
||||
$fa-var-flag: "\f024";
|
||||
$fa-var-flag-checkered: "\f11e";
|
||||
$fa-var-flag-o: "\f11d";
|
||||
$fa-var-flash: "\f0e7";
|
||||
$fa-var-flask: "\f0c3";
|
||||
$fa-var-flickr: "\f16e";
|
||||
$fa-var-floppy-o: "\f0c7";
|
||||
$fa-var-folder: "\f07b";
|
||||
$fa-var-folder-o: "\f114";
|
||||
$fa-var-folder-open: "\f07c";
|
||||
$fa-var-folder-open-o: "\f115";
|
||||
$fa-var-font: "\f031";
|
||||
$fa-var-font-awesome: "\f2b4";
|
||||
$fa-var-fonticons: "\f280";
|
||||
$fa-var-fort-awesome: "\f286";
|
||||
$fa-var-forumbee: "\f211";
|
||||
$fa-var-forward: "\f04e";
|
||||
$fa-var-foursquare: "\f180";
|
||||
$fa-var-free-code-camp: "\f2c5";
|
||||
$fa-var-frown-o: "\f119";
|
||||
$fa-var-futbol-o: "\f1e3";
|
||||
$fa-var-gamepad: "\f11b";
|
||||
$fa-var-gavel: "\f0e3";
|
||||
$fa-var-gbp: "\f154";
|
||||
$fa-var-ge: "\f1d1";
|
||||
$fa-var-gear: "\f013";
|
||||
$fa-var-gears: "\f085";
|
||||
$fa-var-genderless: "\f22d";
|
||||
$fa-var-get-pocket: "\f265";
|
||||
$fa-var-gg: "\f260";
|
||||
$fa-var-gg-circle: "\f261";
|
||||
$fa-var-gift: "\f06b";
|
||||
$fa-var-git: "\f1d3";
|
||||
$fa-var-git-square: "\f1d2";
|
||||
$fa-var-github: "\f09b";
|
||||
$fa-var-github-alt: "\f113";
|
||||
$fa-var-github-square: "\f092";
|
||||
$fa-var-gitlab: "\f296";
|
||||
$fa-var-gittip: "\f184";
|
||||
$fa-var-glass: "\f000";
|
||||
$fa-var-glide: "\f2a5";
|
||||
$fa-var-glide-g: "\f2a6";
|
||||
$fa-var-globe: "\f0ac";
|
||||
$fa-var-google: "\f1a0";
|
||||
$fa-var-google-plus: "\f0d5";
|
||||
$fa-var-google-plus-circle: "\f2b3";
|
||||
$fa-var-google-plus-official: "\f2b3";
|
||||
$fa-var-google-plus-square: "\f0d4";
|
||||
$fa-var-google-wallet: "\f1ee";
|
||||
$fa-var-graduation-cap: "\f19d";
|
||||
$fa-var-gratipay: "\f184";
|
||||
$fa-var-grav: "\f2d6";
|
||||
$fa-var-group: "\f0c0";
|
||||
$fa-var-h-square: "\f0fd";
|
||||
$fa-var-hacker-news: "\f1d4";
|
||||
$fa-var-hand-grab-o: "\f255";
|
||||
$fa-var-hand-lizard-o: "\f258";
|
||||
$fa-var-hand-o-down: "\f0a7";
|
||||
$fa-var-hand-o-left: "\f0a5";
|
||||
$fa-var-hand-o-right: "\f0a4";
|
||||
$fa-var-hand-o-up: "\f0a6";
|
||||
$fa-var-hand-paper-o: "\f256";
|
||||
$fa-var-hand-peace-o: "\f25b";
|
||||
$fa-var-hand-pointer-o: "\f25a";
|
||||
$fa-var-hand-rock-o: "\f255";
|
||||
$fa-var-hand-scissors-o: "\f257";
|
||||
$fa-var-hand-spock-o: "\f259";
|
||||
$fa-var-hand-stop-o: "\f256";
|
||||
$fa-var-handshake-o: "\f2b5";
|
||||
$fa-var-hard-of-hearing: "\f2a4";
|
||||
$fa-var-hashtag: "\f292";
|
||||
$fa-var-hdd-o: "\f0a0";
|
||||
$fa-var-header: "\f1dc";
|
||||
$fa-var-headphones: "\f025";
|
||||
$fa-var-heart: "\f004";
|
||||
$fa-var-heart-o: "\f08a";
|
||||
$fa-var-heartbeat: "\f21e";
|
||||
$fa-var-history: "\f1da";
|
||||
$fa-var-home: "\f015";
|
||||
$fa-var-hospital-o: "\f0f8";
|
||||
$fa-var-hotel: "\f236";
|
||||
$fa-var-hourglass: "\f254";
|
||||
$fa-var-hourglass-1: "\f251";
|
||||
$fa-var-hourglass-2: "\f252";
|
||||
$fa-var-hourglass-3: "\f253";
|
||||
$fa-var-hourglass-end: "\f253";
|
||||
$fa-var-hourglass-half: "\f252";
|
||||
$fa-var-hourglass-o: "\f250";
|
||||
$fa-var-hourglass-start: "\f251";
|
||||
$fa-var-houzz: "\f27c";
|
||||
$fa-var-html5: "\f13b";
|
||||
$fa-var-i-cursor: "\f246";
|
||||
$fa-var-id-badge: "\f2c1";
|
||||
$fa-var-id-card: "\f2c2";
|
||||
$fa-var-id-card-o: "\f2c3";
|
||||
$fa-var-ils: "\f20b";
|
||||
$fa-var-image: "\f03e";
|
||||
$fa-var-imdb: "\f2d8";
|
||||
$fa-var-inbox: "\f01c";
|
||||
$fa-var-indent: "\f03c";
|
||||
$fa-var-industry: "\f275";
|
||||
$fa-var-info: "\f129";
|
||||
$fa-var-info-circle: "\f05a";
|
||||
$fa-var-inr: "\f156";
|
||||
$fa-var-instagram: "\f16d";
|
||||
$fa-var-institution: "\f19c";
|
||||
$fa-var-internet-explorer: "\f26b";
|
||||
$fa-var-intersex: "\f224";
|
||||
$fa-var-ioxhost: "\f208";
|
||||
$fa-var-italic: "\f033";
|
||||
$fa-var-joomla: "\f1aa";
|
||||
$fa-var-jpy: "\f157";
|
||||
$fa-var-jsfiddle: "\f1cc";
|
||||
$fa-var-key: "\f084";
|
||||
$fa-var-keyboard-o: "\f11c";
|
||||
$fa-var-krw: "\f159";
|
||||
$fa-var-language: "\f1ab";
|
||||
$fa-var-laptop: "\f109";
|
||||
$fa-var-lastfm: "\f202";
|
||||
$fa-var-lastfm-square: "\f203";
|
||||
$fa-var-leaf: "\f06c";
|
||||
$fa-var-leanpub: "\f212";
|
||||
$fa-var-legal: "\f0e3";
|
||||
$fa-var-lemon-o: "\f094";
|
||||
$fa-var-level-down: "\f149";
|
||||
$fa-var-level-up: "\f148";
|
||||
$fa-var-life-bouy: "\f1cd";
|
||||
$fa-var-life-buoy: "\f1cd";
|
||||
$fa-var-life-ring: "\f1cd";
|
||||
$fa-var-life-saver: "\f1cd";
|
||||
$fa-var-lightbulb-o: "\f0eb";
|
||||
$fa-var-line-chart: "\f201";
|
||||
$fa-var-link: "\f0c1";
|
||||
$fa-var-linkedin: "\f0e1";
|
||||
$fa-var-linkedin-square: "\f08c";
|
||||
$fa-var-linode: "\f2b8";
|
||||
$fa-var-linux: "\f17c";
|
||||
$fa-var-list: "\f03a";
|
||||
$fa-var-list-alt: "\f022";
|
||||
$fa-var-list-ol: "\f0cb";
|
||||
$fa-var-list-ul: "\f0ca";
|
||||
$fa-var-location-arrow: "\f124";
|
||||
$fa-var-lock: "\f023";
|
||||
$fa-var-long-arrow-down: "\f175";
|
||||
$fa-var-long-arrow-left: "\f177";
|
||||
$fa-var-long-arrow-right: "\f178";
|
||||
$fa-var-long-arrow-up: "\f176";
|
||||
$fa-var-low-vision: "\f2a8";
|
||||
$fa-var-magic: "\f0d0";
|
||||
$fa-var-magnet: "\f076";
|
||||
$fa-var-mail-forward: "\f064";
|
||||
$fa-var-mail-reply: "\f112";
|
||||
$fa-var-mail-reply-all: "\f122";
|
||||
$fa-var-male: "\f183";
|
||||
$fa-var-map: "\f279";
|
||||
$fa-var-map-marker: "\f041";
|
||||
$fa-var-map-o: "\f278";
|
||||
$fa-var-map-pin: "\f276";
|
||||
$fa-var-map-signs: "\f277";
|
||||
$fa-var-mars: "\f222";
|
||||
$fa-var-mars-double: "\f227";
|
||||
$fa-var-mars-stroke: "\f229";
|
||||
$fa-var-mars-stroke-h: "\f22b";
|
||||
$fa-var-mars-stroke-v: "\f22a";
|
||||
$fa-var-maxcdn: "\f136";
|
||||
$fa-var-meanpath: "\f20c";
|
||||
$fa-var-medium: "\f23a";
|
||||
$fa-var-medkit: "\f0fa";
|
||||
$fa-var-meetup: "\f2e0";
|
||||
$fa-var-meh-o: "\f11a";
|
||||
$fa-var-mercury: "\f223";
|
||||
$fa-var-microchip: "\f2db";
|
||||
$fa-var-microphone: "\f130";
|
||||
$fa-var-microphone-slash: "\f131";
|
||||
$fa-var-minus: "\f068";
|
||||
$fa-var-minus-circle: "\f056";
|
||||
$fa-var-minus-square: "\f146";
|
||||
$fa-var-minus-square-o: "\f147";
|
||||
$fa-var-mixcloud: "\f289";
|
||||
$fa-var-mobile: "\f10b";
|
||||
$fa-var-mobile-phone: "\f10b";
|
||||
$fa-var-modx: "\f285";
|
||||
$fa-var-money: "\f0d6";
|
||||
$fa-var-moon-o: "\f186";
|
||||
$fa-var-mortar-board: "\f19d";
|
||||
$fa-var-motorcycle: "\f21c";
|
||||
$fa-var-mouse-pointer: "\f245";
|
||||
$fa-var-music: "\f001";
|
||||
$fa-var-navicon: "\f0c9";
|
||||
$fa-var-neuter: "\f22c";
|
||||
$fa-var-newspaper-o: "\f1ea";
|
||||
$fa-var-object-group: "\f247";
|
||||
$fa-var-object-ungroup: "\f248";
|
||||
$fa-var-odnoklassniki: "\f263";
|
||||
$fa-var-odnoklassniki-square: "\f264";
|
||||
$fa-var-opencart: "\f23d";
|
||||
$fa-var-openid: "\f19b";
|
||||
$fa-var-opera: "\f26a";
|
||||
$fa-var-optin-monster: "\f23c";
|
||||
$fa-var-outdent: "\f03b";
|
||||
$fa-var-pagelines: "\f18c";
|
||||
$fa-var-paint-brush: "\f1fc";
|
||||
$fa-var-paper-plane: "\f1d8";
|
||||
$fa-var-paper-plane-o: "\f1d9";
|
||||
$fa-var-paperclip: "\f0c6";
|
||||
$fa-var-paragraph: "\f1dd";
|
||||
$fa-var-paste: "\f0ea";
|
||||
$fa-var-pause: "\f04c";
|
||||
$fa-var-pause-circle: "\f28b";
|
||||
$fa-var-pause-circle-o: "\f28c";
|
||||
$fa-var-paw: "\f1b0";
|
||||
$fa-var-paypal: "\f1ed";
|
||||
$fa-var-pencil: "\f040";
|
||||
$fa-var-pencil-square: "\f14b";
|
||||
$fa-var-pencil-square-o: "\f044";
|
||||
$fa-var-percent: "\f295";
|
||||
$fa-var-phone: "\f095";
|
||||
$fa-var-phone-square: "\f098";
|
||||
$fa-var-photo: "\f03e";
|
||||
$fa-var-picture-o: "\f03e";
|
||||
$fa-var-pie-chart: "\f200";
|
||||
$fa-var-pied-piper: "\f2ae";
|
||||
$fa-var-pied-piper-alt: "\f1a8";
|
||||
$fa-var-pied-piper-pp: "\f1a7";
|
||||
$fa-var-pinterest: "\f0d2";
|
||||
$fa-var-pinterest-p: "\f231";
|
||||
$fa-var-pinterest-square: "\f0d3";
|
||||
$fa-var-plane: "\f072";
|
||||
$fa-var-play: "\f04b";
|
||||
$fa-var-play-circle: "\f144";
|
||||
$fa-var-play-circle-o: "\f01d";
|
||||
$fa-var-plug: "\f1e6";
|
||||
$fa-var-plus: "\f067";
|
||||
$fa-var-plus-circle: "\f055";
|
||||
$fa-var-plus-square: "\f0fe";
|
||||
$fa-var-plus-square-o: "\f196";
|
||||
$fa-var-podcast: "\f2ce";
|
||||
$fa-var-power-off: "\f011";
|
||||
$fa-var-print: "\f02f";
|
||||
$fa-var-product-hunt: "\f288";
|
||||
$fa-var-puzzle-piece: "\f12e";
|
||||
$fa-var-qq: "\f1d6";
|
||||
$fa-var-qrcode: "\f029";
|
||||
$fa-var-question: "\f128";
|
||||
$fa-var-question-circle: "\f059";
|
||||
$fa-var-question-circle-o: "\f29c";
|
||||
$fa-var-quora: "\f2c4";
|
||||
$fa-var-quote-left: "\f10d";
|
||||
$fa-var-quote-right: "\f10e";
|
||||
$fa-var-ra: "\f1d0";
|
||||
$fa-var-random: "\f074";
|
||||
$fa-var-ravelry: "\f2d9";
|
||||
$fa-var-rebel: "\f1d0";
|
||||
$fa-var-recycle: "\f1b8";
|
||||
$fa-var-reddit: "\f1a1";
|
||||
$fa-var-reddit-alien: "\f281";
|
||||
$fa-var-reddit-square: "\f1a2";
|
||||
$fa-var-refresh: "\f021";
|
||||
$fa-var-registered: "\f25d";
|
||||
$fa-var-remove: "\f00d";
|
||||
$fa-var-renren: "\f18b";
|
||||
$fa-var-reorder: "\f0c9";
|
||||
$fa-var-repeat: "\f01e";
|
||||
$fa-var-reply: "\f112";
|
||||
$fa-var-reply-all: "\f122";
|
||||
$fa-var-resistance: "\f1d0";
|
||||
$fa-var-retweet: "\f079";
|
||||
$fa-var-rmb: "\f157";
|
||||
$fa-var-road: "\f018";
|
||||
$fa-var-rocket: "\f135";
|
||||
$fa-var-rotate-left: "\f0e2";
|
||||
$fa-var-rotate-right: "\f01e";
|
||||
$fa-var-rouble: "\f158";
|
||||
$fa-var-rss: "\f09e";
|
||||
$fa-var-rss-square: "\f143";
|
||||
$fa-var-rub: "\f158";
|
||||
$fa-var-ruble: "\f158";
|
||||
$fa-var-rupee: "\f156";
|
||||
$fa-var-s15: "\f2cd";
|
||||
$fa-var-safari: "\f267";
|
||||
$fa-var-save: "\f0c7";
|
||||
$fa-var-scissors: "\f0c4";
|
||||
$fa-var-scribd: "\f28a";
|
||||
$fa-var-search: "\f002";
|
||||
$fa-var-search-minus: "\f010";
|
||||
$fa-var-search-plus: "\f00e";
|
||||
$fa-var-sellsy: "\f213";
|
||||
$fa-var-send: "\f1d8";
|
||||
$fa-var-send-o: "\f1d9";
|
||||
$fa-var-server: "\f233";
|
||||
$fa-var-share: "\f064";
|
||||
$fa-var-share-alt: "\f1e0";
|
||||
$fa-var-share-alt-square: "\f1e1";
|
||||
$fa-var-share-square: "\f14d";
|
||||
$fa-var-share-square-o: "\f045";
|
||||
$fa-var-shekel: "\f20b";
|
||||
$fa-var-sheqel: "\f20b";
|
||||
$fa-var-shield: "\f132";
|
||||
$fa-var-ship: "\f21a";
|
||||
$fa-var-shirtsinbulk: "\f214";
|
||||
$fa-var-shopping-bag: "\f290";
|
||||
$fa-var-shopping-basket: "\f291";
|
||||
$fa-var-shopping-cart: "\f07a";
|
||||
$fa-var-shower: "\f2cc";
|
||||
$fa-var-sign-in: "\f090";
|
||||
$fa-var-sign-language: "\f2a7";
|
||||
$fa-var-sign-out: "\f08b";
|
||||
$fa-var-signal: "\f012";
|
||||
$fa-var-signing: "\f2a7";
|
||||
$fa-var-simplybuilt: "\f215";
|
||||
$fa-var-sitemap: "\f0e8";
|
||||
$fa-var-skyatlas: "\f216";
|
||||
$fa-var-skype: "\f17e";
|
||||
$fa-var-slack: "\f198";
|
||||
$fa-var-sliders: "\f1de";
|
||||
$fa-var-slideshare: "\f1e7";
|
||||
$fa-var-smile-o: "\f118";
|
||||
$fa-var-snapchat: "\f2ab";
|
||||
$fa-var-snapchat-ghost: "\f2ac";
|
||||
$fa-var-snapchat-square: "\f2ad";
|
||||
$fa-var-snowflake-o: "\f2dc";
|
||||
$fa-var-soccer-ball-o: "\f1e3";
|
||||
$fa-var-sort: "\f0dc";
|
||||
$fa-var-sort-alpha-asc: "\f15d";
|
||||
$fa-var-sort-alpha-desc: "\f15e";
|
||||
$fa-var-sort-amount-asc: "\f160";
|
||||
$fa-var-sort-amount-desc: "\f161";
|
||||
$fa-var-sort-asc: "\f0de";
|
||||
$fa-var-sort-desc: "\f0dd";
|
||||
$fa-var-sort-down: "\f0dd";
|
||||
$fa-var-sort-numeric-asc: "\f162";
|
||||
$fa-var-sort-numeric-desc: "\f163";
|
||||
$fa-var-sort-up: "\f0de";
|
||||
$fa-var-soundcloud: "\f1be";
|
||||
$fa-var-space-shuttle: "\f197";
|
||||
$fa-var-spinner: "\f110";
|
||||
$fa-var-spoon: "\f1b1";
|
||||
$fa-var-spotify: "\f1bc";
|
||||
$fa-var-square: "\f0c8";
|
||||
$fa-var-square-o: "\f096";
|
||||
$fa-var-stack-exchange: "\f18d";
|
||||
$fa-var-stack-overflow: "\f16c";
|
||||
$fa-var-star: "\f005";
|
||||
$fa-var-star-half: "\f089";
|
||||
$fa-var-star-half-empty: "\f123";
|
||||
$fa-var-star-half-full: "\f123";
|
||||
$fa-var-star-half-o: "\f123";
|
||||
$fa-var-star-o: "\f006";
|
||||
$fa-var-steam: "\f1b6";
|
||||
$fa-var-steam-square: "\f1b7";
|
||||
$fa-var-step-backward: "\f048";
|
||||
$fa-var-step-forward: "\f051";
|
||||
$fa-var-stethoscope: "\f0f1";
|
||||
$fa-var-sticky-note: "\f249";
|
||||
$fa-var-sticky-note-o: "\f24a";
|
||||
$fa-var-stop: "\f04d";
|
||||
$fa-var-stop-circle: "\f28d";
|
||||
$fa-var-stop-circle-o: "\f28e";
|
||||
$fa-var-street-view: "\f21d";
|
||||
$fa-var-strikethrough: "\f0cc";
|
||||
$fa-var-stumbleupon: "\f1a4";
|
||||
$fa-var-stumbleupon-circle: "\f1a3";
|
||||
$fa-var-subscript: "\f12c";
|
||||
$fa-var-subway: "\f239";
|
||||
$fa-var-suitcase: "\f0f2";
|
||||
$fa-var-sun-o: "\f185";
|
||||
$fa-var-superpowers: "\f2dd";
|
||||
$fa-var-superscript: "\f12b";
|
||||
$fa-var-support: "\f1cd";
|
||||
$fa-var-table: "\f0ce";
|
||||
$fa-var-tablet: "\f10a";
|
||||
$fa-var-tachometer: "\f0e4";
|
||||
$fa-var-tag: "\f02b";
|
||||
$fa-var-tags: "\f02c";
|
||||
$fa-var-tasks: "\f0ae";
|
||||
$fa-var-taxi: "\f1ba";
|
||||
$fa-var-telegram: "\f2c6";
|
||||
$fa-var-television: "\f26c";
|
||||
$fa-var-tencent-weibo: "\f1d5";
|
||||
$fa-var-terminal: "\f120";
|
||||
$fa-var-text-height: "\f034";
|
||||
$fa-var-text-width: "\f035";
|
||||
$fa-var-th: "\f00a";
|
||||
$fa-var-th-large: "\f009";
|
||||
$fa-var-th-list: "\f00b";
|
||||
$fa-var-themeisle: "\f2b2";
|
||||
$fa-var-thermometer: "\f2c7";
|
||||
$fa-var-thermometer-0: "\f2cb";
|
||||
$fa-var-thermometer-1: "\f2ca";
|
||||
$fa-var-thermometer-2: "\f2c9";
|
||||
$fa-var-thermometer-3: "\f2c8";
|
||||
$fa-var-thermometer-4: "\f2c7";
|
||||
$fa-var-thermometer-empty: "\f2cb";
|
||||
$fa-var-thermometer-full: "\f2c7";
|
||||
$fa-var-thermometer-half: "\f2c9";
|
||||
$fa-var-thermometer-quarter: "\f2ca";
|
||||
$fa-var-thermometer-three-quarters: "\f2c8";
|
||||
$fa-var-thumb-tack: "\f08d";
|
||||
$fa-var-thumbs-down: "\f165";
|
||||
$fa-var-thumbs-o-down: "\f088";
|
||||
$fa-var-thumbs-o-up: "\f087";
|
||||
$fa-var-thumbs-up: "\f164";
|
||||
$fa-var-ticket: "\f145";
|
||||
$fa-var-times: "\f00d";
|
||||
$fa-var-times-circle: "\f057";
|
||||
$fa-var-times-circle-o: "\f05c";
|
||||
$fa-var-times-rectangle: "\f2d3";
|
||||
$fa-var-times-rectangle-o: "\f2d4";
|
||||
$fa-var-tint: "\f043";
|
||||
$fa-var-toggle-down: "\f150";
|
||||
$fa-var-toggle-left: "\f191";
|
||||
$fa-var-toggle-off: "\f204";
|
||||
$fa-var-toggle-on: "\f205";
|
||||
$fa-var-toggle-right: "\f152";
|
||||
$fa-var-toggle-up: "\f151";
|
||||
$fa-var-trademark: "\f25c";
|
||||
$fa-var-train: "\f238";
|
||||
$fa-var-transgender: "\f224";
|
||||
$fa-var-transgender-alt: "\f225";
|
||||
$fa-var-trash: "\f1f8";
|
||||
$fa-var-trash-o: "\f014";
|
||||
$fa-var-tree: "\f1bb";
|
||||
$fa-var-trello: "\f181";
|
||||
$fa-var-tripadvisor: "\f262";
|
||||
$fa-var-trophy: "\f091";
|
||||
$fa-var-truck: "\f0d1";
|
||||
$fa-var-try: "\f195";
|
||||
$fa-var-tty: "\f1e4";
|
||||
$fa-var-tumblr: "\f173";
|
||||
$fa-var-tumblr-square: "\f174";
|
||||
$fa-var-turkish-lira: "\f195";
|
||||
$fa-var-tv: "\f26c";
|
||||
$fa-var-twitch: "\f1e8";
|
||||
$fa-var-twitter: "\f099";
|
||||
$fa-var-twitter-square: "\f081";
|
||||
$fa-var-umbrella: "\f0e9";
|
||||
$fa-var-underline: "\f0cd";
|
||||
$fa-var-undo: "\f0e2";
|
||||
$fa-var-universal-access: "\f29a";
|
||||
$fa-var-university: "\f19c";
|
||||
$fa-var-unlink: "\f127";
|
||||
$fa-var-unlock: "\f09c";
|
||||
$fa-var-unlock-alt: "\f13e";
|
||||
$fa-var-unsorted: "\f0dc";
|
||||
$fa-var-upload: "\f093";
|
||||
$fa-var-usb: "\f287";
|
||||
$fa-var-usd: "\f155";
|
||||
$fa-var-user: "\f007";
|
||||
$fa-var-user-circle: "\f2bd";
|
||||
$fa-var-user-circle-o: "\f2be";
|
||||
$fa-var-user-md: "\f0f0";
|
||||
$fa-var-user-o: "\f2c0";
|
||||
$fa-var-user-plus: "\f234";
|
||||
$fa-var-user-secret: "\f21b";
|
||||
$fa-var-user-times: "\f235";
|
||||
$fa-var-users: "\f0c0";
|
||||
$fa-var-vcard: "\f2bb";
|
||||
$fa-var-vcard-o: "\f2bc";
|
||||
$fa-var-venus: "\f221";
|
||||
$fa-var-venus-double: "\f226";
|
||||
$fa-var-venus-mars: "\f228";
|
||||
$fa-var-viacoin: "\f237";
|
||||
$fa-var-viadeo: "\f2a9";
|
||||
$fa-var-viadeo-square: "\f2aa";
|
||||
$fa-var-video-camera: "\f03d";
|
||||
$fa-var-vimeo: "\f27d";
|
||||
$fa-var-vimeo-square: "\f194";
|
||||
$fa-var-vine: "\f1ca";
|
||||
$fa-var-vk: "\f189";
|
||||
$fa-var-volume-control-phone: "\f2a0";
|
||||
$fa-var-volume-down: "\f027";
|
||||
$fa-var-volume-off: "\f026";
|
||||
$fa-var-volume-up: "\f028";
|
||||
$fa-var-warning: "\f071";
|
||||
$fa-var-wechat: "\f1d7";
|
||||
$fa-var-weibo: "\f18a";
|
||||
$fa-var-weixin: "\f1d7";
|
||||
$fa-var-whatsapp: "\f232";
|
||||
$fa-var-wheelchair: "\f193";
|
||||
$fa-var-wheelchair-alt: "\f29b";
|
||||
$fa-var-wifi: "\f1eb";
|
||||
$fa-var-wikipedia-w: "\f266";
|
||||
$fa-var-window-close: "\f2d3";
|
||||
$fa-var-window-close-o: "\f2d4";
|
||||
$fa-var-window-maximize: "\f2d0";
|
||||
$fa-var-window-minimize: "\f2d1";
|
||||
$fa-var-window-restore: "\f2d2";
|
||||
$fa-var-windows: "\f17a";
|
||||
$fa-var-won: "\f159";
|
||||
$fa-var-wordpress: "\f19a";
|
||||
$fa-var-wpbeginner: "\f297";
|
||||
$fa-var-wpexplorer: "\f2de";
|
||||
$fa-var-wpforms: "\f298";
|
||||
$fa-var-wrench: "\f0ad";
|
||||
$fa-var-xing: "\f168";
|
||||
$fa-var-xing-square: "\f169";
|
||||
$fa-var-y-combinator: "\f23b";
|
||||
$fa-var-y-combinator-square: "\f1d4";
|
||||
$fa-var-yahoo: "\f19e";
|
||||
$fa-var-yc: "\f23b";
|
||||
$fa-var-yc-square: "\f1d4";
|
||||
$fa-var-yelp: "\f1e9";
|
||||
$fa-var-yen: "\f157";
|
||||
$fa-var-yoast: "\f2b1";
|
||||
$fa-var-youtube: "\f167";
|
||||
$fa-var-youtube-play: "\f16a";
|
||||
$fa-var-youtube-square: "\f166";
|
||||
|
||||
18
src/main/resources/static/css/font-awesome/scss/font-awesome.scss
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
/*!
|
||||
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
*/
|
||||
|
||||
@import "variables";
|
||||
@import "mixins";
|
||||
@import "path";
|
||||
@import "core";
|
||||
@import "larger";
|
||||
@import "fixed-width";
|
||||
@import "list";
|
||||
@import "bordered-pulled";
|
||||
@import "animated";
|
||||
@import "rotated-flipped";
|
||||
@import "stacked";
|
||||
@import "icons";
|
||||
@import "screen-reader";
|
||||
BIN
src/main/resources/static/css/fonts/PretendardVariable.woff2
Normal file
734
src/main/resources/static/css/main.css
Normal file
@@ -0,0 +1,734 @@
|
||||
@charset "utf-8";
|
||||
|
||||
/* =========================== MAIN VISUAL
|
||||
*/
|
||||
#mainVisual {
|
||||
position:relative;
|
||||
height:clamp(470px, calc(34.82vw + 303px), 860px);
|
||||
border-radius:0 0 50px 50px;
|
||||
overflow:hidden
|
||||
}
|
||||
#mainVisual::before {
|
||||
z-index:2; position:absolute; content:""; inset:0%;
|
||||
width:100%; height:100%; background-color:rgba(0,0,0,0.3)
|
||||
}
|
||||
#mainVisual .main_slider_wrap { width:100%; height:100% }
|
||||
#mainVisual .MainSwiper { width:100%; height:100% }
|
||||
#mainVisual .swiper-slide {
|
||||
height:100%; background-repeat:no-repeat;
|
||||
background-position:center; background-size:cover
|
||||
}
|
||||
#mainVisual .list1 { background-image:url("../img/main/main_vs01.jpg") }
|
||||
#mainVisual .list2 { background-image:url("../img/main/main_vs02.jpg") }
|
||||
#mainVisual .list3 { background-image:url("../img/main/main_vs03.jpg") }
|
||||
|
||||
#mainVisual .txt_wrap {
|
||||
position:absolute; top:0; left:0;
|
||||
display:flex; flex-direction:column; justify-content:flex-end;
|
||||
padding-bottom:160px;
|
||||
padding-left:calc((100% - var(--mainsize))/2);
|
||||
width:100%; height:100%; z-index:3
|
||||
}
|
||||
#mainVisual .txt_wrap .txt_box { padding-bottom:140px }
|
||||
.txt_box {
|
||||
transition: opacity 0.6s ease;
|
||||
}
|
||||
.txt_box.is-changing {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
#mainVisual .txt_wrap .txt_box .sub-tit {
|
||||
padding-bottom:clamp(8px, 1.25vw, 20px);
|
||||
font-size:clamp(2.6rem, calc(2.59vw + 1.4rem), 5.5rem);
|
||||
line-height:1.18;
|
||||
font-weight:300;
|
||||
white-space:pre-line;
|
||||
color:#fff;
|
||||
word-break:keep-all;
|
||||
margin-top: -0.5em;
|
||||
}
|
||||
#mainVisual .txt_wrap .txt_box .sub-tit b { font-weight:700 }
|
||||
#mainVisual .txt_wrap .txt_box .main-tit {
|
||||
font-size:clamp(1.5rem, calc(0.27vw + 1.457rem), 1.8rem);
|
||||
line-height:1.5;
|
||||
font-weight:500;
|
||||
color:var(--primary);
|
||||
font-family:var(--e-font);
|
||||
letter-spacing:4pt;
|
||||
word-break:keep-all;
|
||||
}
|
||||
@keyframes txtSlideDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* 초기 상태 — 애니메이션 전엔 숨김 */
|
||||
.txt_box .main-tit,
|
||||
.txt_box .sub-tit,
|
||||
.txt_box .visual-btn-wrap {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
/* animate-in 클래스 붙으면 시간차 실행 */
|
||||
.txt_box.animate-in .main-tit {
|
||||
animation: txtSlideDown 0.7s ease forwards;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
.txt_box.animate-in .sub-tit {
|
||||
animation: txtSlideDown 0.7s ease forwards;
|
||||
animation-delay: 0.15s;
|
||||
}
|
||||
.txt_box.animate-in .visual-btn-wrap {
|
||||
animation: txtSlideDown 0.7s ease forwards;
|
||||
animation-delay: 0.3s;
|
||||
}
|
||||
|
||||
/* swiper controller */
|
||||
#mainVisual .txt_wrap .swiper-controller {
|
||||
display:flex; align-items:center;
|
||||
gap:clamp(14px, 1.875vw, 30px)
|
||||
}
|
||||
#mainVisual .txt_wrap .swiper-controller .btn-nav { all:unset; cursor:pointer }
|
||||
#mainVisual .txt_wrap .swiper-controller .btn-nav svg {
|
||||
stroke:#a9b3b9; transform:translateY(1.5px); transition:stroke 0.2s
|
||||
}
|
||||
#mainVisual .txt_wrap .swiper-controller .console-box {
|
||||
display:flex; align-items:center; gap:clamp(12px, 1.25vw, 20px)
|
||||
}
|
||||
#mainVisual .txt_wrap .swiper-controller .console-box span {
|
||||
font-family:var(--e-font);
|
||||
font-size:clamp(1.3rem, calc(0.18vw + 1.271rem), 1.5rem);
|
||||
font-weight:700; color:#fff
|
||||
}
|
||||
#mainVisual .txt_wrap .swiper-controller .console-box .swiper-pagination {
|
||||
position:static; display:flex; align-items:center; gap:10px
|
||||
}
|
||||
#mainVisual .txt_wrap .swiper-controller .console-box .swiper-pagination .swiper-pagination-bullet {
|
||||
width:7px; height:7px; background:#fff; opacity:0.5;
|
||||
border-radius:100px; transition:all 0.2s
|
||||
}
|
||||
#mainVisual .txt_wrap .swiper-controller .console-box .swiper-pagination .swiper-pagination-bullet-active {
|
||||
width:47px; opacity:1
|
||||
}
|
||||
|
||||
/* visual 버튼 */
|
||||
.visual-btn-wrap {
|
||||
display:flex; align-items:center; gap:10px;
|
||||
margin-top:clamp(28px, 3.125vw, 50px); flex-wrap:wrap;
|
||||
}
|
||||
.visual-btn {
|
||||
display:inline-flex; align-items:center;
|
||||
gap:clamp(20px, 2.5vw, 40px);
|
||||
padding:15px clamp(22px, 1.875vw, 30px);
|
||||
height:clamp(50px, 3.375vw, 54px);
|
||||
border-radius:100px;
|
||||
font-family:var(--k-font);
|
||||
font-size:clamp(1.4rem, calc(0.36vw + 1.224rem), 1.8rem);
|
||||
font-weight:600; letter-spacing:0.01em; white-space:nowrap;
|
||||
transition:background-color .25s, color .25s, border-color .25s, transform .2s;
|
||||
}
|
||||
.visual-btn.btn-white {
|
||||
background-color:#fff;
|
||||
color:var(--navy);
|
||||
border:2px solid #fff;
|
||||
}
|
||||
.visual-btn.btn-primary {
|
||||
background-color:var(--primary);
|
||||
color:#fff;
|
||||
border:2px solid var(--primary);
|
||||
}
|
||||
.visual-btn .material-icons-round {
|
||||
font-size:clamp(1.8rem, 1.25vw, 2rem);
|
||||
transition:transform .2s;
|
||||
}
|
||||
|
||||
#mainVisual .scroll-mark {
|
||||
position:absolute; z-index:3; bottom:0; right:75px;
|
||||
display:flex; flex-direction:column; align-items:center; gap:14px;
|
||||
font-family:var(--e-font);
|
||||
font-size:clamp(1.1rem, calc(0.18vw + 1.071rem), 1.3rem);
|
||||
font-weight:600; color:#fff
|
||||
}
|
||||
#mainVisual .scroll-mark .scroll-text { writing-mode:vertical-lr; letter-spacing:0.08em; }
|
||||
#mainVisual .scroll-mark .scroll-line {
|
||||
position:relative; width:1px; height:100px;
|
||||
background-color:rgba(255,255,255,0.3);
|
||||
overflow:hidden;
|
||||
}
|
||||
#mainVisual .scroll-mark .scroll-bar {
|
||||
position:absolute; top:0; left:0; width:100%; height:35px;
|
||||
background:linear-gradient(to bottom, transparent, #fff);
|
||||
animation:scrollLine 1.8s ease-in-out infinite;
|
||||
}
|
||||
@keyframes scrollLine {
|
||||
0% { transform:translateY(-35px); opacity:0; }
|
||||
20% { opacity:1; }
|
||||
80% { opacity:1; }
|
||||
100% { transform:translateY(100px); opacity:0; }
|
||||
}
|
||||
|
||||
@media (hover:hover) {
|
||||
#mainVisual .txt_wrap .swiper-controller .btn-nav:hover svg { stroke:#fff; }
|
||||
.visual-btn.btn-white:hover { background-color:transparent; color:#fff; transform:translateY(-2px); }
|
||||
.visual-btn.btn-primary:hover { background-color:transparent; border-color:#fff; transform:translateY(-2px); }
|
||||
.visual-btn:hover .material-icons-round { transform:translateX(3px); }
|
||||
}
|
||||
|
||||
@media (max-width:1600px) {
|
||||
#mainVisual::before { background-color:rgba(0,0,0,0.5); }
|
||||
#mainVisual .txt_wrap {
|
||||
top:50%; transform:translateY(-50%);
|
||||
justify-content:center; align-items:center;
|
||||
padding:0 20px; text-align:center;
|
||||
padding-left:20px
|
||||
}
|
||||
#mainVisual .txt_wrap .txt_box { padding-bottom:45px; }
|
||||
#mainVisual .scroll-mark {
|
||||
bottom:0; right:20px; transform:translateX(50%); writing-mode:unset;
|
||||
}
|
||||
.visual-btn-wrap {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
}
|
||||
@media (max-width:768px) {
|
||||
#mainVisual { border-radius:0; }
|
||||
#mainVisual .txt_wrap {top:50%; transform: translateY(-45%);}
|
||||
#mainVisual .txt_wrap .txt_box { padding-bottom:35px; }
|
||||
#mainVisual .txt_wrap .swiper-controller .console-box .swiper-pagination { gap:8px; }
|
||||
}
|
||||
@media (max-width:480px) {
|
||||
#mainVisual .scroll-mark { display:none; }
|
||||
}
|
||||
|
||||
|
||||
/* =========================== atc01
|
||||
*/
|
||||
#inc01 {
|
||||
overflow:hidden;
|
||||
padding-top:clamp(70px, calc(13.22vw - 32px), 180px);
|
||||
}
|
||||
#inc01 .group-cont {
|
||||
display:flex; flex-direction:column;
|
||||
gap:clamp(20px, 2.8125vw, 45px);
|
||||
}
|
||||
#inc01 .tab-menu {
|
||||
display:flex; align-items:center; justify-content:center;
|
||||
gap:clamp(20px, 3.125vw, 50px);
|
||||
}
|
||||
#inc01 .tab-menu li {
|
||||
font-size:clamp(1.4rem, calc(0.98vw + 0.93rem), 2.5rem);
|
||||
font-weight:700; color:#ccc; word-break:keep-all; cursor:pointer;
|
||||
}
|
||||
#inc01 .full-w { display:flex; width:100% }
|
||||
#inc01 .tab-cont { display:flex; gap:clamp(12px, 1.75vw, 28px) }
|
||||
#inc01 .tab-cont li {
|
||||
position:relative;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
width:222px;
|
||||
height:clamp(400px, calc(20vw + 157px), 523px);
|
||||
border-radius:20px; overflow:hidden;
|
||||
transition:width 0.8s;
|
||||
cursor:pointer;
|
||||
}
|
||||
#inc01 .tab-cont li .text-box {
|
||||
opacity:0;
|
||||
visibility:hidden;
|
||||
position:relative;
|
||||
z-index:2;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
align-items:center;
|
||||
gap:clamp(12px, 1.875vw, 30px);
|
||||
padding:0 15px;
|
||||
text-align:center;
|
||||
color:#fff;
|
||||
transition:opacity 0.15s ease, visibility 0s 0.15s
|
||||
}
|
||||
#inc01 .tab-cont li .text-box h3 {
|
||||
font-size:clamp(1.6rem, calc(0.8vw + 1.2rem), 2.5rem);
|
||||
font-weight:700;
|
||||
line-height:1.4;
|
||||
white-space:pre-line;
|
||||
word-break:keep-all;
|
||||
}
|
||||
#inc01 .tab-cont li .text-box .tag-wrap {
|
||||
display:flex;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
gap:7px;
|
||||
flex-wrap:wrap;
|
||||
}
|
||||
#inc01 .tab-cont li .text-box .tag-wrap span {
|
||||
display:flex;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
font-size:clamp(1.3rem, calc(0.27vw + 1.27rem), 1.6rem);
|
||||
font-weight:700;
|
||||
padding:clamp(5px, 0.625vw, 10px) clamp(10px, 0.8125vw, 13px);
|
||||
background:rgba(255,255,255,0.15);
|
||||
border-radius:100px;
|
||||
word-break:keep-all;
|
||||
}
|
||||
#inc01 .tab-cont li .bg {
|
||||
position:absolute;
|
||||
width:100%;
|
||||
height:100%;
|
||||
top:0;
|
||||
left:0;
|
||||
}
|
||||
#inc01 .tab-cont li .bg::before {
|
||||
opacity:0;
|
||||
visibility:hidden;
|
||||
z-index:1;
|
||||
position:absolute;
|
||||
content:'';
|
||||
inset:0%;
|
||||
width:100%;
|
||||
height:100%;
|
||||
background-color:rgba(22,54,105,0.5);
|
||||
transition:opacity 0.15s ease, visibility 0s 0.15s;
|
||||
}
|
||||
#inc01 .tab-cont li .bg img {
|
||||
width:100%;
|
||||
height:100%;
|
||||
object-fit:cover;
|
||||
transform:scale(1);
|
||||
transition:transform 0.8s ease;
|
||||
}
|
||||
|
||||
/* active */
|
||||
#inc01 .tab-menu li.active { color:#111; }
|
||||
#inc01 .tab-cont li.active { width:1000px; }
|
||||
#inc01 .tab-cont li.active .text-box {
|
||||
opacity:1;
|
||||
visibility:visible;
|
||||
transition:opacity 0.35s 0.5s ease, visibility 0s 0.5s;
|
||||
}
|
||||
#inc01 .tab-cont li.active .bg::before {
|
||||
opacity:1;
|
||||
visibility:visible;
|
||||
transition:opacity 0.35s 0.3s ease, visibility 0s 0.3s;
|
||||
}
|
||||
#inc01 .tab-cont li.active .bg img { transform:scale(1.5); }
|
||||
|
||||
@media (max-width:1600px) {
|
||||
#inc01 { padding-left:20px; padding-right:20px }
|
||||
#inc01 .tab-cont li.active { width:clamp(870px, 62.5vw, 1000px); }
|
||||
}
|
||||
@media (max-width:1400px) {
|
||||
#inc01 .tab-cont li.active {
|
||||
width:clamp(710px, calc((100vw - 1200px) * (140/140) + 710px), 850px);
|
||||
}
|
||||
#inc01 .tab-cont li:not(.active) { flex-shrink:0; }
|
||||
}
|
||||
@media (max-width:1200px) {
|
||||
#inc01 .tab-cont li.active {
|
||||
width:clamp(610px, calc((100vw - 1024px) * (150/150) + 610px), 760px)
|
||||
}
|
||||
#inc01 .tab-cont li { width:180px; border-radius:15px; }
|
||||
}
|
||||
@media (max-width:1024px) {
|
||||
#inc01 .tab-menu {
|
||||
display:grid;
|
||||
grid-template-columns:repeat(3,1fr); gap:6px 0;
|
||||
}
|
||||
#inc01 .tab-menu li {
|
||||
display:flex;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
width:100%;
|
||||
height:100%;
|
||||
padding:14px;
|
||||
text-align:center;
|
||||
border-radius:5px
|
||||
}
|
||||
#inc01 .tab-menu li.active { background-color:var(--primary); color:#fff; }
|
||||
#inc01 .tab-cont { width:100% }
|
||||
#inc01 .tab-cont li {
|
||||
flex-shrink:0 !important; width:100%;
|
||||
height:clamp(300px, calc(11.03vw + 247px), 360px);
|
||||
border-radius:10px; cursor:default;
|
||||
}
|
||||
#inc01 .tab-cont li.active { width:100%; }
|
||||
}
|
||||
@media (max-width:480px) {
|
||||
#inc01 .tab-menu li { padding:10px; }
|
||||
#inc01 .tab-cont li .bg::before { background-color:rgba(0,0,0,0.5); }
|
||||
}
|
||||
|
||||
|
||||
/* =========================== atc02
|
||||
* mask font: 50px → 26px | clamp(2.6rem, calc(2.14vw + 1.6rem), 5rem)
|
||||
*/
|
||||
#inc02 .inner { height:250vh; }
|
||||
#inc02 .sticky-container {
|
||||
position:sticky; top:0; height:100vh;
|
||||
display:flex; align-items:center; justify-content:center;
|
||||
}
|
||||
#inc02 h2 { text-align:center }
|
||||
#inc02 .mask {
|
||||
font-size:clamp(2.6rem, calc(2.14vw + 1.6rem), 5rem);
|
||||
font-weight:700; line-height:1.5;
|
||||
white-space:pre-line; word-break:keep-all;
|
||||
background-clip:text; background-repeat:no-repeat;
|
||||
background-size:0% 100%;
|
||||
color:rgba(0,0,0,0.15);
|
||||
background-image:linear-gradient(to right, var(--primary), var(--primary));
|
||||
}
|
||||
@media (max-width:1024px) {
|
||||
#inc02 .sticky-container { padding:0 20px; }
|
||||
}
|
||||
@media (max-width:480px) {
|
||||
#inc02 .mask { line-height:1.3; }
|
||||
}
|
||||
|
||||
|
||||
/* =========================== atc03
|
||||
* card-title: 20px → 16px | clamp(1.6rem, calc(0.36vw + 1.43rem), 2rem)
|
||||
* marquee: 100px → 28px | clamp(2.8rem, calc(6.43vw - 0.3rem), 10rem)
|
||||
*/
|
||||
#inc03 {
|
||||
background:var(--bg);
|
||||
padding:clamp(70px, calc(12.62vw - 27px), 175px) 0 0;
|
||||
}
|
||||
#inc03 .inner {
|
||||
display:flex;
|
||||
justify-content:space-between;
|
||||
align-items:flex-end;
|
||||
padding:0 clamp(20px, 1.25vw, 20px) clamp(30px, 5vw, 80px);
|
||||
max-width:var(--mainsize);
|
||||
margin:0 auto;
|
||||
}
|
||||
#inc03 .group-title {
|
||||
align-items:flex-start !important;
|
||||
text-align:left !important;
|
||||
padding-bottom:0 !important;
|
||||
}
|
||||
#inc03 .swiper-navigation { display:flex; align-items:center; gap:10px }
|
||||
#inc03 .swiper-navigation button {
|
||||
all:unset;
|
||||
display:flex;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
width:clamp(45px, 3.25vw, 52px);
|
||||
height:clamp(45px, 3.25vw, 52px);
|
||||
border-radius:100px; background-color:#fff; color:var(--primary);
|
||||
transition:background-color 0.2s, border-color 0.2s; cursor:pointer;
|
||||
}
|
||||
#inc03 .swiper-navigation button svg { transition:stroke 0.2s }
|
||||
#inc03 .swiper-navigation .btn-detail {
|
||||
display:inline-flex;
|
||||
align-items:center;
|
||||
gap:10px;
|
||||
margin-left:6px;
|
||||
height:clamp(45px, 3.25vw, 52px);
|
||||
padding:0 clamp(16px, 1.5vw, 24px);
|
||||
border-radius:100px;
|
||||
background:#fff;
|
||||
color:var(--navy);
|
||||
font-size:clamp(1.5rem, calc(0.27vw + 1.457rem), 1.8rem);
|
||||
font-weight:600;
|
||||
white-space:nowrap;
|
||||
border:none;
|
||||
transition:background-color 0.2s, color 0.2s, transform 0.2s;
|
||||
}
|
||||
#inc03 .swiper-navigation a {
|
||||
font-size:1.5rem;
|
||||
font-weight:600;
|
||||
color:#111;
|
||||
white-space:nowrap;
|
||||
}
|
||||
#inc03 .group-cont {
|
||||
margin-left:max(1px, calc((100% - var(--mainsize)) / 2));
|
||||
}
|
||||
|
||||
/* 슬라이드 카드 */
|
||||
#inc03 .group-cont .swiper-slide { width:460px; }
|
||||
#inc03 .group-cont .swiper-slide .thumb-box {
|
||||
position:relative;
|
||||
width:100%;
|
||||
height:clamp(200px, calc(11.54vw + 136px), 350px);
|
||||
border-radius:20px;
|
||||
overflow:hidden;
|
||||
}
|
||||
#inc03 .group-cont .swiper-slide .thumb-box a { display:block; width:100%; height:100% }
|
||||
#inc03 .group-cont .swiper-slide .thumb-box img {
|
||||
width:100%;
|
||||
height:100%;
|
||||
object-fit:cover;
|
||||
transition:transform 0.3s ease;
|
||||
}
|
||||
#inc03 .group-cont .swiper-slide .thumb-box .overlay {
|
||||
position:absolute;
|
||||
inset:0;
|
||||
display:flex;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
pointer-events:none;
|
||||
background:rgba(0,0,0,0);
|
||||
transition:background 0.35s ease
|
||||
}
|
||||
#inc03 .group-cont .swiper-slide .thumb-box .btn-plus {
|
||||
display:flex;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
width:64px;
|
||||
height:64px;
|
||||
border-radius:50%;
|
||||
background:rgba(255,255,255,0.3);
|
||||
backdrop-filter:blur(6px);
|
||||
-webkit-backdrop-filter:blur(6px);
|
||||
color:#fff;
|
||||
font-size:3.2rem;
|
||||
font-weight:300;
|
||||
line-height:1;
|
||||
transform:scale(0); transition:transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
|
||||
}
|
||||
#inc03 .group-cont .swiper-slide .card-title {
|
||||
margin-top:clamp(16px, 1.5vw, 24px);
|
||||
padding:0 10px;
|
||||
font-size:clamp(1.6rem, calc(0.36vw + 1.43rem), 2rem);
|
||||
font-weight:600;
|
||||
font-family:var(--k-font);
|
||||
color:#222;
|
||||
white-space:nowrap;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
}
|
||||
|
||||
@media (hover:hover) {
|
||||
#inc03 .swiper-navigation button:hover { background-color:var(--primary); border-color:var(--primary) }
|
||||
#inc03 .swiper-navigation button:hover svg { stroke:#fff }
|
||||
#inc03 .swiper-navigation .btn-detail:hover { background-color:var(--primary); color:#fff; transform:translateY(-2px) }
|
||||
#inc03 .group-cont .swiper-slide .thumb-box:hover .overlay { opacity:1; background:rgba(0,0,0,0.18) }
|
||||
#inc03 .group-cont .swiper-slide .thumb-box:hover .btn-plus { transform:scale(1) }
|
||||
}
|
||||
|
||||
/* 마퀴 */
|
||||
#inc03 .inc03_in { overflow:hidden; margin-top:clamp(40px, 10.625vw, 170px); }
|
||||
#inc03 .inc03_in .marquee { --x:-3450px; }
|
||||
#inc03 .inc03_in .marquee ul {
|
||||
display:flex;
|
||||
gap:clamp(24px, 3.125vw, 50px);
|
||||
animation:inc03Marquee 25s linear infinite;
|
||||
}
|
||||
#inc03 .inc03_in .marquee ul li {
|
||||
font-family:var(--e-font);
|
||||
font-size:clamp(2.8rem, calc(6.43vw - 0.3rem), 10rem);
|
||||
line-height:.7;
|
||||
font-weight:700;
|
||||
color:#E7F0FA;
|
||||
text-transform:uppercase;
|
||||
white-space:nowrap;
|
||||
}
|
||||
@keyframes inc03Marquee {
|
||||
0% { transform:translateX(0) }
|
||||
100% { transform:translateX(var(--x)) }
|
||||
}
|
||||
|
||||
@media (max-width:1600px) {
|
||||
#inc03 .group-cont { padding-left:20px; }
|
||||
#inc03 .group-cont .swiper-slide { width:520px; }
|
||||
}
|
||||
@media (max-width:1400px) {
|
||||
#inc03 .group-cont .swiper-slide { width:460px; }
|
||||
}
|
||||
@media (max-width:1024px) {
|
||||
#inc03 .inner { flex-direction:column; align-items:center; gap:20px; }
|
||||
#inc03 .group-title { align-items:center !important; text-align:center !important }
|
||||
#inc03 .inc03_in .marquee { --x:-1345.5px }
|
||||
#inc03 .group-cont .swiper-slide { width:auto }
|
||||
#inc03 .group-cont .swiper-slide .thumb-box { border-radius:10px }
|
||||
}
|
||||
@media (max-width:768px) {
|
||||
#inc03 .group-cont { padding:0 20px }
|
||||
#inc03 .inc03_in .marquee { --x:-1027.5px }
|
||||
}
|
||||
@media (max-width:600px) {
|
||||
#inc03 .group-cont { padding:0 }
|
||||
}
|
||||
@media (max-width:480px) {
|
||||
#inc03 .inc03_in .marquee { --x:-905px }
|
||||
}
|
||||
@media (max-width:390px) {
|
||||
#inc03 .swiper-navigation { gap:5px }
|
||||
}
|
||||
|
||||
|
||||
/* =========================== atc04
|
||||
*/
|
||||
#inc04 {
|
||||
padding:clamp(70px, calc(12.02vw - 22px), 170px) 0;
|
||||
background:url('../img/main/inc04/inc04_bg.png') center bottom;
|
||||
background-size:cover
|
||||
}
|
||||
#inc04 .inner { max-width:var(--mainsize); margin:0 auto; padding:0 20px }
|
||||
|
||||
#inc04 .inc04-grid {
|
||||
display:grid;
|
||||
grid-template-columns:1fr 1fr 1fr 300px;
|
||||
grid-template-rows:auto auto;
|
||||
gap:clamp(10px, 1vw, 16px)
|
||||
}
|
||||
|
||||
#inc04 .card-business { grid-column:1/4; grid-row:1 }
|
||||
#inc04 .card-contact { grid-column:4; grid-row:1/3 }
|
||||
#inc04 .card-sm:nth-of-type(3) { grid-column:1; grid-row:2 }
|
||||
#inc04 .card-sm:nth-of-type(4) { grid-column:2; grid-row:2 }
|
||||
#inc04 .card-sm:nth-of-type(5) { grid-column:3; grid-row:2 }
|
||||
|
||||
#inc04 .inc04-card {
|
||||
position:relative; border-radius:20px; overflow:hidden;
|
||||
background:rgba(255,255,255,0.5); border:1px solid var(--bd-color);
|
||||
transition:all .3s
|
||||
}
|
||||
#inc04 .inc04-card a { display:block }
|
||||
|
||||
#inc04 .card-business {
|
||||
display:flex; align-items:top;
|
||||
gap:clamp(20px, 7.5vw, 120px);
|
||||
padding:clamp(24px, calc(2.32vw + 16px), 50px) clamp(22px, calc(1.6vw + 16px), 40px)
|
||||
}
|
||||
#inc04 .business-left {
|
||||
display:flex; flex-direction:column; align-items:flex-start;
|
||||
gap:clamp(16px, 2.5vw, 40px); padding-top:10px; flex-shrink:0
|
||||
}
|
||||
#inc04 .business-left .card-tit {
|
||||
font-size:clamp(1.9rem, calc(0.54vw + 1.6rem), 2.5rem);
|
||||
font-weight:700; color:var(--dark); white-space:nowrap
|
||||
}
|
||||
#inc04 .business-left .btn-plus {
|
||||
display:flex; align-items:center; justify-content:center;
|
||||
background-color:#E6F3FF;
|
||||
width:clamp(40px, 3.25vw, 52px);
|
||||
height:clamp(40px, 3.25vw, 52px);
|
||||
border-radius:100px; color:var(--primary);
|
||||
transition:all 0.2s;
|
||||
}
|
||||
#inc04 .business-list {
|
||||
display:flex; flex-direction:column; flex:1; min-width:0; width:100%
|
||||
}
|
||||
#inc04 .business-list li a {
|
||||
display:flex; align-items:center; justify-content:space-between;
|
||||
gap:20px; color:#444; padding:10px 0; transition:opacity 0.2s
|
||||
}
|
||||
#inc04 .business-list li .b-tit {
|
||||
font-size:clamp(1.4rem, calc(0.36vw + 1.22rem), 1.8rem);
|
||||
font-weight:400; color:var(--cont1);
|
||||
white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
|
||||
transition:color 0.2s
|
||||
}
|
||||
#inc04 .business-list li .b-date {
|
||||
font-family:var(--k-font);
|
||||
font-size:clamp(1.3rem, calc(0.27vw + 1.257rem), 1.6rem);
|
||||
color:#888; flex-shrink:0
|
||||
}
|
||||
|
||||
#inc04 .card-contact {
|
||||
position:relative; display:flex; flex-direction:column;
|
||||
justify-content:space-between;
|
||||
padding:clamp(24px, 2.375vw, 38px) clamp(20px, 1.875vw, 30px) 0;
|
||||
background:var(--navy) url('../img/main/inc04/contact_bg.png') right bottom no-repeat;
|
||||
overflow:hidden
|
||||
}
|
||||
#inc04 .contact-label {
|
||||
display:block;
|
||||
font-size:clamp(1.8rem, calc(0.63vw + 1.7rem), 2.5rem);
|
||||
font-weight:500; color:rgba(255,255,255,0.65); padding-bottom:12px
|
||||
}
|
||||
#inc04 .contact-tel {
|
||||
display:block; font-family:var(--e-font);
|
||||
font-size:clamp(2.6rem, calc(2.14vw + 1.475rem), 5rem);
|
||||
font-weight:700; color:#fff; line-height:1.1;
|
||||
padding-bottom:18px; letter-spacing:-0.5px
|
||||
}
|
||||
#inc04 .contact-info {
|
||||
font-size:clamp(1.5rem, calc(0.27vw + 1.457rem), 1.8rem);
|
||||
font-weight:400; color:rgba(255,255,255,0.5); line-height:1.7
|
||||
}
|
||||
#inc04 .contact-mascot { display:flex; justify-content:end; margin-top:auto }
|
||||
#inc04 .contact-mascot img {
|
||||
width:100%; max-width:186px; display:block; object-fit:contain
|
||||
}
|
||||
|
||||
#inc04 .card-sm {
|
||||
position:relative; display:flex; flex-direction:column;
|
||||
justify-content:space-between;
|
||||
padding:clamp(30px, 2.5vw, 40px) 0 0 clamp(30px, 2.5vw, 40px);
|
||||
min-height:190px; overflow:hidden
|
||||
}
|
||||
#inc04 .card-white { background:rgba(255,255,255,.5) }
|
||||
#inc04 .sm-card-inner { position:relative; z-index:1 }
|
||||
#inc04 .sm-card-head { display:flex; align-items:center; justify-content:space-between; padding-bottom:14px }
|
||||
#inc04 .card-sm .card-tit { font-size:clamp(1.9rem, calc(0.54vw + 1.6rem), 2.5rem); }
|
||||
#inc04 .card-white .card-tit { color:var(--dark); font-weight:800 }
|
||||
#inc04 .btn-arrow {
|
||||
display:flex; align-items:center; justify-content:center;
|
||||
width:32px; height:32px; color:#888; transition:color 0.2s, transform 0.2s; flex-shrink:0
|
||||
}
|
||||
#inc04 .card-white .btn-arrow { color:#aaa }
|
||||
#inc04 .btn-arrow .material-icons-round { font-size:2.2rem }
|
||||
#inc04 .sm-desc {
|
||||
font-size:clamp(1.5rem, calc(0.27vw + 1.457rem), 1.8rem); /* 15px~18px */
|
||||
font-weight:400; color:var(--cont2); line-height:1.6; word-break:keep-all
|
||||
}
|
||||
#inc04 .card-white .sm-desc { color:var(--cont2) }
|
||||
#inc04 .sm-icon { display:flex; justify-content:flex-end; align-items:flex-end; margin-top:auto }
|
||||
#inc04 .sm-icon img { width:145px; height:145px; object-fit:contain }
|
||||
|
||||
@media (hover:hover) {
|
||||
#inc04 .btn-plus:hover { background-color:var(--primary); color:#fff }
|
||||
#inc04 .business-list li a:hover .b-tit { color:var(--primary) }
|
||||
#inc04 .business-left .btn-plus:hover { background-color:var(--primary); color:#fff }
|
||||
#inc04 .inc04-card:hover { border:1px solid var(--primary) }
|
||||
}
|
||||
|
||||
@media (max-width:1600px) {
|
||||
#inc04 .inc04-grid { grid-template-columns:1fr 1fr 1fr 260px }
|
||||
}
|
||||
@media (max-width:1200px) {
|
||||
#inc04 .inc04-grid {
|
||||
grid-template-columns:1fr 1fr 220px;
|
||||
grid-template-rows:auto auto auto
|
||||
}
|
||||
#inc04 .card-business { grid-column:1/3; grid-row:1 }
|
||||
#inc04 .card-contact { grid-column:3; grid-row:1/4 }
|
||||
#inc04 .card-sm:nth-of-type(3) { grid-column:1; grid-row:2 }
|
||||
#inc04 .card-sm:nth-of-type(4) { grid-column:2; grid-row:2 }
|
||||
#inc04 .card-sm:nth-of-type(5) { grid-column:1/3; grid-row:3 }
|
||||
}
|
||||
@media (max-width:1024px) {
|
||||
#inc04 .inc04-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto auto auto }
|
||||
#inc04 .card-business { flex-direction:column; align-items:flex-start; gap:20px }
|
||||
#inc04 .business-left { flex-direction:row; align-items:center; gap:16px }
|
||||
#inc04 .card-contact {
|
||||
grid-column:1/3; grid-row:2;
|
||||
flex-direction:row; align-items:center;
|
||||
padding:30px 36px; min-height:160px
|
||||
}
|
||||
#inc04 .contact-mascot { margin-top:0; margin-left:auto }
|
||||
#inc04 .contact-mascot img { max-width:120px }
|
||||
#inc04 .card-sm:nth-of-type(3) { grid-column:1; grid-row:3 }
|
||||
#inc04 .card-sm:nth-of-type(4) { grid-column:2; grid-row:3 }
|
||||
#inc04 .card-sm:nth-of-type(5) { grid-column:1/3; grid-row:4 }
|
||||
#inc04 .sm-icon img { width:100px; height:100px }
|
||||
}
|
||||
@media (max-width:480px) {
|
||||
#inc04 .inc04-grid { grid-template-columns:1fr }
|
||||
#inc04 .card-business { grid-column:1 }
|
||||
#inc04 .card-contact { grid-column:1; grid-row:auto; flex-direction:column; align-items:flex-start }
|
||||
#inc04 .card-sm:nth-of-type(3),
|
||||
#inc04 .card-sm:nth-of-type(4),
|
||||
#inc04 .card-sm:nth-of-type(5) { grid-column:1; grid-row:auto }
|
||||
#inc04 .contact-mascot img { max-width:100px }
|
||||
}
|
||||
38
src/main/resources/static/css/style.css
Normal file
@@ -0,0 +1,38 @@
|
||||
/* owrawww - base styles */
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
body { font-family: 'Noto Sans KR', sans-serif; background: #f5f5f5; color: #333; }
|
||||
|
||||
/* nav */
|
||||
header nav {
|
||||
display: flex; align-items: center; justify-content: space-between;
|
||||
padding: 12px 24px; background: #1e3a5f; color: #fff;
|
||||
}
|
||||
header nav a { color: #fff; text-decoration: none; margin-left: 12px; }
|
||||
|
||||
/* main */
|
||||
main { max-width: 960px; margin: 40px auto; padding: 0 16px; }
|
||||
|
||||
/* login */
|
||||
.login-wrap {
|
||||
max-width: 400px; margin: 80px auto; background: #fff;
|
||||
padding: 40px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,.1);
|
||||
}
|
||||
.login-wrap h2 { margin-bottom: 24px; text-align: center; }
|
||||
.form-group { margin-bottom: 16px; }
|
||||
.form-group label { display: block; margin-bottom: 4px; font-weight: 600; }
|
||||
.form-group input {
|
||||
width: 100%; padding: 10px 12px; border: 1px solid #ccc;
|
||||
border-radius: 4px; font-size: 14px;
|
||||
}
|
||||
button[type=submit] {
|
||||
width: 100%; padding: 12px; background: #1e3a5f; color: #fff;
|
||||
border: none; border-radius: 4px; font-size: 16px; cursor: pointer;
|
||||
margin-top: 8px;
|
||||
}
|
||||
button[type=submit]:hover { background: #16304f; }
|
||||
|
||||
/* alerts */
|
||||
.alert { padding: 10px 14px; border-radius: 4px; margin-bottom: 16px; font-size: 14px; }
|
||||
.alert-error { background: #fde8e8; color: #c0392b; }
|
||||
.alert-info { background: #e8f4fd; color: #2980b9; }
|
||||
4041
src/main/resources/static/css/sub.css
Normal file
564
src/main/resources/static/css/swiper.min.css
vendored
Normal file
@@ -0,0 +1,564 @@
|
||||
/**
|
||||
* Swiper 5.4.1
|
||||
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
||||
* http://swiperjs.com
|
||||
*
|
||||
* Copyright 2014-2020 Vladimir Kharlampidi
|
||||
*
|
||||
* Released under the MIT License
|
||||
*
|
||||
* Released on: May 20, 2020
|
||||
*/
|
||||
@font-face {
|
||||
font-family: swiper-icons;
|
||||
src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
|
||||
font-weight: 400;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
:root {
|
||||
--swiper-theme-color: #007aff
|
||||
}
|
||||
|
||||
.swiper-container {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
z-index: 1
|
||||
}
|
||||
|
||||
.swiper-container-vertical>.swiper-wrapper {
|
||||
flex-direction: column
|
||||
}
|
||||
|
||||
.swiper-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
transition-property: transform;
|
||||
box-sizing: content-box
|
||||
}
|
||||
|
||||
.swiper-container-android .swiper-slide,.swiper-wrapper {
|
||||
transform: translate3d(0px,0,0)
|
||||
}
|
||||
|
||||
.swiper-container-multirow>.swiper-wrapper {
|
||||
flex-wrap: wrap
|
||||
}
|
||||
|
||||
.swiper-container-multirow-column>.swiper-wrapper {
|
||||
flex-wrap: wrap;
|
||||
flex-direction: column
|
||||
}
|
||||
|
||||
.swiper-container-free-mode>.swiper-wrapper {
|
||||
transition-timing-function: ease-out;
|
||||
margin: 0 auto
|
||||
}
|
||||
|
||||
.swiper-slide {
|
||||
flex-shrink: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
transition-property: transform
|
||||
}
|
||||
|
||||
.swiper-slide-invisible-blank {
|
||||
visibility: hidden
|
||||
}
|
||||
|
||||
.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
|
||||
height: auto
|
||||
}
|
||||
|
||||
.swiper-container-autoheight .swiper-wrapper {
|
||||
align-items: flex-start;
|
||||
transition-property: transform,height
|
||||
}
|
||||
|
||||
.swiper-container-3d {
|
||||
perspective: 1200px
|
||||
}
|
||||
|
||||
.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
|
||||
transform-style: preserve-3d
|
||||
}
|
||||
|
||||
.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 10
|
||||
}
|
||||
|
||||
.swiper-container-3d .swiper-slide-shadow-left {
|
||||
background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
|
||||
}
|
||||
|
||||
.swiper-container-3d .swiper-slide-shadow-right {
|
||||
background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
|
||||
}
|
||||
|
||||
.swiper-container-3d .swiper-slide-shadow-top {
|
||||
background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
|
||||
}
|
||||
|
||||
.swiper-container-3d .swiper-slide-shadow-bottom {
|
||||
background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
|
||||
}
|
||||
|
||||
.swiper-container-css-mode>.swiper-wrapper {
|
||||
overflow: auto;
|
||||
scrollbar-width: none;
|
||||
-ms-overflow-style: none
|
||||
}
|
||||
|
||||
.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
|
||||
display: none
|
||||
}
|
||||
|
||||
.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
|
||||
scroll-snap-align: start start
|
||||
}
|
||||
|
||||
.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
|
||||
scroll-snap-type: x mandatory
|
||||
}
|
||||
|
||||
.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
|
||||
scroll-snap-type: y mandatory
|
||||
}
|
||||
|
||||
:root {
|
||||
--swiper-navigation-size: 44px
|
||||
}
|
||||
|
||||
.swiper-button-next,.swiper-button-prev {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: calc(var(--swiper-navigation-size)/ 44 * 27);
|
||||
height: var(--swiper-navigation-size);
|
||||
margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
|
||||
z-index: 10;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--swiper-navigation-color,var(--swiper-theme-color))
|
||||
}
|
||||
|
||||
.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
|
||||
opacity: .35;
|
||||
cursor: auto;
|
||||
pointer-events: none
|
||||
}
|
||||
|
||||
.swiper-button-next:after,.swiper-button-prev:after {
|
||||
font-family: swiper-icons;
|
||||
font-size: var(--swiper-navigation-size);
|
||||
text-transform: none!important;
|
||||
letter-spacing: 0;
|
||||
text-transform: none;
|
||||
font-variant: initial;
|
||||
line-height: 1
|
||||
}
|
||||
|
||||
.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
|
||||
left: 10px;
|
||||
right: auto
|
||||
}
|
||||
|
||||
.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after {
|
||||
content: 'prev'
|
||||
}
|
||||
|
||||
.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
|
||||
right: 10px;
|
||||
left: auto
|
||||
}
|
||||
|
||||
.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after {
|
||||
content: 'next'
|
||||
}
|
||||
|
||||
.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white {
|
||||
--swiper-navigation-color: #ffffff
|
||||
}
|
||||
|
||||
.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black {
|
||||
--swiper-navigation-color: #000000
|
||||
}
|
||||
|
||||
.swiper-button-lock {
|
||||
display: none
|
||||
}
|
||||
|
||||
.swiper-pagination {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
transition: .3s opacity;
|
||||
transform: translate3d(0,0,0);
|
||||
z-index: 10
|
||||
}
|
||||
|
||||
.swiper-pagination.swiper-pagination-hidden {
|
||||
opacity: 0
|
||||
}
|
||||
|
||||
.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
|
||||
bottom: 10px;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.swiper-pagination-bullets-dynamic {
|
||||
overflow: hidden;
|
||||
font-size: 0
|
||||
}
|
||||
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||
transform: scale(.33);
|
||||
position: relative
|
||||
}
|
||||
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
|
||||
transform: scale(.66)
|
||||
}
|
||||
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
|
||||
transform: scale(.33)
|
||||
}
|
||||
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
|
||||
transform: scale(.66)
|
||||
}
|
||||
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
|
||||
transform: scale(.33)
|
||||
}
|
||||
|
||||
.swiper-pagination-bullet {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
display: inline-block;
|
||||
border-radius: 100%;
|
||||
background: #000;
|
||||
opacity: .2
|
||||
}
|
||||
|
||||
button.swiper-pagination-bullet {
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none
|
||||
}
|
||||
|
||||
.swiper-pagination-clickable .swiper-pagination-bullet {
|
||||
cursor: pointer
|
||||
}
|
||||
|
||||
.swiper-pagination-bullet-active {
|
||||
opacity: 1;
|
||||
background: var(--swiper-pagination-color,var(--swiper-theme-color))
|
||||
}
|
||||
|
||||
.swiper-container-vertical>.swiper-pagination-bullets {
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
transform: translate3d(0px,-50%,0)
|
||||
}
|
||||
|
||||
.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
|
||||
margin: 6px 0;
|
||||
display: block
|
||||
}
|
||||
|
||||
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 8px
|
||||
}
|
||||
|
||||
.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||
display: inline-block;
|
||||
transition: .2s transform,.2s top
|
||||
}
|
||||
|
||||
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
|
||||
margin: 0 4px
|
||||
}
|
||||
|
||||
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
white-space: nowrap
|
||||
}
|
||||
|
||||
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||
transition: .2s transform,.2s left
|
||||
}
|
||||
|
||||
.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||
transition: .2s transform,.2s right
|
||||
}
|
||||
|
||||
.swiper-pagination-progressbar {
|
||||
background: rgba(0,0,0,.25);
|
||||
position: absolute
|
||||
}
|
||||
|
||||
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
||||
background: var(--swiper-pagination-color,var(--swiper-theme-color));
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: scale(0);
|
||||
transform-origin: left top
|
||||
}
|
||||
|
||||
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
||||
transform-origin: right top
|
||||
}
|
||||
|
||||
.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
left: 0;
|
||||
top: 0
|
||||
}
|
||||
|
||||
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
|
||||
width: 4px;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0
|
||||
}
|
||||
|
||||
.swiper-pagination-white {
|
||||
--swiper-pagination-color: #ffffff
|
||||
}
|
||||
|
||||
.swiper-pagination-black {
|
||||
--swiper-pagination-color: #000000
|
||||
}
|
||||
|
||||
.swiper-pagination-lock {
|
||||
display: none
|
||||
}
|
||||
|
||||
.swiper-scrollbar {
|
||||
border-radius: 10px;
|
||||
position: relative;
|
||||
-ms-touch-action: none;
|
||||
background: rgba(0,0,0,.1)
|
||||
}
|
||||
|
||||
.swiper-container-horizontal>.swiper-scrollbar {
|
||||
position: absolute;
|
||||
left: 1%;
|
||||
bottom: 3px;
|
||||
z-index: 50;
|
||||
height: 5px;
|
||||
width: 98%
|
||||
}
|
||||
|
||||
.swiper-container-vertical>.swiper-scrollbar {
|
||||
position: absolute;
|
||||
right: 3px;
|
||||
top: 1%;
|
||||
z-index: 50;
|
||||
width: 5px;
|
||||
height: 98%
|
||||
}
|
||||
|
||||
.swiper-scrollbar-drag {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
background: rgba(0,0,0,.5);
|
||||
border-radius: 10px;
|
||||
left: 0;
|
||||
top: 0
|
||||
}
|
||||
|
||||
.swiper-scrollbar-cursor-drag {
|
||||
cursor: move
|
||||
}
|
||||
|
||||
.swiper-scrollbar-lock {
|
||||
display: none
|
||||
}
|
||||
|
||||
.swiper-zoom-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center
|
||||
}
|
||||
|
||||
.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain
|
||||
}
|
||||
|
||||
.swiper-slide-zoomed {
|
||||
cursor: move
|
||||
}
|
||||
|
||||
.swiper-lazy-preloader {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin-left: -21px;
|
||||
margin-top: -21px;
|
||||
z-index: 10;
|
||||
transform-origin: 50%;
|
||||
animation: swiper-preloader-spin 1s infinite linear;
|
||||
box-sizing: border-box;
|
||||
border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
|
||||
border-radius: 50%;
|
||||
border-top-color: transparent
|
||||
}
|
||||
|
||||
.swiper-lazy-preloader-white {
|
||||
--swiper-preloader-color: #fff
|
||||
}
|
||||
|
||||
.swiper-lazy-preloader-black {
|
||||
--swiper-preloader-color: #000
|
||||
}
|
||||
|
||||
@keyframes swiper-preloader-spin {
|
||||
100% {
|
||||
transform: rotate(360deg)
|
||||
}
|
||||
}
|
||||
|
||||
.swiper-container .swiper-notification {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
z-index: -1000
|
||||
}
|
||||
|
||||
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
|
||||
transition-timing-function: ease-out
|
||||
}
|
||||
|
||||
.swiper-container-fade .swiper-slide {
|
||||
pointer-events: none;
|
||||
transition-property: opacity
|
||||
}
|
||||
|
||||
.swiper-container-fade .swiper-slide .swiper-slide {
|
||||
pointer-events: none
|
||||
}
|
||||
|
||||
.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
|
||||
pointer-events: auto
|
||||
}
|
||||
|
||||
.swiper-container-cube {
|
||||
overflow: visible
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide {
|
||||
pointer-events: none;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
z-index: 1;
|
||||
visibility: hidden;
|
||||
transform-origin: 0 0;
|
||||
width: 100%;
|
||||
height: 100%
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide .swiper-slide {
|
||||
pointer-events: none
|
||||
}
|
||||
|
||||
.swiper-container-cube.swiper-container-rtl .swiper-slide {
|
||||
transform-origin: 100% 0
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
|
||||
pointer-events: auto
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
|
||||
pointer-events: auto;
|
||||
visibility: visible
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
|
||||
z-index: 0;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden
|
||||
}
|
||||
|
||||
.swiper-container-cube .swiper-cube-shadow {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #000;
|
||||
opacity: .6;
|
||||
-webkit-filter: blur(50px);
|
||||
filter: blur(50px);
|
||||
z-index: 0
|
||||
}
|
||||
|
||||
.swiper-container-flip {
|
||||
overflow: visible
|
||||
}
|
||||
|
||||
.swiper-container-flip .swiper-slide {
|
||||
pointer-events: none;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
z-index: 1
|
||||
}
|
||||
|
||||
.swiper-container-flip .swiper-slide .swiper-slide {
|
||||
pointer-events: none
|
||||
}
|
||||
|
||||
.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
|
||||
pointer-events: auto
|
||||
}
|
||||
|
||||
.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
|
||||
z-index: 0;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden
|
||||
}
|
||||
BIN
src/main/resources/static/img/common/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
src/main/resources/static/img/common/del_bn.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
src/main/resources/static/img/common/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
src/main/resources/static/img/common/flogo1.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
src/main/resources/static/img/common/flogo2.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/main/resources/static/img/common/foot_logo.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
src/main/resources/static/img/common/hola_bn.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
src/main/resources/static/img/common/ic-chat.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
src/main/resources/static/img/common/ic-location.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
src/main/resources/static/img/common/ic-reservation.png
Normal file
|
After Width: | Height: | Size: 693 B |
BIN
src/main/resources/static/img/common/ing_bg.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
src/main/resources/static/img/common/logo.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
src/main/resources/static/img/common/logo_d.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
407
src/main/resources/static/img/common/logo_d.svg
Normal file
@@ -0,0 +1,407 @@
|
||||
<svg width="140" height="39" viewBox="0 0 140 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8_858)">
|
||||
<path d="M48.2101 35.3969C48.0857 36.2116 47.8235 36.8462 47.421 37.3031C46.9847 37.796 46.4308 38.0435 45.7638 38.0435C45.0969 38.0435 44.6131 37.796 44.3101 37.3031C44.0298 36.8327 43.9461 36.1958 44.0592 35.3969C44.1134 35.0165 44.2039 34.6744 44.3305 34.3683C44.4571 34.0623 44.6198 33.79 44.812 33.5514C45.0381 33.2993 45.2936 33.1035 45.583 32.964C45.8701 32.8245 46.1798 32.7547 46.5076 32.7547C46.8355 32.7547 47.1294 32.8222 47.3735 32.9595C47.6177 33.0968 47.8167 33.2948 47.9704 33.5559C48.0993 33.8035 48.1852 34.078 48.2281 34.3819C48.2711 34.6857 48.2621 35.0233 48.2055 35.3946L48.2101 35.3969ZM47.7488 35.3969C47.7895 35.1088 47.7941 34.8365 47.7624 34.5799C47.7308 34.3233 47.6675 34.0938 47.5748 33.8867C47.4595 33.6617 47.3057 33.4906 47.1181 33.3691C46.9304 33.2476 46.7089 33.1868 46.4511 33.1868C46.1934 33.1868 45.947 33.2476 45.7254 33.3691C45.5038 33.4906 45.3026 33.6639 45.124 33.8867C44.9725 34.0915 44.8437 34.3233 44.7419 34.5799C44.6379 34.8365 44.5656 35.1088 44.5249 35.3969C44.4842 35.6849 44.4797 35.9572 44.5113 36.2161C44.543 36.4749 44.604 36.7067 44.699 36.9115C44.8211 37.132 44.9748 37.3031 45.1647 37.4269C45.3546 37.5506 45.5762 37.6114 45.8294 37.6114C46.0826 37.6114 46.3268 37.5506 46.5483 37.4291C46.7699 37.3076 46.9711 37.1343 47.1497 36.9115C47.3012 36.7067 47.4278 36.4726 47.5341 36.2161C47.6381 35.9572 47.7104 35.6849 47.7511 35.3969H47.7488Z" fill="#808285"/>
|
||||
<path d="M51.2531 37.841C51.2441 37.904 51.2102 37.9377 51.1514 37.9377H50.8982C50.8394 37.9377 50.8145 37.9062 50.8236 37.841L51.1288 35.6804C51.1876 35.2596 51.1604 34.9625 51.0451 34.7847C50.9298 34.6092 50.7467 34.5214 50.4935 34.5214C50.1521 34.5214 49.8763 34.6249 49.6683 34.8297C49.4603 35.0345 49.3292 35.3226 49.2772 35.6939L48.9742 37.841C48.9652 37.904 48.9313 37.9377 48.8725 37.9377H48.6193C48.5605 37.9377 48.5356 37.9062 48.5447 37.841L48.9313 35.0975C48.9584 34.9017 48.9787 34.7487 48.9923 34.6384C49.0059 34.5281 49.0149 34.4246 49.0217 34.3233C49.0217 34.2918 49.033 34.2671 49.0533 34.2513C49.0737 34.2356 49.0986 34.2266 49.1234 34.2266H49.3518C49.4106 34.2266 49.4354 34.2581 49.4264 34.3233L49.3721 34.7014C49.5191 34.5056 49.6819 34.3616 49.8605 34.2693C50.0391 34.177 50.2765 34.132 50.5681 34.132C50.9683 34.132 51.2531 34.2581 51.4204 34.5101C51.5877 34.7622 51.6397 35.1155 51.5742 35.5746L51.2531 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M52.5192 37.841C52.5102 37.904 52.4762 37.9377 52.4175 37.9377H52.1394C52.0806 37.9377 52.0557 37.9062 52.0648 37.841L52.8086 32.5791C52.8176 32.5161 52.8515 32.4824 52.9103 32.4824H53.1884C53.2472 32.4824 53.2721 32.5139 53.263 32.5791L52.5192 37.841Z" fill="#808285"/>
|
||||
<path d="M53.688 38.1425C53.679 38.2056 53.6451 38.2393 53.5863 38.2393H53.3082C53.2494 38.2393 53.2246 38.2078 53.2336 38.1425L53.731 34.6227C53.74 34.5596 53.774 34.5259 53.8327 34.5259H54.1108C54.1696 34.5259 54.1945 34.5574 54.1854 34.6227L53.688 38.1425ZM53.8418 33.2296C53.8553 33.1373 53.896 33.0585 53.9639 32.9933C54.0317 32.928 54.1086 32.8942 54.1922 32.8942C54.2759 32.8942 54.3437 32.928 54.3957 32.9933C54.4477 33.0585 54.468 33.1395 54.4545 33.2296C54.4409 33.3218 54.4002 33.3984 54.3301 33.4636C54.26 33.5289 54.1832 33.5604 54.0973 33.5604C54.0113 33.5604 53.9458 33.5289 53.896 33.4636C53.8463 33.4006 53.8282 33.3218 53.8395 33.2296H53.8418Z" fill="#808285"/>
|
||||
<path d="M57.2059 37.841C57.1969 37.904 57.163 37.9377 57.1042 37.9377H56.851C56.7922 37.9377 56.7673 37.9062 56.7764 37.841L57.0816 35.6804C57.1404 35.2596 57.1132 34.9625 56.9979 34.7847C56.8826 34.6092 56.6995 34.5214 56.4463 34.5214C56.1049 34.5214 55.8291 34.6249 55.6211 34.8297C55.4131 35.0345 55.282 35.3226 55.23 35.6939L54.927 37.841C54.918 37.904 54.884 37.9377 54.8253 37.9377H54.5721C54.5133 37.9377 54.4884 37.9062 54.4974 37.841L54.884 35.0975C54.9112 34.9017 54.9315 34.7487 54.9451 34.6384C54.9587 34.5281 54.9677 34.4246 54.9745 34.3233C54.9745 34.2918 54.9858 34.2671 55.0061 34.2513C55.0265 34.2356 55.0513 34.2266 55.0762 34.2266H55.3046C55.3633 34.2266 55.3882 34.2581 55.3792 34.3233L55.3249 34.7014C55.4719 34.5056 55.6346 34.3616 55.8132 34.2693C55.9919 34.177 56.2292 34.132 56.5209 34.132C56.9211 34.132 57.2059 34.2581 57.3732 34.5101C57.5405 34.7622 57.5925 35.1155 57.527 35.5746L57.2059 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M58.463 36.2138C58.4268 36.4434 58.4223 36.6459 58.4494 36.8215C58.4765 36.997 58.533 37.1455 58.619 37.2648C58.7026 37.3841 58.8111 37.4741 58.9445 37.5394C59.0756 37.6024 59.2294 37.6362 59.4035 37.6362C59.5775 37.6362 59.7335 37.6182 59.885 37.5844C60.0365 37.5506 60.1835 37.4944 60.3214 37.4156C60.3801 37.3886 60.405 37.4044 60.396 37.4629L60.353 37.7712C60.3462 37.8117 60.3191 37.8455 60.2694 37.868C60.1224 37.9265 59.9687 37.9715 59.8127 38.0008C59.6567 38.03 59.4894 38.0458 59.313 38.0458C58.793 38.0458 58.4245 37.8815 58.2052 37.5551C57.9859 37.2288 57.9226 36.7359 58.0153 36.0765C58.0967 35.4959 58.2957 35.0278 58.6122 34.6699C58.9423 34.3098 59.3198 34.1275 59.7471 34.1275C59.9845 34.1275 60.1812 34.1725 60.3417 34.2648C60.5022 34.3571 60.6311 34.4944 60.7261 34.6767C60.8956 35.0008 60.9408 35.4351 60.864 35.9797C60.8549 36.0383 60.8481 36.0855 60.8414 36.117C60.8346 36.1485 60.8233 36.171 60.8097 36.1868C60.7961 36.2003 60.7713 36.2093 60.7396 36.2116C60.708 36.2138 60.6627 36.2161 60.604 36.2161H58.463V36.2138ZM60.4163 35.8222C60.4435 35.6354 60.4502 35.4689 60.4367 35.3203C60.4231 35.174 60.3892 35.0413 60.3349 34.922C60.2174 34.6519 60.0094 34.5169 59.7155 34.5169C59.4216 34.5169 59.1457 34.6542 58.9174 34.9287C58.8247 35.0525 58.741 35.1943 58.6664 35.3541C58.5941 35.5139 58.5443 35.6692 58.5172 35.82H60.4163V35.8222Z" fill="#808285"/>
|
||||
<path d="M67.0519 37.868C67.0338 37.913 67.0021 37.9355 66.9592 37.9355H66.5341C66.4866 37.9355 66.464 37.913 66.4618 37.868L65.9079 33.4096C65.6004 34.1545 65.2952 34.8972 64.9922 35.6354C64.6893 36.3736 64.3841 37.1185 64.0743 37.868C64.0562 37.913 64.0246 37.9355 63.9816 37.9355H63.5453C63.4978 37.9355 63.4752 37.913 63.473 37.868L62.867 32.955C62.8625 32.9325 62.8671 32.91 62.8829 32.8897C62.8987 32.8695 62.919 32.8582 62.9439 32.8582H63.2423C63.3011 32.8582 63.335 32.8897 63.3418 32.955L63.8528 37.4134C64.158 36.6639 64.4587 35.9257 64.7594 35.2011C65.0601 34.4764 65.363 33.7382 65.6682 32.9887C65.684 32.9437 65.7067 32.91 65.7383 32.8897C65.77 32.8695 65.8061 32.8582 65.8446 32.8582H66.1747C66.247 32.8582 66.2877 32.901 66.2945 32.9887L66.8325 37.3863C67.1332 36.6279 67.4294 35.8875 67.7211 35.1695C68.0127 34.4516 68.3111 33.7134 68.6164 32.9527C68.6277 32.9257 68.6457 32.9032 68.6706 32.8852C68.6932 32.8672 68.7181 32.8582 68.7452 32.8582H69.012C69.0369 32.8582 69.055 32.8695 69.064 32.8897C69.073 32.91 69.073 32.9325 69.0617 32.955L67.0519 37.868Z" fill="#808285"/>
|
||||
<path d="M72.0325 36.0833C71.994 36.3533 71.924 36.6032 71.82 36.835C71.716 37.0668 71.5916 37.2693 71.4492 37.4426C71.2751 37.6339 71.0761 37.7824 70.8568 37.8882C70.6375 37.994 70.3956 38.0458 70.1356 38.0458C69.8756 38.0458 69.6473 37.994 69.4551 37.8882C69.2629 37.7824 69.107 37.6339 68.9849 37.4426C68.8922 37.2693 68.8266 37.0668 68.7882 36.835C68.752 36.6032 68.752 36.3533 68.7882 36.0833C68.8673 35.5296 69.0595 35.0773 69.367 34.7239C69.7196 34.3256 70.1582 34.1275 70.6873 34.1275C70.9541 34.1275 71.1801 34.177 71.37 34.2761C71.56 34.3751 71.7137 34.5236 71.8313 34.7262C72.0415 35.0885 72.1093 35.5409 72.0325 36.0855V36.0833ZM71.5645 36.0833C71.5939 35.8672 71.5961 35.6669 71.5713 35.4801C71.5441 35.2933 71.4967 35.1268 71.4243 34.9782C71.2457 34.6857 70.9812 34.5394 70.6308 34.5394C70.4544 34.5394 70.2894 34.5776 70.1356 34.6519C69.9842 34.7284 69.8417 34.8365 69.7129 34.9782C69.5953 35.1245 69.4958 35.2911 69.4167 35.4801C69.3376 35.6669 69.2833 35.8695 69.2516 36.0833C69.22 36.3038 69.2177 36.5064 69.2449 36.6932C69.272 36.88 69.3217 37.0465 69.4009 37.186C69.5817 37.4831 69.8462 37.6317 70.1922 37.6317C70.3685 37.6317 70.5335 37.5934 70.6873 37.5146C70.8388 37.4359 70.9812 37.3278 71.1101 37.186C71.2231 37.0443 71.318 36.88 71.3972 36.6932C71.4763 36.5064 71.5306 36.3016 71.5622 36.0833H71.5645Z" fill="#808285"/>
|
||||
<path d="M74.3905 34.6429C74.3182 34.6159 74.2187 34.6024 74.0921 34.6024C73.7801 34.6024 73.5246 34.7689 73.3257 35.1043C73.1697 35.3653 73.0634 35.6984 73.0069 36.1058L72.7627 37.841C72.7537 37.904 72.7198 37.9377 72.661 37.9377H72.4145C72.3558 37.9377 72.3309 37.9062 72.3399 37.841L72.7333 35.0548C72.7559 34.8905 72.774 34.7554 72.7876 34.6542C72.7989 34.5506 72.8125 34.4404 72.826 34.3211C72.8351 34.2581 72.869 34.2243 72.9278 34.2243H73.1629C73.2217 34.2243 73.2465 34.2558 73.2375 34.3211L73.1425 34.994C73.4297 34.4179 73.7756 34.1298 74.1757 34.1298C74.273 34.1298 74.3679 34.1433 74.4606 34.1703C74.4855 34.1793 74.5058 34.1951 74.5216 34.2153C74.5375 34.2356 74.5443 34.2648 74.5375 34.3008L74.4968 34.5889C74.4923 34.6159 74.4787 34.6339 74.4583 34.6429C74.4357 34.6519 74.4154 34.6519 74.395 34.6429H74.3905Z" fill="#808285"/>
|
||||
<path d="M74.7681 37.841C74.759 37.904 74.7251 37.9377 74.6664 37.9377H74.3883C74.3295 37.9377 74.3046 37.9062 74.3137 37.841L75.0575 32.5791C75.0665 32.5161 75.1004 32.4824 75.1592 32.4824H75.4373C75.4961 32.4824 75.521 32.5139 75.5119 32.5791L74.7681 37.841Z" fill="#808285"/>
|
||||
<path d="M78.2701 37.841C78.2611 37.904 78.2272 37.9377 78.1684 37.9377H77.922C77.8632 37.9377 77.8383 37.9062 77.8473 37.841L77.9197 37.3256C77.6258 37.7915 77.2256 38.0255 76.7192 38.0255C76.267 38.0255 75.9415 37.8387 75.7402 37.4629C75.5571 37.1163 75.5051 36.6527 75.5865 36.0765C75.7674 34.7915 76.3281 34.1478 77.264 34.1478C77.5173 34.1478 77.7343 34.2018 77.9152 34.3121C78.096 34.4224 78.2181 34.5641 78.2837 34.7374L78.5889 32.5769C78.5979 32.5139 78.6319 32.4801 78.6906 32.4801H78.9371C78.9958 32.4801 79.0207 32.5116 79.0117 32.5769L78.2679 37.8387L78.2701 37.841ZM76.0568 36.0765C76.0274 36.2926 76.0138 36.4861 76.0206 36.6639C76.0274 36.8395 76.0545 36.9948 76.1042 37.1275C76.1743 37.2918 76.2693 37.4179 76.3891 37.5056C76.5089 37.5934 76.6627 37.6362 76.8481 37.6362C77.0176 37.6362 77.1736 37.5889 77.3138 37.4921C77.4562 37.3954 77.5806 37.2738 77.6891 37.1253C77.7976 36.9767 77.8835 36.8102 77.9536 36.6234C78.0214 36.4389 78.0689 36.2566 78.0938 36.0788C78.1254 35.8582 78.1322 35.6557 78.1141 35.4689C78.096 35.2821 78.0531 35.12 77.9875 34.9828C77.9197 34.8455 77.8293 34.7374 77.714 34.6609C77.5986 34.5821 77.4562 34.5439 77.2867 34.5439C76.9272 34.5439 76.631 34.7104 76.3982 35.0458C76.3122 35.1785 76.2399 35.3338 76.1834 35.5094C76.1268 35.6849 76.0839 35.8762 76.0545 36.0833L76.0568 36.0765Z" fill="#808285"/>
|
||||
<path d="M83.6419 37.841C83.6464 37.8635 83.6419 37.886 83.6328 37.9062C83.6215 37.9265 83.6034 37.9377 83.5786 37.9377H83.2485C83.1852 37.9377 83.1422 37.9062 83.1219 37.841C82.993 37.4111 82.8845 37.06 82.7963 36.7877C82.7082 36.5154 82.6403 36.2993 82.5906 36.1395C82.5296 35.9527 82.4821 35.8087 82.4482 35.7074C82.3487 35.7299 82.256 35.7434 82.1723 35.7479C82.0887 35.7524 81.9847 35.7569 81.8558 35.7614H81.3245L81.0306 37.841C81.0216 37.904 80.9877 37.9377 80.9289 37.9377H80.644C80.5852 37.9377 80.5604 37.9062 80.5694 37.841L81.2431 33.0653C81.2499 33.0158 81.2567 32.9752 81.2635 32.9482C81.2703 32.9212 81.2793 32.901 81.2951 32.8875C81.3087 32.874 81.329 32.865 81.3562 32.8627C81.381 32.8605 81.4172 32.8582 81.4647 32.8582H82.6607C82.9003 32.8582 83.1038 32.8942 83.2688 32.964C83.4339 33.036 83.565 33.135 83.6645 33.2633C83.7617 33.3916 83.8273 33.5469 83.8589 33.7292C83.8906 33.9115 83.8906 34.1163 83.8589 34.3391C83.8386 34.4764 83.7979 34.6069 83.7368 34.7307C83.6758 34.8545 83.5989 34.9692 83.5085 35.0728C83.4181 35.1785 83.3163 35.2731 83.2055 35.3586C83.0948 35.4441 82.9817 35.5139 82.8687 35.5679L83.6441 37.8387L83.6419 37.841ZM83.3819 34.3413C83.409 34.15 83.4113 33.9857 83.3909 33.8507C83.3706 33.7157 83.3186 33.6054 83.2349 33.5221C83.1513 33.4366 83.036 33.3758 82.8913 33.3398C82.7443 33.3038 82.5567 33.2858 82.3283 33.2858H81.675L81.3856 35.3293H82.0503C82.2243 35.3293 82.3849 35.3068 82.5386 35.2618C82.6923 35.2168 82.8257 35.1493 82.9433 35.0638C83.0608 34.976 83.1581 34.8725 83.2349 34.7509C83.3118 34.6294 83.3593 34.4944 83.3819 34.3436V34.3413Z" fill="#808285"/>
|
||||
<path d="M84.5733 36.2138C84.5372 36.4434 84.5326 36.6459 84.5598 36.8215C84.5869 36.997 84.6434 37.1455 84.7293 37.2648C84.813 37.3841 84.9215 37.4741 85.0549 37.5394C85.186 37.6024 85.3398 37.6362 85.5138 37.6362C85.6879 37.6362 85.8439 37.6182 85.9954 37.5844C86.1469 37.5506 86.2938 37.4944 86.4317 37.4156C86.4905 37.3886 86.5154 37.4044 86.5064 37.4629L86.4634 37.7712C86.4566 37.8117 86.4295 37.8455 86.3797 37.868C86.2328 37.9265 86.079 37.9715 85.9231 38.0008C85.7671 38.03 85.5998 38.0458 85.4234 38.0458C84.9034 38.0458 84.5349 37.8815 84.3156 37.5551C84.0963 37.2288 84.033 36.7359 84.1257 36.0765C84.2071 35.4959 84.406 35.0278 84.7225 34.6699C85.0526 34.3098 85.4302 34.1275 85.8575 34.1275C86.0926 34.1275 86.2916 34.1725 86.4521 34.2648C86.6126 34.3571 86.7415 34.4944 86.8364 34.6767C87.006 35.0008 87.0512 35.4351 86.9743 35.9797C86.9653 36.0383 86.9585 36.0855 86.9517 36.117C86.945 36.1485 86.9336 36.171 86.9201 36.1868C86.9065 36.2003 86.8816 36.2093 86.85 36.2116C86.8183 36.2138 86.7731 36.2161 86.7143 36.2161H84.5733V36.2138ZM86.529 35.8222C86.5561 35.6354 86.5629 35.4689 86.5493 35.3203C86.5357 35.174 86.5018 35.0413 86.4476 34.922C86.33 34.6519 86.122 34.5169 85.8258 34.5169C85.5297 34.5169 85.2561 34.6542 85.0278 34.9287C84.9351 35.0525 84.8514 35.1943 84.7768 35.3541C84.7045 35.5139 84.6547 35.6692 84.6276 35.82H86.5267L86.529 35.8222Z" fill="#808285"/>
|
||||
<path d="M89.4432 37.9625C89.3143 37.985 89.1877 38.0008 89.0701 38.0098C88.9526 38.0188 88.8079 38.0233 88.6428 38.0233C88.3806 38.0233 88.1545 37.9737 87.9646 37.8725C87.7747 37.7712 87.6209 37.6339 87.5034 37.4606C87.3858 37.2873 87.3067 37.0803 87.2637 36.844C87.2208 36.6054 87.2185 36.3511 87.2592 36.0765C87.2976 35.7975 87.3745 35.5409 87.4875 35.3046C87.6006 35.0683 87.7453 34.8657 87.9194 34.6947C88.0935 34.5236 88.2924 34.3886 88.514 34.2896C88.7378 34.1905 88.9797 34.1433 89.242 34.1433C89.3821 34.1433 89.5065 34.15 89.6195 34.1613C89.7326 34.1725 89.8501 34.195 89.9767 34.2266C90.0332 34.2446 90.0536 34.2873 90.04 34.3571L89.9903 34.5776C89.9745 34.6317 89.9383 34.6542 89.8863 34.6384C89.7823 34.6024 89.6806 34.5754 89.5811 34.5596C89.4816 34.5439 89.3708 34.5349 89.2487 34.5349C89.034 34.5349 88.8395 34.5731 88.6654 34.6474C88.4914 34.7217 88.3399 34.8297 88.211 34.967C88.0821 35.1043 87.9759 35.2686 87.8945 35.4576C87.8131 35.6467 87.7566 35.8537 87.7249 36.0788C87.6955 36.2836 87.6955 36.4816 87.7249 36.6684C87.7566 36.8552 87.8154 37.0218 87.9013 37.1658C87.9872 37.3098 88.1025 37.4246 88.2449 37.5079C88.3874 37.5934 88.5569 37.6339 88.7559 37.6339C88.9028 37.6339 89.0272 37.6272 89.1267 37.6137C89.2261 37.6002 89.3392 37.5754 89.4658 37.5371C89.5313 37.5191 89.563 37.5371 89.5607 37.5844L89.5449 37.8387C89.5404 37.9085 89.5042 37.949 89.4386 37.9625H89.4432Z" fill="#808285"/>
|
||||
<path d="M92.0725 34.6429C92.0002 34.6159 91.9007 34.6024 91.7741 34.6024C91.4621 34.6024 91.2066 34.7689 91.0077 35.1043C90.8517 35.3653 90.7454 35.6984 90.6889 36.1058L90.4447 37.841C90.4357 37.904 90.4018 37.9377 90.343 37.9377H90.0966C90.0378 37.9377 90.0129 37.9062 90.022 37.841L90.4153 35.0548C90.4379 34.8905 90.456 34.7554 90.4696 34.6542C90.4809 34.5506 90.4945 34.4404 90.508 34.3211C90.5171 34.2581 90.551 34.2243 90.6098 34.2243H90.8449C90.9037 34.2243 90.9285 34.2558 90.9195 34.3211L90.8246 34.994C91.1117 34.4179 91.4576 34.1298 91.8577 34.1298C91.955 34.1298 92.0499 34.1433 92.1426 34.1703C92.1675 34.1793 92.1878 34.1951 92.2037 34.2153C92.2195 34.2356 92.2263 34.2648 92.2195 34.3008L92.1788 34.5889C92.1743 34.6159 92.1607 34.6339 92.1404 34.6429C92.1177 34.6519 92.0974 34.6519 92.077 34.6429H92.0725Z" fill="#808285"/>
|
||||
<path d="M92.4388 36.2138C92.4026 36.4434 92.3981 36.6459 92.4252 36.8215C92.4523 36.997 92.5089 37.1455 92.5948 37.2648C92.6784 37.3841 92.7869 37.4741 92.9203 37.5394C93.0515 37.6024 93.2052 37.6362 93.3793 37.6362C93.5534 37.6362 93.7094 37.6182 93.8608 37.5844C94.0123 37.5506 94.1593 37.4944 94.2972 37.4156C94.356 37.3886 94.3808 37.4044 94.3718 37.4629L94.3288 37.7712C94.3221 37.8117 94.2949 37.8455 94.2452 37.868C94.0982 37.9265 93.9445 37.9715 93.7885 38.0008C93.6325 38.03 93.4652 38.0458 93.2889 38.0458C92.7689 38.0458 92.4003 37.8815 92.181 37.5551C91.9617 37.2288 91.8984 36.7359 91.9911 36.0765C92.0725 35.4959 92.2715 35.0278 92.588 34.6699C92.9181 34.3098 93.2956 34.1275 93.7229 34.1275C93.9581 34.1275 94.157 34.1725 94.3175 34.2648C94.4781 34.3571 94.6069 34.4944 94.7019 34.6767C94.8714 35.0008 94.9167 35.4351 94.8398 35.9797C94.8307 36.0383 94.824 36.0855 94.8172 36.117C94.8104 36.1485 94.7991 36.171 94.7855 36.1868C94.772 36.2003 94.7471 36.2093 94.7154 36.2116C94.6838 36.2138 94.6386 36.2161 94.5798 36.2161H92.4388V36.2138ZM94.3944 35.8222C94.4215 35.6354 94.4283 35.4689 94.4147 35.3203C94.4012 35.174 94.3673 35.0413 94.313 34.922C94.1955 34.6519 93.9875 34.5169 93.6913 34.5169C93.3951 34.5169 93.1216 34.6542 92.8932 34.9287C92.8005 35.0525 92.7169 35.1943 92.6423 35.3541C92.5699 35.5139 92.5202 35.6692 92.493 35.82H94.3921L94.3944 35.8222Z" fill="#808285"/>
|
||||
<path d="M95.7034 34.8005C95.6808 34.814 95.6605 34.8185 95.6424 34.8117C95.6243 34.805 95.6175 34.7892 95.6198 34.7667L95.656 34.5056C95.665 34.4426 95.7012 34.3931 95.7645 34.3616C95.925 34.2738 96.09 34.2131 96.2619 34.1793C96.4337 34.1455 96.6191 34.1275 96.818 34.1275C97.2408 34.1275 97.5325 34.2356 97.6975 34.4539C97.8603 34.6722 97.9123 34.9985 97.849 35.4374L97.6048 37.159C97.5845 37.2963 97.5709 37.4179 97.5596 37.5259C97.5483 37.6339 97.5392 37.7374 97.5347 37.8387C97.5257 37.9017 97.4918 37.9355 97.433 37.9355H97.2046C97.1459 37.9355 97.121 37.904 97.13 37.8387L97.2046 37.3098C97.0825 37.5439 96.9085 37.7239 96.6824 37.8522C96.4563 37.9805 96.2189 38.0435 95.9747 38.0435C95.5474 38.0435 95.2558 37.9085 95.0953 37.6384C95.041 37.5461 95.0048 37.4404 94.989 37.3188C94.9732 37.1973 94.9732 37.078 94.989 36.9587C95.0274 36.6797 95.1224 36.4389 95.2716 36.2386C95.4208 36.0383 95.6266 35.8875 95.8888 35.7862C96.2099 35.6669 96.6846 35.6084 97.3132 35.6084H97.3945L97.4239 35.4036C97.4646 35.1155 97.4352 34.895 97.3358 34.7442C97.2363 34.5934 97.0464 34.5169 96.7638 34.5169C96.5739 34.5169 96.3907 34.5394 96.2166 34.5821C96.0426 34.6249 95.8707 34.6969 95.7057 34.7982L95.7034 34.8005ZM97.3403 36.0023H97.2205C96.9853 35.9932 96.7728 36.0023 96.5852 36.0338C96.3975 36.063 96.2393 36.1035 96.1081 36.153C95.9205 36.2206 95.7735 36.3241 95.665 36.4591C95.5565 36.5941 95.4909 36.7562 95.4638 36.943C95.448 37.0578 95.4502 37.1635 95.4706 37.2626C95.4909 37.3616 95.5316 37.4381 95.5972 37.4921C95.708 37.6024 95.8685 37.6564 96.081 37.6564C96.228 37.6564 96.3704 37.6249 96.5038 37.5596C96.6372 37.4944 96.7592 37.4044 96.8678 37.2851C96.9785 37.1658 97.069 37.0195 97.1459 36.8417C97.2205 36.6662 97.2747 36.4636 97.3086 36.2341L97.3425 36L97.3403 36.0023Z" fill="#808285"/>
|
||||
<path d="M99.8453 37.9422C99.6576 38.0098 99.479 38.0458 99.305 38.0458C98.9636 38.0458 98.7533 37.9242 98.6787 37.6812C98.6312 37.5169 98.6358 37.2266 98.6945 36.8102L99.0043 34.6227H98.4097C98.3509 34.6227 98.326 34.5911 98.3351 34.5259L98.3644 34.3211C98.3735 34.2581 98.4074 34.2243 98.4662 34.2243H99.0608L99.1919 33.2971C99.201 33.2296 99.2349 33.1936 99.2891 33.1936H99.5559C99.6102 33.1936 99.6328 33.2273 99.6237 33.2971L99.4926 34.2243H100.196C100.255 34.2243 100.279 34.2558 100.27 34.3211L100.241 34.5259C100.232 34.5911 100.198 34.6227 100.139 34.6227H99.4361L99.0947 37.0443C99.0382 37.4516 99.1603 37.6542 99.4655 37.6542C99.583 37.6542 99.7209 37.6272 99.8769 37.5709C99.8996 37.5619 99.9199 37.5619 99.938 37.5709C99.9561 37.5799 99.9629 37.5979 99.9583 37.6249L99.947 37.8027C99.947 37.8657 99.9154 37.913 99.8521 37.94L99.8453 37.9422Z" fill="#808285"/>
|
||||
<path d="M100.652 38.1425C100.643 38.2056 100.609 38.2393 100.551 38.2393H100.273C100.214 38.2393 100.189 38.2078 100.198 38.1425L100.695 34.6227C100.704 34.5596 100.738 34.5259 100.797 34.5259H101.075C101.134 34.5259 101.159 34.5574 101.15 34.6227L100.652 38.1425ZM100.808 33.2296C100.822 33.1373 100.863 33.0585 100.93 32.9933C100.998 32.928 101.075 32.8942 101.159 32.8942C101.242 32.8942 101.31 32.928 101.362 32.9933C101.414 33.0585 101.435 33.1395 101.421 33.2296C101.408 33.3218 101.367 33.3984 101.297 33.4636C101.227 33.5289 101.15 33.5604 101.064 33.5604C100.978 33.5604 100.912 33.5289 100.863 33.4636C100.813 33.4006 100.795 33.3218 100.806 33.2296H100.808Z" fill="#808285"/>
|
||||
<path d="M104.173 37.841C104.163 37.904 104.13 37.9377 104.071 37.9377H103.818C103.759 37.9377 103.734 37.9062 103.743 37.841L104.048 35.6804C104.107 35.2596 104.08 34.9625 103.967 34.7847C103.851 34.6092 103.668 34.5214 103.415 34.5214C103.074 34.5214 102.798 34.6249 102.59 34.8297C102.382 35.0345 102.251 35.3226 102.199 35.6939L101.896 37.841C101.887 37.904 101.853 37.9377 101.794 37.9377H101.541C101.482 37.9377 101.457 37.9062 101.466 37.841L101.853 35.0975C101.88 34.9017 101.9 34.7487 101.914 34.6384C101.928 34.5281 101.937 34.4246 101.943 34.3233C101.943 34.2918 101.955 34.2671 101.975 34.2513C101.995 34.2356 102.02 34.2266 102.045 34.2266H102.273C102.332 34.2266 102.357 34.2581 102.348 34.3233L102.294 34.7014C102.441 34.5056 102.604 34.3616 102.782 34.2693C102.961 34.177 103.198 34.132 103.488 34.132C103.888 34.132 104.173 34.2581 104.34 34.5101C104.507 34.7622 104.559 35.1155 104.494 35.5746L104.173 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M104.995 38.8357C104.946 38.8222 104.93 38.7884 104.946 38.7322L105.007 38.4306C105.016 38.3721 105.045 38.3563 105.095 38.3901C105.244 38.4689 105.391 38.5229 105.534 38.5589C105.676 38.5926 105.834 38.6107 106.008 38.6107C106.393 38.6107 106.698 38.4846 106.926 38.2303C107.155 37.976 107.313 37.6294 107.399 37.1905C107.272 37.3953 107.107 37.5529 106.901 37.6564C106.696 37.7622 106.479 37.814 106.246 37.814C106.038 37.814 105.852 37.7734 105.687 37.6902C105.522 37.6069 105.384 37.4921 105.274 37.3413C105.165 37.1905 105.086 37.0083 105.041 36.7922C104.995 36.5761 104.991 36.3398 105.027 36.0788C105.07 35.7727 105.136 35.4981 105.222 35.2596C105.307 35.021 105.42 34.8162 105.558 34.6519C105.696 34.4876 105.861 34.3616 106.056 34.2738C106.25 34.186 106.476 34.1433 106.734 34.1433C106.958 34.1433 107.15 34.1838 107.308 34.2626C107.469 34.3436 107.623 34.4854 107.77 34.6924L107.81 34.3211C107.819 34.2581 107.853 34.2243 107.912 34.2243H108.152C108.21 34.2243 108.235 34.2558 108.226 34.3211L107.84 37.0645C107.797 37.3616 107.724 37.6317 107.62 37.8702C107.516 38.111 107.385 38.3136 107.225 38.4801C107.064 38.6467 106.876 38.7749 106.659 38.865C106.445 38.955 106.205 38.9977 105.945 38.9977C105.755 38.9977 105.59 38.9842 105.45 38.9595C105.31 38.9347 105.158 38.892 104.993 38.8335L104.995 38.8357ZM107.566 36.063C107.636 35.5746 107.595 35.1966 107.446 34.931C107.297 34.6654 107.064 34.5326 106.748 34.5326C106.406 34.5326 106.13 34.6564 105.922 34.904C105.714 35.1515 105.572 35.5409 105.497 36.0765C105.47 36.2723 105.47 36.4546 105.497 36.6189C105.524 36.7832 105.574 36.925 105.647 37.0398C105.719 37.1568 105.812 37.2491 105.925 37.3143C106.038 37.3796 106.167 37.4134 106.309 37.4134C106.451 37.4134 106.601 37.3796 106.741 37.3143C106.881 37.2491 107.008 37.1545 107.118 37.033C107.231 36.9115 107.326 36.7697 107.403 36.6032C107.482 36.4389 107.534 36.2588 107.562 36.0608L107.566 36.063Z" fill="#808285"/>
|
||||
<path d="M113.824 37.841C113.835 37.904 113.813 37.9377 113.754 37.9377H113.451C113.426 37.9377 113.404 37.9332 113.385 37.9242C113.367 37.9152 113.354 37.8882 113.342 37.841L113.051 36.5784H110.67C110.559 36.7945 110.451 37.0038 110.347 37.2086C110.243 37.4156 110.137 37.6249 110.03 37.8387C110.008 37.8837 109.985 37.913 109.965 37.922C109.944 37.931 109.922 37.9355 109.897 37.9355H109.599C109.54 37.9355 109.524 37.904 109.556 37.8387L112.11 32.9257C112.14 32.8717 112.18 32.8425 112.237 32.8425H112.624C112.678 32.8425 112.712 32.8695 112.725 32.9257L113.824 37.8387V37.841ZM112.963 36.1395C112.852 35.6647 112.748 35.1943 112.653 34.7307C112.556 34.2671 112.452 33.7967 112.343 33.3218C112.099 33.7967 111.857 34.2671 111.622 34.7307C111.385 35.1943 111.145 35.6647 110.901 36.1395H112.965H112.963Z" fill="#808285"/>
|
||||
<path d="M116.991 37.841C116.982 37.904 116.949 37.9377 116.89 37.9377H116.643C116.585 37.9377 116.56 37.9062 116.569 37.841L116.641 37.3256C116.347 37.7915 115.947 38.0255 115.441 38.0255C114.988 38.0255 114.663 37.8387 114.462 37.4629C114.278 37.1163 114.226 36.6527 114.308 36.0765C114.489 34.7915 115.049 34.1478 115.985 34.1478C116.239 34.1478 116.456 34.2018 116.637 34.3121C116.817 34.4224 116.939 34.5641 117.003 34.7374L117.308 32.5769C117.317 32.5139 117.351 32.4801 117.41 32.4801H117.656C117.715 32.4801 117.74 32.5116 117.731 32.5769L116.987 37.8387L116.991 37.841ZM114.776 36.0765C114.746 36.2926 114.733 36.4861 114.74 36.6639C114.746 36.8395 114.774 36.9948 114.823 37.1275C114.893 37.2918 114.988 37.4179 115.108 37.5056C115.228 37.5934 115.382 37.6362 115.567 37.6362C115.737 37.6362 115.893 37.5889 116.035 37.4921C116.178 37.3954 116.302 37.2738 116.41 37.1253C116.517 36.9767 116.605 36.8102 116.675 36.6234C116.743 36.4389 116.79 36.2566 116.815 36.0788C116.847 35.8582 116.854 35.6557 116.835 35.4689C116.817 35.2821 116.774 35.12 116.709 34.9828C116.641 34.8455 116.551 34.7374 116.435 34.6609C116.32 34.5821 116.178 34.5439 116.008 34.5439C115.649 34.5439 115.352 34.7104 115.119 35.0458C115.034 35.1785 114.961 35.3338 114.905 35.5094C114.848 35.6849 114.805 35.8762 114.776 36.0833V36.0765Z" fill="#808285"/>
|
||||
<path d="M119.004 37.8477C118.974 37.9062 118.927 37.9377 118.863 37.9377H118.554C118.49 37.9377 118.454 37.9085 118.445 37.8477L117.828 34.3211C117.823 34.2986 117.828 34.2761 117.844 34.2558C117.86 34.2356 117.88 34.2243 117.905 34.2243H118.19C118.239 34.2243 118.273 34.2558 118.289 34.3211L118.782 37.4629L120.202 34.3211C120.213 34.2941 120.231 34.2716 120.256 34.2513C120.279 34.2333 120.304 34.2243 120.331 34.2243H120.609C120.634 34.2243 120.652 34.2356 120.661 34.2558C120.67 34.2761 120.67 34.2986 120.659 34.3211L119.001 37.8477H119.004Z" fill="#808285"/>
|
||||
<path d="M120.964 36.2138C120.928 36.4434 120.923 36.6459 120.95 36.8215C120.977 36.997 121.034 37.1455 121.12 37.2648C121.203 37.3841 121.312 37.4741 121.445 37.5394C121.579 37.6024 121.73 37.6362 121.904 37.6362C122.078 37.6362 122.234 37.6182 122.386 37.5844C122.537 37.5506 122.684 37.4944 122.822 37.4156C122.881 37.3886 122.906 37.4044 122.897 37.4629L122.854 37.7712C122.847 37.8117 122.82 37.8455 122.77 37.868C122.623 37.9265 122.469 37.9715 122.313 38.0008C122.157 38.03 121.99 38.0458 121.814 38.0458C121.294 38.0458 120.925 37.8815 120.706 37.5551C120.487 37.2288 120.423 36.7359 120.516 36.0765C120.597 35.4959 120.796 35.0278 121.113 34.6699C121.443 34.3098 121.821 34.1275 122.248 34.1275C122.485 34.1275 122.682 34.1725 122.842 34.2648C123.003 34.3571 123.132 34.4944 123.227 34.6767C123.396 35.0008 123.442 35.4351 123.365 35.9797C123.356 36.0383 123.349 36.0855 123.342 36.117C123.335 36.1485 123.324 36.171 123.31 36.1868C123.297 36.2003 123.272 36.2093 123.24 36.2116C123.209 36.2138 123.164 36.2161 123.105 36.2161H120.964V36.2138ZM122.919 35.8222C122.947 35.6354 122.953 35.4689 122.94 35.3203C122.926 35.174 122.892 35.0413 122.838 34.922C122.72 34.6519 122.512 34.5169 122.219 34.5169C121.925 34.5169 121.649 34.6542 121.418 34.9287C121.325 35.0525 121.242 35.1943 121.167 35.3541C121.095 35.5139 121.045 35.6692 121.018 35.82H122.917L122.919 35.8222Z" fill="#808285"/>
|
||||
<path d="M126.365 37.841C126.356 37.904 126.322 37.9377 126.263 37.9377H126.01C125.951 37.9377 125.926 37.9062 125.935 37.841L126.241 35.6804C126.299 35.2596 126.272 34.9625 126.159 34.7847C126.044 34.6092 125.861 34.5214 125.608 34.5214C125.266 34.5214 124.99 34.6249 124.782 34.8297C124.574 35.0345 124.443 35.3226 124.391 35.6939L124.088 37.841C124.079 37.904 124.045 37.9377 123.986 37.9377H123.733C123.674 37.9377 123.65 37.9062 123.659 37.841L124.045 35.0975C124.072 34.9017 124.093 34.7487 124.106 34.6384C124.12 34.5281 124.129 34.4246 124.136 34.3233C124.136 34.2918 124.147 34.2671 124.167 34.2513C124.188 34.2356 124.213 34.2266 124.237 34.2266H124.466C124.525 34.2266 124.549 34.2581 124.54 34.3233L124.486 34.7014C124.633 34.5056 124.796 34.3616 124.974 34.2693C125.153 34.177 125.39 34.132 125.68 34.132C126.08 34.132 126.365 34.2581 126.532 34.5101C126.699 34.7622 126.751 35.1155 126.686 35.5746L126.365 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M128.757 37.9422C128.569 38.0098 128.391 38.0458 128.217 38.0458C127.875 38.0458 127.665 37.9242 127.59 37.6812C127.543 37.5169 127.547 37.2266 127.606 36.8102L127.916 34.6227H127.321C127.262 34.6227 127.238 34.5911 127.247 34.5259L127.276 34.3211C127.285 34.2581 127.319 34.2243 127.378 34.2243H127.972L128.103 33.2971C128.113 33.2296 128.146 33.1936 128.201 33.1936H128.467C128.522 33.1936 128.544 33.2273 128.535 33.2971L128.404 34.2243H129.107C129.166 34.2243 129.191 34.2558 129.182 34.3211L129.153 34.5259C129.143 34.5911 129.11 34.6227 129.051 34.6227H128.348L128.006 37.0443C127.95 37.4516 128.072 37.6542 128.377 37.6542C128.495 37.6542 128.633 37.6272 128.789 37.5709C128.811 37.5619 128.831 37.5619 128.85 37.5709C128.868 37.5799 128.874 37.5979 128.87 37.6249L128.859 37.8027C128.859 37.8657 128.827 37.913 128.764 37.94L128.757 37.9422Z" fill="#808285"/>
|
||||
<path d="M131.879 37.841C131.87 37.904 131.836 37.9377 131.777 37.9377H131.549C131.49 37.9377 131.465 37.9062 131.474 37.841L131.556 37.2716C131.407 37.5461 131.232 37.7442 131.031 37.8657C130.83 37.9873 130.59 38.048 130.312 38.048C129.523 38.048 129.195 37.5709 129.331 36.6144L129.654 34.3233C129.663 34.2603 129.697 34.2266 129.756 34.2266H130.009C130.068 34.2266 130.093 34.2581 130.084 34.3233L129.779 36.4906C129.668 37.2671 129.89 37.6564 130.437 37.6564C130.597 37.6564 130.746 37.6182 130.887 37.5439C131.027 37.4674 131.149 37.3661 131.257 37.2356C131.364 37.105 131.454 36.9542 131.524 36.7787C131.594 36.6054 131.642 36.4209 131.664 36.2296L131.933 34.3233C131.942 34.2603 131.976 34.2266 132.035 34.2266H132.288C132.347 34.2266 132.372 34.2581 132.363 34.3233L131.974 37.0803C131.954 37.2311 131.936 37.3661 131.92 37.4854C131.906 37.6047 131.893 37.7239 131.879 37.841Z" fill="#808285"/>
|
||||
<path d="M134.739 34.6429C134.667 34.6159 134.567 34.6024 134.441 34.6024C134.129 34.6024 133.873 34.7689 133.674 35.1043C133.518 35.3653 133.412 35.6984 133.355 36.1058L133.111 37.841C133.102 37.904 133.068 37.9377 133.009 37.9377H132.763C132.704 37.9377 132.679 37.9062 132.688 37.841L133.082 35.0548C133.104 34.8905 133.123 34.7554 133.136 34.6542C133.147 34.5506 133.161 34.4404 133.175 34.3211C133.184 34.2581 133.217 34.2243 133.276 34.2243H133.511C133.57 34.2243 133.595 34.2558 133.586 34.3211L133.491 34.994C133.778 34.4179 134.124 34.1298 134.524 34.1298C134.621 34.1298 134.716 34.1433 134.809 34.1703C134.834 34.1793 134.852 34.1951 134.87 34.2153C134.886 34.2356 134.893 34.2648 134.886 34.3008L134.845 34.5889C134.841 34.6159 134.827 34.6339 134.807 34.6429C134.784 34.6519 134.764 34.6519 134.744 34.6429H134.739Z" fill="#808285"/>
|
||||
<path d="M135.105 36.2138C135.069 36.4434 135.065 36.6459 135.092 36.8215C135.119 36.997 135.175 37.1455 135.261 37.2648C135.345 37.3841 135.453 37.4741 135.587 37.5394C135.72 37.6024 135.872 37.6362 136.046 37.6362C136.22 37.6362 136.376 37.6182 136.527 37.5844C136.679 37.5506 136.826 37.4944 136.964 37.4156C137.022 37.3886 137.047 37.4044 137.038 37.4629L136.995 37.7712C136.989 37.8117 136.961 37.8455 136.912 37.868C136.765 37.9265 136.611 37.9715 136.455 38.0008C136.299 38.03 136.132 38.0458 135.955 38.0458C135.435 38.0458 135.067 37.8815 134.848 37.5551C134.628 37.2288 134.565 36.7359 134.658 36.0765C134.739 35.4959 134.938 35.0278 135.255 34.6699C135.585 34.3098 135.962 34.1275 136.389 34.1275C136.627 34.1275 136.824 34.1725 136.984 34.2648C137.145 34.3571 137.273 34.4944 137.368 34.6767C137.538 35.0008 137.583 35.4351 137.506 35.9797C137.497 36.0383 137.49 36.0855 137.484 36.117C137.477 36.1485 137.466 36.171 137.452 36.1868C137.438 36.2003 137.414 36.2093 137.382 36.2116C137.35 36.2138 137.305 36.2161 137.246 36.2161H135.105V36.2138ZM137.061 35.8222C137.088 35.6354 137.095 35.4689 137.081 35.3203C137.068 35.174 137.034 35.0413 136.98 34.922C136.862 34.6519 136.654 34.5169 136.36 34.5169C136.066 34.5169 135.79 34.6542 135.56 34.9287C135.467 35.0525 135.383 35.1943 135.309 35.3541C135.236 35.5139 135.187 35.6692 135.16 35.82H137.059L137.061 35.8222Z" fill="#808285"/>
|
||||
<path d="M139.855 34.6429C139.783 34.6159 139.683 34.6024 139.557 34.6024C139.245 34.6024 138.989 34.7689 138.79 35.1043C138.634 35.3653 138.528 35.6984 138.472 36.1058L138.228 37.841C138.218 37.904 138.185 37.9377 138.126 37.9377H137.879C137.821 37.9377 137.796 37.9062 137.805 37.841L138.198 35.0548C138.221 34.8905 138.239 34.7554 138.252 34.6542C138.264 34.5506 138.277 34.4404 138.291 34.3211C138.3 34.2581 138.334 34.2243 138.393 34.2243H138.628C138.686 34.2243 138.711 34.2558 138.702 34.3211L138.607 34.994C138.894 34.4179 139.24 34.1298 139.641 34.1298C139.738 34.1298 139.833 34.1433 139.925 34.1703C139.95 34.1793 139.968 34.1951 139.986 34.2153C140.002 34.2356 140.009 34.2648 140.002 34.3008L139.962 34.5889C139.957 34.6159 139.943 34.6339 139.923 34.6429C139.901 34.6519 139.88 34.6519 139.86 34.6429H139.855Z" fill="#808285"/>
|
||||
<path d="M43.8195 19.5349C43.8195 17.784 44.0886 16.1635 44.6402 14.6782C45.1873 13.1951 45.9877 11.8942 47.0367 10.7825C48.1603 9.60316 49.4716 8.70968 50.9615 8.10653C52.4514 7.50113 54.0815 7.19955 55.8562 7.19955C59.1163 7.19955 61.6779 8.07952 63.543 9.83271C65.4015 11.5904 66.3329 14.0098 66.3329 17.0818C66.3329 18.8035 66.0707 20.3924 65.5462 21.8462C65.0216 23.3001 64.2597 24.5559 63.2604 25.6227C62.1052 26.8605 60.7713 27.7967 59.2633 28.4246C57.753 29.0503 56.0936 29.3653 54.2804 29.3653C51.0587 29.3653 48.5062 28.4809 46.632 26.7164C44.7555 24.952 43.8195 22.5596 43.8195 19.5394V19.5349ZM55.7364 12.3961C54.2352 12.3961 53.0211 13.0645 52.0874 14.4014C51.1491 15.7404 50.6812 17.4914 50.6812 19.6497C50.6812 21.099 50.9999 22.1996 51.6352 22.9557C52.2728 23.7142 53.1975 24.0923 54.4161 24.0923C55.924 24.0923 57.1449 23.3991 58.0764 22.006C59.0056 20.6197 59.4713 18.7697 59.4713 16.4674C59.4713 15.2003 59.1389 14.2056 58.472 13.4831C57.8073 12.7607 56.8962 12.3961 55.7386 12.3961H55.7364Z" fill="#173569"/>
|
||||
<path d="M70.0407 28.805L68.7769 7.77119H75.0077V18.8102C75.0077 19.1883 74.9942 19.5754 74.9671 19.967C74.9354 20.3563 74.8924 20.7457 74.8314 21.1328C74.9218 20.6219 75.01 20.1763 75.105 19.8072C75.1977 19.4381 75.2858 19.1343 75.374 18.907L79.3712 7.76894H84.7678L84.9125 18.6797C84.9125 18.9902 84.9057 19.3526 84.8831 19.7577C84.8627 20.1605 84.8356 20.5927 84.7949 21.0495C84.874 20.6354 84.9532 20.2528 85.0391 19.8905C85.1205 19.5304 85.2132 19.1951 85.3104 18.8912L89.0001 7.76894H95.5113L87.3813 28.8027H80.9131L80.488 18.2228V17.919C80.488 17.7029 80.4993 17.4486 80.5242 17.156C80.5468 16.8657 80.5875 16.5124 80.6372 16.0915C80.5378 16.5124 80.4428 16.895 80.3569 17.2393C80.2687 17.5859 80.1873 17.874 80.1195 18.1035L76.4773 28.8005H70.0384L70.0407 28.805Z" fill="#173569"/>
|
||||
<path d="M94.4148 28.805L97.6319 7.77119H107.654C110.449 7.77119 112.492 8.22356 113.783 9.13504C115.079 10.042 115.725 11.4711 115.725 13.4246C115.725 14.8245 115.375 16.0308 114.672 17.0368C113.973 18.0473 112.945 18.8305 111.595 19.3909C112.556 19.7532 113.241 20.2168 113.652 20.7862C114.066 21.3511 114.269 22.105 114.269 23.048C114.269 23.2461 114.265 23.4576 114.249 23.6827C114.236 23.9077 114.211 24.1418 114.181 24.3894L113.946 26.5184C113.917 26.7142 113.899 26.8627 113.894 26.9527C113.89 27.045 113.89 27.1305 113.89 27.2206C113.89 27.4951 113.942 27.7134 114.05 27.8822C114.156 28.051 114.324 28.1748 114.55 28.2626V28.805H107.245C107.207 28.6722 107.175 28.5281 107.164 28.3683C107.148 28.2108 107.141 28.0443 107.141 27.8642C107.141 27.7404 107.148 27.5829 107.164 27.3916C107.177 27.2003 107.202 26.973 107.231 26.7097L107.541 24.5942C107.559 24.4726 107.575 24.3421 107.582 24.2093C107.593 24.0765 107.602 23.8965 107.602 23.6669C107.602 22.7712 107.338 22.1433 106.813 21.7809C106.291 21.4209 105.366 21.2386 104.044 21.2386H102.264L101.089 28.8095H94.4193L94.4148 28.805ZM102.479 16.7509H105.771C106.811 16.7509 107.575 16.5799 108.066 16.2311C108.554 15.8822 108.8 15.3376 108.8 14.5972C108.8 13.9557 108.586 13.4966 108.154 13.2108C107.724 12.925 107.017 12.7832 106.035 12.7832H103.11L102.479 16.7509Z" fill="#173569"/>
|
||||
<path d="M115.092 28.805L125.691 7.77119H132.612L136.948 28.805H130.423L130.089 26.2911H123.191L122.103 28.805H115.092ZM124.911 22.0488H129.365L128.221 14.2663L124.911 22.0488Z" fill="#173569"/>
|
||||
<path d="M0.25322 21.7314C0.25322 21.7314 0.273567 21.7337 0.28261 21.7337C0.364001 21.7337 0.44313 21.7157 0.522259 21.7089C0.522259 21.7089 0.522259 21.7067 0.517737 21.7067C0.431826 21.7179 0.341392 21.7314 0.25322 21.7314Z" fill="white"/>
|
||||
<path d="M31.0707 9.1688L23.6099 1.73744C21.2835 -0.578393 17.5192 -0.578393 15.1951 1.73744L14.4083 2.52288C15.0527 3.33534 15.4506 4.34584 15.4913 5.45312C21.8826 5.50038 27.528 6.95199 31.0707 9.17105V9.1688Z" fill="url(#paint0_linear_8_858)"/>
|
||||
<path d="M22.0228 19.3481H22.0725C22.839 19.3481 23.5376 19.6429 24.0621 20.12C26.0494 19.1658 27.5302 17.9843 28.2921 16.6654H28.3396C28.7171 16.0105 28.9274 15.3218 28.9274 14.6084C28.9274 10.7915 23.1035 7.6024 15.3466 6.84846C14.804 9.03601 12.8212 10.6609 10.4541 10.6609C10.2258 10.6609 10.0019 10.6429 9.78038 10.6137C9.48647 11.7209 9.30786 12.8845 9.30786 14.0885C9.30786 17.093 10.7028 20.0458 13.2756 22.5056C15.3511 22.4224 17.3157 22.168 19.1108 21.7719C19.3618 20.3946 20.5691 19.3503 22.0228 19.3503V19.3481Z" fill="url(#paint1_linear_8_858)"/>
|
||||
<path d="M0.259999 17.9662C0.259999 17.9662 0.273564 17.964 0.282608 17.964C1.32937 17.964 2.17267 18.8102 2.17267 19.8477C2.17267 20.2933 2.02119 20.7007 1.76119 21.0203C3.49752 21.6099 5.48253 22.0465 7.6258 22.2963C7.56476 22.1725 7.50598 22.0465 7.45172 21.9182C7.50824 22.0398 7.57154 22.1703 7.64163 22.2963C7.65293 22.2986 7.66424 22.3008 7.68006 22.3008C6.88199 20.6759 6.41399 18.9115 6.41399 17.012C6.41399 14.5139 7.11711 12.18 8.14579 10.0983C7.85641 9.94974 7.58963 9.7697 7.33642 9.57165L1.75893 15.1305C0.942772 15.943 0.420519 16.931 0.174088 17.9753C0.196696 17.973 0.217043 17.9662 0.237391 17.9662C0.246434 17.9662 0.253217 17.9685 0.26226 17.9685L0.259999 17.9662Z" fill="url(#paint2_linear_8_858)"/>
|
||||
<path d="M8.13448 23.165C8.13448 23.165 8.12318 23.165 8.11188 23.1605C8.70648 24.1598 9.52716 25.3031 10.6689 26.5476C9.66733 25.5011 8.78334 24.3736 8.08475 23.165C5.62948 22.7329 3.4116 22.0758 1.53737 21.2498C1.25928 21.4996 0.906592 21.6594 0.519989 21.7089C0.807115 22.3638 1.21633 22.9783 1.75441 23.5139L15.1928 36.9047C17.517 39.2206 21.2812 39.2183 23.6076 36.9047L25.093 35.4261C19.8705 33.3511 11.6727 29.2843 8.13222 23.1628L8.13448 23.165Z" fill="url(#paint3_linear_8_858)"/>
|
||||
<path d="M25.0229 22.5484C24.8941 24.063 23.6235 25.2558 22.0725 25.2558H22.0228C20.8381 25.2558 19.8185 24.5626 19.3437 23.5589C18.0008 23.6894 16.6104 23.7637 15.1793 23.7637H15.1318C15.0052 23.7637 14.8763 23.7637 14.7497 23.7614C18.6542 26.7299 24.5165 28.7059 31.8507 28.7014L37.0528 23.5161C39.3792 21.2003 39.3792 17.4464 37.0528 15.1305L34.4122 12.4996C34.7558 13.1748 34.9435 13.8815 34.9435 14.6084C34.9435 18.0045 30.9486 20.9707 25.0252 22.5506L25.0229 22.5484Z" fill="url(#paint4_linear_8_858)"/>
|
||||
<path d="M1.50798 21.2386C1.23894 21.4839 0.89529 21.6482 0.517731 21.7067C0.519992 21.7067 0.519992 21.7089 0.522252 21.7089C0.908855 21.6594 1.26155 21.4996 1.53963 21.2498C1.53059 21.2476 1.51928 21.2453 1.51024 21.2386H1.50798Z" fill="white"/>
|
||||
<path d="M2.17266 19.8477C2.17266 18.8102 1.32937 17.964 0.282603 17.964C0.27356 17.964 0.266777 17.9662 0.259995 17.9662C1.2932 17.9797 2.12518 18.8147 2.12518 19.8477C2.12518 20.2933 1.97145 20.7007 1.71371 21.0203C3.4636 21.6122 5.46444 22.051 7.6258 22.3008C7.6258 22.3008 7.6258 22.3008 7.6258 22.2963C5.48253 22.0465 3.49751 21.6099 1.76119 21.0203C2.02119 20.7007 2.17266 20.2933 2.17266 19.8477Z" fill="white"/>
|
||||
<path d="M15.489 5.45086C15.4483 4.34359 15.0504 3.33308 14.4061 2.52063L7.33416 9.56939C7.58512 9.76744 7.85416 9.94749 8.14354 10.096C7.11486 12.1778 6.41174 14.5116 6.41174 17.0098C6.41174 18.9115 6.87748 20.6759 7.67781 22.2986C7.66199 22.2986 7.65068 22.2986 7.63938 22.2941C7.77729 22.5686 7.94007 22.859 8.11415 23.1583C8.12546 23.1605 8.12998 23.1605 8.13676 23.1628C11.6772 29.2843 19.875 33.3511 25.0976 35.4261L31.8529 28.6992C24.5188 28.7037 18.6564 26.7277 14.752 23.7592H14.7022C13.5334 22.94 13.2304 22.5056 13.2304 22.5056C13.2463 22.5056 13.2621 22.5034 13.2756 22.5034C10.7028 20.0435 9.30787 17.0908 9.30787 14.0863C9.30787 12.88 9.48422 11.7164 9.78039 10.6114C10.002 10.6429 10.2258 10.6587 10.4541 10.6587C12.8212 10.6587 14.804 9.03376 15.3466 6.84621C23.1035 7.60015 28.9274 10.7892 28.9274 14.6062C28.9274 15.3196 28.7194 16.0083 28.3396 16.6632H34.3873C33.1393 19.1748 29.6622 21.2971 24.9732 22.5484C24.8489 24.054 23.5918 25.2401 22.0477 25.2558H22.0703C23.6212 25.2558 24.8941 24.0653 25.0207 22.5484C30.9441 20.9685 34.939 18.0023 34.939 14.6062C34.939 13.8792 34.7513 13.1725 34.4077 12.4974L31.0662 9.16879C27.5234 6.94974 21.8781 5.49812 15.4867 5.45086H15.489Z" fill="white"/>
|
||||
<path d="M22.0454 19.3481C22.8118 19.3571 23.5082 19.6519 24.0304 20.1335C24.0417 20.1268 24.0508 20.1223 24.0621 20.12C23.5376 19.6429 22.839 19.3481 22.0725 19.3481H22.0454Z" fill="white"/>
|
||||
<path d="M15.1476 23.7637H15.1793C16.6104 23.7637 18.0008 23.6894 19.3437 23.5589C19.3437 23.5589 19.3415 23.5589 19.3415 23.5544C17.9917 23.6894 16.5855 23.7637 15.1476 23.7637Z" fill="white"/>
|
||||
<path d="M24.0621 20.12C24.0621 20.12 24.0734 20.129 24.0802 20.1335C26.0833 19.177 27.5732 17.991 28.3396 16.6632H28.2921C27.5302 17.982 26.0493 19.1658 24.0621 20.1178V20.12Z" fill="url(#paint5_linear_8_858)"/>
|
||||
<path d="M24.0621 20.12C24.0621 20.12 24.0734 20.129 24.0802 20.1335C26.0833 19.177 27.5732 17.991 28.3396 16.6632H28.2921C27.5302 17.982 26.0493 19.1658 24.0621 20.1178V20.12Z" fill="url(#paint6_linear_8_858)"/>
|
||||
<path d="M19.1561 21.7697C19.4093 20.4014 20.6007 19.3616 22.0454 19.3481H22.0206C20.5691 19.3481 19.3595 20.3924 19.1086 21.7697C17.3112 22.1658 15.3488 22.4201 13.2734 22.5034V22.5056C15.3646 22.4269 17.3451 22.1703 19.1538 21.7697H19.1561Z" fill="url(#paint7_linear_8_858)"/>
|
||||
<path d="M19.1561 21.7697C19.4093 20.4014 20.6007 19.3616 22.0454 19.3481H22.0206C20.5691 19.3481 19.3595 20.3924 19.1086 21.7697C17.3112 22.1658 15.3488 22.4201 13.2734 22.5034V22.5056C15.3646 22.4269 17.3451 22.1703 19.1538 21.7697H19.1561Z" fill="url(#paint8_linear_8_858)"/>
|
||||
<path d="M19.3889 23.5544C19.3731 23.5566 19.3595 23.5566 19.3437 23.5589C19.8185 24.5626 20.8381 25.2558 22.0228 25.2558H22.0499C20.8743 25.2491 19.8592 24.5536 19.3889 23.5544Z" fill="url(#paint9_linear_8_858)"/>
|
||||
<path d="M19.3889 23.5544C19.3731 23.5566 19.3595 23.5566 19.3437 23.5589C19.8185 24.5626 20.8381 25.2558 22.0228 25.2558H22.0499C20.8743 25.2491 19.8592 24.5536 19.3889 23.5544Z" fill="url(#paint10_linear_8_858)"/>
|
||||
<path d="M15.1476 23.7637C15.0165 23.7637 14.8831 23.7637 14.7497 23.7614C14.8763 23.7637 15.0052 23.7637 15.1318 23.7637H15.1476Z" fill="url(#paint11_linear_8_858)"/>
|
||||
<path d="M15.1476 23.7637C15.0165 23.7637 14.8831 23.7637 14.7497 23.7614C14.8763 23.7637 15.0052 23.7637 15.1318 23.7637H15.1476Z" fill="url(#paint12_linear_8_858)"/>
|
||||
<path d="M15.1476 23.7637C16.5855 23.7637 17.9917 23.6894 19.3414 23.5544C19.3414 23.5566 19.3414 23.5566 19.3437 23.5589C19.3595 23.5589 19.3731 23.5589 19.3889 23.5544C19.8592 24.5514 20.8743 25.2468 22.0499 25.2558C23.5918 25.2401 24.8511 24.054 24.9754 22.5484C29.6644 21.2971 33.1416 19.177 34.3896 16.6632H28.3418C27.5754 17.9888 26.0855 19.177 24.0824 20.1335C24.0756 20.1268 24.0711 20.1223 24.0643 20.12C24.0553 20.1223 24.0462 20.129 24.0327 20.1335C23.5082 19.6519 22.8141 19.3571 22.0477 19.3481C20.603 19.3616 19.4115 20.4014 19.1583 21.7697C17.3519 22.1703 15.3714 22.4269 13.2779 22.5056V22.5034C13.2643 22.5034 13.2485 22.5056 13.2327 22.5056C13.2327 22.5056 13.5356 22.94 14.7045 23.7592H14.7542C14.8876 23.7614 15.021 23.7614 15.1521 23.7614L15.1476 23.7637Z" fill="white"/>
|
||||
<path d="M15.1476 23.7637C16.5855 23.7637 17.9917 23.6894 19.3414 23.5544C19.3414 23.5566 19.3414 23.5566 19.3437 23.5589C19.3595 23.5589 19.3731 23.5589 19.3889 23.5544C19.8592 24.5514 20.8743 25.2468 22.0499 25.2558C23.5918 25.2401 24.8511 24.054 24.9754 22.5484C29.6644 21.2971 33.1416 19.177 34.3896 16.6632H28.3418C27.5754 17.9888 26.0855 19.177 24.0824 20.1335C24.0756 20.1268 24.0711 20.1223 24.0643 20.12C24.0553 20.1223 24.0462 20.129 24.0327 20.1335C23.5082 19.6519 22.8141 19.3571 22.0477 19.3481C20.603 19.3616 19.4115 20.4014 19.1583 21.7697C17.3519 22.1703 15.3714 22.4269 13.2779 22.5056V22.5034C13.2643 22.5034 13.2485 22.5056 13.2327 22.5056C13.2327 22.5056 13.5356 22.94 14.7045 23.7592H14.7542C14.8876 23.7614 15.021 23.7614 15.1521 23.7614L15.1476 23.7637Z" fill="url(#paint13_linear_8_858)"/>
|
||||
<path d="M7.62355 22.2963H7.63711C7.56703 22.1725 7.50373 22.042 7.4472 21.9182C7.50146 22.0465 7.56025 22.1703 7.62129 22.2963H7.62355Z" fill="url(#paint14_linear_8_858)"/>
|
||||
<path d="M7.62355 22.2963H7.63711C7.56703 22.1725 7.50373 22.042 7.4472 21.9182C7.50146 22.0465 7.56025 22.1703 7.62129 22.2963H7.62355Z" fill="url(#paint15_linear_8_858)"/>
|
||||
<path d="M0.235133 17.964C0.214785 17.964 0.194438 17.9707 0.171829 17.973C0.171829 17.973 0.171829 17.9745 0.171829 17.9775C0.203481 17.9775 0.235133 17.9662 0.260002 17.9662C0.250958 17.9662 0.244176 17.964 0.235133 17.964Z" fill="url(#paint16_linear_8_858)"/>
|
||||
<path d="M0.235133 17.964C0.214785 17.964 0.194438 17.9707 0.171829 17.973C0.171829 17.973 0.171829 17.9745 0.171829 17.9775C0.203481 17.9775 0.235133 17.9662 0.260002 17.9662C0.250958 17.9662 0.244176 17.964 0.235133 17.964Z" fill="url(#paint17_linear_8_858)"/>
|
||||
<path d="M1.53737 21.2498C3.4116 22.0758 5.62948 22.7329 8.08475 23.165C8.78335 24.3713 9.66734 25.5011 10.6689 26.5476C9.52716 25.3053 8.70874 24.162 8.11188 23.1605C5.65209 22.7239 3.42969 22.0645 1.55772 21.2386C1.55093 21.2453 1.54189 21.2476 1.53737 21.2498Z" fill="url(#paint18_linear_8_858)"/>
|
||||
<path d="M1.53737 21.2498C3.4116 22.0758 5.62948 22.7329 8.08475 23.165C8.78335 24.3713 9.66734 25.5011 10.6689 26.5476C9.52716 25.3053 8.70874 24.162 8.11188 23.1605C5.65209 22.7239 3.42969 22.0645 1.55772 21.2386C1.55093 21.2453 1.54189 21.2476 1.53737 21.2498Z" fill="url(#paint19_linear_8_858)"/>
|
||||
<path d="M0.517735 21.7067C0.895295 21.6459 1.23894 21.4816 1.50798 21.2386C1.51929 21.2453 1.52833 21.2476 1.53737 21.2498C1.54415 21.2476 1.55094 21.2453 1.55772 21.2386C3.42969 22.0645 5.65209 22.7262 8.11188 23.1605C7.93554 22.8612 7.77502 22.5709 7.63711 22.2963H7.62354V22.3008C5.46218 22.0533 3.45908 21.6122 1.71146 21.0203C1.96919 20.7007 2.12293 20.2933 2.12293 19.8477C2.12293 18.8147 1.29094 17.982 0.257739 17.9662C0.230609 17.9662 0.198958 17.9752 0.169567 17.9775C-0.11756 19.2153 -0.00451769 20.5229 0.515475 21.7067H0.517735Z" fill="white"/>
|
||||
<path d="M0.517735 21.7067C0.895295 21.6459 1.23894 21.4816 1.50798 21.2386C1.51929 21.2453 1.52833 21.2476 1.53737 21.2498C1.54415 21.2476 1.55094 21.2453 1.55772 21.2386C3.42969 22.0645 5.65209 22.7262 8.11188 23.1605C7.93554 22.8612 7.77502 22.5709 7.63711 22.2963H7.62354V22.3008C5.46218 22.0533 3.45908 21.6122 1.71146 21.0203C1.96919 20.7007 2.12293 20.2933 2.12293 19.8477C2.12293 18.8147 1.29094 17.982 0.257739 17.9662C0.230609 17.9662 0.198958 17.9752 0.169567 17.9775C-0.11756 19.2153 -0.00451769 20.5229 0.515475 21.7067H0.517735Z" fill="url(#paint20_linear_8_858)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0888 9.16879L23.6257 1.73744C21.2993 -0.578393 17.5351 -0.578393 15.2109 1.73744L14.4241 2.52288L7.34999 9.57164L1.77251 15.1305C0.956348 15.943 0.434095 16.931 0.187664 17.9752C0.187664 17.9752 0.187664 17.9767 0.187664 17.9797C-0.0994626 19.2176 0.0135792 20.5251 0.533571 21.7089C0.44766 21.7202 0.357226 21.7337 0.269054 21.7337C0.280358 21.7337 0.289401 21.7359 0.298445 21.7359C0.379835 21.7359 0.458964 21.7179 0.538093 21.7112C0.825219 22.3661 1.23443 22.9805 1.77251 23.5161L15.2109 36.907C17.5351 39.2228 21.3016 39.2206 23.6257 36.907L25.1111 35.4284L31.8665 28.7014L37.0687 23.5161C39.3951 21.2003 39.3951 17.4464 37.0687 15.1305V15.1283Z" fill="url(#paint21_linear_8_858)"/>
|
||||
<path d="M37.0348 15.1283L34.3918 12.4974L31.0526 9.16879L23.5941 1.73744C21.27 -0.578393 17.5034 -0.578393 15.1793 1.73744L14.3925 2.52288L7.32059 9.57164L1.74085 15.1305C0.924689 15.943 0.402436 16.931 0.156005 17.9752C0.156005 17.9752 0.156005 17.9767 0.156005 17.9797C-0.131121 19.2176 -0.0180793 20.5251 0.504174 21.7089C0.418262 21.7202 0.327829 21.7337 0.239656 21.7337C0.25096 21.7337 0.260004 21.7359 0.269047 21.7359C0.350437 21.7359 0.429566 21.7179 0.508695 21.7112C0.795822 22.3661 1.20503 22.9805 1.74311 23.5161L15.1815 36.907C17.5057 39.2228 21.2722 39.2206 23.5964 36.907L25.084 35.4284L31.8371 28.7014L37.0393 23.5161C39.3657 21.2003 39.3657 17.4464 37.0393 15.1305L37.0348 15.1283Z" fill="url(#paint22_linear_8_858)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0865 9.16879L23.6257 1.73744C21.2993 -0.578393 17.5351 -0.578393 15.2109 1.73744L14.4241 2.52288L7.34999 9.57164L1.77251 15.1305C0.956345 15.943 0.434092 16.931 0.189922 17.9752C0.189922 17.9752 0.189922 17.9767 0.189922 17.9797C-0.0972043 19.2176 0.0158375 20.5251 0.53583 21.7089C0.449918 21.7202 0.359485 21.7337 0.271312 21.7337C0.282616 21.7337 0.29166 21.7359 0.300703 21.7359C0.382093 21.7359 0.461222 21.7179 0.540351 21.7112C0.827478 22.3661 1.23669 22.9805 1.77477 23.5161L15.2132 36.907C17.5373 39.2228 21.3039 39.2206 23.628 36.907L25.1134 35.4284L31.8688 28.7014L37.0709 23.5161C39.3951 21.2003 39.3951 17.4464 37.0709 15.1305L37.0687 15.1283Z" fill="url(#paint23_linear_8_858)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0865 9.16879L23.6257 1.73744C21.2993 -0.578393 17.5351 -0.578393 15.2109 1.73744L14.4241 2.52288L7.35225 9.57164L1.77251 15.1305C0.956345 15.943 0.434092 16.931 0.189922 17.9752C0.189922 17.9752 0.189922 17.9767 0.189922 17.9797C-0.0972043 19.2176 0.0158375 20.5251 0.53583 21.7089C0.449918 21.7202 0.359485 21.7337 0.271312 21.7337C0.282616 21.7337 0.29166 21.7359 0.300703 21.7359C0.382093 21.7359 0.461222 21.7179 0.540351 21.7112C0.827478 22.3661 1.23669 22.9805 1.77477 23.5161L15.2132 36.907C17.5373 39.2228 21.3039 39.2206 23.628 36.907L25.1134 35.4284L31.8688 28.7014L37.0709 23.5161C39.3951 21.2003 39.3951 17.4464 37.0709 15.1305L37.0687 15.1283Z" fill="url(#paint24_linear_8_858)"/>
|
||||
<path d="M48.2101 35.3969C48.0857 36.2116 47.8235 36.8462 47.421 37.3031C46.9847 37.796 46.4308 38.0435 45.7638 38.0435C45.0969 38.0435 44.6131 37.796 44.3101 37.3031C44.0298 36.8327 43.9461 36.1958 44.0592 35.3969C44.1134 35.0165 44.2039 34.6744 44.3305 34.3683C44.4571 34.0623 44.6198 33.79 44.812 33.5514C45.0381 33.2993 45.2936 33.1035 45.583 32.964C45.8701 32.8245 46.1798 32.7547 46.5076 32.7547C46.8355 32.7547 47.1294 32.8222 47.3735 32.9595C47.6177 33.0968 47.8167 33.2948 47.9704 33.5559C48.0993 33.8035 48.1852 34.078 48.2281 34.3819C48.2711 34.6857 48.2621 35.0233 48.2055 35.3946L48.2101 35.3969ZM47.7488 35.3969C47.7895 35.1088 47.7941 34.8365 47.7624 34.5799C47.7308 34.3233 47.6675 34.0938 47.5748 33.8867C47.4595 33.6617 47.3057 33.4906 47.1181 33.3691C46.9304 33.2476 46.7089 33.1868 46.4511 33.1868C46.1934 33.1868 45.947 33.2476 45.7254 33.3691C45.5038 33.4906 45.3026 33.6639 45.124 33.8867C44.9725 34.0915 44.8437 34.3233 44.7419 34.5799C44.6379 34.8365 44.5656 35.1088 44.5249 35.3969C44.4842 35.6849 44.4797 35.9572 44.5113 36.2161C44.543 36.4749 44.604 36.7067 44.699 36.9115C44.8211 37.132 44.9748 37.3031 45.1647 37.4269C45.3546 37.5506 45.5762 37.6114 45.8294 37.6114C46.0826 37.6114 46.3268 37.5506 46.5483 37.4291C46.7699 37.3076 46.9711 37.1343 47.1497 36.9115C47.3012 36.7067 47.4278 36.4726 47.5341 36.2161C47.6381 35.9572 47.7104 35.6849 47.7511 35.3969H47.7488Z" fill="#808285"/>
|
||||
<path d="M51.2531 37.841C51.2441 37.904 51.2102 37.9377 51.1514 37.9377H50.8982C50.8394 37.9377 50.8145 37.9062 50.8236 37.841L51.1288 35.6804C51.1876 35.2596 51.1604 34.9625 51.0451 34.7847C50.9298 34.6092 50.7467 34.5214 50.4935 34.5214C50.1521 34.5214 49.8763 34.6249 49.6683 34.8297C49.4603 35.0345 49.3292 35.3226 49.2772 35.6939L48.9742 37.841C48.9652 37.904 48.9313 37.9377 48.8725 37.9377H48.6193C48.5605 37.9377 48.5356 37.9062 48.5447 37.841L48.9313 35.0975C48.9584 34.9017 48.9787 34.7487 48.9923 34.6384C49.0059 34.5281 49.0149 34.4246 49.0217 34.3233C49.0217 34.2918 49.033 34.2671 49.0533 34.2513C49.0737 34.2356 49.0986 34.2266 49.1234 34.2266H49.3518C49.4106 34.2266 49.4354 34.2581 49.4264 34.3233L49.3721 34.7014C49.5191 34.5056 49.6819 34.3616 49.8605 34.2693C50.0391 34.177 50.2765 34.132 50.5681 34.132C50.9683 34.132 51.2531 34.2581 51.4204 34.5101C51.5877 34.7622 51.6397 35.1155 51.5742 35.5746L51.2531 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M52.5192 37.841C52.5102 37.904 52.4762 37.9377 52.4175 37.9377H52.1394C52.0806 37.9377 52.0557 37.9062 52.0648 37.841L52.8086 32.5791C52.8176 32.5161 52.8515 32.4824 52.9103 32.4824H53.1884C53.2472 32.4824 53.2721 32.5139 53.263 32.5791L52.5192 37.841Z" fill="#808285"/>
|
||||
<path d="M53.688 38.1425C53.679 38.2056 53.6451 38.2393 53.5863 38.2393H53.3082C53.2494 38.2393 53.2246 38.2078 53.2336 38.1425L53.731 34.6227C53.74 34.5596 53.774 34.5259 53.8327 34.5259H54.1108C54.1696 34.5259 54.1945 34.5574 54.1854 34.6227L53.688 38.1425ZM53.8418 33.2296C53.8553 33.1373 53.896 33.0585 53.9639 32.9933C54.0317 32.928 54.1086 32.8942 54.1922 32.8942C54.2759 32.8942 54.3437 32.928 54.3957 32.9933C54.4477 33.0585 54.468 33.1395 54.4545 33.2296C54.4409 33.3218 54.4002 33.3984 54.3301 33.4636C54.26 33.5289 54.1832 33.5604 54.0973 33.5604C54.0113 33.5604 53.9458 33.5289 53.896 33.4636C53.8463 33.4006 53.8282 33.3218 53.8395 33.2296H53.8418Z" fill="#808285"/>
|
||||
<path d="M57.2059 37.841C57.1969 37.904 57.163 37.9377 57.1042 37.9377H56.851C56.7922 37.9377 56.7673 37.9062 56.7764 37.841L57.0816 35.6804C57.1404 35.2596 57.1132 34.9625 56.9979 34.7847C56.8826 34.6092 56.6995 34.5214 56.4463 34.5214C56.1049 34.5214 55.8291 34.6249 55.6211 34.8297C55.4131 35.0345 55.282 35.3226 55.23 35.6939L54.927 37.841C54.918 37.904 54.884 37.9377 54.8253 37.9377H54.5721C54.5133 37.9377 54.4884 37.9062 54.4974 37.841L54.884 35.0975C54.9112 34.9017 54.9315 34.7487 54.9451 34.6384C54.9587 34.5281 54.9677 34.4246 54.9745 34.3233C54.9745 34.2918 54.9858 34.2671 55.0061 34.2513C55.0265 34.2356 55.0513 34.2266 55.0762 34.2266H55.3046C55.3633 34.2266 55.3882 34.2581 55.3792 34.3233L55.3249 34.7014C55.4719 34.5056 55.6346 34.3616 55.8132 34.2693C55.9919 34.177 56.2292 34.132 56.5209 34.132C56.9211 34.132 57.2059 34.2581 57.3732 34.5101C57.5405 34.7622 57.5925 35.1155 57.527 35.5746L57.2059 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M58.463 36.2138C58.4268 36.4434 58.4223 36.6459 58.4494 36.8215C58.4765 36.997 58.533 37.1455 58.619 37.2648C58.7026 37.3841 58.8111 37.4741 58.9445 37.5394C59.0756 37.6024 59.2294 37.6362 59.4035 37.6362C59.5775 37.6362 59.7335 37.6182 59.885 37.5844C60.0365 37.5506 60.1835 37.4944 60.3214 37.4156C60.3801 37.3886 60.405 37.4044 60.396 37.4629L60.353 37.7712C60.3462 37.8117 60.3191 37.8455 60.2694 37.868C60.1224 37.9265 59.9687 37.9715 59.8127 38.0008C59.6567 38.03 59.4894 38.0458 59.313 38.0458C58.793 38.0458 58.4245 37.8815 58.2052 37.5551C57.9859 37.2288 57.9226 36.7359 58.0153 36.0765C58.0967 35.4959 58.2957 35.0278 58.6122 34.6699C58.9423 34.3098 59.3198 34.1275 59.7471 34.1275C59.9845 34.1275 60.1812 34.1725 60.3417 34.2648C60.5022 34.3571 60.6311 34.4944 60.7261 34.6767C60.8956 35.0008 60.9408 35.4351 60.864 35.9797C60.8549 36.0383 60.8481 36.0855 60.8414 36.117C60.8346 36.1485 60.8233 36.171 60.8097 36.1868C60.7961 36.2003 60.7713 36.2093 60.7396 36.2116C60.708 36.2138 60.6627 36.2161 60.604 36.2161H58.463V36.2138ZM60.4163 35.8222C60.4435 35.6354 60.4502 35.4689 60.4367 35.3203C60.4231 35.174 60.3892 35.0413 60.3349 34.922C60.2174 34.6519 60.0094 34.5169 59.7155 34.5169C59.4216 34.5169 59.1457 34.6542 58.9174 34.9287C58.8247 35.0525 58.741 35.1943 58.6664 35.3541C58.5941 35.5139 58.5443 35.6692 58.5172 35.82H60.4163V35.8222Z" fill="#808285"/>
|
||||
<path d="M67.0519 37.868C67.0338 37.913 67.0021 37.9355 66.9592 37.9355H66.5341C66.4866 37.9355 66.464 37.913 66.4618 37.868L65.9079 33.4096C65.6004 34.1545 65.2952 34.8972 64.9922 35.6354C64.6893 36.3736 64.3841 37.1185 64.0743 37.868C64.0562 37.913 64.0246 37.9355 63.9816 37.9355H63.5453C63.4978 37.9355 63.4752 37.913 63.473 37.868L62.867 32.955C62.8625 32.9325 62.8671 32.91 62.8829 32.8897C62.8987 32.8695 62.919 32.8582 62.9439 32.8582H63.2423C63.3011 32.8582 63.335 32.8897 63.3418 32.955L63.8528 37.4134C64.158 36.6639 64.4587 35.9257 64.7594 35.2011C65.0601 34.4764 65.363 33.7382 65.6682 32.9887C65.684 32.9437 65.7067 32.91 65.7383 32.8897C65.77 32.8695 65.8061 32.8582 65.8446 32.8582H66.1747C66.247 32.8582 66.2877 32.901 66.2945 32.9887L66.8325 37.3863C67.1332 36.6279 67.4294 35.8875 67.7211 35.1695C68.0127 34.4516 68.3111 33.7134 68.6164 32.9527C68.6277 32.9257 68.6457 32.9032 68.6706 32.8852C68.6932 32.8672 68.7181 32.8582 68.7452 32.8582H69.012C69.0369 32.8582 69.055 32.8695 69.064 32.8897C69.073 32.91 69.073 32.9325 69.0617 32.955L67.0519 37.868Z" fill="#808285"/>
|
||||
<path d="M72.0325 36.0833C71.994 36.3533 71.924 36.6032 71.82 36.835C71.716 37.0668 71.5916 37.2693 71.4492 37.4426C71.2751 37.6339 71.0761 37.7824 70.8568 37.8882C70.6375 37.994 70.3956 38.0458 70.1356 38.0458C69.8756 38.0458 69.6473 37.994 69.4551 37.8882C69.2629 37.7824 69.107 37.6339 68.9849 37.4426C68.8922 37.2693 68.8266 37.0668 68.7882 36.835C68.752 36.6032 68.752 36.3533 68.7882 36.0833C68.8673 35.5296 69.0595 35.0773 69.367 34.7239C69.7196 34.3256 70.1582 34.1275 70.6873 34.1275C70.9541 34.1275 71.1801 34.177 71.37 34.2761C71.56 34.3751 71.7137 34.5236 71.8313 34.7262C72.0415 35.0885 72.1093 35.5409 72.0325 36.0855V36.0833ZM71.5645 36.0833C71.5939 35.8672 71.5961 35.6669 71.5713 35.4801C71.5441 35.2933 71.4967 35.1268 71.4243 34.9782C71.2457 34.6857 70.9812 34.5394 70.6308 34.5394C70.4544 34.5394 70.2894 34.5776 70.1356 34.6519C69.9842 34.7284 69.8417 34.8365 69.7129 34.9782C69.5953 35.1245 69.4958 35.2911 69.4167 35.4801C69.3376 35.6669 69.2833 35.8695 69.2516 36.0833C69.22 36.3038 69.2177 36.5064 69.2449 36.6932C69.272 36.88 69.3217 37.0465 69.4009 37.186C69.5817 37.4831 69.8462 37.6317 70.1922 37.6317C70.3685 37.6317 70.5335 37.5934 70.6873 37.5146C70.8388 37.4359 70.9812 37.3278 71.1101 37.186C71.2231 37.0443 71.318 36.88 71.3972 36.6932C71.4763 36.5064 71.5306 36.3016 71.5622 36.0833H71.5645Z" fill="#808285"/>
|
||||
<path d="M74.3905 34.6429C74.3182 34.6159 74.2187 34.6024 74.0921 34.6024C73.7801 34.6024 73.5246 34.7689 73.3257 35.1043C73.1697 35.3653 73.0634 35.6984 73.0069 36.1058L72.7627 37.841C72.7537 37.904 72.7198 37.9377 72.661 37.9377H72.4145C72.3558 37.9377 72.3309 37.9062 72.3399 37.841L72.7333 35.0548C72.7559 34.8905 72.774 34.7554 72.7876 34.6542C72.7989 34.5506 72.8125 34.4404 72.826 34.3211C72.8351 34.2581 72.869 34.2243 72.9278 34.2243H73.1629C73.2217 34.2243 73.2465 34.2558 73.2375 34.3211L73.1425 34.994C73.4297 34.4179 73.7756 34.1298 74.1757 34.1298C74.273 34.1298 74.3679 34.1433 74.4606 34.1703C74.4855 34.1793 74.5058 34.1951 74.5216 34.2153C74.5375 34.2356 74.5443 34.2648 74.5375 34.3008L74.4968 34.5889C74.4923 34.6159 74.4787 34.6339 74.4583 34.6429C74.4357 34.6519 74.4154 34.6519 74.395 34.6429H74.3905Z" fill="#808285"/>
|
||||
<path d="M74.7681 37.841C74.759 37.904 74.7251 37.9377 74.6664 37.9377H74.3883C74.3295 37.9377 74.3046 37.9062 74.3137 37.841L75.0575 32.5791C75.0665 32.5161 75.1004 32.4824 75.1592 32.4824H75.4373C75.4961 32.4824 75.521 32.5139 75.5119 32.5791L74.7681 37.841Z" fill="#808285"/>
|
||||
<path d="M78.2701 37.841C78.2611 37.904 78.2272 37.9377 78.1684 37.9377H77.922C77.8632 37.9377 77.8383 37.9062 77.8473 37.841L77.9197 37.3256C77.6258 37.7915 77.2256 38.0255 76.7192 38.0255C76.267 38.0255 75.9415 37.8387 75.7402 37.4629C75.5571 37.1163 75.5051 36.6527 75.5865 36.0765C75.7674 34.7915 76.3281 34.1478 77.264 34.1478C77.5173 34.1478 77.7343 34.2018 77.9152 34.3121C78.096 34.4224 78.2181 34.5641 78.2837 34.7374L78.5889 32.5769C78.5979 32.5139 78.6319 32.4801 78.6906 32.4801H78.9371C78.9958 32.4801 79.0207 32.5116 79.0117 32.5769L78.2679 37.8387L78.2701 37.841ZM76.0568 36.0765C76.0274 36.2926 76.0138 36.4861 76.0206 36.6639C76.0274 36.8395 76.0545 36.9948 76.1042 37.1275C76.1743 37.2918 76.2693 37.4179 76.3891 37.5056C76.5089 37.5934 76.6627 37.6362 76.8481 37.6362C77.0176 37.6362 77.1736 37.5889 77.3138 37.4921C77.4562 37.3954 77.5806 37.2738 77.6891 37.1253C77.7976 36.9767 77.8835 36.8102 77.9536 36.6234C78.0214 36.4389 78.0689 36.2566 78.0938 36.0788C78.1254 35.8582 78.1322 35.6557 78.1141 35.4689C78.096 35.2821 78.0531 35.12 77.9875 34.9828C77.9197 34.8455 77.8293 34.7374 77.714 34.6609C77.5986 34.5821 77.4562 34.5439 77.2867 34.5439C76.9272 34.5439 76.631 34.7104 76.3982 35.0458C76.3122 35.1785 76.2399 35.3338 76.1834 35.5094C76.1268 35.6849 76.0839 35.8762 76.0545 36.0833L76.0568 36.0765Z" fill="#808285"/>
|
||||
<path d="M83.6419 37.841C83.6464 37.8635 83.6419 37.886 83.6328 37.9062C83.6215 37.9265 83.6034 37.9377 83.5786 37.9377H83.2485C83.1852 37.9377 83.1422 37.9062 83.1219 37.841C82.993 37.4111 82.8845 37.06 82.7963 36.7877C82.7082 36.5154 82.6403 36.2993 82.5906 36.1395C82.5296 35.9527 82.4821 35.8087 82.4482 35.7074C82.3487 35.7299 82.256 35.7434 82.1723 35.7479C82.0887 35.7524 81.9847 35.7569 81.8558 35.7614H81.3245L81.0306 37.841C81.0216 37.904 80.9877 37.9377 80.9289 37.9377H80.644C80.5852 37.9377 80.5604 37.9062 80.5694 37.841L81.2431 33.0653C81.2499 33.0158 81.2567 32.9752 81.2635 32.9482C81.2703 32.9212 81.2793 32.901 81.2951 32.8875C81.3087 32.874 81.329 32.865 81.3562 32.8627C81.381 32.8605 81.4172 32.8582 81.4647 32.8582H82.6607C82.9003 32.8582 83.1038 32.8942 83.2688 32.964C83.4339 33.036 83.565 33.135 83.6645 33.2633C83.7617 33.3916 83.8273 33.5469 83.8589 33.7292C83.8906 33.9115 83.8906 34.1163 83.8589 34.3391C83.8386 34.4764 83.7979 34.6069 83.7368 34.7307C83.6758 34.8545 83.5989 34.9692 83.5085 35.0728C83.4181 35.1785 83.3163 35.2731 83.2055 35.3586C83.0948 35.4441 82.9817 35.5139 82.8687 35.5679L83.6441 37.8387L83.6419 37.841ZM83.3819 34.3413C83.409 34.15 83.4113 33.9857 83.3909 33.8507C83.3706 33.7157 83.3186 33.6054 83.2349 33.5221C83.1513 33.4366 83.036 33.3758 82.8913 33.3398C82.7443 33.3038 82.5567 33.2858 82.3283 33.2858H81.675L81.3856 35.3293H82.0503C82.2243 35.3293 82.3849 35.3068 82.5386 35.2618C82.6923 35.2168 82.8257 35.1493 82.9433 35.0638C83.0608 34.976 83.1581 34.8725 83.2349 34.7509C83.3118 34.6294 83.3593 34.4944 83.3819 34.3436V34.3413Z" fill="#808285"/>
|
||||
<path d="M84.5733 36.2138C84.5372 36.4434 84.5326 36.6459 84.5598 36.8215C84.5869 36.997 84.6434 37.1455 84.7293 37.2648C84.813 37.3841 84.9215 37.4741 85.0549 37.5394C85.186 37.6024 85.3398 37.6362 85.5138 37.6362C85.6879 37.6362 85.8439 37.6182 85.9954 37.5844C86.1469 37.5506 86.2938 37.4944 86.4317 37.4156C86.4905 37.3886 86.5154 37.4044 86.5064 37.4629L86.4634 37.7712C86.4566 37.8117 86.4295 37.8455 86.3797 37.868C86.2328 37.9265 86.079 37.9715 85.9231 38.0008C85.7671 38.03 85.5998 38.0458 85.4234 38.0458C84.9034 38.0458 84.5349 37.8815 84.3156 37.5551C84.0963 37.2288 84.033 36.7359 84.1257 36.0765C84.2071 35.4959 84.406 35.0278 84.7225 34.6699C85.0526 34.3098 85.4302 34.1275 85.8575 34.1275C86.0926 34.1275 86.2916 34.1725 86.4521 34.2648C86.6126 34.3571 86.7415 34.4944 86.8364 34.6767C87.006 35.0008 87.0512 35.4351 86.9743 35.9797C86.9653 36.0383 86.9585 36.0855 86.9517 36.117C86.945 36.1485 86.9336 36.171 86.9201 36.1868C86.9065 36.2003 86.8816 36.2093 86.85 36.2116C86.8183 36.2138 86.7731 36.2161 86.7143 36.2161H84.5733V36.2138ZM86.529 35.8222C86.5561 35.6354 86.5629 35.4689 86.5493 35.3203C86.5357 35.174 86.5018 35.0413 86.4476 34.922C86.33 34.6519 86.122 34.5169 85.8258 34.5169C85.5297 34.5169 85.2561 34.6542 85.0278 34.9287C84.9351 35.0525 84.8514 35.1943 84.7768 35.3541C84.7045 35.5139 84.6547 35.6692 84.6276 35.82H86.5267L86.529 35.8222Z" fill="#808285"/>
|
||||
<path d="M89.4432 37.9625C89.3143 37.985 89.1877 38.0008 89.0701 38.0098C88.9526 38.0188 88.8079 38.0233 88.6428 38.0233C88.3806 38.0233 88.1545 37.9737 87.9646 37.8725C87.7747 37.7712 87.6209 37.6339 87.5034 37.4606C87.3858 37.2873 87.3067 37.0803 87.2637 36.844C87.2208 36.6054 87.2185 36.3511 87.2592 36.0765C87.2976 35.7975 87.3745 35.5409 87.4875 35.3046C87.6006 35.0683 87.7453 34.8657 87.9194 34.6947C88.0935 34.5236 88.2924 34.3886 88.514 34.2896C88.7378 34.1905 88.9797 34.1433 89.242 34.1433C89.3821 34.1433 89.5065 34.15 89.6195 34.1613C89.7326 34.1725 89.8501 34.195 89.9767 34.2266C90.0332 34.2446 90.0536 34.2873 90.04 34.3571L89.9903 34.5776C89.9745 34.6317 89.9383 34.6542 89.8863 34.6384C89.7823 34.6024 89.6806 34.5754 89.5811 34.5596C89.4816 34.5439 89.3708 34.5349 89.2487 34.5349C89.034 34.5349 88.8395 34.5731 88.6654 34.6474C88.4914 34.7217 88.3399 34.8297 88.211 34.967C88.0821 35.1043 87.9759 35.2686 87.8945 35.4576C87.8131 35.6467 87.7566 35.8537 87.7249 36.0788C87.6955 36.2836 87.6955 36.4816 87.7249 36.6684C87.7566 36.8552 87.8154 37.0218 87.9013 37.1658C87.9872 37.3098 88.1025 37.4246 88.2449 37.5079C88.3874 37.5934 88.5569 37.6339 88.7559 37.6339C88.9028 37.6339 89.0272 37.6272 89.1267 37.6137C89.2261 37.6002 89.3392 37.5754 89.4658 37.5371C89.5313 37.5191 89.563 37.5371 89.5607 37.5844L89.5449 37.8387C89.5404 37.9085 89.5042 37.949 89.4386 37.9625H89.4432Z" fill="#808285"/>
|
||||
<path d="M92.0725 34.6429C92.0002 34.6159 91.9007 34.6024 91.7741 34.6024C91.4621 34.6024 91.2066 34.7689 91.0077 35.1043C90.8517 35.3653 90.7454 35.6984 90.6889 36.1058L90.4447 37.841C90.4357 37.904 90.4018 37.9377 90.343 37.9377H90.0966C90.0378 37.9377 90.0129 37.9062 90.022 37.841L90.4153 35.0548C90.4379 34.8905 90.456 34.7554 90.4696 34.6542C90.4809 34.5506 90.4945 34.4404 90.508 34.3211C90.5171 34.2581 90.551 34.2243 90.6098 34.2243H90.8449C90.9037 34.2243 90.9285 34.2558 90.9195 34.3211L90.8246 34.994C91.1117 34.4179 91.4576 34.1298 91.8577 34.1298C91.955 34.1298 92.0499 34.1433 92.1426 34.1703C92.1675 34.1793 92.1878 34.1951 92.2037 34.2153C92.2195 34.2356 92.2263 34.2648 92.2195 34.3008L92.1788 34.5889C92.1743 34.6159 92.1607 34.6339 92.1404 34.6429C92.1177 34.6519 92.0974 34.6519 92.077 34.6429H92.0725Z" fill="#808285"/>
|
||||
<path d="M92.4388 36.2138C92.4026 36.4434 92.3981 36.6459 92.4252 36.8215C92.4523 36.997 92.5089 37.1455 92.5948 37.2648C92.6784 37.3841 92.7869 37.4741 92.9203 37.5394C93.0515 37.6024 93.2052 37.6362 93.3793 37.6362C93.5534 37.6362 93.7094 37.6182 93.8608 37.5844C94.0123 37.5506 94.1593 37.4944 94.2972 37.4156C94.356 37.3886 94.3808 37.4044 94.3718 37.4629L94.3288 37.7712C94.3221 37.8117 94.2949 37.8455 94.2452 37.868C94.0982 37.9265 93.9445 37.9715 93.7885 38.0008C93.6325 38.03 93.4652 38.0458 93.2889 38.0458C92.7689 38.0458 92.4003 37.8815 92.181 37.5551C91.9617 37.2288 91.8984 36.7359 91.9911 36.0765C92.0725 35.4959 92.2715 35.0278 92.588 34.6699C92.9181 34.3098 93.2956 34.1275 93.7229 34.1275C93.9581 34.1275 94.157 34.1725 94.3175 34.2648C94.4781 34.3571 94.6069 34.4944 94.7019 34.6767C94.8714 35.0008 94.9167 35.4351 94.8398 35.9797C94.8307 36.0383 94.824 36.0855 94.8172 36.117C94.8104 36.1485 94.7991 36.171 94.7855 36.1868C94.772 36.2003 94.7471 36.2093 94.7154 36.2116C94.6838 36.2138 94.6386 36.2161 94.5798 36.2161H92.4388V36.2138ZM94.3944 35.8222C94.4215 35.6354 94.4283 35.4689 94.4147 35.3203C94.4012 35.174 94.3673 35.0413 94.313 34.922C94.1955 34.6519 93.9875 34.5169 93.6913 34.5169C93.3951 34.5169 93.1216 34.6542 92.8932 34.9287C92.8005 35.0525 92.7169 35.1943 92.6423 35.3541C92.5699 35.5139 92.5202 35.6692 92.493 35.82H94.3921L94.3944 35.8222Z" fill="#808285"/>
|
||||
<path d="M95.7034 34.8005C95.6808 34.814 95.6605 34.8185 95.6424 34.8117C95.6243 34.805 95.6175 34.7892 95.6198 34.7667L95.656 34.5056C95.665 34.4426 95.7012 34.3931 95.7645 34.3616C95.925 34.2738 96.09 34.2131 96.2619 34.1793C96.4337 34.1455 96.6191 34.1275 96.818 34.1275C97.2408 34.1275 97.5325 34.2356 97.6975 34.4539C97.8603 34.6722 97.9123 34.9985 97.849 35.4374L97.6048 37.159C97.5845 37.2963 97.5709 37.4179 97.5596 37.5259C97.5483 37.6339 97.5392 37.7374 97.5347 37.8387C97.5257 37.9017 97.4918 37.9355 97.433 37.9355H97.2046C97.1459 37.9355 97.121 37.904 97.13 37.8387L97.2046 37.3098C97.0825 37.5439 96.9085 37.7239 96.6824 37.8522C96.4563 37.9805 96.2189 38.0435 95.9747 38.0435C95.5474 38.0435 95.2558 37.9085 95.0953 37.6384C95.041 37.5461 95.0048 37.4404 94.989 37.3188C94.9732 37.1973 94.9732 37.078 94.989 36.9587C95.0274 36.6797 95.1224 36.4389 95.2716 36.2386C95.4208 36.0383 95.6266 35.8875 95.8888 35.7862C96.2099 35.6669 96.6846 35.6084 97.3132 35.6084H97.3945L97.4239 35.4036C97.4646 35.1155 97.4352 34.895 97.3358 34.7442C97.2363 34.5934 97.0464 34.5169 96.7638 34.5169C96.5739 34.5169 96.3907 34.5394 96.2166 34.5821C96.0426 34.6249 95.8707 34.6969 95.7057 34.7982L95.7034 34.8005ZM97.3403 36.0023H97.2205C96.9853 35.9932 96.7728 36.0023 96.5852 36.0338C96.3975 36.063 96.2393 36.1035 96.1081 36.153C95.9205 36.2206 95.7735 36.3241 95.665 36.4591C95.5565 36.5941 95.4909 36.7562 95.4638 36.943C95.448 37.0578 95.4502 37.1635 95.4706 37.2626C95.4909 37.3616 95.5316 37.4381 95.5972 37.4921C95.708 37.6024 95.8685 37.6564 96.081 37.6564C96.228 37.6564 96.3704 37.6249 96.5038 37.5596C96.6372 37.4944 96.7592 37.4044 96.8678 37.2851C96.9785 37.1658 97.069 37.0195 97.1459 36.8417C97.2205 36.6662 97.2747 36.4636 97.3086 36.2341L97.3425 36L97.3403 36.0023Z" fill="#808285"/>
|
||||
<path d="M99.8453 37.9422C99.6576 38.0098 99.479 38.0458 99.305 38.0458C98.9636 38.0458 98.7533 37.9242 98.6787 37.6812C98.6312 37.5169 98.6358 37.2266 98.6945 36.8102L99.0043 34.6227H98.4097C98.3509 34.6227 98.326 34.5911 98.3351 34.5259L98.3644 34.3211C98.3735 34.2581 98.4074 34.2243 98.4662 34.2243H99.0608L99.1919 33.2971C99.201 33.2296 99.2349 33.1936 99.2891 33.1936H99.5559C99.6102 33.1936 99.6328 33.2273 99.6237 33.2971L99.4926 34.2243H100.196C100.255 34.2243 100.279 34.2558 100.27 34.3211L100.241 34.5259C100.232 34.5911 100.198 34.6227 100.139 34.6227H99.4361L99.0947 37.0443C99.0382 37.4516 99.1603 37.6542 99.4655 37.6542C99.583 37.6542 99.7209 37.6272 99.8769 37.5709C99.8996 37.5619 99.9199 37.5619 99.938 37.5709C99.9561 37.5799 99.9629 37.5979 99.9583 37.6249L99.947 37.8027C99.947 37.8657 99.9154 37.913 99.8521 37.94L99.8453 37.9422Z" fill="#808285"/>
|
||||
<path d="M100.652 38.1425C100.643 38.2056 100.609 38.2393 100.551 38.2393H100.273C100.214 38.2393 100.189 38.2078 100.198 38.1425L100.695 34.6227C100.704 34.5596 100.738 34.5259 100.797 34.5259H101.075C101.134 34.5259 101.159 34.5574 101.15 34.6227L100.652 38.1425ZM100.808 33.2296C100.822 33.1373 100.863 33.0585 100.93 32.9933C100.998 32.928 101.075 32.8942 101.159 32.8942C101.242 32.8942 101.31 32.928 101.362 32.9933C101.414 33.0585 101.435 33.1395 101.421 33.2296C101.408 33.3218 101.367 33.3984 101.297 33.4636C101.227 33.5289 101.15 33.5604 101.064 33.5604C100.978 33.5604 100.912 33.5289 100.863 33.4636C100.813 33.4006 100.795 33.3218 100.806 33.2296H100.808Z" fill="#808285"/>
|
||||
<path d="M104.173 37.841C104.163 37.904 104.13 37.9377 104.071 37.9377H103.818C103.759 37.9377 103.734 37.9062 103.743 37.841L104.048 35.6804C104.107 35.2596 104.08 34.9625 103.967 34.7847C103.851 34.6092 103.668 34.5214 103.415 34.5214C103.074 34.5214 102.798 34.6249 102.59 34.8297C102.382 35.0345 102.251 35.3226 102.199 35.6939L101.896 37.841C101.887 37.904 101.853 37.9377 101.794 37.9377H101.541C101.482 37.9377 101.457 37.9062 101.466 37.841L101.853 35.0975C101.88 34.9017 101.9 34.7487 101.914 34.6384C101.928 34.5281 101.937 34.4246 101.943 34.3233C101.943 34.2918 101.955 34.2671 101.975 34.2513C101.995 34.2356 102.02 34.2266 102.045 34.2266H102.273C102.332 34.2266 102.357 34.2581 102.348 34.3233L102.294 34.7014C102.441 34.5056 102.604 34.3616 102.782 34.2693C102.961 34.177 103.198 34.132 103.488 34.132C103.888 34.132 104.173 34.2581 104.34 34.5101C104.507 34.7622 104.559 35.1155 104.494 35.5746L104.173 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M104.995 38.8357C104.946 38.8222 104.93 38.7884 104.946 38.7322L105.007 38.4306C105.016 38.3721 105.045 38.3563 105.095 38.3901C105.244 38.4689 105.391 38.5229 105.534 38.5589C105.676 38.5926 105.834 38.6107 106.008 38.6107C106.393 38.6107 106.698 38.4846 106.926 38.2303C107.155 37.976 107.313 37.6294 107.399 37.1905C107.272 37.3953 107.107 37.5529 106.901 37.6564C106.696 37.7622 106.479 37.814 106.246 37.814C106.038 37.814 105.852 37.7734 105.687 37.6902C105.522 37.6069 105.384 37.4921 105.274 37.3413C105.165 37.1905 105.086 37.0083 105.041 36.7922C104.995 36.5761 104.991 36.3398 105.027 36.0788C105.07 35.7727 105.136 35.4981 105.222 35.2596C105.307 35.021 105.42 34.8162 105.558 34.6519C105.696 34.4876 105.861 34.3616 106.056 34.2738C106.25 34.186 106.476 34.1433 106.734 34.1433C106.958 34.1433 107.15 34.1838 107.308 34.2626C107.469 34.3436 107.623 34.4854 107.77 34.6924L107.81 34.3211C107.819 34.2581 107.853 34.2243 107.912 34.2243H108.152C108.21 34.2243 108.235 34.2558 108.226 34.3211L107.84 37.0645C107.797 37.3616 107.724 37.6317 107.62 37.8702C107.516 38.111 107.385 38.3136 107.225 38.4801C107.064 38.6467 106.876 38.7749 106.659 38.865C106.445 38.955 106.205 38.9977 105.945 38.9977C105.755 38.9977 105.59 38.9842 105.45 38.9595C105.31 38.9347 105.158 38.892 104.993 38.8335L104.995 38.8357ZM107.566 36.063C107.636 35.5746 107.595 35.1966 107.446 34.931C107.297 34.6654 107.064 34.5326 106.748 34.5326C106.406 34.5326 106.13 34.6564 105.922 34.904C105.714 35.1515 105.572 35.5409 105.497 36.0765C105.47 36.2723 105.47 36.4546 105.497 36.6189C105.524 36.7832 105.574 36.925 105.647 37.0398C105.719 37.1568 105.812 37.2491 105.925 37.3143C106.038 37.3796 106.167 37.4134 106.309 37.4134C106.451 37.4134 106.601 37.3796 106.741 37.3143C106.881 37.2491 107.008 37.1545 107.118 37.033C107.231 36.9115 107.326 36.7697 107.403 36.6032C107.482 36.4389 107.534 36.2588 107.562 36.0608L107.566 36.063Z" fill="#808285"/>
|
||||
<path d="M113.824 37.841C113.835 37.904 113.813 37.9377 113.754 37.9377H113.451C113.426 37.9377 113.404 37.9332 113.385 37.9242C113.367 37.9152 113.354 37.8882 113.342 37.841L113.051 36.5784H110.67C110.559 36.7945 110.451 37.0038 110.347 37.2086C110.243 37.4156 110.137 37.6249 110.03 37.8387C110.008 37.8837 109.985 37.913 109.965 37.922C109.944 37.931 109.922 37.9355 109.897 37.9355H109.599C109.54 37.9355 109.524 37.904 109.556 37.8387L112.11 32.9257C112.14 32.8717 112.18 32.8425 112.237 32.8425H112.624C112.678 32.8425 112.712 32.8695 112.725 32.9257L113.824 37.8387V37.841ZM112.963 36.1395C112.852 35.6647 112.748 35.1943 112.653 34.7307C112.556 34.2671 112.452 33.7967 112.343 33.3218C112.099 33.7967 111.857 34.2671 111.622 34.7307C111.385 35.1943 111.145 35.6647 110.901 36.1395H112.965H112.963Z" fill="#808285"/>
|
||||
<path d="M116.991 37.841C116.982 37.904 116.949 37.9377 116.89 37.9377H116.643C116.585 37.9377 116.56 37.9062 116.569 37.841L116.641 37.3256C116.347 37.7915 115.947 38.0255 115.441 38.0255C114.988 38.0255 114.663 37.8387 114.462 37.4629C114.278 37.1163 114.226 36.6527 114.308 36.0765C114.489 34.7915 115.049 34.1478 115.985 34.1478C116.239 34.1478 116.456 34.2018 116.637 34.3121C116.817 34.4224 116.939 34.5641 117.003 34.7374L117.308 32.5769C117.317 32.5139 117.351 32.4801 117.41 32.4801H117.656C117.715 32.4801 117.74 32.5116 117.731 32.5769L116.987 37.8387L116.991 37.841ZM114.776 36.0765C114.746 36.2926 114.733 36.4861 114.74 36.6639C114.746 36.8395 114.774 36.9948 114.823 37.1275C114.893 37.2918 114.988 37.4179 115.108 37.5056C115.228 37.5934 115.382 37.6362 115.567 37.6362C115.737 37.6362 115.893 37.5889 116.035 37.4921C116.178 37.3954 116.302 37.2738 116.41 37.1253C116.517 36.9767 116.605 36.8102 116.675 36.6234C116.743 36.4389 116.79 36.2566 116.815 36.0788C116.847 35.8582 116.854 35.6557 116.835 35.4689C116.817 35.2821 116.774 35.12 116.709 34.9828C116.641 34.8455 116.551 34.7374 116.435 34.6609C116.32 34.5821 116.178 34.5439 116.008 34.5439C115.649 34.5439 115.352 34.7104 115.119 35.0458C115.034 35.1785 114.961 35.3338 114.905 35.5094C114.848 35.6849 114.805 35.8762 114.776 36.0833V36.0765Z" fill="#808285"/>
|
||||
<path d="M119.004 37.8477C118.974 37.9062 118.927 37.9377 118.863 37.9377H118.554C118.49 37.9377 118.454 37.9085 118.445 37.8477L117.828 34.3211C117.823 34.2986 117.828 34.2761 117.844 34.2558C117.86 34.2356 117.88 34.2243 117.905 34.2243H118.19C118.239 34.2243 118.273 34.2558 118.289 34.3211L118.782 37.4629L120.202 34.3211C120.213 34.2941 120.231 34.2716 120.256 34.2513C120.279 34.2333 120.304 34.2243 120.331 34.2243H120.609C120.634 34.2243 120.652 34.2356 120.661 34.2558C120.67 34.2761 120.67 34.2986 120.659 34.3211L119.001 37.8477H119.004Z" fill="#808285"/>
|
||||
<path d="M120.964 36.2138C120.928 36.4434 120.923 36.6459 120.95 36.8215C120.977 36.997 121.034 37.1455 121.12 37.2648C121.203 37.3841 121.312 37.4741 121.445 37.5394C121.579 37.6024 121.73 37.6362 121.904 37.6362C122.078 37.6362 122.234 37.6182 122.386 37.5844C122.537 37.5506 122.684 37.4944 122.822 37.4156C122.881 37.3886 122.906 37.4044 122.897 37.4629L122.854 37.7712C122.847 37.8117 122.82 37.8455 122.77 37.868C122.623 37.9265 122.469 37.9715 122.313 38.0008C122.157 38.03 121.99 38.0458 121.814 38.0458C121.294 38.0458 120.925 37.8815 120.706 37.5551C120.487 37.2288 120.423 36.7359 120.516 36.0765C120.597 35.4959 120.796 35.0278 121.113 34.6699C121.443 34.3098 121.821 34.1275 122.248 34.1275C122.485 34.1275 122.682 34.1725 122.842 34.2648C123.003 34.3571 123.132 34.4944 123.227 34.6767C123.396 35.0008 123.442 35.4351 123.365 35.9797C123.356 36.0383 123.349 36.0855 123.342 36.117C123.335 36.1485 123.324 36.171 123.31 36.1868C123.297 36.2003 123.272 36.2093 123.24 36.2116C123.209 36.2138 123.164 36.2161 123.105 36.2161H120.964V36.2138ZM122.919 35.8222C122.947 35.6354 122.953 35.4689 122.94 35.3203C122.926 35.174 122.892 35.0413 122.838 34.922C122.72 34.6519 122.512 34.5169 122.219 34.5169C121.925 34.5169 121.649 34.6542 121.418 34.9287C121.325 35.0525 121.242 35.1943 121.167 35.3541C121.095 35.5139 121.045 35.6692 121.018 35.82H122.917L122.919 35.8222Z" fill="#808285"/>
|
||||
<path d="M126.365 37.841C126.356 37.904 126.322 37.9377 126.263 37.9377H126.01C125.951 37.9377 125.926 37.9062 125.935 37.841L126.241 35.6804C126.299 35.2596 126.272 34.9625 126.159 34.7847C126.044 34.6092 125.861 34.5214 125.608 34.5214C125.266 34.5214 124.99 34.6249 124.782 34.8297C124.574 35.0345 124.443 35.3226 124.391 35.6939L124.088 37.841C124.079 37.904 124.045 37.9377 123.986 37.9377H123.733C123.674 37.9377 123.65 37.9062 123.659 37.841L124.045 35.0975C124.072 34.9017 124.093 34.7487 124.106 34.6384C124.12 34.5281 124.129 34.4246 124.136 34.3233C124.136 34.2918 124.147 34.2671 124.167 34.2513C124.188 34.2356 124.213 34.2266 124.237 34.2266H124.466C124.525 34.2266 124.549 34.2581 124.54 34.3233L124.486 34.7014C124.633 34.5056 124.796 34.3616 124.974 34.2693C125.153 34.177 125.39 34.132 125.68 34.132C126.08 34.132 126.365 34.2581 126.532 34.5101C126.699 34.7622 126.751 35.1155 126.686 35.5746L126.365 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M128.757 37.9422C128.569 38.0098 128.391 38.0458 128.217 38.0458C127.875 38.0458 127.665 37.9242 127.59 37.6812C127.543 37.5169 127.547 37.2266 127.606 36.8102L127.916 34.6227H127.321C127.262 34.6227 127.238 34.5911 127.247 34.5259L127.276 34.3211C127.285 34.2581 127.319 34.2243 127.378 34.2243H127.972L128.103 33.2971C128.113 33.2296 128.146 33.1936 128.201 33.1936H128.467C128.522 33.1936 128.544 33.2273 128.535 33.2971L128.404 34.2243H129.107C129.166 34.2243 129.191 34.2558 129.182 34.3211L129.153 34.5259C129.143 34.5911 129.11 34.6227 129.051 34.6227H128.348L128.006 37.0443C127.95 37.4516 128.072 37.6542 128.377 37.6542C128.495 37.6542 128.633 37.6272 128.789 37.5709C128.811 37.5619 128.831 37.5619 128.85 37.5709C128.868 37.5799 128.874 37.5979 128.87 37.6249L128.859 37.8027C128.859 37.8657 128.827 37.913 128.764 37.94L128.757 37.9422Z" fill="#808285"/>
|
||||
<path d="M131.879 37.841C131.87 37.904 131.836 37.9377 131.777 37.9377H131.549C131.49 37.9377 131.465 37.9062 131.474 37.841L131.556 37.2716C131.407 37.5461 131.232 37.7442 131.031 37.8657C130.83 37.9873 130.59 38.048 130.312 38.048C129.523 38.048 129.195 37.5709 129.331 36.6144L129.654 34.3233C129.663 34.2603 129.697 34.2266 129.756 34.2266H130.009C130.068 34.2266 130.093 34.2581 130.084 34.3233L129.779 36.4906C129.668 37.2671 129.89 37.6564 130.437 37.6564C130.597 37.6564 130.746 37.6182 130.887 37.5439C131.027 37.4674 131.149 37.3661 131.257 37.2356C131.364 37.105 131.454 36.9542 131.524 36.7787C131.594 36.6054 131.642 36.4209 131.664 36.2296L131.933 34.3233C131.942 34.2603 131.976 34.2266 132.035 34.2266H132.288C132.347 34.2266 132.372 34.2581 132.363 34.3233L131.974 37.0803C131.954 37.2311 131.936 37.3661 131.92 37.4854C131.906 37.6047 131.893 37.7239 131.879 37.841Z" fill="#808285"/>
|
||||
<path d="M134.739 34.6429C134.667 34.6159 134.567 34.6024 134.441 34.6024C134.129 34.6024 133.873 34.7689 133.674 35.1043C133.518 35.3653 133.412 35.6984 133.355 36.1058L133.111 37.841C133.102 37.904 133.068 37.9377 133.009 37.9377H132.763C132.704 37.9377 132.679 37.9062 132.688 37.841L133.082 35.0548C133.104 34.8905 133.123 34.7554 133.136 34.6542C133.147 34.5506 133.161 34.4404 133.175 34.3211C133.184 34.2581 133.217 34.2243 133.276 34.2243H133.511C133.57 34.2243 133.595 34.2558 133.586 34.3211L133.491 34.994C133.778 34.4179 134.124 34.1298 134.524 34.1298C134.621 34.1298 134.716 34.1433 134.809 34.1703C134.834 34.1793 134.852 34.1951 134.87 34.2153C134.886 34.2356 134.893 34.2648 134.886 34.3008L134.845 34.5889C134.841 34.6159 134.827 34.6339 134.807 34.6429C134.784 34.6519 134.764 34.6519 134.744 34.6429H134.739Z" fill="#808285"/>
|
||||
<path d="M135.105 36.2138C135.069 36.4434 135.065 36.6459 135.092 36.8215C135.119 36.997 135.175 37.1455 135.261 37.2648C135.345 37.3841 135.453 37.4741 135.587 37.5394C135.72 37.6024 135.872 37.6362 136.046 37.6362C136.22 37.6362 136.376 37.6182 136.527 37.5844C136.679 37.5506 136.826 37.4944 136.964 37.4156C137.022 37.3886 137.047 37.4044 137.038 37.4629L136.995 37.7712C136.989 37.8117 136.961 37.8455 136.912 37.868C136.765 37.9265 136.611 37.9715 136.455 38.0008C136.299 38.03 136.132 38.0458 135.955 38.0458C135.435 38.0458 135.067 37.8815 134.848 37.5551C134.628 37.2288 134.565 36.7359 134.658 36.0765C134.739 35.4959 134.938 35.0278 135.255 34.6699C135.585 34.3098 135.962 34.1275 136.389 34.1275C136.627 34.1275 136.824 34.1725 136.984 34.2648C137.145 34.3571 137.273 34.4944 137.368 34.6767C137.538 35.0008 137.583 35.4351 137.506 35.9797C137.497 36.0383 137.49 36.0855 137.484 36.117C137.477 36.1485 137.466 36.171 137.452 36.1868C137.438 36.2003 137.414 36.2093 137.382 36.2116C137.35 36.2138 137.305 36.2161 137.246 36.2161H135.105V36.2138ZM137.061 35.8222C137.088 35.6354 137.095 35.4689 137.081 35.3203C137.068 35.174 137.034 35.0413 136.98 34.922C136.862 34.6519 136.654 34.5169 136.36 34.5169C136.066 34.5169 135.79 34.6542 135.56 34.9287C135.467 35.0525 135.383 35.1943 135.309 35.3541C135.236 35.5139 135.187 35.6692 135.16 35.82H137.059L137.061 35.8222Z" fill="#808285"/>
|
||||
<path d="M139.855 34.6429C139.783 34.6159 139.683 34.6024 139.557 34.6024C139.245 34.6024 138.989 34.7689 138.79 35.1043C138.634 35.3653 138.528 35.6984 138.472 36.1058L138.228 37.841C138.218 37.904 138.185 37.9377 138.126 37.9377H137.879C137.821 37.9377 137.796 37.9062 137.805 37.841L138.198 35.0548C138.221 34.8905 138.239 34.7554 138.252 34.6542C138.264 34.5506 138.277 34.4404 138.291 34.3211C138.3 34.2581 138.334 34.2243 138.393 34.2243H138.628C138.686 34.2243 138.711 34.2558 138.702 34.3211L138.607 34.994C138.894 34.4179 139.24 34.1298 139.641 34.1298C139.738 34.1298 139.833 34.1433 139.925 34.1703C139.95 34.1793 139.968 34.1951 139.986 34.2153C140.002 34.2356 140.009 34.2648 140.002 34.3008L139.962 34.5889C139.957 34.6159 139.943 34.6339 139.923 34.6429C139.901 34.6519 139.88 34.6519 139.86 34.6429H139.855Z" fill="#808285"/>
|
||||
<path d="M43.8195 19.5349C43.8195 17.784 44.0886 16.1635 44.6402 14.6782C45.1873 13.1951 45.9877 11.8942 47.0367 10.7825C48.1603 9.60316 49.4716 8.70968 50.9615 8.10653C52.4514 7.50113 54.0815 7.19955 55.8562 7.19955C59.1163 7.19955 61.6779 8.07952 63.543 9.83271C65.4015 11.5904 66.3329 14.0098 66.3329 17.0818C66.3329 18.8035 66.0707 20.3924 65.5462 21.8462C65.0216 23.3001 64.2597 24.5559 63.2604 25.6227C62.1052 26.8605 60.7713 27.7967 59.2633 28.4246C57.753 29.0503 56.0936 29.3653 54.2804 29.3653C51.0587 29.3653 48.5062 28.4809 46.632 26.7164C44.7555 24.952 43.8195 22.5596 43.8195 19.5394V19.5349ZM55.7364 12.3961C54.2352 12.3961 53.0211 13.0645 52.0874 14.4014C51.1491 15.7404 50.6812 17.4914 50.6812 19.6497C50.6812 21.099 50.9999 22.1996 51.6352 22.9557C52.2728 23.7142 53.1975 24.0923 54.4161 24.0923C55.924 24.0923 57.1449 23.3991 58.0764 22.006C59.0056 20.6197 59.4713 18.7697 59.4713 16.4674C59.4713 15.2003 59.1389 14.2056 58.472 13.4831C57.8073 12.7607 56.8962 12.3961 55.7386 12.3961H55.7364Z" fill="#173569"/>
|
||||
<path d="M70.0407 28.805L68.7769 7.77119H75.0077V18.8102C75.0077 19.1883 74.9942 19.5754 74.9671 19.967C74.9354 20.3563 74.8924 20.7457 74.8314 21.1328C74.9218 20.6219 75.01 20.1763 75.105 19.8072C75.1977 19.4381 75.2858 19.1343 75.374 18.907L79.3712 7.76894H84.7678L84.9125 18.6797C84.9125 18.9902 84.9057 19.3526 84.8831 19.7577C84.8627 20.1605 84.8356 20.5927 84.7949 21.0495C84.874 20.6354 84.9532 20.2528 85.0391 19.8905C85.1205 19.5304 85.2132 19.1951 85.3104 18.8912L89.0001 7.76894H95.5113L87.3813 28.8027H80.9131L80.488 18.2228V17.919C80.488 17.7029 80.4993 17.4486 80.5242 17.156C80.5468 16.8657 80.5875 16.5124 80.6372 16.0915C80.5378 16.5124 80.4428 16.895 80.3569 17.2393C80.2687 17.5859 80.1873 17.874 80.1195 18.1035L76.4773 28.8005H70.0384L70.0407 28.805Z" fill="#173569"/>
|
||||
<path d="M94.4148 28.805L97.6319 7.77119H107.654C110.449 7.77119 112.492 8.22356 113.783 9.13504C115.079 10.042 115.725 11.4711 115.725 13.4246C115.725 14.8245 115.375 16.0308 114.672 17.0368C113.973 18.0473 112.945 18.8305 111.595 19.3909C112.556 19.7532 113.241 20.2168 113.652 20.7862C114.066 21.3511 114.269 22.105 114.269 23.048C114.269 23.2461 114.265 23.4576 114.249 23.6827C114.236 23.9077 114.211 24.1418 114.181 24.3894L113.946 26.5184C113.917 26.7142 113.899 26.8627 113.894 26.9527C113.89 27.045 113.89 27.1305 113.89 27.2206C113.89 27.4951 113.942 27.7134 114.05 27.8822C114.156 28.051 114.324 28.1748 114.55 28.2626V28.805H107.245C107.207 28.6722 107.175 28.5281 107.164 28.3683C107.148 28.2108 107.141 28.0443 107.141 27.8642C107.141 27.7404 107.148 27.5829 107.164 27.3916C107.177 27.2003 107.202 26.973 107.231 26.7097L107.541 24.5942C107.559 24.4726 107.575 24.3421 107.582 24.2093C107.593 24.0765 107.602 23.8965 107.602 23.6669C107.602 22.7712 107.338 22.1433 106.813 21.7809C106.291 21.4209 105.366 21.2386 104.044 21.2386H102.264L101.089 28.8095H94.4193L94.4148 28.805ZM102.479 16.7509H105.771C106.811 16.7509 107.575 16.5799 108.066 16.2311C108.554 15.8822 108.8 15.3376 108.8 14.5972C108.8 13.9557 108.586 13.4966 108.154 13.2108C107.724 12.925 107.017 12.7832 106.035 12.7832H103.11L102.479 16.7509Z" fill="#173569"/>
|
||||
<path d="M115.092 28.805L125.691 7.77119H132.612L136.948 28.805H130.423L130.089 26.2911H123.191L122.103 28.805H115.092ZM124.911 22.0488H129.365L128.221 14.2663L124.911 22.0488Z" fill="#173569"/>
|
||||
<path d="M0.253204 21.7314C0.253204 21.7314 0.273552 21.7337 0.282595 21.7337C0.363985 21.7337 0.443115 21.7157 0.522244 21.7089C0.522244 21.7089 0.522244 21.7067 0.517722 21.7067C0.43181 21.7179 0.341377 21.7314 0.253204 21.7314Z" fill="white"/>
|
||||
<path d="M31.0707 9.1688L23.6099 1.73744C21.2835 -0.578393 17.5192 -0.578393 15.1951 1.73744L14.4083 2.52288C15.0526 3.33534 15.4505 4.34584 15.4912 5.45312C21.8826 5.50038 27.5279 6.95199 31.0707 9.17105V9.1688Z" fill="url(#paint25_linear_8_858)"/>
|
||||
<path d="M22.0228 19.3481H22.0725C22.839 19.3481 23.5376 19.6429 24.0621 20.12C26.0494 19.1658 27.5302 17.9843 28.2921 16.6654H28.3396C28.7171 16.0105 28.9274 15.3218 28.9274 14.6084C28.9274 10.7915 23.1035 7.6024 15.3466 6.84846C14.804 9.03601 12.8212 10.6609 10.4541 10.6609C10.2258 10.6609 10.0019 10.6429 9.78038 10.6137C9.48647 11.7209 9.30786 12.8845 9.30786 14.0885C9.30786 17.093 10.7028 20.0458 13.2756 22.5056C15.3511 22.4224 17.3157 22.168 19.1108 21.7719C19.3618 20.3946 20.5691 19.3503 22.0228 19.3503V19.3481Z" fill="url(#paint26_linear_8_858)"/>
|
||||
<path d="M0.259984 17.9662C0.259984 17.9662 0.273549 17.964 0.282592 17.964C1.32936 17.964 2.17265 18.8102 2.17265 19.8477C2.17265 20.2933 2.02118 20.7007 1.76118 21.0203C3.4975 21.6099 5.48251 22.0465 7.62579 22.2963C7.56474 22.1725 7.50596 22.0465 7.4517 21.9182C7.50822 22.0398 7.57153 22.1703 7.64161 22.2963C7.65292 22.2986 7.66422 22.3008 7.68005 22.3008C6.88197 20.6759 6.41398 18.9115 6.41398 17.012C6.41398 14.5139 7.1171 12.18 8.14578 10.0983C7.85639 9.94974 7.58961 9.7697 7.3364 9.57165L1.75892 15.1305C0.942757 15.943 0.420503 16.931 0.174072 17.9753C0.196681 17.973 0.217028 17.9662 0.237376 17.9662C0.246419 17.9662 0.253202 17.9685 0.262245 17.9685L0.259984 17.9662Z" fill="url(#paint27_linear_8_858)"/>
|
||||
<path d="M8.13447 23.165C8.13447 23.165 8.12317 23.165 8.11186 23.1605C8.70646 24.1598 9.52714 25.3031 10.6689 26.5476C9.66732 25.5011 8.78333 24.3736 8.08473 23.165C5.62946 22.7329 3.41158 22.0758 1.53735 21.2498C1.25927 21.4996 0.906577 21.6594 0.519974 21.7089C0.8071 22.3638 1.21631 22.9783 1.75439 23.5139L15.1928 36.9047C17.5169 39.2206 21.2812 39.2183 23.6076 36.9047L25.093 35.4261C19.8705 33.3511 11.6727 29.2843 8.13221 23.1628L8.13447 23.165Z" fill="url(#paint28_linear_8_858)"/>
|
||||
<path d="M25.0229 22.5484C24.8941 24.063 23.6235 25.2558 22.0725 25.2558H22.0228C20.8381 25.2558 19.8185 24.5626 19.3437 23.5589C18.0008 23.6894 16.6104 23.7637 15.1793 23.7637H15.1318C15.0052 23.7637 14.8763 23.7637 14.7497 23.7614C18.6542 26.7299 24.5165 28.7059 31.8507 28.7014L37.0528 23.5161C39.3792 21.2003 39.3792 17.4464 37.0528 15.1305L34.4122 12.4996C34.7558 13.1748 34.9435 13.8815 34.9435 14.6084C34.9435 18.0045 30.9486 20.9707 25.0252 22.5506L25.0229 22.5484Z" fill="url(#paint29_linear_8_858)"/>
|
||||
<path d="M1.50796 21.2386C1.23892 21.4839 0.895275 21.6482 0.517715 21.7067C0.519976 21.7067 0.519976 21.7089 0.522237 21.7089C0.90884 21.6594 1.26153 21.4996 1.53961 21.2498C1.53057 21.2476 1.51927 21.2453 1.51022 21.2386H1.50796Z" fill="white"/>
|
||||
<path d="M2.17265 19.8477C2.17265 18.8102 1.32935 17.964 0.282588 17.964C0.273544 17.964 0.266762 17.9662 0.259979 17.9662C1.29318 17.9797 2.12517 18.8147 2.12517 19.8477C2.12517 20.2933 1.97143 20.7007 1.7137 21.0203C3.46358 21.6122 5.46442 22.051 7.62578 22.3008C7.62578 22.3008 7.62578 22.3008 7.62578 22.2963C5.48251 22.0465 3.4975 21.6099 1.76117 21.0203C2.02117 20.7007 2.17265 20.2933 2.17265 19.8477Z" fill="white"/>
|
||||
<path d="M15.489 5.45086C15.4483 4.34359 15.0504 3.33308 14.406 2.52063L7.33413 9.56939C7.58509 9.76744 7.85413 9.94749 8.14351 10.096C7.11483 12.1778 6.41171 14.5116 6.41171 17.0098C6.41171 18.9115 6.87744 20.6759 7.67778 22.2986C7.66195 22.2986 7.65065 22.2986 7.63935 22.2941C7.77726 22.5686 7.94004 22.859 8.11412 23.1583C8.12543 23.1605 8.12995 23.1605 8.13673 23.1628C11.6772 29.2843 19.875 33.3511 25.0975 35.4261L31.8529 28.6992C24.5187 28.7037 18.6564 26.7277 14.7519 23.7592H14.7022C13.5333 22.94 13.2304 22.5056 13.2304 22.5056C13.2462 22.5056 13.262 22.5034 13.2756 22.5034C10.7028 20.0435 9.30784 17.0908 9.30784 14.0863C9.30784 12.88 9.48419 11.7164 9.78036 10.6114C10.0019 10.6429 10.2257 10.6587 10.4541 10.6587C12.8212 10.6587 14.8039 9.03376 15.3465 6.84621C23.1035 7.60015 28.9274 10.7892 28.9274 14.6062C28.9274 15.3196 28.7194 16.0083 28.3396 16.6632H34.3873C33.1393 19.1748 29.6621 21.2971 24.9732 22.5484C24.8488 24.054 23.5918 25.2401 22.0477 25.2558H22.0703C23.6212 25.2558 24.894 24.0653 25.0207 22.5484C30.944 20.9685 34.9389 18.0023 34.9389 14.6062C34.9389 13.8792 34.7513 13.1725 34.4076 12.4974L31.0661 9.16879C27.5234 6.94974 21.8781 5.49812 15.4867 5.45086H15.489Z" fill="white"/>
|
||||
<path d="M22.0454 19.3481C22.8118 19.3571 23.5082 19.6519 24.0304 20.1335C24.0417 20.1268 24.0508 20.1223 24.0621 20.12C23.5376 19.6429 22.839 19.3481 22.0725 19.3481H22.0454Z" fill="white"/>
|
||||
<path d="M15.1476 23.7637H15.1792C16.6103 23.7637 18.0008 23.6894 19.3437 23.5589C19.3437 23.5589 19.3414 23.5589 19.3414 23.5544C17.9917 23.6894 16.5855 23.7637 15.1476 23.7637Z" fill="white"/>
|
||||
<path d="M24.0621 20.12C24.0621 20.12 24.0734 20.129 24.0802 20.1335C26.0833 19.177 27.5732 17.991 28.3396 16.6632H28.2921C27.5302 17.982 26.0493 19.1658 24.0621 20.1178V20.12Z" fill="url(#paint30_linear_8_858)"/>
|
||||
<path d="M24.0621 20.12C24.0621 20.12 24.0734 20.129 24.0802 20.1335C26.0833 19.177 27.5732 17.991 28.3396 16.6632H28.2921C27.5302 17.982 26.0493 19.1658 24.0621 20.1178V20.12Z" fill="url(#paint31_linear_8_858)"/>
|
||||
<path d="M19.156 21.7697C19.4093 20.4014 20.6007 19.3616 22.0454 19.3481H22.0205C20.5691 19.3481 19.3595 20.3924 19.1086 21.7697C17.3112 22.1658 15.3488 22.4201 13.2733 22.5034V22.5056C15.3646 22.4269 17.3451 22.1703 19.1538 21.7697H19.156Z" fill="url(#paint32_linear_8_858)"/>
|
||||
<path d="M19.156 21.7697C19.4093 20.4014 20.6007 19.3616 22.0454 19.3481H22.0205C20.5691 19.3481 19.3595 20.3924 19.1086 21.7697C17.3112 22.1658 15.3488 22.4201 13.2733 22.5034V22.5056C15.3646 22.4269 17.3451 22.1703 19.1538 21.7697H19.156Z" fill="url(#paint33_linear_8_858)"/>
|
||||
<path d="M19.3889 23.5544C19.3731 23.5566 19.3595 23.5566 19.3437 23.5589C19.8185 24.5626 20.8381 25.2558 22.0228 25.2558H22.0499C20.8743 25.2491 19.8592 24.5536 19.3889 23.5544Z" fill="url(#paint34_linear_8_858)"/>
|
||||
<path d="M19.3889 23.5544C19.3731 23.5566 19.3595 23.5566 19.3437 23.5589C19.8185 24.5626 20.8381 25.2558 22.0228 25.2558H22.0499C20.8743 25.2491 19.8592 24.5536 19.3889 23.5544Z" fill="url(#paint35_linear_8_858)"/>
|
||||
<path d="M15.1476 23.7637C15.0165 23.7637 14.8831 23.7637 14.7497 23.7614C14.8763 23.7637 15.0052 23.7637 15.1318 23.7637H15.1476Z" fill="url(#paint36_linear_8_858)"/>
|
||||
<path d="M15.1476 23.7637C15.0165 23.7637 14.8831 23.7637 14.7497 23.7614C14.8763 23.7637 15.0052 23.7637 15.1318 23.7637H15.1476Z" fill="url(#paint37_linear_8_858)"/>
|
||||
<path d="M15.1476 23.7637C16.5855 23.7637 17.9917 23.6894 19.3414 23.5544C19.3414 23.5566 19.3414 23.5566 19.3437 23.5589C19.3595 23.5589 19.3731 23.5589 19.3889 23.5544C19.8592 24.5514 20.8743 25.2468 22.0499 25.2558C23.5918 25.2401 24.8511 24.054 24.9754 22.5484C29.6644 21.2971 33.1416 19.177 34.3896 16.6632H28.3418C27.5754 17.9888 26.0855 19.177 24.0824 20.1335C24.0756 20.1268 24.0711 20.1223 24.0643 20.12C24.0553 20.1223 24.0462 20.129 24.0327 20.1335C23.5082 19.6519 22.8141 19.3571 22.0477 19.3481C20.603 19.3616 19.4115 20.4014 19.1583 21.7697C17.3519 22.1703 15.3714 22.4269 13.2779 22.5056V22.5034C13.2643 22.5034 13.2485 22.5056 13.2327 22.5056C13.2327 22.5056 13.5356 22.94 14.7045 23.7592H14.7542C14.8876 23.7614 15.021 23.7614 15.1521 23.7614L15.1476 23.7637Z" fill="white"/>
|
||||
<path d="M15.1476 23.7637C16.5855 23.7637 17.9917 23.6894 19.3414 23.5544C19.3414 23.5566 19.3414 23.5566 19.3437 23.5589C19.3595 23.5589 19.3731 23.5589 19.3889 23.5544C19.8592 24.5514 20.8743 25.2468 22.0499 25.2558C23.5918 25.2401 24.8511 24.054 24.9754 22.5484C29.6644 21.2971 33.1416 19.177 34.3896 16.6632H28.3418C27.5754 17.9888 26.0855 19.177 24.0824 20.1335C24.0756 20.1268 24.0711 20.1223 24.0643 20.12C24.0553 20.1223 24.0462 20.129 24.0327 20.1335C23.5082 19.6519 22.8141 19.3571 22.0477 19.3481C20.603 19.3616 19.4115 20.4014 19.1583 21.7697C17.3519 22.1703 15.3714 22.4269 13.2779 22.5056V22.5034C13.2643 22.5034 13.2485 22.5056 13.2327 22.5056C13.2327 22.5056 13.5356 22.94 14.7045 23.7592H14.7542C14.8876 23.7614 15.021 23.7614 15.1521 23.7614L15.1476 23.7637Z" fill="url(#paint38_linear_8_858)"/>
|
||||
<path d="M7.62352 22.2963H7.63708C7.567 22.1725 7.50369 22.042 7.44717 21.9182C7.50143 22.0465 7.56022 22.1703 7.62126 22.2963H7.62352Z" fill="url(#paint39_linear_8_858)"/>
|
||||
<path d="M7.62352 22.2963H7.63708C7.567 22.1725 7.50369 22.042 7.44717 21.9182C7.50143 22.0465 7.56022 22.1703 7.62126 22.2963H7.62352Z" fill="url(#paint40_linear_8_858)"/>
|
||||
<path d="M0.235117 17.964C0.21477 17.964 0.194422 17.9707 0.171814 17.973C0.171814 17.973 0.171814 17.9745 0.171814 17.9775C0.203466 17.9775 0.235117 17.9662 0.259987 17.9662C0.250943 17.9662 0.244161 17.964 0.235117 17.964Z" fill="url(#paint41_linear_8_858)"/>
|
||||
<path d="M0.235117 17.964C0.21477 17.964 0.194422 17.9707 0.171814 17.973C0.171814 17.973 0.171814 17.9745 0.171814 17.9775C0.203466 17.9775 0.235117 17.9662 0.259987 17.9662C0.250943 17.9662 0.244161 17.964 0.235117 17.964Z" fill="url(#paint42_linear_8_858)"/>
|
||||
<path d="M1.53735 21.2498C3.41159 22.0758 5.62947 22.7329 8.08473 23.165C8.78333 24.3713 9.66732 25.5011 10.6689 26.5476C9.52715 25.3053 8.70873 24.162 8.11187 23.1605C5.65208 22.7239 3.42967 22.0645 1.5577 21.2386C1.55092 21.2453 1.54188 21.2476 1.53735 21.2498Z" fill="url(#paint43_linear_8_858)"/>
|
||||
<path d="M1.53735 21.2498C3.41159 22.0758 5.62947 22.7329 8.08473 23.165C8.78333 24.3713 9.66732 25.5011 10.6689 26.5476C9.52715 25.3053 8.70873 24.162 8.11187 23.1605C5.65208 22.7239 3.42967 22.0645 1.5577 21.2386C1.55092 21.2453 1.54188 21.2476 1.53735 21.2498Z" fill="url(#paint44_linear_8_858)"/>
|
||||
<path d="M0.51772 21.7067C0.89528 21.6459 1.23893 21.4816 1.50797 21.2386C1.51927 21.2453 1.52831 21.2476 1.53736 21.2498C1.54414 21.2476 1.55092 21.2453 1.5577 21.2386C3.42968 22.0645 5.65208 22.7262 8.11187 23.1605C7.93552 22.8612 7.775 22.5709 7.63709 22.2963H7.62353V22.3008C5.46217 22.0533 3.45907 21.6122 1.71144 21.0203C1.96918 20.7007 2.12291 20.2933 2.12291 19.8477C2.12291 18.8147 1.29093 17.982 0.257724 17.9662C0.230594 17.9662 0.198942 17.9752 0.169551 17.9775C-0.117575 19.2153 -0.00453295 20.5229 0.515459 21.7067H0.51772Z" fill="white"/>
|
||||
<path d="M0.51772 21.7067C0.89528 21.6459 1.23893 21.4816 1.50797 21.2386C1.51927 21.2453 1.52831 21.2476 1.53736 21.2498C1.54414 21.2476 1.55092 21.2453 1.5577 21.2386C3.42968 22.0645 5.65208 22.7262 8.11187 23.1605C7.93552 22.8612 7.775 22.5709 7.63709 22.2963H7.62353V22.3008C5.46217 22.0533 3.45907 21.6122 1.71144 21.0203C1.96918 20.7007 2.12291 20.2933 2.12291 19.8477C2.12291 18.8147 1.29093 17.982 0.257724 17.9662C0.230594 17.9662 0.198942 17.9752 0.169551 17.9775C-0.117575 19.2153 -0.00453295 20.5229 0.515459 21.7067H0.51772Z" fill="url(#paint45_linear_8_858)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0888 9.16879L23.6257 1.73744C21.2993 -0.578393 17.535 -0.578393 15.2109 1.73744L14.4241 2.52288L7.34998 9.57164L1.77249 15.1305C0.956333 15.943 0.434079 16.931 0.187648 17.9752C0.187648 17.9752 0.187648 17.9767 0.187648 17.9797C-0.0994778 19.2176 0.0135639 20.5251 0.533556 21.7089C0.447644 21.7202 0.357211 21.7337 0.269038 21.7337C0.280343 21.7337 0.289386 21.7359 0.298429 21.7359C0.379819 21.7359 0.458949 21.7179 0.538078 21.7112C0.825204 22.3661 1.23442 22.9805 1.77249 23.5161L15.2109 36.907C17.535 39.2228 21.3016 39.2206 23.6257 36.907L25.1111 35.4284L31.8665 28.7014L37.0687 23.5161C39.3951 21.2003 39.3951 17.4464 37.0687 15.1305V15.1283Z" fill="url(#paint46_linear_8_858)"/>
|
||||
<path d="M37.0347 15.1283L34.3918 12.4974L31.0526 9.16879L23.5941 1.73744C21.2699 -0.578393 17.5034 -0.578393 15.1792 1.73744L14.3925 2.52288L7.32058 9.57164L1.74084 15.1305C0.924674 15.943 0.402421 16.931 0.15599 17.9752C0.15599 17.9752 0.15599 17.9767 0.15599 17.9797C-0.131136 19.2176 -0.0180945 20.5251 0.504159 21.7089C0.418247 21.7202 0.327813 21.7337 0.239641 21.7337C0.250945 21.7337 0.259988 21.7359 0.269032 21.7359C0.350422 21.7359 0.429551 21.7179 0.50868 21.7112C0.795806 22.3661 1.20502 22.9805 1.7431 23.5161L15.1815 36.907C17.5056 39.2228 21.2722 39.2206 23.5963 36.907L25.084 35.4284L31.8371 28.7014L37.0393 23.5161C39.3657 21.2003 39.3657 17.4464 37.0393 15.1305L37.0347 15.1283Z" fill="url(#paint47_linear_8_858)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0865 9.16879L23.6257 1.73744C21.2993 -0.578393 17.535 -0.578393 15.2109 1.73744L14.4241 2.52288L7.34997 9.57164L1.77249 15.1305C0.95633 15.943 0.434077 16.931 0.189907 17.9752C0.189907 17.9752 0.189907 17.9767 0.189907 17.9797C-0.0972195 19.2176 0.0158222 20.5251 0.535814 21.7089C0.449903 21.7202 0.359469 21.7337 0.271297 21.7337C0.282601 21.7337 0.291644 21.7359 0.300688 21.7359C0.382078 21.7359 0.461207 21.7179 0.540336 21.7112C0.827462 22.3661 1.23667 22.9805 1.77475 23.5161L15.2132 36.907C17.5373 39.2228 21.3039 39.2206 23.628 36.907L25.1134 35.4284L31.8687 28.7014L37.0709 23.5161C39.3951 21.2003 39.3951 17.4464 37.0709 15.1305L37.0687 15.1283Z" fill="url(#paint48_linear_8_858)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0865 9.16879L23.6257 1.73744C21.2993 -0.578393 17.535 -0.578393 15.2109 1.73744L14.4241 2.52288L7.35223 9.57164L1.77249 15.1305C0.95633 15.943 0.434077 16.931 0.189907 17.9752C0.189907 17.9752 0.189907 17.9767 0.189907 17.9797C-0.0972195 19.2176 0.0158222 20.5251 0.535814 21.7089C0.449903 21.7202 0.359469 21.7337 0.271297 21.7337C0.282601 21.7337 0.291644 21.7359 0.300688 21.7359C0.382078 21.7359 0.461207 21.7179 0.540336 21.7112C0.827462 22.3661 1.23667 22.9805 1.77475 23.5161L15.2132 36.907C17.5373 39.2228 21.3039 39.2206 23.628 36.907L25.1134 35.4284L31.8687 28.7014L37.0709 23.5161C39.3951 21.2003 39.3951 17.4464 37.0709 15.1305L37.0687 15.1283Z" fill="url(#paint49_linear_8_858)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_8_858" x1="9.83465" y1="19.3143" x2="25.387" y2="2.93375" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_8_858" x1="11.8626" y1="21.2453" x2="27.4127" y2="4.8625" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_8_858" x1="4.79976" y1="18.6234" x2="0.428428" y2="23.3514" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_8_858" x1="14.0737" y1="27.2116" x2="9.70463" y2="31.9396" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_8_858" x1="20.4153" y1="29.3653" x2="35.9655" y2="12.9848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_8_858" x1="17.9963" y1="27.0765" x2="33.5531" y2="10.6869" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_8_858" x1="13.2281" y1="18.4006" x2="34.3918" y2="18.4006" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_8_858" x1="14.7384" y1="23.9775" x2="30.2908" y2="7.59467" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_8_858" x1="13.2304" y1="20.928" x2="34.3873" y2="20.928" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_8_858" x1="18.0822" y1="27.1373" x2="33.5828" y2="10.8087" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_8_858" x1="13.2372" y1="24.4051" x2="34.3738" y2="24.4051" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_8_858" x1="14.7407" y1="23.9796" x2="30.275" y2="7.60404" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_8_858" x1="13.2282" y1="23.7614" x2="34.4145" y2="23.7614" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_8_858" x1="13.2304" y1="20.9595" x2="34.3896" y2="20.9595" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_8_858" x1="8.02372" y1="21.5919" x2="3.58266" y2="26.399" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_8_858" x1="-1.71596" y1="22.1073" x2="10.6938" y2="22.1073" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_8_858" x1="2.10484" y1="15.9431" x2="-2.49575" y2="20.9219" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_8_858" x1="-1.72275" y1="17.9707" x2="11.051" y2="17.9707" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_8_858" x1="8.13901" y1="21.7179" x2="3.77217" y2="26.4392" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear_8_858" x1="-1.65719" y1="23.892" x2="10.6689" y2="23.892" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear_8_858" x1="-1.65719" y1="20.5634" x2="10.6689" y2="20.5634" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear_8_858" x1="8.48267" y1="30.2071" x2="30.2566" y2="8.33595" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.7" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.97" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear_8_858" x1="30.3223" y1="30.2093" x2="8.54837" y2="8.33595" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.8" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint23_linear_8_858" x1="8.48267" y1="8.43511" x2="30.2566" y2="30.3085" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.7" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.95" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint24_linear_8_858" x1="30.3563" y1="8.43511" x2="8.58228" y2="30.3062" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.8" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint25_linear_8_858" x1="9.83462" y1="19.3143" x2="25.387" y2="2.93375" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint26_linear_8_858" x1="11.8626" y1="21.2453" x2="27.4127" y2="4.8625" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint27_linear_8_858" x1="4.79974" y1="18.6234" x2="0.428412" y2="23.3514" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint28_linear_8_858" x1="14.0737" y1="27.2116" x2="9.70462" y2="31.9396" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint29_linear_8_858" x1="20.4153" y1="29.3653" x2="35.9655" y2="12.9848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint30_linear_8_858" x1="17.9963" y1="27.0765" x2="33.5531" y2="10.6869" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint31_linear_8_858" x1="13.2281" y1="18.4006" x2="34.3918" y2="18.4006" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint32_linear_8_858" x1="14.7384" y1="23.9775" x2="30.2907" y2="7.59467" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint33_linear_8_858" x1="13.2304" y1="20.928" x2="34.3873" y2="20.928" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint34_linear_8_858" x1="18.0821" y1="27.1373" x2="33.5828" y2="10.8087" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint35_linear_8_858" x1="13.2372" y1="24.4051" x2="34.3737" y2="24.4051" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint36_linear_8_858" x1="14.7407" y1="23.9796" x2="30.275" y2="7.60404" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint37_linear_8_858" x1="13.2282" y1="23.7614" x2="34.4145" y2="23.7614" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint38_linear_8_858" x1="13.2304" y1="20.9595" x2="34.3896" y2="20.9595" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint39_linear_8_858" x1="8.02369" y1="21.5919" x2="3.58263" y2="26.399" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint40_linear_8_858" x1="-1.716" y1="22.1073" x2="10.6937" y2="22.1073" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint41_linear_8_858" x1="2.10483" y1="15.9431" x2="-2.49577" y2="20.9219" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint42_linear_8_858" x1="-1.72277" y1="17.9707" x2="11.051" y2="17.9707" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint43_linear_8_858" x1="8.13899" y1="21.7179" x2="3.77216" y2="26.4392" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint44_linear_8_858" x1="-1.65721" y1="23.892" x2="10.6689" y2="23.892" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint45_linear_8_858" x1="-1.6572" y1="20.5634" x2="10.6689" y2="20.5634" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint46_linear_8_858" x1="8.48265" y1="30.2071" x2="30.2566" y2="8.33595" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.7" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.97" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint47_linear_8_858" x1="30.3223" y1="30.2093" x2="8.54835" y2="8.33595" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.8" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint48_linear_8_858" x1="8.48265" y1="8.43511" x2="30.2566" y2="30.3085" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.7" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.95" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint49_linear_8_858" x1="30.3562" y1="8.43511" x2="8.58226" y2="30.3062" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.8" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_8_858">
|
||||
<rect width="140" height="39" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 113 KiB |
407
src/main/resources/static/img/common/logo_w.svg
Normal file
@@ -0,0 +1,407 @@
|
||||
<svg width="140" height="39" viewBox="0 0 140 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8_706)">
|
||||
<path d="M48.2101 35.3969C48.0857 36.2116 47.8235 36.8462 47.421 37.3031C46.9847 37.7959 46.4308 38.0435 45.7638 38.0435C45.0969 38.0435 44.6131 37.7959 44.3101 37.3031C44.0298 36.8327 43.9461 36.1958 44.0592 35.3969C44.1134 35.0165 44.2039 34.6744 44.3305 34.3683C44.4571 34.0623 44.6198 33.7899 44.812 33.5514C45.0381 33.2993 45.2936 33.1035 45.583 32.964C45.8701 32.8245 46.1798 32.7547 46.5076 32.7547C46.8355 32.7547 47.1294 32.8222 47.3735 32.9595C47.6177 33.0968 47.8167 33.2948 47.9704 33.5559C48.0993 33.8035 48.1852 34.078 48.2281 34.3818C48.2711 34.6857 48.2621 35.0233 48.2055 35.3946L48.2101 35.3969ZM47.7488 35.3969C47.7895 35.1088 47.7941 34.8365 47.7624 34.5799C47.7308 34.3233 47.6675 34.0938 47.5748 33.8867C47.4595 33.6617 47.3057 33.4906 47.1181 33.3691C46.9304 33.2476 46.7089 33.1868 46.4511 33.1868C46.1934 33.1868 45.947 33.2476 45.7254 33.3691C45.5038 33.4906 45.3026 33.6639 45.124 33.8867C44.9725 34.0915 44.8437 34.3233 44.7419 34.5799C44.6379 34.8365 44.5656 35.1088 44.5249 35.3969C44.4842 35.6849 44.4797 35.9572 44.5113 36.2161C44.543 36.4749 44.604 36.7067 44.699 36.9115C44.8211 37.132 44.9748 37.3031 45.1647 37.4269C45.3546 37.5506 45.5762 37.6114 45.8294 37.6114C46.0826 37.6114 46.3268 37.5506 46.5483 37.4291C46.7699 37.3076 46.9711 37.1343 47.1497 36.9115C47.3012 36.7067 47.4278 36.4726 47.5341 36.2161C47.6381 35.9572 47.7104 35.6849 47.7511 35.3969H47.7488Z" fill="#808285"/>
|
||||
<path d="M51.2531 37.841C51.2441 37.904 51.2102 37.9377 51.1514 37.9377H50.8982C50.8394 37.9377 50.8145 37.9062 50.8236 37.841L51.1288 35.6804C51.1876 35.2596 51.1604 34.9625 51.0451 34.7847C50.9298 34.6092 50.7467 34.5214 50.4935 34.5214C50.1521 34.5214 49.8763 34.6249 49.6683 34.8297C49.4603 35.0345 49.3292 35.3226 49.2772 35.6939L48.9742 37.841C48.9652 37.904 48.9313 37.9377 48.8725 37.9377H48.6193C48.5605 37.9377 48.5356 37.9062 48.5447 37.841L48.9313 35.0975C48.9584 34.9017 48.9787 34.7487 48.9923 34.6384C49.0059 34.5281 49.0149 34.4246 49.0217 34.3233C49.0217 34.2918 49.033 34.2671 49.0533 34.2513C49.0737 34.2356 49.0986 34.2266 49.1234 34.2266H49.3518C49.4106 34.2266 49.4354 34.2581 49.4264 34.3233L49.3721 34.7014C49.5191 34.5056 49.6819 34.3616 49.8605 34.2693C50.0391 34.177 50.2765 34.132 50.5681 34.132C50.9683 34.132 51.2531 34.2581 51.4204 34.5101C51.5877 34.7622 51.6397 35.1155 51.5742 35.5746L51.2531 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M52.5192 37.841C52.5102 37.904 52.4762 37.9377 52.4175 37.9377H52.1394C52.0806 37.9377 52.0557 37.9062 52.0648 37.841L52.8086 32.5791C52.8176 32.5161 52.8515 32.4824 52.9103 32.4824H53.1884C53.2472 32.4824 53.2721 32.5139 53.263 32.5791L52.5192 37.841Z" fill="#808285"/>
|
||||
<path d="M53.688 38.1425C53.679 38.2056 53.6451 38.2393 53.5863 38.2393H53.3082C53.2494 38.2393 53.2246 38.2078 53.2336 38.1425L53.731 34.6227C53.74 34.5596 53.774 34.5259 53.8327 34.5259H54.1108C54.1696 34.5259 54.1945 34.5574 54.1854 34.6227L53.688 38.1425ZM53.8418 33.2296C53.8553 33.1373 53.896 33.0585 53.9639 32.9933C54.0317 32.928 54.1086 32.8942 54.1922 32.8942C54.2759 32.8942 54.3437 32.928 54.3957 32.9933C54.4477 33.0585 54.468 33.1395 54.4545 33.2296C54.4409 33.3218 54.4002 33.3984 54.3301 33.4636C54.26 33.5289 54.1832 33.5604 54.0973 33.5604C54.0113 33.5604 53.9458 33.5289 53.896 33.4636C53.8463 33.4006 53.8282 33.3218 53.8395 33.2296H53.8418Z" fill="#808285"/>
|
||||
<path d="M57.2059 37.841C57.1969 37.904 57.163 37.9377 57.1042 37.9377H56.851C56.7922 37.9377 56.7673 37.9062 56.7764 37.841L57.0816 35.6804C57.1404 35.2596 57.1132 34.9625 56.9979 34.7847C56.8826 34.6092 56.6995 34.5214 56.4463 34.5214C56.1049 34.5214 55.8291 34.6249 55.6211 34.8297C55.4131 35.0345 55.282 35.3226 55.23 35.6939L54.927 37.841C54.918 37.904 54.884 37.9377 54.8253 37.9377H54.5721C54.5133 37.9377 54.4884 37.9062 54.4974 37.841L54.884 35.0975C54.9112 34.9017 54.9315 34.7487 54.9451 34.6384C54.9587 34.5281 54.9677 34.4246 54.9745 34.3233C54.9745 34.2918 54.9858 34.2671 55.0061 34.2513C55.0265 34.2356 55.0513 34.2266 55.0762 34.2266H55.3046C55.3633 34.2266 55.3882 34.2581 55.3792 34.3233L55.3249 34.7014C55.4719 34.5056 55.6346 34.3616 55.8132 34.2693C55.9919 34.177 56.2292 34.132 56.5209 34.132C56.9211 34.132 57.2059 34.2581 57.3732 34.5101C57.5405 34.7622 57.5925 35.1155 57.527 35.5746L57.2059 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M58.463 36.2138C58.4268 36.4434 58.4223 36.6459 58.4494 36.8215C58.4765 36.997 58.533 37.1455 58.619 37.2648C58.7026 37.3841 58.8111 37.4741 58.9445 37.5394C59.0756 37.6024 59.2294 37.6362 59.4035 37.6362C59.5775 37.6362 59.7335 37.6182 59.885 37.5844C60.0365 37.5506 60.1835 37.4944 60.3214 37.4156C60.3801 37.3886 60.405 37.4044 60.396 37.4629L60.353 37.7712C60.3462 37.8117 60.3191 37.8455 60.2694 37.868C60.1224 37.9265 59.9687 37.9715 59.8127 38.0008C59.6567 38.03 59.4894 38.0458 59.313 38.0458C58.793 38.0458 58.4245 37.8815 58.2052 37.5551C57.9859 37.2288 57.9226 36.7359 58.0153 36.0765C58.0967 35.4959 58.2957 35.0278 58.6122 34.6699C58.9423 34.3098 59.3198 34.1275 59.7471 34.1275C59.9845 34.1275 60.1812 34.1725 60.3417 34.2648C60.5022 34.3571 60.6311 34.4944 60.7261 34.6767C60.8956 35.0008 60.9408 35.4351 60.864 35.9797C60.8549 36.0383 60.8481 36.0855 60.8414 36.117C60.8346 36.1485 60.8233 36.171 60.8097 36.1868C60.7961 36.2003 60.7713 36.2093 60.7396 36.2116C60.708 36.2138 60.6627 36.2161 60.604 36.2161H58.463V36.2138ZM60.4163 35.8222C60.4435 35.6354 60.4502 35.4689 60.4367 35.3203C60.4231 35.174 60.3892 35.0413 60.3349 34.922C60.2174 34.6519 60.0094 34.5169 59.7155 34.5169C59.4216 34.5169 59.1457 34.6542 58.9174 34.9287C58.8247 35.0525 58.741 35.1943 58.6664 35.3541C58.5941 35.5139 58.5443 35.6692 58.5172 35.82H60.4163V35.8222Z" fill="#808285"/>
|
||||
<path d="M67.0519 37.868C67.0338 37.913 67.0021 37.9355 66.9592 37.9355H66.5341C66.4866 37.9355 66.464 37.913 66.4618 37.868L65.9079 33.4096C65.6004 34.1545 65.2952 34.8972 64.9922 35.6354C64.6893 36.3736 64.3841 37.1185 64.0743 37.868C64.0562 37.913 64.0246 37.9355 63.9816 37.9355H63.5453C63.4978 37.9355 63.4752 37.913 63.473 37.868L62.867 32.955C62.8625 32.9325 62.8671 32.91 62.8829 32.8897C62.8987 32.8695 62.919 32.8582 62.9439 32.8582H63.2423C63.3011 32.8582 63.335 32.8897 63.3418 32.955L63.8528 37.4134C64.158 36.6639 64.4587 35.9257 64.7594 35.2011C65.0601 34.4764 65.363 33.7382 65.6682 32.9887C65.684 32.9437 65.7067 32.91 65.7383 32.8897C65.77 32.8695 65.8061 32.8582 65.8446 32.8582H66.1747C66.247 32.8582 66.2877 32.901 66.2945 32.9887L66.8325 37.3863C67.1332 36.6279 67.4294 35.8875 67.7211 35.1695C68.0127 34.4516 68.3111 33.7134 68.6164 32.9527C68.6277 32.9257 68.6457 32.9032 68.6706 32.8852C68.6932 32.8672 68.7181 32.8582 68.7452 32.8582H69.012C69.0369 32.8582 69.055 32.8695 69.064 32.8897C69.073 32.91 69.073 32.9325 69.0617 32.955L67.0519 37.868Z" fill="#808285"/>
|
||||
<path d="M72.0325 36.0833C71.994 36.3533 71.924 36.6032 71.82 36.835C71.716 37.0668 71.5916 37.2693 71.4492 37.4426C71.2751 37.6339 71.0761 37.7824 70.8568 37.8882C70.6375 37.994 70.3956 38.0458 70.1356 38.0458C69.8756 38.0458 69.6473 37.994 69.4551 37.8882C69.2629 37.7824 69.107 37.6339 68.9849 37.4426C68.8922 37.2693 68.8266 37.0668 68.7882 36.835C68.752 36.6032 68.752 36.3533 68.7882 36.0833C68.8673 35.5296 69.0595 35.0773 69.367 34.7239C69.7196 34.3256 70.1582 34.1275 70.6873 34.1275C70.9541 34.1275 71.1801 34.177 71.37 34.2761C71.56 34.3751 71.7137 34.5236 71.8313 34.7262C72.0415 35.0885 72.1093 35.5409 72.0325 36.0855V36.0833ZM71.5645 36.0833C71.5939 35.8672 71.5961 35.6669 71.5713 35.4801C71.5441 35.2933 71.4967 35.1268 71.4243 34.9782C71.2457 34.6857 70.9812 34.5394 70.6308 34.5394C70.4544 34.5394 70.2894 34.5776 70.1356 34.6519C69.9842 34.7284 69.8417 34.8365 69.7129 34.9782C69.5953 35.1245 69.4958 35.2911 69.4167 35.4801C69.3376 35.6669 69.2833 35.8695 69.2516 36.0833C69.22 36.3038 69.2177 36.5064 69.2449 36.6932C69.272 36.88 69.3217 37.0465 69.4009 37.186C69.5817 37.4831 69.8462 37.6317 70.1922 37.6317C70.3685 37.6317 70.5335 37.5934 70.6873 37.5146C70.8388 37.4359 70.9812 37.3278 71.1101 37.186C71.2231 37.0443 71.318 36.88 71.3972 36.6932C71.4763 36.5064 71.5306 36.3016 71.5622 36.0833H71.5645Z" fill="#808285"/>
|
||||
<path d="M74.3905 34.6429C74.3182 34.6159 74.2187 34.6024 74.0921 34.6024C73.7801 34.6024 73.5246 34.7689 73.3257 35.1043C73.1697 35.3653 73.0634 35.6984 73.0069 36.1058L72.7627 37.841C72.7537 37.904 72.7198 37.9377 72.661 37.9377H72.4145C72.3558 37.9377 72.3309 37.9062 72.3399 37.841L72.7333 35.0548C72.7559 34.8905 72.774 34.7554 72.7876 34.6542C72.7989 34.5506 72.8125 34.4404 72.826 34.3211C72.8351 34.2581 72.869 34.2243 72.9278 34.2243H73.1629C73.2217 34.2243 73.2465 34.2558 73.2375 34.3211L73.1425 34.994C73.4297 34.4179 73.7756 34.1298 74.1757 34.1298C74.273 34.1298 74.3679 34.1433 74.4606 34.1703C74.4855 34.1793 74.5058 34.1951 74.5216 34.2153C74.5375 34.2356 74.5443 34.2648 74.5375 34.3008L74.4968 34.5889C74.4923 34.6159 74.4787 34.6339 74.4583 34.6429C74.4357 34.6519 74.4154 34.6519 74.395 34.6429H74.3905Z" fill="#808285"/>
|
||||
<path d="M74.7681 37.841C74.759 37.904 74.7251 37.9377 74.6664 37.9377H74.3883C74.3295 37.9377 74.3046 37.9062 74.3137 37.841L75.0575 32.5791C75.0665 32.5161 75.1004 32.4824 75.1592 32.4824H75.4373C75.4961 32.4824 75.521 32.5139 75.5119 32.5791L74.7681 37.841Z" fill="#808285"/>
|
||||
<path d="M78.2701 37.841C78.2611 37.904 78.2272 37.9377 78.1684 37.9377H77.922C77.8632 37.9377 77.8383 37.9062 77.8473 37.841L77.9197 37.3256C77.6258 37.7915 77.2256 38.0255 76.7192 38.0255C76.267 38.0255 75.9415 37.8387 75.7402 37.4629C75.5571 37.1163 75.5051 36.6527 75.5865 36.0765C75.7674 34.7915 76.3281 34.1478 77.264 34.1478C77.5173 34.1478 77.7343 34.2018 77.9152 34.3121C78.096 34.4224 78.2181 34.5641 78.2837 34.7374L78.5889 32.5769C78.5979 32.5139 78.6319 32.4801 78.6906 32.4801H78.9371C78.9958 32.4801 79.0207 32.5116 79.0117 32.5769L78.2679 37.8387L78.2701 37.841ZM76.0568 36.0765C76.0274 36.2926 76.0138 36.4861 76.0206 36.6639C76.0274 36.8395 76.0545 36.9948 76.1042 37.1275C76.1743 37.2918 76.2693 37.4179 76.3891 37.5056C76.5089 37.5934 76.6627 37.6362 76.8481 37.6362C77.0176 37.6362 77.1736 37.5889 77.3138 37.4921C77.4562 37.3954 77.5806 37.2738 77.6891 37.1253C77.7976 36.9767 77.8835 36.8102 77.9536 36.6234C78.0214 36.4389 78.0689 36.2566 78.0938 36.0788C78.1254 35.8582 78.1322 35.6557 78.1141 35.4689C78.096 35.2821 78.0531 35.12 77.9875 34.9828C77.9197 34.8455 77.8293 34.7374 77.714 34.6609C77.5986 34.5821 77.4562 34.5439 77.2867 34.5439C76.9272 34.5439 76.631 34.7104 76.3982 35.0458C76.3122 35.1785 76.2399 35.3338 76.1834 35.5094C76.1268 35.6849 76.0839 35.8762 76.0545 36.0833L76.0568 36.0765Z" fill="#808285"/>
|
||||
<path d="M83.6419 37.841C83.6464 37.8635 83.6419 37.886 83.6328 37.9062C83.6215 37.9265 83.6034 37.9377 83.5786 37.9377H83.2485C83.1852 37.9377 83.1422 37.9062 83.1219 37.841C82.993 37.4111 82.8845 37.06 82.7963 36.7877C82.7082 36.5154 82.6403 36.2993 82.5906 36.1395C82.5296 35.9527 82.4821 35.8087 82.4482 35.7074C82.3487 35.7299 82.256 35.7434 82.1723 35.7479C82.0887 35.7524 81.9847 35.7569 81.8558 35.7614H81.3245L81.0306 37.841C81.0216 37.904 80.9877 37.9377 80.9289 37.9377H80.644C80.5852 37.9377 80.5604 37.9062 80.5694 37.841L81.2431 33.0653C81.2499 33.0158 81.2567 32.9752 81.2635 32.9482C81.2703 32.9212 81.2793 32.901 81.2951 32.8875C81.3087 32.874 81.329 32.865 81.3562 32.8627C81.381 32.8605 81.4172 32.8582 81.4647 32.8582H82.6607C82.9003 32.8582 83.1038 32.8942 83.2688 32.964C83.4339 33.036 83.565 33.135 83.6645 33.2633C83.7617 33.3916 83.8273 33.5469 83.8589 33.7292C83.8906 33.9115 83.8906 34.1163 83.8589 34.3391C83.8386 34.4764 83.7979 34.6069 83.7368 34.7307C83.6758 34.8545 83.5989 34.9692 83.5085 35.0728C83.4181 35.1785 83.3163 35.2731 83.2055 35.3586C83.0948 35.4441 82.9817 35.5139 82.8687 35.5679L83.6441 37.8387L83.6419 37.841ZM83.3819 34.3413C83.409 34.15 83.4113 33.9857 83.3909 33.8507C83.3706 33.7157 83.3186 33.6054 83.2349 33.5221C83.1513 33.4366 83.036 33.3758 82.8913 33.3398C82.7443 33.3038 82.5567 33.2858 82.3283 33.2858H81.675L81.3856 35.3293H82.0503C82.2243 35.3293 82.3849 35.3068 82.5386 35.2618C82.6923 35.2168 82.8257 35.1493 82.9433 35.0638C83.0608 34.976 83.1581 34.8725 83.2349 34.7509C83.3118 34.6294 83.3593 34.4944 83.3819 34.3436V34.3413Z" fill="#808285"/>
|
||||
<path d="M84.5733 36.2138C84.5372 36.4434 84.5326 36.6459 84.5598 36.8215C84.5869 36.997 84.6434 37.1455 84.7293 37.2648C84.813 37.3841 84.9215 37.4741 85.0549 37.5394C85.186 37.6024 85.3398 37.6362 85.5138 37.6362C85.6879 37.6362 85.8439 37.6182 85.9954 37.5844C86.1469 37.5506 86.2938 37.4944 86.4317 37.4156C86.4905 37.3886 86.5154 37.4044 86.5064 37.4629L86.4634 37.7712C86.4566 37.8117 86.4295 37.8455 86.3797 37.868C86.2328 37.9265 86.079 37.9715 85.9231 38.0008C85.7671 38.03 85.5998 38.0458 85.4234 38.0458C84.9034 38.0458 84.5349 37.8815 84.3156 37.5551C84.0963 37.2288 84.033 36.7359 84.1257 36.0765C84.2071 35.4959 84.406 35.0278 84.7225 34.6699C85.0526 34.3098 85.4302 34.1275 85.8575 34.1275C86.0926 34.1275 86.2916 34.1725 86.4521 34.2648C86.6126 34.3571 86.7415 34.4944 86.8364 34.6767C87.006 35.0008 87.0512 35.4351 86.9743 35.9797C86.9653 36.0383 86.9585 36.0855 86.9517 36.117C86.945 36.1485 86.9336 36.171 86.9201 36.1868C86.9065 36.2003 86.8816 36.2093 86.85 36.2116C86.8183 36.2138 86.7731 36.2161 86.7143 36.2161H84.5733V36.2138ZM86.529 35.8222C86.5561 35.6354 86.5629 35.4689 86.5493 35.3203C86.5357 35.174 86.5018 35.0413 86.4476 34.922C86.33 34.6519 86.122 34.5169 85.8258 34.5169C85.5297 34.5169 85.2561 34.6542 85.0278 34.9287C84.9351 35.0525 84.8514 35.1943 84.7768 35.3541C84.7045 35.5139 84.6547 35.6692 84.6276 35.82H86.5267L86.529 35.8222Z" fill="#808285"/>
|
||||
<path d="M89.4432 37.9625C89.3143 37.985 89.1877 38.0008 89.0701 38.0098C88.9526 38.0188 88.8079 38.0233 88.6428 38.0233C88.3806 38.0233 88.1545 37.9737 87.9646 37.8725C87.7747 37.7712 87.6209 37.6339 87.5034 37.4606C87.3858 37.2873 87.3067 37.0803 87.2637 36.844C87.2208 36.6054 87.2185 36.3511 87.2592 36.0765C87.2976 35.7975 87.3745 35.5409 87.4875 35.3046C87.6006 35.0683 87.7453 34.8657 87.9194 34.6947C88.0935 34.5236 88.2924 34.3886 88.514 34.2896C88.7378 34.1905 88.9797 34.1433 89.242 34.1433C89.3821 34.1433 89.5065 34.15 89.6195 34.1613C89.7326 34.1725 89.8501 34.195 89.9767 34.2266C90.0332 34.2446 90.0536 34.2873 90.04 34.3571L89.9903 34.5776C89.9745 34.6317 89.9383 34.6542 89.8863 34.6384C89.7823 34.6024 89.6806 34.5754 89.5811 34.5596C89.4816 34.5439 89.3708 34.5349 89.2487 34.5349C89.034 34.5349 88.8395 34.5731 88.6654 34.6474C88.4914 34.7217 88.3399 34.8297 88.211 34.967C88.0821 35.1043 87.9759 35.2686 87.8945 35.4576C87.8131 35.6467 87.7566 35.8537 87.7249 36.0788C87.6955 36.2836 87.6955 36.4816 87.7249 36.6684C87.7566 36.8552 87.8154 37.0218 87.9013 37.1658C87.9872 37.3098 88.1025 37.4246 88.2449 37.5079C88.3874 37.5934 88.5569 37.6339 88.7559 37.6339C88.9028 37.6339 89.0272 37.6272 89.1267 37.6137C89.2261 37.6002 89.3392 37.5754 89.4658 37.5371C89.5313 37.5191 89.563 37.5371 89.5607 37.5844L89.5449 37.8387C89.5404 37.9085 89.5042 37.949 89.4386 37.9625H89.4432Z" fill="#808285"/>
|
||||
<path d="M92.0725 34.6429C92.0002 34.6159 91.9007 34.6024 91.7741 34.6024C91.4621 34.6024 91.2066 34.7689 91.0077 35.1043C90.8517 35.3653 90.7454 35.6984 90.6889 36.1058L90.4447 37.841C90.4357 37.904 90.4018 37.9377 90.343 37.9377H90.0966C90.0378 37.9377 90.0129 37.9062 90.022 37.841L90.4153 35.0548C90.4379 34.8905 90.456 34.7554 90.4696 34.6542C90.4809 34.5506 90.4945 34.4404 90.508 34.3211C90.5171 34.2581 90.551 34.2243 90.6098 34.2243H90.8449C90.9037 34.2243 90.9285 34.2558 90.9195 34.3211L90.8246 34.994C91.1117 34.4179 91.4576 34.1298 91.8577 34.1298C91.955 34.1298 92.0499 34.1433 92.1426 34.1703C92.1675 34.1793 92.1878 34.1951 92.2037 34.2153C92.2195 34.2356 92.2263 34.2648 92.2195 34.3008L92.1788 34.5889C92.1743 34.6159 92.1607 34.6339 92.1404 34.6429C92.1177 34.6519 92.0974 34.6519 92.077 34.6429H92.0725Z" fill="#808285"/>
|
||||
<path d="M92.4388 36.2138C92.4026 36.4434 92.3981 36.6459 92.4252 36.8215C92.4523 36.997 92.5089 37.1455 92.5948 37.2648C92.6784 37.3841 92.7869 37.4741 92.9203 37.5394C93.0515 37.6024 93.2052 37.6362 93.3793 37.6362C93.5534 37.6362 93.7094 37.6182 93.8608 37.5844C94.0123 37.5506 94.1593 37.4944 94.2972 37.4156C94.356 37.3886 94.3808 37.4044 94.3718 37.4629L94.3288 37.7712C94.3221 37.8117 94.2949 37.8455 94.2452 37.868C94.0982 37.9265 93.9445 37.9715 93.7885 38.0008C93.6325 38.03 93.4652 38.0458 93.2889 38.0458C92.7689 38.0458 92.4003 37.8815 92.181 37.5551C91.9617 37.2288 91.8984 36.7359 91.9911 36.0765C92.0725 35.4959 92.2715 35.0278 92.588 34.6699C92.9181 34.3098 93.2956 34.1275 93.7229 34.1275C93.9581 34.1275 94.157 34.1725 94.3175 34.2648C94.4781 34.3571 94.6069 34.4944 94.7019 34.6767C94.8714 35.0008 94.9167 35.4351 94.8398 35.9797C94.8307 36.0383 94.824 36.0855 94.8172 36.117C94.8104 36.1485 94.7991 36.171 94.7855 36.1868C94.772 36.2003 94.7471 36.2093 94.7154 36.2116C94.6838 36.2138 94.6386 36.2161 94.5798 36.2161H92.4388V36.2138ZM94.3944 35.8222C94.4215 35.6354 94.4283 35.4689 94.4147 35.3203C94.4012 35.174 94.3673 35.0413 94.313 34.922C94.1955 34.6519 93.9875 34.5169 93.6913 34.5169C93.3951 34.5169 93.1216 34.6542 92.8932 34.9287C92.8005 35.0525 92.7169 35.1943 92.6423 35.3541C92.5699 35.5139 92.5202 35.6692 92.493 35.82H94.3921L94.3944 35.8222Z" fill="#808285"/>
|
||||
<path d="M95.7034 34.8005C95.6808 34.814 95.6605 34.8185 95.6424 34.8117C95.6243 34.805 95.6175 34.7892 95.6198 34.7667L95.656 34.5056C95.665 34.4426 95.7012 34.3931 95.7645 34.3616C95.925 34.2738 96.09 34.2131 96.2619 34.1793C96.4337 34.1455 96.6191 34.1275 96.818 34.1275C97.2408 34.1275 97.5325 34.2356 97.6975 34.4539C97.8603 34.6722 97.9123 34.9985 97.849 35.4374L97.6048 37.159C97.5845 37.2963 97.5709 37.4179 97.5596 37.5259C97.5483 37.6339 97.5392 37.7374 97.5347 37.8387C97.5257 37.9017 97.4918 37.9355 97.433 37.9355H97.2046C97.1459 37.9355 97.121 37.904 97.13 37.8387L97.2046 37.3098C97.0825 37.5439 96.9085 37.7239 96.6824 37.8522C96.4563 37.9805 96.2189 38.0435 95.9747 38.0435C95.5474 38.0435 95.2558 37.9085 95.0953 37.6384C95.041 37.5461 95.0048 37.4404 94.989 37.3188C94.9732 37.1973 94.9732 37.078 94.989 36.9587C95.0274 36.6797 95.1224 36.4389 95.2716 36.2386C95.4208 36.0383 95.6266 35.8875 95.8888 35.7862C96.2099 35.6669 96.6846 35.6084 97.3132 35.6084H97.3945L97.4239 35.4036C97.4646 35.1155 97.4352 34.895 97.3358 34.7442C97.2363 34.5934 97.0464 34.5169 96.7638 34.5169C96.5739 34.5169 96.3907 34.5394 96.2166 34.5821C96.0426 34.6249 95.8707 34.6969 95.7057 34.7982L95.7034 34.8005ZM97.3403 36.0023H97.2205C96.9853 35.9932 96.7728 36.0023 96.5852 36.0338C96.3975 36.063 96.2393 36.1035 96.1081 36.153C95.9205 36.2206 95.7735 36.3241 95.665 36.4591C95.5565 36.5941 95.4909 36.7562 95.4638 36.943C95.448 37.0578 95.4502 37.1635 95.4706 37.2626C95.4909 37.3616 95.5316 37.4381 95.5972 37.4921C95.708 37.6024 95.8685 37.6564 96.081 37.6564C96.228 37.6564 96.3704 37.6249 96.5038 37.5596C96.6372 37.4944 96.7592 37.4044 96.8678 37.2851C96.9785 37.1658 97.069 37.0195 97.1459 36.8417C97.2205 36.6662 97.2747 36.4636 97.3086 36.2341L97.3425 36L97.3403 36.0023Z" fill="#808285"/>
|
||||
<path d="M99.8453 37.9422C99.6576 38.0098 99.479 38.0458 99.305 38.0458C98.9636 38.0458 98.7533 37.9242 98.6787 37.6812C98.6312 37.5169 98.6358 37.2266 98.6945 36.8102L99.0043 34.6227H98.4097C98.3509 34.6227 98.326 34.5912 98.3351 34.5259L98.3644 34.3211C98.3735 34.2581 98.4074 34.2243 98.4662 34.2243H99.0608L99.1919 33.2971C99.201 33.2296 99.2349 33.1936 99.2891 33.1936H99.5559C99.6102 33.1936 99.6328 33.2273 99.6237 33.2971L99.4926 34.2243H100.196C100.255 34.2243 100.279 34.2558 100.27 34.3211L100.241 34.5259C100.232 34.5912 100.198 34.6227 100.139 34.6227H99.4361L99.0947 37.0443C99.0382 37.4516 99.1603 37.6542 99.4655 37.6542C99.583 37.6542 99.7209 37.6272 99.8769 37.5709C99.8996 37.5619 99.9199 37.5619 99.938 37.5709C99.9561 37.5799 99.9629 37.5979 99.9583 37.6249L99.947 37.8027C99.947 37.8657 99.9154 37.913 99.8521 37.94L99.8453 37.9422Z" fill="#808285"/>
|
||||
<path d="M100.652 38.1425C100.643 38.2056 100.609 38.2393 100.551 38.2393H100.273C100.214 38.2393 100.189 38.2078 100.198 38.1425L100.695 34.6227C100.704 34.5596 100.738 34.5259 100.797 34.5259H101.075C101.134 34.5259 101.159 34.5574 101.15 34.6227L100.652 38.1425ZM100.808 33.2296C100.822 33.1373 100.863 33.0585 100.93 32.9933C100.998 32.928 101.075 32.8942 101.159 32.8942C101.242 32.8942 101.31 32.928 101.362 32.9933C101.414 33.0585 101.435 33.1395 101.421 33.2296C101.408 33.3218 101.367 33.3984 101.297 33.4636C101.227 33.5289 101.15 33.5604 101.064 33.5604C100.978 33.5604 100.912 33.5289 100.863 33.4636C100.813 33.4006 100.795 33.3218 100.806 33.2296H100.808Z" fill="#808285"/>
|
||||
<path d="M104.173 37.841C104.163 37.904 104.13 37.9377 104.071 37.9377H103.818C103.759 37.9377 103.734 37.9062 103.743 37.841L104.048 35.6804C104.107 35.2596 104.08 34.9625 103.967 34.7847C103.851 34.6092 103.668 34.5214 103.415 34.5214C103.074 34.5214 102.798 34.6249 102.59 34.8297C102.382 35.0345 102.251 35.3226 102.199 35.6939L101.896 37.841C101.887 37.904 101.853 37.9377 101.794 37.9377H101.541C101.482 37.9377 101.457 37.9062 101.466 37.841L101.853 35.0975C101.88 34.9017 101.9 34.7487 101.914 34.6384C101.928 34.5281 101.937 34.4246 101.943 34.3233C101.943 34.2918 101.955 34.2671 101.975 34.2513C101.995 34.2356 102.02 34.2266 102.045 34.2266H102.273C102.332 34.2266 102.357 34.2581 102.348 34.3233L102.294 34.7014C102.441 34.5056 102.604 34.3616 102.782 34.2693C102.961 34.177 103.198 34.132 103.488 34.132C103.888 34.132 104.173 34.2581 104.34 34.5101C104.507 34.7622 104.559 35.1155 104.494 35.5746L104.173 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M104.995 38.8357C104.946 38.8222 104.93 38.7884 104.946 38.7322L105.007 38.4306C105.016 38.3721 105.045 38.3563 105.095 38.3901C105.244 38.4689 105.391 38.5229 105.534 38.5589C105.676 38.5926 105.834 38.6107 106.008 38.6107C106.393 38.6107 106.698 38.4846 106.926 38.2303C107.155 37.976 107.313 37.6294 107.399 37.1905C107.272 37.3953 107.107 37.5529 106.901 37.6564C106.696 37.7622 106.479 37.814 106.246 37.814C106.038 37.814 105.852 37.7734 105.687 37.6902C105.522 37.6069 105.384 37.4921 105.274 37.3413C105.165 37.1905 105.086 37.0083 105.041 36.7922C104.995 36.5761 104.991 36.3398 105.027 36.0788C105.07 35.7727 105.136 35.4981 105.222 35.2596C105.307 35.021 105.42 34.8162 105.558 34.6519C105.696 34.4876 105.861 34.3616 106.056 34.2738C106.25 34.186 106.476 34.1433 106.734 34.1433C106.958 34.1433 107.15 34.1838 107.308 34.2626C107.469 34.3436 107.623 34.4854 107.77 34.6924L107.81 34.3211C107.819 34.2581 107.853 34.2243 107.912 34.2243H108.152C108.21 34.2243 108.235 34.2558 108.226 34.3211L107.84 37.0645C107.797 37.3616 107.724 37.6317 107.62 37.8702C107.516 38.111 107.385 38.3136 107.225 38.4801C107.064 38.6467 106.876 38.7749 106.659 38.865C106.445 38.955 106.205 38.9977 105.945 38.9977C105.755 38.9977 105.59 38.9842 105.45 38.9595C105.31 38.9347 105.158 38.892 104.993 38.8335L104.995 38.8357ZM107.566 36.063C107.636 35.5746 107.595 35.1966 107.446 34.931C107.297 34.6654 107.064 34.5326 106.748 34.5326C106.406 34.5326 106.13 34.6564 105.922 34.904C105.714 35.1515 105.572 35.5409 105.497 36.0765C105.47 36.2723 105.47 36.4546 105.497 36.6189C105.524 36.7832 105.574 36.925 105.647 37.0398C105.719 37.1568 105.812 37.2491 105.925 37.3143C106.038 37.3796 106.167 37.4134 106.309 37.4134C106.451 37.4134 106.601 37.3796 106.741 37.3143C106.881 37.2491 107.008 37.1545 107.118 37.033C107.231 36.9115 107.326 36.7697 107.403 36.6032C107.482 36.4389 107.534 36.2588 107.562 36.0608L107.566 36.063Z" fill="#808285"/>
|
||||
<path d="M113.824 37.841C113.835 37.904 113.813 37.9377 113.754 37.9377H113.451C113.426 37.9377 113.404 37.9332 113.385 37.9242C113.367 37.9152 113.354 37.8882 113.342 37.841L113.051 36.5784H110.67C110.559 36.7945 110.451 37.0038 110.347 37.2086C110.243 37.4156 110.137 37.6249 110.03 37.8387C110.008 37.8837 109.985 37.913 109.965 37.922C109.944 37.931 109.922 37.9355 109.897 37.9355H109.599C109.54 37.9355 109.524 37.904 109.556 37.8387L112.11 32.9257C112.14 32.8717 112.18 32.8425 112.237 32.8425H112.624C112.678 32.8425 112.712 32.8695 112.725 32.9257L113.824 37.8387V37.841ZM112.963 36.1395C112.852 35.6647 112.748 35.1943 112.653 34.7307C112.556 34.2671 112.452 33.7967 112.343 33.3218C112.099 33.7967 111.857 34.2671 111.622 34.7307C111.385 35.1943 111.145 35.6647 110.901 36.1395H112.965H112.963Z" fill="#808285"/>
|
||||
<path d="M116.991 37.841C116.982 37.904 116.949 37.9377 116.89 37.9377H116.643C116.585 37.9377 116.56 37.9062 116.569 37.841L116.641 37.3256C116.347 37.7915 115.947 38.0255 115.441 38.0255C114.988 38.0255 114.663 37.8387 114.462 37.4629C114.278 37.1163 114.226 36.6527 114.308 36.0765C114.489 34.7915 115.049 34.1478 115.985 34.1478C116.239 34.1478 116.456 34.2018 116.637 34.3121C116.817 34.4224 116.939 34.5641 117.003 34.7374L117.308 32.5769C117.317 32.5139 117.351 32.4801 117.41 32.4801H117.656C117.715 32.4801 117.74 32.5116 117.731 32.5769L116.987 37.8387L116.991 37.841ZM114.776 36.0765C114.746 36.2926 114.733 36.4861 114.74 36.6639C114.746 36.8395 114.774 36.9948 114.823 37.1275C114.893 37.2918 114.988 37.4179 115.108 37.5056C115.228 37.5934 115.382 37.6362 115.567 37.6362C115.737 37.6362 115.893 37.5889 116.035 37.4921C116.178 37.3954 116.302 37.2738 116.41 37.1253C116.517 36.9767 116.605 36.8102 116.675 36.6234C116.743 36.4389 116.79 36.2566 116.815 36.0788C116.847 35.8582 116.854 35.6557 116.835 35.4689C116.817 35.2821 116.774 35.12 116.709 34.9828C116.641 34.8455 116.551 34.7374 116.435 34.6609C116.32 34.5821 116.178 34.5439 116.008 34.5439C115.649 34.5439 115.352 34.7104 115.119 35.0458C115.034 35.1785 114.961 35.3338 114.905 35.5094C114.848 35.6849 114.805 35.8762 114.776 36.0833V36.0765Z" fill="#808285"/>
|
||||
<path d="M119.004 37.8477C118.974 37.9062 118.927 37.9377 118.863 37.9377H118.554C118.49 37.9377 118.454 37.9085 118.445 37.8477L117.828 34.3211C117.823 34.2986 117.828 34.2761 117.844 34.2558C117.86 34.2356 117.88 34.2243 117.905 34.2243H118.19C118.239 34.2243 118.273 34.2558 118.289 34.3211L118.782 37.4629L120.202 34.3211C120.213 34.2941 120.231 34.2716 120.256 34.2513C120.279 34.2333 120.304 34.2243 120.331 34.2243H120.609C120.634 34.2243 120.652 34.2356 120.661 34.2558C120.67 34.2761 120.67 34.2986 120.659 34.3211L119.001 37.8477H119.004Z" fill="#808285"/>
|
||||
<path d="M120.964 36.2138C120.928 36.4434 120.923 36.6459 120.95 36.8215C120.977 36.997 121.034 37.1455 121.12 37.2648C121.203 37.3841 121.312 37.4741 121.445 37.5394C121.579 37.6024 121.73 37.6362 121.904 37.6362C122.078 37.6362 122.234 37.6182 122.386 37.5844C122.537 37.5506 122.684 37.4944 122.822 37.4156C122.881 37.3886 122.906 37.4044 122.897 37.4629L122.854 37.7712C122.847 37.8117 122.82 37.8455 122.77 37.868C122.623 37.9265 122.469 37.9715 122.313 38.0008C122.157 38.03 121.99 38.0458 121.814 38.0458C121.294 38.0458 120.925 37.8815 120.706 37.5551C120.487 37.2288 120.423 36.7359 120.516 36.0765C120.597 35.4959 120.796 35.0278 121.113 34.6699C121.443 34.3098 121.821 34.1275 122.248 34.1275C122.485 34.1275 122.682 34.1725 122.842 34.2648C123.003 34.3571 123.132 34.4944 123.227 34.6767C123.396 35.0008 123.442 35.4351 123.365 35.9797C123.356 36.0383 123.349 36.0855 123.342 36.117C123.335 36.1485 123.324 36.171 123.31 36.1868C123.297 36.2003 123.272 36.2093 123.24 36.2116C123.209 36.2138 123.164 36.2161 123.105 36.2161H120.964V36.2138ZM122.919 35.8222C122.947 35.6354 122.953 35.4689 122.94 35.3203C122.926 35.174 122.892 35.0413 122.838 34.922C122.72 34.6519 122.512 34.5169 122.219 34.5169C121.925 34.5169 121.649 34.6542 121.418 34.9287C121.325 35.0525 121.242 35.1943 121.167 35.3541C121.095 35.5139 121.045 35.6692 121.018 35.82H122.917L122.919 35.8222Z" fill="#808285"/>
|
||||
<path d="M126.365 37.841C126.356 37.904 126.322 37.9377 126.263 37.9377H126.01C125.951 37.9377 125.926 37.9062 125.935 37.841L126.241 35.6804C126.299 35.2596 126.272 34.9625 126.159 34.7847C126.044 34.6092 125.861 34.5214 125.608 34.5214C125.266 34.5214 124.99 34.6249 124.782 34.8297C124.574 35.0345 124.443 35.3226 124.391 35.6939L124.088 37.841C124.079 37.904 124.045 37.9377 123.986 37.9377H123.733C123.674 37.9377 123.65 37.9062 123.659 37.841L124.045 35.0975C124.072 34.9017 124.093 34.7487 124.106 34.6384C124.12 34.5281 124.129 34.4246 124.136 34.3233C124.136 34.2918 124.147 34.2671 124.167 34.2513C124.188 34.2356 124.213 34.2266 124.237 34.2266H124.466C124.525 34.2266 124.549 34.2581 124.54 34.3233L124.486 34.7014C124.633 34.5056 124.796 34.3616 124.974 34.2693C125.153 34.177 125.39 34.132 125.68 34.132C126.08 34.132 126.365 34.2581 126.532 34.5101C126.699 34.7622 126.751 35.1155 126.686 35.5746L126.365 37.8455V37.841Z" fill="#808285"/>
|
||||
<path d="M128.757 37.9422C128.569 38.0098 128.391 38.0458 128.217 38.0458C127.875 38.0458 127.665 37.9242 127.59 37.6812C127.543 37.5169 127.547 37.2266 127.606 36.8102L127.916 34.6227H127.321C127.262 34.6227 127.238 34.5912 127.247 34.5259L127.276 34.3211C127.285 34.2581 127.319 34.2243 127.378 34.2243H127.972L128.103 33.2971C128.113 33.2296 128.146 33.1936 128.201 33.1936H128.467C128.522 33.1936 128.544 33.2273 128.535 33.2971L128.404 34.2243H129.107C129.166 34.2243 129.191 34.2558 129.182 34.3211L129.153 34.5259C129.143 34.5912 129.11 34.6227 129.051 34.6227H128.348L128.006 37.0443C127.95 37.4516 128.072 37.6542 128.377 37.6542C128.495 37.6542 128.633 37.6272 128.789 37.5709C128.811 37.5619 128.831 37.5619 128.85 37.5709C128.868 37.5799 128.874 37.5979 128.87 37.6249L128.859 37.8027C128.859 37.8657 128.827 37.913 128.764 37.94L128.757 37.9422Z" fill="#808285"/>
|
||||
<path d="M131.879 37.841C131.87 37.904 131.836 37.9377 131.777 37.9377H131.549C131.49 37.9377 131.465 37.9062 131.474 37.841L131.556 37.2716C131.407 37.5461 131.232 37.7442 131.031 37.8657C130.83 37.9873 130.59 38.048 130.312 38.048C129.523 38.048 129.195 37.5709 129.331 36.6144L129.654 34.3233C129.663 34.2603 129.697 34.2266 129.756 34.2266H130.009C130.068 34.2266 130.093 34.2581 130.084 34.3233L129.779 36.4906C129.668 37.2671 129.89 37.6564 130.437 37.6564C130.597 37.6564 130.746 37.6182 130.887 37.5439C131.027 37.4674 131.149 37.3661 131.257 37.2356C131.364 37.105 131.454 36.9542 131.524 36.7787C131.594 36.6054 131.642 36.4209 131.664 36.2296L131.933 34.3233C131.942 34.2603 131.976 34.2266 132.035 34.2266H132.288C132.347 34.2266 132.372 34.2581 132.363 34.3233L131.974 37.0803C131.954 37.2311 131.936 37.3661 131.92 37.4854C131.906 37.6047 131.893 37.7239 131.879 37.841Z" fill="#808285"/>
|
||||
<path d="M134.739 34.6429C134.667 34.6159 134.567 34.6024 134.441 34.6024C134.129 34.6024 133.873 34.7689 133.674 35.1043C133.518 35.3653 133.412 35.6984 133.355 36.1058L133.111 37.841C133.102 37.904 133.068 37.9377 133.009 37.9377H132.763C132.704 37.9377 132.679 37.9062 132.688 37.841L133.082 35.0548C133.104 34.8905 133.123 34.7554 133.136 34.6542C133.147 34.5506 133.161 34.4404 133.175 34.3211C133.184 34.2581 133.217 34.2243 133.276 34.2243H133.511C133.57 34.2243 133.595 34.2558 133.586 34.3211L133.491 34.994C133.778 34.4179 134.124 34.1298 134.524 34.1298C134.621 34.1298 134.716 34.1433 134.809 34.1703C134.834 34.1793 134.852 34.1951 134.87 34.2153C134.886 34.2356 134.893 34.2648 134.886 34.3008L134.845 34.5889C134.841 34.6159 134.827 34.6339 134.807 34.6429C134.784 34.6519 134.764 34.6519 134.744 34.6429H134.739Z" fill="#808285"/>
|
||||
<path d="M135.105 36.2138C135.069 36.4434 135.065 36.6459 135.092 36.8215C135.119 36.997 135.175 37.1455 135.261 37.2648C135.345 37.3841 135.453 37.4741 135.587 37.5394C135.72 37.6024 135.872 37.6362 136.046 37.6362C136.22 37.6362 136.376 37.6182 136.527 37.5844C136.679 37.5506 136.826 37.4944 136.964 37.4156C137.022 37.3886 137.047 37.4044 137.038 37.4629L136.995 37.7712C136.989 37.8117 136.961 37.8455 136.912 37.868C136.765 37.9265 136.611 37.9715 136.455 38.0008C136.299 38.03 136.132 38.0458 135.955 38.0458C135.435 38.0458 135.067 37.8815 134.848 37.5551C134.628 37.2288 134.565 36.7359 134.658 36.0765C134.739 35.4959 134.938 35.0278 135.255 34.6699C135.585 34.3098 135.962 34.1275 136.389 34.1275C136.627 34.1275 136.824 34.1725 136.984 34.2648C137.145 34.3571 137.273 34.4944 137.368 34.6767C137.538 35.0008 137.583 35.4351 137.506 35.9797C137.497 36.0383 137.49 36.0855 137.484 36.117C137.477 36.1485 137.466 36.171 137.452 36.1868C137.438 36.2003 137.414 36.2093 137.382 36.2116C137.35 36.2138 137.305 36.2161 137.246 36.2161H135.105V36.2138ZM137.061 35.8222C137.088 35.6354 137.095 35.4689 137.081 35.3203C137.068 35.174 137.034 35.0413 136.98 34.922C136.862 34.6519 136.654 34.5169 136.36 34.5169C136.066 34.5169 135.79 34.6542 135.56 34.9287C135.467 35.0525 135.383 35.1943 135.309 35.3541C135.236 35.5139 135.187 35.6692 135.16 35.82H137.059L137.061 35.8222Z" fill="#808285"/>
|
||||
<path d="M139.855 34.6429C139.783 34.6159 139.683 34.6024 139.557 34.6024C139.245 34.6024 138.989 34.7689 138.79 35.1043C138.634 35.3653 138.528 35.6984 138.472 36.1058L138.228 37.841C138.218 37.904 138.185 37.9377 138.126 37.9377H137.879C137.821 37.9377 137.796 37.9062 137.805 37.841L138.198 35.0548C138.221 34.8905 138.239 34.7554 138.252 34.6542C138.264 34.5506 138.277 34.4404 138.291 34.3211C138.3 34.2581 138.334 34.2243 138.393 34.2243H138.628C138.686 34.2243 138.711 34.2558 138.702 34.3211L138.607 34.994C138.894 34.4179 139.24 34.1298 139.641 34.1298C139.738 34.1298 139.833 34.1433 139.925 34.1703C139.95 34.1793 139.968 34.1951 139.986 34.2153C140.002 34.2356 140.009 34.2648 140.002 34.3008L139.962 34.5889C139.957 34.6159 139.943 34.6339 139.923 34.6429C139.901 34.6519 139.88 34.6519 139.86 34.6429H139.855Z" fill="#808285"/>
|
||||
<path d="M43.8195 19.5349C43.8195 17.7839 44.0886 16.1635 44.6402 14.6782C45.1873 13.1951 45.9877 11.8942 47.0367 10.7824C48.1603 9.60315 49.4716 8.70968 50.9615 8.10653C52.4514 7.50113 54.0815 7.19955 55.8562 7.19955C59.1163 7.19955 61.6779 8.07952 63.543 9.83271C65.4015 11.5904 66.3329 14.0098 66.3329 17.0818C66.3329 18.8035 66.0707 20.3924 65.5462 21.8462C65.0216 23.3001 64.2597 24.5559 63.2604 25.6227C62.1052 26.8605 60.7713 27.7967 59.2633 28.4246C57.753 29.0503 56.0936 29.3653 54.2804 29.3653C51.0587 29.3653 48.5062 28.4809 46.632 26.7164C44.7555 24.952 43.8195 22.5596 43.8195 19.5394V19.5349ZM55.7364 12.3961C54.2352 12.3961 53.0211 13.0645 52.0874 14.4014C51.1491 15.7404 50.6812 17.4914 50.6812 19.6497C50.6812 21.099 50.9999 22.1996 51.6352 22.9557C52.2728 23.7142 53.1975 24.0923 54.4161 24.0923C55.924 24.0923 57.1449 23.3991 58.0764 22.006C59.0056 20.6197 59.4713 18.7697 59.4713 16.4674C59.4713 15.2003 59.1389 14.2056 58.472 13.4831C57.8073 12.7607 56.8962 12.3961 55.7386 12.3961H55.7364Z" fill="#173569"/>
|
||||
<path d="M70.0407 28.805L68.7769 7.77119H75.0077V18.8102C75.0077 19.1883 74.9942 19.5754 74.9671 19.967C74.9354 20.3563 74.8924 20.7457 74.8314 21.1328C74.9218 20.6219 75.01 20.1763 75.105 19.8072C75.1977 19.4381 75.2858 19.1343 75.374 18.907L79.3712 7.76894H84.7678L84.9125 18.6797C84.9125 18.9902 84.9057 19.3526 84.8831 19.7577C84.8627 20.1605 84.8356 20.5927 84.7949 21.0495C84.874 20.6354 84.9532 20.2528 85.0391 19.8905C85.1205 19.5304 85.2132 19.1951 85.3104 18.8912L89.0001 7.76894H95.5113L87.3813 28.8027H80.9131L80.488 18.2228V17.919C80.488 17.7029 80.4993 17.4486 80.5242 17.156C80.5468 16.8657 80.5875 16.5124 80.6372 16.0915C80.5378 16.5124 80.4428 16.895 80.3569 17.2393C80.2687 17.5859 80.1873 17.874 80.1195 18.1035L76.4773 28.8005H70.0384L70.0407 28.805Z" fill="#173569"/>
|
||||
<path d="M94.4148 28.805L97.6319 7.77119H107.654C110.449 7.77119 112.492 8.22356 113.783 9.13504C115.079 10.042 115.725 11.4711 115.725 13.4246C115.725 14.8245 115.375 16.0308 114.672 17.0368C113.973 18.0473 112.945 18.8305 111.595 19.3909C112.556 19.7532 113.241 20.2168 113.652 20.7862C114.066 21.3511 114.269 22.105 114.269 23.048C114.269 23.2461 114.265 23.4576 114.249 23.6827C114.236 23.9077 114.211 24.1418 114.181 24.3894L113.946 26.5184C113.917 26.7142 113.899 26.8627 113.894 26.9527C113.89 27.045 113.89 27.1305 113.89 27.2206C113.89 27.4951 113.942 27.7134 114.05 27.8822C114.156 28.051 114.324 28.1748 114.55 28.2626V28.805H107.245C107.207 28.6722 107.175 28.5281 107.164 28.3683C107.148 28.2108 107.141 28.0443 107.141 27.8642C107.141 27.7404 107.148 27.5829 107.164 27.3916C107.177 27.2003 107.202 26.973 107.231 26.7097L107.541 24.5942C107.559 24.4726 107.575 24.3421 107.582 24.2093C107.593 24.0765 107.602 23.8965 107.602 23.6669C107.602 22.7712 107.338 22.1433 106.813 21.7809C106.291 21.4209 105.366 21.2386 104.044 21.2386H102.264L101.089 28.8095H94.4193L94.4148 28.805ZM102.479 16.7509H105.771C106.811 16.7509 107.575 16.5799 108.066 16.2311C108.554 15.8822 108.8 15.3376 108.8 14.5972C108.8 13.9557 108.586 13.4966 108.154 13.2108C107.724 12.925 107.017 12.7832 106.035 12.7832H103.11L102.479 16.7509Z" fill="#173569"/>
|
||||
<path d="M115.092 28.805L125.691 7.77119H132.612L136.948 28.805H130.423L130.089 26.2911H123.191L122.103 28.805H115.092ZM124.911 22.0488H129.365L128.221 14.2663L124.911 22.0488Z" fill="#173569"/>
|
||||
<path d="M0.253204 21.7314C0.253204 21.7314 0.273552 21.7337 0.282595 21.7337C0.363985 21.7337 0.443115 21.7157 0.522244 21.7089C0.522244 21.7089 0.522244 21.7067 0.517722 21.7067C0.43181 21.7179 0.341377 21.7314 0.253204 21.7314Z" fill="white"/>
|
||||
<path d="M31.0707 9.16879L23.6099 1.73743C21.2835 -0.578395 17.5192 -0.578395 15.1951 1.73743L14.4083 2.52288C15.0526 3.33533 15.4505 4.34584 15.4912 5.45311C21.8826 5.50038 27.5279 6.95199 31.0707 9.17104V9.16879Z" fill="url(#paint0_linear_8_706)"/>
|
||||
<path d="M22.0228 19.3481H22.0725C22.839 19.3481 23.5376 19.6429 24.0621 20.12C26.0494 19.1658 27.5302 17.9842 28.2921 16.6654H28.3396C28.7171 16.0105 28.9274 15.3218 28.9274 14.6084C28.9274 10.7914 23.1035 7.6024 15.3466 6.84846C14.804 9.03601 12.8212 10.6609 10.4541 10.6609C10.2258 10.6609 10.0019 10.6429 9.78038 10.6137C9.48647 11.7209 9.30786 12.8845 9.30786 14.0885C9.30786 17.093 10.7028 20.0458 13.2756 22.5056C15.3511 22.4224 17.3157 22.168 19.1108 21.7719C19.3618 20.3946 20.5691 19.3503 22.0228 19.3503V19.3481Z" fill="url(#paint1_linear_8_706)"/>
|
||||
<path d="M0.259984 17.9662C0.259984 17.9662 0.273549 17.964 0.282592 17.964C1.32936 17.964 2.17265 18.8102 2.17265 19.8477C2.17265 20.2933 2.02118 20.7007 1.76118 21.0203C3.4975 21.6099 5.48251 22.0465 7.62579 22.2963C7.56474 22.1725 7.50596 22.0465 7.4517 21.9182C7.50822 22.0398 7.57153 22.1703 7.64161 22.2963C7.65292 22.2986 7.66422 22.3008 7.68005 22.3008C6.88197 20.6759 6.41398 18.9115 6.41398 17.012C6.41398 14.5139 7.1171 12.18 8.14578 10.0983C7.85639 9.94974 7.58961 9.76969 7.3364 9.57164L1.75892 15.1305C0.942757 15.943 0.420503 16.931 0.174072 17.9752C0.196681 17.973 0.217028 17.9662 0.237376 17.9662C0.246419 17.9662 0.253202 17.9685 0.262245 17.9685L0.259984 17.9662Z" fill="url(#paint2_linear_8_706)"/>
|
||||
<path d="M8.13448 23.165C8.13448 23.165 8.12318 23.165 8.11188 23.1605C8.70648 24.1598 9.52716 25.3031 10.6689 26.5476C9.66733 25.5011 8.78334 24.3736 8.08475 23.165C5.62948 22.7329 3.4116 22.0758 1.53737 21.2498C1.25928 21.4996 0.906592 21.6594 0.519989 21.7089C0.807115 22.3638 1.21633 22.9782 1.75441 23.5139L15.1928 36.9047C17.517 39.2206 21.2812 39.2183 23.6076 36.9047L25.093 35.4261C19.8705 33.3511 11.6727 29.2843 8.13222 23.1628L8.13448 23.165Z" fill="url(#paint3_linear_8_706)"/>
|
||||
<path d="M25.0229 22.5484C24.8941 24.063 23.6235 25.2558 22.0725 25.2558H22.0228C20.8381 25.2558 19.8185 24.5626 19.3437 23.5589C18.0008 23.6894 16.6104 23.7637 15.1793 23.7637H15.1318C15.0052 23.7637 14.8763 23.7637 14.7497 23.7614C18.6542 26.7299 24.5165 28.7059 31.8507 28.7014L37.0528 23.5161C39.3792 21.2003 39.3792 17.4464 37.0528 15.1305L34.4122 12.4996C34.7558 13.1748 34.9435 13.8815 34.9435 14.6084C34.9435 18.0045 30.9486 20.9707 25.0252 22.5506L25.0229 22.5484Z" fill="url(#paint4_linear_8_706)"/>
|
||||
<path d="M1.50798 21.2386C1.23894 21.4839 0.89529 21.6482 0.517731 21.7067C0.519992 21.7067 0.519992 21.7089 0.522252 21.7089C0.908855 21.6594 1.26155 21.4996 1.53963 21.2498C1.53059 21.2476 1.51928 21.2453 1.51024 21.2386H1.50798Z" fill="white"/>
|
||||
<path d="M2.17265 19.8477C2.17265 18.8102 1.32935 17.964 0.282588 17.964C0.273544 17.964 0.266762 17.9662 0.259979 17.9662C1.29318 17.9797 2.12517 18.8147 2.12517 19.8477C2.12517 20.2933 1.97143 20.7007 1.7137 21.0203C3.46358 21.6122 5.46442 22.051 7.62578 22.3008C7.62578 22.3008 7.62578 22.3008 7.62578 22.2963C5.48251 22.0465 3.4975 21.6099 1.76117 21.0203C2.02117 20.7007 2.17265 20.2933 2.17265 19.8477Z" fill="white"/>
|
||||
<path d="M15.489 5.45086C15.4483 4.34359 15.0504 3.33308 14.406 2.52063L7.33413 9.56939C7.58509 9.76744 7.85413 9.94749 8.14351 10.096C7.11483 12.1778 6.41171 14.5116 6.41171 17.0098C6.41171 18.9115 6.87744 20.6759 7.67778 22.2986C7.66195 22.2986 7.65065 22.2986 7.63935 22.2941C7.77726 22.5686 7.94004 22.859 8.11412 23.1583C8.12543 23.1605 8.12995 23.1605 8.13673 23.1628C11.6772 29.2843 19.875 33.3511 25.0975 35.4261L31.8529 28.6992C24.5187 28.7037 18.6564 26.7277 14.7519 23.7592H14.7022C13.5333 22.94 13.2304 22.5056 13.2304 22.5056C13.2462 22.5056 13.262 22.5034 13.2756 22.5034C10.7028 20.0435 9.30784 17.0908 9.30784 14.0863C9.30784 12.88 9.48419 11.7164 9.78036 10.6114C10.0019 10.6429 10.2257 10.6587 10.4541 10.6587C12.8212 10.6587 14.8039 9.03376 15.3465 6.84621C23.1035 7.60015 28.9274 10.7892 28.9274 14.6062C28.9274 15.3196 28.7194 16.0083 28.3396 16.6632H34.3873C33.1393 19.1748 29.6621 21.2971 24.9732 22.5484C24.8488 24.054 23.5918 25.2401 22.0477 25.2558H22.0703C23.6212 25.2558 24.894 24.0653 25.0207 22.5484C30.944 20.9685 34.9389 18.0023 34.9389 14.6062C34.9389 13.8792 34.7513 13.1725 34.4076 12.4974L31.0661 9.16879C27.5234 6.94974 21.8781 5.49812 15.4867 5.45086H15.489Z" fill="white"/>
|
||||
<path d="M22.0454 19.3481C22.8118 19.3571 23.5082 19.6519 24.0304 20.1335C24.0417 20.1268 24.0508 20.1223 24.0621 20.12C23.5376 19.6429 22.839 19.3481 22.0725 19.3481H22.0454Z" fill="white"/>
|
||||
<path d="M15.1476 23.7637H15.1792C16.6103 23.7637 18.0008 23.6894 19.3437 23.5589C19.3437 23.5589 19.3414 23.5589 19.3414 23.5544C17.9917 23.6894 16.5855 23.7637 15.1476 23.7637Z" fill="white"/>
|
||||
<path d="M24.0621 20.12C24.0621 20.12 24.0734 20.129 24.0802 20.1335C26.0833 19.177 27.5732 17.991 28.3396 16.6632H28.2921C27.5302 17.982 26.0493 19.1658 24.0621 20.1178V20.12Z" fill="url(#paint5_linear_8_706)"/>
|
||||
<path d="M24.0621 20.12C24.0621 20.12 24.0734 20.129 24.0802 20.1335C26.0833 19.177 27.5732 17.991 28.3396 16.6632H28.2921C27.5302 17.982 26.0493 19.1658 24.0621 20.1178V20.12Z" fill="url(#paint6_linear_8_706)"/>
|
||||
<path d="M19.156 21.7697C19.4093 20.4014 20.6007 19.3616 22.0454 19.3481H22.0205C20.5691 19.3481 19.3595 20.3923 19.1086 21.7697C17.3112 22.1658 15.3488 22.4201 13.2733 22.5034V22.5056C15.3646 22.4269 17.3451 22.1703 19.1538 21.7697H19.156Z" fill="url(#paint7_linear_8_706)"/>
|
||||
<path d="M19.156 21.7697C19.4093 20.4014 20.6007 19.3616 22.0454 19.3481H22.0205C20.5691 19.3481 19.3595 20.3923 19.1086 21.7697C17.3112 22.1658 15.3488 22.4201 13.2733 22.5034V22.5056C15.3646 22.4269 17.3451 22.1703 19.1538 21.7697H19.156Z" fill="url(#paint8_linear_8_706)"/>
|
||||
<path d="M19.3889 23.5544C19.3731 23.5566 19.3595 23.5566 19.3437 23.5589C19.8185 24.5626 20.8381 25.2558 22.0228 25.2558H22.0499C20.8743 25.2491 19.8592 24.5536 19.3889 23.5544Z" fill="url(#paint9_linear_8_706)"/>
|
||||
<path d="M19.3889 23.5544C19.3731 23.5566 19.3595 23.5566 19.3437 23.5589C19.8185 24.5626 20.8381 25.2558 22.0228 25.2558H22.0499C20.8743 25.2491 19.8592 24.5536 19.3889 23.5544Z" fill="url(#paint10_linear_8_706)"/>
|
||||
<path d="M15.1476 23.7637C15.0165 23.7637 14.8831 23.7637 14.7497 23.7614C14.8763 23.7637 15.0052 23.7637 15.1318 23.7637H15.1476Z" fill="url(#paint11_linear_8_706)"/>
|
||||
<path d="M15.1476 23.7637C15.0165 23.7637 14.8831 23.7637 14.7497 23.7614C14.8763 23.7637 15.0052 23.7637 15.1318 23.7637H15.1476Z" fill="url(#paint12_linear_8_706)"/>
|
||||
<path d="M15.1476 23.7637C16.5855 23.7637 17.9917 23.6894 19.3414 23.5544C19.3414 23.5566 19.3414 23.5566 19.3437 23.5589C19.3595 23.5589 19.3731 23.5589 19.3889 23.5544C19.8592 24.5514 20.8743 25.2468 22.0499 25.2558C23.5918 25.2401 24.8511 24.054 24.9754 22.5484C29.6644 21.2971 33.1416 19.177 34.3896 16.6632H28.3418C27.5754 17.9887 26.0855 19.177 24.0824 20.1335C24.0756 20.1268 24.0711 20.1223 24.0643 20.12C24.0553 20.1223 24.0462 20.129 24.0327 20.1335C23.5082 19.6519 22.8141 19.3571 22.0477 19.3481C20.603 19.3616 19.4115 20.4014 19.1583 21.7697C17.3519 22.1703 15.3714 22.4269 13.2779 22.5056V22.5034C13.2643 22.5034 13.2485 22.5056 13.2327 22.5056C13.2327 22.5056 13.5356 22.94 14.7045 23.7592H14.7542C14.8876 23.7614 15.021 23.7614 15.1521 23.7614L15.1476 23.7637Z" fill="white"/>
|
||||
<path d="M15.1476 23.7637C16.5855 23.7637 17.9917 23.6894 19.3414 23.5544C19.3414 23.5566 19.3414 23.5566 19.3437 23.5589C19.3595 23.5589 19.3731 23.5589 19.3889 23.5544C19.8592 24.5514 20.8743 25.2468 22.0499 25.2558C23.5918 25.2401 24.8511 24.054 24.9754 22.5484C29.6644 21.2971 33.1416 19.177 34.3896 16.6632H28.3418C27.5754 17.9887 26.0855 19.177 24.0824 20.1335C24.0756 20.1268 24.0711 20.1223 24.0643 20.12C24.0553 20.1223 24.0462 20.129 24.0327 20.1335C23.5082 19.6519 22.8141 19.3571 22.0477 19.3481C20.603 19.3616 19.4115 20.4014 19.1583 21.7697C17.3519 22.1703 15.3714 22.4269 13.2779 22.5056V22.5034C13.2643 22.5034 13.2485 22.5056 13.2327 22.5056C13.2327 22.5056 13.5356 22.94 14.7045 23.7592H14.7542C14.8876 23.7614 15.021 23.7614 15.1521 23.7614L15.1476 23.7637Z" fill="url(#paint13_linear_8_706)"/>
|
||||
<path d="M7.62352 22.2963H7.63708C7.567 22.1725 7.50369 22.042 7.44717 21.9182C7.50143 22.0465 7.56022 22.1703 7.62126 22.2963H7.62352Z" fill="url(#paint14_linear_8_706)"/>
|
||||
<path d="M7.62352 22.2963H7.63708C7.567 22.1725 7.50369 22.042 7.44717 21.9182C7.50143 22.0465 7.56022 22.1703 7.62126 22.2963H7.62352Z" fill="url(#paint15_linear_8_706)"/>
|
||||
<path d="M0.235117 17.964C0.21477 17.964 0.194422 17.9707 0.171814 17.973C0.171814 17.973 0.171814 17.9745 0.171814 17.9775C0.203466 17.9775 0.235117 17.9662 0.259987 17.9662C0.250943 17.9662 0.244161 17.964 0.235117 17.964Z" fill="url(#paint16_linear_8_706)"/>
|
||||
<path d="M0.235117 17.964C0.21477 17.964 0.194422 17.9707 0.171814 17.973C0.171814 17.973 0.171814 17.9745 0.171814 17.9775C0.203466 17.9775 0.235117 17.9662 0.259987 17.9662C0.250943 17.9662 0.244161 17.964 0.235117 17.964Z" fill="url(#paint17_linear_8_706)"/>
|
||||
<path d="M1.53735 21.2498C3.41159 22.0758 5.62947 22.7329 8.08473 23.165C8.78333 24.3713 9.66732 25.5011 10.6689 26.5476C9.52715 25.3053 8.70873 24.162 8.11187 23.1605C5.65208 22.7239 3.42967 22.0645 1.5577 21.2386C1.55092 21.2453 1.54188 21.2476 1.53735 21.2498Z" fill="url(#paint18_linear_8_706)"/>
|
||||
<path d="M1.53735 21.2498C3.41159 22.0758 5.62947 22.7329 8.08473 23.165C8.78333 24.3713 9.66732 25.5011 10.6689 26.5476C9.52715 25.3053 8.70873 24.162 8.11187 23.1605C5.65208 22.7239 3.42967 22.0645 1.5577 21.2386C1.55092 21.2453 1.54188 21.2476 1.53735 21.2498Z" fill="url(#paint19_linear_8_706)"/>
|
||||
<path d="M0.51772 21.7067C0.89528 21.6459 1.23893 21.4816 1.50797 21.2386C1.51927 21.2453 1.52831 21.2476 1.53736 21.2498C1.54414 21.2476 1.55092 21.2453 1.5577 21.2386C3.42968 22.0645 5.65208 22.7262 8.11187 23.1605C7.93552 22.8612 7.775 22.5709 7.63709 22.2963H7.62353V22.3008C5.46217 22.0533 3.45907 21.6122 1.71144 21.0203C1.96918 20.7007 2.12291 20.2933 2.12291 19.8477C2.12291 18.8147 1.29093 17.982 0.257724 17.9662C0.230594 17.9662 0.198942 17.9752 0.169551 17.9775C-0.117575 19.2153 -0.00453295 20.5229 0.515459 21.7067H0.51772Z" fill="white"/>
|
||||
<path d="M0.51772 21.7067C0.89528 21.6459 1.23893 21.4816 1.50797 21.2386C1.51927 21.2453 1.52831 21.2476 1.53736 21.2498C1.54414 21.2476 1.55092 21.2453 1.5577 21.2386C3.42968 22.0645 5.65208 22.7262 8.11187 23.1605C7.93552 22.8612 7.775 22.5709 7.63709 22.2963H7.62353V22.3008C5.46217 22.0533 3.45907 21.6122 1.71144 21.0203C1.96918 20.7007 2.12291 20.2933 2.12291 19.8477C2.12291 18.8147 1.29093 17.982 0.257724 17.9662C0.230594 17.9662 0.198942 17.9752 0.169551 17.9775C-0.117575 19.2153 -0.00453295 20.5229 0.515459 21.7067H0.51772Z" fill="url(#paint20_linear_8_706)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0888 9.16879L23.6257 1.73743C21.2993 -0.578395 17.535 -0.578395 15.2109 1.73743L14.4241 2.52288L7.34998 9.57164L1.77249 15.1305C0.956333 15.943 0.434079 16.931 0.187648 17.9752C0.187648 17.9752 0.187648 17.9767 0.187648 17.9797C-0.0994778 19.2176 0.0135639 20.5251 0.533556 21.7089C0.447644 21.7202 0.357211 21.7337 0.269038 21.7337C0.280343 21.7337 0.289386 21.7359 0.298429 21.7359C0.379819 21.7359 0.458949 21.7179 0.538078 21.7112C0.825204 22.3661 1.23442 22.9805 1.77249 23.5161L15.2109 36.907C17.535 39.2228 21.3016 39.2206 23.6257 36.907L25.1111 35.4284L31.8665 28.7014L37.0687 23.5161C39.3951 21.2003 39.3951 17.4464 37.0687 15.1305V15.1283Z" fill="url(#paint21_linear_8_706)"/>
|
||||
<path d="M37.0347 15.1283L34.3918 12.4974L31.0526 9.16879L23.5941 1.73743C21.2699 -0.578395 17.5034 -0.578395 15.1792 1.73743L14.3925 2.52288L7.32058 9.57164L1.74084 15.1305C0.924674 15.943 0.402421 16.931 0.15599 17.9752C0.15599 17.9752 0.15599 17.9767 0.15599 17.9797C-0.131136 19.2176 -0.0180945 20.5251 0.504159 21.7089C0.418247 21.7202 0.327813 21.7337 0.239641 21.7337C0.250945 21.7337 0.259988 21.7359 0.269032 21.7359C0.350422 21.7359 0.429551 21.7179 0.50868 21.7112C0.795806 22.3661 1.20502 22.9805 1.7431 23.5161L15.1815 36.907C17.5056 39.2228 21.2722 39.2206 23.5963 36.907L25.084 35.4284L31.8371 28.7014L37.0393 23.5161C39.3657 21.2003 39.3657 17.4464 37.0393 15.1305L37.0347 15.1283Z" fill="url(#paint22_linear_8_706)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0865 9.16879L23.6257 1.73743C21.2993 -0.578395 17.535 -0.578395 15.2109 1.73743L14.4241 2.52288L7.34997 9.57164L1.77249 15.1305C0.95633 15.943 0.434077 16.931 0.189907 17.9752C0.189907 17.9752 0.189907 17.9767 0.189907 17.9797C-0.0972195 19.2176 0.0158222 20.5251 0.535814 21.7089C0.449903 21.7202 0.359469 21.7337 0.271297 21.7337C0.282601 21.7337 0.291644 21.7359 0.300688 21.7359C0.382078 21.7359 0.461207 21.7179 0.540336 21.7112C0.827462 22.3661 1.23667 22.9805 1.77475 23.5161L15.2132 36.907C17.5373 39.2228 21.3039 39.2206 23.628 36.907L25.1134 35.4284L31.8687 28.7014L37.0709 23.5161C39.3951 21.2003 39.3951 17.4464 37.0709 15.1305L37.0687 15.1283Z" fill="url(#paint23_linear_8_706)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0865 9.16879L23.6257 1.73743C21.2993 -0.578395 17.535 -0.578395 15.2109 1.73743L14.4241 2.52288L7.35223 9.57164L1.77249 15.1305C0.95633 15.943 0.434077 16.931 0.189907 17.9752C0.189907 17.9752 0.189907 17.9767 0.189907 17.9797C-0.0972195 19.2176 0.0158222 20.5251 0.535814 21.7089C0.449903 21.7202 0.359469 21.7337 0.271297 21.7337C0.282601 21.7337 0.291644 21.7359 0.300688 21.7359C0.382078 21.7359 0.461207 21.7179 0.540336 21.7112C0.827462 22.3661 1.23667 22.9805 1.77475 23.5161L15.2132 36.907C17.5373 39.2228 21.3039 39.2206 23.628 36.907L25.1134 35.4284L31.8687 28.7014L37.0709 23.5161C39.3951 21.2003 39.3951 17.4464 37.0709 15.1305L37.0687 15.1283Z" fill="url(#paint24_linear_8_706)"/>
|
||||
<path d="M48.2101 35.3969C48.0857 36.2116 47.8235 36.8462 47.421 37.3031C46.9847 37.7959 46.4308 38.0435 45.7638 38.0435C45.0969 38.0435 44.6131 37.7959 44.3101 37.3031C44.0298 36.8327 43.9461 36.1958 44.0592 35.3969C44.1134 35.0165 44.2039 34.6744 44.3305 34.3683C44.4571 34.0623 44.6198 33.7899 44.812 33.5514C45.0381 33.2993 45.2936 33.1035 45.583 32.964C45.8701 32.8245 46.1798 32.7547 46.5076 32.7547C46.8355 32.7547 47.1294 32.8222 47.3735 32.9595C47.6177 33.0968 47.8167 33.2948 47.9704 33.5559C48.0993 33.8035 48.1852 34.078 48.2281 34.3818C48.2711 34.6857 48.2621 35.0233 48.2055 35.3946L48.2101 35.3969ZM47.7488 35.3969C47.7895 35.1088 47.7941 34.8365 47.7624 34.5799C47.7308 34.3233 47.6675 34.0938 47.5748 33.8867C47.4595 33.6617 47.3057 33.4906 47.1181 33.3691C46.9304 33.2476 46.7089 33.1868 46.4511 33.1868C46.1934 33.1868 45.947 33.2476 45.7254 33.3691C45.5038 33.4906 45.3026 33.6639 45.124 33.8867C44.9725 34.0915 44.8437 34.3233 44.7419 34.5799C44.6379 34.8365 44.5656 35.1088 44.5249 35.3969C44.4842 35.6849 44.4797 35.9572 44.5113 36.2161C44.543 36.4749 44.604 36.7067 44.699 36.9115C44.8211 37.132 44.9748 37.3031 45.1647 37.4269C45.3546 37.5506 45.5762 37.6114 45.8294 37.6114C46.0826 37.6114 46.3268 37.5506 46.5483 37.4291C46.7699 37.3076 46.9711 37.1343 47.1497 36.9115C47.3012 36.7067 47.4278 36.4726 47.5341 36.2161C47.6381 35.9572 47.7104 35.6849 47.7511 35.3969H47.7488Z" fill="#A6B0BE"/>
|
||||
<path d="M51.2531 37.841C51.2441 37.904 51.2102 37.9377 51.1514 37.9377H50.8982C50.8394 37.9377 50.8145 37.9062 50.8236 37.841L51.1288 35.6804C51.1876 35.2596 51.1604 34.9625 51.0451 34.7847C50.9298 34.6092 50.7467 34.5214 50.4935 34.5214C50.1521 34.5214 49.8763 34.6249 49.6683 34.8297C49.4603 35.0345 49.3292 35.3226 49.2772 35.6939L48.9742 37.841C48.9652 37.904 48.9313 37.9377 48.8725 37.9377H48.6193C48.5605 37.9377 48.5356 37.9062 48.5447 37.841L48.9313 35.0975C48.9584 34.9017 48.9787 34.7487 48.9923 34.6384C49.0059 34.5281 49.0149 34.4246 49.0217 34.3233C49.0217 34.2918 49.033 34.2671 49.0533 34.2513C49.0737 34.2356 49.0986 34.2266 49.1234 34.2266H49.3518C49.4106 34.2266 49.4354 34.2581 49.4264 34.3233L49.3721 34.7014C49.5191 34.5056 49.6819 34.3616 49.8605 34.2693C50.0391 34.177 50.2765 34.132 50.5681 34.132C50.9683 34.132 51.2531 34.2581 51.4204 34.5101C51.5877 34.7622 51.6397 35.1155 51.5742 35.5746L51.2531 37.8455V37.841Z" fill="#A6B0BE"/>
|
||||
<path d="M52.5192 37.841C52.5102 37.904 52.4762 37.9377 52.4175 37.9377H52.1394C52.0806 37.9377 52.0557 37.9062 52.0648 37.841L52.8086 32.5791C52.8176 32.5161 52.8515 32.4824 52.9103 32.4824H53.1884C53.2472 32.4824 53.2721 32.5139 53.263 32.5791L52.5192 37.841Z" fill="#A6B0BE"/>
|
||||
<path d="M53.688 38.1425C53.679 38.2056 53.6451 38.2393 53.5863 38.2393H53.3082C53.2494 38.2393 53.2246 38.2078 53.2336 38.1425L53.731 34.6227C53.74 34.5596 53.774 34.5259 53.8327 34.5259H54.1108C54.1696 34.5259 54.1945 34.5574 54.1854 34.6227L53.688 38.1425ZM53.8418 33.2296C53.8553 33.1373 53.896 33.0585 53.9639 32.9933C54.0317 32.928 54.1086 32.8942 54.1922 32.8942C54.2759 32.8942 54.3437 32.928 54.3957 32.9933C54.4477 33.0585 54.468 33.1395 54.4545 33.2296C54.4409 33.3218 54.4002 33.3984 54.3301 33.4636C54.26 33.5289 54.1832 33.5604 54.0973 33.5604C54.0113 33.5604 53.9458 33.5289 53.896 33.4636C53.8463 33.4006 53.8282 33.3218 53.8395 33.2296H53.8418Z" fill="#A6B0BE"/>
|
||||
<path d="M57.2059 37.841C57.1969 37.904 57.163 37.9377 57.1042 37.9377H56.851C56.7922 37.9377 56.7673 37.9062 56.7764 37.841L57.0816 35.6804C57.1404 35.2596 57.1132 34.9625 56.9979 34.7847C56.8826 34.6092 56.6995 34.5214 56.4463 34.5214C56.1049 34.5214 55.8291 34.6249 55.6211 34.8297C55.4131 35.0345 55.282 35.3226 55.23 35.6939L54.927 37.841C54.918 37.904 54.884 37.9377 54.8253 37.9377H54.5721C54.5133 37.9377 54.4884 37.9062 54.4974 37.841L54.884 35.0975C54.9112 34.9017 54.9315 34.7487 54.9451 34.6384C54.9587 34.5281 54.9677 34.4246 54.9745 34.3233C54.9745 34.2918 54.9858 34.2671 55.0061 34.2513C55.0265 34.2356 55.0513 34.2266 55.0762 34.2266H55.3046C55.3633 34.2266 55.3882 34.2581 55.3792 34.3233L55.3249 34.7014C55.4719 34.5056 55.6346 34.3616 55.8132 34.2693C55.9919 34.177 56.2292 34.132 56.5209 34.132C56.9211 34.132 57.2059 34.2581 57.3732 34.5101C57.5405 34.7622 57.5925 35.1155 57.527 35.5746L57.2059 37.8455V37.841Z" fill="#A6B0BE"/>
|
||||
<path d="M58.463 36.2138C58.4268 36.4434 58.4223 36.6459 58.4494 36.8215C58.4765 36.997 58.533 37.1455 58.619 37.2648C58.7026 37.3841 58.8111 37.4741 58.9445 37.5394C59.0756 37.6024 59.2294 37.6362 59.4035 37.6362C59.5775 37.6362 59.7335 37.6182 59.885 37.5844C60.0365 37.5506 60.1835 37.4944 60.3214 37.4156C60.3801 37.3886 60.405 37.4044 60.396 37.4629L60.353 37.7712C60.3462 37.8117 60.3191 37.8455 60.2694 37.868C60.1224 37.9265 59.9687 37.9715 59.8127 38.0008C59.6567 38.03 59.4894 38.0458 59.313 38.0458C58.793 38.0458 58.4245 37.8815 58.2052 37.5551C57.9859 37.2288 57.9226 36.7359 58.0153 36.0765C58.0967 35.4959 58.2957 35.0278 58.6122 34.6699C58.9423 34.3098 59.3198 34.1275 59.7471 34.1275C59.9845 34.1275 60.1812 34.1725 60.3417 34.2648C60.5022 34.3571 60.6311 34.4944 60.7261 34.6767C60.8956 35.0008 60.9408 35.4351 60.864 35.9797C60.8549 36.0383 60.8481 36.0855 60.8414 36.117C60.8346 36.1485 60.8233 36.171 60.8097 36.1868C60.7961 36.2003 60.7713 36.2093 60.7396 36.2116C60.708 36.2138 60.6627 36.2161 60.604 36.2161H58.463V36.2138ZM60.4163 35.8222C60.4435 35.6354 60.4502 35.4689 60.4367 35.3203C60.4231 35.174 60.3892 35.0413 60.3349 34.922C60.2174 34.6519 60.0094 34.5169 59.7155 34.5169C59.4216 34.5169 59.1457 34.6542 58.9174 34.9287C58.8247 35.0525 58.741 35.1943 58.6664 35.3541C58.5941 35.5139 58.5443 35.6692 58.5172 35.82H60.4163V35.8222Z" fill="#A6B0BE"/>
|
||||
<path d="M67.0519 37.868C67.0338 37.913 67.0021 37.9355 66.9592 37.9355H66.5341C66.4866 37.9355 66.464 37.913 66.4618 37.868L65.9079 33.4096C65.6004 34.1545 65.2952 34.8972 64.9922 35.6354C64.6893 36.3736 64.3841 37.1185 64.0743 37.868C64.0562 37.913 64.0246 37.9355 63.9816 37.9355H63.5453C63.4978 37.9355 63.4752 37.913 63.473 37.868L62.867 32.955C62.8625 32.9325 62.8671 32.91 62.8829 32.8897C62.8987 32.8695 62.919 32.8582 62.9439 32.8582H63.2423C63.3011 32.8582 63.335 32.8897 63.3418 32.955L63.8528 37.4134C64.158 36.6639 64.4587 35.9257 64.7594 35.2011C65.0601 34.4764 65.363 33.7382 65.6682 32.9887C65.684 32.9437 65.7067 32.91 65.7383 32.8897C65.77 32.8695 65.8061 32.8582 65.8446 32.8582H66.1747C66.247 32.8582 66.2877 32.901 66.2945 32.9887L66.8325 37.3863C67.1332 36.6279 67.4294 35.8875 67.7211 35.1695C68.0127 34.4516 68.3111 33.7134 68.6164 32.9527C68.6277 32.9257 68.6457 32.9032 68.6706 32.8852C68.6932 32.8672 68.7181 32.8582 68.7452 32.8582H69.012C69.0369 32.8582 69.055 32.8695 69.064 32.8897C69.073 32.91 69.073 32.9325 69.0617 32.955L67.0519 37.868Z" fill="#A6B0BE"/>
|
||||
<path d="M72.0325 36.0833C71.994 36.3533 71.924 36.6032 71.82 36.835C71.716 37.0668 71.5916 37.2693 71.4492 37.4426C71.2751 37.6339 71.0761 37.7824 70.8568 37.8882C70.6375 37.994 70.3956 38.0458 70.1356 38.0458C69.8756 38.0458 69.6473 37.994 69.4551 37.8882C69.2629 37.7824 69.107 37.6339 68.9849 37.4426C68.8922 37.2693 68.8266 37.0668 68.7882 36.835C68.752 36.6032 68.752 36.3533 68.7882 36.0833C68.8673 35.5296 69.0595 35.0773 69.367 34.7239C69.7196 34.3256 70.1582 34.1275 70.6873 34.1275C70.9541 34.1275 71.1801 34.177 71.37 34.2761C71.56 34.3751 71.7137 34.5236 71.8313 34.7262C72.0415 35.0885 72.1093 35.5409 72.0325 36.0855V36.0833ZM71.5645 36.0833C71.5939 35.8672 71.5961 35.6669 71.5713 35.4801C71.5441 35.2933 71.4967 35.1268 71.4243 34.9782C71.2457 34.6857 70.9812 34.5394 70.6308 34.5394C70.4544 34.5394 70.2894 34.5776 70.1356 34.6519C69.9842 34.7284 69.8417 34.8365 69.7129 34.9782C69.5953 35.1245 69.4958 35.2911 69.4167 35.4801C69.3376 35.6669 69.2833 35.8695 69.2516 36.0833C69.22 36.3038 69.2177 36.5064 69.2449 36.6932C69.272 36.88 69.3217 37.0465 69.4009 37.186C69.5817 37.4831 69.8462 37.6317 70.1922 37.6317C70.3685 37.6317 70.5335 37.5934 70.6873 37.5146C70.8388 37.4359 70.9812 37.3278 71.1101 37.186C71.2231 37.0443 71.318 36.88 71.3972 36.6932C71.4763 36.5064 71.5306 36.3016 71.5622 36.0833H71.5645Z" fill="#A6B0BE"/>
|
||||
<path d="M74.3905 34.6429C74.3182 34.6159 74.2187 34.6024 74.0921 34.6024C73.7801 34.6024 73.5246 34.7689 73.3257 35.1043C73.1697 35.3653 73.0634 35.6984 73.0069 36.1058L72.7627 37.841C72.7537 37.904 72.7198 37.9377 72.661 37.9377H72.4145C72.3558 37.9377 72.3309 37.9062 72.3399 37.841L72.7333 35.0548C72.7559 34.8905 72.774 34.7554 72.7876 34.6542C72.7989 34.5506 72.8125 34.4404 72.826 34.3211C72.8351 34.2581 72.869 34.2243 72.9278 34.2243H73.1629C73.2217 34.2243 73.2465 34.2558 73.2375 34.3211L73.1425 34.994C73.4297 34.4179 73.7756 34.1298 74.1757 34.1298C74.273 34.1298 74.3679 34.1433 74.4606 34.1703C74.4855 34.1793 74.5058 34.1951 74.5216 34.2153C74.5375 34.2356 74.5443 34.2648 74.5375 34.3008L74.4968 34.5889C74.4923 34.6159 74.4787 34.6339 74.4583 34.6429C74.4357 34.6519 74.4154 34.6519 74.395 34.6429H74.3905Z" fill="#A6B0BE"/>
|
||||
<path d="M74.7681 37.841C74.759 37.904 74.7251 37.9377 74.6664 37.9377H74.3883C74.3295 37.9377 74.3046 37.9062 74.3137 37.841L75.0575 32.5791C75.0665 32.5161 75.1004 32.4824 75.1592 32.4824H75.4373C75.4961 32.4824 75.521 32.5139 75.5119 32.5791L74.7681 37.841Z" fill="#A6B0BE"/>
|
||||
<path d="M78.2701 37.841C78.2611 37.904 78.2272 37.9377 78.1684 37.9377H77.922C77.8632 37.9377 77.8383 37.9062 77.8473 37.841L77.9197 37.3256C77.6258 37.7915 77.2256 38.0255 76.7192 38.0255C76.267 38.0255 75.9415 37.8387 75.7402 37.4629C75.5571 37.1163 75.5051 36.6527 75.5865 36.0765C75.7674 34.7915 76.3281 34.1478 77.264 34.1478C77.5173 34.1478 77.7343 34.2018 77.9152 34.3121C78.096 34.4224 78.2181 34.5641 78.2837 34.7374L78.5889 32.5769C78.5979 32.5139 78.6319 32.4801 78.6906 32.4801H78.9371C78.9958 32.4801 79.0207 32.5116 79.0117 32.5769L78.2679 37.8387L78.2701 37.841ZM76.0568 36.0765C76.0274 36.2926 76.0138 36.4861 76.0206 36.6639C76.0274 36.8395 76.0545 36.9948 76.1042 37.1275C76.1743 37.2918 76.2693 37.4179 76.3891 37.5056C76.5089 37.5934 76.6627 37.6362 76.8481 37.6362C77.0176 37.6362 77.1736 37.5889 77.3138 37.4921C77.4562 37.3954 77.5806 37.2738 77.6891 37.1253C77.7976 36.9767 77.8835 36.8102 77.9536 36.6234C78.0214 36.4389 78.0689 36.2566 78.0938 36.0788C78.1254 35.8582 78.1322 35.6557 78.1141 35.4689C78.096 35.2821 78.0531 35.12 77.9875 34.9828C77.9197 34.8455 77.8293 34.7374 77.714 34.6609C77.5986 34.5821 77.4562 34.5439 77.2867 34.5439C76.9272 34.5439 76.631 34.7104 76.3982 35.0458C76.3122 35.1785 76.2399 35.3338 76.1834 35.5094C76.1268 35.6849 76.0839 35.8762 76.0545 36.0833L76.0568 36.0765Z" fill="#A6B0BE"/>
|
||||
<path d="M83.6419 37.841C83.6464 37.8635 83.6419 37.886 83.6328 37.9062C83.6215 37.9265 83.6034 37.9377 83.5786 37.9377H83.2485C83.1852 37.9377 83.1422 37.9062 83.1219 37.841C82.993 37.4111 82.8845 37.06 82.7963 36.7877C82.7082 36.5154 82.6403 36.2993 82.5906 36.1395C82.5296 35.9527 82.4821 35.8087 82.4482 35.7074C82.3487 35.7299 82.256 35.7434 82.1723 35.7479C82.0887 35.7524 81.9847 35.7569 81.8558 35.7614H81.3245L81.0306 37.841C81.0216 37.904 80.9877 37.9377 80.9289 37.9377H80.644C80.5852 37.9377 80.5604 37.9062 80.5694 37.841L81.2431 33.0653C81.2499 33.0158 81.2567 32.9752 81.2635 32.9482C81.2703 32.9212 81.2793 32.901 81.2951 32.8875C81.3087 32.874 81.329 32.865 81.3562 32.8627C81.381 32.8605 81.4172 32.8582 81.4647 32.8582H82.6607C82.9003 32.8582 83.1038 32.8942 83.2688 32.964C83.4339 33.036 83.565 33.135 83.6645 33.2633C83.7617 33.3916 83.8273 33.5469 83.8589 33.7292C83.8906 33.9115 83.8906 34.1163 83.8589 34.3391C83.8386 34.4764 83.7979 34.6069 83.7368 34.7307C83.6758 34.8545 83.5989 34.9692 83.5085 35.0728C83.4181 35.1785 83.3163 35.2731 83.2055 35.3586C83.0948 35.4441 82.9817 35.5139 82.8687 35.5679L83.6441 37.8387L83.6419 37.841ZM83.3819 34.3413C83.409 34.15 83.4113 33.9857 83.3909 33.8507C83.3706 33.7157 83.3186 33.6054 83.2349 33.5221C83.1513 33.4366 83.036 33.3758 82.8913 33.3398C82.7443 33.3038 82.5567 33.2858 82.3283 33.2858H81.675L81.3856 35.3293H82.0503C82.2243 35.3293 82.3849 35.3068 82.5386 35.2618C82.6923 35.2168 82.8257 35.1493 82.9433 35.0638C83.0608 34.976 83.1581 34.8725 83.2349 34.7509C83.3118 34.6294 83.3593 34.4944 83.3819 34.3436V34.3413Z" fill="#A6B0BE"/>
|
||||
<path d="M84.5733 36.2138C84.5372 36.4434 84.5326 36.6459 84.5598 36.8215C84.5869 36.997 84.6434 37.1455 84.7293 37.2648C84.813 37.3841 84.9215 37.4741 85.0549 37.5394C85.186 37.6024 85.3398 37.6362 85.5138 37.6362C85.6879 37.6362 85.8439 37.6182 85.9954 37.5844C86.1469 37.5506 86.2938 37.4944 86.4317 37.4156C86.4905 37.3886 86.5154 37.4044 86.5064 37.4629L86.4634 37.7712C86.4566 37.8117 86.4295 37.8455 86.3797 37.868C86.2328 37.9265 86.079 37.9715 85.9231 38.0008C85.7671 38.03 85.5998 38.0458 85.4234 38.0458C84.9034 38.0458 84.5349 37.8815 84.3156 37.5551C84.0963 37.2288 84.033 36.7359 84.1257 36.0765C84.2071 35.4959 84.406 35.0278 84.7225 34.6699C85.0526 34.3098 85.4302 34.1275 85.8575 34.1275C86.0926 34.1275 86.2916 34.1725 86.4521 34.2648C86.6126 34.3571 86.7415 34.4944 86.8364 34.6767C87.006 35.0008 87.0512 35.4351 86.9743 35.9797C86.9653 36.0383 86.9585 36.0855 86.9517 36.117C86.945 36.1485 86.9336 36.171 86.9201 36.1868C86.9065 36.2003 86.8816 36.2093 86.85 36.2116C86.8183 36.2138 86.7731 36.2161 86.7143 36.2161H84.5733V36.2138ZM86.529 35.8222C86.5561 35.6354 86.5629 35.4689 86.5493 35.3203C86.5357 35.174 86.5018 35.0413 86.4476 34.922C86.33 34.6519 86.122 34.5169 85.8258 34.5169C85.5297 34.5169 85.2561 34.6542 85.0278 34.9287C84.9351 35.0525 84.8514 35.1943 84.7768 35.3541C84.7045 35.5139 84.6547 35.6692 84.6276 35.82H86.5267L86.529 35.8222Z" fill="#A6B0BE"/>
|
||||
<path d="M89.4432 37.9625C89.3143 37.985 89.1877 38.0008 89.0701 38.0098C88.9526 38.0188 88.8079 38.0233 88.6428 38.0233C88.3806 38.0233 88.1545 37.9737 87.9646 37.8725C87.7747 37.7712 87.6209 37.6339 87.5034 37.4606C87.3858 37.2873 87.3067 37.0803 87.2637 36.844C87.2208 36.6054 87.2185 36.3511 87.2592 36.0765C87.2976 35.7975 87.3745 35.5409 87.4875 35.3046C87.6006 35.0683 87.7453 34.8657 87.9194 34.6947C88.0935 34.5236 88.2924 34.3886 88.514 34.2896C88.7378 34.1905 88.9797 34.1433 89.242 34.1433C89.3821 34.1433 89.5065 34.15 89.6195 34.1613C89.7326 34.1725 89.8501 34.195 89.9767 34.2266C90.0332 34.2446 90.0536 34.2873 90.04 34.3571L89.9903 34.5776C89.9745 34.6317 89.9383 34.6542 89.8863 34.6384C89.7823 34.6024 89.6806 34.5754 89.5811 34.5596C89.4816 34.5439 89.3708 34.5349 89.2487 34.5349C89.034 34.5349 88.8395 34.5731 88.6654 34.6474C88.4914 34.7217 88.3399 34.8297 88.211 34.967C88.0821 35.1043 87.9759 35.2686 87.8945 35.4576C87.8131 35.6467 87.7566 35.8537 87.7249 36.0788C87.6955 36.2836 87.6955 36.4816 87.7249 36.6684C87.7566 36.8552 87.8154 37.0218 87.9013 37.1658C87.9872 37.3098 88.1025 37.4246 88.2449 37.5079C88.3874 37.5934 88.5569 37.6339 88.7559 37.6339C88.9028 37.6339 89.0272 37.6272 89.1267 37.6137C89.2261 37.6002 89.3392 37.5754 89.4658 37.5371C89.5313 37.5191 89.563 37.5371 89.5607 37.5844L89.5449 37.8387C89.5404 37.9085 89.5042 37.949 89.4386 37.9625H89.4432Z" fill="#A6B0BE"/>
|
||||
<path d="M92.0725 34.6429C92.0002 34.6159 91.9007 34.6024 91.7741 34.6024C91.4621 34.6024 91.2066 34.7689 91.0077 35.1043C90.8517 35.3653 90.7454 35.6984 90.6889 36.1058L90.4447 37.841C90.4357 37.904 90.4018 37.9377 90.343 37.9377H90.0966C90.0378 37.9377 90.0129 37.9062 90.022 37.841L90.4153 35.0548C90.4379 34.8905 90.456 34.7554 90.4696 34.6542C90.4809 34.5506 90.4945 34.4404 90.508 34.3211C90.5171 34.2581 90.551 34.2243 90.6098 34.2243H90.8449C90.9037 34.2243 90.9285 34.2558 90.9195 34.3211L90.8246 34.994C91.1117 34.4179 91.4576 34.1298 91.8577 34.1298C91.955 34.1298 92.0499 34.1433 92.1426 34.1703C92.1675 34.1793 92.1878 34.1951 92.2037 34.2153C92.2195 34.2356 92.2263 34.2648 92.2195 34.3008L92.1788 34.5889C92.1743 34.6159 92.1607 34.6339 92.1404 34.6429C92.1177 34.6519 92.0974 34.6519 92.077 34.6429H92.0725Z" fill="#A6B0BE"/>
|
||||
<path d="M92.4388 36.2138C92.4026 36.4434 92.3981 36.6459 92.4252 36.8215C92.4523 36.997 92.5089 37.1455 92.5948 37.2648C92.6784 37.3841 92.7869 37.4741 92.9203 37.5394C93.0515 37.6024 93.2052 37.6362 93.3793 37.6362C93.5534 37.6362 93.7094 37.6182 93.8608 37.5844C94.0123 37.5506 94.1593 37.4944 94.2972 37.4156C94.356 37.3886 94.3808 37.4044 94.3718 37.4629L94.3288 37.7712C94.3221 37.8117 94.2949 37.8455 94.2452 37.868C94.0982 37.9265 93.9445 37.9715 93.7885 38.0008C93.6325 38.03 93.4652 38.0458 93.2889 38.0458C92.7689 38.0458 92.4003 37.8815 92.181 37.5551C91.9617 37.2288 91.8984 36.7359 91.9911 36.0765C92.0725 35.4959 92.2715 35.0278 92.588 34.6699C92.9181 34.3098 93.2956 34.1275 93.7229 34.1275C93.9581 34.1275 94.157 34.1725 94.3175 34.2648C94.4781 34.3571 94.6069 34.4944 94.7019 34.6767C94.8714 35.0008 94.9167 35.4351 94.8398 35.9797C94.8307 36.0383 94.824 36.0855 94.8172 36.117C94.8104 36.1485 94.7991 36.171 94.7855 36.1868C94.772 36.2003 94.7471 36.2093 94.7154 36.2116C94.6838 36.2138 94.6386 36.2161 94.5798 36.2161H92.4388V36.2138ZM94.3944 35.8222C94.4215 35.6354 94.4283 35.4689 94.4147 35.3203C94.4012 35.174 94.3673 35.0413 94.313 34.922C94.1955 34.6519 93.9875 34.5169 93.6913 34.5169C93.3951 34.5169 93.1216 34.6542 92.8932 34.9287C92.8005 35.0525 92.7169 35.1943 92.6423 35.3541C92.5699 35.5139 92.5202 35.6692 92.493 35.82H94.3921L94.3944 35.8222Z" fill="#A6B0BE"/>
|
||||
<path d="M95.7034 34.8005C95.6808 34.814 95.6605 34.8185 95.6424 34.8117C95.6243 34.805 95.6175 34.7892 95.6198 34.7667L95.656 34.5056C95.665 34.4426 95.7012 34.3931 95.7645 34.3616C95.925 34.2738 96.09 34.2131 96.2619 34.1793C96.4337 34.1455 96.6191 34.1275 96.818 34.1275C97.2408 34.1275 97.5325 34.2356 97.6975 34.4539C97.8603 34.6722 97.9123 34.9985 97.849 35.4374L97.6048 37.159C97.5845 37.2963 97.5709 37.4179 97.5596 37.5259C97.5483 37.6339 97.5392 37.7374 97.5347 37.8387C97.5257 37.9017 97.4918 37.9355 97.433 37.9355H97.2046C97.1459 37.9355 97.121 37.904 97.13 37.8387L97.2046 37.3098C97.0825 37.5439 96.9085 37.7239 96.6824 37.8522C96.4563 37.9805 96.2189 38.0435 95.9747 38.0435C95.5474 38.0435 95.2558 37.9085 95.0953 37.6384C95.041 37.5461 95.0048 37.4404 94.989 37.3188C94.9732 37.1973 94.9732 37.078 94.989 36.9587C95.0274 36.6797 95.1224 36.4389 95.2716 36.2386C95.4208 36.0383 95.6266 35.8875 95.8888 35.7862C96.2099 35.6669 96.6846 35.6084 97.3132 35.6084H97.3945L97.4239 35.4036C97.4646 35.1155 97.4352 34.895 97.3358 34.7442C97.2363 34.5934 97.0464 34.5169 96.7638 34.5169C96.5739 34.5169 96.3907 34.5394 96.2166 34.5821C96.0426 34.6249 95.8707 34.6969 95.7057 34.7982L95.7034 34.8005ZM97.3403 36.0023H97.2205C96.9853 35.9932 96.7728 36.0023 96.5852 36.0338C96.3975 36.063 96.2393 36.1035 96.1081 36.153C95.9205 36.2206 95.7735 36.3241 95.665 36.4591C95.5565 36.5941 95.4909 36.7562 95.4638 36.943C95.448 37.0578 95.4502 37.1635 95.4706 37.2626C95.4909 37.3616 95.5316 37.4381 95.5972 37.4921C95.708 37.6024 95.8685 37.6564 96.081 37.6564C96.228 37.6564 96.3704 37.6249 96.5038 37.5596C96.6372 37.4944 96.7592 37.4044 96.8678 37.2851C96.9785 37.1658 97.069 37.0195 97.1459 36.8417C97.2205 36.6662 97.2747 36.4636 97.3086 36.2341L97.3425 36L97.3403 36.0023Z" fill="#A6B0BE"/>
|
||||
<path d="M99.8453 37.9422C99.6576 38.0098 99.479 38.0458 99.305 38.0458C98.9636 38.0458 98.7533 37.9242 98.6787 37.6812C98.6312 37.5169 98.6358 37.2266 98.6945 36.8102L99.0043 34.6227H98.4097C98.3509 34.6227 98.326 34.5912 98.3351 34.5259L98.3644 34.3211C98.3735 34.2581 98.4074 34.2243 98.4662 34.2243H99.0608L99.1919 33.2971C99.201 33.2296 99.2349 33.1936 99.2891 33.1936H99.5559C99.6102 33.1936 99.6328 33.2273 99.6237 33.2971L99.4926 34.2243H100.196C100.255 34.2243 100.279 34.2558 100.27 34.3211L100.241 34.5259C100.232 34.5912 100.198 34.6227 100.139 34.6227H99.4361L99.0947 37.0443C99.0382 37.4516 99.1603 37.6542 99.4655 37.6542C99.583 37.6542 99.7209 37.6272 99.8769 37.5709C99.8996 37.5619 99.9199 37.5619 99.938 37.5709C99.9561 37.5799 99.9629 37.5979 99.9583 37.6249L99.947 37.8027C99.947 37.8657 99.9154 37.913 99.8521 37.94L99.8453 37.9422Z" fill="#A6B0BE"/>
|
||||
<path d="M100.652 38.1425C100.643 38.2056 100.609 38.2393 100.551 38.2393H100.273C100.214 38.2393 100.189 38.2078 100.198 38.1425L100.695 34.6227C100.704 34.5596 100.738 34.5259 100.797 34.5259H101.075C101.134 34.5259 101.159 34.5574 101.15 34.6227L100.652 38.1425ZM100.808 33.2296C100.822 33.1373 100.863 33.0585 100.93 32.9933C100.998 32.928 101.075 32.8942 101.159 32.8942C101.242 32.8942 101.31 32.928 101.362 32.9933C101.414 33.0585 101.435 33.1395 101.421 33.2296C101.408 33.3218 101.367 33.3984 101.297 33.4636C101.227 33.5289 101.15 33.5604 101.064 33.5604C100.978 33.5604 100.912 33.5289 100.863 33.4636C100.813 33.4006 100.795 33.3218 100.806 33.2296H100.808Z" fill="#A6B0BE"/>
|
||||
<path d="M104.173 37.841C104.163 37.904 104.13 37.9377 104.071 37.9377H103.818C103.759 37.9377 103.734 37.9062 103.743 37.841L104.048 35.6804C104.107 35.2596 104.08 34.9625 103.967 34.7847C103.851 34.6092 103.668 34.5214 103.415 34.5214C103.074 34.5214 102.798 34.6249 102.59 34.8297C102.382 35.0345 102.251 35.3226 102.199 35.6939L101.896 37.841C101.887 37.904 101.853 37.9377 101.794 37.9377H101.541C101.482 37.9377 101.457 37.9062 101.466 37.841L101.853 35.0975C101.88 34.9017 101.9 34.7487 101.914 34.6384C101.928 34.5281 101.937 34.4246 101.943 34.3233C101.943 34.2918 101.955 34.2671 101.975 34.2513C101.995 34.2356 102.02 34.2266 102.045 34.2266H102.273C102.332 34.2266 102.357 34.2581 102.348 34.3233L102.294 34.7014C102.441 34.5056 102.604 34.3616 102.782 34.2693C102.961 34.177 103.198 34.132 103.488 34.132C103.888 34.132 104.173 34.2581 104.34 34.5101C104.507 34.7622 104.559 35.1155 104.494 35.5746L104.173 37.8455V37.841Z" fill="#A6B0BE"/>
|
||||
<path d="M104.995 38.8357C104.946 38.8222 104.93 38.7884 104.946 38.7322L105.007 38.4306C105.016 38.3721 105.045 38.3563 105.095 38.3901C105.244 38.4689 105.391 38.5229 105.534 38.5589C105.676 38.5926 105.834 38.6107 106.008 38.6107C106.393 38.6107 106.698 38.4846 106.926 38.2303C107.155 37.976 107.313 37.6294 107.399 37.1905C107.272 37.3953 107.107 37.5529 106.901 37.6564C106.696 37.7622 106.479 37.814 106.246 37.814C106.038 37.814 105.852 37.7734 105.687 37.6902C105.522 37.6069 105.384 37.4921 105.274 37.3413C105.165 37.1905 105.086 37.0083 105.041 36.7922C104.995 36.5761 104.991 36.3398 105.027 36.0788C105.07 35.7727 105.136 35.4981 105.222 35.2596C105.307 35.021 105.42 34.8162 105.558 34.6519C105.696 34.4876 105.861 34.3616 106.056 34.2738C106.25 34.186 106.476 34.1433 106.734 34.1433C106.958 34.1433 107.15 34.1838 107.308 34.2626C107.469 34.3436 107.623 34.4854 107.77 34.6924L107.81 34.3211C107.819 34.2581 107.853 34.2243 107.912 34.2243H108.152C108.21 34.2243 108.235 34.2558 108.226 34.3211L107.84 37.0645C107.797 37.3616 107.724 37.6317 107.62 37.8702C107.516 38.111 107.385 38.3136 107.225 38.4801C107.064 38.6467 106.876 38.7749 106.659 38.865C106.445 38.955 106.205 38.9977 105.945 38.9977C105.755 38.9977 105.59 38.9842 105.45 38.9595C105.31 38.9347 105.158 38.892 104.993 38.8335L104.995 38.8357ZM107.566 36.063C107.636 35.5746 107.595 35.1966 107.446 34.931C107.297 34.6654 107.064 34.5326 106.748 34.5326C106.406 34.5326 106.13 34.6564 105.922 34.904C105.714 35.1515 105.572 35.5409 105.497 36.0765C105.47 36.2723 105.47 36.4546 105.497 36.6189C105.524 36.7832 105.574 36.925 105.647 37.0398C105.719 37.1568 105.812 37.2491 105.925 37.3143C106.038 37.3796 106.167 37.4134 106.309 37.4134C106.451 37.4134 106.601 37.3796 106.741 37.3143C106.881 37.2491 107.008 37.1545 107.118 37.033C107.231 36.9115 107.326 36.7697 107.403 36.6032C107.482 36.4389 107.534 36.2588 107.562 36.0608L107.566 36.063Z" fill="#A6B0BE"/>
|
||||
<path d="M113.824 37.841C113.835 37.904 113.813 37.9377 113.754 37.9377H113.451C113.426 37.9377 113.404 37.9332 113.385 37.9242C113.367 37.9152 113.354 37.8882 113.342 37.841L113.051 36.5784H110.67C110.559 36.7945 110.451 37.0038 110.347 37.2086C110.243 37.4156 110.137 37.6249 110.03 37.8387C110.008 37.8837 109.985 37.913 109.965 37.922C109.944 37.931 109.922 37.9355 109.897 37.9355H109.599C109.54 37.9355 109.524 37.904 109.556 37.8387L112.11 32.9257C112.14 32.8717 112.18 32.8425 112.237 32.8425H112.624C112.678 32.8425 112.712 32.8695 112.725 32.9257L113.824 37.8387V37.841ZM112.963 36.1395C112.852 35.6647 112.748 35.1943 112.653 34.7307C112.556 34.2671 112.452 33.7967 112.343 33.3218C112.099 33.7967 111.857 34.2671 111.622 34.7307C111.385 35.1943 111.145 35.6647 110.901 36.1395H112.965H112.963Z" fill="#A6B0BE"/>
|
||||
<path d="M116.991 37.841C116.982 37.904 116.949 37.9377 116.89 37.9377H116.643C116.585 37.9377 116.56 37.9062 116.569 37.841L116.641 37.3256C116.347 37.7915 115.947 38.0255 115.441 38.0255C114.988 38.0255 114.663 37.8387 114.462 37.4629C114.278 37.1163 114.226 36.6527 114.308 36.0765C114.489 34.7915 115.049 34.1478 115.985 34.1478C116.239 34.1478 116.456 34.2018 116.637 34.3121C116.817 34.4224 116.939 34.5641 117.003 34.7374L117.308 32.5769C117.317 32.5139 117.351 32.4801 117.41 32.4801H117.656C117.715 32.4801 117.74 32.5116 117.731 32.5769L116.987 37.8387L116.991 37.841ZM114.776 36.0765C114.746 36.2926 114.733 36.4861 114.74 36.6639C114.746 36.8395 114.774 36.9948 114.823 37.1275C114.893 37.2918 114.988 37.4179 115.108 37.5056C115.228 37.5934 115.382 37.6362 115.567 37.6362C115.737 37.6362 115.893 37.5889 116.035 37.4921C116.178 37.3954 116.302 37.2738 116.41 37.1253C116.517 36.9767 116.605 36.8102 116.675 36.6234C116.743 36.4389 116.79 36.2566 116.815 36.0788C116.847 35.8582 116.854 35.6557 116.835 35.4689C116.817 35.2821 116.774 35.12 116.709 34.9828C116.641 34.8455 116.551 34.7374 116.435 34.6609C116.32 34.5821 116.178 34.5439 116.008 34.5439C115.649 34.5439 115.352 34.7104 115.119 35.0458C115.034 35.1785 114.961 35.3338 114.905 35.5094C114.848 35.6849 114.805 35.8762 114.776 36.0833V36.0765Z" fill="#A6B0BE"/>
|
||||
<path d="M119.004 37.8477C118.974 37.9062 118.927 37.9377 118.863 37.9377H118.554C118.49 37.9377 118.454 37.9085 118.445 37.8477L117.828 34.3211C117.823 34.2986 117.828 34.2761 117.844 34.2558C117.86 34.2356 117.88 34.2243 117.905 34.2243H118.19C118.239 34.2243 118.273 34.2558 118.289 34.3211L118.782 37.4629L120.202 34.3211C120.213 34.2941 120.231 34.2716 120.256 34.2513C120.279 34.2333 120.304 34.2243 120.331 34.2243H120.609C120.634 34.2243 120.652 34.2356 120.661 34.2558C120.67 34.2761 120.67 34.2986 120.659 34.3211L119.001 37.8477H119.004Z" fill="#A6B0BE"/>
|
||||
<path d="M120.964 36.2138C120.928 36.4434 120.923 36.6459 120.95 36.8215C120.977 36.997 121.034 37.1455 121.12 37.2648C121.203 37.3841 121.312 37.4741 121.445 37.5394C121.579 37.6024 121.73 37.6362 121.904 37.6362C122.078 37.6362 122.234 37.6182 122.386 37.5844C122.537 37.5506 122.684 37.4944 122.822 37.4156C122.881 37.3886 122.906 37.4044 122.897 37.4629L122.854 37.7712C122.847 37.8117 122.82 37.8455 122.77 37.868C122.623 37.9265 122.469 37.9715 122.313 38.0008C122.157 38.03 121.99 38.0458 121.814 38.0458C121.294 38.0458 120.925 37.8815 120.706 37.5551C120.487 37.2288 120.423 36.7359 120.516 36.0765C120.597 35.4959 120.796 35.0278 121.113 34.6699C121.443 34.3098 121.821 34.1275 122.248 34.1275C122.485 34.1275 122.682 34.1725 122.842 34.2648C123.003 34.3571 123.132 34.4944 123.227 34.6767C123.396 35.0008 123.442 35.4351 123.365 35.9797C123.356 36.0383 123.349 36.0855 123.342 36.117C123.335 36.1485 123.324 36.171 123.31 36.1868C123.297 36.2003 123.272 36.2093 123.24 36.2116C123.209 36.2138 123.164 36.2161 123.105 36.2161H120.964V36.2138ZM122.919 35.8222C122.947 35.6354 122.953 35.4689 122.94 35.3203C122.926 35.174 122.892 35.0413 122.838 34.922C122.72 34.6519 122.512 34.5169 122.219 34.5169C121.925 34.5169 121.649 34.6542 121.418 34.9287C121.325 35.0525 121.242 35.1943 121.167 35.3541C121.095 35.5139 121.045 35.6692 121.018 35.82H122.917L122.919 35.8222Z" fill="#A6B0BE"/>
|
||||
<path d="M126.365 37.841C126.356 37.904 126.322 37.9377 126.263 37.9377H126.01C125.951 37.9377 125.926 37.9062 125.935 37.841L126.241 35.6804C126.299 35.2596 126.272 34.9625 126.159 34.7847C126.044 34.6092 125.861 34.5214 125.608 34.5214C125.266 34.5214 124.99 34.6249 124.782 34.8297C124.574 35.0345 124.443 35.3226 124.391 35.6939L124.088 37.841C124.079 37.904 124.045 37.9377 123.986 37.9377H123.733C123.674 37.9377 123.65 37.9062 123.659 37.841L124.045 35.0975C124.072 34.9017 124.093 34.7487 124.106 34.6384C124.12 34.5281 124.129 34.4246 124.136 34.3233C124.136 34.2918 124.147 34.2671 124.167 34.2513C124.188 34.2356 124.213 34.2266 124.237 34.2266H124.466C124.525 34.2266 124.549 34.2581 124.54 34.3233L124.486 34.7014C124.633 34.5056 124.796 34.3616 124.974 34.2693C125.153 34.177 125.39 34.132 125.68 34.132C126.08 34.132 126.365 34.2581 126.532 34.5101C126.699 34.7622 126.751 35.1155 126.686 35.5746L126.365 37.8455V37.841Z" fill="#A6B0BE"/>
|
||||
<path d="M128.757 37.9422C128.569 38.0098 128.391 38.0458 128.217 38.0458C127.875 38.0458 127.665 37.9242 127.59 37.6812C127.543 37.5169 127.547 37.2266 127.606 36.8102L127.916 34.6227H127.321C127.262 34.6227 127.238 34.5912 127.247 34.5259L127.276 34.3211C127.285 34.2581 127.319 34.2243 127.378 34.2243H127.972L128.103 33.2971C128.113 33.2296 128.146 33.1936 128.201 33.1936H128.467C128.522 33.1936 128.544 33.2273 128.535 33.2971L128.404 34.2243H129.107C129.166 34.2243 129.191 34.2558 129.182 34.3211L129.153 34.5259C129.143 34.5912 129.11 34.6227 129.051 34.6227H128.348L128.006 37.0443C127.95 37.4516 128.072 37.6542 128.377 37.6542C128.495 37.6542 128.633 37.6272 128.789 37.5709C128.811 37.5619 128.831 37.5619 128.85 37.5709C128.868 37.5799 128.874 37.5979 128.87 37.6249L128.859 37.8027C128.859 37.8657 128.827 37.913 128.764 37.94L128.757 37.9422Z" fill="#A6B0BE"/>
|
||||
<path d="M131.879 37.841C131.87 37.904 131.836 37.9377 131.777 37.9377H131.549C131.49 37.9377 131.465 37.9062 131.474 37.841L131.556 37.2716C131.407 37.5461 131.232 37.7442 131.031 37.8657C130.83 37.9873 130.59 38.048 130.312 38.048C129.523 38.048 129.195 37.5709 129.331 36.6144L129.654 34.3233C129.663 34.2603 129.697 34.2266 129.756 34.2266H130.009C130.068 34.2266 130.093 34.2581 130.084 34.3233L129.779 36.4906C129.668 37.2671 129.89 37.6564 130.437 37.6564C130.597 37.6564 130.746 37.6182 130.887 37.5439C131.027 37.4674 131.149 37.3661 131.257 37.2356C131.364 37.105 131.454 36.9542 131.524 36.7787C131.594 36.6054 131.642 36.4209 131.664 36.2296L131.933 34.3233C131.942 34.2603 131.976 34.2266 132.035 34.2266H132.288C132.347 34.2266 132.372 34.2581 132.363 34.3233L131.974 37.0803C131.954 37.2311 131.936 37.3661 131.92 37.4854C131.906 37.6047 131.893 37.7239 131.879 37.841Z" fill="#A6B0BE"/>
|
||||
<path d="M134.739 34.6429C134.667 34.6159 134.567 34.6024 134.441 34.6024C134.129 34.6024 133.873 34.7689 133.674 35.1043C133.518 35.3653 133.412 35.6984 133.355 36.1058L133.111 37.841C133.102 37.904 133.068 37.9377 133.009 37.9377H132.763C132.704 37.9377 132.679 37.9062 132.688 37.841L133.082 35.0548C133.104 34.8905 133.123 34.7554 133.136 34.6542C133.147 34.5506 133.161 34.4404 133.175 34.3211C133.184 34.2581 133.217 34.2243 133.276 34.2243H133.511C133.57 34.2243 133.595 34.2558 133.586 34.3211L133.491 34.994C133.778 34.4179 134.124 34.1298 134.524 34.1298C134.621 34.1298 134.716 34.1433 134.809 34.1703C134.834 34.1793 134.852 34.1951 134.87 34.2153C134.886 34.2356 134.893 34.2648 134.886 34.3008L134.845 34.5889C134.841 34.6159 134.827 34.6339 134.807 34.6429C134.784 34.6519 134.764 34.6519 134.744 34.6429H134.739Z" fill="#A6B0BE"/>
|
||||
<path d="M135.105 36.2138C135.069 36.4434 135.065 36.6459 135.092 36.8215C135.119 36.997 135.175 37.1455 135.261 37.2648C135.345 37.3841 135.453 37.4741 135.587 37.5394C135.72 37.6024 135.872 37.6362 136.046 37.6362C136.22 37.6362 136.376 37.6182 136.527 37.5844C136.679 37.5506 136.826 37.4944 136.964 37.4156C137.022 37.3886 137.047 37.4044 137.038 37.4629L136.995 37.7712C136.989 37.8117 136.961 37.8455 136.912 37.868C136.765 37.9265 136.611 37.9715 136.455 38.0008C136.299 38.03 136.132 38.0458 135.955 38.0458C135.435 38.0458 135.067 37.8815 134.848 37.5551C134.628 37.2288 134.565 36.7359 134.658 36.0765C134.739 35.4959 134.938 35.0278 135.255 34.6699C135.585 34.3098 135.962 34.1275 136.389 34.1275C136.627 34.1275 136.824 34.1725 136.984 34.2648C137.145 34.3571 137.273 34.4944 137.368 34.6767C137.538 35.0008 137.583 35.4351 137.506 35.9797C137.497 36.0383 137.49 36.0855 137.484 36.117C137.477 36.1485 137.466 36.171 137.452 36.1868C137.438 36.2003 137.414 36.2093 137.382 36.2116C137.35 36.2138 137.305 36.2161 137.246 36.2161H135.105V36.2138ZM137.061 35.8222C137.088 35.6354 137.095 35.4689 137.081 35.3203C137.068 35.174 137.034 35.0413 136.98 34.922C136.862 34.6519 136.654 34.5169 136.36 34.5169C136.066 34.5169 135.79 34.6542 135.56 34.9287C135.467 35.0525 135.383 35.1943 135.309 35.3541C135.236 35.5139 135.187 35.6692 135.16 35.82H137.059L137.061 35.8222Z" fill="#A6B0BE"/>
|
||||
<path d="M139.855 34.6429C139.783 34.6159 139.683 34.6024 139.557 34.6024C139.245 34.6024 138.989 34.7689 138.79 35.1043C138.634 35.3653 138.528 35.6984 138.472 36.1058L138.228 37.841C138.218 37.904 138.185 37.9377 138.126 37.9377H137.879C137.821 37.9377 137.796 37.9062 137.805 37.841L138.198 35.0548C138.221 34.8905 138.239 34.7554 138.252 34.6542C138.264 34.5506 138.277 34.4404 138.291 34.3211C138.3 34.2581 138.334 34.2243 138.393 34.2243H138.628C138.686 34.2243 138.711 34.2558 138.702 34.3211L138.607 34.994C138.894 34.4179 139.24 34.1298 139.641 34.1298C139.738 34.1298 139.833 34.1433 139.925 34.1703C139.95 34.1793 139.968 34.1951 139.986 34.2153C140.002 34.2356 140.009 34.2648 140.002 34.3008L139.962 34.5889C139.957 34.6159 139.943 34.6339 139.923 34.6429C139.901 34.6519 139.88 34.6519 139.86 34.6429H139.855Z" fill="#A6B0BE"/>
|
||||
<path d="M43.8195 19.5349C43.8195 17.7839 44.0886 16.1635 44.6402 14.6782C45.1873 13.1951 45.9877 11.8942 47.0367 10.7824C48.1603 9.60315 49.4716 8.70968 50.9615 8.10653C52.4514 7.50113 54.0815 7.19955 55.8562 7.19955C59.1163 7.19955 61.6779 8.07952 63.543 9.83271C65.4015 11.5904 66.3329 14.0098 66.3329 17.0818C66.3329 18.8035 66.0707 20.3924 65.5462 21.8462C65.0216 23.3001 64.2597 24.5559 63.2604 25.6227C62.1052 26.8605 60.7713 27.7967 59.2633 28.4246C57.753 29.0503 56.0936 29.3653 54.2804 29.3653C51.0587 29.3653 48.5062 28.4809 46.632 26.7164C44.7555 24.952 43.8195 22.5596 43.8195 19.5394V19.5349ZM55.7364 12.3961C54.2352 12.3961 53.0211 13.0645 52.0874 14.4014C51.1491 15.7404 50.6812 17.4914 50.6812 19.6497C50.6812 21.099 50.9999 22.1996 51.6352 22.9557C52.2728 23.7142 53.1975 24.0923 54.4161 24.0923C55.924 24.0923 57.1449 23.3991 58.0764 22.006C59.0056 20.6197 59.4713 18.7697 59.4713 16.4674C59.4713 15.2003 59.1389 14.2056 58.472 13.4831C57.8073 12.7607 56.8962 12.3961 55.7386 12.3961H55.7364Z" fill="white"/>
|
||||
<path d="M70.0407 28.805L68.7769 7.77119H75.0077V18.8102C75.0077 19.1883 74.9942 19.5754 74.9671 19.967C74.9354 20.3563 74.8924 20.7457 74.8314 21.1328C74.9218 20.6219 75.01 20.1763 75.105 19.8072C75.1977 19.4381 75.2858 19.1343 75.374 18.907L79.3712 7.76894H84.7678L84.9125 18.6797C84.9125 18.9902 84.9057 19.3526 84.8831 19.7577C84.8627 20.1605 84.8356 20.5927 84.7949 21.0495C84.874 20.6354 84.9532 20.2528 85.0391 19.8905C85.1205 19.5304 85.2132 19.1951 85.3104 18.8912L89.0001 7.76894H95.5113L87.3813 28.8027H80.9131L80.488 18.2228V17.919C80.488 17.7029 80.4993 17.4486 80.5242 17.156C80.5468 16.8657 80.5875 16.5124 80.6372 16.0915C80.5378 16.5124 80.4428 16.895 80.3569 17.2393C80.2687 17.5859 80.1873 17.874 80.1195 18.1035L76.4773 28.8005H70.0384L70.0407 28.805Z" fill="white"/>
|
||||
<path d="M94.4148 28.805L97.6319 7.77119H107.654C110.449 7.77119 112.492 8.22356 113.783 9.13504C115.079 10.042 115.725 11.4711 115.725 13.4246C115.725 14.8245 115.375 16.0308 114.672 17.0368C113.973 18.0473 112.945 18.8305 111.595 19.3909C112.556 19.7532 113.241 20.2168 113.652 20.7862C114.066 21.3511 114.269 22.105 114.269 23.048C114.269 23.2461 114.265 23.4576 114.249 23.6827C114.236 23.9077 114.211 24.1418 114.181 24.3894L113.946 26.5184C113.917 26.7142 113.899 26.8627 113.894 26.9527C113.89 27.045 113.89 27.1305 113.89 27.2206C113.89 27.4951 113.942 27.7134 114.05 27.8822C114.156 28.051 114.324 28.1748 114.55 28.2626V28.805H107.245C107.207 28.6722 107.175 28.5281 107.164 28.3683C107.148 28.2108 107.141 28.0443 107.141 27.8642C107.141 27.7404 107.148 27.5829 107.164 27.3916C107.177 27.2003 107.202 26.973 107.231 26.7097L107.541 24.5942C107.559 24.4726 107.575 24.3421 107.582 24.2093C107.593 24.0765 107.602 23.8965 107.602 23.6669C107.602 22.7712 107.338 22.1433 106.813 21.7809C106.291 21.4209 105.366 21.2386 104.044 21.2386H102.264L101.089 28.8095H94.4193L94.4148 28.805ZM102.479 16.7509H105.771C106.811 16.7509 107.575 16.5799 108.066 16.2311C108.554 15.8822 108.8 15.3376 108.8 14.5972C108.8 13.9557 108.586 13.4966 108.154 13.2108C107.724 12.925 107.017 12.7832 106.035 12.7832H103.11L102.479 16.7509Z" fill="white"/>
|
||||
<path d="M115.092 28.805L125.691 7.77119H132.612L136.948 28.805H130.423L130.089 26.2911H123.191L122.103 28.805H115.092ZM124.911 22.0488H129.365L128.221 14.2663L124.911 22.0488Z" fill="white"/>
|
||||
<path d="M0.253204 21.7314C0.253204 21.7314 0.273552 21.7337 0.282595 21.7337C0.363985 21.7337 0.443115 21.7157 0.522244 21.7089C0.522244 21.7089 0.522244 21.7067 0.517722 21.7067C0.43181 21.7179 0.341377 21.7314 0.253204 21.7314Z" fill="white"/>
|
||||
<path d="M31.0707 9.16879L23.6099 1.73743C21.2835 -0.578395 17.5192 -0.578395 15.1951 1.73743L14.4083 2.52288C15.0526 3.33533 15.4505 4.34584 15.4912 5.45311C21.8826 5.50038 27.5279 6.95199 31.0707 9.17104V9.16879Z" fill="url(#paint25_linear_8_706)"/>
|
||||
<path d="M22.0228 19.3481H22.0725C22.839 19.3481 23.5376 19.6429 24.0621 20.12C26.0494 19.1658 27.5302 17.9842 28.2921 16.6654H28.3396C28.7171 16.0105 28.9274 15.3218 28.9274 14.6084C28.9274 10.7914 23.1035 7.6024 15.3466 6.84846C14.804 9.03601 12.8212 10.6609 10.4541 10.6609C10.2258 10.6609 10.0019 10.6429 9.78038 10.6137C9.48647 11.7209 9.30786 12.8845 9.30786 14.0885C9.30786 17.093 10.7028 20.0458 13.2756 22.5056C15.3511 22.4224 17.3157 22.168 19.1108 21.7719C19.3618 20.3946 20.5691 19.3503 22.0228 19.3503V19.3481Z" fill="url(#paint26_linear_8_706)"/>
|
||||
<path d="M0.259984 17.9662C0.259984 17.9662 0.273549 17.964 0.282592 17.964C1.32936 17.964 2.17265 18.8102 2.17265 19.8477C2.17265 20.2933 2.02118 20.7007 1.76118 21.0203C3.4975 21.6099 5.48251 22.0465 7.62579 22.2963C7.56474 22.1725 7.50596 22.0465 7.4517 21.9182C7.50822 22.0398 7.57153 22.1703 7.64161 22.2963C7.65292 22.2986 7.66422 22.3008 7.68005 22.3008C6.88197 20.6759 6.41398 18.9115 6.41398 17.012C6.41398 14.5139 7.1171 12.18 8.14578 10.0983C7.85639 9.94974 7.58961 9.76969 7.3364 9.57164L1.75892 15.1305C0.942757 15.943 0.420503 16.931 0.174072 17.9752C0.196681 17.973 0.217028 17.9662 0.237376 17.9662C0.246419 17.9662 0.253202 17.9685 0.262245 17.9685L0.259984 17.9662Z" fill="url(#paint27_linear_8_706)"/>
|
||||
<path d="M8.13448 23.165C8.13448 23.165 8.12318 23.165 8.11188 23.1605C8.70648 24.1598 9.52716 25.3031 10.6689 26.5476C9.66733 25.5011 8.78334 24.3736 8.08475 23.165C5.62948 22.7329 3.4116 22.0758 1.53737 21.2498C1.25928 21.4996 0.906592 21.6594 0.519989 21.7089C0.807115 22.3638 1.21633 22.9782 1.75441 23.5139L15.1928 36.9047C17.517 39.2206 21.2812 39.2183 23.6076 36.9047L25.093 35.4261C19.8705 33.3511 11.6727 29.2843 8.13222 23.1628L8.13448 23.165Z" fill="url(#paint28_linear_8_706)"/>
|
||||
<path d="M25.0229 22.5484C24.8941 24.063 23.6235 25.2558 22.0725 25.2558H22.0228C20.8381 25.2558 19.8185 24.5626 19.3437 23.5589C18.0008 23.6894 16.6104 23.7637 15.1793 23.7637H15.1318C15.0052 23.7637 14.8763 23.7637 14.7497 23.7614C18.6542 26.7299 24.5165 28.7059 31.8507 28.7014L37.0528 23.5161C39.3792 21.2003 39.3792 17.4464 37.0528 15.1305L34.4122 12.4996C34.7558 13.1748 34.9435 13.8815 34.9435 14.6084C34.9435 18.0045 30.9486 20.9707 25.0252 22.5506L25.0229 22.5484Z" fill="url(#paint29_linear_8_706)"/>
|
||||
<path d="M1.50798 21.2386C1.23894 21.4839 0.89529 21.6482 0.517731 21.7067C0.519992 21.7067 0.519992 21.7089 0.522252 21.7089C0.908855 21.6594 1.26155 21.4996 1.53963 21.2498C1.53059 21.2476 1.51928 21.2453 1.51024 21.2386H1.50798Z" fill="white"/>
|
||||
<path d="M2.17265 19.8477C2.17265 18.8102 1.32935 17.964 0.282588 17.964C0.273544 17.964 0.266762 17.9662 0.259979 17.9662C1.29318 17.9797 2.12517 18.8147 2.12517 19.8477C2.12517 20.2933 1.97143 20.7007 1.7137 21.0203C3.46358 21.6122 5.46442 22.051 7.62578 22.3008C7.62578 22.3008 7.62578 22.3008 7.62578 22.2963C5.48251 22.0465 3.4975 21.6099 1.76117 21.0203C2.02117 20.7007 2.17265 20.2933 2.17265 19.8477Z" fill="white"/>
|
||||
<path d="M15.489 5.45086C15.4483 4.34359 15.0504 3.33308 14.406 2.52063L7.33413 9.56939C7.58509 9.76744 7.85413 9.94749 8.14351 10.096C7.11483 12.1778 6.41171 14.5116 6.41171 17.0098C6.41171 18.9115 6.87744 20.6759 7.67778 22.2986C7.66195 22.2986 7.65065 22.2986 7.63935 22.2941C7.77726 22.5686 7.94004 22.859 8.11412 23.1583C8.12543 23.1605 8.12995 23.1605 8.13673 23.1628C11.6772 29.2843 19.875 33.3511 25.0975 35.4261L31.8529 28.6992C24.5187 28.7037 18.6564 26.7277 14.7519 23.7592H14.7022C13.5333 22.94 13.2304 22.5056 13.2304 22.5056C13.2462 22.5056 13.262 22.5034 13.2756 22.5034C10.7028 20.0435 9.30784 17.0908 9.30784 14.0863C9.30784 12.88 9.48419 11.7164 9.78036 10.6114C10.0019 10.6429 10.2257 10.6587 10.4541 10.6587C12.8212 10.6587 14.8039 9.03376 15.3465 6.84621C23.1035 7.60015 28.9274 10.7892 28.9274 14.6062C28.9274 15.3196 28.7194 16.0083 28.3396 16.6632H34.3873C33.1393 19.1748 29.6621 21.2971 24.9732 22.5484C24.8488 24.054 23.5918 25.2401 22.0477 25.2558H22.0703C23.6212 25.2558 24.894 24.0653 25.0207 22.5484C30.944 20.9685 34.9389 18.0023 34.9389 14.6062C34.9389 13.8792 34.7513 13.1725 34.4076 12.4974L31.0661 9.16879C27.5234 6.94974 21.8781 5.49812 15.4867 5.45086H15.489Z" fill="white"/>
|
||||
<path d="M22.0454 19.3481C22.8118 19.3571 23.5082 19.6519 24.0304 20.1335C24.0417 20.1268 24.0508 20.1223 24.0621 20.12C23.5376 19.6429 22.839 19.3481 22.0725 19.3481H22.0454Z" fill="white"/>
|
||||
<path d="M15.1476 23.7637H15.1792C16.6103 23.7637 18.0008 23.6894 19.3437 23.5589C19.3437 23.5589 19.3414 23.5589 19.3414 23.5544C17.9917 23.6894 16.5855 23.7637 15.1476 23.7637Z" fill="white"/>
|
||||
<path d="M24.0621 20.12C24.0621 20.12 24.0734 20.129 24.0802 20.1335C26.0833 19.177 27.5732 17.991 28.3396 16.6632H28.2921C27.5302 17.982 26.0493 19.1658 24.0621 20.1178V20.12Z" fill="url(#paint30_linear_8_706)"/>
|
||||
<path d="M24.0621 20.12C24.0621 20.12 24.0734 20.129 24.0802 20.1335C26.0833 19.177 27.5732 17.991 28.3396 16.6632H28.2921C27.5302 17.982 26.0493 19.1658 24.0621 20.1178V20.12Z" fill="url(#paint31_linear_8_706)"/>
|
||||
<path d="M19.156 21.7697C19.4093 20.4014 20.6007 19.3616 22.0454 19.3481H22.0205C20.5691 19.3481 19.3595 20.3923 19.1086 21.7697C17.3112 22.1658 15.3488 22.4201 13.2733 22.5034V22.5056C15.3646 22.4269 17.3451 22.1703 19.1538 21.7697H19.156Z" fill="url(#paint32_linear_8_706)"/>
|
||||
<path d="M19.156 21.7697C19.4093 20.4014 20.6007 19.3616 22.0454 19.3481H22.0205C20.5691 19.3481 19.3595 20.3923 19.1086 21.7697C17.3112 22.1658 15.3488 22.4201 13.2733 22.5034V22.5056C15.3646 22.4269 17.3451 22.1703 19.1538 21.7697H19.156Z" fill="url(#paint33_linear_8_706)"/>
|
||||
<path d="M19.3889 23.5544C19.3731 23.5566 19.3595 23.5566 19.3437 23.5589C19.8185 24.5626 20.8381 25.2558 22.0228 25.2558H22.0499C20.8743 25.2491 19.8592 24.5536 19.3889 23.5544Z" fill="url(#paint34_linear_8_706)"/>
|
||||
<path d="M19.3889 23.5544C19.3731 23.5566 19.3595 23.5566 19.3437 23.5589C19.8185 24.5626 20.8381 25.2558 22.0228 25.2558H22.0499C20.8743 25.2491 19.8592 24.5536 19.3889 23.5544Z" fill="url(#paint35_linear_8_706)"/>
|
||||
<path d="M15.1476 23.7637C15.0165 23.7637 14.8831 23.7637 14.7497 23.7614C14.8763 23.7637 15.0052 23.7637 15.1318 23.7637H15.1476Z" fill="url(#paint36_linear_8_706)"/>
|
||||
<path d="M15.1476 23.7637C15.0165 23.7637 14.8831 23.7637 14.7497 23.7614C14.8763 23.7637 15.0052 23.7637 15.1318 23.7637H15.1476Z" fill="url(#paint37_linear_8_706)"/>
|
||||
<path d="M15.1476 23.7637C16.5855 23.7637 17.9917 23.6894 19.3414 23.5544C19.3414 23.5566 19.3414 23.5566 19.3437 23.5589C19.3595 23.5589 19.3731 23.5589 19.3889 23.5544C19.8592 24.5514 20.8743 25.2468 22.0499 25.2558C23.5918 25.2401 24.8511 24.054 24.9754 22.5484C29.6644 21.2971 33.1416 19.177 34.3896 16.6632H28.3418C27.5754 17.9887 26.0855 19.177 24.0824 20.1335C24.0756 20.1268 24.0711 20.1223 24.0643 20.12C24.0553 20.1223 24.0462 20.129 24.0327 20.1335C23.5082 19.6519 22.8141 19.3571 22.0477 19.3481C20.603 19.3616 19.4115 20.4014 19.1583 21.7697C17.3519 22.1703 15.3714 22.4269 13.2779 22.5056V22.5034C13.2643 22.5034 13.2485 22.5056 13.2327 22.5056C13.2327 22.5056 13.5356 22.94 14.7045 23.7592H14.7542C14.8876 23.7614 15.021 23.7614 15.1521 23.7614L15.1476 23.7637Z" fill="white"/>
|
||||
<path d="M15.1476 23.7637C16.5855 23.7637 17.9917 23.6894 19.3414 23.5544C19.3414 23.5566 19.3414 23.5566 19.3437 23.5589C19.3595 23.5589 19.3731 23.5589 19.3889 23.5544C19.8592 24.5514 20.8743 25.2468 22.0499 25.2558C23.5918 25.2401 24.8511 24.054 24.9754 22.5484C29.6644 21.2971 33.1416 19.177 34.3896 16.6632H28.3418C27.5754 17.9887 26.0855 19.177 24.0824 20.1335C24.0756 20.1268 24.0711 20.1223 24.0643 20.12C24.0553 20.1223 24.0462 20.129 24.0327 20.1335C23.5082 19.6519 22.8141 19.3571 22.0477 19.3481C20.603 19.3616 19.4115 20.4014 19.1583 21.7697C17.3519 22.1703 15.3714 22.4269 13.2779 22.5056V22.5034C13.2643 22.5034 13.2485 22.5056 13.2327 22.5056C13.2327 22.5056 13.5356 22.94 14.7045 23.7592H14.7542C14.8876 23.7614 15.021 23.7614 15.1521 23.7614L15.1476 23.7637Z" fill="url(#paint38_linear_8_706)"/>
|
||||
<path d="M7.62352 22.2963H7.63708C7.567 22.1725 7.50369 22.042 7.44717 21.9182C7.50143 22.0465 7.56022 22.1703 7.62126 22.2963H7.62352Z" fill="url(#paint39_linear_8_706)"/>
|
||||
<path d="M7.62352 22.2963H7.63708C7.567 22.1725 7.50369 22.042 7.44717 21.9182C7.50143 22.0465 7.56022 22.1703 7.62126 22.2963H7.62352Z" fill="url(#paint40_linear_8_706)"/>
|
||||
<path d="M0.235117 17.964C0.21477 17.964 0.194422 17.9707 0.171814 17.973C0.171814 17.973 0.171814 17.9745 0.171814 17.9775C0.203466 17.9775 0.235117 17.9662 0.259987 17.9662C0.250943 17.9662 0.244161 17.964 0.235117 17.964Z" fill="url(#paint41_linear_8_706)"/>
|
||||
<path d="M0.235117 17.964C0.21477 17.964 0.194422 17.9707 0.171814 17.973C0.171814 17.973 0.171814 17.9745 0.171814 17.9775C0.203466 17.9775 0.235117 17.9662 0.259987 17.9662C0.250943 17.9662 0.244161 17.964 0.235117 17.964Z" fill="url(#paint42_linear_8_706)"/>
|
||||
<path d="M1.53735 21.2498C3.41159 22.0758 5.62947 22.7329 8.08473 23.165C8.78333 24.3713 9.66732 25.5011 10.6689 26.5476C9.52715 25.3053 8.70873 24.162 8.11187 23.1605C5.65208 22.7239 3.42967 22.0645 1.5577 21.2386C1.55092 21.2453 1.54188 21.2476 1.53735 21.2498Z" fill="url(#paint43_linear_8_706)"/>
|
||||
<path d="M1.53735 21.2498C3.41159 22.0758 5.62947 22.7329 8.08473 23.165C8.78333 24.3713 9.66732 25.5011 10.6689 26.5476C9.52715 25.3053 8.70873 24.162 8.11187 23.1605C5.65208 22.7239 3.42967 22.0645 1.5577 21.2386C1.55092 21.2453 1.54188 21.2476 1.53735 21.2498Z" fill="url(#paint44_linear_8_706)"/>
|
||||
<path d="M0.51772 21.7067C0.89528 21.6459 1.23893 21.4816 1.50797 21.2386C1.51927 21.2453 1.52831 21.2476 1.53736 21.2498C1.54414 21.2476 1.55092 21.2453 1.5577 21.2386C3.42968 22.0645 5.65208 22.7262 8.11187 23.1605C7.93552 22.8612 7.775 22.5709 7.63709 22.2963H7.62353V22.3008C5.46217 22.0533 3.45907 21.6122 1.71144 21.0203C1.96918 20.7007 2.12291 20.2933 2.12291 19.8477C2.12291 18.8147 1.29093 17.982 0.257724 17.9662C0.230594 17.9662 0.198942 17.9752 0.169551 17.9775C-0.117575 19.2153 -0.00453295 20.5229 0.515459 21.7067H0.51772Z" fill="white"/>
|
||||
<path d="M0.51772 21.7067C0.89528 21.6459 1.23893 21.4816 1.50797 21.2386C1.51927 21.2453 1.52831 21.2476 1.53736 21.2498C1.54414 21.2476 1.55092 21.2453 1.5577 21.2386C3.42968 22.0645 5.65208 22.7262 8.11187 23.1605C7.93552 22.8612 7.775 22.5709 7.63709 22.2963H7.62353V22.3008C5.46217 22.0533 3.45907 21.6122 1.71144 21.0203C1.96918 20.7007 2.12291 20.2933 2.12291 19.8477C2.12291 18.8147 1.29093 17.982 0.257724 17.9662C0.230594 17.9662 0.198942 17.9752 0.169551 17.9775C-0.117575 19.2153 -0.00453295 20.5229 0.515459 21.7067H0.51772Z" fill="url(#paint45_linear_8_706)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0888 9.16879L23.6257 1.73743C21.2993 -0.578395 17.535 -0.578395 15.2109 1.73743L14.4241 2.52288L7.34998 9.57164L1.77249 15.1305C0.956333 15.943 0.434079 16.931 0.187648 17.9752C0.187648 17.9752 0.187648 17.9767 0.187648 17.9797C-0.0994778 19.2176 0.0135639 20.5251 0.533556 21.7089C0.447644 21.7202 0.357211 21.7337 0.269038 21.7337C0.280343 21.7337 0.289386 21.7359 0.298429 21.7359C0.379819 21.7359 0.458949 21.7179 0.538078 21.7112C0.825204 22.3661 1.23442 22.9805 1.77249 23.5161L15.2109 36.907C17.535 39.2228 21.3016 39.2206 23.6257 36.907L25.1111 35.4284L31.8665 28.7014L37.0687 23.5161C39.3951 21.2003 39.3951 17.4464 37.0687 15.1305V15.1283Z" fill="url(#paint46_linear_8_706)"/>
|
||||
<path d="M37.0347 15.1283L34.3918 12.4974L31.0526 9.16879L23.5941 1.73743C21.2699 -0.578395 17.5034 -0.578395 15.1792 1.73743L14.3925 2.52288L7.32058 9.57164L1.74084 15.1305C0.924674 15.943 0.402421 16.931 0.15599 17.9752C0.15599 17.9752 0.15599 17.9767 0.15599 17.9797C-0.131136 19.2176 -0.0180945 20.5251 0.504159 21.7089C0.418247 21.7202 0.327813 21.7337 0.239641 21.7337C0.250945 21.7337 0.259988 21.7359 0.269032 21.7359C0.350422 21.7359 0.429551 21.7179 0.50868 21.7112C0.795806 22.3661 1.20502 22.9805 1.7431 23.5161L15.1815 36.907C17.5056 39.2228 21.2722 39.2206 23.5963 36.907L25.084 35.4284L31.8371 28.7014L37.0393 23.5161C39.3657 21.2003 39.3657 17.4464 37.0393 15.1305L37.0347 15.1283Z" fill="url(#paint47_linear_8_706)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0865 9.16879L23.6257 1.73743C21.2993 -0.578395 17.535 -0.578395 15.2109 1.73743L14.4241 2.52288L7.34997 9.57164L1.77249 15.1305C0.95633 15.943 0.434077 16.931 0.189907 17.9752C0.189907 17.9752 0.189907 17.9767 0.189907 17.9797C-0.0972195 19.2176 0.0158222 20.5251 0.535814 21.7089C0.449903 21.7202 0.359469 21.7337 0.271297 21.7337C0.282601 21.7337 0.291644 21.7359 0.300688 21.7359C0.382078 21.7359 0.461207 21.7179 0.540336 21.7112C0.827462 22.3661 1.23667 22.9805 1.77475 23.5161L15.2132 36.907C17.5373 39.2228 21.3039 39.2206 23.628 36.907L25.1134 35.4284L31.8687 28.7014L37.0709 23.5161C39.3951 21.2003 39.3951 17.4464 37.0709 15.1305L37.0687 15.1283Z" fill="url(#paint48_linear_8_706)"/>
|
||||
<path d="M37.0687 15.1283L34.428 12.4974L31.0865 9.16879L23.6257 1.73743C21.2993 -0.578395 17.535 -0.578395 15.2109 1.73743L14.4241 2.52288L7.35223 9.57164L1.77249 15.1305C0.95633 15.943 0.434077 16.931 0.189907 17.9752C0.189907 17.9752 0.189907 17.9767 0.189907 17.9797C-0.0972195 19.2176 0.0158222 20.5251 0.535814 21.7089C0.449903 21.7202 0.359469 21.7337 0.271297 21.7337C0.282601 21.7337 0.291644 21.7359 0.300688 21.7359C0.382078 21.7359 0.461207 21.7179 0.540336 21.7112C0.827462 22.3661 1.23667 22.9805 1.77475 23.5161L15.2132 36.907C17.5373 39.2228 21.3039 39.2206 23.628 36.907L25.1134 35.4284L31.8687 28.7014L37.0709 23.5161C39.3951 21.2003 39.3951 17.4464 37.0709 15.1305L37.0687 15.1283Z" fill="url(#paint49_linear_8_706)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_8_706" x1="9.83462" y1="19.3143" x2="25.387" y2="2.93375" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_8_706" x1="11.8626" y1="21.2453" x2="27.4127" y2="4.86249" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_8_706" x1="4.79974" y1="18.6234" x2="0.428412" y2="23.3514" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_8_706" x1="14.0737" y1="27.2116" x2="9.70463" y2="31.9396" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_8_706" x1="20.4153" y1="29.3653" x2="35.9655" y2="12.9848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_8_706" x1="17.9963" y1="27.0765" x2="33.5531" y2="10.6869" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_8_706" x1="13.2281" y1="18.4006" x2="34.3918" y2="18.4006" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_8_706" x1="14.7384" y1="23.9775" x2="30.2907" y2="7.59466" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_8_706" x1="13.2304" y1="20.928" x2="34.3873" y2="20.928" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_8_706" x1="18.0821" y1="27.1373" x2="33.5828" y2="10.8087" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_8_706" x1="13.2372" y1="24.4051" x2="34.3737" y2="24.4051" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_8_706" x1="14.7407" y1="23.9796" x2="30.275" y2="7.60404" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_8_706" x1="13.2282" y1="23.7614" x2="34.4145" y2="23.7614" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_8_706" x1="13.2304" y1="20.9595" x2="34.3896" y2="20.9595" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_8_706" x1="8.02369" y1="21.5919" x2="3.58263" y2="26.399" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_8_706" x1="-1.716" y1="22.1073" x2="10.6937" y2="22.1073" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_8_706" x1="2.10483" y1="15.9431" x2="-2.49577" y2="20.9219" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_8_706" x1="-1.72277" y1="17.9707" x2="11.051" y2="17.9707" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_8_706" x1="8.13899" y1="21.7179" x2="3.77216" y2="26.4392" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear_8_706" x1="-1.65721" y1="23.892" x2="10.6689" y2="23.892" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear_8_706" x1="-1.6572" y1="20.5634" x2="10.6689" y2="20.5634" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear_8_706" x1="8.48265" y1="30.2071" x2="30.2566" y2="8.33594" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.7" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.97" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear_8_706" x1="30.3223" y1="30.2093" x2="8.54835" y2="8.33595" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.8" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint23_linear_8_706" x1="8.48265" y1="8.43511" x2="30.2566" y2="30.3085" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.7" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.95" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint24_linear_8_706" x1="30.3562" y1="8.43511" x2="8.58226" y2="30.3062" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.8" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint25_linear_8_706" x1="9.83462" y1="19.3143" x2="25.387" y2="2.93375" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint26_linear_8_706" x1="11.8626" y1="21.2453" x2="27.4127" y2="4.86249" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint27_linear_8_706" x1="4.79974" y1="18.6234" x2="0.428412" y2="23.3514" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint28_linear_8_706" x1="14.0737" y1="27.2116" x2="9.70463" y2="31.9396" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint29_linear_8_706" x1="20.4153" y1="29.3653" x2="35.9655" y2="12.9848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#042568"/>
|
||||
<stop offset="0.45" stop-color="#0D4081"/>
|
||||
<stop offset="1" stop-color="#1B68A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint30_linear_8_706" x1="17.9963" y1="27.0765" x2="33.5531" y2="10.6869" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint31_linear_8_706" x1="13.2281" y1="18.4006" x2="34.3918" y2="18.4006" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint32_linear_8_706" x1="14.7384" y1="23.9775" x2="30.2907" y2="7.59466" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint33_linear_8_706" x1="13.2304" y1="20.928" x2="34.3873" y2="20.928" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint34_linear_8_706" x1="18.0821" y1="27.1373" x2="33.5828" y2="10.8087" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint35_linear_8_706" x1="13.2372" y1="24.4051" x2="34.3737" y2="24.4051" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint36_linear_8_706" x1="14.7407" y1="23.9796" x2="30.275" y2="7.60404" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#180F60"/>
|
||||
<stop offset="0.42" stop-color="#0E2A7B"/>
|
||||
<stop offset="1" stop-color="#0058A9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint37_linear_8_706" x1="13.2282" y1="23.7614" x2="34.4145" y2="23.7614" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint38_linear_8_706" x1="13.2304" y1="20.9595" x2="34.3896" y2="20.9595" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C6C8"/>
|
||||
<stop offset="0.09" stop-color="#D5D6D8"/>
|
||||
<stop offset="0.22" stop-color="#E8E8E9"/>
|
||||
<stop offset="0.38" stop-color="#F5F5F5"/>
|
||||
<stop offset="0.59" stop-color="#FCFCFC"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint39_linear_8_706" x1="8.02369" y1="21.5919" x2="3.58263" y2="26.399" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint40_linear_8_706" x1="-1.716" y1="22.1073" x2="10.6937" y2="22.1073" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint41_linear_8_706" x1="2.10483" y1="15.9431" x2="-2.49577" y2="20.9219" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint42_linear_8_706" x1="-1.72277" y1="17.9707" x2="11.051" y2="17.9707" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint43_linear_8_706" x1="8.13899" y1="21.7179" x2="3.77216" y2="26.4392" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007EC6"/>
|
||||
<stop offset="1" stop-color="#60B6E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint44_linear_8_706" x1="-1.65721" y1="23.892" x2="10.6689" y2="23.892" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint45_linear_8_706" x1="-1.6572" y1="20.5634" x2="10.6689" y2="20.5634" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.76" stop-color="#D3D4D6"/>
|
||||
<stop offset="1" stop-color="#C4C6C8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint46_linear_8_706" x1="8.48265" y1="30.2071" x2="30.2566" y2="8.33594" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.7" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.97" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint47_linear_8_706" x1="30.3223" y1="30.2093" x2="8.54835" y2="8.33595" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.8" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint48_linear_8_706" x1="8.48265" y1="8.43511" x2="30.2566" y2="30.3085" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.7" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.95" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint49_linear_8_706" x1="30.3562" y1="8.43511" x2="8.58226" y2="30.3062" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.8" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#221E1F" stop-opacity="0.2"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_8_706">
|
||||
<rect width="140" height="39" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 113 KiB |
BIN
src/main/resources/static/img/common/map.png
Normal file
|
After Width: | Height: | Size: 609 KiB |
BIN
src/main/resources/static/img/common/no_img.jpg
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
src/main/resources/static/img/common/pg_bn.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
src/main/resources/static/img/main/inc01/inc01_img01.jpg
Normal file
|
After Width: | Height: | Size: 421 KiB |
BIN
src/main/resources/static/img/main/inc01/inc01_img02.jpg
Normal file
|
After Width: | Height: | Size: 329 KiB |
BIN
src/main/resources/static/img/main/inc01/inc01_img03.jpg
Normal file
|
After Width: | Height: | Size: 143 KiB |
BIN
src/main/resources/static/img/main/inc01/inc01_img04.jpg
Normal file
|
After Width: | Height: | Size: 408 KiB |
BIN
src/main/resources/static/img/main/inc01/inc01_img05.jpg
Normal file
|
After Width: | Height: | Size: 551 KiB |
BIN
src/main/resources/static/img/main/inc03/inc03_img01.png
Normal file
|
After Width: | Height: | Size: 266 KiB |
BIN
src/main/resources/static/img/main/inc03/inc03_img02.png
Normal file
|
After Width: | Height: | Size: 218 KiB |
BIN
src/main/resources/static/img/main/inc04/contact_bg.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
src/main/resources/static/img/main/inc04/ico_coalition.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
src/main/resources/static/img/main/inc04/ico_employ.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
src/main/resources/static/img/main/inc04/ico_ora.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
src/main/resources/static/img/main/inc04/inc04_bg.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
src/main/resources/static/img/main/inc04/mascot.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
src/main/resources/static/img/main/main_vs01.jpg
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
src/main/resources/static/img/main/main_vs02.jpg
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
src/main/resources/static/img/main/main_vs03.jpg
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
src/main/resources/static/img/sub/Group 41.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
src/main/resources/static/img/sub/bg-talent.png
Normal file
|
After Width: | Height: | Size: 981 KiB |
BIN
src/main/resources/static/img/sub/bg_history.png
Normal file
|
After Width: | Height: | Size: 812 KiB |
BIN
src/main/resources/static/img/sub/bg_vision01.jpg
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
src/main/resources/static/img/sub/bg_vision02.jpg
Normal file
|
After Width: | Height: | Size: 1.4 MiB |
3
src/main/resources/static/img/sub/check_small.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 9.4L0 5.4L1.4 4L4 6.6L10.6 0L12 1.4L4 9.4Z" fill="#6BBEFA"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 176 B |
4
src/main/resources/static/img/sub/dot_tit.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="21" height="17" viewBox="0 0 21 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.41421 7.82584C0.633166 7.04479 0.633165 5.77846 1.41421 4.99741L4.85173 1.5599L14.5552 11.2633L11.1177 14.7009C10.3366 15.4819 9.07029 15.4819 8.28924 14.7009L1.41421 7.82584Z" fill="#1398F8"/>
|
||||
<path d="M6.44434 4.85168L9.88185 1.41417C10.6629 0.633125 11.9292 0.633124 12.7103 1.41417L19.5853 8.2892C20.3663 9.07024 20.3663 10.3366 19.5853 11.1176L16.1478 14.5551L6.44434 4.85168Z" fill="#032B69"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 515 B |
BIN
src/main/resources/static/img/sub/greeting_img.jpg
Normal file
|
After Width: | Height: | Size: 119 KiB |
BIN
src/main/resources/static/img/sub/ico-arrow-employ.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/main/resources/static/img/sub/ico-mark.png
Normal file
|
After Width: | Height: | Size: 773 B |