commit dcd3e0a386530176974ace22ff6d187d6b05d2f7 Author: LostInLinearPast <1283411677@qq.com> Date: Mon Oct 27 21:23:20 2025 +0800 fix diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3b41682 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +/mvnw text eol=lf +*.cmd text eol=crlf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4bedaae --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +HELP.md +target/ +.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +out/ diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..2f94e61 --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +wrapperVersion=3.3.2 +distributionType=only-script +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip diff --git a/mvnw b/mvnw new file mode 100644 index 0000000..19529dd --- /dev/null +++ b/mvnw @@ -0,0 +1,259 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Apache Maven Wrapper startup batch script, version 3.3.2 +# +# Optional ENV vars +# ----------------- +# JAVA_HOME - location of a JDK home dir, required when download maven via java source +# MVNW_REPOURL - repo url base for downloading maven distribution +# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output +# ---------------------------------------------------------------------------- + +set -euf +[ "${MVNW_VERBOSE-}" != debug ] || set -x + +# OS specific support. +native_path() { printf %s\\n "$1"; } +case "$(uname)" in +CYGWIN* | MINGW*) + [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" + native_path() { cygpath --path --windows "$1"; } + ;; +esac + +# set JAVACMD and JAVACCMD +set_java_home() { + # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched + if [ -n "${JAVA_HOME-}" ]; then + if [ -x "$JAVA_HOME/jre/sh/java" ]; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACCMD="$JAVA_HOME/jre/sh/javac" + else + JAVACMD="$JAVA_HOME/bin/java" + JAVACCMD="$JAVA_HOME/bin/javac" + + if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then + echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 + echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 + return 1 + fi + fi + else + JAVACMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v java + )" || : + JAVACCMD="$( + 'set' +e + 'unset' -f command 2>/dev/null + 'command' -v javac + )" || : + + if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then + echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 + return 1 + fi + fi +} + +# hash string like Java String::hashCode +hash_string() { + str="${1:-}" h=0 + while [ -n "$str" ]; do + char="${str%"${str#?}"}" + h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) + str="${str#?}" + done + printf %x\\n $h +} + +verbose() { :; } +[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } + +die() { + printf %s\\n "$1" >&2 + exit 1 +} + +trim() { + # MWRAPPER-139: + # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. + # Needed for removing poorly interpreted newline sequences when running in more + # exotic environments such as mingw bash on Windows. + printf "%s" "${1}" | tr -d '[:space:]' +} + +# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties +while IFS="=" read -r key value; do + case "${key-}" in + distributionUrl) distributionUrl=$(trim "${value-}") ;; + distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; + esac +done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" +[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" + +case "${distributionUrl##*/}" in +maven-mvnd-*bin.*) + MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ + case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in + *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; + :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; + :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; + :Linux*x86_64*) distributionPlatform=linux-amd64 ;; + *) + echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 + distributionPlatform=linux-amd64 + ;; + esac + distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" + ;; +maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; +*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; +esac + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" +distributionUrlName="${distributionUrl##*/}" +distributionUrlNameMain="${distributionUrlName%.*}" +distributionUrlNameMain="${distributionUrlNameMain%-bin}" +MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" +MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" + +exec_maven() { + unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : + exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" +} + +if [ -d "$MAVEN_HOME" ]; then + verbose "found existing MAVEN_HOME at $MAVEN_HOME" + exec_maven "$@" +fi + +case "${distributionUrl-}" in +*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; +*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; +esac + +# prepare tmp dir +if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then + clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } + trap clean HUP INT TERM EXIT +else + die "cannot create temp dir" +fi + +mkdir -p -- "${MAVEN_HOME%/*}" + +# Download and Install Apache Maven +verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +verbose "Downloading from: $distributionUrl" +verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +# select .zip or .tar.gz +if ! command -v unzip >/dev/null; then + distributionUrl="${distributionUrl%.zip}.tar.gz" + distributionUrlName="${distributionUrl##*/}" +fi + +# verbose opt +__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' +[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v + +# normalize http auth +case "${MVNW_PASSWORD:+has-password}" in +'') MVNW_USERNAME='' MVNW_PASSWORD='' ;; +has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; +esac + +if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then + verbose "Found wget ... using wget" + wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" +elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then + verbose "Found curl ... using curl" + curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" +elif set_java_home; then + verbose "Falling back to use Java to download" + javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" + targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" + cat >"$javaSource" <<-END + public class Downloader extends java.net.Authenticator + { + protected java.net.PasswordAuthentication getPasswordAuthentication() + { + return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); + } + public static void main( String[] args ) throws Exception + { + setDefault( new Downloader() ); + java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); + } + } + END + # For Cygwin/MinGW, switch paths to Windows format before running javac and java + verbose " - Compiling Downloader.java ..." + "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" + verbose " - Running Downloader.java ..." + "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" +fi + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +if [ -n "${distributionSha256Sum-}" ]; then + distributionSha256Result=false + if [ "$MVN_CMD" = mvnd.sh ]; then + echo "Checksum validation is not supported for maven-mvnd." >&2 + echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + elif command -v sha256sum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + elif command -v shasum >/dev/null; then + if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then + distributionSha256Result=true + fi + else + echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 + echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 + exit 1 + fi + if [ $distributionSha256Result = false ]; then + echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 + echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 + exit 1 + fi +fi + +# unzip and move +if command -v unzip >/dev/null; then + unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" +else + tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" +fi +printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" +mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" + +clean || : +exec_maven "$@" diff --git a/mvnw.cmd b/mvnw.cmd new file mode 100644 index 0000000..249bdf3 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,149 @@ +<# : batch portion +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM http://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Apache Maven Wrapper startup batch script, version 3.3.2 +@REM +@REM Optional ENV vars +@REM MVNW_REPOURL - repo url base for downloading maven distribution +@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven +@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output +@REM ---------------------------------------------------------------------------- + +@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) +@SET __MVNW_CMD__= +@SET __MVNW_ERROR__= +@SET __MVNW_PSMODULEP_SAVE=%PSModulePath% +@SET PSModulePath= +@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( + IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) +) +@SET PSModulePath=%__MVNW_PSMODULEP_SAVE% +@SET __MVNW_PSMODULEP_SAVE= +@SET __MVNW_ARG0_NAME__= +@SET MVNW_USERNAME= +@SET MVNW_PASSWORD= +@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) +@echo Cannot start maven from wrapper >&2 && exit /b 1 +@GOTO :EOF +: end batch / begin powershell #> + +$ErrorActionPreference = "Stop" +if ($env:MVNW_VERBOSE -eq "true") { + $VerbosePreference = "Continue" +} + +# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties +$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl +if (!$distributionUrl) { + Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" +} + +switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { + "maven-mvnd-*" { + $USE_MVND = $true + $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" + $MVN_CMD = "mvnd.cmd" + break + } + default { + $USE_MVND = $false + $MVN_CMD = $script -replace '^mvnw','mvn' + break + } +} + +# apply MVNW_REPOURL and calculate MAVEN_HOME +# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ +if ($env:MVNW_REPOURL) { + $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } + $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" +} +$distributionUrlName = $distributionUrl -replace '^.*/','' +$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' +$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" +if ($env:MAVEN_USER_HOME) { + $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" +} +$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' +$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" + +if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { + Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" + Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" + exit $? +} + +if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { + Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" +} + +# prepare tmp dir +$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile +$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" +$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null +trap { + if ($TMP_DOWNLOAD_DIR.Exists) { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } + } +} + +New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null + +# Download and Install Apache Maven +Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." +Write-Verbose "Downloading from: $distributionUrl" +Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" + +$webclient = New-Object System.Net.WebClient +if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { + $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) +} +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null + +# If specified, validate the SHA-256 sum of the Maven distribution zip file +$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum +if ($distributionSha256Sum) { + if ($USE_MVND) { + Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." + } + Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash + if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { + Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." + } +} + +# unzip and move +Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null +Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null +try { + Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null +} catch { + if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { + Write-Error "fail to move MAVEN_HOME" + } +} finally { + try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } + catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } +} + +Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..c8e6ad5 --- /dev/null +++ b/pom.xml @@ -0,0 +1,121 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.5.3 + + + com.linearpast + MinecraftManager + 1.0.1 + MinecraftManager + MinecraftManager + + 17 + + + + org.springframework.boot + spring-boot-starter + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-mail + + + org.projectlombok + lombok + 1.18.36 + true + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.4.0 + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + org.apache.httpcomponents + httpclient + 4.0.2 + + + commons-lang + commons-lang + 2.5 + + + com.mysql + mysql-connector-j + + + + com.google.code.gson + gson + + + + io.github.MrGraversen + minecraft-rcon + 1.0.0 + + + + org.springframework.boot + spring-boot-configuration-processor + true + + + + + + jitpack.io + https://jitpack.io + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + repackage + + + + + + + + src/main/resources + + **/*.* + + + + + + diff --git a/src/main/java/com/linearpast/minecraftmanager/MinecraftManagerApplication.java b/src/main/java/com/linearpast/minecraftmanager/MinecraftManagerApplication.java new file mode 100644 index 0000000..02457fd --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/MinecraftManagerApplication.java @@ -0,0 +1,13 @@ +package com.linearpast.minecraftmanager; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class MinecraftManagerApplication { + + public static void main(String[] args) { + SpringApplication.run(MinecraftManagerApplication.class, args); + } + +} diff --git a/src/main/java/com/linearpast/minecraftmanager/controller/EmailController.java b/src/main/java/com/linearpast/minecraftmanager/controller/EmailController.java new file mode 100644 index 0000000..3c9fe2e --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/controller/EmailController.java @@ -0,0 +1,26 @@ +package com.linearpast.minecraftmanager.controller; + +import com.linearpast.minecraftmanager.service.impl.EmailServiceImpl; +import jakarta.servlet.http.HttpServletResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import java.io.IOException; + +@RestController +public class EmailController { + @Autowired + private EmailServiceImpl emailServiceImpl; + + @GetMapping("/api/confirm") + public void confirm(@RequestParam String token, HttpServletResponse response) throws IOException { + if(!emailServiceImpl.validateToken(token)) { + response.setStatus(HttpServletResponse.SC_FORBIDDEN); + return; + } + emailServiceImpl.markTokenAsUsed(token); + response.sendRedirect("/player/emailSuccess"); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/controller/MainController.java b/src/main/java/com/linearpast/minecraftmanager/controller/MainController.java new file mode 100644 index 0000000..dcc1568 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/controller/MainController.java @@ -0,0 +1,186 @@ +package com.linearpast.minecraftmanager.controller; + +import com.linearpast.minecraftmanager.entity.Operators; +import com.linearpast.minecraftmanager.entity.Players; +import com.linearpast.minecraftmanager.service.inter.OperatorsService; +import com.linearpast.minecraftmanager.service.inter.PlayerAnswersService; +import com.linearpast.minecraftmanager.service.inter.PlayersService; +import com.linearpast.minecraftmanager.service.impl.EmailServiceImpl; +import com.linearpast.minecraftmanager.utils.Result; +import com.linearpast.minecraftmanager.utils.config.ConfigLoader; +import com.linearpast.minecraftmanager.utils.http.HttpApiUtils; +import jakarta.servlet.http.HttpSession; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.servlet.mvc.support.RedirectAttributes; + +import java.util.List; + +@Controller +public class MainController { + @GetMapping("/") + public String index() { + return "redirect:/player/login"; + } + + @Controller + @RequestMapping("/player") + public static class PlayerAccountController{ + @Autowired + private PlayersService playersService; + @Autowired + private EmailServiceImpl emailServiceImpl; + @Autowired + private PlayerAnswersService playerAnswersService; + + @PostMapping("/login") + public String login( + @RequestParam(name = "mcName") String mcName, + @RequestParam(name = "qq") String qq, + HttpSession session, + RedirectAttributes redirectAttributes + ) { + String uuid = HttpApiUtils.minecraftAccountQuery(mcName); + boolean matches = qq.matches("^\\d+$"); + if(uuid == null || !matches) { + redirectAttributes.addAttribute("error", "不存在该玩家或qq号"); + return "redirect:/player/login"; + } + Players player = playersService.getPlayer(mcName); + Players playerIsApply = playersService.getPlayerIsApply(mcName, qq); + if(player != null && !qq.equals(player.getQq())) { + redirectAttributes.addAttribute("error", "玩家" + mcName + "已经被qq用户" + player.getQq() + "申请过白名单"); + return "redirect:/player/login"; + } + try { + if(!playerIsApply.getConfirmationEmail().getActive()){ + playersService.forceDeletePlayer(List.of(playerIsApply.getId())); + emailServiceImpl.deleteConfirmationEmail(playerIsApply.getConfirmationEmail().getId()); + redirectAttributes.addAttribute("error", "未验证邮件,已清空数据,请重新登陆"); + return "redirect:/player/login"; + } + }catch (Exception ignored) {} + if(playerIsApply != null){ + session.setAttribute("apply", playerIsApply.getStatus()); + if(playerIsApply.getStatus() == (byte) 1 || playerIsApply.getStatus() == (byte) 3){ + Integer score = playersService.getPlayerScoreById(playerIsApply.getId()); + if(score != null) { + session.setAttribute("score", score); + } + } + } + session.setAttribute("qq", qq); + session.setAttribute("mcName", mcName); + session.setAttribute("isLoggedIn", true); + session.setAttribute("uuid", uuid); + return "redirect:/player/home"; + } + @GetMapping("/home") + public String home(Model model, HttpSession session) { + String qq = (String) session.getAttribute("qq"); + String base64 = HttpApiUtils.qqAvatarQuery(qq); + if(base64 != null) model.addAttribute("avatar", base64); + return "player/apply"; + } + @GetMapping + public String index(){ + return "redirect:/player/login"; + } + @GetMapping("/login") + public String adminLoginIndex(@RequestParam(name = "error", required = false) String error, Model model){ + model.addAttribute("error", error); + return "player/login"; + } + @GetMapping("/logout") + public String logout(HttpSession session){ + session.invalidate(); + return "redirect:/player/login"; + } + @GetMapping("/emailSuccess") + public String emailSuccess(){ + return "player/email-success"; + } + } + + @Controller + @RequestMapping("/admin") + public static class AdminAccountController{ + @Autowired + private OperatorsService operatorsService; + @Autowired + private PlayersService playersService; + @PostMapping("/login") + public String adminLogin( + @RequestParam(name = "username") String username, + @RequestParam(name = "password") String password, + HttpSession session, + RedirectAttributes redirectAttributes + ){ + Operators login = operatorsService.login(username, password); + if(login != null){ + session.setAttribute("adminAccount", login); + session.setAttribute("isLoggedIn", true); + return "redirect:/admin/home"; + } + redirectAttributes.addAttribute("error", "账号密码错误"); + return "redirect:/admin/login"; + } + + @GetMapping("/welcome") + public String welcome(Model model){ + int passCount = playersService.getPlayersCountByStatus((byte) 1); + int unmarkCount = playersService.getPlayersCountByStatus((byte) 2); + int denyCount = playersService.getPlayersCountByStatus((byte) 3); + model.addAttribute("email", ConfigLoader.config.get("spring.mail.username")); + model.addAttribute("passCount", passCount); + model.addAttribute("unmarkCount", unmarkCount); + model.addAttribute("denyCount", denyCount); + return "admin/welcome-page"; + } + + @GetMapping("/home") + public String home(){ + return "admin/index"; + } + + @GetMapping("/add") + public String add(){ + return "admin/add-operator"; + } + + @GetMapping + public String index(){ + return "redirect:/admin/login"; + } + + @GetMapping("/login") + public String adminLoginIndex(@RequestParam(name = "error", required = false) String error, Model model){ + model.addAttribute("error", error); + return "admin/login"; + } + @ResponseBody + @GetMapping("/logout") + public Result logout(HttpSession session){ + session.invalidate(); + return Result.success(); + } + + @GetMapping("/application") + public String application(){ + return "admin/apply-manager"; + } + + @GetMapping("/questions") + public String question(){ + return "admin/question-manager"; + } + + @GetMapping("/answers") + public String answers(){ + return "admin/answer-manager"; + } + } + +} diff --git a/src/main/java/com/linearpast/minecraftmanager/controller/OperatorController.java b/src/main/java/com/linearpast/minecraftmanager/controller/OperatorController.java new file mode 100644 index 0000000..34041ea --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/controller/OperatorController.java @@ -0,0 +1,33 @@ +package com.linearpast.minecraftmanager.controller; + +import com.linearpast.minecraftmanager.entity.Operators; +import com.linearpast.minecraftmanager.service.inter.OperatorsService; +import com.linearpast.minecraftmanager.utils.Result; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.StringUtils; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping("/api/operators") +public class OperatorController { + @Autowired + private OperatorsService operatorsService; + + @PostMapping("/save") + public Result save(@RequestBody Operators operators) { + if(!StringUtils.hasText(operators.getNickname()) || + !StringUtils.hasText(operators.getPassword()) || + !StringUtils.hasText(operators.getUsername()) || + !StringUtils.hasText(operators.getRoleName())) { + return Result.error("错误"); + } + if(operators.getUsername().length() <= 3) return Result.error("用户名应该大于3字符"); + if(operators.getPassword().length() < 8 || operators.getPassword().matches("([0-9]{8,})|([a-zA-Z]){8,}")) + return Result.error("密码应同时包含数字和字母且至少8个字符"); + Operators save = operatorsService.save(operators); + return save == null ? Result.error("服务器错误") : Result.success(); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/controller/PlayerAnswerController.java b/src/main/java/com/linearpast/minecraftmanager/controller/PlayerAnswerController.java new file mode 100644 index 0000000..7a5ee1c --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/controller/PlayerAnswerController.java @@ -0,0 +1,107 @@ +package com.linearpast.minecraftmanager.controller; + +import com.linearpast.minecraftmanager.entity.PlayerAnswers; +import com.linearpast.minecraftmanager.entity.Players; +import com.linearpast.minecraftmanager.entity.dto.ManagerAnswerDTO; +import com.linearpast.minecraftmanager.entity.dto.MarkingScoreDTO; +import com.linearpast.minecraftmanager.entity.dto.SearchAnswerDTO; +import com.linearpast.minecraftmanager.entity.view.PlayerInfoView; +import com.linearpast.minecraftmanager.service.inter.PlayerAnswersService; +import com.linearpast.minecraftmanager.service.inter.PlayersService; +import com.linearpast.minecraftmanager.utils.Result; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; + +@RestController +@RequestMapping("/api/playerAnswer") +public class PlayerAnswerController { + @Autowired + private PlayersService playersService; + @Autowired + private PlayerAnswersService playerAnswersService; + + @PostMapping("/markingAnswer") + public Result marking(@RequestBody MarkingScoreDTO markingScoreDTO) { + Integer playerId = markingScoreDTO.getPlayerId(); + if(playerId == null) return Result.error("请重新获取数据"); + List playerAnswers = playerAnswersService.getPlayerAnswers(new Players() {{ + setId(playerId); + }}); + Map scoreMap = new HashMap<>(); + for (MarkingScoreDTO.AnswerScore answerScore : markingScoreDTO.getAnswerScore()) { + scoreMap.put(answerScore.getQuestionId(), answerScore.getScore()); + } + for (PlayerAnswers playerAnswer : playerAnswers) { + Integer score = scoreMap.get(playerAnswer.getId().getQuestionId()); + if(score == null) { + playerAnswer.setScore(null); + continue; + } + playerAnswer.setScore(Math.min(playerAnswer.getQuestions().getScore(), score)); + } + List answers = playerAnswersService.saveAllPlayerAnswers(playerAnswers); + return answers == null ? Result.error("服务器错误") : Result.success(); + } + + @PostMapping("/getAll") + public Result getAll(@RequestBody SearchAnswerDTO searchAnswerDTO) { + Page players = playersService.getPlayers( + searchAnswerDTO.getPlayerName(), + searchAnswerDTO.getQq(), null, + searchAnswerDTO.getStatus(), + searchAnswerDTO.getMinValue(), + searchAnswerDTO.getMaxValue(), + PageRequest.of(searchAnswerDTO.getPage() - 1, searchAnswerDTO.getSize()) + ); + List result = new ArrayList<>(); + List playerIds = players.getContent().stream().map(PlayerInfoView::getId).toList(); + Map> answersMap = playerAnswersService.getAllPlayerAnswers(playerIds) + .stream().collect(Collectors.groupingBy(playerAnswers -> playerAnswers.getPlayers().getId())); + + for (PlayerInfoView player : players.getContent()) { + List playerAnswers = answersMap.getOrDefault(player.getId(), List.of()); + ManagerAnswerDTO answerDTO = getManagerAnswerDTO(player, playerAnswers); + result.add(answerDTO); + } + return Result.successPage(result, players.getTotalElements()); + } + + private ManagerAnswerDTO getManagerAnswerDTO(PlayerInfoView player, List playerAnswers) { + boolean readStatus = true; + Map> answersMap = new HashMap<>(); + int fullScore = 0; + for (PlayerAnswers playerAnswer : playerAnswers) { + int type = playerAnswer.getQuestions().getType(); + answersMap.computeIfAbsent(type, k -> new ArrayList<>()).add(playerAnswer); + if(playerAnswer.getScore() == null && type == 3){ + readStatus = false; + } + fullScore += playerAnswer.getQuestions().getScore(); + } + + return new ManagerAnswerDTO( + player.getId(), + player.getPlayerName(), + player.getQq(), + player.getStatus(), + readStatus, + player.getTotalScore(), + fullScore, + answersMap.getOrDefault(1, null), + answersMap.getOrDefault(2, null), + answersMap.getOrDefault(3, null), + player.getEmailActive() + ); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/controller/PlayerController.java b/src/main/java/com/linearpast/minecraftmanager/controller/PlayerController.java new file mode 100644 index 0000000..8668967 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/controller/PlayerController.java @@ -0,0 +1,330 @@ +package com.linearpast.minecraftmanager.controller; + +import com.google.gson.Gson; +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonParser; +import com.linearpast.minecraftmanager.entity.*; +import com.linearpast.minecraftmanager.entity.dto.*; +import com.linearpast.minecraftmanager.entity.embeddable.PlayerAnswersId; +import com.linearpast.minecraftmanager.entity.view.PlayerInfoView; +import com.linearpast.minecraftmanager.service.inter.PlayerAnswersService; +import com.linearpast.minecraftmanager.service.inter.PlayersService; +import com.linearpast.minecraftmanager.service.inter.QuestionsService; +import com.linearpast.minecraftmanager.service.inter.RegionService; +import com.linearpast.minecraftmanager.service.impl.EmailServiceImpl; +import com.linearpast.minecraftmanager.utils.Result; +import com.linearpast.minecraftmanager.utils.http.HttpApiUtils; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpSession; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.util.StringUtils; +import org.springframework.web.bind.annotation.*; + +import java.time.LocalDateTime; +import java.time.format.DateTimeFormatter; +import java.util.*; +import java.util.concurrent.CompletableFuture; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +@RestController +@RequestMapping("/api/player") +public class PlayerController { + + @Autowired + private PlayersService playersService; + @Autowired + private RegionService regionService; + @Autowired + private EmailServiceImpl emailServiceImpl; + + + @PostMapping("/getApply") + public Result getApplyPage( + @RequestParam(required = false) String playerName, + @RequestParam(required = false) String qq, + @RequestParam(required = false) String uuid, + @RequestParam(required = false) Byte status, + @RequestParam(required = false) Integer minValue, + @RequestParam(required = false) Integer maxValue, + @RequestParam(defaultValue = "1") Integer page, + @RequestParam(defaultValue = "10") Integer size + ){ + Page playerScores = playersService.getPlayers( + playerName, qq, uuid, status, minValue, maxValue, PageRequest.of(page - 1, size) + ); + return Result.successPage(playerScores.getContent(), playerScores.getTotalElements()); + } + + @DeleteMapping("/delete/{id}") + public Result delete(@PathVariable Integer id){ + return playersService.deletePlayer(id) ? Result.success() : Result.error("删除失败,不存在玩家或Rcon连接错误"); + } + + @DeleteMapping("/forceDelete") + public Result forceDelete(@RequestBody List ids){ + try { + playersService.forceDeletePlayer(ids); + return Result.success(); + }catch (Exception ignored){} + return Result.error("删除失败"); + } + + @PostMapping("/changeStatus") + public Result updateStatus(@RequestBody PlayerStatusDTO playerStatusDTO, HttpSession session){ + Operators operators = (Operators) session.getAttribute("adminAccount"); + int code = playersService.updatePlayerStatus(playerStatusDTO.getId(), playerStatusDTO.getStatus(), operators); + return code < 1 ? Result.error("操作失败") : Result.success(); + } + + @DeleteMapping("/batchDelete") + public Result batchDelete(@RequestBody List ids){ + int code = playersService.deletePlayers(ids); + return code > 0 ? Result.success().msg("操作成功:" + code + "/" + ids.size() + "条数据") : + Result.error("删除失败,不存在玩家或Rcon连接错误"); + } + + @PostMapping("/batchChangeStatus") + public Result batchPass(@RequestBody BatchStatusUpdateDTO dto, HttpSession session){ + Operators operators = (Operators) session.getAttribute("adminAccount"); + int code = playersService.updatePlayersStatus(dto.getIds(), dto.getStatus(), operators); + return code < 1 ? Result.error("操作失败") : Result.success().msg("操作成功:" + code + "/" + dto.getIds().size() + "条数据"); + } + + @PostMapping("/save") + public Result save(@RequestBody PlayerSaveDTO players, HttpSession session){ + try { + Operators account = (Operators) session.getAttribute("adminAccount"); + if(account == null) return Result.error("无权限"); + players.setPid(account.getId()); + if(players.getId() == null){ + Players player = playersService.getPlayer(players.getPlayerName()); + if(player != null) return Result.error("玩家"+ player.getPlayerName() +"已存在"); + String uuid = HttpApiUtils.minecraftAccountQuery(players.getPlayerName()); + if(uuid == null){ + return Result.error("非正版账号"); + } + Region region = regionService.findRegion(players.getCode(), null, null).get(0); + if(players.getCode() != null){ + if(region.getCode() == null) return Result.error("邮政编码错误,不存在该地址"); + } + ConfirmationEmail email = new ConfirmationEmail(); + email.setActive(true); + ConfirmationEmail confirmationEmail = emailServiceImpl.saveConfirmationEmail(email); + Players newPlayer = new Players(); + newPlayer.setPlayerName(players.getPlayerName()); + newPlayer.setQq(players.getQq()); + newPlayer.setUuid(uuid); + newPlayer.setStatus(players.getStatus()); + newPlayer.setDescription(players.getDescription()); + newPlayer.setCreateTime(LocalDateTime.parse(players.getCreateTime(), + DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")) + ); + newPlayer.setRegion(region); + newPlayer.setOperators(account); + newPlayer.setConfirmationEmail(confirmationEmail); + Players result = playersService.savePlayer(newPlayer); + if(result == null) return Result.error("服务器错误"); + }else { + Players player = playersService.getPlayerById(players.getId()); + if(player == null) return Result.error("玩家不存在"); + Players playerByName = playersService.getPlayer(players.getPlayerName()); + if(playerByName != null && !Objects.equals(playerByName.getId(), player.getId())) + return Result.error("玩家" + playerByName.getPlayerName() + "已存在"); + if(!Objects.equals(player.getRegion().getCode(), players.getCode())){ + Region newRegion = regionService.findRegion(players.getCode(), null, null).get(0); + if(players.getCode() != null){ + if(newRegion.getCode() == null) return Result.error("邮政编码错误,不存在该地址"); + } + player.setRegion(newRegion); + } + String uuid = HttpApiUtils.minecraftAccountQuery(players.getPlayerName()); + if(uuid == null){ + return Result.error("非正版账号"); + } + player.setPlayerName(players.getPlayerName()); + player.setQq(players.getQq()); + player.setUuid(uuid); + player.setStatus(players.getStatus()); + player.setCreateTime(LocalDateTime.parse(players.getCreateTime(), + DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")) + ); + player.setDescription(players.getDescription()); + player.setOperators(account); + Players result = playersService.savePlayer(player); + if(result == null) return Result.error("服务器错误"); + } + return Result.success(); + }catch (Exception ignored){} + return Result.error("操作失败"); + } + + @RestController + @RequestMapping("/api/answer") + public static class PlayerAnswerController{ + @Autowired + private QuestionsService questionsService; + @Autowired + private PlayersService playersService; + @Autowired + private PlayerAnswersService playerAnswersService; + @Autowired + private EmailServiceImpl emailServiceImpl; + + @PostMapping("/getQuestion") + public Result getQuestion(@RequestBody SimpleQuestionDTO questionDTO, HttpSession session){ + if(questionDTO.getCode() == null) return Result.error("请选择地址"); + if(!StringUtils.hasText(questionDTO.getDescription())) return Result.error("请输入你的来由"); + + //更新session + session.setAttribute("code", questionDTO.getCode()); + session.setAttribute("description", questionDTO.getDescription()); + + //判断白名单是否已存在该玩家 + String playerName = (String)session.getAttribute("mcName"); + Players existPlayer = playersService.getPlayer(playerName); + if(existPlayer != null) return Result.error("玩家" + playerName + "已使用qq" + existPlayer.getQq() + "申请过白名单"); + + //获取所有题目,并将数据进行转变以方便前端渲染 + List allQuestions = questionsService.getAllQuestions(); + Map> typeGroups = new HashMap<>(); + if(allQuestions != null){ + //一次遍历将所有题目按类型分到Map + for (Questions question : allQuestions) { + int type = question.getType(); + if(type == 1){ + String options = question.getOptions(); + JsonArray asJsonArray = JsonParser.parseString(options).getAsJsonArray(); + JsonArray result = asJsonArray.get(0).getAsJsonArray(); + question.setOptions(result.toString()); + } else if(type == 2){ + String options = question.getOptions(); + String processed = options.replaceAll("\\$\\{.*?}", "\\${}"); + String[] parts = processed.split("(?<=\\$\\{})|(?=\\$\\{})"); + JsonArray result = new Gson().toJsonTree(Arrays.asList(parts)).getAsJsonArray(); + question.setOptions(result.toString()); + } + typeGroups.computeIfAbsent(type, k -> new ArrayList<>()).add(question); + } + } + + //数据存储发送到前端 + QuestionListDTO questionListDTO = new QuestionListDTO(); + questionListDTO.setOptionQuestions(typeGroups.getOrDefault(1, null)); + questionListDTO.setBlankQuestions(typeGroups.getOrDefault(2, null)); + questionListDTO.setTextQuestions(typeGroups.getOrDefault(3, null)); + return Result.success(questionListDTO); + } + + @PostMapping("/putQuestion") + public Result putQuestion(@RequestBody List answerDTOS, HttpSession session, HttpServletRequest request){ + if(answerDTOS != null && !answerDTOS.isEmpty()){ + //获取session来添加一个players到数据库 + String playerName = (String) session.getAttribute("mcName"); + String qq = (String) session.getAttribute("qq"); + Long code = (Long) session.getAttribute("code"); + String uuid = (String) session.getAttribute("uuid"); + String description = (String) session.getAttribute("description"); + if(code == null) return Result.error("请重新登陆"); + Players player = new Players(); + player.setPlayerName(playerName); + player.setQq(qq); + player.setUuid(uuid); + player.setDescription(description); + player.setRegion(new Region(){{setCode(code);}}); + player.setCreateTime(LocalDateTime.now()); + player.setStatus((byte)2); + Players playerIsApply = playersService.getPlayerIsApply(playerName, qq); + Players players; + if(playerIsApply == null) players = playersService.savePlayer(player); + else players = null; + if(players == null) return Result.error("你已经申请过白名单"); + + + try { + //获取所有问题,比对答案,计算分数,保存答案 + List allQuestions = questionsService.getAllQuestions(); + List answers = new ArrayList<>(); + for (PlayerAnswerDTO answerDTO : answerDTOS) { + Questions questions = allQuestions.stream().filter(q -> q.getId() == answerDTO.getId()).findFirst().orElse(null); + if(questions != null){ + PlayerAnswers playerAnswers = new PlayerAnswers(); + playerAnswers.setPlayers(players); + playerAnswers.setQuestions(questions); + playerAnswers.setAnswer(answerDTO.getAnswer()); + PlayerAnswersId playerAnswersId = new PlayerAnswersId(); + playerAnswersId.setPlayerId(players.getId()); + playerAnswersId.setQuestionId(questions.getId()); + playerAnswers.setId(playerAnswersId); + + String answer = answerDTO.getAnswer(); + if(answerDTO.getType() == 1){ + JsonArray playerAnswer = JsonParser.parseString(answer).getAsJsonArray(); + JsonArray options = JsonParser.parseString(questions.getOptions()).getAsJsonArray(); + JsonArray correctAnswer = options.get(1).getAsJsonArray(); + if(correctAnswer.size() != playerAnswer.size()){ + playerAnswers.setScore(0); + }else { + playerAnswers.setScore(questions.getScore()); + for (int i = 0; i < correctAnswer.size(); i++) { + if(correctAnswer.get(i).getAsBoolean() != playerAnswer.get(i).getAsBoolean()){ + playerAnswers.setScore(0); + break; + } + } + } + }else if (answerDTO.getType() == 2){ + List resultList = new ArrayList<>(); + JsonArray asJsonArray = JsonParser.parseString(answer).getAsJsonArray(); + for (JsonElement element : asJsonArray) { + resultList.add(element.getAsString()); + } + String regex = "\\$\\{(.+?)}"; + Pattern pattern = Pattern.compile(regex); + Matcher matcher = pattern.matcher(questions.getOptions()); + List result = new ArrayList<>(); + while (matcher.find()) { + result.add(matcher.group(1)); + } + if(resultList.equals(result)){ + playerAnswers.setScore(questions.getScore()); + }else { + playerAnswers.setScore(0); + } + } + answers.add(playerAnswers); + } + } + List result = playerAnswersService.saveAllPlayerAnswers(answers); + + String token = emailServiceImpl.generateToken(players); + String serverName = request.getServerName(); + if(serverName.equals("localhost")) serverName = "127.0.0.1"; + String host = String.format("%s://%s:%d", request.getScheme(), serverName, request.getServerPort()); + String email = players.getQq() + "@qq.com"; + String mcName = players.getPlayerName(); + //邮件发送 + CompletableFuture.runAsync(() -> { + try { + emailServiceImpl.sendConfirmationEmail(mcName, email, token, host); + } catch (Exception e) { + playerAnswersService.deleteAllPlayerAnswers(players); + playersService.deletePlayer(players.getId()); + } + }); + + //更新session + session.setAttribute("apply", players.getStatus()); + if(result != null) return Result.success().msg("请在30分钟内检查邮箱并确认\n未确认将清除申请\n验证前请勿重登本网站\n若未发送邮件请联系管理"); + }catch (Exception ignored){ + playerAnswersService.deleteAllPlayerAnswers(players); + playersService.deletePlayer(players.getId()); + } + } + return Result.error("数据错误"); + } + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/controller/QuestionController.java b/src/main/java/com/linearpast/minecraftmanager/controller/QuestionController.java new file mode 100644 index 0000000..034ff1b --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/controller/QuestionController.java @@ -0,0 +1,79 @@ +package com.linearpast.minecraftmanager.controller; + +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; +import com.linearpast.minecraftmanager.entity.Questions; +import com.linearpast.minecraftmanager.entity.dto.QuestionSaveDTO; +import com.linearpast.minecraftmanager.service.inter.QuestionsService; +import com.linearpast.minecraftmanager.utils.Result; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.web.bind.annotation.*; + +import java.util.List; + +@RestController +@RequestMapping("/api/questions") +public class QuestionController { + @Autowired + private QuestionsService questionsService; + + @PostMapping("/save") + public Result saveQuestion(@RequestBody QuestionSaveDTO questionSaveDTO) { + if (questionSaveDTO != null) { + Questions questions = new Questions(); + if(questionSaveDTO.getType() == (byte) 1){ + JsonArray inputArray = new JsonArray(); + JsonArray correct = new JsonArray(); + JsonArray asJsonArray = JsonParser.parseString(questionSaveDTO.getOptionsData()).getAsJsonArray(); + if(asJsonArray.size() < 2) return Result.error("至少应有两个选项"); + boolean hasCorrect = false; + for (JsonElement jsonElement : asJsonArray) { + JsonObject asJsonObject = jsonElement.getAsJsonObject(); + boolean check = asJsonObject.get("check").getAsBoolean(); + hasCorrect = check || hasCorrect; + correct.add(check); + inputArray.add(asJsonObject.get("input").getAsString()); + } + if(!hasCorrect) return Result.error("应至少有一个答案"); + JsonArray resultArray = new JsonArray(); + resultArray.add(inputArray); + resultArray.add(correct); + questions.setOptions(resultArray.toString()); + } else if (questionSaveDTO.getType() == (byte) 2) { + questions.setOptions(questionSaveDTO.getBlankContent()); + } + if(questionSaveDTO.getId() != null) questions.setId(questionSaveDTO.getId()); + questions.setTitle(questionSaveDTO.getTitle()); + questions.setScore(questionSaveDTO.getScore()); + questions.setType(questionSaveDTO.getType()); + Questions result = questionsService.saveQuestions(questions); + return result == null ? Result.error("服务器错误") : Result.success(); + } + return Result.error("错误请求"); + } + + @PostMapping("/getAll") + public Result getAllQuestions( + @RequestParam(defaultValue = "1") Integer page, + @RequestParam(defaultValue = "10") Integer size + ) { + Page questions = questionsService.getQuestions(PageRequest.of(page - 1, size)); + return Result.successPage(questions.getContent(), questions.getTotalElements()); + } + + @DeleteMapping("/delete/{id}") + public Result delete(@PathVariable Integer id){ + questionsService.deleteQuestionsById(id); + return Result.success(); + } + + @DeleteMapping("/batchDelete") + public Result batchDelete(@RequestBody List ids){ + questionsService.deleteQuestions(ids); + return Result.success(); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/controller/RegionController.java b/src/main/java/com/linearpast/minecraftmanager/controller/RegionController.java new file mode 100644 index 0000000..46ae27f --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/controller/RegionController.java @@ -0,0 +1,31 @@ +package com.linearpast.minecraftmanager.controller; + +import com.linearpast.minecraftmanager.entity.Region; +import com.linearpast.minecraftmanager.entity.dto.RegionFindDTO; +import com.linearpast.minecraftmanager.service.inter.RegionService; +import com.linearpast.minecraftmanager.utils.Result; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@RestController +@RequestMapping("/api/region") +public class RegionController { + + @Autowired + private RegionService regionService; + + @PostMapping("/findRegion") + public Result findRegion(@RequestBody RegionFindDTO regionFindDTO) { + List region = regionService.findRegion( + regionFindDTO.getCode(), + regionFindDTO.getParentCode(), + regionFindDTO.getLevel() + ); + return Result.success(region); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/ConfirmationEmail.java b/src/main/java/com/linearpast/minecraftmanager/entity/ConfirmationEmail.java new file mode 100644 index 0000000..e81dbf3 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/ConfirmationEmail.java @@ -0,0 +1,24 @@ +package com.linearpast.minecraftmanager.entity; + +import jakarta.persistence.*; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +@Entity +@Table(name = "confirmation_email") +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ConfirmationEmail { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + private String token; + private Boolean used; + @Column(name = "expired_time") + private LocalDateTime expiredTime; + private Boolean active; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/Operators.java b/src/main/java/com/linearpast/minecraftmanager/entity/Operators.java new file mode 100644 index 0000000..4027c5f --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/Operators.java @@ -0,0 +1,23 @@ +package com.linearpast.minecraftmanager.entity; + +import jakarta.persistence.*; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Entity +@Table(name = "operators") +@NoArgsConstructor +@AllArgsConstructor +@Data +public class Operators { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + + private Byte permissionLevel; + private String roleName; + private String username; + private String password; + private String nickname; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/PlayerAnswers.java b/src/main/java/com/linearpast/minecraftmanager/entity/PlayerAnswers.java new file mode 100644 index 0000000..ed9dc8c --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/PlayerAnswers.java @@ -0,0 +1,31 @@ +package com.linearpast.minecraftmanager.entity; + +import com.linearpast.minecraftmanager.entity.embeddable.PlayerAnswersId; +import jakarta.persistence.*; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Entity +@Table(name = "player_answers") +@Data +@NoArgsConstructor +@AllArgsConstructor +public class PlayerAnswers { + @EmbeddedId + private PlayerAnswersId id; + + @ManyToOne + @MapsId("playerId") + @JoinColumn(name = "player_id") + private Players players; + + @ManyToOne + @MapsId("questionId") + @JoinColumn(name = "question_id") + private Questions questions; + + @Lob + private String answer; + private Integer score; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/Players.java b/src/main/java/com/linearpast/minecraftmanager/entity/Players.java new file mode 100644 index 0000000..39cf982 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/Players.java @@ -0,0 +1,38 @@ +package com.linearpast.minecraftmanager.entity; + +import jakarta.persistence.*; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +@Entity +@Data +@AllArgsConstructor +@NoArgsConstructor +@Table(name = "players") +public class Players { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + + @ManyToOne + @JoinColumn(name = "operator_id") + private Operators operators; + private String playerName; + private String uuid; + private Byte status; + private String qq; + + @Column(name = "create_time") + private LocalDateTime createTime; + private String description; + @OneToOne + @JoinColumn(name = "email") + private ConfirmationEmail confirmationEmail; + + @ManyToOne + @JoinColumn(name = "region_code") + private Region region; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/Questions.java b/src/main/java/com/linearpast/minecraftmanager/entity/Questions.java new file mode 100644 index 0000000..f0ded98 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/Questions.java @@ -0,0 +1,23 @@ +package com.linearpast.minecraftmanager.entity; + +import jakarta.persistence.*; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Entity +@Data +@NoArgsConstructor +@AllArgsConstructor +@Table(name = "questions") +public class Questions { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private int id; + + private String title; + private Byte type; + @Lob + private String options; + private Integer score; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/Region.java b/src/main/java/com/linearpast/minecraftmanager/entity/Region.java new file mode 100644 index 0000000..9de6b03 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/Region.java @@ -0,0 +1,25 @@ +package com.linearpast.minecraftmanager.entity; + +import jakarta.persistence.*; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Entity +@Table(name = "region") +@AllArgsConstructor +@NoArgsConstructor +public class Region { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Long code; + + private String name; + private String fullName; + + @Column(name = "parent_code") + private Long parentCode; + + private Byte level; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/BatchStatusUpdateDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/BatchStatusUpdateDTO.java new file mode 100644 index 0000000..986a3ef --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/BatchStatusUpdateDTO.java @@ -0,0 +1,13 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.util.List; + +@Data +@NoArgsConstructor +public class BatchStatusUpdateDTO { + private List ids; + private Byte status; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/ManagerAnswerDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/ManagerAnswerDTO.java new file mode 100644 index 0000000..b2c3bef --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/ManagerAnswerDTO.java @@ -0,0 +1,25 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import com.linearpast.minecraftmanager.entity.PlayerAnswers; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.util.List; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ManagerAnswerDTO { + private Integer id; + private String playerName; + private String qq; + private Byte status; + private Boolean readStatus; + private Integer score; + private Integer fullScore; + private List optionAnswers; + private List blankAnswers; + private List textAnswers; + private Boolean active; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/MarkingScoreDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/MarkingScoreDTO.java new file mode 100644 index 0000000..041d7bf --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/MarkingScoreDTO.java @@ -0,0 +1,20 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.util.List; + +@Data +@NoArgsConstructor +public class MarkingScoreDTO { + private Integer playerId; + private List answerScore; + + @Data + @NoArgsConstructor + public static class AnswerScore{ + private Integer questionId; + private Integer score; + } +} \ No newline at end of file diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerAnswerDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerAnswerDTO.java new file mode 100644 index 0000000..6fa9e31 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerAnswerDTO.java @@ -0,0 +1,12 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +public class PlayerAnswerDTO { + private Integer id; + private String answer; + private Integer type; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerSaveDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerSaveDTO.java new file mode 100644 index 0000000..c7dda3b --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerSaveDTO.java @@ -0,0 +1,18 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +public class PlayerSaveDTO { + private Integer id; + private String playerName; + private String qq; + private String description; + private Byte status; + private Integer totalScore; + private String createTime; + private Long code; + private Integer pid; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerStatusDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerStatusDTO.java new file mode 100644 index 0000000..3c52518 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/PlayerStatusDTO.java @@ -0,0 +1,11 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +public class PlayerStatusDTO { + private Integer id; + private Byte status; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/QuestionListDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/QuestionListDTO.java new file mode 100644 index 0000000..502b823 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/QuestionListDTO.java @@ -0,0 +1,15 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import com.linearpast.minecraftmanager.entity.Questions; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.util.List; + +@Data +@NoArgsConstructor +public class QuestionListDTO { + private List optionQuestions; + private List blankQuestions; + private List textQuestions; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/QuestionSaveDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/QuestionSaveDTO.java new file mode 100644 index 0000000..0f443d9 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/QuestionSaveDTO.java @@ -0,0 +1,15 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +public class QuestionSaveDTO { + private Byte type; + private Integer score; + private String title; + private String optionsData; + private String blankContent; + private Integer id; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/RegionFindDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/RegionFindDTO.java new file mode 100644 index 0000000..03b7d60 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/RegionFindDTO.java @@ -0,0 +1,12 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +public class RegionFindDTO { + private Long code; + private Long parentCode; + private Byte level; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/SearchAnswerDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/SearchAnswerDTO.java new file mode 100644 index 0000000..8cdbd44 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/SearchAnswerDTO.java @@ -0,0 +1,16 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +public class SearchAnswerDTO { + private String playerName; + private String qq; + private Byte status; + private Integer minValue; + private Integer maxValue; + private Integer page = 1; + private Integer size = 10; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/dto/SimpleQuestionDTO.java b/src/main/java/com/linearpast/minecraftmanager/entity/dto/SimpleQuestionDTO.java new file mode 100644 index 0000000..c97bce9 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/dto/SimpleQuestionDTO.java @@ -0,0 +1,11 @@ +package com.linearpast.minecraftmanager.entity.dto; + +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +public class SimpleQuestionDTO { + private Long code; + private String description; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/embeddable/PlayerAnswersId.java b/src/main/java/com/linearpast/minecraftmanager/entity/embeddable/PlayerAnswersId.java new file mode 100644 index 0000000..e1b5e6b --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/embeddable/PlayerAnswersId.java @@ -0,0 +1,21 @@ +package com.linearpast.minecraftmanager.entity.embeddable; + +import jakarta.persistence.Column; +import jakarta.persistence.Embeddable; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.io.Serializable; + +@Embeddable +@Data +@AllArgsConstructor +@NoArgsConstructor +public class PlayerAnswersId implements Serializable { + @Column(name = "player_id") + private int playerId; + + @Column(name = "question_id") + private int questionId; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/entity/view/PlayerInfoView.java b/src/main/java/com/linearpast/minecraftmanager/entity/view/PlayerInfoView.java new file mode 100644 index 0000000..c90bbd4 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/entity/view/PlayerInfoView.java @@ -0,0 +1,51 @@ +package com.linearpast.minecraftmanager.entity.view; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.Table; +import lombok.Data; +import org.hibernate.annotations.Immutable; + +import java.time.LocalDateTime; + +@Entity +@Immutable +@Data +@Table(name = "player_info_view") +public class PlayerInfoView { + @Id + @Column(name = "player_id") + private Integer id; + private String description; + private String uuid; + private Byte status; + private String qq; + + @Column(name = "create_time") + private LocalDateTime createTime; + + @Column(name = "region_code") + private Long regionCode; + + @Column(name = "operator_id") + private Integer operatorId; + + @Column(name = "player_name") + private String playerName; + + @Column(name = "region_full_name") + private String regionFullName; + + @Column(name = "operator_username") + private String operatorUsername; + + @Column(name = "operator_nickname") + private String operatorNickname; + + @Column(name = "total_score") + private Integer totalScore; + + @Column(name = "email_active") + private Boolean emailActive; +} diff --git a/src/main/java/com/linearpast/minecraftmanager/exception/GlobalExceptionHandler.java b/src/main/java/com/linearpast/minecraftmanager/exception/GlobalExceptionHandler.java new file mode 100644 index 0000000..0de4ff1 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/exception/GlobalExceptionHandler.java @@ -0,0 +1,21 @@ +package com.linearpast.minecraftmanager.exception; + +import org.springframework.web.bind.annotation.ControllerAdvice; +import org.springframework.web.bind.annotation.ExceptionHandler; + +@ControllerAdvice +public class GlobalExceptionHandler { + + @ExceptionHandler(UnauthorizedException.class) + public String handlerUnauthorized(UnauthorizedException e){ + if(e.getMessage().startsWith("redirect:")){ + return e.getMessage(); + } + return "error/404.html"; + } + + @ExceptionHandler(SystemControllerException.class) + public String handlerSystemError(SystemControllerException e){ + return "error/500.html"; + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/exception/SystemControllerException.java b/src/main/java/com/linearpast/minecraftmanager/exception/SystemControllerException.java new file mode 100644 index 0000000..b9a5aeb --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/exception/SystemControllerException.java @@ -0,0 +1,11 @@ +package com.linearpast.minecraftmanager.exception; + +import org.springframework.http.HttpStatus; +import org.springframework.web.bind.annotation.ResponseStatus; + +@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) +public class SystemControllerException extends RuntimeException{ + public SystemControllerException(String message) { + super(message); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/exception/UnauthorizedException.java b/src/main/java/com/linearpast/minecraftmanager/exception/UnauthorizedException.java new file mode 100644 index 0000000..cf7ed7b --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/exception/UnauthorizedException.java @@ -0,0 +1,11 @@ +package com.linearpast.minecraftmanager.exception; + +import org.springframework.http.HttpStatus; +import org.springframework.web.bind.annotation.ResponseStatus; + +@ResponseStatus(HttpStatus.UNAUTHORIZED) +public class UnauthorizedException extends RuntimeException{ + public UnauthorizedException(String message){ + super(message); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/interceptor/AdminInterceptor.java b/src/main/java/com/linearpast/minecraftmanager/interceptor/AdminInterceptor.java new file mode 100644 index 0000000..6c35dca --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/interceptor/AdminInterceptor.java @@ -0,0 +1,25 @@ +package com.linearpast.minecraftmanager.interceptor; + +import com.linearpast.minecraftmanager.exception.UnauthorizedException; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpSession; +import org.springframework.stereotype.Component; +import org.springframework.web.servlet.HandlerInterceptor; + +@Component +public class AdminInterceptor implements HandlerInterceptor { + + @Override + public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) { + HttpSession session = request.getSession(); + if( + session == null + || session.getAttribute("isLoggedIn") == null + || !((boolean) session.getAttribute("isLoggedIn")) + || session.getAttribute("adminAccount") == null){ + throw new UnauthorizedException("redirect:/admin/login?error=please login first"); + } + return true; + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/interceptor/PlayerInterceptor.java b/src/main/java/com/linearpast/minecraftmanager/interceptor/PlayerInterceptor.java new file mode 100644 index 0000000..018957d --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/interceptor/PlayerInterceptor.java @@ -0,0 +1,21 @@ +package com.linearpast.minecraftmanager.interceptor; + +import com.linearpast.minecraftmanager.exception.UnauthorizedException; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpSession; +import org.springframework.stereotype.Component; +import org.springframework.web.servlet.HandlerInterceptor; + +@Component +public class PlayerInterceptor implements HandlerInterceptor { + + @Override + public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) { + HttpSession session = request.getSession(); + if(session == null || session.getAttribute("mcName") == null){ + throw new UnauthorizedException("redirect:/player/login?error=please login first"); + } + return true; + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/interceptor/WebConfig.java b/src/main/java/com/linearpast/minecraftmanager/interceptor/WebConfig.java new file mode 100644 index 0000000..c7a2445 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/interceptor/WebConfig.java @@ -0,0 +1,37 @@ +package com.linearpast.minecraftmanager.interceptor; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.servlet.config.annotation.InterceptorRegistry; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +@Configuration +public class WebConfig implements WebMvcConfigurer { + + @Autowired + private AdminInterceptor adminInterceptor; + @Autowired + private PlayerInterceptor playerInterceptor; + + @Override + public void addInterceptors(InterceptorRegistry registry) { + registry.addInterceptor(adminInterceptor) + .addPathPatterns( + "/admin/**", + "/api/**" + ).excludePathPatterns( + "/admin/login/**", + "/api/answer/**", + "/api/confirm", + "/api/region/findRegion" + ); + registry.addInterceptor(playerInterceptor) + .addPathPatterns( + "/player/**", + "/api/answer/**" + ).excludePathPatterns( + "/player/login/**", + "/player/emailSuccess" + ); + } +} \ No newline at end of file diff --git a/src/main/java/com/linearpast/minecraftmanager/repository/ConfirmationEmailRepository.java b/src/main/java/com/linearpast/minecraftmanager/repository/ConfirmationEmailRepository.java new file mode 100644 index 0000000..41453de --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/repository/ConfirmationEmailRepository.java @@ -0,0 +1,12 @@ +package com.linearpast.minecraftmanager.repository; + +import com.linearpast.minecraftmanager.entity.ConfirmationEmail; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +import java.util.Optional; + +@Repository +public interface ConfirmationEmailRepository extends JpaRepository { + Optional findByToken(String token); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/repository/OperatorsRepository.java b/src/main/java/com/linearpast/minecraftmanager/repository/OperatorsRepository.java new file mode 100644 index 0000000..1f4b635 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/repository/OperatorsRepository.java @@ -0,0 +1,10 @@ +package com.linearpast.minecraftmanager.repository; + +import com.linearpast.minecraftmanager.entity.Operators; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +@Repository +public interface OperatorsRepository extends JpaRepository { + Operators findByUsernameAndPassword(String username, String password); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/repository/PlayerAnswersRepository.java b/src/main/java/com/linearpast/minecraftmanager/repository/PlayerAnswersRepository.java new file mode 100644 index 0000000..d6e0163 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/repository/PlayerAnswersRepository.java @@ -0,0 +1,18 @@ +package com.linearpast.minecraftmanager.repository; + +import com.linearpast.minecraftmanager.entity.PlayerAnswers; +import com.linearpast.minecraftmanager.entity.embeddable.PlayerAnswersId; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import java.util.List; + +@Repository +public interface PlayerAnswersRepository extends JpaRepository { + List findAllByPlayers_Id(Integer playerId); + + @Query("SELECT pa FROM PlayerAnswers pa WHERE pa.players.id IN :playerIds") + List findByPlayerIds(@Param("playerIds") List ids); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/repository/PlayersRepository.java b/src/main/java/com/linearpast/minecraftmanager/repository/PlayersRepository.java new file mode 100644 index 0000000..38dba5c --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/repository/PlayersRepository.java @@ -0,0 +1,44 @@ +package com.linearpast.minecraftmanager.repository; + +import com.linearpast.minecraftmanager.entity.Operators; +import com.linearpast.minecraftmanager.entity.Players; +import jakarta.transaction.Transactional; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.JpaSpecificationExecutor; +import org.springframework.data.jpa.repository.Modifying; +import org.springframework.data.jpa.repository.Query; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import java.util.List; +import java.util.Optional; + +@Repository +public interface PlayersRepository extends JpaRepository, JpaSpecificationExecutor { + Players findByPlayerName(String playerName); + + @Transactional + @Modifying + @Query("UPDATE Players p SET p.status = :status WHERE p.id = :id") + int updateStatusById(@Param("id") Integer id, @Param("status") Byte status); + + @Transactional + @Modifying + @Query("UPDATE Players p SET p.operators = :operators WHERE p.id = :id") + void updateOperatorsById(@Param("id") Integer id, @Param("operators") Operators operators); + + @Modifying + @Transactional + @Query("UPDATE Players p SET p.status = :status, " + + "p.operators = :operators " + + "WHERE p.id IN :ids") + int bulkUpdateStatus( + @Param("ids") List ids, + @Param("status") Byte status, + @Param("operators") Operators operators + ); + + Players findPlayersByPlayerNameAndQq(String playerName, String qq); + Optional findPlayersByConfirmationEmail_Token(String token); + int countByStatus(Byte status); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/repository/QuestionsRepository.java b/src/main/java/com/linearpast/minecraftmanager/repository/QuestionsRepository.java new file mode 100644 index 0000000..6bd3d3f --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/repository/QuestionsRepository.java @@ -0,0 +1,9 @@ +package com.linearpast.minecraftmanager.repository; + +import com.linearpast.minecraftmanager.entity.Questions; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +@Repository +public interface QuestionsRepository extends JpaRepository { +} diff --git a/src/main/java/com/linearpast/minecraftmanager/repository/RegionRepository.java b/src/main/java/com/linearpast/minecraftmanager/repository/RegionRepository.java new file mode 100644 index 0000000..05d3ab8 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/repository/RegionRepository.java @@ -0,0 +1,29 @@ +package com.linearpast.minecraftmanager.repository; + +import com.linearpast.minecraftmanager.entity.Region; +import jakarta.persistence.criteria.CriteriaBuilder; +import jakarta.persistence.criteria.CriteriaQuery; +import jakarta.persistence.criteria.Predicate; +import jakarta.persistence.criteria.Root; +import org.springframework.data.jpa.domain.Specification; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.JpaSpecificationExecutor; +import org.springframework.stereotype.Repository; + +@Repository +public interface RegionRepository extends JpaRepository, JpaSpecificationExecutor { + + class RegionSpecifications { + public static Specification withDynamicQuery( + Long code, Long parentCode, Byte level) { + + return (Root root, CriteriaQuery query, CriteriaBuilder cb) -> { + Predicate predicate = cb.conjunction(); + if(code != null) predicate = cb.and(predicate, cb.equal(root.get("code"), code)); + if(parentCode != null) predicate = cb.and(predicate, cb.equal(root.get("parentCode"), parentCode)); + if(level != null) predicate = cb.and(predicate, cb.equal(root.get("level"), level)); + return predicate; + }; + } + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/repository/view/PlayerInfoViewRepository.java b/src/main/java/com/linearpast/minecraftmanager/repository/view/PlayerInfoViewRepository.java new file mode 100644 index 0000000..6c6a141 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/repository/view/PlayerInfoViewRepository.java @@ -0,0 +1,39 @@ +package com.linearpast.minecraftmanager.repository.view; + +import com.linearpast.minecraftmanager.entity.view.PlayerInfoView; +import jakarta.persistence.criteria.CriteriaBuilder; +import jakarta.persistence.criteria.CriteriaQuery; +import jakarta.persistence.criteria.Predicate; +import jakarta.persistence.criteria.Root; +import org.springframework.data.jpa.domain.Specification; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.JpaSpecificationExecutor; +import org.springframework.stereotype.Repository; +import org.springframework.util.StringUtils; + +@Repository +public interface PlayerInfoViewRepository extends JpaRepository , JpaSpecificationExecutor { + PlayerInfoView findById(int id); + + class PlayerInfoViewSpecifications { + public static Specification withDynamicQuery( + String playerName, String qq, String uuid, Byte status, Integer minValue, Integer maxValue) { + + return (Root root, CriteriaQuery query, CriteriaBuilder cb) -> { + Predicate predicate = cb.conjunction(); + if (StringUtils.hasText(playerName)) predicate = cb.and(predicate, cb.like(root.get("playerName"), "%" + playerName + "%")); + if (StringUtils.hasText(qq)) predicate = cb.and(predicate, cb.like(root.get("qq"), "%" + qq + "%")); + if (status != null) predicate = cb.and(predicate, cb.equal(root.get("status"), status)); + if (StringUtils.hasText(uuid)) predicate = cb.and(predicate, cb.like(root.get("uuid"), "%" + uuid + "%")); + if (minValue != null && maxValue != null) { + predicate = cb.and(predicate, cb.between(root.get("totalScore"), minValue, maxValue)); + }else if(minValue != null){ + predicate = cb.and(predicate, cb.ge(root.get("totalScore"), minValue)); + }else if(maxValue != null){ + predicate = cb.and(predicate, cb.le(root.get("totalScore"), maxValue)); + } + return predicate; + }; + } + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/MinecraftRconService.java b/src/main/java/com/linearpast/minecraftmanager/service/MinecraftRconService.java new file mode 100644 index 0000000..92b723e --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/MinecraftRconService.java @@ -0,0 +1,20 @@ +package com.linearpast.minecraftmanager.service; + +import com.linearpast.minecraftmanager.utils.config.SelfConfig; +import com.linearpast.minecraftmanager.utils.rcon.MinecraftRconUtils; +import io.graversen.minecraft.rcon.service.ConnectOptions; +import io.graversen.minecraft.rcon.service.RconDetails; +import org.springframework.context.annotation.Bean; +import org.springframework.stereotype.Service; + +import java.time.Duration; + +@Service +public class MinecraftRconService { + @Bean + public MinecraftRconUtils rconService(SelfConfig selfConfig) { + RconDetails details = new RconDetails(selfConfig.host, selfConfig.port, selfConfig.password); + ConnectOptions connectOptions = new ConnectOptions(3, Duration.ofSeconds(3L), Duration.ofSeconds(selfConfig.heartTime)); + return new MinecraftRconUtils(details, connectOptions); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/impl/EmailServiceImpl.java b/src/main/java/com/linearpast/minecraftmanager/service/impl/EmailServiceImpl.java new file mode 100644 index 0000000..aa87895 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/impl/EmailServiceImpl.java @@ -0,0 +1,125 @@ +package com.linearpast.minecraftmanager.service.impl; + +import com.linearpast.minecraftmanager.entity.ConfirmationEmail; +import com.linearpast.minecraftmanager.entity.Players; +import com.linearpast.minecraftmanager.repository.ConfirmationEmailRepository; +import com.linearpast.minecraftmanager.service.inter.EmailService; +import com.linearpast.minecraftmanager.utils.config.ConfigLoader; +import jakarta.mail.MessagingException; +import jakarta.mail.internet.MimeMessage; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.mail.javamail.JavaMailSender; +import org.springframework.mail.javamail.MimeMessageHelper; +import org.springframework.stereotype.Service; + +import java.time.LocalDateTime; +import java.util.Optional; +import java.util.UUID; + +@Service +public class EmailServiceImpl implements EmailService { + @Autowired + private JavaMailSender mailSender; + @Autowired + private ConfirmationEmailRepository confirmationEmailRepository; + @Autowired + private PlayerAnswersServiceImpl playerAnswersServiceImpl; + @Autowired + private PlayersServiceImpl playersServiceImpl; + + public void sendConfirmationEmail(String mcName, String toEmail, String token, String host) throws MessagingException { + MimeMessage message = mailSender.createMimeMessage(); + MimeMessageHelper helper = new MimeMessageHelper(message, true, "UTF-8"); + + // 设置邮件基本信息 + helper.setFrom(ConfigLoader.config.get("spring.mail.username")); // 发件人(你的QQ邮箱) + helper.setTo(toEmail); // 收件人 + helper.setSubject("邮箱验证"); // 邮件主题 + + // 构建HTML邮件内容(包含确认链接) + String htmlContent = buildHtmlContent(mcName, token, host); + helper.setText(htmlContent, true); // true表示内容是HTML + + // 发送邮件 + mailSender.send(message); + } + + private String buildHtmlContent(String mcName, String token, String host) { + String baseUrl = host + "/api/confirm"; + String confirmUrl = baseUrl + "?token=" + token; // 带token的确认链接 + + // 自定义HTML模板(可根据操作类型调整内容) + return "" + + "" + + "" + + "

您正在进行玩家" + mcName + "的白名单申请操作,请点击按钮确定



" + + "点击验证" + + "

若您未执行此操作,请忽略此邮件。

" + + "

链接有效期为30分钟,过期后需重新操作。

" + + "" + + ""; + } + + public String generateToken(Players players) { + // 生成唯一token(使用UUID) + String token = UUID.randomUUID().toString(); + + ConfirmationEmail confirmationToken = players.getConfirmationEmail(); + if(confirmationToken == null) confirmationToken = new ConfirmationEmail(); + confirmationToken.setToken(token); + confirmationToken.setExpiredTime(LocalDateTime.now().plusMinutes(30)); + confirmationToken.setUsed(false); + confirmationToken.setActive(false); + ConfirmationEmail confirmationEmail = this.saveConfirmationEmail(confirmationToken); + players.setConfirmationEmail(confirmationEmail); + playersServiceImpl.savePlayer(players); + + return confirmationEmail.getToken(); + } + + public boolean validateToken(String token) { + Optional optionalToken = playersServiceImpl.getPlayerByToken(token); + if (optionalToken.isEmpty()) { + return false; // token不存在 + } + + Players players = optionalToken.get(); + ConfirmationEmail confirmationToken = players.getConfirmationEmail(); + if (confirmationToken.getUsed()) { + return confirmationToken.getActive(); // token已使用 + } + if (confirmationToken.getExpiredTime().isBefore(LocalDateTime.now())) { + playerAnswersServiceImpl.deleteAllPlayerAnswers(players); + playersServiceImpl.deletePlayer(players.getId()); + this.deleteConfirmationEmail(confirmationToken.getId()); + return false; // token已过期 + } + + return true; // token有效 + } + + public void markTokenAsUsed(String token) { + Optional optionalToken = this.findConfirmationEmailByToken(token); + optionalToken.ifPresent(tokenEntity -> { + if(tokenEntity.getUsed() && tokenEntity.getActive()) return; + tokenEntity.setUsed(true); + tokenEntity.setActive(true); + this.saveConfirmationEmail(tokenEntity); + }); + } + + @Override + public ConfirmationEmail saveConfirmationEmail(ConfirmationEmail confirmationEmail) { + return confirmationEmailRepository.save(confirmationEmail); + } + + @Override + public Optional findConfirmationEmailByToken(String token) { + return confirmationEmailRepository.findByToken(token); + } + + @Override + public void deleteConfirmationEmail(Integer id) { + confirmationEmailRepository.deleteById(id); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/impl/OperatorsServiceImpl.java b/src/main/java/com/linearpast/minecraftmanager/service/impl/OperatorsServiceImpl.java new file mode 100644 index 0000000..80b9cb6 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/impl/OperatorsServiceImpl.java @@ -0,0 +1,24 @@ +package com.linearpast.minecraftmanager.service.impl; + +import com.linearpast.minecraftmanager.entity.Operators; +import com.linearpast.minecraftmanager.repository.OperatorsRepository; +import com.linearpast.minecraftmanager.service.inter.OperatorsService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class OperatorsServiceImpl implements OperatorsService { + + @Autowired + private OperatorsRepository operatorsRepository; + + @Override + public Operators login(String username, String password) { + return operatorsRepository.findByUsernameAndPassword(username, password); + } + + @Override + public Operators save(Operators operators) { + return operatorsRepository.save(operators); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/impl/PlayerAnswersServiceImpl.java b/src/main/java/com/linearpast/minecraftmanager/service/impl/PlayerAnswersServiceImpl.java new file mode 100644 index 0000000..32ceb2f --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/impl/PlayerAnswersServiceImpl.java @@ -0,0 +1,37 @@ +package com.linearpast.minecraftmanager.service.impl; + +import com.linearpast.minecraftmanager.entity.PlayerAnswers; +import com.linearpast.minecraftmanager.entity.Players; +import com.linearpast.minecraftmanager.repository.PlayerAnswersRepository; +import com.linearpast.minecraftmanager.service.inter.PlayerAnswersService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class PlayerAnswersServiceImpl implements PlayerAnswersService { + @Autowired + private PlayerAnswersRepository playerAnswersRepository; + + @Override + public List saveAllPlayerAnswers(List playerAnswers) { + return playerAnswersRepository.saveAll(playerAnswers); + } + + @Override + public void deleteAllPlayerAnswers(Players players) { + List allByPlayersId = playerAnswersRepository.findAllByPlayers_Id(players.getId()); + playerAnswersRepository.deleteAll(allByPlayersId); + } + + @Override + public List getPlayerAnswers(Players players) { + return playerAnswersRepository.findAllByPlayers_Id(players.getId()); + } + + @Override + public List getAllPlayerAnswers(List ids) { + return playerAnswersRepository.findByPlayerIds(ids); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/impl/PlayersServiceImpl.java b/src/main/java/com/linearpast/minecraftmanager/service/impl/PlayersServiceImpl.java new file mode 100644 index 0000000..2c8adf6 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/impl/PlayersServiceImpl.java @@ -0,0 +1,292 @@ +package com.linearpast.minecraftmanager.service.impl; + +import com.linearpast.minecraftmanager.entity.Operators; +import com.linearpast.minecraftmanager.entity.Players; +import com.linearpast.minecraftmanager.entity.view.PlayerInfoView; +import com.linearpast.minecraftmanager.repository.PlayersRepository; +import com.linearpast.minecraftmanager.repository.view.PlayerInfoViewRepository; +import com.linearpast.minecraftmanager.service.inter.PlayersService; +import com.linearpast.minecraftmanager.utils.WhitelistTarget; +import com.linearpast.minecraftmanager.utils.config.ConfigLoader; +import com.linearpast.minecraftmanager.utils.config.SelfConfig; +import com.linearpast.minecraftmanager.utils.rcon.LoginWhitelistCommand; +import com.linearpast.minecraftmanager.utils.rcon.MinecraftRconUtils; +import com.linearpast.minecraftmanager.utils.rcon.SelfWhiteListCommand; +import io.graversen.minecraft.rcon.MinecraftRcon; +import io.graversen.minecraft.rcon.RconResponse; +import io.graversen.minecraft.rcon.commands.WhiteListCommand; +import io.graversen.minecraft.rcon.service.ConnectOptions; +import io.graversen.minecraft.rcon.service.RconDetails; +import io.graversen.minecraft.rcon.util.Target; +import io.graversen.minecraft.rcon.util.WhiteListModes; +import jakarta.mail.MessagingException; +import jakarta.mail.internet.MimeMessage; +import jakarta.transaction.Transactional; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Bean; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.domain.Specification; +import org.springframework.mail.javamail.JavaMailSenderImpl; +import org.springframework.mail.javamail.MimeMessageHelper; +import org.springframework.stereotype.Service; + +import java.time.Duration; +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; +import java.util.concurrent.CompletableFuture; + +@Service +public class PlayersServiceImpl implements PlayersService { + @Autowired + private PlayersRepository playersRepository; + @Autowired + private PlayerInfoViewRepository playerInfoViewRepository; + @Autowired + private MinecraftRconUtils rconService; + @Autowired + private JavaMailSenderImpl mailSender; + @Autowired + private SelfConfig selfConfig; + + @Override + public Page getPlayers( + String playerName, + String qq, + String uuid, + Byte status, + Integer minScore, + Integer maxScore, + Pageable pageable + ) { + Specification spec = PlayerInfoViewRepository.PlayerInfoViewSpecifications + .withDynamicQuery(playerName, qq, uuid, status, minScore, maxScore); + return playerInfoViewRepository.findAll(spec, pageable); + } + + + + @Override + public boolean deletePlayer(Integer id) { + Players byId = playersRepository.findById(id).orElse(null); + if(byId == null) return false; + rconService.connect(); + MinecraftRcon minecraftRcon = rconService.minecraftRcon().orElse(null); + if(minecraftRcon == null) return false; + RconResponse response = minecraftRcon.sendSync(new SelfWhiteListCommand(Target.player(byId.getPlayerName()), WhiteListModes.REMOVE)); + if(response.getResponseId() != 0) return false; + this.asyncSendEmail(byId, (byte)0, true); + playersRepository.deleteById(id); + return true; + } + + @Override + public void forceDeletePlayer(List ids) { + playersRepository.deleteAllById(ids); + } + + + @Override + @Transactional + public int updatePlayerStatus(Integer id, Byte status, Operators operators) { + Players byId = playersRepository.findById(id).orElse(null); + if (byId == null) return 0; + rconService.connect(); + RconResponse response; + MinecraftRcon minecraftRcon = rconService.minecraftRcon().orElse(null); + if(minecraftRcon == null) return 0; + if (status == 1) { + response = minecraftRcon.sendSync(new LoginWhitelistCommand(WhitelistTarget.player(byId), WhiteListModes.ADD)); + } else { + response = minecraftRcon.sendSync(new SelfWhiteListCommand(Target.player(byId.getPlayerName()), WhiteListModes.REMOVE)); + } + if (response.getResponseId() == 0) { + asyncSendEmail(byId, status, false); + playersRepository.updateOperatorsById(id, operators); + return playersRepository.updateStatusById(id, status); + } + return 0; + } + + @Override + public Players getPlayer(String playerName) { + return playersRepository.findByPlayerName(playerName); + } + + @Override + public Players getPlayerById(Integer id) { + return playersRepository.findById(id).orElse(null); + } + + @Override + public Players savePlayer(Players player) { + rconService.connect(); + MinecraftRcon minecraftRcon = rconService.minecraftRcon().orElse(null); + if(player.getId() == null){ + if(player.getStatus() == 1) { + if(minecraftRcon == null) return null; + RconResponse response = minecraftRcon.sendSync(new LoginWhitelistCommand(WhitelistTarget.player(player), WhiteListModes.ADD)); + if(response.getResponseId() != 0) return null; + asyncSendEmail(player, player.getStatus(), false); + } + }else { + Players byId = playersRepository.findById(player.getId()).orElse(null); + if(byId == null) return null; + if(!byId.getStatus().equals(player.getStatus()) && (player.getStatus() == 1 || byId.getStatus() == 1)) { + if(minecraftRcon == null) return null; + RconResponse response; + if(player.getStatus() == 1) { + response = minecraftRcon.sendSync(new LoginWhitelistCommand(WhitelistTarget.player(player), WhiteListModes.ADD)); + }else { + response = minecraftRcon.sendSync(new SelfWhiteListCommand(Target.player(player.getPlayerName()), WhiteListModes.REMOVE)); + } + if(response.getResponseId() != 0) return null; + asyncSendEmail(player, player.getStatus(), false); + } + } + return playersRepository.save(player); + } + + @Override + public Players getPlayerIsApply(String playerName, String qq) { + return playersRepository.findPlayersByPlayerNameAndQq(playerName, qq); + } + + @Override + public int deletePlayers(List ids) { + List allById = playersRepository.findAllById(ids); + if(allById.isEmpty()) return 0; + rconService.connect(); + MinecraftRcon minecraftRcon = rconService.minecraftRcon().orElse(null); + if(minecraftRcon == null) return 0; + List successIds = new ArrayList<>(); + allById.forEach(players -> { + RconResponse response = minecraftRcon.sendSync(new SelfWhiteListCommand(Target.player(players.getPlayerName()), WhiteListModes.REMOVE)); + if (response.getResponseId() == 0) { + successIds.add(players.getId()); + asyncSendEmail(players, (byte) 0, true); + } + }); + playersRepository.deleteAllById(successIds); + return successIds.size(); + } + + @Override + public Optional getPlayerByToken(String token) { + return playersRepository.findPlayersByConfirmationEmail_Token(token); + } + + @Override + public int updatePlayersStatus(List ids, Byte status, Operators operators) { + List allById = playersRepository.findAllById(ids); + if(allById.isEmpty()) return 0; + rconService.connect(); + MinecraftRcon minecraftRcon = rconService.minecraftRcon().orElse(null); + if(minecraftRcon == null) return 0; + List successIds = new ArrayList<>(); + if (status == 1) { + allById.forEach(players -> { + RconResponse response = minecraftRcon.sendSync(new LoginWhitelistCommand(WhitelistTarget.player(players), WhiteListModes.ADD)); + if (response.getResponseId() == 0) { + successIds.add(players.getId()); + asyncSendEmail(players, status, false); + } + }); + } else { + allById.forEach(players -> { + RconResponse response = minecraftRcon.sendSync(new SelfWhiteListCommand(Target.player(players.getPlayerName()), WhiteListModes.REMOVE)); + if (response.getResponseId() == 0) { + successIds.add(players.getId()); + asyncSendEmail(players, status, false); + } + }); + } + return playersRepository.bulkUpdateStatus(successIds, status, operators); + } + + @Override + public Integer getPlayersCountByStatus(Byte status) { + return playersRepository.countByStatus(status); + } + + @Override + public Integer getPlayerScoreById(Integer id) { + PlayerInfoView playerInfoView = playerInfoViewRepository.findById(id).orElse(null); + if(playerInfoView == null) return null; + return playerInfoView.getTotalScore(); + } + + private void asyncSendEmail(Players player, Byte status, boolean delete) { + CompletableFuture.runAsync(() -> { + try {this.sendDealEmail(player.getQq(), status, player.getPlayerName(), delete); + } catch (Exception ignored) {} + }); + } + + private void sendDealEmail(String qq, Byte status, String playerName, boolean delete) throws MessagingException { + if(!selfConfig.emailEnable) return; + String statusText = status == 1 ? "通过" : "拒绝"; + if(delete) statusText = "重置"; + String mainColor = status == 1 ? "#4CAF50" : "#F44336"; // 通过为绿色,拒绝为红色 + String icon = status == 1 ? "✓" : "✗"; + + // 使用 StringBuilder 高效拼接 HTML + String html = "" + + "" + + "" + + " " + + " " + + " 白名单通知" + + " " + + "" + + "" + + "
" + + "
" + + "
" + icon + "
" + + "

您的申请已" + statusText + "

" + + "
" + + "
" + + "

亲爱的 " + playerName + "

" + + (!delete + ? "

您提交的服务器白名单申请已审核完毕。

" + : "

管理员已将您的申请记录移除。

") + + "
" + + "

▶ 申请状态:" + statusText + "

" + + "

▶ 处理时间:" + new java.util.Date() + "

" + + "
" + + "

" + + (status == 1 + ? "您现在可以进入服务器游玩,如有问题请联系管理员。" + : "") + + "

" + + "
" + + "

本通知由系统自动发送,请勿回复

" + + "
" + + "
" + + "" + + ""; + + MimeMessage message = mailSender.createMimeMessage(); + MimeMessageHelper helper = new MimeMessageHelper(message, true, "UTF-8"); + + // 设置邮件基本信息 + helper.setFrom(ConfigLoader.config.get("spring.mail.username")); // 发件人(你的QQ邮箱) + helper.setTo(qq + "@qq.com"); // 收件人 + helper.setSubject("白名单处理通知"); // 邮件主题 + + // 构建HTML邮件内容(包含确认链接) + helper.setText(html, true); // true表示内容是HTML + + // 发送邮件 + mailSender.send(message); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/impl/QuestionsServiceImpl.java b/src/main/java/com/linearpast/minecraftmanager/service/impl/QuestionsServiceImpl.java new file mode 100644 index 0000000..d545d3c --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/impl/QuestionsServiceImpl.java @@ -0,0 +1,42 @@ +package com.linearpast.minecraftmanager.service.impl; + +import com.linearpast.minecraftmanager.entity.Questions; +import com.linearpast.minecraftmanager.repository.QuestionsRepository; +import com.linearpast.minecraftmanager.service.inter.QuestionsService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class QuestionsServiceImpl implements QuestionsService { + @Autowired + private QuestionsRepository questionsRepository; + + @Override + public Questions saveQuestions(Questions questions) { + return questionsRepository.save(questions); + } + + @Override + public Page getQuestions(Pageable pageable) { + return questionsRepository.findAll(pageable); + } + + @Override + public void deleteQuestionsById(Integer id) { + questionsRepository.deleteById(id); + } + + @Override + public void deleteQuestions(List ids) { + questionsRepository.deleteAllById(ids); + } + + @Override + public List getAllQuestions() { + return questionsRepository.findAll(); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/impl/RegionServiceImpl.java b/src/main/java/com/linearpast/minecraftmanager/service/impl/RegionServiceImpl.java new file mode 100644 index 0000000..94450d1 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/impl/RegionServiceImpl.java @@ -0,0 +1,25 @@ +package com.linearpast.minecraftmanager.service.impl; + +import com.linearpast.minecraftmanager.entity.Region; +import com.linearpast.minecraftmanager.repository.RegionRepository; +import com.linearpast.minecraftmanager.service.inter.RegionService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.jpa.domain.Specification; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class RegionServiceImpl implements RegionService { + @Autowired + private RegionRepository regionRepository; + + @Override + public List findRegion(Long code, Long parentCode, Byte level) { + Specification spec = RegionRepository.RegionSpecifications + .withDynamicQuery(code, parentCode, level); + return regionRepository.findAll(spec); + } + + +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/inter/EmailService.java b/src/main/java/com/linearpast/minecraftmanager/service/inter/EmailService.java new file mode 100644 index 0000000..f0de5bf --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/inter/EmailService.java @@ -0,0 +1,11 @@ +package com.linearpast.minecraftmanager.service.inter; + +import com.linearpast.minecraftmanager.entity.ConfirmationEmail; + +import java.util.Optional; + +public interface EmailService { + ConfirmationEmail saveConfirmationEmail(ConfirmationEmail confirmationEmail); + Optional findConfirmationEmailByToken(String token); + void deleteConfirmationEmail(Integer id); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/inter/OperatorsService.java b/src/main/java/com/linearpast/minecraftmanager/service/inter/OperatorsService.java new file mode 100644 index 0000000..9f1ada2 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/inter/OperatorsService.java @@ -0,0 +1,9 @@ +package com.linearpast.minecraftmanager.service.inter; + +import com.linearpast.minecraftmanager.entity.Operators; + +public interface OperatorsService { + + Operators login(String username, String password); + Operators save(Operators operators); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/inter/PlayerAnswersService.java b/src/main/java/com/linearpast/minecraftmanager/service/inter/PlayerAnswersService.java new file mode 100644 index 0000000..459c8af --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/inter/PlayerAnswersService.java @@ -0,0 +1,13 @@ +package com.linearpast.minecraftmanager.service.inter; + +import com.linearpast.minecraftmanager.entity.PlayerAnswers; +import com.linearpast.minecraftmanager.entity.Players; + +import java.util.List; + +public interface PlayerAnswersService { + List saveAllPlayerAnswers(List playerAnswers); + void deleteAllPlayerAnswers(Players players); + List getPlayerAnswers(Players players); + List getAllPlayerAnswers(List ids); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/inter/PlayersService.java b/src/main/java/com/linearpast/minecraftmanager/service/inter/PlayersService.java new file mode 100644 index 0000000..3b2e871 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/inter/PlayersService.java @@ -0,0 +1,35 @@ +package com.linearpast.minecraftmanager.service.inter; + +import com.linearpast.minecraftmanager.entity.Operators; +import com.linearpast.minecraftmanager.entity.Players; +import com.linearpast.minecraftmanager.entity.view.PlayerInfoView; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; + +import java.util.List; +import java.util.Optional; + +public interface PlayersService { + Page getPlayers( + String playerName, + String qq, + String uuid, + Byte status, + Integer minScore, + Integer maxScore, + Pageable pageable + ); + + boolean deletePlayer(Integer id); + void forceDeletePlayer(List ids); + int updatePlayerStatus(Integer id, Byte status, Operators operators); + Players getPlayer(String playerName); + Players getPlayerById(Integer id); + Players savePlayer(Players player); + Players getPlayerIsApply(String playerName, String qq); + int deletePlayers(List ids) ; + Optional getPlayerByToken(String token); + int updatePlayersStatus(List ids, Byte status, Operators operators); + Integer getPlayersCountByStatus(Byte status); + Integer getPlayerScoreById(Integer id); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/inter/QuestionsService.java b/src/main/java/com/linearpast/minecraftmanager/service/inter/QuestionsService.java new file mode 100644 index 0000000..aa9ffb2 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/inter/QuestionsService.java @@ -0,0 +1,15 @@ +package com.linearpast.minecraftmanager.service.inter; + +import com.linearpast.minecraftmanager.entity.Questions; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; + +import java.util.List; + +public interface QuestionsService { + Questions saveQuestions(Questions questions); + Page getQuestions(Pageable pageable); + void deleteQuestionsById(Integer id); + void deleteQuestions(List ids); + List getAllQuestions(); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/service/inter/RegionService.java b/src/main/java/com/linearpast/minecraftmanager/service/inter/RegionService.java new file mode 100644 index 0000000..e9f8db2 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/service/inter/RegionService.java @@ -0,0 +1,9 @@ +package com.linearpast.minecraftmanager.service.inter; + +import com.linearpast.minecraftmanager.entity.Region; + +import java.util.List; + +public interface RegionService { + List findRegion(Long code, Long parentCode, Byte level); +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/Result.java b/src/main/java/com/linearpast/minecraftmanager/utils/Result.java new file mode 100644 index 0000000..9c32851 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/Result.java @@ -0,0 +1,92 @@ +package com.linearpast.minecraftmanager.utils; + +import lombok.Getter; +import lombok.Setter; + +import java.util.HashMap; +import java.util.Map; + +@Getter +@Setter +public class Result { + private Integer code; + private String msg; + private Long count; + private T data; + + private Result() {} + + // + public static Result success() { + Result result = new Result<>(); + result.setCode(200); + result.setMsg("操作成功"); + return result; + } + + + public static Result success(Integer code, String msg) { + Result result = new Result<>(); + result.setCode(code); + result.setMsg(msg); + return result; + } + + public static Result success(T data) { + Result result = new Result<>(); + result.setCode(200); + result.setMsg("操作成功"); + result.setData(data); + return result; + } + + public static Result successPage(T data, Long total) { + Result result = new Result<>(); + result.setCode(200); + result.setMsg("查询成功"); + result.setData(data); + result.setCount(total); + return result; + } + + public static Result error(String msg) { + return error(500, msg); + } + + public static Result error(Integer code, String msg) { + Result result = new Result<>(); + result.setCode(code); + result.setMsg(msg); + return result; + } + + // 链式方法 + public Result data(T data) { + this.data = data; + return this; + } + + public Result msg(String msg) { + this.msg = msg; + return this; + } + + public Result count(Long count) { + this.count = count; + return this; + } + + public Result code(Integer code) { + this.code = code; + return this; + } + + public Map toMap() { + Map map = new HashMap<>(4); + map.put("code", code); + map.put("msg", msg); + map.put("count", count); + map.put("data", data); + return map; + } +} \ No newline at end of file diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/WhitelistTarget.java b/src/main/java/com/linearpast/minecraftmanager/utils/WhitelistTarget.java new file mode 100644 index 0000000..923334c --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/WhitelistTarget.java @@ -0,0 +1,9 @@ +package com.linearpast.minecraftmanager.utils; + +import com.linearpast.minecraftmanager.entity.Players; + +public record WhitelistTarget(String name, String uuid) { + public static WhitelistTarget player(Players players) { + return new WhitelistTarget(players.getPlayerName(), players.getUuid()); + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/config/ConfigLoader.java b/src/main/java/com/linearpast/minecraftmanager/utils/config/ConfigLoader.java new file mode 100644 index 0000000..1a44db5 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/config/ConfigLoader.java @@ -0,0 +1,31 @@ +package com.linearpast.minecraftmanager.utils.config; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.env.EnvironmentPostProcessor; +import org.springframework.core.env.ConfigurableEnvironment; +import org.springframework.core.env.MapPropertySource; +import org.springframework.core.env.PropertySource; + +import java.util.HashMap; +import java.util.Map; + +public class ConfigLoader implements EnvironmentPostProcessor { + public static final Map config = new HashMap<>(); + + @Override + public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) { + try { + PropertySource source = environment.getPropertySources().stream().filter(propertySource -> + propertySource.getName().contains("application.yml") + ).findFirst().orElseThrow(); + if(source instanceof MapPropertySource mapPropertySource) { + for (String key : mapPropertySource.getPropertyNames()) { + config.put(key, mapPropertySource.getProperty(key).toString()); + System.out.println(key + "=" + mapPropertySource.getProperty(key)); + } + } + }catch (Exception e){ + System.err.println("Failed to load config: " + e.getMessage()); + } + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/config/SelfConfig.java b/src/main/java/com/linearpast/minecraftmanager/utils/config/SelfConfig.java new file mode 100644 index 0000000..cb8f9dc --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/config/SelfConfig.java @@ -0,0 +1,45 @@ +package com.linearpast.minecraftmanager.utils.config; + +import lombok.Getter; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; + +@Component +@Getter +public class SelfConfig { + + public static String command; + public static String testCommand; + public static String addCommand; + + //rcon + @Value("${minecraft.rcon.host}") + public String host; + + @Value("${minecraft.rcon.port}") + public int port; + + @Value("${minecraft.rcon.password}") + public String password; + + @Value("${minecraft.rcon.heart-time}") + public long heartTime; + + @Value("${email.enable}") + public boolean emailEnable; + + @Value("${minecraft.rcon.wlcmd}") + public void whiteListCommand(String command) { + SelfConfig.command = command; + }; + + @Value("${minecraft.rcon.test-cmd}") + public void testCommand(String command) { + SelfConfig.testCommand = command; + } + + @Value("${minecraft.rcon.add-cmd}") + public void addCommand(String command) { + SelfConfig.addCommand = command; + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/http/HttpApiUtils.java b/src/main/java/com/linearpast/minecraftmanager/utils/http/HttpApiUtils.java new file mode 100644 index 0000000..81ee6e8 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/http/HttpApiUtils.java @@ -0,0 +1,51 @@ +package com.linearpast.minecraftmanager.utils.http; + +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; +import org.apache.http.HttpResponse; +import org.apache.http.util.EntityUtils; + +import java.util.Base64; +import java.util.HashMap; +import java.util.Map; +import java.util.Optional; + +public class HttpApiUtils { + public static String minecraftAccountQuery(String mcName){ + String host = "https://api.minecraftservices.com"; + String path = "/minecraft/profile/lookup/name/" + mcName; + String method = "GET"; + Map querys = new HashMap<>(); + Map headers = new HashMap<>(); + headers.put("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8"); + try { + HttpResponse response = HttpUtils.doGet(host, path, method, headers, querys); + String string = EntityUtils.toString(response.getEntity()); + System.out.println(string); + JsonObject jsonObject = JsonParser.parseString(string).getAsJsonObject(); + if(Optional.ofNullable(jsonObject).isPresent() && jsonObject.has("id")){ + StringBuilder id = new StringBuilder(jsonObject.get("id").getAsString()).insert(8, "-").insert(13, "-").insert(18, "-").insert(23, "-"); + return id.toString(); + } + }catch (Exception ignored){} + return null; + } + + public static String qqAvatarQuery(String qq){ + String host = "https://q.qlogo.cn"; + String path = "/headimg_dl"; + String method = "GET"; + Map querys = new HashMap<>(); + querys.put("dst_uin", qq); + querys.put("img_type", "jpg"); + querys.put("spec", "640"); + Map headers = new HashMap<>(); + try { + HttpResponse response = HttpUtils.doGet(host, path, method, headers, querys); + byte[] pic = EntityUtils.toByteArray(response.getEntity()); + Base64.Encoder encoder = Base64.getEncoder(); + return encoder.encodeToString(pic); + }catch (Exception ignored){} + return null; + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/http/HttpUtils.java b/src/main/java/com/linearpast/minecraftmanager/utils/http/HttpUtils.java new file mode 100644 index 0000000..12697fb --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/http/HttpUtils.java @@ -0,0 +1,312 @@ +package com.linearpast.minecraftmanager.utils.http; + +import org.apache.commons.lang.StringUtils; +import org.apache.http.HttpResponse; +import org.apache.http.NameValuePair; +import org.apache.http.client.HttpClient; +import org.apache.http.client.entity.UrlEncodedFormEntity; +import org.apache.http.client.methods.HttpDelete; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.client.methods.HttpPut; +import org.apache.http.conn.ClientConnectionManager; +import org.apache.http.conn.scheme.Scheme; +import org.apache.http.conn.scheme.SchemeRegistry; +import org.apache.http.conn.ssl.SSLSocketFactory; +import org.apache.http.entity.ByteArrayEntity; +import org.apache.http.entity.StringEntity; +import org.apache.http.impl.client.DefaultHttpClient; +import org.apache.http.message.BasicNameValuePair; + +import javax.net.ssl.SSLContext; +import javax.net.ssl.TrustManager; +import javax.net.ssl.X509TrustManager; +import java.io.UnsupportedEncodingException; +import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; +import java.security.KeyManagementException; +import java.security.NoSuchAlgorithmException; +import java.security.cert.X509Certificate; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +public class HttpUtils { + + /** + * get + * + * @param host + * @param path + * @param method + * @param headers + * @param querys + * @return + * @throws Exception + */ + public static HttpResponse doGet(String host, String path, String method, + Map headers, + Map querys) + throws Exception { + HttpClient httpClient = wrapClient(host); + + HttpGet request = new HttpGet(buildUrl(host, path, querys)); + for (Map.Entry e : headers.entrySet()) { + request.addHeader(e.getKey(), e.getValue()); + } + + return httpClient.execute(request); + } + + /** + * post form + * + * @param host + * @param path + * @param method + * @param headers + * @param querys + * @param bodys + * @return + * @throws Exception + */ + public static HttpResponse doPost(String host, String path, String method, + Map headers, + Map querys, + Map bodys) + throws Exception { + HttpClient httpClient = wrapClient(host); + + HttpPost request = new HttpPost(buildUrl(host, path, querys)); + for (Map.Entry e : headers.entrySet()) { + request.addHeader(e.getKey(), e.getValue()); + } + + if (bodys != null) { + List nameValuePairList = new ArrayList(); + + for (String key : bodys.keySet()) { + nameValuePairList.add(new BasicNameValuePair(key, bodys.get(key))); + } + UrlEncodedFormEntity formEntity = new UrlEncodedFormEntity(nameValuePairList, "utf-8"); + formEntity.setContentType("application/x-www-form-urlencoded; charset=UTF-8"); + request.setEntity(formEntity); + } + + return httpClient.execute(request); + } + + /** + * Post String + * + * @param host + * @param path + * @param method + * @param headers + * @param querys + * @param body + * @return + * @throws Exception + */ + public static HttpResponse doPost(String host, String path, String method, + Map headers, + Map querys, + String body) + throws Exception { + HttpClient httpClient = wrapClient(host); + + HttpPost request = new HttpPost(buildUrl(host, path, querys)); + for (Map.Entry e : headers.entrySet()) { + request.addHeader(e.getKey(), e.getValue()); + } + + if (StringUtils.isNotBlank(body)) { + request.setEntity(new StringEntity(body, "utf-8")); + } + + return httpClient.execute(request); + } + + /** + * Post stream + * + * @param host + * @param path + * @param method + * @param headers + * @param querys + * @param body + * @return + * @throws Exception + */ + public static HttpResponse doPost(String host, String path, String method, + Map headers, + Map querys, + byte[] body) + throws Exception { + HttpClient httpClient = wrapClient(host); + + HttpPost request = new HttpPost(buildUrl(host, path, querys)); + for (Map.Entry e : headers.entrySet()) { + request.addHeader(e.getKey(), e.getValue()); + } + + if (body != null) { + request.setEntity(new ByteArrayEntity(body)); + } + + return httpClient.execute(request); + } + + /** + * Put String + * @param host + * @param path + * @param method + * @param headers + * @param querys + * @param body + * @return + * @throws Exception + */ + public static HttpResponse doPut(String host, String path, String method, + Map headers, + Map querys, + String body) + throws Exception { + HttpClient httpClient = wrapClient(host); + + HttpPut request = new HttpPut(buildUrl(host, path, querys)); + for (Map.Entry e : headers.entrySet()) { + request.addHeader(e.getKey(), e.getValue()); + } + + if (StringUtils.isNotBlank(body)) { + request.setEntity(new StringEntity(body, "utf-8")); + } + + return httpClient.execute(request); + } + + /** + * Put stream + * @param host + * @param path + * @param method + * @param headers + * @param querys + * @param body + * @return + * @throws Exception + */ + public static HttpResponse doPut(String host, String path, String method, + Map headers, + Map querys, + byte[] body) + throws Exception { + HttpClient httpClient = wrapClient(host); + + HttpPut request = new HttpPut(buildUrl(host, path, querys)); + for (Map.Entry e : headers.entrySet()) { + request.addHeader(e.getKey(), e.getValue()); + } + + if (body != null) { + request.setEntity(new ByteArrayEntity(body)); + } + + return httpClient.execute(request); + } + + /** + * Delete + * + * @param host + * @param path + * @param method + * @param headers + * @param querys + * @return + * @throws Exception + */ + public static HttpResponse doDelete(String host, String path, String method, + Map headers, + Map querys) + throws Exception { + HttpClient httpClient = wrapClient(host); + + HttpDelete request = new HttpDelete(buildUrl(host, path, querys)); + for (Map.Entry e : headers.entrySet()) { + request.addHeader(e.getKey(), e.getValue()); + } + + return httpClient.execute(request); + } + + private static String buildUrl(String host, String path, Map querys) throws UnsupportedEncodingException { + StringBuilder sbUrl = new StringBuilder(); + sbUrl.append(host); + if (!StringUtils.isBlank(path)) { + sbUrl.append(path); + } + if (null != querys) { + StringBuilder sbQuery = new StringBuilder(); + for (Map.Entry query : querys.entrySet()) { + if (0 < sbQuery.length()) { + sbQuery.append("&"); + } + if (StringUtils.isBlank(query.getKey()) && !StringUtils.isBlank(query.getValue())) { + sbQuery.append(query.getValue()); + } + if (!StringUtils.isBlank(query.getKey())) { + sbQuery.append(query.getKey()); + if (!StringUtils.isBlank(query.getValue())) { + sbQuery.append("="); + sbQuery.append(URLEncoder.encode(query.getValue(), StandardCharsets.UTF_8)); + } + } + } + if (0 < sbQuery.length()) { + sbUrl.append("?").append(sbQuery); + } + } + + return sbUrl.toString(); + } + + private static HttpClient wrapClient(String host) { + HttpClient httpClient = new DefaultHttpClient(); + if (host.startsWith("https://")) { + sslClient(httpClient); + } + + return httpClient; + } + + private static void sslClient(HttpClient httpClient) { + try { + SSLContext ctx = SSLContext.getInstance("TLS"); + X509TrustManager tm = new X509TrustManager() { + public X509Certificate[] getAcceptedIssuers() { + return null; + } + public void checkClientTrusted(X509Certificate[] xcs, String str) { + + } + public void checkServerTrusted(X509Certificate[] xcs, String str) { + + } + }; + ctx.init(null, new TrustManager[] { tm }, null); + SSLSocketFactory ssf = new SSLSocketFactory(ctx); + ssf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER); + ClientConnectionManager ccm = httpClient.getConnectionManager(); + SchemeRegistry registry = ccm.getSchemeRegistry(); + registry.register(new Scheme("https", ssf, 443)); + } catch (KeyManagementException ex) { + throw new RuntimeException(ex); + } catch (NoSuchAlgorithmException ex) { + throw new RuntimeException(ex); + } + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/rcon/ConnectTask.java b/src/main/java/com/linearpast/minecraftmanager/utils/rcon/ConnectTask.java new file mode 100644 index 0000000..ddf14d6 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/rcon/ConnectTask.java @@ -0,0 +1,65 @@ +package com.linearpast.minecraftmanager.utils.rcon; + +import io.graversen.minecraft.rcon.MinecraftClient; +import io.graversen.minecraft.rcon.RconConnectException; +import io.graversen.minecraft.rcon.service.ConnectOptions; +import io.graversen.minecraft.rcon.service.RconDetails; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.util.concurrent.Callable; + +public class ConnectTask implements Callable { + private static final Logger log = LoggerFactory.getLogger(ConnectTask.class); + private final ConnectOptions connectOptions; + private final RconDetails rconDetails; + + ConnectTask(ConnectOptions connectOptions, RconDetails rconDetails) { + this.connectOptions = connectOptions; + this.rconDetails = rconDetails; + log.debug("{}", connectOptions); + } + + public MinecraftClient call() throws Exception { + int currentAttempt = 0; + + while(true) { + if (currentAttempt < this.connectOptions.getMaxRetries() && !Thread.currentThread().isInterrupted()) { + ++currentAttempt; + log.debug("Connection attempt {}", currentAttempt); + + MinecraftClient var8; + try { + var8 = MinecraftClient.connect(this.rconDetails.getHostname(), this.rconDetails.getPassword(), this.rconDetails.getPort()); + } catch (Exception var6) { + Exception e = var6; + log.error("Connection attempt failed", e); + continue; + } finally { + if (currentAttempt < this.connectOptions.getMaxRetries()) { + this.sleep(); + } else { + log.warn("Ran out of retries after {} total attempts", currentAttempt); + } + + } + + return var8; + } + + throw new RconConnectException("Unable to connect to Minecraft server after %d retries", new Object[]{currentAttempt - 1}); + } + } + + private void sleep() { + try { + log.debug("Pausing for {} ms", this.connectOptions.getTimeBetweenRetries().toMillis()); + Thread.sleep(this.connectOptions.getTimeBetweenRetries().toMillis()); + } catch (InterruptedException var2) { + InterruptedException e = var2; + e.printStackTrace(); + Thread.currentThread().interrupt(); + } + + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/rcon/LoginWhitelistCommand.java b/src/main/java/com/linearpast/minecraftmanager/utils/rcon/LoginWhitelistCommand.java new file mode 100644 index 0000000..2828a25 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/rcon/LoginWhitelistCommand.java @@ -0,0 +1,28 @@ +package com.linearpast.minecraftmanager.utils.rcon; + +import com.linearpast.minecraftmanager.utils.WhitelistTarget; +import com.linearpast.minecraftmanager.utils.config.SelfConfig; +import io.graversen.minecraft.rcon.commands.base.ICommand; +import io.graversen.minecraft.rcon.util.WhiteListModes; +import lombok.Getter; +import org.apache.commons.text.StringSubstitutor; + +import java.util.Map; +import java.util.Objects; + +public record LoginWhitelistCommand(WhitelistTarget whitelistTarget, WhiteListModes whiteListMode) implements ICommand { + public LoginWhitelistCommand(WhitelistTarget whitelistTarget, WhiteListModes whiteListMode) { + this.whitelistTarget = whitelistTarget; + this.whiteListMode = Objects.requireNonNull(whiteListMode); + } + + public String command() { + return switch (this.whiteListMode()) { + case ADD -> StringSubstitutor.replace(SelfConfig.addCommand + " ${name} ${uuid}", Map.of( + "name", this.whitelistTarget().name(), + "uuid", this.whitelistTarget().uuid()) + ); + case REMOVE, LIST, OFF, ON, RELOAD -> ""; + }; + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/rcon/MinecraftRconUtils.java b/src/main/java/com/linearpast/minecraftmanager/utils/rcon/MinecraftRconUtils.java new file mode 100644 index 0000000..b4359aa --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/rcon/MinecraftRconUtils.java @@ -0,0 +1,134 @@ +package com.linearpast.minecraftmanager.utils.rcon; + +import com.linearpast.minecraftmanager.utils.config.SelfConfig; +import io.graversen.minecraft.rcon.IMinecraftClient; +import io.graversen.minecraft.rcon.MinecraftClient; +import io.graversen.minecraft.rcon.MinecraftRcon; + +import java.io.IOException; +import java.time.Duration; +import java.util.Optional; +import java.util.concurrent.*; + +import io.graversen.minecraft.rcon.service.ConnectOptions; +import io.graversen.minecraft.rcon.service.*; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class MinecraftRconUtils { + private static final Logger log = LoggerFactory.getLogger(MinecraftRconUtils.class); + private final ConnectTask task; + private final RconDetails rconDetails; + private final ScheduledExecutorService executorService; + private volatile IMinecraftClient minecraftClient; + private volatile MinecraftRcon minecraftRcon; + private volatile boolean isConnected; + private volatile CountDownLatch connectionLatch; + + public MinecraftRconUtils(RconDetails rconDetails, ConnectOptions connectOptions) { + this.rconDetails = rconDetails; + this.executorService = Executors.newScheduledThreadPool(2); + this.task = new ConnectTask(connectOptions, rconDetails); + startConnectionWatcher(connectOptions.getConnectionWatcherInterval().toSeconds()); + } + + public void disconnect(){ + isConnected = false; + try {minecraftClient.close(); + }catch (Exception ignored){} + setMinecraftClient(null); + } + + public void connect(){ + boolean connected = isConnected(Duration.ofSeconds(1)); + if(connected) return; + doConnect(); + } + + public boolean isConnected(Duration timeout) { + if(!isConnected) return false; + if(minecraftClient == null) return false; + if(minecraftRcon == null) return false; + try { + return rconTest(minecraftClient, timeout); + }catch(Exception e) { + return false; + } + } + + private boolean rconTest(IMinecraftClient minecraftClient, Duration timeout){ + try { + minecraftClient.sendRawSilently(SelfConfig.testCommand).get(timeout.toSeconds(), TimeUnit.SECONDS); + return true; + } catch (ExecutionException | TimeoutException | InterruptedException var3) { + log.error("Lost connection to {}", this.rconDetails.getHostname()); + try {minecraftClient.close(); + } catch (IOException ignored) {} + return false; + } + + } + + public Optional minecraftRcon() { + return Optional.ofNullable(this.minecraftRcon); + } + + public void doConnect() { + doConnect(5); + } + public void doConnect(int timeout) { + try { + if(this.connectionLatch != null){ + this.connectionLatch.await(timeout, TimeUnit.SECONDS); + this.connectionLatch = new CountDownLatch(1); + } + Future submit = this.executorService.submit(task); + this.minecraftClient = submit.get(timeout, TimeUnit.SECONDS); + this.minecraftRcon = new MinecraftRcon(this.minecraftClient); + this.isConnected = true; + if(this.connectionLatch != null){ + this.connectionLatch.countDown(); + } + } catch (Exception var2) { + Exception e = var2; + disconnect(); + if (this.minecraftClient != null){ + this.connectionLatch.countDown(); + } + log.error("Connection fail to {}", this.rconDetails.getHostname(), var2); + } + } + + private void startConnectionWatcher(long intervalSeconds) { + this.executorService.scheduleWithFixedDelay(new TestConnect(this.rconDetails), 0, intervalSeconds, TimeUnit.SECONDS); + } + + public void setMinecraftClient(MinecraftClient minecraftClient) { + this.minecraftClient = minecraftClient; + if(this.minecraftClient != null) this.minecraftRcon = new MinecraftRcon(this.minecraftClient); + else this.minecraftRcon = null; + } + public void setConnected(boolean connected) { + this.isConnected = connected; + } + + private class TestConnect implements Runnable { + private final RconDetails rconDetails; + TestConnect(RconDetails rconDetails) { + this.rconDetails = rconDetails; + } + + @Override + public void run() { + try { + if(isConnected(Duration.ofSeconds(1))) return; + minecraftClient = MinecraftClient.connect(this.rconDetails.getHostname(), this.rconDetails.getPassword(), this.rconDetails.getPort()); + setMinecraftClient((MinecraftClient) minecraftClient); + setConnected(true); + }catch (Exception var2) { + disconnect(); + log.error("Connection fail to {}", this.rconDetails.getHostname(), var2); + } + } + } +} diff --git a/src/main/java/com/linearpast/minecraftmanager/utils/rcon/SelfWhiteListCommand.java b/src/main/java/com/linearpast/minecraftmanager/utils/rcon/SelfWhiteListCommand.java new file mode 100644 index 0000000..9a2bdb3 --- /dev/null +++ b/src/main/java/com/linearpast/minecraftmanager/utils/rcon/SelfWhiteListCommand.java @@ -0,0 +1,30 @@ +package com.linearpast.minecraftmanager.utils.rcon; + +import com.linearpast.minecraftmanager.utils.config.SelfConfig; +import io.graversen.minecraft.rcon.commands.base.BaseTargetedCommand; +import io.graversen.minecraft.rcon.util.Target; +import io.graversen.minecraft.rcon.util.WhiteListModes; +import lombok.Getter; +import org.apache.commons.text.StringSubstitutor; +import org.springframework.stereotype.Component; + +import java.util.Map; +import java.util.Objects; + +@Getter +public class SelfWhiteListCommand extends BaseTargetedCommand { + private final WhiteListModes whiteListMode; + + public SelfWhiteListCommand(Target target, WhiteListModes whiteListMode) { + super(target); + this.whiteListMode = Objects.requireNonNull(whiteListMode); + } + + public String command() { + return switch (this.getWhiteListMode()) { + case ADD, REMOVE -> + StringSubstitutor.replace(SelfConfig.command + " ${mode} ${target}", Map.of("mode", this.getWhiteListMode().getModeName(), "target", this.getTarget())); + case LIST, OFF, ON, RELOAD -> SelfConfig.command + " " + this.getWhiteListMode().getModeName(); + }; + } +} diff --git a/src/main/resources/META-INF/MANIFEST.MF b/src/main/resources/META-INF/MANIFEST.MF new file mode 100644 index 0000000..8c2ac32 --- /dev/null +++ b/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: com.linearpast.minecraftmanager.MinecraftManagerApplication + diff --git a/src/main/resources/META-INF/spring.factories b/src/main/resources/META-INF/spring.factories new file mode 100644 index 0000000..188cbd3 --- /dev/null +++ b/src/main/resources/META-INF/spring.factories @@ -0,0 +1 @@ +org.springframework.boot.env.EnvironmentPostProcessor=com.linearpast.minecraftmanager.utils.config.ConfigLoader \ No newline at end of file diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..4de5bac --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,45 @@ +server: + port: 8484 + servlet: + session: + timeout: 8h + +spring: + application: + name: MinecraftManager + datasource: + url: jdbc:mysql://127.0.0.1:3306/minecraft_manager_ltd?useSSL=false + username: admin + password: 123456 + driver-class-name: com.mysql.cj.jdbc.Driver + jpa: + show-sql: true + hibernate: + ddl-auto: update + properties: + hibernate: + dialect: org.hibernate.dialect.MySQL8Dialect + mail: + properties: + mail: + smtp: + auth: true + ssl: + enable: true + username: admin@163.com + password: 123456789 + port: 465 + host: smtp.163.com + +# ========== self config ========== +minecraft: + rcon: + host: 127.0.0.1 + port: 25575 + password: 123456 + wlcmd: whitelist + heart-time: 600 + test-cmd: ping + add-cmd: login whitelist +email: + enable: false diff --git a/src/main/resources/static/css/all.min.css b/src/main/resources/static/css/all.min.css new file mode 100644 index 0000000..0a132c9 --- /dev/null +++ b/src/main/resources/static/css/all.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-brands-400.eot);src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../font/fa-brands-400.woff2) format("woff2"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-brands-400.woff) format("woff"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-regular-400.eot);src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../font/fa-regular-400.woff2) format("woff2"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-regular-400.woff) format("woff"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-regular-400.ttf) format("truetype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-solid-900.eot);src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../font/fa-solid-900.woff2) format("woff2"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-solid-900.woff) format("woff"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900} \ No newline at end of file diff --git a/src/main/resources/static/css/animate.min.css b/src/main/resources/static/css/animate.min.css new file mode 100644 index 0000000..d6012da --- /dev/null +++ b/src/main/resources/static/css/animate.min.css @@ -0,0 +1,11 @@ + + +/*! + * animate.css -http://daneden.me/animate + * Version - 3.7.0 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2018 Daniel Eden + */ + +@-webkit-keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;-webkit-transform-origin:center bottom;animation-name:bounce;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-name:headShake;-webkit-animation-timing-function:ease-in-out;animation-name:headShake;animation-timing-function:ease-in-out}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-animation-name:swing;-webkit-transform-origin:top center;animation-name:swing;transform-origin:top center}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;-webkit-transform-origin:center;animation-name:jello;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.heartBeat{-webkit-animation-duration:1.3s;-webkit-animation-name:heartBeat;-webkit-animation-timing-function:ease-in-out;animation-duration:1.3s;animation-name:heartBeat;animation-timing-function:ease-in-out}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{-webkit-transform:scale3d(1.03,1.03,1.03);opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{-webkit-transform:scaleX(1);opacity:1;transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{-webkit-transform:scale3d(1.03,1.03,1.03);opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{-webkit-transform:scaleX(1);opacity:1;transform:scaleX(1)}}.bounceIn{-webkit-animation-duration:.75s;-webkit-animation-name:bounceIn;animation-duration:.75s;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,-3000px,0);opacity:0;transform:translate3d(0,-3000px,0)}60%{-webkit-transform:translate3d(0,25px,0);opacity:1;transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,-3000px,0);opacity:0;transform:translate3d(0,-3000px,0)}60%{-webkit-transform:translate3d(0,25px,0);opacity:1;transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(-3000px,0,0);opacity:0;transform:translate3d(-3000px,0,0)}60%{-webkit-transform:translate3d(25px,0,0);opacity:1;transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(-3000px,0,0);opacity:0;transform:translate3d(-3000px,0,0)}60%{-webkit-transform:translate3d(25px,0,0);opacity:1;transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(3000px,0,0);opacity:0;transform:translate3d(3000px,0,0)}60%{-webkit-transform:translate3d(-25px,0,0);opacity:1;transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(3000px,0,0);opacity:0;transform:translate3d(3000px,0,0)}60%{-webkit-transform:translate3d(-25px,0,0);opacity:1;transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,3000px,0);opacity:0;transform:translate3d(0,3000px,0)}60%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,3000px,0);opacity:0;transform:translate3d(0,3000px,0)}60%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{-webkit-transform:scale3d(1.1,1.1,1.1);opacity:1;transform:scale3d(1.1,1.1,1.1)}to{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{-webkit-transform:scale3d(1.1,1.1,1.1);opacity:1;transform:scale3d(1.1,1.1,1.1)}to{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-duration:.75s;-webkit-animation-name:bounceOut;animation-duration:.75s;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{-webkit-transform:translate3d(20px,0,0);opacity:1;transform:translate3d(20px,0,0)}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{-webkit-transform:translate3d(20px,0,0);opacity:1;transform:translate3d(20px,0,0)}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{-webkit-transform:translate3d(-20px,0,0);opacity:1;transform:translate3d(-20px,0,0)}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{-webkit-transform:translate3d(-20px,0,0);opacity:1;transform:translate3d(-20px,0,0)}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{-webkit-transform:translate3d(0,20px,0);opacity:1;transform:translate3d(0,20px,0)}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{-webkit-transform:translate3d(0,20px,0);opacity:1;transform:translate3d(0,20px,0)}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInDown{0%{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInDownBig{0%{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInLeft{0%{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInRight{0%{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInRightBig{0%{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInUp{0%{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInUpBig{0%{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg)}to{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)}}@keyframes flip{0%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg)}to{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)}}.animated.flip{-webkit-animation-name:flip;-webkit-backface-visibility:visible;animation-name:flip;backface-visibility:visible}@-webkit-keyframes flipInX{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);opacity:1;transform:perspective(400px) rotateX(10deg)}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);opacity:1;transform:perspective(400px) rotateX(10deg)}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-animation-name:flipInX;-webkit-backface-visibility:visible!important;animation-name:flipInX;backface-visibility:visible!important}@-webkit-keyframes flipInY{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateY(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);opacity:1;transform:perspective(400px) rotateY(10deg)}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateY(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);opacity:1;transform:perspective(400px) rotateY(10deg)}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-animation-name:flipInY;-webkit-backface-visibility:visible!important;animation-name:flipInY;backface-visibility:visible!important}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);opacity:1;transform:perspective(400px) rotateX(-20deg)}to{-webkit-transform:perspective(400px) rotateX(90deg);opacity:0;transform:perspective(400px) rotateX(90deg)}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);opacity:1;transform:perspective(400px) rotateX(-20deg)}to{-webkit-transform:perspective(400px) rotateX(90deg);opacity:0;transform:perspective(400px) rotateX(90deg)}}.flipOutX{-webkit-animation-duration:.75s;-webkit-animation-name:flipOutX;-webkit-backface-visibility:visible!important;animation-duration:.75s;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);opacity:1;transform:perspective(400px) rotateY(-15deg)}to{-webkit-transform:perspective(400px) rotateY(90deg);opacity:0;transform:perspective(400px) rotateY(90deg)}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);opacity:1;transform:perspective(400px) rotateY(-15deg)}to{-webkit-transform:perspective(400px) rotateY(90deg);opacity:0;transform:perspective(400px) rotateY(90deg)}}.flipOutY{-webkit-animation-duration:.75s;-webkit-animation-name:flipOutY;-webkit-backface-visibility:visible!important;animation-duration:.75s;animation-name:flipOutY;backface-visibility:visible!important}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);opacity:0;transform:translate3d(100%,0,0) skewX(-30deg)}60%{-webkit-transform:skewX(20deg);opacity:1;transform:skewX(20deg)}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);opacity:0;transform:translate3d(100%,0,0) skewX(-30deg)}60%{-webkit-transform:skewX(20deg);opacity:1;transform:skewX(20deg)}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-name:lightSpeedIn;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);opacity:0;transform:translate3d(100%,0,0) skewX(30deg)}}@keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);opacity:0;transform:translate3d(100%,0,0) skewX(30deg)}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-name:lightSpeedOut;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(-200deg);transform-origin:center}to{-webkit-transform:translateZ(0);-webkit-transform-origin:center;opacity:1;transform:translateZ(0);transform-origin:center}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(-200deg);transform-origin:center}to{-webkit-transform:translateZ(0);-webkit-transform-origin:center;opacity:1;transform:translateZ(0);transform-origin:center}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(45deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(45deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-90deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-90deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center;opacity:1;transform-origin:center}to{-webkit-transform:rotate(200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(200deg);transform-origin:center}}@keyframes rotateOut{0%{-webkit-transform-origin:center;opacity:1;transform-origin:center}to{-webkit-transform:rotate(200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(200deg);transform-origin:center}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-45deg);transform-origin:right bottom}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-45deg);transform-origin:right bottom}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(90deg);transform-origin:right bottom}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(90deg);transform-origin:right bottom}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform-origin:top left}20%,60%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(80deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(60deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;opacity:1;transform:rotate(60deg);transform-origin:top left}to{-webkit-transform:translate3d(0,700px,0);opacity:0;transform:translate3d(0,700px,0)}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform-origin:top left}20%,60%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(80deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(60deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;opacity:1;transform:rotate(60deg);transform-origin:top left}to{-webkit-transform:translate3d(0,700px,0);opacity:0;transform:translate3d(0,700px,0)}}.hinge{-webkit-animation-duration:2s;-webkit-animation-name:hinge;animation-duration:2s;animation-name:hinge}@-webkit-keyframes jackInTheBox{0%{-webkit-transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{-webkit-transform:scale(1);opacity:1;transform:scale(1)}}@keyframes jackInTheBox{0%{-webkit-transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{-webkit-transform:scale(1);opacity:1;transform:scale(1)}}.jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes rollIn{0%{-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) rotate(120deg);opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) rotate(120deg);opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoomInDown{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoomInLeft{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoomInRight{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}@keyframes zoomInUp{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom}}@keyframes zoomOutDown{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{-webkit-transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}@keyframes zoomOutLeft{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{-webkit-transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{-webkit-transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}@keyframes zoomOutRight{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{-webkit-transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom}}@keyframes zoomOutUp{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:hidden}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:hidden}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:hidden}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:hidden}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:hidden}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:hidden}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:hidden}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:hidden}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}.animated{-webkit-animation-duration:1s;-webkit-animation-fill-mode:both;animation-duration:1s;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}.animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}.animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}.animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}.animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}.animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}.animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}.animated.slow{-webkit-animation-duration:2s;animation-duration:2s}.animated.slower{-webkit-animation-duration:3s;animation-duration:3s}@media (prefers-reduced-motion){.animated{-webkit-animation:unset!important;-webkit-transition:none!important;animation:unset!important;transition:none!important}} \ No newline at end of file diff --git a/src/main/resources/static/css/aos.min.css b/src/main/resources/static/css/aos.min.css new file mode 100644 index 0000000..2e1a9be --- /dev/null +++ b/src/main/resources/static/css/aos.min.css @@ -0,0 +1 @@ +[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0s}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos]{pointer-events:none}[data-aos].aos-animate{pointer-events:auto}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}@media screen{html:not(.no-js) [data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;-webkit-transform:none;transform:none}html:not(.no-js) [data-aos=fade-up]{-webkit-transform:translate3d(0,100px,0);transform:translate3d(0,100px,0)}html:not(.no-js) [data-aos=fade-down]{-webkit-transform:translate3d(0,-100px,0);transform:translate3d(0,-100px,0)}html:not(.no-js) [data-aos=fade-right]{-webkit-transform:translate3d(-100px,0,0);transform:translate3d(-100px,0,0)}html:not(.no-js) [data-aos=fade-left]{-webkit-transform:translate3d(100px,0,0);transform:translate3d(100px,0,0)}html:not(.no-js) [data-aos=fade-up-right]{-webkit-transform:translate3d(-100px,100px,0);transform:translate3d(-100px,100px,0)}html:not(.no-js) [data-aos=fade-up-left]{-webkit-transform:translate3d(100px,100px,0);transform:translate3d(100px,100px,0)}html:not(.no-js) [data-aos=fade-down-right]{-webkit-transform:translate3d(-100px,-100px,0);transform:translate3d(-100px,-100px,0)}html:not(.no-js) [data-aos=fade-down-left]{-webkit-transform:translate3d(100px,-100px,0);transform:translate3d(100px,-100px,0)}html:not(.no-js) [data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}html:not(.no-js) [data-aos=zoom-in]{-webkit-transform:scale(.6);transform:scale(.6)}html:not(.no-js) [data-aos=zoom-in-up]{-webkit-transform:translate3d(0,100px,0) scale(.6);transform:translate3d(0,100px,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-down]{-webkit-transform:translate3d(0,-100px,0) scale(.6);transform:translate3d(0,-100px,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-right]{-webkit-transform:translate3d(-100px,0,0) scale(.6);transform:translate3d(-100px,0,0) scale(.6)}html:not(.no-js) [data-aos=zoom-in-left]{-webkit-transform:translate3d(100px,0,0) scale(.6);transform:translate3d(100px,0,0) scale(.6)}html:not(.no-js) [data-aos=zoom-out]{-webkit-transform:scale(1.2);transform:scale(1.2)}html:not(.no-js) [data-aos=zoom-out-up]{-webkit-transform:translate3d(0,100px,0) scale(1.2);transform:translate3d(0,100px,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-down]{-webkit-transform:translate3d(0,-100px,0) scale(1.2);transform:translate3d(0,-100px,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-right]{-webkit-transform:translate3d(-100px,0,0) scale(1.2);transform:translate3d(-100px,0,0) scale(1.2)}html:not(.no-js) [data-aos=zoom-out-left]{-webkit-transform:translate3d(100px,0,0) scale(1.2);transform:translate3d(100px,0,0) scale(1.2)}html:not(.no-js) [data-aos^=slide][data-aos^=slide]{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;visibility:hidden}html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate{visibility:visible;-webkit-transform:translateZ(0);transform:translateZ(0)}html:not(.no-js) [data-aos=slide-up]{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}html:not(.no-js) [data-aos=slide-down]{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}html:not(.no-js) [data-aos=slide-right]{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}html:not(.no-js) [data-aos=slide-left]{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}html:not(.no-js) [data-aos^=flip][data-aos^=flip]{-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}html:not(.no-js) [data-aos=flip-left]{-webkit-transform:perspective(2500px) rotateY(-100deg);transform:perspective(2500px) rotateY(-100deg)}html:not(.no-js) [data-aos=flip-left].aos-animate{-webkit-transform:perspective(2500px) rotateY(0);transform:perspective(2500px) rotateY(0)}html:not(.no-js) [data-aos=flip-right]{-webkit-transform:perspective(2500px) rotateY(100deg);transform:perspective(2500px) rotateY(100deg)}html:not(.no-js) [data-aos=flip-right].aos-animate{-webkit-transform:perspective(2500px) rotateY(0);transform:perspective(2500px) rotateY(0)}html:not(.no-js) [data-aos=flip-up]{-webkit-transform:perspective(2500px) rotateX(-100deg);transform:perspective(2500px) rotateX(-100deg)}html:not(.no-js) [data-aos=flip-up].aos-animate{-webkit-transform:perspective(2500px) rotateX(0);transform:perspective(2500px) rotateX(0)}html:not(.no-js) [data-aos=flip-down]{-webkit-transform:perspective(2500px) rotateX(100deg);transform:perspective(2500px) rotateX(100deg)}html:not(.no-js) [data-aos=flip-down].aos-animate{-webkit-transform:perspective(2500px) rotateX(0);transform:perspective(2500px) rotateX(0)}} \ No newline at end of file diff --git a/src/main/resources/static/css/bootstrap-icons.css b/src/main/resources/static/css/bootstrap-icons.css new file mode 100644 index 0000000..d866af2 --- /dev/null +++ b/src/main/resources/static/css/bootstrap-icons.css @@ -0,0 +1,1345 @@ +@font-face { + font-family: "bootstrap-icons"; + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/bootstrap-icons/font/fonts/bootstrap-icons.woff2?8bd4575acf83c7696dc7a14a966660a3") format("woff2"), +url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/bootstrap-icons/font/fonts/bootstrap-icons.woff?8bd4575acf83c7696dc7a14a966660a3") format("woff"); +} + +[class^="bi-"]::before, +[class*=" bi-"]::before { + display: inline-block; + font-family: bootstrap-icons !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + vertical-align: -.125em; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.bi-alarm-fill::before { content: "\f101"; } +.bi-alarm::before { content: "\f102"; } +.bi-align-bottom::before { content: "\f103"; } +.bi-align-center::before { content: "\f104"; } +.bi-align-end::before { content: "\f105"; } +.bi-align-middle::before { content: "\f106"; } +.bi-align-start::before { content: "\f107"; } +.bi-align-top::before { content: "\f108"; } +.bi-alt::before { content: "\f109"; } +.bi-app-indicator::before { content: "\f10a"; } +.bi-app::before { content: "\f10b"; } +.bi-archive-fill::before { content: "\f10c"; } +.bi-archive::before { content: "\f10d"; } +.bi-arrow-90deg-down::before { content: "\f10e"; } +.bi-arrow-90deg-left::before { content: "\f10f"; } +.bi-arrow-90deg-right::before { content: "\f110"; } +.bi-arrow-90deg-up::before { content: "\f111"; } +.bi-arrow-bar-down::before { content: "\f112"; } +.bi-arrow-bar-left::before { content: "\f113"; } +.bi-arrow-bar-right::before { content: "\f114"; } +.bi-arrow-bar-up::before { content: "\f115"; } +.bi-arrow-clockwise::before { content: "\f116"; } +.bi-arrow-counterclockwise::before { content: "\f117"; } +.bi-arrow-down-circle-fill::before { content: "\f118"; } +.bi-arrow-down-circle::before { content: "\f119"; } +.bi-arrow-down-left-circle-fill::before { content: "\f11a"; } +.bi-arrow-down-left-circle::before { content: "\f11b"; } +.bi-arrow-down-left-square-fill::before { content: "\f11c"; } +.bi-arrow-down-left-square::before { content: "\f11d"; } +.bi-arrow-down-left::before { content: "\f11e"; } +.bi-arrow-down-right-circle-fill::before { content: "\f11f"; } +.bi-arrow-down-right-circle::before { content: "\f120"; } +.bi-arrow-down-right-square-fill::before { content: "\f121"; } +.bi-arrow-down-right-square::before { content: "\f122"; } +.bi-arrow-down-right::before { content: "\f123"; } +.bi-arrow-down-short::before { content: "\f124"; } +.bi-arrow-down-square-fill::before { content: "\f125"; } +.bi-arrow-down-square::before { content: "\f126"; } +.bi-arrow-down-up::before { content: "\f127"; } +.bi-arrow-down::before { content: "\f128"; } +.bi-arrow-left-circle-fill::before { content: "\f129"; } +.bi-arrow-left-circle::before { content: "\f12a"; } +.bi-arrow-left-right::before { content: "\f12b"; } +.bi-arrow-left-short::before { content: "\f12c"; } +.bi-arrow-left-square-fill::before { content: "\f12d"; } +.bi-arrow-left-square::before { content: "\f12e"; } +.bi-arrow-left::before { content: "\f12f"; } +.bi-arrow-repeat::before { content: "\f130"; } +.bi-arrow-return-left::before { content: "\f131"; } +.bi-arrow-return-right::before { content: "\f132"; } +.bi-arrow-right-circle-fill::before { content: "\f133"; } +.bi-arrow-right-circle::before { content: "\f134"; } +.bi-arrow-right-short::before { content: "\f135"; } +.bi-arrow-right-square-fill::before { content: "\f136"; } +.bi-arrow-right-square::before { content: "\f137"; } +.bi-arrow-right::before { content: "\f138"; } +.bi-arrow-up-circle-fill::before { content: "\f139"; } +.bi-arrow-up-circle::before { content: "\f13a"; } +.bi-arrow-up-left-circle-fill::before { content: "\f13b"; } +.bi-arrow-up-left-circle::before { content: "\f13c"; } +.bi-arrow-up-left-square-fill::before { content: "\f13d"; } +.bi-arrow-up-left-square::before { content: "\f13e"; } +.bi-arrow-up-left::before { content: "\f13f"; } +.bi-arrow-up-right-circle-fill::before { content: "\f140"; } +.bi-arrow-up-right-circle::before { content: "\f141"; } +.bi-arrow-up-right-square-fill::before { content: "\f142"; } +.bi-arrow-up-right-square::before { content: "\f143"; } +.bi-arrow-up-right::before { content: "\f144"; } +.bi-arrow-up-short::before { content: "\f145"; } +.bi-arrow-up-square-fill::before { content: "\f146"; } +.bi-arrow-up-square::before { content: "\f147"; } +.bi-arrow-up::before { content: "\f148"; } +.bi-arrows-angle-contract::before { content: "\f149"; } +.bi-arrows-angle-expand::before { content: "\f14a"; } +.bi-arrows-collapse::before { content: "\f14b"; } +.bi-arrows-expand::before { content: "\f14c"; } +.bi-arrows-fullscreen::before { content: "\f14d"; } +.bi-arrows-move::before { content: "\f14e"; } +.bi-aspect-ratio-fill::before { content: "\f14f"; } +.bi-aspect-ratio::before { content: "\f150"; } +.bi-asterisk::before { content: "\f151"; } +.bi-at::before { content: "\f152"; } +.bi-award-fill::before { content: "\f153"; } +.bi-award::before { content: "\f154"; } +.bi-back::before { content: "\f155"; } +.bi-backspace-fill::before { content: "\f156"; } +.bi-backspace-reverse-fill::before { content: "\f157"; } +.bi-backspace-reverse::before { content: "\f158"; } +.bi-backspace::before { content: "\f159"; } +.bi-badge-3d-fill::before { content: "\f15a"; } +.bi-badge-3d::before { content: "\f15b"; } +.bi-badge-4k-fill::before { content: "\f15c"; } +.bi-badge-4k::before { content: "\f15d"; } +.bi-badge-8k-fill::before { content: "\f15e"; } +.bi-badge-8k::before { content: "\f15f"; } +.bi-badge-ad-fill::before { content: "\f160"; } +.bi-badge-ad::before { content: "\f161"; } +.bi-badge-ar-fill::before { content: "\f162"; } +.bi-badge-ar::before { content: "\f163"; } +.bi-badge-cc-fill::before { content: "\f164"; } +.bi-badge-cc::before { content: "\f165"; } +.bi-badge-hd-fill::before { content: "\f166"; } +.bi-badge-hd::before { content: "\f167"; } +.bi-badge-tm-fill::before { content: "\f168"; } +.bi-badge-tm::before { content: "\f169"; } +.bi-badge-vo-fill::before { content: "\f16a"; } +.bi-badge-vo::before { content: "\f16b"; } +.bi-badge-vr-fill::before { content: "\f16c"; } +.bi-badge-vr::before { content: "\f16d"; } +.bi-badge-wc-fill::before { content: "\f16e"; } +.bi-badge-wc::before { content: "\f16f"; } +.bi-bag-check-fill::before { content: "\f170"; } +.bi-bag-check::before { content: "\f171"; } +.bi-bag-dash-fill::before { content: "\f172"; } +.bi-bag-dash::before { content: "\f173"; } +.bi-bag-fill::before { content: "\f174"; } +.bi-bag-plus-fill::before { content: "\f175"; } +.bi-bag-plus::before { content: "\f176"; } +.bi-bag-x-fill::before { content: "\f177"; } +.bi-bag-x::before { content: "\f178"; } +.bi-bag::before { content: "\f179"; } +.bi-bar-chart-fill::before { content: "\f17a"; } +.bi-bar-chart-line-fill::before { content: "\f17b"; } +.bi-bar-chart-line::before { content: "\f17c"; } +.bi-bar-chart-steps::before { content: "\f17d"; } +.bi-bar-chart::before { content: "\f17e"; } +.bi-basket-fill::before { content: "\f17f"; } +.bi-basket::before { content: "\f180"; } +.bi-basket2-fill::before { content: "\f181"; } +.bi-basket2::before { content: "\f182"; } +.bi-basket3-fill::before { content: "\f183"; } +.bi-basket3::before { content: "\f184"; } +.bi-battery-charging::before { content: "\f185"; } +.bi-battery-full::before { content: "\f186"; } +.bi-battery-half::before { content: "\f187"; } +.bi-battery::before { content: "\f188"; } +.bi-bell-fill::before { content: "\f189"; } +.bi-bell::before { content: "\f18a"; } +.bi-bezier::before { content: "\f18b"; } +.bi-bezier2::before { content: "\f18c"; } +.bi-bicycle::before { content: "\f18d"; } +.bi-binoculars-fill::before { content: "\f18e"; } +.bi-binoculars::before { content: "\f18f"; } +.bi-blockquote-left::before { content: "\f190"; } +.bi-blockquote-right::before { content: "\f191"; } +.bi-book-fill::before { content: "\f192"; } +.bi-book-half::before { content: "\f193"; } +.bi-book::before { content: "\f194"; } +.bi-bookmark-check-fill::before { content: "\f195"; } +.bi-bookmark-check::before { content: "\f196"; } +.bi-bookmark-dash-fill::before { content: "\f197"; } +.bi-bookmark-dash::before { content: "\f198"; } +.bi-bookmark-fill::before { content: "\f199"; } +.bi-bookmark-heart-fill::before { content: "\f19a"; } +.bi-bookmark-heart::before { content: "\f19b"; } +.bi-bookmark-plus-fill::before { content: "\f19c"; } +.bi-bookmark-plus::before { content: "\f19d"; } +.bi-bookmark-star-fill::before { content: "\f19e"; } +.bi-bookmark-star::before { content: "\f19f"; } +.bi-bookmark-x-fill::before { content: "\f1a0"; } +.bi-bookmark-x::before { content: "\f1a1"; } +.bi-bookmark::before { content: "\f1a2"; } +.bi-bookmarks-fill::before { content: "\f1a3"; } +.bi-bookmarks::before { content: "\f1a4"; } +.bi-bookshelf::before { content: "\f1a5"; } +.bi-bootstrap-fill::before { content: "\f1a6"; } +.bi-bootstrap-reboot::before { content: "\f1a7"; } +.bi-bootstrap::before { content: "\f1a8"; } +.bi-border-all::before { content: "\f1a9"; } +.bi-border-bottom::before { content: "\f1aa"; } +.bi-border-center::before { content: "\f1ab"; } +.bi-border-inner::before { content: "\f1ac"; } +.bi-border-left::before { content: "\f1ad"; } +.bi-border-middle::before { content: "\f1ae"; } +.bi-border-outer::before { content: "\f1af"; } +.bi-border-right::before { content: "\f1b0"; } +.bi-border-style::before { content: "\f1b1"; } +.bi-border-top::before { content: "\f1b2"; } +.bi-border-width::before { content: "\f1b3"; } +.bi-border::before { content: "\f1b4"; } +.bi-bounding-box-circles::before { content: "\f1b5"; } +.bi-bounding-box::before { content: "\f1b6"; } +.bi-box-arrow-down-left::before { content: "\f1b7"; } +.bi-box-arrow-down-right::before { content: "\f1b8"; } +.bi-box-arrow-down::before { content: "\f1b9"; } +.bi-box-arrow-in-down-left::before { content: "\f1ba"; } +.bi-box-arrow-in-down-right::before { content: "\f1bb"; } +.bi-box-arrow-in-down::before { content: "\f1bc"; } +.bi-box-arrow-in-left::before { content: "\f1bd"; } +.bi-box-arrow-in-right::before { content: "\f1be"; } +.bi-box-arrow-in-up-left::before { content: "\f1bf"; } +.bi-box-arrow-in-up-right::before { content: "\f1c0"; } +.bi-box-arrow-in-up::before { content: "\f1c1"; } +.bi-box-arrow-left::before { content: "\f1c2"; } +.bi-box-arrow-right::before { content: "\f1c3"; } +.bi-box-arrow-up-left::before { content: "\f1c4"; } +.bi-box-arrow-up-right::before { content: "\f1c5"; } +.bi-box-arrow-up::before { content: "\f1c6"; } +.bi-box-seam::before { content: "\f1c7"; } +.bi-box::before { content: "\f1c8"; } +.bi-braces::before { content: "\f1c9"; } +.bi-bricks::before { content: "\f1ca"; } +.bi-briefcase-fill::before { content: "\f1cb"; } +.bi-briefcase::before { content: "\f1cc"; } +.bi-brightness-alt-high-fill::before { content: "\f1cd"; } +.bi-brightness-alt-high::before { content: "\f1ce"; } +.bi-brightness-alt-low-fill::before { content: "\f1cf"; } +.bi-brightness-alt-low::before { content: "\f1d0"; } +.bi-brightness-high-fill::before { content: "\f1d1"; } +.bi-brightness-high::before { content: "\f1d2"; } +.bi-brightness-low-fill::before { content: "\f1d3"; } +.bi-brightness-low::before { content: "\f1d4"; } +.bi-broadcast-pin::before { content: "\f1d5"; } +.bi-broadcast::before { content: "\f1d6"; } +.bi-brush-fill::before { content: "\f1d7"; } +.bi-brush::before { content: "\f1d8"; } +.bi-bucket-fill::before { content: "\f1d9"; } +.bi-bucket::before { content: "\f1da"; } +.bi-bug-fill::before { content: "\f1db"; } +.bi-bug::before { content: "\f1dc"; } +.bi-building::before { content: "\f1dd"; } +.bi-bullseye::before { content: "\f1de"; } +.bi-calculator-fill::before { content: "\f1df"; } +.bi-calculator::before { content: "\f1e0"; } +.bi-calendar-check-fill::before { content: "\f1e1"; } +.bi-calendar-check::before { content: "\f1e2"; } +.bi-calendar-date-fill::before { content: "\f1e3"; } +.bi-calendar-date::before { content: "\f1e4"; } +.bi-calendar-day-fill::before { content: "\f1e5"; } +.bi-calendar-day::before { content: "\f1e6"; } +.bi-calendar-event-fill::before { content: "\f1e7"; } +.bi-calendar-event::before { content: "\f1e8"; } +.bi-calendar-fill::before { content: "\f1e9"; } +.bi-calendar-minus-fill::before { content: "\f1ea"; } +.bi-calendar-minus::before { content: "\f1eb"; } +.bi-calendar-month-fill::before { content: "\f1ec"; } +.bi-calendar-month::before { content: "\f1ed"; } +.bi-calendar-plus-fill::before { content: "\f1ee"; } +.bi-calendar-plus::before { content: "\f1ef"; } +.bi-calendar-range-fill::before { content: "\f1f0"; } +.bi-calendar-range::before { content: "\f1f1"; } +.bi-calendar-week-fill::before { content: "\f1f2"; } +.bi-calendar-week::before { content: "\f1f3"; } +.bi-calendar-x-fill::before { content: "\f1f4"; } +.bi-calendar-x::before { content: "\f1f5"; } +.bi-calendar::before { content: "\f1f6"; } +.bi-calendar2-check-fill::before { content: "\f1f7"; } +.bi-calendar2-check::before { content: "\f1f8"; } +.bi-calendar2-date-fill::before { content: "\f1f9"; } +.bi-calendar2-date::before { content: "\f1fa"; } +.bi-calendar2-day-fill::before { content: "\f1fb"; } +.bi-calendar2-day::before { content: "\f1fc"; } +.bi-calendar2-event-fill::before { content: "\f1fd"; } +.bi-calendar2-event::before { content: "\f1fe"; } +.bi-calendar2-fill::before { content: "\f1ff"; } +.bi-calendar2-minus-fill::before { content: "\f200"; } +.bi-calendar2-minus::before { content: "\f201"; } +.bi-calendar2-month-fill::before { content: "\f202"; } +.bi-calendar2-month::before { content: "\f203"; } +.bi-calendar2-plus-fill::before { content: "\f204"; } +.bi-calendar2-plus::before { content: "\f205"; } +.bi-calendar2-range-fill::before { content: "\f206"; } +.bi-calendar2-range::before { content: "\f207"; } +.bi-calendar2-week-fill::before { content: "\f208"; } +.bi-calendar2-week::before { content: "\f209"; } +.bi-calendar2-x-fill::before { content: "\f20a"; } +.bi-calendar2-x::before { content: "\f20b"; } +.bi-calendar2::before { content: "\f20c"; } +.bi-calendar3-event-fill::before { content: "\f20d"; } +.bi-calendar3-event::before { content: "\f20e"; } +.bi-calendar3-fill::before { content: "\f20f"; } +.bi-calendar3-range-fill::before { content: "\f210"; } +.bi-calendar3-range::before { content: "\f211"; } +.bi-calendar3-week-fill::before { content: "\f212"; } +.bi-calendar3-week::before { content: "\f213"; } +.bi-calendar3::before { content: "\f214"; } +.bi-calendar4-event::before { content: "\f215"; } +.bi-calendar4-range::before { content: "\f216"; } +.bi-calendar4-week::before { content: "\f217"; } +.bi-calendar4::before { content: "\f218"; } +.bi-camera-fill::before { content: "\f219"; } +.bi-camera-reels-fill::before { content: "\f21a"; } +.bi-camera-reels::before { content: "\f21b"; } +.bi-camera-video-fill::before { content: "\f21c"; } +.bi-camera-video-off-fill::before { content: "\f21d"; } +.bi-camera-video-off::before { content: "\f21e"; } +.bi-camera-video::before { content: "\f21f"; } +.bi-camera::before { content: "\f220"; } +.bi-camera2::before { content: "\f221"; } +.bi-capslock-fill::before { content: "\f222"; } +.bi-capslock::before { content: "\f223"; } +.bi-card-checklist::before { content: "\f224"; } +.bi-card-heading::before { content: "\f225"; } +.bi-card-image::before { content: "\f226"; } +.bi-card-list::before { content: "\f227"; } +.bi-card-text::before { content: "\f228"; } +.bi-caret-down-fill::before { content: "\f229"; } +.bi-caret-down-square-fill::before { content: "\f22a"; } +.bi-caret-down-square::before { content: "\f22b"; } +.bi-caret-down::before { content: "\f22c"; } +.bi-caret-left-fill::before { content: "\f22d"; } +.bi-caret-left-square-fill::before { content: "\f22e"; } +.bi-caret-left-square::before { content: "\f22f"; } +.bi-caret-left::before { content: "\f230"; } +.bi-caret-right-fill::before { content: "\f231"; } +.bi-caret-right-square-fill::before { content: "\f232"; } +.bi-caret-right-square::before { content: "\f233"; } +.bi-caret-right::before { content: "\f234"; } +.bi-caret-up-fill::before { content: "\f235"; } +.bi-caret-up-square-fill::before { content: "\f236"; } +.bi-caret-up-square::before { content: "\f237"; } +.bi-caret-up::before { content: "\f238"; } +.bi-cart-check-fill::before { content: "\f239"; } +.bi-cart-check::before { content: "\f23a"; } +.bi-cart-dash-fill::before { content: "\f23b"; } +.bi-cart-dash::before { content: "\f23c"; } +.bi-cart-fill::before { content: "\f23d"; } +.bi-cart-plus-fill::before { content: "\f23e"; } +.bi-cart-plus::before { content: "\f23f"; } +.bi-cart-x-fill::before { content: "\f240"; } +.bi-cart-x::before { content: "\f241"; } +.bi-cart::before { content: "\f242"; } +.bi-cart2::before { content: "\f243"; } +.bi-cart3::before { content: "\f244"; } +.bi-cart4::before { content: "\f245"; } +.bi-cash-stack::before { content: "\f246"; } +.bi-cash::before { content: "\f247"; } +.bi-cast::before { content: "\f248"; } +.bi-chat-dots-fill::before { content: "\f249"; } +.bi-chat-dots::before { content: "\f24a"; } +.bi-chat-fill::before { content: "\f24b"; } +.bi-chat-left-dots-fill::before { content: "\f24c"; } +.bi-chat-left-dots::before { content: "\f24d"; } +.bi-chat-left-fill::before { content: "\f24e"; } +.bi-chat-left-quote-fill::before { content: "\f24f"; } +.bi-chat-left-quote::before { content: "\f250"; } +.bi-chat-left-text-fill::before { content: "\f251"; } +.bi-chat-left-text::before { content: "\f252"; } +.bi-chat-left::before { content: "\f253"; } +.bi-chat-quote-fill::before { content: "\f254"; } +.bi-chat-quote::before { content: "\f255"; } +.bi-chat-right-dots-fill::before { content: "\f256"; } +.bi-chat-right-dots::before { content: "\f257"; } +.bi-chat-right-fill::before { content: "\f258"; } +.bi-chat-right-quote-fill::before { content: "\f259"; } +.bi-chat-right-quote::before { content: "\f25a"; } +.bi-chat-right-text-fill::before { content: "\f25b"; } +.bi-chat-right-text::before { content: "\f25c"; } +.bi-chat-right::before { content: "\f25d"; } +.bi-chat-square-dots-fill::before { content: "\f25e"; } +.bi-chat-square-dots::before { content: "\f25f"; } +.bi-chat-square-fill::before { content: "\f260"; } +.bi-chat-square-quote-fill::before { content: "\f261"; } +.bi-chat-square-quote::before { content: "\f262"; } +.bi-chat-square-text-fill::before { content: "\f263"; } +.bi-chat-square-text::before { content: "\f264"; } +.bi-chat-square::before { content: "\f265"; } +.bi-chat-text-fill::before { content: "\f266"; } +.bi-chat-text::before { content: "\f267"; } +.bi-chat::before { content: "\f268"; } +.bi-check-all::before { content: "\f269"; } +.bi-check-circle-fill::before { content: "\f26a"; } +.bi-check-circle::before { content: "\f26b"; } +.bi-check-square-fill::before { content: "\f26c"; } +.bi-check-square::before { content: "\f26d"; } +.bi-check::before { content: "\f26e"; } +.bi-check2-all::before { content: "\f26f"; } +.bi-check2-circle::before { content: "\f270"; } +.bi-check2-square::before { content: "\f271"; } +.bi-check2::before { content: "\f272"; } +.bi-chevron-bar-contract::before { content: "\f273"; } +.bi-chevron-bar-down::before { content: "\f274"; } +.bi-chevron-bar-expand::before { content: "\f275"; } +.bi-chevron-bar-left::before { content: "\f276"; } +.bi-chevron-bar-right::before { content: "\f277"; } +.bi-chevron-bar-up::before { content: "\f278"; } +.bi-chevron-compact-down::before { content: "\f279"; } +.bi-chevron-compact-left::before { content: "\f27a"; } +.bi-chevron-compact-right::before { content: "\f27b"; } +.bi-chevron-compact-up::before { content: "\f27c"; } +.bi-chevron-contract::before { content: "\f27d"; } +.bi-chevron-double-down::before { content: "\f27e"; } +.bi-chevron-double-left::before { content: "\f27f"; } +.bi-chevron-double-right::before { content: "\f280"; } +.bi-chevron-double-up::before { content: "\f281"; } +.bi-chevron-down::before { content: "\f282"; } +.bi-chevron-expand::before { content: "\f283"; } +.bi-chevron-left::before { content: "\f284"; } +.bi-chevron-right::before { content: "\f285"; } +.bi-chevron-up::before { content: "\f286"; } +.bi-circle-fill::before { content: "\f287"; } +.bi-circle-half::before { content: "\f288"; } +.bi-circle-square::before { content: "\f289"; } +.bi-circle::before { content: "\f28a"; } +.bi-clipboard-check::before { content: "\f28b"; } +.bi-clipboard-data::before { content: "\f28c"; } +.bi-clipboard-minus::before { content: "\f28d"; } +.bi-clipboard-plus::before { content: "\f28e"; } +.bi-clipboard-x::before { content: "\f28f"; } +.bi-clipboard::before { content: "\f290"; } +.bi-clock-fill::before { content: "\f291"; } +.bi-clock-history::before { content: "\f292"; } +.bi-clock::before { content: "\f293"; } +.bi-cloud-arrow-down-fill::before { content: "\f294"; } +.bi-cloud-arrow-down::before { content: "\f295"; } +.bi-cloud-arrow-up-fill::before { content: "\f296"; } +.bi-cloud-arrow-up::before { content: "\f297"; } +.bi-cloud-check-fill::before { content: "\f298"; } +.bi-cloud-check::before { content: "\f299"; } +.bi-cloud-download-fill::before { content: "\f29a"; } +.bi-cloud-download::before { content: "\f29b"; } +.bi-cloud-drizzle-fill::before { content: "\f29c"; } +.bi-cloud-drizzle::before { content: "\f29d"; } +.bi-cloud-fill::before { content: "\f29e"; } +.bi-cloud-fog-fill::before { content: "\f29f"; } +.bi-cloud-fog::before { content: "\f2a0"; } +.bi-cloud-fog2-fill::before { content: "\f2a1"; } +.bi-cloud-fog2::before { content: "\f2a2"; } +.bi-cloud-hail-fill::before { content: "\f2a3"; } +.bi-cloud-hail::before { content: "\f2a4"; } +.bi-cloud-haze-1::before { content: "\f2a5"; } +.bi-cloud-haze-fill::before { content: "\f2a6"; } +.bi-cloud-haze::before { content: "\f2a7"; } +.bi-cloud-haze2-fill::before { content: "\f2a8"; } +.bi-cloud-lightning-fill::before { content: "\f2a9"; } +.bi-cloud-lightning-rain-fill::before { content: "\f2aa"; } +.bi-cloud-lightning-rain::before { content: "\f2ab"; } +.bi-cloud-lightning::before { content: "\f2ac"; } +.bi-cloud-minus-fill::before { content: "\f2ad"; } +.bi-cloud-minus::before { content: "\f2ae"; } +.bi-cloud-moon-fill::before { content: "\f2af"; } +.bi-cloud-moon::before { content: "\f2b0"; } +.bi-cloud-plus-fill::before { content: "\f2b1"; } +.bi-cloud-plus::before { content: "\f2b2"; } +.bi-cloud-rain-fill::before { content: "\f2b3"; } +.bi-cloud-rain-heavy-fill::before { content: "\f2b4"; } +.bi-cloud-rain-heavy::before { content: "\f2b5"; } +.bi-cloud-rain::before { content: "\f2b6"; } +.bi-cloud-slash-fill::before { content: "\f2b7"; } +.bi-cloud-slash::before { content: "\f2b8"; } +.bi-cloud-sleet-fill::before { content: "\f2b9"; } +.bi-cloud-sleet::before { content: "\f2ba"; } +.bi-cloud-snow-fill::before { content: "\f2bb"; } +.bi-cloud-snow::before { content: "\f2bc"; } +.bi-cloud-sun-fill::before { content: "\f2bd"; } +.bi-cloud-sun::before { content: "\f2be"; } +.bi-cloud-upload-fill::before { content: "\f2bf"; } +.bi-cloud-upload::before { content: "\f2c0"; } +.bi-cloud::before { content: "\f2c1"; } +.bi-clouds-fill::before { content: "\f2c2"; } +.bi-clouds::before { content: "\f2c3"; } +.bi-cloudy-fill::before { content: "\f2c4"; } +.bi-cloudy::before { content: "\f2c5"; } +.bi-code-slash::before { content: "\f2c6"; } +.bi-code-square::before { content: "\f2c7"; } +.bi-code::before { content: "\f2c8"; } +.bi-collection-fill::before { content: "\f2c9"; } +.bi-collection-play-fill::before { content: "\f2ca"; } +.bi-collection-play::before { content: "\f2cb"; } +.bi-collection::before { content: "\f2cc"; } +.bi-columns-gap::before { content: "\f2cd"; } +.bi-columns::before { content: "\f2ce"; } +.bi-command::before { content: "\f2cf"; } +.bi-compass-fill::before { content: "\f2d0"; } +.bi-compass::before { content: "\f2d1"; } +.bi-cone-striped::before { content: "\f2d2"; } +.bi-cone::before { content: "\f2d3"; } +.bi-controller::before { content: "\f2d4"; } +.bi-cpu-fill::before { content: "\f2d5"; } +.bi-cpu::before { content: "\f2d6"; } +.bi-credit-card-2-back-fill::before { content: "\f2d7"; } +.bi-credit-card-2-back::before { content: "\f2d8"; } +.bi-credit-card-2-front-fill::before { content: "\f2d9"; } +.bi-credit-card-2-front::before { content: "\f2da"; } +.bi-credit-card-fill::before { content: "\f2db"; } +.bi-credit-card::before { content: "\f2dc"; } +.bi-crop::before { content: "\f2dd"; } +.bi-cup-fill::before { content: "\f2de"; } +.bi-cup-straw::before { content: "\f2df"; } +.bi-cup::before { content: "\f2e0"; } +.bi-cursor-fill::before { content: "\f2e1"; } +.bi-cursor-text::before { content: "\f2e2"; } +.bi-cursor::before { content: "\f2e3"; } +.bi-dash-circle-dotted::before { content: "\f2e4"; } +.bi-dash-circle-fill::before { content: "\f2e5"; } +.bi-dash-circle::before { content: "\f2e6"; } +.bi-dash-square-dotted::before { content: "\f2e7"; } +.bi-dash-square-fill::before { content: "\f2e8"; } +.bi-dash-square::before { content: "\f2e9"; } +.bi-dash::before { content: "\f2ea"; } +.bi-diagram-2-fill::before { content: "\f2eb"; } +.bi-diagram-2::before { content: "\f2ec"; } +.bi-diagram-3-fill::before { content: "\f2ed"; } +.bi-diagram-3::before { content: "\f2ee"; } +.bi-diamond-fill::before { content: "\f2ef"; } +.bi-diamond-half::before { content: "\f2f0"; } +.bi-diamond::before { content: "\f2f1"; } +.bi-dice-1-fill::before { content: "\f2f2"; } +.bi-dice-1::before { content: "\f2f3"; } +.bi-dice-2-fill::before { content: "\f2f4"; } +.bi-dice-2::before { content: "\f2f5"; } +.bi-dice-3-fill::before { content: "\f2f6"; } +.bi-dice-3::before { content: "\f2f7"; } +.bi-dice-4-fill::before { content: "\f2f8"; } +.bi-dice-4::before { content: "\f2f9"; } +.bi-dice-5-fill::before { content: "\f2fa"; } +.bi-dice-5::before { content: "\f2fb"; } +.bi-dice-6-fill::before { content: "\f2fc"; } +.bi-dice-6::before { content: "\f2fd"; } +.bi-disc-fill::before { content: "\f2fe"; } +.bi-disc::before { content: "\f2ff"; } +.bi-discord::before { content: "\f300"; } +.bi-display-fill::before { content: "\f301"; } +.bi-display::before { content: "\f302"; } +.bi-distribute-horizontal::before { content: "\f303"; } +.bi-distribute-vertical::before { content: "\f304"; } +.bi-door-closed-fill::before { content: "\f305"; } +.bi-door-closed::before { content: "\f306"; } +.bi-door-open-fill::before { content: "\f307"; } +.bi-door-open::before { content: "\f308"; } +.bi-dot::before { content: "\f309"; } +.bi-download::before { content: "\f30a"; } +.bi-droplet-fill::before { content: "\f30b"; } +.bi-droplet-half::before { content: "\f30c"; } +.bi-droplet::before { content: "\f30d"; } +.bi-earbuds::before { content: "\f30e"; } +.bi-easel-fill::before { content: "\f30f"; } +.bi-easel::before { content: "\f310"; } +.bi-egg-fill::before { content: "\f311"; } +.bi-egg-fried::before { content: "\f312"; } +.bi-egg::before { content: "\f313"; } +.bi-eject-fill::before { content: "\f314"; } +.bi-eject::before { content: "\f315"; } +.bi-emoji-angry-fill::before { content: "\f316"; } +.bi-emoji-angry::before { content: "\f317"; } +.bi-emoji-dizzy-fill::before { content: "\f318"; } +.bi-emoji-dizzy::before { content: "\f319"; } +.bi-emoji-expressionless-fill::before { content: "\f31a"; } +.bi-emoji-expressionless::before { content: "\f31b"; } +.bi-emoji-frown-fill::before { content: "\f31c"; } +.bi-emoji-frown::before { content: "\f31d"; } +.bi-emoji-heart-eyes-fill::before { content: "\f31e"; } +.bi-emoji-heart-eyes::before { content: "\f31f"; } +.bi-emoji-laughing-fill::before { content: "\f320"; } +.bi-emoji-laughing::before { content: "\f321"; } +.bi-emoji-neutral-fill::before { content: "\f322"; } +.bi-emoji-neutral::before { content: "\f323"; } +.bi-emoji-smile-fill::before { content: "\f324"; } +.bi-emoji-smile-upside-down-fill::before { content: "\f325"; } +.bi-emoji-smile-upside-down::before { content: "\f326"; } +.bi-emoji-smile::before { content: "\f327"; } +.bi-emoji-sunglasses-fill::before { content: "\f328"; } +.bi-emoji-sunglasses::before { content: "\f329"; } +.bi-emoji-wink-fill::before { content: "\f32a"; } +.bi-emoji-wink::before { content: "\f32b"; } +.bi-envelope-fill::before { content: "\f32c"; } +.bi-envelope-open-fill::before { content: "\f32d"; } +.bi-envelope-open::before { content: "\f32e"; } +.bi-envelope::before { content: "\f32f"; } +.bi-eraser-fill::before { content: "\f330"; } +.bi-eraser::before { content: "\f331"; } +.bi-exclamation-circle-fill::before { content: "\f332"; } +.bi-exclamation-circle::before { content: "\f333"; } +.bi-exclamation-diamond-fill::before { content: "\f334"; } +.bi-exclamation-diamond::before { content: "\f335"; } +.bi-exclamation-octagon-fill::before { content: "\f336"; } +.bi-exclamation-octagon::before { content: "\f337"; } +.bi-exclamation-square-fill::before { content: "\f338"; } +.bi-exclamation-square::before { content: "\f339"; } +.bi-exclamation-triangle-fill::before { content: "\f33a"; } +.bi-exclamation-triangle::before { content: "\f33b"; } +.bi-exclamation::before { content: "\f33c"; } +.bi-exclude::before { content: "\f33d"; } +.bi-eye-fill::before { content: "\f33e"; } +.bi-eye-slash-fill::before { content: "\f33f"; } +.bi-eye-slash::before { content: "\f340"; } +.bi-eye::before { content: "\f341"; } +.bi-eyedropper::before { content: "\f342"; } +.bi-eyeglasses::before { content: "\f343"; } +.bi-facebook::before { content: "\f344"; } +.bi-file-arrow-down-fill::before { content: "\f345"; } +.bi-file-arrow-down::before { content: "\f346"; } +.bi-file-arrow-up-fill::before { content: "\f347"; } +.bi-file-arrow-up::before { content: "\f348"; } +.bi-file-bar-graph-fill::before { content: "\f349"; } +.bi-file-bar-graph::before { content: "\f34a"; } +.bi-file-binary-fill::before { content: "\f34b"; } +.bi-file-binary::before { content: "\f34c"; } +.bi-file-break-fill::before { content: "\f34d"; } +.bi-file-break::before { content: "\f34e"; } +.bi-file-check-fill::before { content: "\f34f"; } +.bi-file-check::before { content: "\f350"; } +.bi-file-code-fill::before { content: "\f351"; } +.bi-file-code::before { content: "\f352"; } +.bi-file-diff-fill::before { content: "\f353"; } +.bi-file-diff::before { content: "\f354"; } +.bi-file-earmark-arrow-down-fill::before { content: "\f355"; } +.bi-file-earmark-arrow-down::before { content: "\f356"; } +.bi-file-earmark-arrow-up-fill::before { content: "\f357"; } +.bi-file-earmark-arrow-up::before { content: "\f358"; } +.bi-file-earmark-bar-graph-fill::before { content: "\f359"; } +.bi-file-earmark-bar-graph::before { content: "\f35a"; } +.bi-file-earmark-binary-fill::before { content: "\f35b"; } +.bi-file-earmark-binary::before { content: "\f35c"; } +.bi-file-earmark-break-fill::before { content: "\f35d"; } +.bi-file-earmark-break::before { content: "\f35e"; } +.bi-file-earmark-check-fill::before { content: "\f35f"; } +.bi-file-earmark-check::before { content: "\f360"; } +.bi-file-earmark-code-fill::before { content: "\f361"; } +.bi-file-earmark-code::before { content: "\f362"; } +.bi-file-earmark-diff-fill::before { content: "\f363"; } +.bi-file-earmark-diff::before { content: "\f364"; } +.bi-file-earmark-easel-fill::before { content: "\f365"; } +.bi-file-earmark-easel::before { content: "\f366"; } +.bi-file-earmark-excel-fill::before { content: "\f367"; } +.bi-file-earmark-excel::before { content: "\f368"; } +.bi-file-earmark-fill::before { content: "\f369"; } +.bi-file-earmark-font-fill::before { content: "\f36a"; } +.bi-file-earmark-font::before { content: "\f36b"; } +.bi-file-earmark-image-fill::before { content: "\f36c"; } +.bi-file-earmark-image::before { content: "\f36d"; } +.bi-file-earmark-lock-fill::before { content: "\f36e"; } +.bi-file-earmark-lock::before { content: "\f36f"; } +.bi-file-earmark-lock2-fill::before { content: "\f370"; } +.bi-file-earmark-lock2::before { content: "\f371"; } +.bi-file-earmark-medical-fill::before { content: "\f372"; } +.bi-file-earmark-medical::before { content: "\f373"; } +.bi-file-earmark-minus-fill::before { content: "\f374"; } +.bi-file-earmark-minus::before { content: "\f375"; } +.bi-file-earmark-music-fill::before { content: "\f376"; } +.bi-file-earmark-music::before { content: "\f377"; } +.bi-file-earmark-person-fill::before { content: "\f378"; } +.bi-file-earmark-person::before { content: "\f379"; } +.bi-file-earmark-play-fill::before { content: "\f37a"; } +.bi-file-earmark-play::before { content: "\f37b"; } +.bi-file-earmark-plus-fill::before { content: "\f37c"; } +.bi-file-earmark-plus::before { content: "\f37d"; } +.bi-file-earmark-post-fill::before { content: "\f37e"; } +.bi-file-earmark-post::before { content: "\f37f"; } +.bi-file-earmark-ppt-fill::before { content: "\f380"; } +.bi-file-earmark-ppt::before { content: "\f381"; } +.bi-file-earmark-richtext-fill::before { content: "\f382"; } +.bi-file-earmark-richtext::before { content: "\f383"; } +.bi-file-earmark-ruled-fill::before { content: "\f384"; } +.bi-file-earmark-ruled::before { content: "\f385"; } +.bi-file-earmark-slides-fill::before { content: "\f386"; } +.bi-file-earmark-slides::before { content: "\f387"; } +.bi-file-earmark-spreadsheet-fill::before { content: "\f388"; } +.bi-file-earmark-spreadsheet::before { content: "\f389"; } +.bi-file-earmark-text-fill::before { content: "\f38a"; } +.bi-file-earmark-text::before { content: "\f38b"; } +.bi-file-earmark-word-fill::before { content: "\f38c"; } +.bi-file-earmark-word::before { content: "\f38d"; } +.bi-file-earmark-x-fill::before { content: "\f38e"; } +.bi-file-earmark-x::before { content: "\f38f"; } +.bi-file-earmark-zip-fill::before { content: "\f390"; } +.bi-file-earmark-zip::before { content: "\f391"; } +.bi-file-earmark::before { content: "\f392"; } +.bi-file-easel-fill::before { content: "\f393"; } +.bi-file-easel::before { content: "\f394"; } +.bi-file-excel-fill::before { content: "\f395"; } +.bi-file-excel::before { content: "\f396"; } +.bi-file-fill::before { content: "\f397"; } +.bi-file-font-fill::before { content: "\f398"; } +.bi-file-font::before { content: "\f399"; } +.bi-file-image-fill::before { content: "\f39a"; } +.bi-file-image::before { content: "\f39b"; } +.bi-file-lock-fill::before { content: "\f39c"; } +.bi-file-lock::before { content: "\f39d"; } +.bi-file-lock2-fill::before { content: "\f39e"; } +.bi-file-lock2::before { content: "\f39f"; } +.bi-file-medical-fill::before { content: "\f3a0"; } +.bi-file-medical::before { content: "\f3a1"; } +.bi-file-minus-fill::before { content: "\f3a2"; } +.bi-file-minus::before { content: "\f3a3"; } +.bi-file-music-fill::before { content: "\f3a4"; } +.bi-file-music::before { content: "\f3a5"; } +.bi-file-person-fill::before { content: "\f3a6"; } +.bi-file-person::before { content: "\f3a7"; } +.bi-file-play-fill::before { content: "\f3a8"; } +.bi-file-play::before { content: "\f3a9"; } +.bi-file-plus-fill::before { content: "\f3aa"; } +.bi-file-plus::before { content: "\f3ab"; } +.bi-file-post-fill::before { content: "\f3ac"; } +.bi-file-post::before { content: "\f3ad"; } +.bi-file-ppt-fill::before { content: "\f3ae"; } +.bi-file-ppt::before { content: "\f3af"; } +.bi-file-richtext-fill::before { content: "\f3b0"; } +.bi-file-richtext::before { content: "\f3b1"; } +.bi-file-ruled-fill::before { content: "\f3b2"; } +.bi-file-ruled::before { content: "\f3b3"; } +.bi-file-slides-fill::before { content: "\f3b4"; } +.bi-file-slides::before { content: "\f3b5"; } +.bi-file-spreadsheet-fill::before { content: "\f3b6"; } +.bi-file-spreadsheet::before { content: "\f3b7"; } +.bi-file-text-fill::before { content: "\f3b8"; } +.bi-file-text::before { content: "\f3b9"; } +.bi-file-word-fill::before { content: "\f3ba"; } +.bi-file-word::before { content: "\f3bb"; } +.bi-file-x-fill::before { content: "\f3bc"; } +.bi-file-x::before { content: "\f3bd"; } +.bi-file-zip-fill::before { content: "\f3be"; } +.bi-file-zip::before { content: "\f3bf"; } +.bi-file::before { content: "\f3c0"; } +.bi-files-alt::before { content: "\f3c1"; } +.bi-files::before { content: "\f3c2"; } +.bi-film::before { content: "\f3c3"; } +.bi-filter-circle-fill::before { content: "\f3c4"; } +.bi-filter-circle::before { content: "\f3c5"; } +.bi-filter-left::before { content: "\f3c6"; } +.bi-filter-right::before { content: "\f3c7"; } +.bi-filter-square-fill::before { content: "\f3c8"; } +.bi-filter-square::before { content: "\f3c9"; } +.bi-filter::before { content: "\f3ca"; } +.bi-flag-fill::before { content: "\f3cb"; } +.bi-flag::before { content: "\f3cc"; } +.bi-flower1::before { content: "\f3cd"; } +.bi-flower2::before { content: "\f3ce"; } +.bi-flower3::before { content: "\f3cf"; } +.bi-folder-check::before { content: "\f3d0"; } +.bi-folder-fill::before { content: "\f3d1"; } +.bi-folder-minus::before { content: "\f3d2"; } +.bi-folder-plus::before { content: "\f3d3"; } +.bi-folder-symlink-fill::before { content: "\f3d4"; } +.bi-folder-symlink::before { content: "\f3d5"; } +.bi-folder-x::before { content: "\f3d6"; } +.bi-folder::before { content: "\f3d7"; } +.bi-folder2-open::before { content: "\f3d8"; } +.bi-folder2::before { content: "\f3d9"; } +.bi-fonts::before { content: "\f3da"; } +.bi-forward-fill::before { content: "\f3db"; } +.bi-forward::before { content: "\f3dc"; } +.bi-front::before { content: "\f3dd"; } +.bi-fullscreen-exit::before { content: "\f3de"; } +.bi-fullscreen::before { content: "\f3df"; } +.bi-funnel-fill::before { content: "\f3e0"; } +.bi-funnel::before { content: "\f3e1"; } +.bi-gear-fill::before { content: "\f3e2"; } +.bi-gear-wide-connected::before { content: "\f3e3"; } +.bi-gear-wide::before { content: "\f3e4"; } +.bi-gear::before { content: "\f3e5"; } +.bi-gem::before { content: "\f3e6"; } +.bi-geo-alt-fill::before { content: "\f3e7"; } +.bi-geo-alt::before { content: "\f3e8"; } +.bi-geo-fill::before { content: "\f3e9"; } +.bi-geo::before { content: "\f3ea"; } +.bi-gift-fill::before { content: "\f3eb"; } +.bi-gift::before { content: "\f3ec"; } +.bi-github::before { content: "\f3ed"; } +.bi-globe::before { content: "\f3ee"; } +.bi-globe2::before { content: "\f3ef"; } +.bi-google::before { content: "\f3f0"; } +.bi-graph-down::before { content: "\f3f1"; } +.bi-graph-up::before { content: "\f3f2"; } +.bi-grid-1x2-fill::before { content: "\f3f3"; } +.bi-grid-1x2::before { content: "\f3f4"; } +.bi-grid-3x2-gap-fill::before { content: "\f3f5"; } +.bi-grid-3x2-gap::before { content: "\f3f6"; } +.bi-grid-3x2::before { content: "\f3f7"; } +.bi-grid-3x3-gap-fill::before { content: "\f3f8"; } +.bi-grid-3x3-gap::before { content: "\f3f9"; } +.bi-grid-3x3::before { content: "\f3fa"; } +.bi-grid-fill::before { content: "\f3fb"; } +.bi-grid::before { content: "\f3fc"; } +.bi-grip-horizontal::before { content: "\f3fd"; } +.bi-grip-vertical::before { content: "\f3fe"; } +.bi-hammer::before { content: "\f3ff"; } +.bi-hand-index-fill::before { content: "\f400"; } +.bi-hand-index-thumb-fill::before { content: "\f401"; } +.bi-hand-index-thumb::before { content: "\f402"; } +.bi-hand-index::before { content: "\f403"; } +.bi-hand-thumbs-down-fill::before { content: "\f404"; } +.bi-hand-thumbs-down::before { content: "\f405"; } +.bi-hand-thumbs-up-fill::before { content: "\f406"; } +.bi-hand-thumbs-up::before { content: "\f407"; } +.bi-handbag-fill::before { content: "\f408"; } +.bi-handbag::before { content: "\f409"; } +.bi-hash::before { content: "\f40a"; } +.bi-hdd-fill::before { content: "\f40b"; } +.bi-hdd-network-fill::before { content: "\f40c"; } +.bi-hdd-network::before { content: "\f40d"; } +.bi-hdd-rack-fill::before { content: "\f40e"; } +.bi-hdd-rack::before { content: "\f40f"; } +.bi-hdd-stack-fill::before { content: "\f410"; } +.bi-hdd-stack::before { content: "\f411"; } +.bi-hdd::before { content: "\f412"; } +.bi-headphones::before { content: "\f413"; } +.bi-headset::before { content: "\f414"; } +.bi-heart-fill::before { content: "\f415"; } +.bi-heart-half::before { content: "\f416"; } +.bi-heart::before { content: "\f417"; } +.bi-heptagon-fill::before { content: "\f418"; } +.bi-heptagon-half::before { content: "\f419"; } +.bi-heptagon::before { content: "\f41a"; } +.bi-hexagon-fill::before { content: "\f41b"; } +.bi-hexagon-half::before { content: "\f41c"; } +.bi-hexagon::before { content: "\f41d"; } +.bi-hourglass-bottom::before { content: "\f41e"; } +.bi-hourglass-split::before { content: "\f41f"; } +.bi-hourglass-top::before { content: "\f420"; } +.bi-hourglass::before { content: "\f421"; } +.bi-house-door-fill::before { content: "\f422"; } +.bi-house-door::before { content: "\f423"; } +.bi-house-fill::before { content: "\f424"; } +.bi-house::before { content: "\f425"; } +.bi-hr::before { content: "\f426"; } +.bi-hurricane::before { content: "\f427"; } +.bi-image-alt::before { content: "\f428"; } +.bi-image-fill::before { content: "\f429"; } +.bi-image::before { content: "\f42a"; } +.bi-images::before { content: "\f42b"; } +.bi-inbox-fill::before { content: "\f42c"; } +.bi-inbox::before { content: "\f42d"; } +.bi-inboxes-fill::before { content: "\f42e"; } +.bi-inboxes::before { content: "\f42f"; } +.bi-info-circle-fill::before { content: "\f430"; } +.bi-info-circle::before { content: "\f431"; } +.bi-info-square-fill::before { content: "\f432"; } +.bi-info-square::before { content: "\f433"; } +.bi-info::before { content: "\f434"; } +.bi-input-cursor-text::before { content: "\f435"; } +.bi-input-cursor::before { content: "\f436"; } +.bi-instagram::before { content: "\f437"; } +.bi-intersect::before { content: "\f438"; } +.bi-journal-album::before { content: "\f439"; } +.bi-journal-arrow-down::before { content: "\f43a"; } +.bi-journal-arrow-up::before { content: "\f43b"; } +.bi-journal-bookmark-fill::before { content: "\f43c"; } +.bi-journal-bookmark::before { content: "\f43d"; } +.bi-journal-check::before { content: "\f43e"; } +.bi-journal-code::before { content: "\f43f"; } +.bi-journal-medical::before { content: "\f440"; } +.bi-journal-minus::before { content: "\f441"; } +.bi-journal-plus::before { content: "\f442"; } +.bi-journal-richtext::before { content: "\f443"; } +.bi-journal-text::before { content: "\f444"; } +.bi-journal-x::before { content: "\f445"; } +.bi-journal::before { content: "\f446"; } +.bi-journals::before { content: "\f447"; } +.bi-joystick::before { content: "\f448"; } +.bi-justify-left::before { content: "\f449"; } +.bi-justify-right::before { content: "\f44a"; } +.bi-justify::before { content: "\f44b"; } +.bi-kanban-fill::before { content: "\f44c"; } +.bi-kanban::before { content: "\f44d"; } +.bi-key-fill::before { content: "\f44e"; } +.bi-key::before { content: "\f44f"; } +.bi-keyboard-fill::before { content: "\f450"; } +.bi-keyboard::before { content: "\f451"; } +.bi-ladder::before { content: "\f452"; } +.bi-lamp-fill::before { content: "\f453"; } +.bi-lamp::before { content: "\f454"; } +.bi-laptop-fill::before { content: "\f455"; } +.bi-laptop::before { content: "\f456"; } +.bi-layer-backward::before { content: "\f457"; } +.bi-layer-forward::before { content: "\f458"; } +.bi-layers-fill::before { content: "\f459"; } +.bi-layers-half::before { content: "\f45a"; } +.bi-layers::before { content: "\f45b"; } +.bi-layout-sidebar-inset-reverse::before { content: "\f45c"; } +.bi-layout-sidebar-inset::before { content: "\f45d"; } +.bi-layout-sidebar-reverse::before { content: "\f45e"; } +.bi-layout-sidebar::before { content: "\f45f"; } +.bi-layout-split::before { content: "\f460"; } +.bi-layout-text-sidebar-reverse::before { content: "\f461"; } +.bi-layout-text-sidebar::before { content: "\f462"; } +.bi-layout-text-window-reverse::before { content: "\f463"; } +.bi-layout-text-window::before { content: "\f464"; } +.bi-layout-three-columns::before { content: "\f465"; } +.bi-layout-wtf::before { content: "\f466"; } +.bi-life-preserver::before { content: "\f467"; } +.bi-lightbulb-fill::before { content: "\f468"; } +.bi-lightbulb-off-fill::before { content: "\f469"; } +.bi-lightbulb-off::before { content: "\f46a"; } +.bi-lightbulb::before { content: "\f46b"; } +.bi-lightning-charge-fill::before { content: "\f46c"; } +.bi-lightning-charge::before { content: "\f46d"; } +.bi-lightning-fill::before { content: "\f46e"; } +.bi-lightning::before { content: "\f46f"; } +.bi-link-45deg::before { content: "\f470"; } +.bi-link::before { content: "\f471"; } +.bi-linkedin::before { content: "\f472"; } +.bi-list-check::before { content: "\f473"; } +.bi-list-nested::before { content: "\f474"; } +.bi-list-ol::before { content: "\f475"; } +.bi-list-stars::before { content: "\f476"; } +.bi-list-task::before { content: "\f477"; } +.bi-list-ul::before { content: "\f478"; } +.bi-list::before { content: "\f479"; } +.bi-lock-fill::before { content: "\f47a"; } +.bi-lock::before { content: "\f47b"; } +.bi-mailbox::before { content: "\f47c"; } +.bi-mailbox2::before { content: "\f47d"; } +.bi-map-fill::before { content: "\f47e"; } +.bi-map::before { content: "\f47f"; } +.bi-markdown-fill::before { content: "\f480"; } +.bi-markdown::before { content: "\f481"; } +.bi-mask::before { content: "\f482"; } +.bi-megaphone-fill::before { content: "\f483"; } +.bi-megaphone::before { content: "\f484"; } +.bi-menu-app-fill::before { content: "\f485"; } +.bi-menu-app::before { content: "\f486"; } +.bi-menu-button-fill::before { content: "\f487"; } +.bi-menu-button-wide-fill::before { content: "\f488"; } +.bi-menu-button-wide::before { content: "\f489"; } +.bi-menu-button::before { content: "\f48a"; } +.bi-menu-down::before { content: "\f48b"; } +.bi-menu-up::before { content: "\f48c"; } +.bi-mic-fill::before { content: "\f48d"; } +.bi-mic-mute-fill::before { content: "\f48e"; } +.bi-mic-mute::before { content: "\f48f"; } +.bi-mic::before { content: "\f490"; } +.bi-minecart-loaded::before { content: "\f491"; } +.bi-minecart::before { content: "\f492"; } +.bi-moisture::before { content: "\f493"; } +.bi-moon-fill::before { content: "\f494"; } +.bi-moon-stars-fill::before { content: "\f495"; } +.bi-moon-stars::before { content: "\f496"; } +.bi-moon::before { content: "\f497"; } +.bi-mouse-fill::before { content: "\f498"; } +.bi-mouse::before { content: "\f499"; } +.bi-mouse2-fill::before { content: "\f49a"; } +.bi-mouse2::before { content: "\f49b"; } +.bi-mouse3-fill::before { content: "\f49c"; } +.bi-mouse3::before { content: "\f49d"; } +.bi-music-note-beamed::before { content: "\f49e"; } +.bi-music-note-list::before { content: "\f49f"; } +.bi-music-note::before { content: "\f4a0"; } +.bi-music-player-fill::before { content: "\f4a1"; } +.bi-music-player::before { content: "\f4a2"; } +.bi-newspaper::before { content: "\f4a3"; } +.bi-node-minus-fill::before { content: "\f4a4"; } +.bi-node-minus::before { content: "\f4a5"; } +.bi-node-plus-fill::before { content: "\f4a6"; } +.bi-node-plus::before { content: "\f4a7"; } +.bi-nut-fill::before { content: "\f4a8"; } +.bi-nut::before { content: "\f4a9"; } +.bi-octagon-fill::before { content: "\f4aa"; } +.bi-octagon-half::before { content: "\f4ab"; } +.bi-octagon::before { content: "\f4ac"; } +.bi-option::before { content: "\f4ad"; } +.bi-outlet::before { content: "\f4ae"; } +.bi-paint-bucket::before { content: "\f4af"; } +.bi-palette-fill::before { content: "\f4b0"; } +.bi-palette::before { content: "\f4b1"; } +.bi-palette2::before { content: "\f4b2"; } +.bi-paperclip::before { content: "\f4b3"; } +.bi-paragraph::before { content: "\f4b4"; } +.bi-patch-check-fill::before { content: "\f4b5"; } +.bi-patch-check::before { content: "\f4b6"; } +.bi-patch-exclamation-fill::before { content: "\f4b7"; } +.bi-patch-exclamation::before { content: "\f4b8"; } +.bi-patch-minus-fill::before { content: "\f4b9"; } +.bi-patch-minus::before { content: "\f4ba"; } +.bi-patch-plus-fill::before { content: "\f4bb"; } +.bi-patch-plus::before { content: "\f4bc"; } +.bi-patch-question-fill::before { content: "\f4bd"; } +.bi-patch-question::before { content: "\f4be"; } +.bi-pause-btn-fill::before { content: "\f4bf"; } +.bi-pause-btn::before { content: "\f4c0"; } +.bi-pause-circle-fill::before { content: "\f4c1"; } +.bi-pause-circle::before { content: "\f4c2"; } +.bi-pause-fill::before { content: "\f4c3"; } +.bi-pause::before { content: "\f4c4"; } +.bi-peace-fill::before { content: "\f4c5"; } +.bi-peace::before { content: "\f4c6"; } +.bi-pen-fill::before { content: "\f4c7"; } +.bi-pen::before { content: "\f4c8"; } +.bi-pencil-fill::before { content: "\f4c9"; } +.bi-pencil-square::before { content: "\f4ca"; } +.bi-pencil::before { content: "\f4cb"; } +.bi-pentagon-fill::before { content: "\f4cc"; } +.bi-pentagon-half::before { content: "\f4cd"; } +.bi-pentagon::before { content: "\f4ce"; } +.bi-people-fill::before { content: "\f4cf"; } +.bi-people::before { content: "\f4d0"; } +.bi-percent::before { content: "\f4d1"; } +.bi-person-badge-fill::before { content: "\f4d2"; } +.bi-person-badge::before { content: "\f4d3"; } +.bi-person-bounding-box::before { content: "\f4d4"; } +.bi-person-check-fill::before { content: "\f4d5"; } +.bi-person-check::before { content: "\f4d6"; } +.bi-person-circle::before { content: "\f4d7"; } +.bi-person-dash-fill::before { content: "\f4d8"; } +.bi-person-dash::before { content: "\f4d9"; } +.bi-person-fill::before { content: "\f4da"; } +.bi-person-lines-fill::before { content: "\f4db"; } +.bi-person-plus-fill::before { content: "\f4dc"; } +.bi-person-plus::before { content: "\f4dd"; } +.bi-person-square::before { content: "\f4de"; } +.bi-person-x-fill::before { content: "\f4df"; } +.bi-person-x::before { content: "\f4e0"; } +.bi-person::before { content: "\f4e1"; } +.bi-phone-fill::before { content: "\f4e2"; } +.bi-phone-landscape-fill::before { content: "\f4e3"; } +.bi-phone-landscape::before { content: "\f4e4"; } +.bi-phone-vibrate-fill::before { content: "\f4e5"; } +.bi-phone-vibrate::before { content: "\f4e6"; } +.bi-phone::before { content: "\f4e7"; } +.bi-pie-chart-fill::before { content: "\f4e8"; } +.bi-pie-chart::before { content: "\f4e9"; } +.bi-pin-angle-fill::before { content: "\f4ea"; } +.bi-pin-angle::before { content: "\f4eb"; } +.bi-pin-fill::before { content: "\f4ec"; } +.bi-pin::before { content: "\f4ed"; } +.bi-pip-fill::before { content: "\f4ee"; } +.bi-pip::before { content: "\f4ef"; } +.bi-play-btn-fill::before { content: "\f4f0"; } +.bi-play-btn::before { content: "\f4f1"; } +.bi-play-circle-fill::before { content: "\f4f2"; } +.bi-play-circle::before { content: "\f4f3"; } +.bi-play-fill::before { content: "\f4f4"; } +.bi-play::before { content: "\f4f5"; } +.bi-plug-fill::before { content: "\f4f6"; } +.bi-plug::before { content: "\f4f7"; } +.bi-plus-circle-dotted::before { content: "\f4f8"; } +.bi-plus-circle-fill::before { content: "\f4f9"; } +.bi-plus-circle::before { content: "\f4fa"; } +.bi-plus-square-dotted::before { content: "\f4fb"; } +.bi-plus-square-fill::before { content: "\f4fc"; } +.bi-plus-square::before { content: "\f4fd"; } +.bi-plus::before { content: "\f4fe"; } +.bi-power::before { content: "\f4ff"; } +.bi-printer-fill::before { content: "\f500"; } +.bi-printer::before { content: "\f501"; } +.bi-puzzle-fill::before { content: "\f502"; } +.bi-puzzle::before { content: "\f503"; } +.bi-question-circle-fill::before { content: "\f504"; } +.bi-question-circle::before { content: "\f505"; } +.bi-question-diamond-fill::before { content: "\f506"; } +.bi-question-diamond::before { content: "\f507"; } +.bi-question-octagon-fill::before { content: "\f508"; } +.bi-question-octagon::before { content: "\f509"; } +.bi-question-square-fill::before { content: "\f50a"; } +.bi-question-square::before { content: "\f50b"; } +.bi-question::before { content: "\f50c"; } +.bi-rainbow::before { content: "\f50d"; } +.bi-receipt-cutoff::before { content: "\f50e"; } +.bi-receipt::before { content: "\f50f"; } +.bi-reception-0::before { content: "\f510"; } +.bi-reception-1::before { content: "\f511"; } +.bi-reception-2::before { content: "\f512"; } +.bi-reception-3::before { content: "\f513"; } +.bi-reception-4::before { content: "\f514"; } +.bi-record-btn-fill::before { content: "\f515"; } +.bi-record-btn::before { content: "\f516"; } +.bi-record-circle-fill::before { content: "\f517"; } +.bi-record-circle::before { content: "\f518"; } +.bi-record-fill::before { content: "\f519"; } +.bi-record::before { content: "\f51a"; } +.bi-record2-fill::before { content: "\f51b"; } +.bi-record2::before { content: "\f51c"; } +.bi-reply-all-fill::before { content: "\f51d"; } +.bi-reply-all::before { content: "\f51e"; } +.bi-reply-fill::before { content: "\f51f"; } +.bi-reply::before { content: "\f520"; } +.bi-rss-fill::before { content: "\f521"; } +.bi-rss::before { content: "\f522"; } +.bi-rulers::before { content: "\f523"; } +.bi-save-fill::before { content: "\f524"; } +.bi-save::before { content: "\f525"; } +.bi-save2-fill::before { content: "\f526"; } +.bi-save2::before { content: "\f527"; } +.bi-scissors::before { content: "\f528"; } +.bi-screwdriver::before { content: "\f529"; } +.bi-search::before { content: "\f52a"; } +.bi-segmented-nav::before { content: "\f52b"; } +.bi-server::before { content: "\f52c"; } +.bi-share-fill::before { content: "\f52d"; } +.bi-share::before { content: "\f52e"; } +.bi-shield-check::before { content: "\f52f"; } +.bi-shield-exclamation::before { content: "\f530"; } +.bi-shield-fill-check::before { content: "\f531"; } +.bi-shield-fill-exclamation::before { content: "\f532"; } +.bi-shield-fill-minus::before { content: "\f533"; } +.bi-shield-fill-plus::before { content: "\f534"; } +.bi-shield-fill-x::before { content: "\f535"; } +.bi-shield-fill::before { content: "\f536"; } +.bi-shield-lock-fill::before { content: "\f537"; } +.bi-shield-lock::before { content: "\f538"; } +.bi-shield-minus::before { content: "\f539"; } +.bi-shield-plus::before { content: "\f53a"; } +.bi-shield-shaded::before { content: "\f53b"; } +.bi-shield-slash-fill::before { content: "\f53c"; } +.bi-shield-slash::before { content: "\f53d"; } +.bi-shield-x::before { content: "\f53e"; } +.bi-shield::before { content: "\f53f"; } +.bi-shift-fill::before { content: "\f540"; } +.bi-shift::before { content: "\f541"; } +.bi-shop-window::before { content: "\f542"; } +.bi-shop::before { content: "\f543"; } +.bi-shuffle::before { content: "\f544"; } +.bi-signpost-2-fill::before { content: "\f545"; } +.bi-signpost-2::before { content: "\f546"; } +.bi-signpost-fill::before { content: "\f547"; } +.bi-signpost-split-fill::before { content: "\f548"; } +.bi-signpost-split::before { content: "\f549"; } +.bi-signpost::before { content: "\f54a"; } +.bi-sim-fill::before { content: "\f54b"; } +.bi-sim::before { content: "\f54c"; } +.bi-skip-backward-btn-fill::before { content: "\f54d"; } +.bi-skip-backward-btn::before { content: "\f54e"; } +.bi-skip-backward-circle-fill::before { content: "\f54f"; } +.bi-skip-backward-circle::before { content: "\f550"; } +.bi-skip-backward-fill::before { content: "\f551"; } +.bi-skip-backward::before { content: "\f552"; } +.bi-skip-end-btn-fill::before { content: "\f553"; } +.bi-skip-end-btn::before { content: "\f554"; } +.bi-skip-end-circle-fill::before { content: "\f555"; } +.bi-skip-end-circle::before { content: "\f556"; } +.bi-skip-end-fill::before { content: "\f557"; } +.bi-skip-end::before { content: "\f558"; } +.bi-skip-forward-btn-fill::before { content: "\f559"; } +.bi-skip-forward-btn::before { content: "\f55a"; } +.bi-skip-forward-circle-fill::before { content: "\f55b"; } +.bi-skip-forward-circle::before { content: "\f55c"; } +.bi-skip-forward-fill::before { content: "\f55d"; } +.bi-skip-forward::before { content: "\f55e"; } +.bi-skip-start-btn-fill::before { content: "\f55f"; } +.bi-skip-start-btn::before { content: "\f560"; } +.bi-skip-start-circle-fill::before { content: "\f561"; } +.bi-skip-start-circle::before { content: "\f562"; } +.bi-skip-start-fill::before { content: "\f563"; } +.bi-skip-start::before { content: "\f564"; } +.bi-slack::before { content: "\f565"; } +.bi-slash-circle-fill::before { content: "\f566"; } +.bi-slash-circle::before { content: "\f567"; } +.bi-slash-square-fill::before { content: "\f568"; } +.bi-slash-square::before { content: "\f569"; } +.bi-slash::before { content: "\f56a"; } +.bi-sliders::before { content: "\f56b"; } +.bi-smartwatch::before { content: "\f56c"; } +.bi-snow::before { content: "\f56d"; } +.bi-snow2::before { content: "\f56e"; } +.bi-snow3::before { content: "\f56f"; } +.bi-sort-alpha-down-alt::before { content: "\f570"; } +.bi-sort-alpha-down::before { content: "\f571"; } +.bi-sort-alpha-up-alt::before { content: "\f572"; } +.bi-sort-alpha-up::before { content: "\f573"; } +.bi-sort-down-alt::before { content: "\f574"; } +.bi-sort-down::before { content: "\f575"; } +.bi-sort-numeric-down-alt::before { content: "\f576"; } +.bi-sort-numeric-down::before { content: "\f577"; } +.bi-sort-numeric-up-alt::before { content: "\f578"; } +.bi-sort-numeric-up::before { content: "\f579"; } +.bi-sort-up-alt::before { content: "\f57a"; } +.bi-sort-up::before { content: "\f57b"; } +.bi-soundwave::before { content: "\f57c"; } +.bi-speaker-fill::before { content: "\f57d"; } +.bi-speaker::before { content: "\f57e"; } +.bi-speedometer::before { content: "\f57f"; } +.bi-speedometer2::before { content: "\f580"; } +.bi-spellcheck::before { content: "\f581"; } +.bi-square-fill::before { content: "\f582"; } +.bi-square-half::before { content: "\f583"; } +.bi-square::before { content: "\f584"; } +.bi-stack::before { content: "\f585"; } +.bi-star-fill::before { content: "\f586"; } +.bi-star-half::before { content: "\f587"; } +.bi-star::before { content: "\f588"; } +.bi-stars::before { content: "\f589"; } +.bi-stickies-fill::before { content: "\f58a"; } +.bi-stickies::before { content: "\f58b"; } +.bi-sticky-fill::before { content: "\f58c"; } +.bi-sticky::before { content: "\f58d"; } +.bi-stop-btn-fill::before { content: "\f58e"; } +.bi-stop-btn::before { content: "\f58f"; } +.bi-stop-circle-fill::before { content: "\f590"; } +.bi-stop-circle::before { content: "\f591"; } +.bi-stop-fill::before { content: "\f592"; } +.bi-stop::before { content: "\f593"; } +.bi-stoplights-fill::before { content: "\f594"; } +.bi-stoplights::before { content: "\f595"; } +.bi-stopwatch-fill::before { content: "\f596"; } +.bi-stopwatch::before { content: "\f597"; } +.bi-subtract::before { content: "\f598"; } +.bi-suit-club-fill::before { content: "\f599"; } +.bi-suit-club::before { content: "\f59a"; } +.bi-suit-diamond-fill::before { content: "\f59b"; } +.bi-suit-diamond::before { content: "\f59c"; } +.bi-suit-heart-fill::before { content: "\f59d"; } +.bi-suit-heart::before { content: "\f59e"; } +.bi-suit-spade-fill::before { content: "\f59f"; } +.bi-suit-spade::before { content: "\f5a0"; } +.bi-sun-fill::before { content: "\f5a1"; } +.bi-sun::before { content: "\f5a2"; } +.bi-sunglasses::before { content: "\f5a3"; } +.bi-sunrise-fill::before { content: "\f5a4"; } +.bi-sunrise::before { content: "\f5a5"; } +.bi-sunset-fill::before { content: "\f5a6"; } +.bi-sunset::before { content: "\f5a7"; } +.bi-symmetry-horizontal::before { content: "\f5a8"; } +.bi-symmetry-vertical::before { content: "\f5a9"; } +.bi-table::before { content: "\f5aa"; } +.bi-tablet-fill::before { content: "\f5ab"; } +.bi-tablet-landscape-fill::before { content: "\f5ac"; } +.bi-tablet-landscape::before { content: "\f5ad"; } +.bi-tablet::before { content: "\f5ae"; } +.bi-tag-fill::before { content: "\f5af"; } +.bi-tag::before { content: "\f5b0"; } +.bi-tags-fill::before { content: "\f5b1"; } +.bi-tags::before { content: "\f5b2"; } +.bi-telegram::before { content: "\f5b3"; } +.bi-telephone-fill::before { content: "\f5b4"; } +.bi-telephone-forward-fill::before { content: "\f5b5"; } +.bi-telephone-forward::before { content: "\f5b6"; } +.bi-telephone-inbound-fill::before { content: "\f5b7"; } +.bi-telephone-inbound::before { content: "\f5b8"; } +.bi-telephone-minus-fill::before { content: "\f5b9"; } +.bi-telephone-minus::before { content: "\f5ba"; } +.bi-telephone-outbound-fill::before { content: "\f5bb"; } +.bi-telephone-outbound::before { content: "\f5bc"; } +.bi-telephone-plus-fill::before { content: "\f5bd"; } +.bi-telephone-plus::before { content: "\f5be"; } +.bi-telephone-x-fill::before { content: "\f5bf"; } +.bi-telephone-x::before { content: "\f5c0"; } +.bi-telephone::before { content: "\f5c1"; } +.bi-terminal-fill::before { content: "\f5c2"; } +.bi-terminal::before { content: "\f5c3"; } +.bi-text-center::before { content: "\f5c4"; } +.bi-text-indent-left::before { content: "\f5c5"; } +.bi-text-indent-right::before { content: "\f5c6"; } +.bi-text-left::before { content: "\f5c7"; } +.bi-text-paragraph::before { content: "\f5c8"; } +.bi-text-right::before { content: "\f5c9"; } +.bi-textarea-resize::before { content: "\f5ca"; } +.bi-textarea-t::before { content: "\f5cb"; } +.bi-textarea::before { content: "\f5cc"; } +.bi-thermometer-half::before { content: "\f5cd"; } +.bi-thermometer-high::before { content: "\f5ce"; } +.bi-thermometer-low::before { content: "\f5cf"; } +.bi-thermometer-snow::before { content: "\f5d0"; } +.bi-thermometer-sun::before { content: "\f5d1"; } +.bi-thermometer::before { content: "\f5d2"; } +.bi-three-dots-vertical::before { content: "\f5d3"; } +.bi-three-dots::before { content: "\f5d4"; } +.bi-toggle-off::before { content: "\f5d5"; } +.bi-toggle-on::before { content: "\f5d6"; } +.bi-toggle2-off::before { content: "\f5d7"; } +.bi-toggle2-on::before { content: "\f5d8"; } +.bi-toggles::before { content: "\f5d9"; } +.bi-toggles2::before { content: "\f5da"; } +.bi-tools::before { content: "\f5db"; } +.bi-tornado::before { content: "\f5dc"; } +.bi-trash-fill::before { content: "\f5dd"; } +.bi-trash::before { content: "\f5de"; } +.bi-trash2-fill::before { content: "\f5df"; } +.bi-trash2::before { content: "\f5e0"; } +.bi-tree-fill::before { content: "\f5e1"; } +.bi-tree::before { content: "\f5e2"; } +.bi-triangle-fill::before { content: "\f5e3"; } +.bi-triangle-half::before { content: "\f5e4"; } +.bi-triangle::before { content: "\f5e5"; } +.bi-trophy-fill::before { content: "\f5e6"; } +.bi-trophy::before { content: "\f5e7"; } +.bi-tropical-storm::before { content: "\f5e8"; } +.bi-truck-flatbed::before { content: "\f5e9"; } +.bi-truck::before { content: "\f5ea"; } +.bi-tsunami::before { content: "\f5eb"; } +.bi-tv-fill::before { content: "\f5ec"; } +.bi-tv::before { content: "\f5ed"; } +.bi-twitch::before { content: "\f5ee"; } +.bi-twitter::before { content: "\f5ef"; } +.bi-type-bold::before { content: "\f5f0"; } +.bi-type-h1::before { content: "\f5f1"; } +.bi-type-h2::before { content: "\f5f2"; } +.bi-type-h3::before { content: "\f5f3"; } +.bi-type-italic::before { content: "\f5f4"; } +.bi-type-strikethrough::before { content: "\f5f5"; } +.bi-type-underline::before { content: "\f5f6"; } +.bi-type::before { content: "\f5f7"; } +.bi-ui-checks-grid::before { content: "\f5f8"; } +.bi-ui-checks::before { content: "\f5f9"; } +.bi-ui-radios-grid::before { content: "\f5fa"; } +.bi-ui-radios::before { content: "\f5fb"; } +.bi-umbrella-fill::before { content: "\f5fc"; } +.bi-umbrella::before { content: "\f5fd"; } +.bi-union::before { content: "\f5fe"; } +.bi-unlock-fill::before { content: "\f5ff"; } +.bi-unlock::before { content: "\f600"; } +.bi-upc-scan::before { content: "\f601"; } +.bi-upc::before { content: "\f602"; } +.bi-upload::before { content: "\f603"; } +.bi-vector-pen::before { content: "\f604"; } +.bi-view-list::before { content: "\f605"; } +.bi-view-stacked::before { content: "\f606"; } +.bi-vinyl-fill::before { content: "\f607"; } +.bi-vinyl::before { content: "\f608"; } +.bi-voicemail::before { content: "\f609"; } +.bi-volume-down-fill::before { content: "\f60a"; } +.bi-volume-down::before { content: "\f60b"; } +.bi-volume-mute-fill::before { content: "\f60c"; } +.bi-volume-mute::before { content: "\f60d"; } +.bi-volume-off-fill::before { content: "\f60e"; } +.bi-volume-off::before { content: "\f60f"; } +.bi-volume-up-fill::before { content: "\f610"; } +.bi-volume-up::before { content: "\f611"; } +.bi-vr::before { content: "\f612"; } +.bi-wallet-fill::before { content: "\f613"; } +.bi-wallet::before { content: "\f614"; } +.bi-wallet2::before { content: "\f615"; } +.bi-watch::before { content: "\f616"; } +.bi-water::before { content: "\f617"; } +.bi-whatsapp::before { content: "\f618"; } +.bi-wifi-1::before { content: "\f619"; } +.bi-wifi-2::before { content: "\f61a"; } +.bi-wifi-off::before { content: "\f61b"; } +.bi-wifi::before { content: "\f61c"; } +.bi-wind::before { content: "\f61d"; } +.bi-window-dock::before { content: "\f61e"; } +.bi-window-sidebar::before { content: "\f61f"; } +.bi-window::before { content: "\f620"; } +.bi-wrench::before { content: "\f621"; } +.bi-x-circle-fill::before { content: "\f622"; } +.bi-x-circle::before { content: "\f623"; } +.bi-x-diamond-fill::before { content: "\f624"; } +.bi-x-diamond::before { content: "\f625"; } +.bi-x-octagon-fill::before { content: "\f626"; } +.bi-x-octagon::before { content: "\f627"; } +.bi-x-square-fill::before { content: "\f628"; } +.bi-x-square::before { content: "\f629"; } +.bi-x::before { content: "\f62a"; } +.bi-youtube::before { content: "\f62b"; } +.bi-zoom-in::before { content: "\f62c"; } +.bi-zoom-out::before { content: "\f62d"; } diff --git a/src/main/resources/static/css/bootstrap-select.min.css b/src/main/resources/static/css/bootstrap-select.min.css new file mode 100644 index 0000000..8b9129e --- /dev/null +++ b/src/main/resources/static/css/bootstrap-select.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap-select v1.13.15 (https://developer.snapappointments.com/bootstrap-select) + * + * Copyright 2012-2020 SnapAppointments, LLC + * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) + */@-webkit-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@-o-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\0;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{-webkit-animation:.3s linear 750ms forwards bs-notify-fadeOut;-o-animation:.3s linear 750ms forwards bs-notify-fadeOut;animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:'\00a0'}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:'';display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none} \ No newline at end of file diff --git a/src/main/resources/static/css/css.css b/src/main/resources/static/css/css.css new file mode 100644 index 0000000..d8c590f --- /dev/null +++ b/src/main/resources/static/css/css.css @@ -0,0 +1,144 @@ +/* devanagari */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 300; + src: url(../font/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2) format('woff2'); + unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; +} +/* latin-ext */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 300; + src: url(../font/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 300; + src: url(../font/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* devanagari */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 400; + src: url(../font/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2'); + unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; +} +/* latin-ext */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 400; + src: url(../font/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 400; + src: url(../font/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* devanagari */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 500; + src: url(../font/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2'); + unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; +} +/* latin-ext */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 500; + src: url(../font/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 500; + src: url(../font/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* devanagari */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 600; + src: url(../font/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2'); + unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; +} +/* latin-ext */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 600; + src: url(../font/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 600; + src: url(../font/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* devanagari */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 700; + src: url(../font/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2'); + unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; +} +/* latin-ext */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 700; + src: url(../font/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 700; + src: url(../font/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* devanagari */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 800; + src: url(../font/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2) format('woff2'); + unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; +} +/* latin-ext */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 800; + src: url(../font/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Poppins'; + font-style: normal; + font-weight: 800; + src: url(../font/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} diff --git a/src/main/resources/static/css/css1.css b/src/main/resources/static/css/css1.css new file mode 100644 index 0000000..fcd91da --- /dev/null +++ b/src/main/resources/static/css/css1.css @@ -0,0 +1,168 @@ +/* cyrillic-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url(../font/mem8YaGs126MiZpBA-UFWJ0bbck.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url(../font/mem8YaGs126MiZpBA-UFUZ0bbck.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* greek-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url(../font/mem8YaGs126MiZpBA-UFWZ0bbck.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} +/* greek */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url(../font/mem8YaGs126MiZpBA-UFVp0bbck.woff2) format('woff2'); + unicode-range: U+0370-03FF; +} +/* vietnamese */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url(../font/mem8YaGs126MiZpBA-UFWp0bbck.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url(../font/mem8YaGs126MiZpBA-UFW50bbck.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + src: url(../font/mem8YaGs126MiZpBA-UFVZ0b.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url(../font/mem5YaGs126MiZpBA-UNirkOX-hpOqc.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url(../font/mem5YaGs126MiZpBA-UNirkOVuhpOqc.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* greek-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url(../font/mem5YaGs126MiZpBA-UNirkOXuhpOqc.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} +/* greek */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url(../font/mem5YaGs126MiZpBA-UNirkOUehpOqc.woff2) format('woff2'); + unicode-range: U+0370-03FF; +} +/* vietnamese */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url(../font/mem5YaGs126MiZpBA-UNirkOXehpOqc.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url(../font/mem5YaGs126MiZpBA-UNirkOXOhpOqc.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 600; + src: url(../font/mem5YaGs126MiZpBA-UNirkOUuhp.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url(../font/mem5YaGs126MiZpBA-UN7rgOX-hpOqc.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url(../font/mem5YaGs126MiZpBA-UN7rgOVuhpOqc.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* greek-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url(../font/mem5YaGs126MiZpBA-UN7rgOXuhpOqc.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} +/* greek */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url(../font/mem5YaGs126MiZpBA-UN7rgOUehpOqc.woff2) format('woff2'); + unicode-range: U+0370-03FF; +} +/* vietnamese */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url(../font/mem5YaGs126MiZpBA-UN7rgOXehpOqc.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url(../font/mem5YaGs126MiZpBA-UN7rgOXOhpOqc.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 700; + src: url(../font/mem5YaGs126MiZpBA-UN7rgOUuhp.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} diff --git a/src/main/resources/static/css/css2.css b/src/main/resources/static/css/css2.css new file mode 100644 index 0000000..31bb4d2 --- /dev/null +++ b/src/main/resources/static/css/css2.css @@ -0,0 +1,162 @@ +/* arabic */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 200; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalrub46O59ZMaA.woff2) format('woff2'); + unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC; +} +/* latin-ext */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 200; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalrub46F59ZMaA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 200; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalrub46L59Y.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* arabic */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 300; + font-display: swap; + src: url(../font/SLXLc1nY6HkvalqKbI6O59ZMaA.woff2) format('woff2'); + unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC; +} +/* latin-ext */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 300; + font-display: swap; + src: url(../font/SLXLc1nY6HkvalqKbI6F59ZMaA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 300; + font-display: swap; + src: url(../font/SLXLc1nY6HkvalqKbI6L59Y.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* arabic */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(../font/SLXGc1nY6HkvalIkTpu0xg.woff2) format('woff2'); + unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC; +} +/* latin-ext */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(../font/SLXGc1nY6HkvalIvTpu0xg.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(../font/SLXGc1nY6HkvalIhTps.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* arabic */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalr-ao6O59ZMaA.woff2) format('woff2'); + unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC; +} +/* latin-ext */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalr-ao6F59ZMaA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalr-ao6L59Y.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* arabic */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalqaa46O59ZMaA.woff2) format('woff2'); + unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC; +} +/* latin-ext */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalqaa46F59ZMaA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(../font/SLXLc1nY6Hkvalqaa46L59Y.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* arabic */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 900; + font-display: swap; + src: url(../font/SLXLc1nY6HkvalqiaY6O59ZMaA.woff2) format('woff2'); + unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC; +} +/* latin-ext */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 900; + font-display: swap; + src: url(../font/SLXLc1nY6HkvalqiaY6F59ZMaA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Cairo'; + font-style: normal; + font-weight: 900; + font-display: swap; + src: url(../font/SLXLc1nY6HkvalqiaY6L59Y.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} diff --git a/src/main/resources/static/css/css3.css b/src/main/resources/static/css/css3.css new file mode 100644 index 0000000..28f8d7d --- /dev/null +++ b/src/main/resources/static/css/css3.css @@ -0,0 +1,160 @@ +/* cyrillic-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 400; + src: url(../font/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 400; + src: url(../font/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 400; + src: url(../font/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 400; + src: url(../font/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 400; + src: url(../font/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 500; + src: url(../font/JTURjIg1_i6t8kCHKm45_ZpC3gTD_u50.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 500; + src: url(../font/JTURjIg1_i6t8kCHKm45_ZpC3g3D_u50.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 500; + src: url(../font/JTURjIg1_i6t8kCHKm45_ZpC3gbD_u50.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 500; + src: url(../font/JTURjIg1_i6t8kCHKm45_ZpC3gfD_u50.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 500; + src: url(../font/JTURjIg1_i6t8kCHKm45_ZpC3gnD_g.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 600; + src: url(../font/JTURjIg1_i6t8kCHKm45_bZF3gTD_u50.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 600; + src: url(../font/JTURjIg1_i6t8kCHKm45_bZF3g3D_u50.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 600; + src: url(../font/JTURjIg1_i6t8kCHKm45_bZF3gbD_u50.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 600; + src: url(../font/JTURjIg1_i6t8kCHKm45_bZF3gfD_u50.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 600; + src: url(../font/JTURjIg1_i6t8kCHKm45_bZF3gnD_g.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 700; + src: url(../font/JTURjIg1_i6t8kCHKm45_dJE3gTD_u50.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 700; + src: url(../font/JTURjIg1_i6t8kCHKm45_dJE3g3D_u50.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 700; + src: url(../font/JTURjIg1_i6t8kCHKm45_dJE3gbD_u50.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 700; + src: url(../font/JTURjIg1_i6t8kCHKm45_dJE3gfD_u50.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Montserrat'; + font-style: normal; + font-weight: 700; + src: url(../font/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} diff --git a/src/main/resources/static/css/css4.css b/src/main/resources/static/css/css4.css new file mode 100644 index 0000000..cd5a3c0 --- /dev/null +++ b/src/main/resources/static/css/css4.css @@ -0,0 +1,168 @@ +/* cyrillic-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url(../font/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url(../font/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* greek-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url(../font/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} +/* greek */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url(../font/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2'); + unicode-range: U+0370-03FF; +} +/* vietnamese */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url(../font/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url(../font/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url(../font/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url(../font/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url(../font/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* greek-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url(../font/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} +/* greek */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url(../font/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format('woff2'); + unicode-range: U+0370-03FF; +} +/* vietnamese */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url(../font/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url(../font/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url(../font/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url(../font/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url(../font/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* greek-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url(../font/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format('woff2'); + unicode-range: U+1F00-1FFF; +} +/* greek */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url(../font/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format('woff2'); + unicode-range: U+0370-03FF; +} +/* vietnamese */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url(../font/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url(../font/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url(../font/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} diff --git a/src/main/resources/static/css/css5.css b/src/main/resources/static/css/css5.css new file mode 100644 index 0000000..8f8e192 --- /dev/null +++ b/src/main/resources/static/css/css5.css @@ -0,0 +1,120 @@ +/* cyrillic-ext */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 400; + src: url(../font/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 400; + src: url(../font/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 400; + src: url(../font/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 400; + src: url(../font/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 400; + src: url(../font/XRXV3I6Li01BKofINeaB.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 600; + src: url(../font/XRXW3I6Li01BKofA6sKUbOvISTs.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 600; + src: url(../font/XRXW3I6Li01BKofA6sKUZevISTs.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 600; + src: url(../font/XRXW3I6Li01BKofA6sKUbuvISTs.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 600; + src: url(../font/XRXW3I6Li01BKofA6sKUb-vISTs.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 600; + src: url(../font/XRXW3I6Li01BKofA6sKUYevI.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} +/* cyrillic-ext */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 700; + src: url(../font/XRXW3I6Li01BKofAjsOUbOvISTs.woff2) format('woff2'); + unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +} +/* cyrillic */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 700; + src: url(../font/XRXW3I6Li01BKofAjsOUZevISTs.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +} +/* vietnamese */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 700; + src: url(../font/XRXW3I6Li01BKofAjsOUbuvISTs.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 700; + src: url(../font/XRXW3I6Li01BKofAjsOUb-vISTs.woff2) format('woff2'); + unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +} +/* latin */ +@font-face { + font-family: 'Nunito'; + font-style: normal; + font-weight: 700; + src: url(../font/XRXW3I6Li01BKofAjsOUYevI.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} diff --git a/src/main/resources/static/css/flaticon.css b/src/main/resources/static/css/flaticon.css new file mode 100644 index 0000000..63ea36e --- /dev/null +++ b/src/main/resources/static/css/flaticon.css @@ -0,0 +1,409 @@ + /* + Flaticon icon font: Flaticon + Creation date: 25/04/2017 09:15 + */ + +@font-face { + font-family: "Flaticon"; + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon/Flaticon.eot"); + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon/Flaticon.eot?#iefix") format("embedded-opentype"), + url("../font/Flaticon.woff") format("woff"), + url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon/Flaticon.ttf") format("truetype"), + url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon/Flaticon.svg#Flaticon") format("svg"); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "Flaticon"; + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon/Flaticon.svg#Flaticon") format("svg"); + } +} + +[class^="flaticon-"]:before, [class*=" flaticon-"]:before, +[class^="flaticon-"]:after, [class*=" flaticon-"]:after { + font-family: Flaticon; + font-style: normal; +} + +.flaticon-381-add:before { content: "\f100"; } +.flaticon-381-add-1:before { content: "\f101"; } +.flaticon-381-add-2:before { content: "\f102"; } +.flaticon-381-add-3:before { content: "\f103"; } +.flaticon-381-alarm-clock:before { content: "\f104"; } +.flaticon-381-alarm-clock-1:before { content: "\f105"; } +.flaticon-381-album:before { content: "\f106"; } +.flaticon-381-album-1:before { content: "\f107"; } +.flaticon-381-album-2:before { content: "\f108"; } +.flaticon-381-album-3:before { content: "\f109"; } +.flaticon-381-app:before { content: "\f10a"; } +.flaticon-381-archive:before { content: "\f10b"; } +.flaticon-381-back:before { content: "\f10c"; } +.flaticon-381-back-1:before { content: "\f10d"; } +.flaticon-381-back-2:before { content: "\f10e"; } +.flaticon-381-background:before { content: "\f10f"; } +.flaticon-381-background-1:before { content: "\f110"; } +.flaticon-381-battery:before { content: "\f111"; } +.flaticon-381-battery-1:before { content: "\f112"; } +.flaticon-381-battery-2:before { content: "\f113"; } +.flaticon-381-battery-3:before { content: "\f114"; } +.flaticon-381-battery-4:before { content: "\f115"; } +.flaticon-381-battery-5:before { content: "\f116"; } +.flaticon-381-battery-6:before { content: "\f117"; } +.flaticon-381-battery-7:before { content: "\f118"; } +.flaticon-381-battery-8:before { content: "\f119"; } +.flaticon-381-battery-9:before { content: "\f11a"; } +.flaticon-381-binoculars:before { content: "\f11b"; } +.flaticon-381-blueprint:before { content: "\f11c"; } +.flaticon-381-bluetooth:before { content: "\f11d"; } +.flaticon-381-bluetooth-1:before { content: "\f11e"; } +.flaticon-381-book:before { content: "\f11f"; } +.flaticon-381-bookmark:before { content: "\f120"; } +.flaticon-381-bookmark-1:before { content: "\f121"; } +.flaticon-381-box:before { content: "\f122"; } +.flaticon-381-box-1:before { content: "\f123"; } +.flaticon-381-box-2:before { content: "\f124"; } +.flaticon-381-briefcase:before { content: "\f125"; } +.flaticon-381-broken-heart:before { content: "\f126"; } +.flaticon-381-broken-link:before { content: "\f127"; } +.flaticon-381-calculator:before { content: "\f128"; } +.flaticon-381-calculator-1:before { content: "\f129"; } +.flaticon-381-calendar:before { content: "\f12a"; } +.flaticon-381-calendar-1:before { content: "\f12b"; } +.flaticon-381-calendar-2:before { content: "\f12c"; } +.flaticon-381-calendar-3:before { content: "\f12d"; } +.flaticon-381-calendar-4:before { content: "\f12e"; } +.flaticon-381-calendar-5:before { content: "\f12f"; } +.flaticon-381-calendar-6:before { content: "\f130"; } +.flaticon-381-calendar-7:before { content: "\f131"; } +.flaticon-381-clock:before { content: "\f132"; } +.flaticon-381-clock-1:before { content: "\f133"; } +.flaticon-381-clock-2:before { content: "\f134"; } +.flaticon-381-close:before { content: "\f135"; } +.flaticon-381-cloud:before { content: "\f136"; } +.flaticon-381-cloud-computing:before { content: "\f137"; } +.flaticon-381-command:before { content: "\f138"; } +.flaticon-381-compact-disc:before { content: "\f139"; } +.flaticon-381-compact-disc-1:before { content: "\f13a"; } +.flaticon-381-compact-disc-2:before { content: "\f13b"; } +.flaticon-381-compass:before { content: "\f13c"; } +.flaticon-381-compass-1:before { content: "\f13d"; } +.flaticon-381-compass-2:before { content: "\f13e"; } +.flaticon-381-controls:before { content: "\f13f"; } +.flaticon-381-controls-1:before { content: "\f140"; } +.flaticon-381-controls-2:before { content: "\f141"; } +.flaticon-381-controls-3:before { content: "\f142"; } +.flaticon-381-controls-4:before { content: "\f143"; } +.flaticon-381-controls-5:before { content: "\f144"; } +.flaticon-381-controls-6:before { content: "\f145"; } +.flaticon-381-controls-7:before { content: "\f146"; } +.flaticon-381-controls-8:before { content: "\f147"; } +.flaticon-381-controls-9:before { content: "\f148"; } +.flaticon-381-database:before { content: "\f149"; } +.flaticon-381-database-1:before { content: "\f14a"; } +.flaticon-381-database-2:before { content: "\f14b"; } +.flaticon-381-diamond:before { content: "\f14c"; } +.flaticon-381-diploma:before { content: "\f14d"; } +.flaticon-381-dislike:before { content: "\f14e"; } +.flaticon-381-divide:before { content: "\f14f"; } +.flaticon-381-division:before { content: "\f150"; } +.flaticon-381-division-1:before { content: "\f151"; } +.flaticon-381-download:before { content: "\f152"; } +.flaticon-381-earth-globe:before { content: "\f153"; } +.flaticon-381-earth-globe-1:before { content: "\f154"; } +.flaticon-381-edit:before { content: "\f155"; } +.flaticon-381-edit-1:before { content: "\f156"; } +.flaticon-381-eject:before { content: "\f157"; } +.flaticon-381-eject-1:before { content: "\f158"; } +.flaticon-381-enter:before { content: "\f159"; } +.flaticon-381-equal:before { content: "\f15a"; } +.flaticon-381-equal-1:before { content: "\f15b"; } +.flaticon-381-equal-2:before { content: "\f15c"; } +.flaticon-381-error:before { content: "\f15d"; } +.flaticon-381-exit:before { content: "\f15e"; } +.flaticon-381-exit-1:before { content: "\f15f"; } +.flaticon-381-exit-2:before { content: "\f160"; } +.flaticon-381-fast-forward:before { content: "\f161"; } +.flaticon-381-fast-forward-1:before { content: "\f162"; } +.flaticon-381-file:before { content: "\f163"; } +.flaticon-381-file-1:before { content: "\f164"; } +.flaticon-381-file-2:before { content: "\f165"; } +.flaticon-381-film-strip:before { content: "\f166"; } +.flaticon-381-film-strip-1:before { content: "\f167"; } +.flaticon-381-fingerprint:before { content: "\f168"; } +.flaticon-381-flag:before { content: "\f169"; } +.flaticon-381-flag-1:before { content: "\f16a"; } +.flaticon-381-flag-2:before { content: "\f16b"; } +.flaticon-381-flag-3:before { content: "\f16c"; } +.flaticon-381-flag-4:before { content: "\f16d"; } +.flaticon-381-focus:before { content: "\f16e"; } +.flaticon-381-folder:before { content: "\f16f"; } +.flaticon-381-folder-1:before { content: "\f170"; } +.flaticon-381-folder-10:before { content: "\f171"; } +.flaticon-381-folder-11:before { content: "\f172"; } +.flaticon-381-folder-12:before { content: "\f173"; } +.flaticon-381-folder-13:before { content: "\f174"; } +.flaticon-381-folder-14:before { content: "\f175"; } +.flaticon-381-folder-15:before { content: "\f176"; } +.flaticon-381-folder-16:before { content: "\f177"; } +.flaticon-381-folder-17:before { content: "\f178"; } +.flaticon-381-folder-18:before { content: "\f179"; } +.flaticon-381-folder-19:before { content: "\f17a"; } +.flaticon-381-folder-2:before { content: "\f17b"; } +.flaticon-381-folder-3:before { content: "\f17c"; } +.flaticon-381-folder-4:before { content: "\f17d"; } +.flaticon-381-folder-5:before { content: "\f17e"; } +.flaticon-381-folder-6:before { content: "\f17f"; } +.flaticon-381-folder-7:before { content: "\f180"; } +.flaticon-381-folder-8:before { content: "\f181"; } +.flaticon-381-folder-9:before { content: "\f182"; } +.flaticon-381-forbidden:before { content: "\f183"; } +.flaticon-381-funnel:before { content: "\f184"; } +.flaticon-381-gift:before { content: "\f185"; } +.flaticon-381-heart:before { content: "\f186"; } +.flaticon-381-heart-1:before { content: "\f187"; } +.flaticon-381-help:before { content: "\f188"; } +.flaticon-381-help-1:before { content: "\f189"; } +.flaticon-381-hide:before { content: "\f18a"; } +.flaticon-381-high-volume:before { content: "\f18b"; } +.flaticon-381-home:before { content: "\f18c"; } +.flaticon-381-home-1:before { content: "\f18d"; } +.flaticon-381-home-2:before { content: "\f18e"; } +.flaticon-381-home-3:before { content: "\f18f"; } +.flaticon-381-hourglass:before { content: "\f190"; } +.flaticon-381-hourglass-1:before { content: "\f191"; } +.flaticon-381-hourglass-2:before { content: "\f192"; } +.flaticon-381-id-card:before { content: "\f193"; } +.flaticon-381-id-card-1:before { content: "\f194"; } +.flaticon-381-id-card-2:before { content: "\f195"; } +.flaticon-381-id-card-3:before { content: "\f196"; } +.flaticon-381-id-card-4:before { content: "\f197"; } +.flaticon-381-id-card-5:before { content: "\f198"; } +.flaticon-381-idea:before { content: "\f199"; } +.flaticon-381-incoming-call:before { content: "\f19a"; } +.flaticon-381-infinity:before { content: "\f19b"; } +.flaticon-381-internet:before { content: "\f19c"; } +.flaticon-381-key:before { content: "\f19d"; } +.flaticon-381-knob:before { content: "\f19e"; } +.flaticon-381-knob-1:before { content: "\f19f"; } +.flaticon-381-layer:before { content: "\f1a0"; } +.flaticon-381-layer-1:before { content: "\f1a1"; } +.flaticon-381-like:before { content: "\f1a2"; } +.flaticon-381-link:before { content: "\f1a3"; } +.flaticon-381-link-1:before { content: "\f1a4"; } +.flaticon-381-list:before { content: "\f1a5"; } +.flaticon-381-list-1:before { content: "\f1a6"; } +.flaticon-381-location:before { content: "\f1a7"; } +.flaticon-381-location-1:before { content: "\f1a8"; } +.flaticon-381-location-2:before { content: "\f1a9"; } +.flaticon-381-location-3:before { content: "\f1aa"; } +.flaticon-381-location-4:before { content: "\f1ab"; } +.flaticon-381-locations:before { content: "\f1ac"; } +.flaticon-381-lock:before { content: "\f1ad"; } +.flaticon-381-lock-1:before { content: "\f1ae"; } +.flaticon-381-lock-2:before { content: "\f1af"; } +.flaticon-381-lock-3:before { content: "\f1b0"; } +.flaticon-381-low-volume:before { content: "\f1b1"; } +.flaticon-381-low-volume-1:before { content: "\f1b2"; } +.flaticon-381-low-volume-2:before { content: "\f1b3"; } +.flaticon-381-low-volume-3:before { content: "\f1b4"; } +.flaticon-381-magic-wand:before { content: "\f1b5"; } +.flaticon-381-magnet:before { content: "\f1b6"; } +.flaticon-381-magnet-1:before { content: "\f1b7"; } +.flaticon-381-magnet-2:before { content: "\f1b8"; } +.flaticon-381-map:before { content: "\f1b9"; } +.flaticon-381-map-1:before { content: "\f1ba"; } +.flaticon-381-map-2:before { content: "\f1bb"; } +.flaticon-381-menu:before { content: "\f1bc"; } +.flaticon-381-menu-1:before { content: "\f1bd"; } +.flaticon-381-menu-2:before { content: "\f1be"; } +.flaticon-381-menu-3:before { content: "\f1bf"; } +.flaticon-381-microphone:before { content: "\f1c0"; } +.flaticon-381-microphone-1:before { content: "\f1c1"; } +.flaticon-381-more:before { content: "\f1c2"; } +.flaticon-381-more-1:before { content: "\f1c3"; } +.flaticon-381-more-2:before { content: "\f1c4"; } +.flaticon-381-multiply:before { content: "\f1c5"; } +.flaticon-381-multiply-1:before { content: "\f1c6"; } +.flaticon-381-music-album:before { content: "\f1c7"; } +.flaticon-381-mute:before { content: "\f1c8"; } +.flaticon-381-mute-1:before { content: "\f1c9"; } +.flaticon-381-mute-2:before { content: "\f1ca"; } +.flaticon-381-network:before { content: "\f1cb"; } +.flaticon-381-network-1:before { content: "\f1cc"; } +.flaticon-381-network-2:before { content: "\f1cd"; } +.flaticon-381-network-3:before { content: "\f1ce"; } +.flaticon-381-networking:before { content: "\f1cf"; } +.flaticon-381-networking-1:before { content: "\f1d0"; } +.flaticon-381-news:before { content: "\f1d1"; } +.flaticon-381-newspaper:before { content: "\f1d2"; } +.flaticon-381-next:before { content: "\f1d3"; } +.flaticon-381-next-1:before { content: "\f1d4"; } +.flaticon-381-note:before { content: "\f1d5"; } +.flaticon-381-notebook:before { content: "\f1d6"; } +.flaticon-381-notebook-1:before { content: "\f1d7"; } +.flaticon-381-notebook-2:before { content: "\f1d8"; } +.flaticon-381-notebook-3:before { content: "\f1d9"; } +.flaticon-381-notebook-4:before { content: "\f1da"; } +.flaticon-381-notebook-5:before { content: "\f1db"; } +.flaticon-381-notepad:before { content: "\f1dc"; } +.flaticon-381-notepad-1:before { content: "\f1dd"; } +.flaticon-381-notepad-2:before { content: "\f1de"; } +.flaticon-381-notification:before { content: "\f1df"; } +.flaticon-381-off:before { content: "\f1e0"; } +.flaticon-381-on:before { content: "\f1e1"; } +.flaticon-381-pad:before { content: "\f1e2"; } +.flaticon-381-padlock:before { content: "\f1e3"; } +.flaticon-381-padlock-1:before { content: "\f1e4"; } +.flaticon-381-padlock-2:before { content: "\f1e5"; } +.flaticon-381-panel:before { content: "\f1e6"; } +.flaticon-381-panel-1:before { content: "\f1e7"; } +.flaticon-381-panel-2:before { content: "\f1e8"; } +.flaticon-381-panel-3:before { content: "\f1e9"; } +.flaticon-381-paperclip:before { content: "\f1ea"; } +.flaticon-381-pause:before { content: "\f1eb"; } +.flaticon-381-pause-1:before { content: "\f1ec"; } +.flaticon-381-pencil:before { content: "\f1ed"; } +.flaticon-381-percentage:before { content: "\f1ee"; } +.flaticon-381-percentage-1:before { content: "\f1ef"; } +.flaticon-381-perspective:before { content: "\f1f0"; } +.flaticon-381-phone-call:before { content: "\f1f1"; } +.flaticon-381-photo:before { content: "\f1f2"; } +.flaticon-381-photo-camera:before { content: "\f1f3"; } +.flaticon-381-photo-camera-1:before { content: "\f1f4"; } +.flaticon-381-picture:before { content: "\f1f5"; } +.flaticon-381-picture-1:before { content: "\f1f6"; } +.flaticon-381-picture-2:before { content: "\f1f7"; } +.flaticon-381-pin:before { content: "\f1f8"; } +.flaticon-381-play-button:before { content: "\f1f9"; } +.flaticon-381-play-button-1:before { content: "\f1fa"; } +.flaticon-381-plus:before { content: "\f1fb"; } +.flaticon-381-presentation:before { content: "\f1fc"; } +.flaticon-381-price-tag:before { content: "\f1fd"; } +.flaticon-381-print:before { content: "\f1fe"; } +.flaticon-381-print-1:before { content: "\f1ff"; } +.flaticon-381-privacy:before { content: "\f200"; } +.flaticon-381-promotion:before { content: "\f201"; } +.flaticon-381-promotion-1:before { content: "\f202"; } +.flaticon-381-push-pin:before { content: "\f203"; } +.flaticon-381-quaver:before { content: "\f204"; } +.flaticon-381-quaver-1:before { content: "\f205"; } +.flaticon-381-radar:before { content: "\f206"; } +.flaticon-381-reading:before { content: "\f207"; } +.flaticon-381-receive:before { content: "\f208"; } +.flaticon-381-record:before { content: "\f209"; } +.flaticon-381-repeat:before { content: "\f20a"; } +.flaticon-381-repeat-1:before { content: "\f20b"; } +.flaticon-381-resume:before { content: "\f20c"; } +.flaticon-381-rewind:before { content: "\f20d"; } +.flaticon-381-rewind-1:before { content: "\f20e"; } +.flaticon-381-ring:before { content: "\f20f"; } +.flaticon-381-ring-1:before { content: "\f210"; } +.flaticon-381-rotate:before { content: "\f211"; } +.flaticon-381-rotate-1:before { content: "\f212"; } +.flaticon-381-route:before { content: "\f213"; } +.flaticon-381-save:before { content: "\f214"; } +.flaticon-381-search:before { content: "\f215"; } +.flaticon-381-search-1:before { content: "\f216"; } +.flaticon-381-search-2:before { content: "\f217"; } +.flaticon-381-search-3:before { content: "\f218"; } +.flaticon-381-send:before { content: "\f219"; } +.flaticon-381-send-1:before { content: "\f21a"; } +.flaticon-381-send-2:before { content: "\f21b"; } +.flaticon-381-settings:before { content: "\f21c"; } +.flaticon-381-settings-1:before { content: "\f21d"; } +.flaticon-381-settings-2:before { content: "\f21e"; } +.flaticon-381-settings-3:before { content: "\f21f"; } +.flaticon-381-settings-4:before { content: "\f220"; } +.flaticon-381-settings-5:before { content: "\f221"; } +.flaticon-381-settings-6:before { content: "\f222"; } +.flaticon-381-settings-7:before { content: "\f223"; } +.flaticon-381-settings-8:before { content: "\f224"; } +.flaticon-381-settings-9:before { content: "\f225"; } +.flaticon-381-share:before { content: "\f226"; } +.flaticon-381-share-1:before { content: "\f227"; } +.flaticon-381-share-2:before { content: "\f228"; } +.flaticon-381-shuffle:before { content: "\f229"; } +.flaticon-381-shuffle-1:before { content: "\f22a"; } +.flaticon-381-shut-down:before { content: "\f22b"; } +.flaticon-381-silence:before { content: "\f22c"; } +.flaticon-381-silent:before { content: "\f22d"; } +.flaticon-381-smartphone:before { content: "\f22e"; } +.flaticon-381-smartphone-1:before { content: "\f22f"; } +.flaticon-381-smartphone-2:before { content: "\f230"; } +.flaticon-381-smartphone-3:before { content: "\f231"; } +.flaticon-381-smartphone-4:before { content: "\f232"; } +.flaticon-381-smartphone-5:before { content: "\f233"; } +.flaticon-381-smartphone-6:before { content: "\f234"; } +.flaticon-381-smartphone-7:before { content: "\f235"; } +.flaticon-381-speaker:before { content: "\f236"; } +.flaticon-381-speedometer:before { content: "\f237"; } +.flaticon-381-spotlight:before { content: "\f238"; } +.flaticon-381-star:before { content: "\f239"; } +.flaticon-381-star-1:before { content: "\f23a"; } +.flaticon-381-stop:before { content: "\f23b"; } +.flaticon-381-stop-1:before { content: "\f23c"; } +.flaticon-381-stopclock:before { content: "\f23d"; } +.flaticon-381-stopwatch:before { content: "\f23e"; } +.flaticon-381-stopwatch-1:before { content: "\f23f"; } +.flaticon-381-stopwatch-2:before { content: "\f240"; } +.flaticon-381-substract:before { content: "\f241"; } +.flaticon-381-substract-1:before { content: "\f242"; } +.flaticon-381-substract-2:before { content: "\f243"; } +.flaticon-381-success:before { content: "\f244"; } +.flaticon-381-success-1:before { content: "\f245"; } +.flaticon-381-success-2:before { content: "\f246"; } +.flaticon-381-sunglasses:before { content: "\f247"; } +.flaticon-381-switch:before { content: "\f248"; } +.flaticon-381-switch-1:before { content: "\f249"; } +.flaticon-381-switch-2:before { content: "\f24a"; } +.flaticon-381-switch-3:before { content: "\f24b"; } +.flaticon-381-switch-4:before { content: "\f24c"; } +.flaticon-381-switch-5:before { content: "\f24d"; } +.flaticon-381-sync:before { content: "\f24e"; } +.flaticon-381-tab:before { content: "\f24f"; } +.flaticon-381-target:before { content: "\f250"; } +.flaticon-381-television:before { content: "\f251"; } +.flaticon-381-time:before { content: "\f252"; } +.flaticon-381-transfer:before { content: "\f253"; } +.flaticon-381-trash:before { content: "\f254"; } +.flaticon-381-trash-1:before { content: "\f255"; } +.flaticon-381-trash-2:before { content: "\f256"; } +.flaticon-381-trash-3:before { content: "\f257"; } +.flaticon-381-turn-off:before { content: "\f258"; } +.flaticon-381-umbrella:before { content: "\f259"; } +.flaticon-381-unlocked:before { content: "\f25a"; } +.flaticon-381-unlocked-1:before { content: "\f25b"; } +.flaticon-381-unlocked-2:before { content: "\f25c"; } +.flaticon-381-unlocked-3:before { content: "\f25d"; } +.flaticon-381-unlocked-4:before { content: "\f25e"; } +.flaticon-381-upload:before { content: "\f25f"; } +.flaticon-381-upload-1:before { content: "\f260"; } +.flaticon-381-user:before { content: "\f261"; } +.flaticon-381-user-1:before { content: "\f262"; } +.flaticon-381-user-2:before { content: "\f263"; } +.flaticon-381-user-3:before { content: "\f264"; } +.flaticon-381-user-4:before { content: "\f265"; } +.flaticon-381-user-5:before { content: "\f266"; } +.flaticon-381-user-6:before { content: "\f267"; } +.flaticon-381-user-7:before { content: "\f268"; } +.flaticon-381-user-8:before { content: "\f269"; } +.flaticon-381-user-9:before { content: "\f26a"; } +.flaticon-381-video-camera:before { content: "\f26b"; } +.flaticon-381-video-clip:before { content: "\f26c"; } +.flaticon-381-video-player:before { content: "\f26d"; } +.flaticon-381-video-player-1:before { content: "\f26e"; } +.flaticon-381-view:before { content: "\f26f"; } +.flaticon-381-view-1:before { content: "\f270"; } +.flaticon-381-view-2:before { content: "\f271"; } +.flaticon-381-volume:before { content: "\f272"; } +.flaticon-381-warning:before { content: "\f273"; } +.flaticon-381-warning-1:before { content: "\f274"; } +.flaticon-381-wifi:before { content: "\f275"; } +.flaticon-381-wifi-1:before { content: "\f276"; } +.flaticon-381-wifi-2:before { content: "\f277"; } +.flaticon-381-windows:before { content: "\f278"; } +.flaticon-381-windows-1:before { content: "\f279"; } +.flaticon-381-zoom-in:before { content: "\f27a"; } +.flaticon-381-zoom-out:before { content: "\f27b"; } \ No newline at end of file diff --git a/src/main/resources/static/css/flaticon_1.css b/src/main/resources/static/css/flaticon_1.css new file mode 100644 index 0000000..3f96b8f --- /dev/null +++ b/src/main/resources/static/css/flaticon_1.css @@ -0,0 +1,128 @@ +@font-face { + font-family: "Flaticon"; + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon_1/Flaticon_1.eot"); + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon_1/Flaticon_1.eot?#iefix") format("embedded-opentype"), + url("../font/Flaticon_1.woff2") format("woff2"), + url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon_1/Flaticon_1.woff") format("woff"), + url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon_1/Flaticon_1.ttf") format("truetype"), + url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon_1/Flaticon_1.svg#Flaticon") format("svg"); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "Flaticon"; + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/flaticon_1/Flaticon_1.svg#Flaticon") format("svg"); + } +} + +.fimanager:before { + display: inline-block; + font-family: "Flaticon"; + font-style: normal; + font-weight: normal; + font-variant: normal; + line-height: 1; + text-decoration: inherit; + text-rendering: optimizeLegibility; + text-transform: none; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; + display: block; +} + +.flaticon-001-arrow-down:before { content: "\f100"; } +.flaticon-002-arrow-down:before { content: "\f101"; } +.flaticon-003-arrow-up:before { content: "\f102"; } +.flaticon-004-arrow-up:before { content: "\f103"; } +.flaticon-005-back-arrow:before { content: "\f104"; } +.flaticon-006-brightness:before { content: "\f105"; } +.flaticon-007-bulleye:before { content: "\f106"; } +.flaticon-008-check:before { content: "\f107"; } +.flaticon-009-check:before { content: "\f108"; } +.flaticon-010-check:before { content: "\f109"; } +.flaticon-011-check:before { content: "\f10a"; } +.flaticon-012-checkmark:before { content: "\f10b"; } +.flaticon-013-checkmark:before { content: "\f10c"; } +.flaticon-014-checkmark:before { content: "\f10d"; } +.flaticon-015-chevron:before { content: "\f10e"; } +.flaticon-016-double-chevron:before { content: "\f10f"; } +.flaticon-017-clipboard:before { content: "\f110"; } +.flaticon-018-clock:before { content: "\f111"; } +.flaticon-019-close:before { content: "\f112"; } +.flaticon-020-close:before { content: "\f113"; } +.flaticon-021-command:before { content: "\f114"; } +.flaticon-022-copy:before { content: "\f115"; } +.flaticon-023-cut:before { content: "\f116"; } +.flaticon-024-dashboard:before { content: "\f117"; } +.flaticon-025-dashboard:before { content: "\f118"; } +.flaticon-026-delete:before { content: "\f119"; } +.flaticon-027-dot:before { content: "\f11a"; } +.flaticon-028-download:before { content: "\f11b"; } +.flaticon-029-ellipsis:before { content: "\f11c"; } +.flaticon-030-ellipsis:before { content: "\f11d"; } +.flaticon-031-ellipsis:before { content: "\f11e"; } +.flaticon-032-ellipsis:before { content: "\f11f"; } +.flaticon-033-feather:before { content: "\f120"; } +.flaticon-034-filter:before { content: "\f121"; } +.flaticon-035-flag:before { content: "\f122"; } +.flaticon-036-floppy-disk:before { content: "\f123"; } +.flaticon-037-funnel:before { content: "\f124"; } +.flaticon-038-gauge:before { content: "\f125"; } +.flaticon-039-goal:before { content: "\f126"; } +.flaticon-040-graph:before { content: "\f127"; } +.flaticon-041-graph:before { content: "\f128"; } +.flaticon-042-menu:before { content: "\f129"; } +.flaticon-043-menu:before { content: "\f12a"; } +.flaticon-044-menu:before { content: "\f12b"; } +.flaticon-045-heart:before { content: "\f12c"; } +.flaticon-046-home:before { content: "\f12d"; } +.flaticon-047-home:before { content: "\f12e"; } +.flaticon-048-home:before { content: "\f12f"; } +.flaticon-049-home:before { content: "\f130"; } +.flaticon-050-info:before { content: "\f131"; } +.flaticon-051-info:before { content: "\f132"; } +.flaticon-052-inside:before { content: "\f133"; } +.flaticon-053-lifebuoy:before { content: "\f134"; } +.flaticon-054-maximize:before { content: "\f135"; } +.flaticon-055-minimize:before { content: "\f136"; } +.flaticon-056-minus:before { content: "\f137"; } +.flaticon-057-minus:before { content: "\f138"; } +.flaticon-058-minus:before { content: "\f139"; } +.flaticon-059-minus:before { content: "\f13a"; } +.flaticon-060-on:before { content: "\f13b"; } +.flaticon-061-outside:before { content: "\f13c"; } +.flaticon-062-pencil:before { content: "\f13d"; } +.flaticon-063-pencil:before { content: "\f13e"; } +.flaticon-064-pin:before { content: "\f13f"; } +.flaticon-065-pin:before { content: "\f140"; } +.flaticon-066-plus:before { content: "\f141"; } +.flaticon-067-plus:before { content: "\f142"; } +.flaticon-068-plus:before { content: "\f143"; } +.flaticon-069-plus:before { content: "\f144"; } +.flaticon-070-power:before { content: "\f145"; } +.flaticon-071-print:before { content: "\f146"; } +.flaticon-072-printer:before { content: "\f147"; } +.flaticon-073-question:before { content: "\f148"; } +.flaticon-074-question:before { content: "\f149"; } +.flaticon-075-reload:before { content: "\f14a"; } +.flaticon-076-remove:before { content: "\f14b"; } +.flaticon-077-remove:before { content: "\f14c"; } +.flaticon-078-remove:before { content: "\f14d"; } +.flaticon-079-search:before { content: "\f14e"; } +.flaticon-080-search:before { content: "\f14f"; } +.flaticon-081-search:before { content: "\f150"; } +.flaticon-082-share:before { content: "\f151"; } +.flaticon-083-share:before { content: "\f152"; } +.flaticon-084-share:before { content: "\f153"; } +.flaticon-085-signal:before { content: "\f154"; } +.flaticon-086-star:before { content: "\f155"; } +.flaticon-087-stop:before { content: "\f156"; } +.flaticon-088-time:before { content: "\f157"; } +.flaticon-089-trash:before { content: "\f158"; } +.flaticon-090-upload:before { content: "\f159"; } +.flaticon-091-warning:before { content: "\f15a"; } +.flaticon-092-warning:before { content: "\f15b"; } +.flaticon-093-waving:before { content: "\f15c"; } \ No newline at end of file diff --git a/src/main/resources/static/css/icomoon.css b/src/main/resources/static/css/icomoon.css new file mode 100644 index 0000000..5c5f166 --- /dev/null +++ b/src/main/resources/static/css/icomoon.css @@ -0,0 +1,6620 @@ +@font-face { + font-family: 'icomoon'; + src: url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/icomoon/fonts/icomoon.eot'); + src: url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/icomoon/fonts/icomoon.eot') format('embedded-opentype'), + url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/icomoon/fonts/icomoon.ttf') format('truetype'), + url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/icomoon/fonts/icomoon.woff') format('woff'), + url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/icomoon/fonts/icomoon.svg') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} +[class^="icon-"], [class*=" icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + /* font-family: 'icomoon' !important; */ + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.icon-Angle-Grinder .path1:before { + content: "\e900"; + + opacity: 0.3; +} +.icon-Angle-Grinder .path2:before { + content: "\e901"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Angle-Grinder .path3:before { + content: "\e902"; + margin-left: -1em; + +} +.icon-Axe .path1:before { + content: "\e903"; + + opacity: 0.3; +} +.icon-Axe .path2:before { + content: "\e904"; + margin-left: -1em; + +} +.icon-Brush .path1:before { + content: "\e905"; + + opacity: 0.3; +} +.icon-Brush .path2:before { + content: "\e906"; + margin-left: -1em; + +} +.icon-Compass .path1:before { + content: "\e907"; + + opacity: 0.3; +} +.icon-Compass .path2:before { + content: "\e908"; + margin-left: -1em; + +} +.icon-Hummer .path1:before { + content: "\e909"; + + opacity: 0.3; +} +.icon-Hummer .path2:before { + content: "\e90a"; + margin-left: -1em; + +} +.icon-Hummer .path3:before { + content: "\e90b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Hummer1 .path1:before { + content: "\e90c"; + + opacity: 0.3; +} +.icon-Hummer1 .path2:before { + content: "\e90d"; + margin-left: -1em; + +} +.icon-Pantone .path1:before { + content: "\e90e"; + + opacity: 0.3; +} +.icon-Pantone .path2:before { + content: "\e90f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Pantone .path3:before { + content: "\e910"; + margin-left: -1em; + +} +.icon-Road-Cone .path1:before { + content: "\e911"; + +} +.icon-Road-Cone .path2:before { + content: "\e912"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Roller .path1:before { + content: "\e913"; + +} +.icon-Roller .path2:before { + content: "\e914"; + margin-left: -1em; + +} +.icon-Roller .path3:before { + content: "\e915"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Roulette .path1:before { + content: "\e916"; + +} +.icon-Roulette .path2:before { + content: "\e917"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Screwdriver .path1:before { + content: "\e918"; + + opacity: 0.3; +} +.icon-Screwdriver .path2:before { + content: "\e919"; + margin-left: -1em; + +} +.icon-Shovel1 .path1:before { + content: "\e91a"; + + opacity: 0.3; +} +.icon-Shovel1 .path2:before { + content: "\e91b"; + margin-left: -1em; + +} +.icon-Spatula .path1:before { + content: "\e91c"; + + opacity: 0.3; +} +.icon-Spatula .path2:before { + content: "\e91d"; + margin-left: -1em; + +} +.icon-Swiss-knife .path1:before { + content: "\e91e"; + + opacity: 0.3; +} +.icon-Swiss-knife .path2:before { + content: "\e91f"; + margin-left: -1em; + +} +.icon-Tools .path1:before { + content: "\e920"; + +} +.icon-Tools .path2:before { + content: "\e921"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Align-auto .path1:before { + content: "\e922"; + + opacity: 0.3; +} +.icon-Align-auto .path2:before { + content: "\e923"; + margin-left: -1em; + +} +.icon-Align-center .path1:before { + content: "\e924"; + + opacity: 0.3; +} +.icon-Align-center .path2:before { + content: "\e925"; + margin-left: -1em; + +} +.icon-Align-justify .path1:before { + content: "\e926"; + + opacity: 0.3; +} +.icon-Align-justify .path2:before { + content: "\e927"; + margin-left: -1em; + +} +.icon-Align-left .path1:before { + content: "\e928"; + + opacity: 0.3; +} +.icon-Align-left .path2:before { + content: "\e929"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Align-left .path3:before { + content: "\e92a"; + margin-left: -1em; + +} +.icon-Align-right .path1:before { + content: "\e92b"; + + opacity: 0.3; +} +.icon-Align-right .path2:before { + content: "\e92c"; + margin-left: -1em; + +} +.icon-Article .path1:before { + content: "\e92d"; + +} +.icon-Article .path2:before { + content: "\e92e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bold:before { + content: "\e92f"; +} +.icon-Bullet-list .path1:before { + content: "\e930"; + +} +.icon-Bullet-list .path2:before { + content: "\e931"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Code:before { + content: "\e932"; +} +.icon-Edit-text .path1:before { + content: "\e933"; + + opacity: 0.3; +} +.icon-Edit-text .path2:before { + content: "\e934"; + margin-left: -1em; + +} +.icon-Filter:before { + content: "\e935"; +} +.icon-Font .path1:before { + content: "\e936"; + +} +.icon-Font .path2:before { + content: "\e937"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-H1 .path1:before { + content: "\e938"; + +} +.icon-H1 .path2:before { + content: "\e939"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-H2 .path1:before { + content: "\e93a"; + +} +.icon-H2 .path2:before { + content: "\e93b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Itallic:before { + content: "\e93c"; +} +.icon-Menu .path1:before { + content: "\e93d"; + +} +.icon-Menu .path2:before { + content: "\e93e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Paragraph:before { + content: "\e93f"; +} +.icon-Quote .path1:before { + content: "\e940"; + +} +.icon-Quote .path2:before { + content: "\e941"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Quote1 .path1:before { + content: "\e942"; + +} +.icon-Quote1 .path2:before { + content: "\e943"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Redo:before { + content: "\e944"; +} +.icon-Strikethrough .path1:before { + content: "\e945"; + + opacity: 0.3; +} +.icon-Strikethrough .path2:before { + content: "\e946"; + margin-left: -1em; + +} +.icon-Text:before { + content: "\e947"; +} +.icon-Text-height .path1:before { + content: "\e948"; + + opacity: 0.3; +} +.icon-Text-height .path2:before { + content: "\e949"; + margin-left: -1em; + +} +.icon-Text-width .path1:before { + content: "\e94a"; + + opacity: 0.3; +} +.icon-Text-width .path2:before { + content: "\e94b"; + margin-left: -1em; + +} +.icon-Underline .path1:before { + content: "\e94c"; + +} +.icon-Underline .path2:before { + content: "\e94d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Undo:before { + content: "\e94e"; +} +.icon-ATM .path1:before { + content: "\e94f"; + + opacity: 0.3; +} +.icon-ATM .path2:before { + content: "\e950"; + margin-left: -1em; + +} +.icon-Bag .path1:before { + content: "\e951"; + + opacity: 0.3; +} +.icon-Bag .path2:before { + content: "\e952"; + margin-left: -1em; + +} +.icon-Bag1 .path1:before { + content: "\e953"; + + opacity: 0.3; +} +.icon-Bag1 .path2:before { + content: "\e954"; + margin-left: -1em; + +} +.icon-Barcode .path1:before { + content: "\e955"; + +} +.icon-Barcode .path2:before { + content: "\e956"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Barcode-read .path1:before { + content: "\e957"; + + opacity: 0.3; +} +.icon-Barcode-read .path2:before { + content: "\e958"; + margin-left: -1em; + +} +.icon-Barcode-scan .path1:before { + content: "\e959"; + +} +.icon-Barcode-scan .path2:before { + content: "\e95a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Barcode-scan .path3:before { + content: "\e95b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bitcoin .path1:before { + content: "\e95c"; + + opacity: 0.3; +} +.icon-Bitcoin .path2:before { + content: "\e95d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bitcoin .path3:before { + content: "\e95e"; + margin-left: -1em; + +} +.icon-Box1 .path1:before { + content: "\e95f"; + + opacity: 0.3; +} +.icon-Box1 .path2:before { + content: "\e960"; + margin-left: -1em; + +} +.icon-Box2 .path1:before { + content: "\e961"; + +} +.icon-Box2 .path2:before { + content: "\e962"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Box3 .path1:before { + content: "\e963"; + + opacity: 0.3; +} +.icon-Box3 .path2:before { + content: "\e964"; + margin-left: -1em; + +} +.icon-Calculator .path1:before { + content: "\e965"; + + opacity: 0.3; +} +.icon-Calculator .path2:before { + content: "\e966"; + margin-left: -1em; + +} +.icon-Cart1 .path1:before { + content: "\e967"; + + opacity: 0.3; +} +.icon-Cart1 .path2:before { + content: "\e968"; + margin-left: -1em; + +} +.icon-Cart2 .path1:before { + content: "\e969"; + + opacity: 0.3; +} +.icon-Cart2 .path2:before { + content: "\e96a"; + margin-left: -1em; + +} +.icon-Cart .path1:before { + content: "\e96b"; + + opacity: 0.3; +} +.icon-Cart .path2:before { + content: "\e96c"; + margin-left: -1em; + +} +.icon-Chart-bar .path1:before { + content: "\e96d"; + + opacity: 0.3; +} +.icon-Chart-bar .path2:before { + content: "\e96e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chart-bar .path3:before { + content: "\e96f"; + margin-left: -1em; + +} +.icon-Chart-bar .path4:before { + content: "\e970"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chart-bar1 .path1:before { + content: "\e971"; + + opacity: 0.3; +} +.icon-Chart-bar1 .path2:before { + content: "\e972"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chart-bar1 .path3:before { + content: "\e973"; + margin-left: -1em; + +} +.icon-Chart-bar1 .path4:before { + content: "\e974"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chart-bar2 .path1:before { + content: "\e975"; + + opacity: 0.3; +} +.icon-Chart-bar2 .path2:before { + content: "\e976"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chart-bar2 .path3:before { + content: "\e977"; + margin-left: -1em; + +} +.icon-Chart-bar2 .path4:before { + content: "\e978"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chart-line .path1:before { + content: "\e979"; + +} +.icon-Chart-line .path2:before { + content: "\e97a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chart-line1 .path1:before { + content: "\e97b"; + +} +.icon-Chart-line1 .path2:before { + content: "\e97c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chart-pie .path1:before { + content: "\e97d"; + + opacity: 0.3; +} +.icon-Chart-pie .path2:before { + content: "\e97e"; + margin-left: -1em; + +} +.icon-Credit-card .path1:before { + content: "\e97f"; + + opacity: 0.3; +} +.icon-Credit-card .path2:before { + content: "\e980"; + margin-left: -1em; + +} +.icon-Credit-card .path3:before { + content: "\e981"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Dollar .path1:before { + content: "\e982"; + + opacity: 0.3; +} +.icon-Dollar .path2:before { + content: "\e983"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Dollar .path3:before { + content: "\e984"; + margin-left: -1em; + +} +.icon-Euro .path1:before { + content: "\e985"; + + opacity: 0.3; +} +.icon-Euro .path2:before { + content: "\e986"; + margin-left: -1em; + +} +.icon-Gift .path1:before { + content: "\e987"; + +} +.icon-Gift .path2:before { + content: "\e988"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Loader .path1:before { + content: "\e989"; + + opacity: 0.3; +} +.icon-Loader .path2:before { + content: "\e98a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Loader .path3:before { + content: "\e98b"; + margin-left: -1em; + +} +.icon-MC .path1:before { + content: "\e98c"; + + opacity: 0.3; +} +.icon-MC .path2:before { + content: "\e98d"; + margin-left: -1em; + +} +.icon-Money .path1:before { + content: "\e98e"; + + opacity: 0.3; +} +.icon-Money .path2:before { + content: "\e98f"; + margin-left: -1em; + +} +.icon-Pound .path1:before { + content: "\e990"; + +} +.icon-Pound .path2:before { + content: "\e991"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Price:before { + content: "\e992"; +} +.icon-145:before { + content: "\e992"; +} +.icon-Price1:before { + content: "\e993"; +} +.icon-245:before { + content: "\e993"; +} +.icon-Rouble .path1:before { + content: "\e994"; + + opacity: 0.3; +} +.icon-Rouble .path2:before { + content: "\e995"; + margin-left: -1em; + +} +.icon-Safe .path1:before { + content: "\e996"; + + opacity: 0.3; +} +.icon-Safe .path2:before { + content: "\e997"; + margin-left: -1em; + +} +.icon-Sale .path1:before { + content: "\e998"; + +} +.icon-Sale .path2:before { + content: "\e999"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Sale1 .path1:before { + content: "\e99a"; + + opacity: 0.3; +} +.icon-Sale1 .path2:before { + content: "\e99b"; + margin-left: -1em; + +} +.icon-Sale1 .path3:before { + content: "\e99c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Sale1 .path4:before { + content: "\e99d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Settings .path1:before { + content: "\e99e"; + + opacity: 0.3; +} +.icon-Settings .path2:before { + content: "\e99f"; + margin-left: -1em; + +} +.icon-Sort .path1:before { + content: "\e9a0"; + +} +.icon-Sort .path2:before { + content: "\e9a1"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Sort1:before { + content: "\e9a2"; +} +.icon-25:before { + content: "\e9a2"; +} +.icon-Sort2:before { + content: "\e9a3"; +} +.icon-32:before { + content: "\e9a3"; +} +.icon-Ticket:before { + content: "\e9a4"; +} +.icon-Wallet .path1:before { + content: "\e9a5"; + + opacity: 0.3; +} +.icon-Wallet .path2:before { + content: "\e9a6"; + margin-left: -1em; + +} +.icon-Wallet1 .path1:before { + content: "\e9a7"; + + opacity: 0.3; +} +.icon-Wallet1 .path2:before { + content: "\e9a8"; + margin-left: -1em; + +} +.icon-Wallet1 .path3:before { + content: "\e9a9"; + margin-left: -1em; + +} +.icon-Wallet2 .path1:before { + content: "\e9aa"; + + opacity: 0.3; +} +.icon-Wallet2 .path2:before { + content: "\e9ab"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Wallet2 .path3:before { + content: "\e9ac"; + margin-left: -1em; + +} +.icon-Angle-up:before { + content: "\e9ad"; +} +.icon-Angle-double-down .path1:before { + content: "\e9ae"; + +} +.icon-Angle-double-down .path2:before { + content: "\e9af"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Angle-double-left .path1:before { + content: "\e9b0"; + +} +.icon-Angle-double-left .path2:before { + content: "\e9b1"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Angle-double-right .path1:before { + content: "\e9b2"; + +} +.icon-Angle-double-right .path2:before { + content: "\e9b3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Angle-double-up .path1:before { + content: "\e9b4"; + +} +.icon-Angle-double-up .path2:before { + content: "\e9b5"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Angle-down:before { + content: "\e9b6"; +} +.icon-Angle-left:before { + content: "\e9b7"; +} +.icon-Angle-right:before { + content: "\e9b8"; +} +.icon-Arrow-down .path1:before { + content: "\e9b9"; + + opacity: 0.3; +} +.icon-Arrow-down .path2:before { + content: "\e9ba"; + margin-left: -1em; + +} +.icon-Arrow-from-bottom .path1:before { + content: "\e9bb"; + + opacity: 0.3; +} +.icon-Arrow-from-bottom .path2:before { + content: "\e9bc"; + margin-left: -1em; + +} +.icon-Arrow-from-bottom .path3:before { + content: "\e9bd"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Arrow-from-left .path1:before { + content: "\e9be"; + + opacity: 0.3; +} +.icon-Arrow-from-left .path2:before { + content: "\e9bf"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Arrow-from-left .path3:before { + content: "\e9c0"; + margin-left: -1em; + +} +.icon-Arrow-from-right .path1:before { + content: "\e9c1"; + + opacity: 0.3; +} +.icon-Arrow-from-right .path2:before { + content: "\e9c2"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Arrow-from-right .path3:before { + content: "\e9c3"; + margin-left: -1em; + +} +.icon-Arrow-from-top .path1:before { + content: "\e9c4"; + + opacity: 0.3; +} +.icon-Arrow-from-top .path2:before { + content: "\e9c5"; + margin-left: -1em; + +} +.icon-Arrow-from-top .path3:before { + content: "\e9c6"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Arrow-left .path1:before { + content: "\e9c7"; + + opacity: 0.3; +} +.icon-Arrow-left .path2:before { + content: "\e9c8"; + margin-left: -1em; + +} +.icon-Arrow-right .path1:before { + content: "\e9c9"; + + opacity: 0.3; +} +.icon-Arrow-right .path2:before { + content: "\e9ca"; + margin-left: -1em; + +} +.icon-Arrows-h .path1:before { + content: "\e9cb"; + + opacity: 0.3; +} +.icon-Arrows-h .path2:before { + content: "\e9cc"; + margin-left: -1em; + +} +.icon-Arrows-h .path3:before { + content: "\e9cd"; + margin-left: -1em; + +} +.icon-Arrows-v .path1:before { + content: "\e9ce"; + + opacity: 0.3; +} +.icon-Arrows-v .path2:before { + content: "\e9cf"; + margin-left: -1em; + +} +.icon-Arrows-v .path3:before { + content: "\e9d0"; + margin-left: -1em; + +} +.icon-Arrow-to-bottom .path1:before { + content: "\e9d1"; + + opacity: 0.3; +} +.icon-Arrow-to-bottom .path2:before { + content: "\e9d2"; + margin-left: -1em; + +} +.icon-Arrow-to-bottom .path3:before { + content: "\e9d3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Arrow-to-left .path1:before { + content: "\e9d4"; + + opacity: 0.3; +} +.icon-Arrow-to-left .path2:before { + content: "\e9d5"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Arrow-to-left .path3:before { + content: "\e9d6"; + margin-left: -1em; + +} +.icon-Arrow-to-right .path1:before { + content: "\e9d7"; + + opacity: 0.3; +} +.icon-Arrow-to-right .path2:before { + content: "\e9d8"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Arrow-to-right .path3:before { + content: "\e9d9"; + margin-left: -1em; + +} +.icon-Arrow-to-up .path1:before { + content: "\e9da"; + + opacity: 0.3; +} +.icon-Arrow-to-up .path2:before { + content: "\e9db"; + margin-left: -1em; + +} +.icon-Arrow-to-up .path3:before { + content: "\e9dc"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Arrow-up .path1:before { + content: "\e9dd"; + + opacity: 0.3; +} +.icon-Arrow-up .path2:before { + content: "\e9de"; + margin-left: -1em; + +} +.icon-Check:before { + content: "\e9df"; +} +.icon-Close .path1:before { + content: "\e9e0"; + +} +.icon-Close .path2:before { + content: "\e9e1"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Double-check .path1:before { + content: "\e9e2"; + + opacity: 0.3; +} +.icon-Double-check .path2:before { + content: "\e9e3"; + margin-left: -1em; + +} +.icon-Down-2 .path1:before { + content: "\e9e4"; + + opacity: 0.3; +} +.icon-Down-2 .path2:before { + content: "\e9e5"; + margin-left: -1em; + +} +.icon-Down-left .path1:before { + content: "\e9e6"; + + opacity: 0.3; +} +.icon-Down-left .path2:before { + content: "\e9e7"; + margin-left: -1em; + +} +.icon-Down-right .path1:before { + content: "\e9e8"; + + opacity: 0.3; +} +.icon-Down-right .path2:before { + content: "\e9e9"; + margin-left: -1em; + +} +.icon-Exchange .path1:before { + content: "\e9ea"; + + opacity: 0.3; +} +.icon-Exchange .path2:before { + content: "\e9eb"; + margin-left: -1em; + +} +.icon-Exchange .path3:before { + content: "\e9ec"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Exchange .path4:before { + content: "\e9ed"; + margin-left: -1em; + +} +.icon-Left-3 .path1:before { + content: "\e9ee"; + +} +.icon-Left-3 .path2:before { + content: "\e9ef"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Left-2 .path1:before { + content: "\e9f0"; + + opacity: 0.3; +} +.icon-Left-2 .path2:before { + content: "\e9f1"; + margin-left: -1em; + +} +.icon-Minus1:before { + content: "\e9f2"; +} +.icon-Plus1 .path1:before { + content: "\e9f3"; + +} +.icon-Plus1 .path2:before { + content: "\e9f4"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Right-3 .path1:before { + content: "\e9f5"; + +} +.icon-Right-3 .path2:before { + content: "\e9f6"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Right-2 .path1:before { + content: "\e9f7"; + + opacity: 0.3; +} +.icon-Right-2 .path2:before { + content: "\e9f8"; + margin-left: -1em; + +} +.icon-Route .path1:before { + content: "\e9f9"; + + opacity: 0.3; +} +.icon-Route .path2:before { + content: "\e9fa"; + margin-left: -1em; + +} +.icon-Route .path3:before { + content: "\e9fb"; + margin-left: -1em; + +} +.icon-Sign-in .path1:before { + content: "\e9fc"; + + opacity: 0.3; +} +.icon-Sign-in .path2:before { + content: "\e9fd"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Sign-in .path3:before { + content: "\e9fe"; + margin-left: -1em; + +} +.icon-Sign-out .path1:before { + content: "\e9ff"; + + opacity: 0.3; +} +.icon-Sign-out .path2:before { + content: "\ea00"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Sign-out .path3:before { + content: "\ea01"; + margin-left: -1em; + +} +.icon-Up-2 .path1:before { + content: "\ea02"; + + opacity: 0.3; +} +.icon-Up-2 .path2:before { + content: "\ea03"; + margin-left: -1em; + +} +.icon-Up-down .path1:before { + content: "\ea04"; + + opacity: 0.3; +} +.icon-Up-down .path2:before { + content: "\ea05"; + margin-left: -1em; + +} +.icon-Up-down .path3:before { + content: "\ea06"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Up-down .path4:before { + content: "\ea07"; + margin-left: -1em; + +} +.icon-Up-left .path1:before { + content: "\ea08"; + + opacity: 0.3; +} +.icon-Up-left .path2:before { + content: "\ea09"; + margin-left: -1em; + +} +.icon-Up-right .path1:before { + content: "\ea0a"; + + opacity: 0.3; +} +.icon-Up-right .path2:before { + content: "\ea0b"; + margin-left: -1em; + +} +.icon-Waiting:before { + content: "\ea0c"; +} +.icon-Add-music .path1:before { + content: "\ea0d"; + +} +.icon-Add-music .path2:before { + content: "\ea0e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Airplay .path1:before { + content: "\ea0f"; + + opacity: 0.3; +} +.icon-Airplay .path2:before { + content: "\ea10"; + margin-left: -1em; + +} +.icon-Airplay-video .path1:before { + content: "\ea11"; + +} +.icon-Airplay-video .path2:before { + content: "\ea12"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Back .path1:before { + content: "\ea13"; + +} +.icon-Back .path2:before { + content: "\ea14"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Backward .path1:before { + content: "\ea15"; + + opacity: 0.3; +} +.icon-Backward .path2:before { + content: "\ea16"; + margin-left: -1em; + +} +.icon-CD .path1:before { + content: "\ea17"; + +} +.icon-CD .path2:before { + content: "\ea18"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-DVD .path1:before { + content: "\ea19"; + + opacity: 0.3; +} +.icon-DVD .path2:before { + content: "\ea1a"; + margin-left: -1em; + +} +.icon-Eject .path1:before { + content: "\ea1b"; + +} +.icon-Eject .path2:before { + content: "\ea1c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Equalizer .path1:before { + content: "\ea1d"; + + opacity: 0.3; +} +.icon-Equalizer .path2:before { + content: "\ea1e"; + margin-left: -1em; + +} +.icon-Equalizer .path3:before { + content: "\ea1f"; + margin-left: -1em; + +} +.icon-Equalizer .path4:before { + content: "\ea20"; + margin-left: -1em; + +} +.icon-Forward .path1:before { + content: "\ea21"; + + opacity: 0.3; +} +.icon-Forward .path2:before { + content: "\ea22"; + margin-left: -1em; + +} +.icon-Media-library .path1:before { + content: "\ea23"; + + opacity: 0.3; +} +.icon-Media-library .path2:before { + content: "\ea24"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Media-library .path3:before { + content: "\ea25"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Media-library .path4:before { + content: "\ea26"; + margin-left: -1em; + +} +.icon-Media-library1 .path1:before { + content: "\ea27"; + + opacity: 0.3; +} +.icon-Media-library1 .path2:before { + content: "\ea28"; + margin-left: -1em; + +} +.icon-Media-library2 .path1:before { + content: "\ea29"; + + opacity: 0.0900; +} +.icon-Media-library2 .path2:before { + content: "\ea2a"; + margin-left: -1em; + +} +.icon-Movie-Lane .path1:before { + content: "\ea2b"; + + opacity: 0.3; +} +.icon-Movie-Lane .path2:before { + content: "\ea2c"; + margin-left: -1em; + +} +.icon-Movie-lane .path1:before { + content: "\ea2d"; + + opacity: 0.3; +} +.icon-Movie-lane .path2:before { + content: "\ea2e"; + margin-left: -1em; + +} +.icon-Music1:before { + content: "\ea2f"; +} +.icon-Music-cloud .path1:before { + content: "\ea30"; + + opacity: 0.3; +} +.icon-Music-cloud .path2:before { + content: "\ea31"; + margin-left: -1em; + +} +.icon-Music-note:before { + content: "\ea32"; +} +.icon-Mute .path1:before { + content: "\ea33"; + + opacity: 0.3; +} +.icon-Mute .path2:before { + content: "\ea34"; + margin-left: -1em; + +} +.icon-Next .path1:before { + content: "\ea35"; + +} +.icon-Next .path2:before { + content: "\ea36"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Pause:before { + content: "\ea37"; +} +.icon-Play:before { + content: "\ea38"; +} +.icon-Playlist .path1:before { + content: "\ea39"; + +} +.icon-Playlist .path2:before { + content: "\ea3a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Playlist1 .path1:before { + content: "\ea3b"; + + opacity: 0.3; +} +.icon-Playlist1 .path2:before { + content: "\ea3c"; + margin-left: -1em; + +} +.icon-Rec:before { + content: "\ea3d"; +} +.icon-Repeat .path1:before { + content: "\ea3e"; + +} +.icon-Repeat .path2:before { + content: "\ea3f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Repeat-one .path1:before { + content: "\ea40"; + + opacity: 0.3; +} +.icon-Repeat-one .path2:before { + content: "\ea41"; + margin-left: -1em; + +} +.icon-Shuffle .path1:before { + content: "\ea42"; + + opacity: 0.3; +} +.icon-Shuffle .path2:before { + content: "\ea43"; + margin-left: -1em; + +} +.icon-Volume-down .path1:before { + content: "\ea44"; + + opacity: 0.3; +} +.icon-Volume-down .path2:before { + content: "\ea45"; + margin-left: -1em; + +} +.icon-Volume-full .path1:before { + content: "\ea46"; + + opacity: 0.3; +} +.icon-Volume-full .path2:before { + content: "\ea47"; + margin-left: -1em; + +} +.icon-Volume-half .path1:before { + content: "\ea48"; + + opacity: 0.3; +} +.icon-Volume-half .path2:before { + content: "\ea49"; + margin-left: -1em; + +} +.icon-Volume-up .path1:before { + content: "\ea4a"; + + opacity: 0.3; +} +.icon-Volume-up .path2:before { + content: "\ea4b"; + margin-left: -1em; + +} +.icon-Vynil .path1:before { + content: "\ea4c"; + +} +.icon-Vynil .path2:before { + content: "\ea4d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Youtube .path1:before { + content: "\ea4e"; + + opacity: 0.3; +} +.icon-Youtube .path2:before { + content: "\ea4f"; + margin-left: -1em; + +} +.icon-Compass1:before { + content: "\ea50"; +} +.icon-Direction1:before { + content: "\ea51"; +} +.icon-136:before { + content: "\ea51"; +} +.icon-Direction:before { + content: "\ea52"; +} +.icon-228:before { + content: "\ea52"; +} +.icon-Location-arrow:before { + content: "\ea53"; +} +.icon-Marker:before { + content: "\ea54"; +} +.icon-128:before { + content: "\ea54"; +} +.icon-Marker1:before { + content: "\ea55"; +} +.icon-229:before { + content: "\ea55"; +} +.icon-Position1 .path1:before { + content: "\ea56"; + + opacity: 0.3; +} +.icon-Position1 .path2:before { + content: "\ea57"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Position1 .path3:before { + content: "\ea58"; + margin-left: -1em; + +} +.icon-Layout-3d .path1:before { + content: "\ea59"; + +} +.icon-Layout-3d .path2:before { + content: "\ea5a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-4-blocks .path1:before { + content: "\ea5b"; + +} +.icon-Layout-4-blocks .path2:before { + content: "\ea5c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-arrange .path1:before { + content: "\ea5d"; + +} +.icon-Layout-arrange .path2:before { + content: "\ea5e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-grid .path1:before { + content: "\ea5f"; + + opacity: 0.3; +} +.icon-Layout-grid .path2:before { + content: "\ea60"; + margin-left: -1em; + +} +.icon-Layout-horizontal .path1:before { + content: "\ea61"; + + opacity: 0.3; +} +.icon-Layout-horizontal .path2:before { + content: "\ea62"; + margin-left: -1em; + +} +.icon-Layout-left-panel-1 .path1:before { + content: "\ea63"; + +} +.icon-Layout-left-panel-1 .path2:before { + content: "\ea64"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-left-panel-2 .path1:before { + content: "\ea65"; + +} +.icon-Layout-left-panel-2 .path2:before { + content: "\ea66"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-right-panel-1 .path1:before { + content: "\ea67"; + +} +.icon-Layout-right-panel-1 .path2:before { + content: "\ea68"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-right-panel-2 .path1:before { + content: "\ea69"; + +} +.icon-Layout-right-panel-2 .path2:before { + content: "\ea6a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-top-panel-1 .path1:before { + content: "\ea6b"; + +} +.icon-Layout-top-panel-1 .path2:before { + content: "\ea6c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-top-panel-2 .path1:before { + content: "\ea6d"; + +} +.icon-Layout-top-panel-2 .path2:before { + content: "\ea6e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-top-panel-3 .path1:before { + content: "\ea6f"; + +} +.icon-Layout-top-panel-3 .path2:before { + content: "\ea70"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-top-panel-4 .path1:before { + content: "\ea71"; + +} +.icon-Layout-top-panel-4 .path2:before { + content: "\ea72"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-top-panel-5 .path1:before { + content: "\ea73"; + +} +.icon-Layout-top-panel-5 .path2:before { + content: "\ea74"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-top-panel-6 .path1:before { + content: "\ea75"; + +} +.icon-Layout-top-panel-6 .path2:before { + content: "\ea76"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Layout-vertical .path1:before { + content: "\ea77"; + +} +.icon-Layout-vertical .path2:before { + content: "\ea78"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Air-ballon .path1:before { + content: "\ea79"; + +} +.icon-Air-ballon .path2:before { + content: "\ea7a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Alarm-clock .path1:before { + content: "\ea7b"; + +} +.icon-Alarm-clock .path2:before { + content: "\ea7c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Alarm-clock .path3:before { + content: "\ea7d"; + margin-left: -1em; + +} +.icon-Armchair .path1:before { + content: "\ea7e"; + + opacity: 0.3; +} +.icon-Armchair .path2:before { + content: "\ea7f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Armchair .path3:before { + content: "\ea80"; + margin-left: -1em; + +} +.icon-Bag-chair:before { + content: "\ea81"; +} +.icon-Bath .path1:before { + content: "\ea82"; + + opacity: 0.3; +} +.icon-Bath .path2:before { + content: "\ea83"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bath .path3:before { + content: "\ea84"; + margin-left: -1em; + +} +.icon-Bed .path1:before { + content: "\ea85"; + + opacity: 0.3; +} +.icon-Bed .path2:before { + content: "\ea86"; + margin-left: -1em; + +} +.icon-Bed .path3:before { + content: "\ea87"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Book:before { + content: "\ea88"; +} +.icon-Book-open .path1:before { + content: "\ea89"; + +} +.icon-Book-open .path2:before { + content: "\ea8a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Box .path1:before { + content: "\ea8b"; + +} +.icon-Box .path2:before { + content: "\ea8c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Broom .path1:before { + content: "\ea8d"; + + opacity: 0.3; +} +.icon-Broom .path2:before { + content: "\ea8e"; + margin-left: -1em; + +} +.icon-Building .path1:before { + content: "\ea8f"; + +} +.icon-Building .path2:before { + content: "\ea90"; + margin-left: -1em; + color: rgb(255, 255, 255); +} +.icon-Building .path3:before { + content: "\ea91"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bulb .path1:before { + content: "\ea92"; + + opacity: 0.3; +} +.icon-Bulb .path2:before { + content: "\ea93"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bulb .path3:before { + content: "\ea94"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bulb .path4:before { + content: "\ea95"; + margin-left: -1em; + +} +.icon-Bulb1 .path1:before { + content: "\ea96"; + + opacity: 0.3; +} +.icon-Bulb1 .path2:before { + content: "\ea97"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bulb1 .path3:before { + content: "\ea98"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bulb1 .path4:before { + content: "\ea99"; + margin-left: -1em; + +} +.icon-Chair .path1:before { + content: "\ea9a"; + +} +.icon-Chair .path2:before { + content: "\ea9b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chair1 .path1:before { + content: "\ea9c"; + + opacity: 0.3; +} +.icon-Chair1 .path2:before { + content: "\ea9d"; + margin-left: -1em; + +} +.icon-Clock .path1:before { + content: "\ea9e"; + + opacity: 0.3; +} +.icon-Clock .path2:before { + content: "\ea9f"; + margin-left: -1em; + +} +.icon-Commode .path1:before { + content: "\eaa0"; + + opacity: 0.3; +} +.icon-Commode .path2:before { + content: "\eaa1"; + margin-left: -1em; + +} +.icon-Commode1 .path1:before { + content: "\eaa2"; + + opacity: 0.3; +} +.icon-Commode1 .path2:before { + content: "\eaa3"; + margin-left: -1em; + +} +.icon-Couch .path1:before { + content: "\eaa4"; + + opacity: 0.3; +} +.icon-Couch .path2:before { + content: "\eaa5"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Couch .path3:before { + content: "\eaa6"; + margin-left: -1em; + +} +.icon-Cupboard .path1:before { + content: "\eaa7"; + + opacity: 0.3; +} +.icon-Cupboard .path2:before { + content: "\eaa8"; + margin-left: -1em; + +} +.icon-Curtains .path1:before { + content: "\eaa9"; + + opacity: 0.3; +} +.icon-Curtains .path2:before { + content: "\eaaa"; + margin-left: -1em; + +} +.icon-Deer .path1:before { + content: "\eaab"; + + opacity: 0.3; +} +.icon-Deer .path2:before { + content: "\eaac"; + margin-left: -1em; + +} +.icon-Door-open .path1:before { + content: "\eaad"; + + opacity: 0.3; +} +.icon-Door-open .path2:before { + content: "\eaae"; + margin-left: -1em; + +} +.icon-Earth:before { + content: "\eaaf"; +} +.icon-Fireplace .path1:before { + content: "\eab0"; + + opacity: 0.3; +} +.icon-Fireplace .path2:before { + content: "\eab1"; + margin-left: -1em; + +} +.icon-Flashlight .path1:before { + content: "\eab2"; + +} +.icon-Flashlight .path2:before { + content: "\eab3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Flower .path1:before { + content: "\eab4"; + + opacity: 0.3; +} +.icon-Flower .path2:before { + content: "\eab5"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Flower .path3:before { + content: "\eab6"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Flower .path4:before { + content: "\eab7"; + margin-left: -1em; + +} +.icon-Flower1:before { + content: "\eab8"; +} +.icon-239:before { + content: "\eab8"; +} +.icon-Flower2:before { + content: "\eab9"; +} +.icon-38:before { + content: "\eab9"; +} +.icon-Globe .path1:before { + content: "\eaba"; + +} +.icon-Globe .path2:before { + content: "\eabb"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Home:before { + content: "\eabc"; +} +.icon-Home-heart:before { + content: "\eabd"; +} +.icon-Key .path1:before { + content: "\eabe"; + + opacity: 0.3; +} +.icon-Key .path2:before { + content: "\eabf"; + margin-left: -1em; + +} +.icon-Ladder .path1:before { + content: "\eac0"; + + opacity: 0.3; +} +.icon-Ladder .path2:before { + content: "\eac1"; + margin-left: -1em; + +} +.icon-Lamp .path1:before { + content: "\eac2"; + +} +.icon-Lamp .path2:before { + content: "\eac3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Lamp .path3:before { + content: "\eac4"; + margin-left: -1em; + color: rgb(255, 255, 255); +} +.icon-Lamp .path4:before { + content: "\eac5"; + margin-left: -1em; + +} +.icon-Lamp1 .path1:before { + content: "\eac6"; + + opacity: 0.3; +} +.icon-Lamp1 .path2:before { + content: "\eac7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Lamp1 .path3:before { + content: "\eac8"; + margin-left: -1em; + +} +.icon-Library .path1:before { + content: "\eac9"; + +} +.icon-Library .path2:before { + content: "\eaca"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mailbox .path1:before { + content: "\eacb"; + +} +.icon-Mailbox .path2:before { + content: "\eacc"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mirror .path1:before { + content: "\eacd"; + +} +.icon-Mirror .path2:before { + content: "\eace"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Picture .path1:before { + content: "\eacf"; + + opacity: 0.3; +} +.icon-Picture .path2:before { + content: "\ead0"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Picture .path3:before { + content: "\ead1"; + margin-left: -1em; + +} +.icon-Picture .path4:before { + content: "\ead2"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Ruller:before { + content: "\ead3"; +} +.icon-Stairs:before { + content: "\ead4"; +} +.icon-Timer .path1:before { + content: "\ead5"; + + opacity: 0.3; +} +.icon-Timer .path2:before { + content: "\ead6"; + margin-left: -1em; + +} +.icon-Timer .path3:before { + content: "\ead7"; + margin-left: -1em; + +} +.icon-Timer .path4:before { + content: "\ead8"; + margin-left: -1em; + +} +.icon-Toilet .path1:before { + content: "\ead9"; + + opacity: 0.3; +} +.icon-Toilet .path2:before { + content: "\eada"; + margin-left: -1em; + +} +.icon-Toilet .path3:before { + content: "\eadb"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Towel:before { + content: "\eadc"; +} +.icon-Trash1 .path1:before { + content: "\eadd"; + +} +.icon-Trash1 .path2:before { + content: "\eade"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Water-mixer .path1:before { + content: "\eadf"; + + opacity: 0.3; +} +.icon-Water-mixer .path2:before { + content: "\eae0"; + margin-left: -1em; + +} +.icon-Water-mixer .path3:before { + content: "\eae1"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Weight .path1:before { + content: "\eae2"; + +} +.icon-Weight .path2:before { + content: "\eae3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Weight1 .path1:before { + content: "\eae4"; + + opacity: 0.3; +} +.icon-Weight1 .path2:before { + content: "\eae5"; + margin-left: -1em; + +} +.icon-Wood .path1:before { + content: "\eae6"; + + opacity: 0.3; +} +.icon-Wood .path2:before { + content: "\eae7"; + margin-left: -1em; + +} +.icon-Wood1 .path1:before { + content: "\eae8"; + + opacity: 0.3; +} +.icon-Wood1 .path2:before { + content: "\eae9"; + margin-left: -1em; + +} +.icon-Wood-horse:before { + content: "\eaea"; +} +.icon-Attachment .path1:before { + content: "\eaeb"; + + opacity: 0.3; +} +.icon-Attachment .path2:before { + content: "\eaec"; + margin-left: -1em; + +} +.icon-Attachment1 .path1:before { + content: "\eaed"; + + opacity: 0.3; +} +.icon-Attachment1 .path2:before { + content: "\eaee"; + margin-left: -1em; + +} +.icon-Attachment1 .path3:before { + content: "\eaef"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Attachment1 .path4:before { + content: "\eaf0"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Binocular:before { + content: "\eaf1"; +} +.icon-Bookmark:before { + content: "\eaf2"; +} +.icon-Clip:before { + content: "\eaf3"; +} +.icon-Clipboard .path1:before { + content: "\eaf4"; + + opacity: 0.3; +} +.icon-Clipboard .path2:before { + content: "\eaf5"; + margin-left: -1em; + +} +.icon-Clipboard .path3:before { + content: "\eaf6"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Clipboard .path4:before { + content: "\eaf7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cursor:before { + content: "\eaf8"; +} +.icon-Dislike .path1:before { + content: "\eaf9"; + +} +.icon-Dislike .path2:before { + content: "\eafa"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Duplicate .path1:before { + content: "\eafb"; + + opacity: 0.3; +} +.icon-Duplicate .path2:before { + content: "\eafc"; + margin-left: -1em; + +} +.icon-Edit1:before { + content: "\eafd"; +} +.icon-Expand-arrows .path1:before { + content: "\eafe"; + + opacity: 0.3; +} +.icon-Expand-arrows .path2:before { + content: "\eaff"; + margin-left: -1em; + +} +.icon-Fire:before { + content: "\eb00"; +} +.icon-Folder1:before { + content: "\eb01"; +} +.icon-Half-heart .path1:before { + content: "\eb02"; + + opacity: 0.3; +} +.icon-Half-heart .path2:before { + content: "\eb03"; + margin-left: -1em; + +} +.icon-Half-star .path1:before { + content: "\eb04"; + + opacity: 0.3; +} +.icon-Half-star .path2:before { + content: "\eb05"; + margin-left: -1em; + +} +.icon-Heart:before { + content: "\eb06"; +} +.icon-Hidden .path1:before { + content: "\eb07"; + +} +.icon-Hidden .path2:before { + content: "\eb08"; + margin-left: -1em; + +} +.icon-Hidden .path3:before { + content: "\eb09"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Like .path1:before { + content: "\eb0a"; + +} +.icon-Like .path2:before { + content: "\eb0b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Lock:before { + content: "\eb0c"; +} +.icon-Notification .path1:before { + content: "\eb0d"; + +} +.icon-Notification .path2:before { + content: "\eb0e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Notifications .path1:before { + content: "\eb0f"; + +} +.icon-Notifications .path2:before { + content: "\eb10"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Other:before { + content: "\eb11"; +} +.icon-133:before { + content: "\eb11"; +} +.icon-Other1:before { + content: "\eb12"; +} +.icon-234:before { + content: "\eb12"; +} +.icon-Sad .path1:before { + content: "\eb13"; + + opacity: 0.3; +} +.icon-Sad .path2:before { + content: "\eb14"; + margin-left: -1em; + +} +.icon-Save .path1:before { + content: "\eb15"; + +} +.icon-Save .path2:before { + content: "\eb16"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Scale .path1:before { + content: "\eb17"; + +} +.icon-Scale .path2:before { + content: "\eb18"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Scissors .path1:before { + content: "\eb19"; + + opacity: 0.3; +} +.icon-Scissors .path2:before { + content: "\eb1a"; + margin-left: -1em; + +} +.icon-Search .path1:before { + content: "\eb1b"; + + opacity: 0.3; +} +.icon-Search .path2:before { + content: "\eb1c"; + margin-left: -1em; + +} +.icon-Settings2 .path1:before { + content: "\eb1d"; + + opacity: 0.3; +} +.icon-Settings2 .path2:before { + content: "\eb1e"; + margin-left: -1em; + +} +.icon-Settings-1 .path1:before { + content: "\eb1f"; + +} +.icon-Settings-1 .path2:before { + content: "\eb20"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Settings-2:before { + content: "\eb21"; +} +.icon-Shield-check .path1:before { + content: "\eb22"; + + opacity: 0.3; +} +.icon-Shield-check .path2:before { + content: "\eb23"; + margin-left: -1em; + +} +.icon-Shield-disabled .path1:before { + content: "\eb24"; + + opacity: 0.3; +} +.icon-Shield-disabled .path2:before { + content: "\eb25"; + margin-left: -1em; + +} +.icon-Shield-protected .path1:before { + content: "\eb26"; + + opacity: 0.3; +} +.icon-Shield-protected .path2:before { + content: "\eb27"; + margin-left: -1em; + +} +.icon-Size .path1:before { + content: "\eb28"; + +} +.icon-Size .path2:before { + content: "\eb29"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Smile .path1:before { + content: "\eb2a"; + + opacity: 0.3; +} +.icon-Smile .path2:before { + content: "\eb2b"; + margin-left: -1em; + +} +.icon-Star:before { + content: "\eb2c"; +} +.icon-Thunder1:before { + content: "\eb2d"; +} +.icon-Thunder-move .path1:before { + content: "\eb2e"; + +} +.icon-Thunder-move .path2:before { + content: "\eb2f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Trash .path1:before { + content: "\eb30"; + +} +.icon-Trash .path2:before { + content: "\eb31"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Unlock:before { + content: "\eb32"; +} +.icon-Update:before { + content: "\eb33"; +} +.icon-User .path1:before { + content: "\eb34"; + + opacity: 0.3; +} +.icon-User .path2:before { + content: "\eb35"; + margin-left: -1em; + +} +.icon-Visible:before { + content: "\eb36"; +} +.icon-Beer .path1:before { + content: "\eb37"; + + opacity: 0.3; +} +.icon-Beer .path2:before { + content: "\eb38"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Beer .path3:before { + content: "\eb39"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Beer .path4:before { + content: "\eb3a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Beer .path5:before { + content: "\eb3b"; + margin-left: -1em; + +} +.icon-Bottle .path1:before { + content: "\eb3c"; + +} +.icon-Bottle .path2:before { + content: "\eb3d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bottle1 .path1:before { + content: "\eb3e"; + +} +.icon-Bottle1 .path2:before { + content: "\eb3f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bread .path1:before { + content: "\eb40"; + + opacity: 0.3; +} +.icon-Bread .path2:before { + content: "\eb41"; + margin-left: -1em; + +} +.icon-Bucket1 .path1:before { + content: "\eb42"; + + opacity: 0.3; +} +.icon-Bucket1 .path2:before { + content: "\eb43"; + margin-left: -1em; + +} +.icon-Burger .path1:before { + content: "\eb44"; + +} +.icon-Burger .path2:before { + content: "\eb45"; + margin-left: -1em; + +} +.icon-Burger .path3:before { + content: "\eb46"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cake .path1:before { + content: "\eb47"; + +} +.icon-Cake .path2:before { + content: "\eb48"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cake .path3:before { + content: "\eb49"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Carrot .path1:before { + content: "\eb4a"; + + opacity: 0.3; +} +.icon-Carrot .path2:before { + content: "\eb4b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Carrot .path3:before { + content: "\eb4c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Carrot .path4:before { + content: "\eb4d"; + margin-left: -1em; + +} +.icon-Cheese .path1:before { + content: "\eb4e"; + +} +.icon-Cheese .path2:before { + content: "\eb4f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chicken .path1:before { + content: "\eb50"; + +} +.icon-Chicken .path2:before { + content: "\eb51"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Coffee .path1:before { + content: "\eb52"; + +} +.icon-Coffee .path2:before { + content: "\eb53"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Coffee .path3:before { + content: "\eb54"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Coffee .path4:before { + content: "\eb55"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Coffee .path5:before { + content: "\eb56"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Coffee1 .path1:before { + content: "\eb57"; + + opacity: 0.3; +} +.icon-Coffee1 .path2:before { + content: "\eb58"; + margin-left: -1em; + +} +.icon-Coffee1 .path3:before { + content: "\eb59"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cookie:before { + content: "\eb5a"; +} +.icon-Dinner1 .path1:before { + content: "\eb5b"; + + opacity: 0.3; +} +.icon-Dinner1 .path2:before { + content: "\eb5c"; + margin-left: -1em; + +} +.icon-Fish .path1:before { + content: "\eb5d"; + + opacity: 0.3; +} +.icon-Fish .path2:before { + content: "\eb5e"; + margin-left: -1em; + +} +.icon-French-Bread:before { + content: "\eb5f"; +} +.icon-Glass-martini .path1:before { + content: "\eb60"; + + opacity: 0.3; +} +.icon-Glass-martini .path2:before { + content: "\eb61"; + margin-left: -1em; + +} +.icon-Ice-cream1 .path1:before { + content: "\eb62"; + + opacity: 0.3; +} +.icon-Ice-cream1 .path2:before { + content: "\eb63"; + margin-left: -1em; + +} +.icon-Ice-cream .path1:before { + content: "\eb64"; + +} +.icon-Ice-cream .path2:before { + content: "\eb65"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Miso-soup .path1:before { + content: "\eb66"; + +} +.icon-Miso-soup .path2:before { + content: "\eb67"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Orange .path1:before { + content: "\eb68"; + +} +.icon-Orange .path2:before { + content: "\eb69"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Pizza:before { + content: "\eb6a"; +} +.icon-Sushi .path1:before { + content: "\eb6b"; + +} +.icon-Sushi .path2:before { + content: "\eb6c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Two-bottles .path1:before { + content: "\eb6d"; + +} +.icon-Two-bottles .path2:before { + content: "\eb6e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Wine .path1:before { + content: "\eb6f"; + + opacity: 0.3; +} +.icon-Wine .path2:before { + content: "\eb70"; + margin-left: -1em; + +} +.icon-Cloud-download .path1:before { + content: "\eb71"; + + opacity: 0.3; +} +.icon-Cloud-download .path2:before { + content: "\eb72"; + margin-left: -1em; + +} +.icon-Cloud-upload .path1:before { + content: "\eb73"; + + opacity: 0.3; +} +.icon-Cloud-upload .path2:before { + content: "\eb74"; + margin-left: -1em; + +} +.icon-Compilation .path1:before { + content: "\eb75"; + + opacity: 0.3; +} +.icon-Compilation .path2:before { + content: "\eb76"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Compilation .path3:before { + content: "\eb77"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Compilation .path4:before { + content: "\eb78"; + margin-left: -1em; + +} +.icon-Compilation .path5:before { + content: "\eb79"; + margin-left: -1em; + +} +.icon-Compiled-file .path1:before { + content: "\eb7a"; + + opacity: 0.3; +} +.icon-Compiled-file .path2:before { + content: "\eb7b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Compiled-file .path3:before { + content: "\eb7c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Compiled-file .path4:before { + content: "\eb7d"; + margin-left: -1em; + +} +.icon-Compiled-file .path5:before { + content: "\eb7e"; + margin-left: -1em; + +} +.icon-Deleted-file .path1:before { + content: "\eb7f"; + + opacity: 0.3; +} +.icon-Deleted-file .path2:before { + content: "\eb80"; + margin-left: -1em; + +} +.icon-Deleted-folder .path1:before { + content: "\eb81"; + + opacity: 0.3; +} +.icon-Deleted-folder .path2:before { + content: "\eb82"; + margin-left: -1em; + +} +.icon-Download .path1:before { + content: "\eb83"; + + opacity: 0.3; +} +.icon-Download .path2:before { + content: "\eb84"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Download .path3:before { + content: "\eb85"; + margin-left: -1em; + +} +.icon-Downloaded-file .path1:before { + content: "\eb86"; + + opacity: 0.3; +} +.icon-Downloaded-file .path2:before { + content: "\eb87"; + margin-left: -1em; + +} +.icon-Downloads-folder .path1:before { + content: "\eb88"; + + opacity: 0.3; +} +.icon-Downloads-folder .path2:before { + content: "\eb89"; + margin-left: -1em; + +} +.icon-Export .path1:before { + content: "\eb8a"; + + opacity: 0.3; +} +.icon-Export .path2:before { + content: "\eb8b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Export .path3:before { + content: "\eb8c"; + margin-left: -1em; + +} +.icon-File .path1:before { + content: "\eb8d"; + + opacity: 0.3; +} +.icon-File .path2:before { + content: "\eb8e"; + margin-left: -1em; + +} +.icon-File .path3:before { + content: "\eb8f"; + margin-left: -1em; + +} +.icon-File-cloud .path1:before { + content: "\eb90"; + + opacity: 0.3; +} +.icon-File-cloud .path2:before { + content: "\eb91"; + margin-left: -1em; + +} +.icon-File-done .path1:before { + content: "\eb92"; + + opacity: 0.3; +} +.icon-File-done .path2:before { + content: "\eb93"; + margin-left: -1em; + +} +.icon-File-minus .path1:before { + content: "\eb94"; + + opacity: 0.3; +} +.icon-File-minus .path2:before { + content: "\eb95"; + margin-left: -1em; + +} +.icon-File-plus .path1:before { + content: "\eb96"; + + opacity: 0.3; +} +.icon-File-plus .path2:before { + content: "\eb97"; + margin-left: -1em; + +} +.icon-Folder:before { + content: "\eb98"; +} +.icon-Folder-check .path1:before { + content: "\eb99"; + + opacity: 0.3; +} +.icon-Folder-check .path2:before { + content: "\eb9a"; + margin-left: -1em; + +} +.icon-Folder-cloud .path1:before { + content: "\eb9b"; + + opacity: 0.3; +} +.icon-Folder-cloud .path2:before { + content: "\eb9c"; + margin-left: -1em; + +} +.icon-Folder-error .path1:before { + content: "\eb9d"; + +} +.icon-Folder-error .path2:before { + content: "\eb9e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Folder-heart:before { + content: "\eb9f"; +} +.icon-Folder-minus .path1:before { + content: "\eba0"; + + opacity: 0.3; +} +.icon-Folder-minus .path2:before { + content: "\eba1"; + margin-left: -1em; + +} +.icon-Folder-plus .path1:before { + content: "\eba2"; + + opacity: 0.3; +} +.icon-Folder-plus .path2:before { + content: "\eba3"; + margin-left: -1em; + +} +.icon-Folder-solid:before { + content: "\eba4"; +} +.icon-Folder-star:before { + content: "\eba5"; +} +.icon-Folder-thunder:before { + content: "\eba6"; +} +.icon-Group-folders .path1:before { + content: "\eba7"; + + opacity: 0.3; +} +.icon-Group-folders .path2:before { + content: "\eba8"; + margin-left: -1em; + +} +.icon-Import .path1:before { + content: "\eba9"; + + opacity: 0.3; +} +.icon-Import .path2:before { + content: "\ebaa"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Import .path3:before { + content: "\ebab"; + margin-left: -1em; + +} +.icon-Locked-folder .path1:before { + content: "\ebac"; + + opacity: 0.3; +} +.icon-Locked-folder .path2:before { + content: "\ebad"; + margin-left: -1em; + +} +.icon-Media .path1:before { + content: "\ebae"; + + opacity: 0.3; +} +.icon-Media .path2:before { + content: "\ebaf"; + margin-left: -1em; + +} +.icon-Media-folder .path1:before { + content: "\ebb0"; + + opacity: 0.3; +} +.icon-Media-folder .path2:before { + content: "\ebb1"; + margin-left: -1em; + +} +.icon-Music .path1:before { + content: "\ebb2"; + + opacity: 0.3; +} +.icon-Music .path2:before { + content: "\ebb3"; + margin-left: -1em; + +} +.icon-Pictures .path1:before { + content: "\ebb4"; + + opacity: 0.3; +} +.icon-Pictures .path2:before { + content: "\ebb5"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Pictures .path3:before { + content: "\ebb6"; + margin-left: -1em; + +} +.icon-Pictures .path4:before { + content: "\ebb7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Pictures1:before { + content: "\ebb8"; +} +.icon-221:before { + content: "\ebb8"; +} +.icon-Protected-file .path1:before { + content: "\ebb9"; + + opacity: 0.3; +} +.icon-Protected-file .path2:before { + content: "\ebba"; + margin-left: -1em; + +} +.icon-Selected-file .path1:before { + content: "\ebbb"; + + opacity: 0.3; +} +.icon-Selected-file .path2:before { + content: "\ebbc"; + margin-left: -1em; + +} +.icon-Share1 .path1:before { + content: "\ebbd"; + +} +.icon-Share1 .path2:before { + content: "\ebbe"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Share1 .path3:before { + content: "\ebbf"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Share1 .path4:before { + content: "\ebc0"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Upload .path1:before { + content: "\ebc1"; + + opacity: 0.3; +} +.icon-Upload .path2:before { + content: "\ebc2"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Upload .path3:before { + content: "\ebc3"; + margin-left: -1em; + +} +.icon-Uploaded-file .path1:before { + content: "\ebc4"; + + opacity: 0.3; +} +.icon-Uploaded-file .path2:before { + content: "\ebc5"; + margin-left: -1em; + +} +.icon-Upload-folder .path1:before { + content: "\ebc6"; + + opacity: 0.3; +} +.icon-Upload-folder .path2:before { + content: "\ebc7"; + margin-left: -1em; + +} +.icon-User-folder:before { + content: "\ebc8"; +} +.icon-Air-conditioning .path1:before { + content: "\ebc9"; + +} +.icon-Air-conditioning .path2:before { + content: "\ebca"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-air-dryer .path1:before { + content: "\ebcb"; + + opacity: 0.3; +} +.icon-air-dryer .path2:before { + content: "\ebcc"; + margin-left: -1em; + +} +.icon-Blender .path1:before { + content: "\ebcd"; + +} +.icon-Blender .path2:before { + content: "\ebce"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Fan:before { + content: "\ebcf"; +} +.icon-Fridge:before { + content: "\ebd0"; +} +.icon-Gas-stove .path1:before { + content: "\ebd1"; + +} +.icon-Gas-stove .path2:before { + content: "\ebd2"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Highvoltage:before { + content: "\ebd3"; +} +.icon-Iron .path1:before { + content: "\ebd4"; + + opacity: 0.3; +} +.icon-Iron .path2:before { + content: "\ebd5"; + margin-left: -1em; + +} +.icon-Kettle .path1:before { + content: "\ebd6"; + +} +.icon-Kettle .path2:before { + content: "\ebd7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mixer .path1:before { + content: "\ebd8"; + +} +.icon-Mixer .path2:before { + content: "\ebd9"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Outlet .path1:before { + content: "\ebda"; + + opacity: 0.3; +} +.icon-Outlet .path2:before { + content: "\ebdb"; + margin-left: -1em; + +} +.icon-Range-hood .path1:before { + content: "\ebdc"; + +} +.icon-Range-hood .path2:before { + content: "\ebdd"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Shutdown .path1:before { + content: "\ebde"; + +} +.icon-Shutdown .path2:before { + content: "\ebdf"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Socket-eu:before { + content: "\ebe0"; +} +.icon-Socket-us:before { + content: "\ebe1"; +} +.icon-Washer .path1:before { + content: "\ebe2"; + +} +.icon-Washer .path2:before { + content: "\ebe3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Airpods .path1:before { + content: "\ebe4"; + + opacity: 0.3; +} +.icon-Airpods .path2:before { + content: "\ebe5"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Airpods .path3:before { + content: "\ebe6"; + margin-left: -1em; + +} +.icon-Airpods .path4:before { + content: "\ebe7"; + margin-left: -1em; + +} +.icon-Android .path1:before { + content: "\ebe8"; + +} +.icon-Android .path2:before { + content: "\ebe9"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Apple-Watch .path1:before { + content: "\ebea"; + + opacity: 0.3; +} +.icon-Apple-Watch .path2:before { + content: "\ebeb"; + margin-left: -1em; + +} +.icon-Battery-charging .path1:before { + content: "\ebec"; + +} +.icon-Battery-charging .path2:before { + content: "\ebed"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Battery-charging .path3:before { + content: "\ebee"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Battery-empty .path1:before { + content: "\ebef"; + +} +.icon-Battery-empty .path2:before { + content: "\ebf0"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Battery-full .path1:before { + content: "\ebf1"; + +} +.icon-Battery-full .path2:before { + content: "\ebf2"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Battery-half .path1:before { + content: "\ebf3"; + +} +.icon-Battery-half .path2:before { + content: "\ebf4"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bluetooth .path1:before { + content: "\ebf5"; + + opacity: 0.3; +} +.icon-Bluetooth .path2:before { + content: "\ebf6"; + margin-left: -1em; + +} +.icon-Camera .path1:before { + content: "\ebf7"; + +} +.icon-Camera .path2:before { + content: "\ebf8"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Camera .path3:before { + content: "\ebf9"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cardboard-vr .path1:before { + content: "\ebfa"; + + opacity: 0.3; +} +.icon-Cardboard-vr .path2:before { + content: "\ebfb"; + margin-left: -1em; + +} +.icon-Cassete .path1:before { + content: "\ebfc"; + + opacity: 0.3; +} +.icon-Cassete .path2:before { + content: "\ebfd"; + margin-left: -1em; + +} +.icon-Cassete .path3:before { + content: "\ebfe"; + margin-left: -1em; + +} +.icon-CPU .path1:before { + content: "\ebff"; + + opacity: 0.3; +} +.icon-CPU .path2:before { + content: "\ec00"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-CPU .path3:before { + content: "\ec01"; + margin-left: -1em; + +} +.icon-CPU .path4:before { + content: "\ec02"; + margin-left: -1em; + +} +.icon-CPU .path5:before { + content: "\ec03"; + margin-left: -1em; + +} +.icon-CPU .path6:before { + content: "\ec04"; + margin-left: -1em; + +} +.icon-CPU .path7:before { + content: "\ec05"; + margin-left: -1em; + +} +.icon-CPU .path8:before { + content: "\ec06"; + margin-left: -1em; + +} +.icon-CPU1:before { + content: "\ec07"; +} +.icon-222:before { + content: "\ec07"; +} +.icon-Diagnostics .path1:before { + content: "\ec08"; + + opacity: 0.3; +} +.icon-Diagnostics .path2:before { + content: "\ec09"; + margin-left: -1em; + +} +.icon-Diagnostics .path3:before { + content: "\ec0a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Display .path1:before { + content: "\ec0b"; + + opacity: 0.3; +} +.icon-Display .path2:before { + content: "\ec0c"; + margin-left: -1em; + +} +.icon-Display1 .path1:before { + content: "\ec0d"; + + opacity: 0.3; +} +.icon-Display1 .path2:before { + content: "\ec0e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Display1 .path3:before { + content: "\ec0f"; + margin-left: -1em; + +} +.icon-Display2 .path1:before { + content: "\ec10"; + + opacity: 0.3; +} +.icon-Display2 .path2:before { + content: "\ec11"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Display2 .path3:before { + content: "\ec12"; + margin-left: -1em; + +} +.icon-Gameboy .path1:before { + content: "\ec13"; + + opacity: 0.3; +} +.icon-Gameboy .path2:before { + content: "\ec14"; + margin-left: -1em; + +} +.icon-Gamepad .path1:before { + content: "\ec15"; + + opacity: 0.3; +} +.icon-Gamepad .path2:before { + content: "\ec16"; + margin-left: -1em; + +} +.icon-Gamepad1 .path1:before { + content: "\ec17"; + + opacity: 0.3; +} +.icon-Gamepad1 .path2:before { + content: "\ec18"; + margin-left: -1em; + +} +.icon-Generator .path1:before { + content: "\ec19"; + + opacity: 0.3; +} +.icon-Generator .path2:before { + content: "\ec1a"; + margin-left: -1em; + +} +.icon-Generator .path3:before { + content: "\ec1b"; + margin-left: -1em; + +} +.icon-Generator .path4:before { + content: "\ec1c"; + margin-left: -1em; + +} +.icon-Hard-drive .path1:before { + content: "\ec1d"; + +} +.icon-Hard-drive .path2:before { + content: "\ec1e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Headphones .path1:before { + content: "\ec1f"; + + opacity: 0.3; +} +.icon-Headphones .path2:before { + content: "\ec20"; + margin-left: -1em; + +} +.icon-Homepod .path1:before { + content: "\ec21"; + + opacity: 0.3; +} +.icon-Homepod .path2:before { + content: "\ec22"; + margin-left: -1em; + +} +.icon-iMac .path1:before { + content: "\ec23"; + +} +.icon-iMac .path2:before { + content: "\ec24"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-iMac .path3:before { + content: "\ec25"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-iPhone-back:before { + content: "\ec26"; +} +.icon-iPhone-X .path1:before { + content: "\ec27"; + + opacity: 0.3; +} +.icon-iPhone-X .path2:before { + content: "\ec28"; + margin-left: -1em; + +} +.icon-iPhone-x-back:before { + content: "\ec29"; +} +.icon-Keyboard .path1:before { + content: "\ec2a"; + + opacity: 0.3; +} +.icon-Keyboard .path2:before { + content: "\ec2b"; + margin-left: -1em; + +} +.icon-Laptop .path1:before { + content: "\ec2c"; + +} +.icon-Laptop .path2:before { + content: "\ec2d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Laptop-macbook .path1:before { + content: "\ec2e"; + +} +.icon-Laptop-macbook .path2:before { + content: "\ec2f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-LTE .path1:before { + content: "\ec30"; + + opacity: 0.3; +} +.icon-LTE .path2:before { + content: "\ec31"; + margin-left: -1em; + +} +.icon-LTE1 .path1:before { + content: "\ec32"; + + opacity: 0.3; +} +.icon-LTE1 .path2:before { + content: "\ec33"; + margin-left: -1em; + +} +.icon-Mic .path1:before { + content: "\ec34"; + +} +.icon-Mic .path2:before { + content: "\ec35"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Midi .path1:before { + content: "\ec36"; + + opacity: 0.3; +} +.icon-Midi .path2:before { + content: "\ec37"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Midi .path3:before { + content: "\ec38"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Midi .path4:before { + content: "\ec39"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Midi .path5:before { + content: "\ec3a"; + margin-left: -1em; + +} +.icon-Midi .path6:before { + content: "\ec3b"; + margin-left: -1em; + +} +.icon-Midi .path7:before { + content: "\ec3c"; + margin-left: -1em; + +} +.icon-Mouse .path1:before { + content: "\ec3d"; + + opacity: 0.3; +} +.icon-Mouse .path2:before { + content: "\ec3e"; + margin-left: -1em; + +} +.icon-Mouse .path3:before { + content: "\ec3f"; + margin-left: -1em; + +} +.icon-Phone .path1:before { + content: "\ec40"; + +} +.icon-Phone .path2:before { + content: "\ec41"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Phone .path3:before { + content: "\ec42"; + margin-left: -1em; + +} +.icon-Printer .path1:before { + content: "\ec43"; + +} +.icon-Printer .path2:before { + content: "\ec44"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Radio .path1:before { + content: "\ec45"; + + opacity: 0.3; +} +.icon-Radio .path2:before { + content: "\ec46"; + margin-left: -1em; + +} +.icon-Radio .path3:before { + content: "\ec47"; + margin-left: -1em; + +} +.icon-Radio .path4:before { + content: "\ec48"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Radio .path5:before { + content: "\ec49"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Router .path1:before { + content: "\ec4a"; + +} +.icon-Router .path2:before { + content: "\ec4b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Router1 .path1:before { + content: "\ec4c"; + +} +.icon-Router1 .path2:before { + content: "\ec4d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-SD-card:before { + content: "\ec4e"; +} +.icon-Server .path1:before { + content: "\ec4f"; + + opacity: 0.3; +} +.icon-Server .path2:before { + content: "\ec50"; + margin-left: -1em; + +} +.icon-Server .path3:before { + content: "\ec51"; + margin-left: -1em; + +} +.icon-Speaker .path1:before { + content: "\ec52"; + +} +.icon-Speaker .path2:before { + content: "\ec53"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Tablet .path1:before { + content: "\ec54"; + +} +.icon-Tablet .path2:before { + content: "\ec55"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-TV .path1:before { + content: "\ec56"; + +} +.icon-TV .path2:before { + content: "\ec57"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-TV .path3:before { + content: "\ec58"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-TV1 .path1:before { + content: "\ec59"; + +} +.icon-TV1 .path2:before { + content: "\ec5a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-USB .path1:before { + content: "\ec5b"; + +} +.icon-USB .path2:before { + content: "\ec5c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-USB .path3:before { + content: "\ec5d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Usb-storage .path1:before { + content: "\ec5e"; + +} +.icon-Usb-storage .path2:before { + content: "\ec5f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Video-camera .path1:before { + content: "\ec60"; + +} +.icon-Video-camera .path2:before { + content: "\ec61"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Watch .path1:before { + content: "\ec62"; + +} +.icon-Watch .path2:before { + content: "\ec63"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Watch .path3:before { + content: "\ec64"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Watch .path4:before { + content: "\ec65"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Watch1 .path1:before { + content: "\ec66"; + + opacity: 0.3; +} +.icon-Watch1 .path2:before { + content: "\ec67"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Watch1 .path3:before { + content: "\ec68"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Watch1 .path4:before { + content: "\ec69"; + margin-left: -1em; + +} +.icon-Wi-fi .path1:before { + content: "\ec6a"; + + opacity: 0.3; +} +.icon-Wi-fi .path2:before { + content: "\ec6b"; + margin-left: -1em; + +} +.icon-Adjust:before { + content: "\ec6c"; +} +.icon-Anchor-center .path1:before { + content: "\ec6d"; + +} +.icon-Anchor-center .path2:before { + content: "\ec6e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Anchor-center-down .path1:before { + content: "\ec6f"; + + opacity: 0.3; +} +.icon-Anchor-center-down .path2:before { + content: "\ec70"; + margin-left: -1em; + +} +.icon-Anchor-center-up .path1:before { + content: "\ec71"; + + opacity: 0.3; +} +.icon-Anchor-center-up .path2:before { + content: "\ec72"; + margin-left: -1em; + +} +.icon-Anchor-left .path1:before { + content: "\ec73"; + + opacity: 0.3; +} +.icon-Anchor-left .path2:before { + content: "\ec74"; + margin-left: -1em; + +} +.icon-Anchor-left-down .path1:before { + content: "\ec75"; + + opacity: 0.3; +} +.icon-Anchor-left-down .path2:before { + content: "\ec76"; + margin-left: -1em; + +} +.icon-Anchor-left-up .path1:before { + content: "\ec77"; + + opacity: 0.3; +} +.icon-Anchor-left-up .path2:before { + content: "\ec78"; + margin-left: -1em; + +} +.icon-Anchor-right .path1:before { + content: "\ec79"; + + opacity: 0.3; +} +.icon-Anchor-right .path2:before { + content: "\ec7a"; + margin-left: -1em; + +} +.icon-Anchor-right-down .path1:before { + content: "\ec7b"; + + opacity: 0.3; +} +.icon-Anchor-right-down .path2:before { + content: "\ec7c"; + margin-left: -1em; + +} +.icon-Anchor-right-up .path1:before { + content: "\ec7d"; + + opacity: 0.3; +} +.icon-Anchor-right-up .path2:before { + content: "\ec7e"; + margin-left: -1em; + +} +.icon-Arrows .path1:before { + content: "\ec7f"; + + opacity: 0.3; +} +.icon-Arrows .path2:before { + content: "\ec80"; + margin-left: -1em; + +} +.icon-Bezier-curve .path1:before { + content: "\ec81"; + + opacity: 0.3; +} +.icon-Bezier-curve .path2:before { + content: "\ec82"; + margin-left: -1em; + +} +.icon-Border:before { + content: "\ec83"; +} +.icon-Brush1 .path1:before { + content: "\ec84"; + +} +.icon-Brush1 .path2:before { + content: "\ec85"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bucket .path1:before { + content: "\ec86"; + +} +.icon-Bucket .path2:before { + content: "\ec87"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cap-1 .path1:before { + content: "\ec88"; + +} +.icon-Cap-1 .path2:before { + content: "\ec89"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cap-2 .path1:before { + content: "\ec8a"; + + opacity: 0.3; +} +.icon-Cap-2 .path2:before { + content: "\ec8b"; + margin-left: -1em; + +} +.icon-Cap-3 .path1:before { + content: "\ec8c"; + +} +.icon-Cap-3 .path2:before { + content: "\ec8d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Circle:before { + content: "\ec8e"; +} +.icon-Color:before { + content: "\ec8f"; +} +.icon-Color-profile .path1:before { + content: "\ec90"; + + opacity: 0.3; +} +.icon-Color-profile .path2:before { + content: "\ec91"; + margin-left: -1em; + +} +.icon-Component:before { + content: "\ec92"; +} +.icon-Crop .path1:before { + content: "\ec93"; + + opacity: 0.3; +} +.icon-Crop .path2:before { + content: "\ec94"; + margin-left: -1em; + +} +.icon-Difference .path1:before { + content: "\ec95"; + +} +.icon-Difference .path2:before { + content: "\ec96"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Edit .path1:before { + content: "\ec97"; + +} +.icon-Edit .path2:before { + content: "\ec98"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Eraser:before { + content: "\ec99"; +} +.icon-Flatten .path1:before { + content: "\ec9a"; + +} +.icon-Flatten .path2:before { + content: "\ec9b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Flip-horizontal .path1:before { + content: "\ec9c"; + + opacity: 0.3; +} +.icon-Flip-horizontal .path2:before { + content: "\ec9d"; + margin-left: -1em; + +} +.icon-Flip-horizontal .path3:before { + content: "\ec9e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Flip-vertical .path1:before { + content: "\ec9f"; + + opacity: 0.3; +} +.icon-Flip-vertical .path2:before { + content: "\eca0"; + margin-left: -1em; + +} +.icon-Flip-vertical .path3:before { + content: "\eca1"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Horizontal .path1:before { + content: "\eca2"; + +} +.icon-Horizontal .path2:before { + content: "\eca3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Image:before { + content: "\eca4"; +} +.icon-Interselect .path1:before { + content: "\eca5"; + + opacity: 0.3; +} +.icon-Interselect .path2:before { + content: "\eca6"; + margin-left: -1em; + +} +.icon-Join-1 .path1:before { + content: "\eca7"; + +} +.icon-Join-1 .path2:before { + content: "\eca8"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Join-2 .path1:before { + content: "\eca9"; + +} +.icon-Join-2 .path2:before { + content: "\ecaa"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Join-3 .path1:before { + content: "\ecab"; + + opacity: 0.3; +} +.icon-Join-3 .path2:before { + content: "\ecac"; + margin-left: -1em; + +} +.icon-Layers .path1:before { + content: "\ecad"; + +} +.icon-Layers .path2:before { + content: "\ecae"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Line .path1:before { + content: "\ecaf"; + + opacity: 0.3; +} +.icon-Line .path2:before { + content: "\ecb0"; + margin-left: -1em; + +} +.icon-Line .path3:before { + content: "\ecb1"; + margin-left: -1em; + +} +.icon-Magic .path1:before { + content: "\ecb2"; + +} +.icon-Magic .path2:before { + content: "\ecb3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mask .path1:before { + content: "\ecb4"; + + opacity: 0.3; +} +.icon-Mask .path2:before { + content: "\ecb5"; + margin-left: -1em; + +} +.icon-Patch .path1:before { + content: "\ecb6"; + +} +.icon-Patch .path2:before { + content: "\ecb7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Patch .path3:before { + content: "\ecb8"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Penruller .path1:before { + content: "\ecb9"; + + opacity: 0.3; +} +.icon-Penruller .path2:before { + content: "\ecba"; + margin-left: -1em; + +} +.icon-Pencil:before { + content: "\ecbb"; +} +.icon-Pen-tool-vector .path1:before { + content: "\ecbc"; + +} +.icon-Pen-tool-vector .path2:before { + content: "\ecbd"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Picker .path1:before { + content: "\ecbe"; + +} +.icon-Picker .path2:before { + content: "\ecbf"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Pixels .path1:before { + content: "\ecc0"; + +} +.icon-Pixels .path2:before { + content: "\ecc1"; + margin-left: -1em; + +} +.icon-Pixels .path3:before { + content: "\ecc2"; + margin-left: -1em; + +} +.icon-Pixels .path4:before { + content: "\ecc3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Pixels .path5:before { + content: "\ecc4"; + margin-left: -1em; + +} +.icon-Pixels .path6:before { + content: "\ecc5"; + margin-left: -1em; + +} +.icon-Polygon:before { + content: "\ecc6"; +} +.icon-Position:before { + content: "\ecc7"; +} +.icon-Rectangle:before { + content: "\ecc8"; +} +.icon-Saturation:before { + content: "\ecc9"; +} +.icon-Select .path1:before { + content: "\ecca"; + + opacity: 0.3; +} +.icon-Select .path2:before { + content: "\eccb"; + margin-left: -1em; + +} +.icon-Sketch .path1:before { + content: "\eccc"; + + opacity: 0.3; +} +.icon-Sketch .path2:before { + content: "\eccd"; + margin-left: -1em; + +} +.icon-Stamp .path1:before { + content: "\ecce"; + +} +.icon-Stamp .path2:before { + content: "\eccf"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Substract .path1:before { + content: "\ecd0"; + +} +.icon-Substract .path2:before { + content: "\ecd1"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Target .path1:before { + content: "\ecd2"; + + opacity: 0.3; +} +.icon-Target .path2:before { + content: "\ecd3"; + margin-left: -1em; + +} +.icon-Triangle:before { + content: "\ecd4"; +} +.icon-Union:before { + content: "\ecd5"; +} +.icon-Vertical .path1:before { + content: "\ecd6"; + +} +.icon-Vertical .path2:before { + content: "\ecd7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Zoom-minus .path1:before { + content: "\ecd8"; + + opacity: 0.3; +} +.icon-Zoom-minus .path2:before { + content: "\ecd9"; + margin-left: -1em; + +} +.icon-Zoom-minus .path3:before { + content: "\ecda"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Zoom-plus .path1:before { + content: "\ecdb"; + + opacity: 0.3; +} +.icon-Zoom-plus .path2:before { + content: "\ecdc"; + margin-left: -1em; + +} +.icon-Zoom-plus .path3:before { + content: "\ecdd"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Baking-glove .path1:before { + content: "\ecde"; + +} +.icon-Baking-glove .path2:before { + content: "\ecdf"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Bowl .path1:before { + content: "\ece0"; + + opacity: 0.3; +} +.icon-Bowl .path2:before { + content: "\ece1"; + margin-left: -1em; + +} +.icon-Chef .path1:before { + content: "\ece2"; + + opacity: 0.3; +} +.icon-Chef .path2:before { + content: "\ece3"; + margin-left: -1em; + +} +.icon-Cooking-book .path1:before { + content: "\ece4"; + + opacity: 0.0900; +} +.icon-Cooking-book .path2:before { + content: "\ece5"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cooking-pot .path1:before { + content: "\ece6"; + + opacity: 0.3; +} +.icon-Cooking-pot .path2:before { + content: "\ece7"; + margin-left: -1em; + +} +.icon-Cutting-board .path1:before { + content: "\ece8"; + + opacity: 0.3; +} +.icon-Cutting-board .path2:before { + content: "\ece9"; + margin-left: -1em; + +} +.icon-Dinner .path1:before { + content: "\ecea"; + + opacity: 0.3; +} +.icon-Dinner .path2:before { + content: "\eceb"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Dinner .path3:before { + content: "\ecec"; + margin-left: -1em; + +} +.icon-Dinner .path4:before { + content: "\eced"; + margin-left: -1em; + +} +.icon-Dinner .path5:before { + content: "\ecee"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Dish .path1:before { + content: "\ecef"; + +} +.icon-Dish .path2:before { + content: "\ecf0"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Dishes .path1:before { + content: "\ecf1"; + +} +.icon-Dishes .path2:before { + content: "\ecf2"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Fork .path1:before { + content: "\ecf3"; + + opacity: 0.3; +} +.icon-Fork .path2:before { + content: "\ecf4"; + margin-left: -1em; + +} +.icon-Fork-spoon .path1:before { + content: "\ecf5"; + +} +.icon-Fork-spoon .path2:before { + content: "\ecf6"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Fork-spoon .path3:before { + content: "\ecf7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Fork-spoon .path4:before { + content: "\ecf8"; + margin-left: -1em; + +} +.icon-Fork-spoon-knife .path1:before { + content: "\ecf9"; + +} +.icon-Fork-spoon-knife .path2:before { + content: "\ecfa"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Fork-spoon-knife .path3:before { + content: "\ecfb"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Fork-spoon-knife .path4:before { + content: "\ecfc"; + margin-left: -1em; + +} +.icon-Fork-spoon-knife .path5:before { + content: "\ecfd"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Fork-spoon-knife .path6:before { + content: "\ecfe"; + margin-left: -1em; + +} +.icon-Frying-pan .path1:before { + content: "\ecff"; + + opacity: 0.3; +} +.icon-Frying-pan .path2:before { + content: "\ed00"; + margin-left: -1em; + +} +.icon-Grater .path1:before { + content: "\ed01"; + + opacity: 0.3; +} +.icon-Grater .path2:before { + content: "\ed02"; + margin-left: -1em; + +} +.icon-Kitchen-scale .path1:before { + content: "\ed03"; + +} +.icon-Kitchen-scale .path2:before { + content: "\ed04"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Knife .path1:before { + content: "\ed05"; + + opacity: 0.3; +} +.icon-Knife .path2:before { + content: "\ed06"; + margin-left: -1em; + +} +.icon-Knife1 .path1:before { + content: "\ed07"; + + opacity: 0.3; +} +.icon-Knife1 .path2:before { + content: "\ed08"; + margin-left: -1em; + +} +.icon-Knifefork .path1:before { + content: "\ed09"; + +} +.icon-Knifefork .path2:before { + content: "\ed0a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Knifefork .path3:before { + content: "\ed0b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Knifefork .path4:before { + content: "\ed0c"; + margin-left: -1em; + +} +.icon-Knifefork1 .path1:before { + content: "\ed0d"; + +} +.icon-Knifefork1 .path2:before { + content: "\ed0e"; + margin-left: -1em; + +} +.icon-Knifefork1 .path3:before { + content: "\ed0f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Knifefork1 .path4:before { + content: "\ed10"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Ladle .path1:before { + content: "\ed11"; + + opacity: 0.3; +} +.icon-Ladle .path2:before { + content: "\ed12"; + margin-left: -1em; + +} +.icon-Rolling-pin .path1:before { + content: "\ed13"; + +} +.icon-Rolling-pin .path2:before { + content: "\ed14"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Saucepan .path1:before { + content: "\ed15"; + +} +.icon-Saucepan .path2:before { + content: "\ed16"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Shovel .path1:before { + content: "\ed17"; + + opacity: 0.3; +} +.icon-Shovel .path2:before { + content: "\ed18"; + margin-left: -1em; + +} +.icon-Sieve .path1:before { + content: "\ed19"; + + opacity: 0.3; +} +.icon-Sieve .path2:before { + content: "\ed1a"; + margin-left: -1em; + +} +.icon-Spoon .path1:before { + content: "\ed1b"; + + opacity: 0.3; +} +.icon-Spoon .path2:before { + content: "\ed1c"; + margin-left: -1em; + +} +.icon-Spoon .path3:before { + content: "\ed1d"; + margin-left: -1em; + color: rgb(255, 255, 255); +} +.icon-Active-call .path1:before { + content: "\ed1e"; + +} +.icon-Active-call .path2:before { + content: "\ed1f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Address-card:before { + content: "\ed20"; +} +.icon-Add-user .path1:before { + content: "\ed21"; + + opacity: 0.3; +} +.icon-Add-user .path2:before { + content: "\ed22"; + margin-left: -1em; + +} +.icon-Adress-book .path1:before { + content: "\ed23"; + + opacity: 0.3; +} +.icon-Adress-book .path2:before { + content: "\ed24"; + margin-left: -1em; + +} +.icon-Adress-book1 .path1:before { + content: "\ed25"; + + opacity: 0.3; +} +.icon-Adress-book1 .path2:before { + content: "\ed26"; + margin-left: -1em; + +} +.icon-Archive:before { + content: "\ed27"; +} +.icon-Call1:before { + content: "\ed28"; +} +.icon-118:before { + content: "\ed28"; +} +.icon-Call:before { + content: "\ed29"; +} +.icon-Chat .path1:before { + content: "\ed2a"; + + opacity: 0.3; +} +.icon-Chat .path2:before { + content: "\ed2b"; + margin-left: -1em; + +} +.icon-Chat1 .path1:before { + content: "\ed2c"; + + opacity: 0.3; +} +.icon-Chat1 .path2:before { + content: "\ed2d"; + margin-left: -1em; + +} +.icon-Chat2:before { + content: "\ed2e"; +} +.icon-41:before { + content: "\ed2e"; +} +.icon-Chat3:before { + content: "\ed2f"; +} +.icon-51:before { + content: "\ed2f"; +} +.icon-Chat4:before { + content: "\ed30"; +} +.icon-6:before { + content: "\ed30"; +} +.icon-Chat-check .path1:before { + content: "\ed31"; + + opacity: 0.3; +} +.icon-Chat-check .path2:before { + content: "\ed32"; + margin-left: -1em; + +} +.icon-Chat-error .path1:before { + content: "\ed33"; + +} +.icon-Chat-error .path2:before { + content: "\ed34"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Chat-locked .path1:before { + content: "\ed35"; + + opacity: 0.3; +} +.icon-Chat-locked .path2:before { + content: "\ed36"; + margin-left: -1em; + +} +.icon-Chat-smile .path1:before { + content: "\ed37"; + + opacity: 0.3; +} +.icon-Chat-smile .path2:before { + content: "\ed38"; + margin-left: -1em; + +} +.icon-Clipboard-check .path1:before { + content: "\ed39"; + + opacity: 0.3; +} +.icon-Clipboard-check .path2:before { + content: "\ed3a"; + margin-left: -1em; + +} +.icon-Clipboard-check .path3:before { + content: "\ed3b"; + margin-left: -1em; + +} +.icon-Clipboard-list .path1:before { + content: "\ed3c"; + + opacity: 0.3; +} +.icon-Clipboard-list .path2:before { + content: "\ed3d"; + margin-left: -1em; + +} +.icon-Clipboard-list .path3:before { + content: "\ed3e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Clipboard-list .path4:before { + content: "\ed3f"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Clipboard-list .path5:before { + content: "\ed40"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Clipboard-list .path6:before { + content: "\ed41"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Clipboard-list .path7:before { + content: "\ed42"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Clipboard-list .path8:before { + content: "\ed43"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Contact:before { + content: "\ed44"; +} +.icon-110:before { + content: "\ed44"; +} +.icon-Delete-user .path1:before { + content: "\ed45"; + + opacity: 0.3; +} +.icon-Delete-user .path2:before { + content: "\ed46"; + margin-left: -1em; + +} +.icon-Dial-numbers .path1:before { + content: "\ed47"; + + opacity: 0.3; +} +.icon-Dial-numbers .path2:before { + content: "\ed48"; + margin-left: -1em; + +} +.icon-Dial-numbers .path3:before { + content: "\ed49"; + margin-left: -1em; + +} +.icon-Dial-numbers .path4:before { + content: "\ed4a"; + margin-left: -1em; + +} +.icon-Dial-numbers .path5:before { + content: "\ed4b"; + margin-left: -1em; + +} +.icon-Dial-numbers .path6:before { + content: "\ed4c"; + margin-left: -1em; + +} +.icon-Dial-numbers .path7:before { + content: "\ed4d"; + margin-left: -1em; + +} +.icon-Dial-numbers .path8:before { + content: "\ed4e"; + margin-left: -1em; + +} +.icon-Dial-numbers .path9:before { + content: "\ed4f"; + margin-left: -1em; + +} +.icon-Flag .path1:before { + content: "\ed50"; + +} +.icon-Flag .path2:before { + content: "\ed51"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Forward1:before { + content: "\ed52"; +} +.icon-Group .path1:before { + content: "\ed53"; + + opacity: 0.3; +} +.icon-Group .path2:before { + content: "\ed54"; + margin-left: -1em; + +} +.icon-Group-chat .path1:before { + content: "\ed55"; + +} +.icon-Group-chat .path2:before { + content: "\ed56"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Incoming-box .path1:before { + content: "\ed57"; + +} +.icon-Incoming-box .path2:before { + content: "\ed58"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Incoming-box .path3:before { + content: "\ed59"; + margin-left: -1em; + +} +.icon-Incoming-call .path1:before { + content: "\ed5a"; + + opacity: 0.3; +} +.icon-Incoming-call .path2:before { + content: "\ed5b"; + margin-left: -1em; + +} +.icon-Incoming-mail .path1:before { + content: "\ed5c"; + +} +.icon-Incoming-mail .path2:before { + content: "\ed5d"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mail:before { + content: "\ed5e"; +} +.icon-Mail-:before { + content: "\ed5f"; +} +.icon-Mail-attachment .path1:before { + content: "\ed60"; + + opacity: 0.3; +} +.icon-Mail-attachment .path2:before { + content: "\ed61"; + margin-left: -1em; + +} +.icon-Mail-box .path1:before { + content: "\ed62"; + +} +.icon-Mail-box .path2:before { + content: "\ed63"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mail-error .path1:before { + content: "\ed64"; + +} +.icon-Mail-error .path2:before { + content: "\ed65"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mail-heart .path1:before { + content: "\ed66"; + + opacity: 0.3; +} +.icon-Mail-heart .path2:before { + content: "\ed67"; + margin-left: -1em; + +} +.icon-Mail-locked .path1:before { + content: "\ed68"; + +} +.icon-Mail-locked .path2:before { + content: "\ed69"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mail-notification .path1:before { + content: "\ed6a"; + +} +.icon-Mail-notification .path2:before { + content: "\ed6b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Mail-opened .path1:before { + content: "\ed6c"; + + opacity: 0.3; +} +.icon-Mail-opened .path2:before { + content: "\ed6d"; + margin-left: -1em; + +} +.icon-Mail-unocked .path1:before { + content: "\ed6e"; + + opacity: 0.3; +} +.icon-Mail-unocked .path2:before { + content: "\ed6f"; + margin-left: -1em; + +} +.icon-Missed-call .path1:before { + content: "\ed70"; + + opacity: 0.3; +} +.icon-Missed-call .path2:before { + content: "\ed71"; + margin-left: -1em; + +} +.icon-Outgoing-box .path1:before { + content: "\ed72"; + +} +.icon-Outgoing-box .path2:before { + content: "\ed73"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Outgoing-box .path3:before { + content: "\ed74"; + margin-left: -1em; + +} +.icon-Outgoing-call .path1:before { + content: "\ed75"; + + opacity: 0.3; +} +.icon-Outgoing-call .path2:before { + content: "\ed76"; + margin-left: -1em; + +} +.icon-Outgoing-mail .path1:before { + content: "\ed77"; + +} +.icon-Outgoing-mail .path2:before { + content: "\ed78"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Readed-mail .path1:before { + content: "\ed79"; + + opacity: 0.3; +} +.icon-Readed-mail .path2:before { + content: "\ed7a"; + margin-left: -1em; + +} +.icon-Reply:before { + content: "\ed7b"; +} +.icon-Reply-all .path1:before { + content: "\ed7c"; + + opacity: 0.3; +} +.icon-Reply-all .path2:before { + content: "\ed7d"; + margin-left: -1em; + +} +.icon-Right:before { + content: "\ed7e"; +} +.icon-RSS .path1:before { + content: "\ed7f"; + +} +.icon-RSS .path2:before { + content: "\ed80"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-RSS .path3:before { + content: "\ed81"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Safe-chat .path1:before { + content: "\ed82"; + + opacity: 0.3; +} +.icon-Safe-chat .path2:before { + content: "\ed83"; + margin-left: -1em; + +} +.icon-Send:before { + content: "\ed84"; +} +.icon-Sending-mail .path1:before { + content: "\ed85"; + + opacity: 0.3; +} +.icon-Sending-mail .path2:before { + content: "\ed86"; + margin-left: -1em; + +} +.icon-Sending .path1:before { + content: "\ed87"; + +} +.icon-Sending .path2:before { + content: "\ed88"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Share .path1:before { + content: "\ed89"; + + opacity: 0.3; +} +.icon-Share .path2:before { + content: "\ed8a"; + margin-left: -1em; + +} +.icon-Shield-thunder:before { + content: "\ed8b"; +} +.icon-Shield-user:before { + content: "\ed8c"; +} +.icon-Snoozed-mail .path1:before { + content: "\ed8d"; + +} +.icon-Snoozed-mail .path2:before { + content: "\ed8e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Spam:before { + content: "\ed8f"; +} +.icon-Thumbtack .path1:before { + content: "\ed90"; + +} +.icon-Thumbtack .path2:before { + content: "\ed91"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Urgent-mail .path1:before { + content: "\ed92"; + + opacity: 0.3; +} +.icon-Urgent-mail .path2:before { + content: "\ed93"; + margin-left: -1em; + +} +.icon-Write .path1:before { + content: "\ed94"; + +} +.icon-Write .path2:before { + content: "\ed95"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Backspace .path1:before { + content: "\ed96"; + + opacity: 0.3; +} +.icon-Backspace .path2:before { + content: "\ed97"; + margin-left: -1em; + +} +.icon-CMD:before { + content: "\ed98"; +} +.icon-Code1 .path1:before { + content: "\ed99"; + +} +.icon-Code1 .path2:before { + content: "\ed9a"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Commit .path1:before { + content: "\ed9b"; + + opacity: 0.3; +} +.icon-Commit .path2:before { + content: "\ed9c"; + margin-left: -1em; + +} +.icon-Compiling .path1:before { + content: "\ed9d"; + + opacity: 0.3; +} +.icon-Compiling .path2:before { + content: "\ed9e"; + margin-left: -1em; + +} +.icon-Control:before { + content: "\ed9f"; +} +.icon-Done-circle .path1:before { + content: "\eda0"; + + opacity: 0.3; +} +.icon-Done-circle .path2:before { + content: "\eda1"; + margin-left: -1em; + +} +.icon-Error-circle .path1:before { + content: "\eda2"; + + opacity: 0.3; +} +.icon-Error-circle .path2:before { + content: "\eda3"; + margin-left: -1em; + +} +.icon-Git2 .path1:before { + content: "\eda4"; + + opacity: 0.3; +} +.icon-Git2 .path2:before { + content: "\eda5"; + margin-left: -1em; + +} +.icon-Git2 .path3:before { + content: "\eda6"; + margin-left: -1em; + +} +.icon-Git3 .path1:before { + content: "\eda7"; + + opacity: 0.3; +} +.icon-Git3 .path2:before { + content: "\eda8"; + margin-left: -1em; + +} +.icon-Git3 .path3:before { + content: "\eda9"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Git3 .path4:before { + content: "\edaa"; + margin-left: -1em; + +} +.icon-Git3 .path5:before { + content: "\edab"; + margin-left: -1em; + +} +.icon-Git3 .path6:before { + content: "\edac"; + margin-left: -1em; + +} +.icon-Git .path1:before { + content: "\edad"; + + opacity: 0.3; +} +.icon-Git .path2:before { + content: "\edae"; + margin-left: -1em; + +} +.icon-Git .path3:before { + content: "\edaf"; + margin-left: -1em; + +} +.icon-Git .path4:before { + content: "\edb0"; + margin-left: -1em; + +} +.icon-Git1 .path1:before { + content: "\edb1"; + +} +.icon-Git1 .path2:before { + content: "\edb2"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Git1 .path3:before { + content: "\edb3"; + margin-left: -1em; + +} +.icon-Git1 .path4:before { + content: "\edb4"; + margin-left: -1em; + +} +.icon-Github .path1:before { + content: "\edb5"; + +} +.icon-Github .path2:before { + content: "\edb6"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Info-circle .path1:before { + content: "\edb7"; + + opacity: 0.3; +} +.icon-Info-circle .path2:before { + content: "\edb8"; + margin-left: -1em; + +} +.icon-Info-circle .path3:before { + content: "\edb9"; + margin-left: -1em; + +} +.icon-Left-circle .path1:before { + content: "\edba"; + + opacity: 0.3; +} +.icon-Left-circle .path2:before { + content: "\edbb"; + margin-left: -1em; + +} +.icon-Loading:before { + content: "\edbc"; +} +.icon-Lock-circle .path1:before { + content: "\edbd"; + + opacity: 0.3; +} +.icon-Lock-circle .path2:before { + content: "\edbe"; + margin-left: -1em; + +} +.icon-Lock-overturning .path1:before { + content: "\edbf"; + + opacity: 0.3; +} +.icon-Lock-overturning .path2:before { + content: "\edc0"; + margin-left: -1em; + +} +.icon-Minus .path1:before { + content: "\edc1"; + + opacity: 0.3; +} +.icon-Minus .path2:before { + content: "\edc2"; + margin-left: -1em; + +} +.icon-Option .path1:before { + content: "\edc3"; + + opacity: 0.3; +} +.icon-Option .path2:before { + content: "\edc4"; + margin-left: -1em; + +} +.icon-Plus .path1:before { + content: "\edc5"; + + opacity: 0.3; +} +.icon-Plus .path2:before { + content: "\edc6"; + margin-left: -1em; + +} +.icon-Puzzle:before { + content: "\edc7"; +} +.icon-Question-circle .path1:before { + content: "\edc8"; + + opacity: 0.3; +} +.icon-Question-circle .path2:before { + content: "\edc9"; + margin-left: -1em; + +} +.icon-Right-circle .path1:before { + content: "\edca"; + + opacity: 0.3; +} +.icon-Right-circle .path2:before { + content: "\edcb"; + margin-left: -1em; + +} +.icon-Settings1 .path1:before { + content: "\edcc"; + + opacity: 0.3; +} +.icon-Settings1 .path2:before { + content: "\edcd"; + margin-left: -1em; + +} +.icon-Shift:before { + content: "\edce"; +} +.icon-Spy .path1:before { + content: "\edcf"; + +} +.icon-Spy .path2:before { + content: "\edd0"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Stop:before { + content: "\edd1"; +} +.icon-Terminal .path1:before { + content: "\edd2"; + +} +.icon-Terminal .path2:before { + content: "\edd3"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Thunder-circle .path1:before { + content: "\edd4"; + + opacity: 0.3; +} +.icon-Thunder-circle .path2:before { + content: "\edd5"; + margin-left: -1em; + +} +.icon-Time-schedule .path1:before { + content: "\edd6"; + +} +.icon-Time-schedule .path2:before { + content: "\edd7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Warning-1-circle .path1:before { + content: "\edd8"; + + opacity: 0.3; +} +.icon-Warning-1-circle .path2:before { + content: "\edd9"; + margin-left: -1em; + +} +.icon-Warning-1-circle .path3:before { + content: "\edda"; + margin-left: -1em; + +} +.icon-Warning-2 .path1:before { + content: "\eddb"; + + opacity: 0.3; +} +.icon-Warning-2 .path2:before { + content: "\eddc"; + margin-left: -1em; + +} +.icon-Warning-2 .path3:before { + content: "\eddd"; + margin-left: -1em; + +} +.icon-Brassiere:before { + content: "\edde"; +} +.icon-Briefcase .path1:before { + content: "\eddf"; + +} +.icon-Briefcase .path2:before { + content: "\ede0"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cap .path1:before { + content: "\ede1"; + + opacity: 0.3; +} +.icon-Cap .path2:before { + content: "\ede2"; + margin-left: -1em; + +} +.icon-Crown .path1:before { + content: "\ede3"; + + opacity: 0.3; +} +.icon-Crown .path2:before { + content: "\ede4"; + margin-left: -1em; + +} +.icon-Dress .path1:before { + content: "\ede5"; + + opacity: 0.3; +} +.icon-Dress .path2:before { + content: "\ede6"; + margin-left: -1em; + +} +.icon-Hanger:before { + content: "\ede7"; +} +.icon-Hat .path1:before { + content: "\ede8"; + +} +.icon-Hat .path2:before { + content: "\ede9"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Panties:before { + content: "\edea"; +} +.icon-Shirt .path1:before { + content: "\edeb"; + + opacity: 0.3; +} +.icon-Shirt .path2:before { + content: "\edec"; + margin-left: -1em; + +} +.icon-Shoes .path1:before { + content: "\eded"; + +} +.icon-Shoes .path2:before { + content: "\edee"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Shorts:before { + content: "\edef"; +} +.icon-Sneakers .path1:before { + content: "\edf0"; + + opacity: 0.3; +} +.icon-Sneakers .path2:before { + content: "\edf1"; + margin-left: -1em; + +} +.icon-Socks .path1:before { + content: "\edf2"; + + opacity: 0.3; +} +.icon-Socks .path2:before { + content: "\edf3"; + margin-left: -1em; + +} +.icon-Sun-glasses .path1:before { + content: "\edf4"; + + opacity: 0.3; +} +.icon-Sun-glasses .path2:before { + content: "\edf5"; + margin-left: -1em; + +} +.icon-Tie .path1:before { + content: "\edf6"; + +} +.icon-Tie .path2:before { + content: "\edf7"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-T-Shirt:before { + content: "\edf8"; +} +.icon-Celcium .path1:before { + content: "\edf9"; + +} +.icon-Celcium .path2:before { + content: "\edfa"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cloud:before { + content: "\edfb"; +} +.icon-18:before { + content: "\edfb"; +} +.icon-Cloud1 .path1:before { + content: "\edfc"; + + opacity: 0.3; +} +.icon-Cloud1 .path2:before { + content: "\edfd"; + margin-left: -1em; + +} +.icon-Cloud-fog .path1:before { + content: "\edfe"; + +} +.icon-Cloud-fog .path2:before { + content: "\edff"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cloud-sun .path1:before { + content: "\ee00"; + + opacity: 0.3; +} +.icon-Cloud-sun .path2:before { + content: "\ee01"; + margin-left: -1em; + +} +.icon-Cloud-wind .path1:before { + content: "\ee02"; + +} +.icon-Cloud-wind .path2:before { + content: "\ee03"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cloud-wind .path3:before { + content: "\ee04"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Cloudy .path1:before { + content: "\ee05"; + + opacity: 0.3; +} +.icon-Cloudy .path2:before { + content: "\ee06"; + margin-left: -1em; + +} +.icon-Cloudy-night .path1:before { + content: "\ee07"; + + opacity: 0.3; +} +.icon-Cloudy-night .path2:before { + content: "\ee08"; + margin-left: -1em; + +} +.icon-Day-rain .path1:before { + content: "\ee09"; + + opacity: 0.3; +} +.icon-Day-rain .path2:before { + content: "\ee0a"; + margin-left: -1em; + +} +.icon-Fahrenheit .path1:before { + content: "\ee0b"; + +} +.icon-Fahrenheit .path2:before { + content: "\ee0c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Fog:before { + content: "\ee0d"; +} +.icon-Moon:before { + content: "\ee0e"; +} +.icon-Night-fog .path1:before { + content: "\ee0f"; + +} +.icon-Night-fog .path2:before { + content: "\ee10"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Night-rain .path1:before { + content: "\ee11"; + + opacity: 0.3; +} +.icon-Night-rain .path2:before { + content: "\ee12"; + margin-left: -1em; + +} +.icon-Rain .path1:before { + content: "\ee13"; + +} +.icon-Rain .path2:before { + content: "\ee14"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Rain1 .path1:before { + content: "\ee15"; + +} +.icon-Rain1 .path2:before { + content: "\ee16"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Rain2 .path1:before { + content: "\ee17"; + + opacity: 0.3; +} +.icon-Rain2 .path2:before { + content: "\ee18"; + margin-left: -1em; + +} +.icon-Rainbow .path1:before { + content: "\ee19"; + + opacity: 0.3; +} +.icon-Rainbow .path2:before { + content: "\ee1a"; + margin-left: -1em; + +} +.icon-Snow .path1:before { + content: "\ee1b"; + +} +.icon-Snow .path2:before { + content: "\ee1c"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Snow1 .path1:before { + content: "\ee1d"; + +} +.icon-Snow1 .path2:before { + content: "\ee1e"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Snow2 .path1:before { + content: "\ee1f"; + + opacity: 0.3; +} +.icon-Snow2 .path2:before { + content: "\ee20"; + margin-left: -1em; + +} +.icon-Snow3:before { + content: "\ee21"; +} +.icon-Storm .path1:before { + content: "\ee22"; + +} +.icon-Storm .path2:before { + content: "\ee23"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Sun .path1:before { + content: "\ee24"; + +} +.icon-Sun .path2:before { + content: "\ee25"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Sun-fog .path1:before { + content: "\ee26"; + +} +.icon-Sun-fog .path2:before { + content: "\ee27"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Suset .path1:before { + content: "\ee28"; + +} +.icon-Suset .path2:before { + content: "\ee29"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Suset1 .path1:before { + content: "\ee2a"; + +} +.icon-Suset1 .path2:before { + content: "\ee2b"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Temperature-empty:before { + content: "\ee2c"; +} +.icon-Temperature-full:before { + content: "\ee2d"; +} +.icon-Temperature-half:before { + content: "\ee2e"; +} +.icon-Thunder .path1:before { + content: "\ee2f"; + + opacity: 0.3; +} +.icon-Thunder .path2:before { + content: "\ee30"; + margin-left: -1em; + +} +.icon-Thunder-night .path1:before { + content: "\ee31"; + + opacity: 0.3; +} +.icon-Thunder-night .path2:before { + content: "\ee32"; + margin-left: -1em; + +} +.icon-Umbrella .path1:before { + content: "\ee33"; + +} +.icon-Umbrella .path2:before { + content: "\ee34"; + margin-left: -1em; + + opacity: 0.3; +} +.icon-Wind .path1:before { + content: "\ee35"; + +} +.icon-Wind .path2:before { + content: "\ee36"; + margin-left: -1em; + opacity: 0.3; +} diff --git a/src/main/resources/static/css/lightgallery.min.css b/src/main/resources/static/css/lightgallery.min.css new file mode 100644 index 0000000..9f27899 --- /dev/null +++ b/src/main/resources/static/css/lightgallery.min.css @@ -0,0 +1 @@ +.lg-sub-html,.lg-toolbar{background-color:rgba(0,0,0,.45)}@font-face{font-family:lg;src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/fonts/lg.eot?n1z373);src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/fonts/lg.eot?#iefixn1z373) format("embedded-opentype"),url(../font/lg.woff) format("woff"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/fonts/lg.ttf?n1z373) format("truetype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/fonts/lg.svg?n1z373#lg) format("svg");font-weight:400;font-style:normal}.lg-icon{font-family:lg;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-actions .lg-next,.lg-actions .lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1080;border:none;outline:0}.lg-actions .lg-next.disabled,.lg-actions .lg-prev.disabled{pointer-events:none;opacity:.5}.lg-actions .lg-next:hover,.lg-actions .lg-prev:hover{color:#FFF}.lg-actions .lg-next{right:20px}.lg-actions .lg-next:before{content:"\e095"}.lg-actions .lg-prev{left:20px}.lg-actions .lg-prev:after{content:"\e094"}@-webkit-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-moz-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-ms-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-webkit-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-moz-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-ms-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:0;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.lg-toolbar .lg-icon:hover{color:#FFF}.lg-toolbar .lg-close:after{content:"\e070"}.lg-toolbar .lg-download:after{content:"\e0f2"}.lg-sub-html{bottom:0;color:#EEE;font-size:16px;left:0;padding:10px 40px;position:fixed;right:0;text-align:center;z-index:1080}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}#lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;vertical-align:middle}.lg-next,.lg-prev,.lg-toolbar{opacity:1;-webkit-transition:-webkit-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-moz-transition:-moz-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-o-transition:-o-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;transition:transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear}.lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:-moz-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:-o-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);opacity:1}.lg-outer .lg-thumb-outer{background-color:#0D0A0A;bottom:0;position:absolute;width:100%;z-index:1080;max-height:350px;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer.lg-thumb-open .lg-thumb-outer{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-thumb{padding:10px 0;height:100%;margin-bottom:-5px}.lg-outer .lg-thumb-item{cursor:pointer;float:left;overflow:hidden;height:100%;border:2px solid #FFF;border-radius:4px;margin-bottom:5px}@media (min-width:1025px){.lg-outer .lg-thumb-item{-webkit-transition:border-color .25s ease;-o-transition:border-color .25s ease;transition:border-color .25s ease}}.lg-outer .lg-thumb-item.active,.lg-outer .lg-thumb-item:hover{border-color:#a90707}.lg-outer .lg-thumb-item img{width:100%;height:100%;object-fit:cover}.lg-outer.lg-has-thumb .lg-item{padding-bottom:120px}.lg-outer.lg-can-toggle .lg-item{padding-bottom:0}.lg-outer.lg-pull-caption-up .lg-sub-html{-webkit-transition:bottom .25s ease;-o-transition:bottom .25s ease;transition:bottom .25s ease}.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html{bottom:100px}.lg-outer .lg-toogle-thumb{background-color:#0D0A0A;border-radius:2px 2px 0 0;color:#999;cursor:pointer;font-size:24px;height:39px;line-height:27px;padding:5px 0;position:absolute;right:20px;text-align:center;top:-39px;width:50px}.lg-outer .lg-toogle-thumb:hover,.lg-outer.lg-dropdown-active #lg-share{color:#FFF}.lg-outer .lg-toogle-thumb:after{content:"\e1ff"}.lg-outer .lg-video-cont{display:inline-block;vertical-align:middle;max-width:1140px;max-height:100%;width:100%;padding:0 5px}.lg-outer .lg-video{width:100%;height:0;padding-bottom:56.25%;overflow:hidden;position:relative}.lg-outer .lg-video .lg-object{display:inline-block;position:absolute;top:0;left:0;width:100%!important;height:100%!important}.lg-outer .lg-video .lg-video-play{width:84px;height:59px;position:absolute;left:50%;top:50%;margin-left:-42px;margin-top:-30px;z-index:1080;cursor:pointer}.lg-outer .lg-has-iframe .lg-video{-webkit-overflow-scrolling:touch;overflow:auto}.lg-outer .lg-has-vimeo .lg-video-play{background:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/img/vimeo-play.png) no-repeat}.lg-outer .lg-has-vimeo:hover .lg-video-play{background:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/img/vimeo-play.png) 0 -58px no-repeat}.lg-outer .lg-has-html5 .lg-video-play{background:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/img/video-play.png) no-repeat;height:64px;margin-left:-32px;margin-top:-32px;width:64px;opacity:.8}.lg-outer .lg-has-html5:hover .lg-video-play{opacity:1}.lg-outer .lg-has-youtube .lg-video-play{background:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/img/youtube-play.png) no-repeat}.lg-outer .lg-has-youtube:hover .lg-video-play{background:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/vendor/lightgallery/img/youtube-play.png) 0 -60px no-repeat}.lg-outer .lg-video-object{width:100%!important;height:100%!important;position:absolute;top:0;left:0}.lg-outer .lg-has-video .lg-video-object{visibility:hidden}.lg-outer .lg-has-video.lg-video-playing .lg-object,.lg-outer .lg-has-video.lg-video-playing .lg-video-play{display:none}.lg-outer .lg-has-video.lg-video-playing .lg-video-object{visibility:visible}.lg-progress-bar{background-color:#333;height:5px;left:0;position:absolute;top:0;width:100%;z-index:1083;opacity:0;-webkit-transition:opacity 80ms ease 0s;-moz-transition:opacity 80ms ease 0s;-o-transition:opacity 80ms ease 0s;transition:opacity 80ms ease 0s}.lg-progress-bar .lg-progress{background-color:#a90707;height:5px;width:0}.lg-progress-bar.lg-start .lg-progress{width:100%}.lg-show-autoplay .lg-progress-bar{opacity:1}.lg-autoplay-button:after{content:"\e01d"}.lg-show-autoplay .lg-autoplay-button:after{content:"\e01a"}.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition-duration:0s;transition-duration:0s}.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s;transition:transform .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;transition:transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}#lg-zoom-in:after{content:"\e311"}#lg-actual-size{font-size:20px}#lg-actual-size:after{content:"\e033"}#lg-zoom-out{opacity:.5;pointer-events:none}#lg-zoom-out:after{content:"\e312"}.lg-zoomed #lg-zoom-out{opacity:1;pointer-events:auto}.lg-outer .lg-pager-outer{bottom:60px;left:0;position:absolute;right:0;text-align:center;z-index:1080;height:10px}.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont{overflow:visible}.lg-outer .lg-pager-cont{cursor:pointer;display:inline-block;overflow:hidden;position:relative;vertical-align:top;margin:0 5px}.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-pager-cont.lg-pager-active .lg-pager{box-shadow:0 0 0 2px #fff inset}.lg-outer .lg-pager-thumb-cont{background-color:#fff;color:#FFF;bottom:100%;height:83px;left:0;margin-bottom:20px;margin-left:-60px;opacity:0;padding:5px;position:absolute;width:120px;border-radius:3px;-webkit-transition:opacity .15s ease 0s,-webkit-transform .15s ease 0s;-moz-transition:opacity .15s ease 0s,-moz-transform .15s ease 0s;-o-transition:opacity .15s ease 0s,-o-transform .15s ease 0s;transition:opacity .15s ease 0s,transform .15s ease 0s;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.lg-outer .lg-pager-thumb-cont img{width:100%;height:100%}.lg-outer .lg-pager{background-color:rgba(255,255,255,.5);border-radius:50%;box-shadow:0 0 0 8px rgba(255,255,255,.7) inset;display:block;height:12px;-webkit-transition:box-shadow .3s ease 0s;-o-transition:box-shadow .3s ease 0s;transition:box-shadow .3s ease 0s;width:12px}.lg-outer .lg-pager:focus,.lg-outer .lg-pager:hover{box-shadow:0 0 0 8px #fff inset}.lg-outer .lg-caret{border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px dashed;bottom:-10px;display:inline-block;height:0;left:50%;margin-left:-5px;position:absolute;vertical-align:middle;width:0}.lg-fullscreen:after{content:"\e20c"}.lg-fullscreen-on .lg-fullscreen:after{content:"\e20d"}.lg-outer #lg-dropdown-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:fixed;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer.lg-dropdown-active #lg-dropdown-overlay,.lg-outer.lg-dropdown-active .lg-dropdown{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer .lg-dropdown{background-color:#fff;border-radius:2px;font-size:14px;list-style-type:none;margin:0;padding:10px 0;position:absolute;right:0;text-align:left;top:50px;opacity:0;visibility:hidden;-moz-transform:translate3d(0,5px,0);-o-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0);-webkit-transition:-webkit-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-moz-transition:-moz-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-o-transition:-o-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;transition:transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s}.lg-outer .lg-dropdown:after{content:"";display:block;height:0;width:0;position:absolute;border:8px solid transparent;border-bottom-color:#FFF;right:16px;top:-16px}.lg-outer .lg-dropdown>li:last-child{margin-bottom:0}.lg-outer .lg-dropdown>li:hover .lg-icon,.lg-outer .lg-dropdown>li:hover a{color:#333}.lg-outer .lg-dropdown a{color:#333;display:block;white-space:pre;padding:4px 12px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px}.lg-outer .lg-dropdown a:hover{background-color:rgba(0,0,0,.07)}.lg-outer .lg-dropdown .lg-dropdown-text{display:inline-block;line-height:1;margin-top:-3px;vertical-align:middle}.lg-outer .lg-dropdown .lg-icon{color:#333;display:inline-block;float:none;font-size:20px;height:auto;line-height:1;margin-right:8px;padding:0;vertical-align:middle;width:auto}.lg-outer,.lg-outer .lg,.lg-outer .lg-inner{width:100%;height:100%}.lg-outer #lg-share{position:relative}.lg-outer #lg-share:after{content:"\e80d"}.lg-outer #lg-share-facebook .lg-icon{color:#3b5998}.lg-outer #lg-share-facebook .lg-icon:after{content:"\e901"}.lg-outer #lg-share-twitter .lg-icon{color:#00aced}.lg-outer #lg-share-twitter .lg-icon:after{content:"\e904"}.lg-outer #lg-share-googleplus .lg-icon{color:#dd4b39}.lg-outer #lg-share-googleplus .lg-icon:after{content:"\e902"}.lg-outer #lg-share-pinterest .lg-icon{color:#cb2027}.lg-outer #lg-share-pinterest .lg-icon:after{content:"\e903"}.lg-group:after{content:"";display:table;clear:both}.lg-outer{position:fixed;top:0;left:0;z-index:1000000;text-align:left;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item.lg-current,.lg-outer.lg-css3 .lg-item.lg-next-slide,.lg-outer.lg-css3 .lg-item.lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg{position:relative;overflow:hidden;margin-left:auto;margin-right:auto;max-width:100%;max-height:100%}.lg-outer .lg-inner{position:absolute;left:0;top:0;white-space:nowrap}.lg-outer .lg-item{background:url(../image/loading.gif) center center no-repeat;display:none!important}.lg-outer.lg-css .lg-current,.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}.lg-outer .lg-img-wrap{position:absolute;padding:0 5px;left:0;right:0;top:0;bottom:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-image{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto!important;height:auto!important}.lg-outer.lg-show-after-load .lg-item .lg-object,.lg-outer.lg-show-after-load .lg-item .lg-video-play{opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play{opacity:1}.lg-outer .lg-empty-html,.lg-outer.lg-hide-download #lg-download{display:none}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999;background-color:#000;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item,.lg-css3.lg-use-left .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-left .lg-item{opacity:0;position:absolute;left:0}.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{left:-100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide{left:100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current{left:0;opacity:1}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current,.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{-webkit-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s} \ No newline at end of file diff --git a/src/main/resources/static/css/line-awesome.min.css b/src/main/resources/static/css/line-awesome.min.css new file mode 100644 index 0000000..9c25112 --- /dev/null +++ b/src/main/resources/static/css/line-awesome.min.css @@ -0,0 +1 @@ +.la,.lab,.lad,.lal,.lar,.las{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.la-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.la-xs{font-size:.75em}.la-sm{font-size:.875em}.la-1x{font-size:1em}.la-2x{font-size:2em}.la-3x{font-size:3em}.la-4x{font-size:4em}.la-5x{font-size:5em}.la-6x{font-size:6em}.la-7x{font-size:7em}.la-8x{font-size:8em}.la-9x{font-size:9em}.la-10x{font-size:10em}.la-fw{text-align:center;width:1.25em}.la-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.la-ul>li{position:relative}.la-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.la-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.la-pull-left{float:left}.la-pull-right{float:right}.la.la-pull-left,.lab.la-pull-left,.lal.la-pull-left,.lar.la-pull-left,.las.la-pull-left{margin-right:.3em}.la.la-pull-right,.lab.la-pull-right,.lal.la-pull-right,.lar.la-pull-right,.las.la-pull-right{margin-left:.3em}.la-spin{-webkit-animation:la-spin 2s infinite linear;animation:la-spin 2s infinite linear}.la-pulse{-webkit-animation:la-spin 1s infinite steps(8);animation:la-spin 1s infinite steps(8)}@-webkit-keyframes la-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes la-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.la-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.la-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.la-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.la-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.la-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.la-flip-both,.la-flip-horizontal.la-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .la-flip-both,:root .la-flip-horizontal,:root .la-flip-vertical,:root .la-rotate-180,:root .la-rotate-270,:root .la-rotate-90{-webkit-filter:none;filter:none}.la-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.la-stack-1x,.la-stack-2x{left:0;position:absolute;text-align:center;width:100%}.la-stack-1x{line-height:inherit}.la-stack-2x{font-size:2em}.la-inverse{color:#fff}.la-500px:before{content:"\f26e"}.la-accessible-icon:before{content:"\f368"}.la-accusoft:before{content:"\f369"}.la-acquisitions-incorporated:before{content:"\f6af"}.la-ad:before{content:"\f641"}.la-address-book:before{content:"\f2b9"}.la-address-card:before{content:"\f2bb"}.la-adjust:before{content:"\f042"}.la-adn:before{content:"\f170"}.la-adobe:before{content:"\f778"}.la-adversal:before{content:"\f36a"}.la-affiliatetheme:before{content:"\f36b"}.la-air-freshener:before{content:"\f5d0"}.la-airbnb:before{content:"\f834"}.la-algolia:before{content:"\f36c"}.la-align-center:before{content:"\f037"}.la-align-justify:before{content:"\f039"}.la-align-left:before{content:"\f036"}.la-align-right:before{content:"\f038"}.la-alipay:before{content:"\f642"}.la-allergies:before{content:"\f461"}.la-amazon:before{content:"\f270"}.la-amazon-pay:before{content:"\f42c"}.la-ambulance:before{content:"\f0f9"}.la-american-sign-language-interpreting:before{content:"\f2a3"}.la-amilia:before{content:"\f36d"}.la-anchor:before{content:"\f13d"}.la-android:before{content:"\f17b"}.la-angellist:before{content:"\f209"}.la-angle-double-down:before{content:"\f103"}.la-angle-double-left:before{content:"\f100"}.la-angle-double-right:before{content:"\f101"}.la-angle-double-up:before{content:"\f102"}.la-angle-down:before{content:"\f107"}.la-angle-left:before{content:"\f104"}.la-angle-right:before{content:"\f105"}.la-angle-up:before{content:"\f106"}.la-angry:before{content:"\f556"}.la-angrycreative:before{content:"\f36e"}.la-angular:before{content:"\f420"}.la-ankh:before{content:"\f644"}.la-app-store:before{content:"\f36f"}.la-app-store-ios:before{content:"\f370"}.la-apper:before{content:"\f371"}.la-apple:before{content:"\f179"}.la-apple-alt:before{content:"\f5d1"}.la-apple-pay:before{content:"\f415"}.la-archive:before{content:"\f187"}.la-archway:before{content:"\f557"}.la-arrow-alt-circle-down:before{content:"\f358"}.la-arrow-alt-circle-left:before{content:"\f359"}.la-arrow-alt-circle-right:before{content:"\f35a"}.la-arrow-alt-circle-up:before{content:"\f35b"}.la-arrow-circle-down:before{content:"\f0ab"}.la-arrow-circle-left:before{content:"\f0a8"}.la-arrow-circle-right:before{content:"\f0a9"}.la-arrow-circle-up:before{content:"\f0aa"}.la-arrow-down:before{content:"\f063"}.la-arrow-left:before{content:"\f060"}.la-arrow-right:before{content:"\f061"}.la-arrow-up:before{content:"\f062"}.la-arrows-alt:before{content:"\f0b2"}.la-arrows-alt-h:before{content:"\f337"}.la-arrows-alt-v:before{content:"\f338"}.la-artstation:before{content:"\f77a"}.la-assistive-listening-systems:before{content:"\f2a2"}.la-asterisk:before{content:"\f069"}.la-asymmetrik:before{content:"\f372"}.la-at:before{content:"\f1fa"}.la-atlas:before{content:"\f558"}.la-atlassian:before{content:"\f77b"}.la-atom:before{content:"\f5d2"}.la-audible:before{content:"\f373"}.la-audio-description:before{content:"\f29e"}.la-autoprefixer:before{content:"\f41c"}.la-avianex:before{content:"\f374"}.la-aviato:before{content:"\f421"}.la-award:before{content:"\f559"}.la-aws:before{content:"\f375"}.la-baby:before{content:"\f77c"}.la-baby-carriage:before{content:"\f77d"}.la-backspace:before{content:"\f55a"}.la-backward:before{content:"\f04a"}.la-bacon:before{content:"\f7e5"}.la-balance-scale:before{content:"\f24e"}.la-balance-scale-left:before{content:"\f515"}.la-balance-scale-right:before{content:"\f516"}.la-ban:before{content:"\f05e"}.la-band-aid:before{content:"\f462"}.la-bandcamp:before{content:"\f2d5"}.la-barcode:before{content:"\f02a"}.la-bars:before{content:"\f0c9"}.la-baseball-ball:before{content:"\f433"}.la-basketball-ball:before{content:"\f434"}.la-bath:before{content:"\f2cd"}.la-battery-empty:before{content:"\f244"}.la-battery-full:before{content:"\f240"}.la-battery-half:before{content:"\f242"}.la-battery-quarter:before{content:"\f243"}.la-battery-three-quarters:before{content:"\f241"}.la-battle-net:before{content:"\f835"}.la-bed:before{content:"\f236"}.la-beer:before{content:"\f0fc"}.la-behance:before{content:"\f1b4"}.la-behance-square:before{content:"\f1b5"}.la-bell:before{content:"\f0f3"}.la-bell-slash:before{content:"\f1f6"}.la-bezier-curve:before{content:"\f55b"}.la-bible:before{content:"\f647"}.la-bicycle:before{content:"\f206"}.la-biking:before{content:"\f84a"}.la-bimobject:before{content:"\f378"}.la-binoculars:before{content:"\f1e5"}.la-biohazard:before{content:"\f780"}.la-birthday-cake:before{content:"\f1fd"}.la-bitbucket:before{content:"\f171"}.la-bitcoin:before{content:"\f379"}.la-bity:before{content:"\f37a"}.la-black-tie:before{content:"\f27e"}.la-blackberry:before{content:"\f37b"}.la-blender:before{content:"\f517"}.la-blender-phone:before{content:"\f6b6"}.la-blind:before{content:"\f29d"}.la-blog:before{content:"\f781"}.la-blogger:before{content:"\f37c"}.la-blogger-b:before{content:"\f37d"}.la-bluetooth:before{content:"\f293"}.la-bluetooth-b:before{content:"\f294"}.la-bold:before{content:"\f032"}.la-bolt:before{content:"\f0e7"}.la-bomb:before{content:"\f1e2"}.la-bone:before{content:"\f5d7"}.la-bong:before{content:"\f55c"}.la-book:before{content:"\f02d"}.la-book-dead:before{content:"\f6b7"}.la-book-medical:before{content:"\f7e6"}.la-book-open:before{content:"\f518"}.la-book-reader:before{content:"\f5da"}.la-bookmark:before{content:"\f02e"}.la-bootstrap:before{content:"\f836"}.la-border-all:before{content:"\f84c"}.la-border-none:before{content:"\f850"}.la-border-style:before{content:"\f853"}.la-bowling-ball:before{content:"\f436"}.la-box:before{content:"\f466"}.la-box-open:before{content:"\f49e"}.la-boxes:before{content:"\f468"}.la-braille:before{content:"\f2a1"}.la-brain:before{content:"\f5dc"}.la-bread-slice:before{content:"\f7ec"}.la-briefcase:before{content:"\f0b1"}.la-briefcase-medical:before{content:"\f469"}.la-broadcast-tower:before{content:"\f519"}.la-broom:before{content:"\f51a"}.la-brush:before{content:"\f55d"}.la-btc:before{content:"\f15a"}.la-buffer:before{content:"\f837"}.la-bug:before{content:"\f188"}.la-building:before{content:"\f1ad"}.la-bullhorn:before{content:"\f0a1"}.la-bullseye:before{content:"\f140"}.la-burn:before{content:"\f46a"}.la-buromobelexperte:before{content:"\f37f"}.la-bus:before{content:"\f207"}.la-bus-alt:before{content:"\f55e"}.la-business-time:before{content:"\f64a"}.la-buy-n-large:before{content:"\f8a6"}.la-buysellads:before{content:"\f20d"}.la-calculator:before{content:"\f1ec"}.la-calendar:before{content:"\f133"}.la-calendar-alt:before{content:"\f073"}.la-calendar-check:before{content:"\f274"}.la-calendar-day:before{content:"\f783"}.la-calendar-minus:before{content:"\f272"}.la-calendar-plus:before{content:"\f271"}.la-calendar-times:before{content:"\f273"}.la-calendar-week:before{content:"\f784"}.la-camera:before{content:"\f030"}.la-camera-retro:before{content:"\f083"}.la-campground:before{content:"\f6bb"}.la-canadian-maple-leaf:before{content:"\f785"}.la-candy-cane:before{content:"\f786"}.la-cannabis:before{content:"\f55f"}.la-capsules:before{content:"\f46b"}.la-car:before{content:"\f1b9"}.la-car-alt:before{content:"\f5de"}.la-car-battery:before{content:"\f5df"}.la-car-crash:before{content:"\f5e1"}.la-car-side:before{content:"\f5e4"}.la-caret-down:before{content:"\f0d7"}.la-caret-left:before{content:"\f0d9"}.la-caret-right:before{content:"\f0da"}.la-caret-square-down:before{content:"\f150"}.la-caret-square-left:before{content:"\f191"}.la-caret-square-right:before{content:"\f152"}.la-caret-square-up:before{content:"\f151"}.la-caret-up:before{content:"\f0d8"}.la-carrot:before{content:"\f787"}.la-cart-arrow-down:before{content:"\f218"}.la-cart-plus:before{content:"\f217"}.la-cash-register:before{content:"\f788"}.la-cat:before{content:"\f6be"}.la-cc-amazon-pay:before{content:"\f42d"}.la-cc-amex:before{content:"\f1f3"}.la-cc-apple-pay:before{content:"\f416"}.la-cc-diners-club:before{content:"\f24c"}.la-cc-discover:before{content:"\f1f2"}.la-cc-jcb:before{content:"\f24b"}.la-cc-mastercard:before{content:"\f1f1"}.la-cc-paypal:before{content:"\f1f4"}.la-cc-stripe:before{content:"\f1f5"}.la-cc-visa:before{content:"\f1f0"}.la-centercode:before{content:"\f380"}.la-centos:before{content:"\f789"}.la-certificate:before{content:"\f0a3"}.la-chair:before{content:"\f6c0"}.la-chalkboard:before{content:"\f51b"}.la-chalkboard-teacher:before{content:"\f51c"}.la-charging-station:before{content:"\f5e7"}.la-chart-area:before{content:"\f1fe"}.la-chart-bar:before{content:"\f080"}.la-chart-line:before{content:"\f201"}.la-chart-pie:before{content:"\f200"}.la-check:before{content:"\f00c"}.la-check-circle:before{content:"\f058"}.la-check-double:before{content:"\f560"}.la-check-square:before{content:"\f14a"}.la-cheese:before{content:"\f7ef"}.la-chess:before{content:"\f439"}.la-chess-bishop:before{content:"\f43a"}.la-chess-board:before{content:"\f43c"}.la-chess-king:before{content:"\f43f"}.la-chess-knight:before{content:"\f441"}.la-chess-pawn:before{content:"\f443"}.la-chess-queen:before{content:"\f445"}.la-chess-rook:before{content:"\f447"}.la-chevron-circle-down:before{content:"\f13a"}.la-chevron-circle-left:before{content:"\f137"}.la-chevron-circle-right:before{content:"\f138"}.la-chevron-circle-up:before{content:"\f139"}.la-chevron-down:before{content:"\f078"}.la-chevron-left:before{content:"\f053"}.la-chevron-right:before{content:"\f054"}.la-chevron-up:before{content:"\f077"}.la-child:before{content:"\f1ae"}.la-chrome:before{content:"\f268"}.la-chromecast:before{content:"\f838"}.la-church:before{content:"\f51d"}.la-circle:before{content:"\f111"}.la-circle-notch:before{content:"\f1ce"}.la-city:before{content:"\f64f"}.la-clinic-medical:before{content:"\f7f2"}.la-clipboard:before{content:"\f328"}.la-clipboard-check:before{content:"\f46c"}.la-clipboard-list:before{content:"\f46d"}.la-clock:before{content:"\f017"}.la-clone:before{content:"\f24d"}.la-closed-captioning:before{content:"\f20a"}.la-cloud:before{content:"\f0c2"}.la-cloud-download-alt:before{content:"\f381"}.la-cloud-meatball:before{content:"\f73b"}.la-cloud-moon:before{content:"\f6c3"}.la-cloud-moon-rain:before{content:"\f73c"}.la-cloud-rain:before{content:"\f73d"}.la-cloud-showers-heavy:before{content:"\f740"}.la-cloud-sun:before{content:"\f6c4"}.la-cloud-sun-rain:before{content:"\f743"}.la-cloud-upload-alt:before{content:"\f382"}.la-cloudscale:before{content:"\f383"}.la-cloudsmith:before{content:"\f384"}.la-cloudversify:before{content:"\f385"}.la-cocktail:before{content:"\f561"}.la-code:before{content:"\f121"}.la-code-branch:before{content:"\f126"}.la-codepen:before{content:"\f1cb"}.la-codiepie:before{content:"\f284"}.la-coffee:before{content:"\f0f4"}.la-cog:before{content:"\f013"}.la-cogs:before{content:"\f085"}.la-coins:before{content:"\f51e"}.la-columns:before{content:"\f0db"}.la-comment:before{content:"\f075"}.la-comment-alt:before{content:"\f27a"}.la-comment-dollar:before{content:"\f651"}.la-comment-dots:before{content:"\f4ad"}.la-comment-medical:before{content:"\f7f5"}.la-comment-slash:before{content:"\f4b3"}.la-comments:before{content:"\f086"}.la-comments-dollar:before{content:"\f653"}.la-compact-disc:before{content:"\f51f"}.la-compass:before{content:"\f14e"}.la-compress:before{content:"\f066"}.la-compress-arrows-alt:before{content:"\f78c"}.la-concierge-bell:before{content:"\f562"}.la-confluence:before{content:"\f78d"}.la-connectdevelop:before{content:"\f20e"}.la-contao:before{content:"\f26d"}.la-cookie:before{content:"\f563"}.la-cookie-bite:before{content:"\f564"}.la-copy:before{content:"\f0c5"}.la-copyright:before{content:"\f1f9"}.la-cotton-bureau:before{content:"\f89e"}.la-couch:before{content:"\f4b8"}.la-cpanel:before{content:"\f388"}.la-creative-commons:before{content:"\f25e"}.la-creative-commons-by:before{content:"\f4e7"}.la-creative-commons-nc:before{content:"\f4e8"}.la-creative-commons-nc-eu:before{content:"\f4e9"}.la-creative-commons-nc-jp:before{content:"\f4ea"}.la-creative-commons-nd:before{content:"\f4eb"}.la-creative-commons-pd:before{content:"\f4ec"}.la-creative-commons-pd-alt:before{content:"\f4ed"}.la-creative-commons-remix:before{content:"\f4ee"}.la-creative-commons-sa:before{content:"\f4ef"}.la-creative-commons-sampling:before{content:"\f4f0"}.la-creative-commons-sampling-plus:before{content:"\f4f1"}.la-creative-commons-share:before{content:"\f4f2"}.la-creative-commons-zero:before{content:"\f4f3"}.la-credit-card:before{content:"\f09d"}.la-critical-role:before{content:"\f6c9"}.la-crop:before{content:"\f125"}.la-crop-alt:before{content:"\f565"}.la-cross:before{content:"\f654"}.la-crosshairs:before{content:"\f05b"}.la-crow:before{content:"\f520"}.la-crown:before{content:"\f521"}.la-crutch:before{content:"\f7f7"}.la-css3:before{content:"\f13c"}.la-css3-alt:before{content:"\f38b"}.la-cube:before{content:"\f1b2"}.la-cubes:before{content:"\f1b3"}.la-cut:before{content:"\f0c4"}.la-cuttlefish:before{content:"\f38c"}.la-d-and-d:before{content:"\f38d"}.la-d-and-d-beyond:before{content:"\f6ca"}.la-dashcube:before{content:"\f210"}.la-database:before{content:"\f1c0"}.la-deaf:before{content:"\f2a4"}.la-delicious:before{content:"\f1a5"}.la-democrat:before{content:"\f747"}.la-deploydog:before{content:"\f38e"}.la-deskpro:before{content:"\f38f"}.la-desktop:before{content:"\f108"}.la-dev:before{content:"\f6cc"}.la-deviantart:before{content:"\f1bd"}.la-dharmachakra:before{content:"\f655"}.la-dhl:before{content:"\f790"}.la-diagnoses:before{content:"\f470"}.la-diaspora:before{content:"\f791"}.la-dice:before{content:"\f522"}.la-dice-d20:before{content:"\f6cf"}.la-dice-d6:before{content:"\f6d1"}.la-dice-five:before{content:"\f523"}.la-dice-four:before{content:"\f524"}.la-dice-one:before{content:"\f525"}.la-dice-six:before{content:"\f526"}.la-dice-three:before{content:"\f527"}.la-dice-two:before{content:"\f528"}.la-digg:before{content:"\f1a6"}.la-digital-ocean:before{content:"\f391"}.la-digital-tachograph:before{content:"\f566"}.la-directions:before{content:"\f5eb"}.la-discord:before{content:"\f392"}.la-discourse:before{content:"\f393"}.la-divide:before{content:"\f529"}.la-dizzy:before{content:"\f567"}.la-dna:before{content:"\f471"}.la-dochub:before{content:"\f394"}.la-docker:before{content:"\f395"}.la-dog:before{content:"\f6d3"}.la-dollar-sign:before{content:"\f155"}.la-dolly:before{content:"\f472"}.la-dolly-flatbed:before{content:"\f474"}.la-donate:before{content:"\f4b9"}.la-door-closed:before{content:"\f52a"}.la-door-open:before{content:"\f52b"}.la-dot-circle:before{content:"\f192"}.la-dove:before{content:"\f4ba"}.la-download:before{content:"\f019"}.la-draft2digital:before{content:"\f396"}.la-drafting-compass:before{content:"\f568"}.la-dragon:before{content:"\f6d5"}.la-draw-polygon:before{content:"\f5ee"}.la-dribbble:before{content:"\f17d"}.la-dribbble-square:before{content:"\f397"}.la-dropbox:before{content:"\f16b"}.la-drum:before{content:"\f569"}.la-drum-steelpan:before{content:"\f56a"}.la-drumstick-bite:before{content:"\f6d7"}.la-drupal:before{content:"\f1a9"}.la-dumbbell:before{content:"\f44b"}.la-dumpster:before{content:"\f793"}.la-dumpster-fire:before{content:"\f794"}.la-dungeon:before{content:"\f6d9"}.la-dyalog:before{content:"\f399"}.la-earlybirds:before{content:"\f39a"}.la-ebay:before{content:"\f4f4"}.la-edge:before{content:"\f282"}.la-edit:before{content:"\f044"}.la-egg:before{content:"\f7fb"}.la-eject:before{content:"\f052"}.la-elementor:before{content:"\f430"}.la-ellipsis-h:before{content:"\f141"}.la-ellipsis-v:before{content:"\f142"}.la-ello:before{content:"\f5f1"}.la-ember:before{content:"\f423"}.la-empire:before{content:"\f1d1"}.la-envelope:before{content:"\f0e0"}.la-envelope-open:before{content:"\f2b6"}.la-envelope-open-text:before{content:"\f658"}.la-envelope-square:before{content:"\f199"}.la-envira:before{content:"\f299"}.la-equals:before{content:"\f52c"}.la-eraser:before{content:"\f12d"}.la-erlang:before{content:"\f39d"}.la-ethereum:before{content:"\f42e"}.la-ethernet:before{content:"\f796"}.la-etsy:before{content:"\f2d7"}.la-euro-sign:before{content:"\f153"}.la-evernote:before{content:"\f839"}.la-exchange-alt:before{content:"\f362"}.la-exclamation:before{content:"\f12a"}.la-exclamation-circle:before{content:"\f06a"}.la-exclamation-triangle:before{content:"\f071"}.la-expand:before{content:"\f065"}.la-expand-arrows-alt:before{content:"\f31e"}.la-expeditedssl:before{content:"\f23e"}.la-external-link-alt:before{content:"\f35d"}.la-external-link-square-alt:before{content:"\f360"}.la-eye:before{content:"\f06e"}.la-eye-dropper:before{content:"\f1fb"}.la-eye-slash:before{content:"\f070"}.la-facebook:before{content:"\f09a"}.la-facebook-f:before{content:"\f39e"}.la-facebook-messenger:before{content:"\f39f"}.la-facebook-square:before{content:"\f082"}.la-fan:before{content:"\f863"}.la-fantasy-flight-games:before{content:"\f6dc"}.la-fast-backward:before{content:"\f049"}.la-fast-forward:before{content:"\f050"}.la-fax:before{content:"\f1ac"}.la-feather:before{content:"\f52d"}.la-feather-alt:before{content:"\f56b"}.la-fedex:before{content:"\f797"}.la-fedora:before{content:"\f798"}.la-female:before{content:"\f182"}.la-fighter-jet:before{content:"\f0fb"}.la-figma:before{content:"\f799"}.la-file:before{content:"\f15b"}.la-file-alt:before{content:"\f15c"}.la-file-archive:before{content:"\f1c6"}.la-file-audio:before{content:"\f1c7"}.la-file-code:before{content:"\f1c9"}.la-file-contract:before{content:"\f56c"}.la-file-csv:before{content:"\f6dd"}.la-file-download:before{content:"\f56d"}.la-file-excel:before{content:"\f1c3"}.la-file-export:before{content:"\f56e"}.la-file-image:before{content:"\f1c5"}.la-file-import:before{content:"\f56f"}.la-file-invoice:before{content:"\f570"}.la-file-invoice-dollar:before{content:"\f571"}.la-file-medical:before{content:"\f477"}.la-file-medical-alt:before{content:"\f478"}.la-file-pdf:before{content:"\f1c1"}.la-file-powerpoint:before{content:"\f1c4"}.la-file-prescription:before{content:"\f572"}.la-file-signature:before{content:"\f573"}.la-file-upload:before{content:"\f574"}.la-file-video:before{content:"\f1c8"}.la-file-word:before{content:"\f1c2"}.la-fill:before{content:"\f575"}.la-fill-drip:before{content:"\f576"}.la-film:before{content:"\f008"}.la-filter:before{content:"\f0b0"}.la-fingerprint:before{content:"\f577"}.la-fire:before{content:"\f06d"}.la-fire-alt:before{content:"\f7e4"}.la-fire-extinguisher:before{content:"\f134"}.la-firefox:before{content:"\f269"}.la-first-aid:before{content:"\f479"}.la-first-order:before{content:"\f2b0"}.la-first-order-alt:before{content:"\f50a"}.la-firstdraft:before{content:"\f3a1"}.la-fish:before{content:"\f578"}.la-fist-raised:before{content:"\f6de"}.la-flag:before{content:"\f024"}.la-flag-checkered:before{content:"\f11e"}.la-flag-usa:before{content:"\f74d"}.la-flask:before{content:"\f0c3"}.la-flickr:before{content:"\f16e"}.la-flipboard:before{content:"\f44d"}.la-flushed:before{content:"\f579"}.la-fly:before{content:"\f417"}.la-folder:before{content:"\f07b"}.la-folder-minus:before{content:"\f65d"}.la-folder-open:before{content:"\f07c"}.la-folder-plus:before{content:"\f65e"}.la-font:before{content:"\f031"}.la-font-awesome:before{content:"\f2b4"}.la-font-awesome-alt:before{content:"\f35c"}.la-font-awesome-flag:before{content:"\f425"}.la-font-awesome-logo-full:before{content:"\f4e6"}.la-fonticons:before{content:"\f280"}.la-fonticons-fi:before{content:"\f3a2"}.la-football-ball:before{content:"\f44e"}.la-fort-awesome:before{content:"\f286"}.la-fort-awesome-alt:before{content:"\f3a3"}.la-forumbee:before{content:"\f211"}.la-forward:before{content:"\f04e"}.la-foursquare:before{content:"\f180"}.la-free-code-camp:before{content:"\f2c5"}.la-freebsd:before{content:"\f3a4"}.la-frog:before{content:"\f52e"}.la-frown:before{content:"\f119"}.la-frown-open:before{content:"\f57a"}.la-fulcrum:before{content:"\f50b"}.la-funnel-dollar:before{content:"\f662"}.la-futbol:before{content:"\f1e3"}.la-galactic-republic:before{content:"\f50c"}.la-galactic-senate:before{content:"\f50d"}.la-gamepad:before{content:"\f11b"}.la-gas-pump:before{content:"\f52f"}.la-gavel:before{content:"\f0e3"}.la-gem:before{content:"\f3a5"}.la-genderless:before{content:"\f22d"}.la-get-pocket:before{content:"\f265"}.la-gg:before{content:"\f260"}.la-gg-circle:before{content:"\f261"}.la-ghost:before{content:"\f6e2"}.la-gift:before{content:"\f06b"}.la-gifts:before{content:"\f79c"}.la-git:before{content:"\f1d3"}.la-git-alt:before{content:"\f841"}.la-git-square:before{content:"\f1d2"}.la-github:before{content:"\f09b"}.la-github-alt:before{content:"\f113"}.la-github-square:before{content:"\f092"}.la-gitkraken:before{content:"\f3a6"}.la-gitlab:before{content:"\f296"}.la-gitter:before{content:"\f426"}.la-glass-cheers:before{content:"\f79f"}.la-glass-martini:before{content:"\f000"}.la-glass-martini-alt:before{content:"\f57b"}.la-glass-whiskey:before{content:"\f7a0"}.la-glasses:before{content:"\f530"}.la-glide:before{content:"\f2a5"}.la-glide-g:before{content:"\f2a6"}.la-globe:before{content:"\f0ac"}.la-globe-africa:before{content:"\f57c"}.la-globe-americas:before{content:"\f57d"}.la-globe-asia:before{content:"\f57e"}.la-globe-europe:before{content:"\f7a2"}.la-gofore:before{content:"\f3a7"}.la-golf-ball:before{content:"\f450"}.la-goodreads:before{content:"\f3a8"}.la-goodreads-g:before{content:"\f3a9"}.la-google:before{content:"\f1a0"}.la-google-drive:before{content:"\f3aa"}.la-google-play:before{content:"\f3ab"}.la-google-plus:before{content:"\f2b3"}.la-google-plus-g:before{content:"\f0d5"}.la-google-plus-square:before{content:"\f0d4"}.la-google-wallet:before{content:"\f1ee"}.la-gopuram:before{content:"\f664"}.la-graduation-cap:before{content:"\f19d"}.la-gratipay:before{content:"\f184"}.la-grav:before{content:"\f2d6"}.la-greater-than:before{content:"\f531"}.la-greater-than-equal:before{content:"\f532"}.la-grimace:before{content:"\f57f"}.la-grin:before{content:"\f580"}.la-grin-alt:before{content:"\f581"}.la-grin-beam:before{content:"\f582"}.la-grin-beam-sweat:before{content:"\f583"}.la-grin-hearts:before{content:"\f584"}.la-grin-squint:before{content:"\f585"}.la-grin-squint-tears:before{content:"\f586"}.la-grin-stars:before{content:"\f587"}.la-grin-tears:before{content:"\f588"}.la-grin-tongue:before{content:"\f589"}.la-grin-tongue-squint:before{content:"\f58a"}.la-grin-tongue-wink:before{content:"\f58b"}.la-grin-wink:before{content:"\f58c"}.la-grip-horizontal:before{content:"\f58d"}.la-grip-lines:before{content:"\f7a4"}.la-grip-lines-vertical:before{content:"\f7a5"}.la-grip-vertical:before{content:"\f58e"}.la-gripfire:before{content:"\f3ac"}.la-grunt:before{content:"\f3ad"}.la-guitar:before{content:"\f7a6"}.la-gulp:before{content:"\f3ae"}.la-h-square:before{content:"\f0fd"}.la-hacker-news:before{content:"\f1d4"}.la-hacker-news-square:before{content:"\f3af"}.la-hackerrank:before{content:"\f5f7"}.la-hamburger:before{content:"\f805"}.la-hammer:before{content:"\f6e3"}.la-hamsa:before{content:"\f665"}.la-hand-holding:before{content:"\f4bd"}.la-hand-holding-heart:before{content:"\f4be"}.la-hand-holding-usd:before{content:"\f4c0"}.la-hand-lizard:before{content:"\f258"}.la-hand-middle-finger:before{content:"\f806"}.la-hand-paper:before{content:"\f256"}.la-hand-peace:before{content:"\f25b"}.la-hand-point-down:before{content:"\f0a7"}.la-hand-point-left:before{content:"\f0a5"}.la-hand-point-right:before{content:"\f0a4"}.la-hand-point-up:before{content:"\f0a6"}.la-hand-pointer:before{content:"\f25a"}.la-hand-rock:before{content:"\f255"}.la-hand-scissors:before{content:"\f257"}.la-hand-spock:before{content:"\f259"}.la-hands:before{content:"\f4c2"}.la-hands-helping:before{content:"\f4c4"}.la-handshake:before{content:"\f2b5"}.la-hanukiah:before{content:"\f6e6"}.la-hard-hat:before{content:"\f807"}.la-hashtag:before{content:"\f292"}.la-hat-cowboy:before{content:"\f8c0"}.la-hat-cowboy-side:before{content:"\f8c1"}.la-hat-wizard:before{content:"\f6e8"}.la-haykal:before{content:"\f666"}.la-hdd:before{content:"\f0a0"}.la-heading:before{content:"\f1dc"}.la-headphones:before{content:"\f025"}.la-headphones-alt:before{content:"\f58f"}.la-headset:before{content:"\f590"}.la-heart:before{content:"\f004"}.la-heart-broken:before{content:"\f7a9"}.la-heartbeat:before{content:"\f21e"}.la-helicopter:before{content:"\f533"}.la-highlighter:before{content:"\f591"}.la-hiking:before{content:"\f6ec"}.la-hippo:before{content:"\f6ed"}.la-hips:before{content:"\f452"}.la-hire-a-helper:before{content:"\f3b0"}.la-history:before{content:"\f1da"}.la-hockey-puck:before{content:"\f453"}.la-holly-berry:before{content:"\f7aa"}.la-home:before{content:"\f015"}.la-hooli:before{content:"\f427"}.la-hornbill:before{content:"\f592"}.la-horse:before{content:"\f6f0"}.la-horse-head:before{content:"\f7ab"}.la-hospital:before{content:"\f0f8"}.la-hospital-alt:before{content:"\f47d"}.la-hospital-symbol:before{content:"\f47e"}.la-hot-tub:before{content:"\f593"}.la-hotdog:before{content:"\f80f"}.la-hotel:before{content:"\f594"}.la-hotjar:before{content:"\f3b1"}.la-hourglass:before{content:"\f254"}.la-hourglass-end:before{content:"\f253"}.la-hourglass-half:before{content:"\f252"}.la-hourglass-start:before{content:"\f251"}.la-house-damage:before{content:"\f6f1"}.la-houzz:before{content:"\f27c"}.la-hryvnia:before{content:"\f6f2"}.la-html5:before{content:"\f13b"}.la-hubspot:before{content:"\f3b2"}.la-i-cursor:before{content:"\f246"}.la-ice-cream:before{content:"\f810"}.la-icicles:before{content:"\f7ad"}.la-icons:before{content:"\f86d"}.la-id-badge:before{content:"\f2c1"}.la-id-card:before{content:"\f2c2"}.la-id-card-alt:before{content:"\f47f"}.la-igloo:before{content:"\f7ae"}.la-image:before{content:"\f03e"}.la-images:before{content:"\f302"}.la-imdb:before{content:"\f2d8"}.la-inbox:before{content:"\f01c"}.la-indent:before{content:"\f03c"}.la-industry:before{content:"\f275"}.la-infinity:before{content:"\f534"}.la-info:before{content:"\f129"}.la-info-circle:before{content:"\f05a"}.la-instagram:before{content:"\f16d"}.la-intercom:before{content:"\f7af"}.la-internet-explorer:before{content:"\f26b"}.la-invision:before{content:"\f7b0"}.la-ioxhost:before{content:"\f208"}.la-italic:before{content:"\f033"}.la-itch-io:before{content:"\f83a"}.la-itunes:before{content:"\f3b4"}.la-itunes-note:before{content:"\f3b5"}.la-java:before{content:"\f4e4"}.la-jedi:before{content:"\f669"}.la-jedi-order:before{content:"\f50e"}.la-jenkins:before{content:"\f3b6"}.la-jira:before{content:"\f7b1"}.la-joget:before{content:"\f3b7"}.la-joint:before{content:"\f595"}.la-joomla:before{content:"\f1aa"}.la-journal-whills:before{content:"\f66a"}.la-js:before{content:"\f3b8"}.la-js-square:before{content:"\f3b9"}.la-jsfiddle:before{content:"\f1cc"}.la-kaaba:before{content:"\f66b"}.la-kaggle:before{content:"\f5fa"}.la-key:before{content:"\f084"}.la-keybase:before{content:"\f4f5"}.la-keyboard:before{content:"\f11c"}.la-keycdn:before{content:"\f3ba"}.la-khanda:before{content:"\f66d"}.la-kickstarter:before{content:"\f3bb"}.la-kickstarter-k:before{content:"\f3bc"}.la-kiss:before{content:"\f596"}.la-kiss-beam:before{content:"\f597"}.la-kiss-wink-heart:before{content:"\f598"}.la-kiwi-bird:before{content:"\f535"}.la-korvue:before{content:"\f42f"}.la-landmark:before{content:"\f66f"}.la-language:before{content:"\f1ab"}.la-laptop:before{content:"\f109"}.la-laptop-code:before{content:"\f5fc"}.la-laptop-medical:before{content:"\f812"}.la-laravel:before{content:"\f3bd"}.la-lastfm:before{content:"\f202"}.la-lastfm-square:before{content:"\f203"}.la-laugh:before{content:"\f599"}.la-laugh-beam:before{content:"\f59a"}.la-laugh-squint:before{content:"\f59b"}.la-laugh-wink:before{content:"\f59c"}.la-layer-group:before{content:"\f5fd"}.la-leaf:before{content:"\f06c"}.la-leanpub:before{content:"\f212"}.la-lemon:before{content:"\f094"}.la-less:before{content:"\f41d"}.la-less-than:before{content:"\f536"}.la-less-than-equal:before{content:"\f537"}.la-level-down-alt:before{content:"\f3be"}.la-level-up-alt:before{content:"\f3bf"}.la-life-ring:before{content:"\f1cd"}.la-lightbulb:before{content:"\f0eb"}.la-line:before{content:"\f3c0"}.la-link:before{content:"\f0c1"}.la-linkedin:before{content:"\f08c"}.la-linkedin-in:before{content:"\f0e1"}.la-linode:before{content:"\f2b8"}.la-linux:before{content:"\f17c"}.la-lira-sign:before{content:"\f195"}.la-list:before{content:"\f03a"}.la-list-alt:before{content:"\f022"}.la-list-ol:before{content:"\f0cb"}.la-list-ul:before{content:"\f0ca"}.la-location-arrow:before{content:"\f124"}.la-lock:before{content:"\f023"}.la-lock-open:before{content:"\f3c1"}.la-long-arrow-alt-down:before{content:"\f309"}.la-long-arrow-alt-left:before{content:"\f30a"}.la-long-arrow-alt-right:before{content:"\f30b"}.la-long-arrow-alt-up:before{content:"\f30c"}.la-low-vision:before{content:"\f2a8"}.la-luggage-cart:before{content:"\f59d"}.la-lyft:before{content:"\f3c3"}.la-magento:before{content:"\f3c4"}.la-magic:before{content:"\f0d0"}.la-magnet:before{content:"\f076"}.la-mail-bulk:before{content:"\f674"}.la-mailchimp:before{content:"\f59e"}.la-male:before{content:"\f183"}.la-mandalorian:before{content:"\f50f"}.la-map:before{content:"\f279"}.la-map-marked:before{content:"\f59f"}.la-map-marked-alt:before{content:"\f5a0"}.la-map-marker:before{content:"\f041"}.la-map-marker-alt:before{content:"\f3c5"}.la-map-pin:before{content:"\f276"}.la-map-signs:before{content:"\f277"}.la-markdown:before{content:"\f60f"}.la-marker:before{content:"\f5a1"}.la-mars:before{content:"\f222"}.la-mars-double:before{content:"\f227"}.la-mars-stroke:before{content:"\f229"}.la-mars-stroke-h:before{content:"\f22b"}.la-mars-stroke-v:before{content:"\f22a"}.la-mask:before{content:"\f6fa"}.la-mastodon:before{content:"\f4f6"}.la-maxcdn:before{content:"\f136"}.la-mdb:before{content:"\f8ca"}.la-medal:before{content:"\f5a2"}.la-medapps:before{content:"\f3c6"}.la-medium:before{content:"\f23a"}.la-medium-m:before{content:"\f3c7"}.la-medkit:before{content:"\f0fa"}.la-medrt:before{content:"\f3c8"}.la-meetup:before{content:"\f2e0"}.la-megaport:before{content:"\f5a3"}.la-meh:before{content:"\f11a"}.la-meh-blank:before{content:"\f5a4"}.la-meh-rolling-eyes:before{content:"\f5a5"}.la-memory:before{content:"\f538"}.la-mendeley:before{content:"\f7b3"}.la-menorah:before{content:"\f676"}.la-mercury:before{content:"\f223"}.la-meteor:before{content:"\f753"}.la-microchip:before{content:"\f2db"}.la-microphone:before{content:"\f130"}.la-microphone-alt:before{content:"\f3c9"}.la-microphone-alt-slash:before{content:"\f539"}.la-microphone-slash:before{content:"\f131"}.la-microscope:before{content:"\f610"}.la-microsoft:before{content:"\f3ca"}.la-minus:before{content:"\f068"}.la-minus-circle:before{content:"\f056"}.la-minus-square:before{content:"\f146"}.la-mitten:before{content:"\f7b5"}.la-mix:before{content:"\f3cb"}.la-mixcloud:before{content:"\f289"}.la-mizuni:before{content:"\f3cc"}.la-mobile:before{content:"\f10b"}.la-mobile-alt:before{content:"\f3cd"}.la-modx:before{content:"\f285"}.la-monero:before{content:"\f3d0"}.la-money-bill:before{content:"\f0d6"}.la-money-bill-alt:before{content:"\f3d1"}.la-money-bill-wave:before{content:"\f53a"}.la-money-bill-wave-alt:before{content:"\f53b"}.la-money-check:before{content:"\f53c"}.la-money-check-alt:before{content:"\f53d"}.la-monument:before{content:"\f5a6"}.la-moon:before{content:"\f186"}.la-mortar-pestle:before{content:"\f5a7"}.la-mosque:before{content:"\f678"}.la-motorcycle:before{content:"\f21c"}.la-mountain:before{content:"\f6fc"}.la-mouse:before{content:"\f8cc"}.la-mouse-pointer:before{content:"\f245"}.la-mug-hot:before{content:"\f7b6"}.la-music:before{content:"\f001"}.la-napster:before{content:"\f3d2"}.la-neos:before{content:"\f612"}.la-network-wired:before{content:"\f6ff"}.la-neuter:before{content:"\f22c"}.la-newspaper:before{content:"\f1ea"}.la-nimblr:before{content:"\f5a8"}.la-node:before{content:"\f419"}.la-node-js:before{content:"\f3d3"}.la-not-equal:before{content:"\f53e"}.la-notes-medical:before{content:"\f481"}.la-npm:before{content:"\f3d4"}.la-ns8:before{content:"\f3d5"}.la-nutritionix:before{content:"\f3d6"}.la-object-group:before{content:"\f247"}.la-object-ungroup:before{content:"\f248"}.la-odnoklassniki:before{content:"\f263"}.la-odnoklassniki-square:before{content:"\f264"}.la-oil-can:before{content:"\f613"}.la-old-republic:before{content:"\f510"}.la-om:before{content:"\f679"}.la-opencart:before{content:"\f23d"}.la-openid:before{content:"\f19b"}.la-opera:before{content:"\f26a"}.la-optin-monster:before{content:"\f23c"}.la-orcid:before{content:"\f8d2"}.la-osi:before{content:"\f41a"}.la-otter:before{content:"\f700"}.la-outdent:before{content:"\f03b"}.la-page4:before{content:"\f3d7"}.la-pagelines:before{content:"\f18c"}.la-pager:before{content:"\f815"}.la-paint-brush:before{content:"\f1fc"}.la-paint-roller:before{content:"\f5aa"}.la-palette:before{content:"\f53f"}.la-palfed:before{content:"\f3d8"}.la-pallet:before{content:"\f482"}.la-paper-plane:before{content:"\f1d8"}.la-paperclip:before{content:"\f0c6"}.la-parachute-box:before{content:"\f4cd"}.la-paragraph:before{content:"\f1dd"}.la-parking:before{content:"\f540"}.la-passport:before{content:"\f5ab"}.la-pastafarianism:before{content:"\f67b"}.la-paste:before{content:"\f0ea"}.la-patreon:before{content:"\f3d9"}.la-pause:before{content:"\f04c"}.la-pause-circle:before{content:"\f28b"}.la-paw:before{content:"\f1b0"}.la-paypal:before{content:"\f1ed"}.la-peace:before{content:"\f67c"}.la-pen:before{content:"\f304"}.la-pen-alt:before{content:"\f305"}.la-pen-fancy:before{content:"\f5ac"}.la-pen-nib:before{content:"\f5ad"}.la-pen-square:before{content:"\f14b"}.la-pencil-alt:before{content:"\f303"}.la-pencil-ruler:before{content:"\f5ae"}.la-penny-arcade:before{content:"\f704"}.la-people-carry:before{content:"\f4ce"}.la-pepper-hot:before{content:"\f816"}.la-percent:before{content:"\f295"}.la-percentage:before{content:"\f541"}.la-periscope:before{content:"\f3da"}.la-person-booth:before{content:"\f756"}.la-phabricator:before{content:"\f3db"}.la-phoenix-framework:before{content:"\f3dc"}.la-phoenix-squadron:before{content:"\f511"}.la-phone:before{content:"\f095"}.la-phone-alt:before{content:"\f879"}.la-phone-slash:before{content:"\f3dd"}.la-phone-square:before{content:"\f098"}.la-phone-square-alt:before{content:"\f87b"}.la-phone-volume:before{content:"\f2a0"}.la-photo-video:before{content:"\f87c"}.la-php:before{content:"\f457"}.la-pied-piper:before{content:"\f2ae"}.la-pied-piper-alt:before{content:"\f1a8"}.la-pied-piper-hat:before{content:"\f4e5"}.la-pied-piper-pp:before{content:"\f1a7"}.la-piggy-bank:before{content:"\f4d3"}.la-pills:before{content:"\f484"}.la-pinterest:before{content:"\f0d2"}.la-pinterest-p:before{content:"\f231"}.la-pinterest-square:before{content:"\f0d3"}.la-pizza-slice:before{content:"\f818"}.la-place-of-worship:before{content:"\f67f"}.la-plane:before{content:"\f072"}.la-plane-arrival:before{content:"\f5af"}.la-plane-departure:before{content:"\f5b0"}.la-play:before{content:"\f04b"}.la-play-circle:before{content:"\f144"}.la-playstation:before{content:"\f3df"}.la-plug:before{content:"\f1e6"}.la-plus:before{content:"\f067"}.la-plus-circle:before{content:"\f055"}.la-plus-square:before{content:"\f0fe"}.la-podcast:before{content:"\f2ce"}.la-poll:before{content:"\f681"}.la-poll-h:before{content:"\f682"}.la-poo:before{content:"\f2fe"}.la-poo-storm:before{content:"\f75a"}.la-poop:before{content:"\f619"}.la-portrait:before{content:"\f3e0"}.la-pound-sign:before{content:"\f154"}.la-power-off:before{content:"\f011"}.la-pray:before{content:"\f683"}.la-praying-hands:before{content:"\f684"}.la-prescription:before{content:"\f5b1"}.la-prescription-bottle:before{content:"\f485"}.la-prescription-bottle-alt:before{content:"\f486"}.la-print:before{content:"\f02f"}.la-procedures:before{content:"\f487"}.la-product-hunt:before{content:"\f288"}.la-project-diagram:before{content:"\f542"}.la-pushed:before{content:"\f3e1"}.la-puzzle-piece:before{content:"\f12e"}.la-python:before{content:"\f3e2"}.la-qq:before{content:"\f1d6"}.la-qrcode:before{content:"\f029"}.la-question:before{content:"\f128"}.la-question-circle:before{content:"\f059"}.la-quidditch:before{content:"\f458"}.la-quinscape:before{content:"\f459"}.la-quora:before{content:"\f2c4"}.la-quote-left:before{content:"\f10d"}.la-quote-right:before{content:"\f10e"}.la-quran:before{content:"\f687"}.la-r-project:before{content:"\f4f7"}.la-radiation:before{content:"\f7b9"}.la-radiation-alt:before{content:"\f7ba"}.la-rainbow:before{content:"\f75b"}.la-random:before{content:"\f074"}.la-raspberry-pi:before{content:"\f7bb"}.la-ravelry:before{content:"\f2d9"}.la-react:before{content:"\f41b"}.la-reacteurope:before{content:"\f75d"}.la-readme:before{content:"\f4d5"}.la-rebel:before{content:"\f1d0"}.la-receipt:before{content:"\f543"}.la-record-vinyl:before{content:"\f8d9"}.la-recycle:before{content:"\f1b8"}.la-red-river:before{content:"\f3e3"}.la-reddit:before{content:"\f1a1"}.la-reddit-alien:before{content:"\f281"}.la-reddit-square:before{content:"\f1a2"}.la-redhat:before{content:"\f7bc"}.la-redo:before{content:"\f01e"}.la-redo-alt:before{content:"\f2f9"}.la-registered:before{content:"\f25d"}.la-remove-format:before{content:"\f87d"}.la-renren:before{content:"\f18b"}.la-reply:before{content:"\f3e5"}.la-reply-all:before{content:"\f122"}.la-replyd:before{content:"\f3e6"}.la-republican:before{content:"\f75e"}.la-researchgate:before{content:"\f4f8"}.la-resolving:before{content:"\f3e7"}.la-restroom:before{content:"\f7bd"}.la-retweet:before{content:"\f079"}.la-rev:before{content:"\f5b2"}.la-ribbon:before{content:"\f4d6"}.la-ring:before{content:"\f70b"}.la-road:before{content:"\f018"}.la-robot:before{content:"\f544"}.la-rocket:before{content:"\f135"}.la-rocketchat:before{content:"\f3e8"}.la-rockrms:before{content:"\f3e9"}.la-route:before{content:"\f4d7"}.la-rss:before{content:"\f09e"}.la-rss-square:before{content:"\f143"}.la-ruble-sign:before{content:"\f158"}.la-ruler:before{content:"\f545"}.la-ruler-combined:before{content:"\f546"}.la-ruler-horizontal:before{content:"\f547"}.la-ruler-vertical:before{content:"\f548"}.la-running:before{content:"\f70c"}.la-rupee-sign:before{content:"\f156"}.la-sad-cry:before{content:"\f5b3"}.la-sad-tear:before{content:"\f5b4"}.la-safari:before{content:"\f267"}.la-salesforce:before{content:"\f83b"}.la-sass:before{content:"\f41e"}.la-satellite:before{content:"\f7bf"}.la-satellite-dish:before{content:"\f7c0"}.la-save:before{content:"\f0c7"}.la-schlix:before{content:"\f3ea"}.la-school:before{content:"\f549"}.la-screwdriver:before{content:"\f54a"}.la-scribd:before{content:"\f28a"}.la-scroll:before{content:"\f70e"}.la-sd-card:before{content:"\f7c2"}.la-search:before{content:"\f002"}.la-search-dollar:before{content:"\f688"}.la-search-location:before{content:"\f689"}.la-search-minus:before{content:"\f010"}.la-search-plus:before{content:"\f00e"}.la-searchengin:before{content:"\f3eb"}.la-seedling:before{content:"\f4d8"}.la-sellcast:before{content:"\f2da"}.la-sellsy:before{content:"\f213"}.la-server:before{content:"\f233"}.la-servicestack:before{content:"\f3ec"}.la-shapes:before{content:"\f61f"}.la-share:before{content:"\f064"}.la-share-alt:before{content:"\f1e0"}.la-share-alt-square:before{content:"\f1e1"}.la-share-square:before{content:"\f14d"}.la-shekel-sign:before{content:"\f20b"}.la-shield-alt:before{content:"\f3ed"}.la-ship:before{content:"\f21a"}.la-shipping-fast:before{content:"\f48b"}.la-shirtsinbulk:before{content:"\f214"}.la-shoe-prints:before{content:"\f54b"}.la-shopping-bag:before{content:"\f290"}.la-shopping-basket:before{content:"\f291"}.la-shopping-cart:before{content:"\f07a"}.la-shopware:before{content:"\f5b5"}.la-shower:before{content:"\f2cc"}.la-shuttle-van:before{content:"\f5b6"}.la-sign:before{content:"\f4d9"}.la-sign-in-alt:before{content:"\f2f6"}.la-sign-language:before{content:"\f2a7"}.la-sign-out-alt:before{content:"\f2f5"}.la-signal:before{content:"\f012"}.la-signature:before{content:"\f5b7"}.la-sim-card:before{content:"\f7c4"}.la-simplybuilt:before{content:"\f215"}.la-sistrix:before{content:"\f3ee"}.la-sitemap:before{content:"\f0e8"}.la-sith:before{content:"\f512"}.la-skating:before{content:"\f7c5"}.la-sketch:before{content:"\f7c6"}.la-skiing:before{content:"\f7c9"}.la-skiing-nordic:before{content:"\f7ca"}.la-skull:before{content:"\f54c"}.la-skull-crossbones:before{content:"\f714"}.la-skyatlas:before{content:"\f216"}.la-skype:before{content:"\f17e"}.la-slack:before{content:"\f198"}.la-slack-hash:before{content:"\f3ef"}.la-slash:before{content:"\f715"}.la-sleigh:before{content:"\f7cc"}.la-sliders-h:before{content:"\f1de"}.la-slideshare:before{content:"\f1e7"}.la-smile:before{content:"\f118"}.la-smile-beam:before{content:"\f5b8"}.la-smile-wink:before{content:"\f4da"}.la-smog:before{content:"\f75f"}.la-smoking:before{content:"\f48d"}.la-smoking-ban:before{content:"\f54d"}.la-sms:before{content:"\f7cd"}.la-snapchat:before{content:"\f2ab"}.la-snapchat-ghost:before{content:"\f2ac"}.la-snapchat-square:before{content:"\f2ad"}.la-snowboarding:before{content:"\f7ce"}.la-snowflake:before{content:"\f2dc"}.la-snowman:before{content:"\f7d0"}.la-snowplow:before{content:"\f7d2"}.la-socks:before{content:"\f696"}.la-solar-panel:before{content:"\f5ba"}.la-sort:before{content:"\f0dc"}.la-sort-alpha-down:before{content:"\f15d"}.la-sort-alpha-down-alt:before{content:"\f881"}.la-sort-alpha-up:before{content:"\f15e"}.la-sort-alpha-up-alt:before{content:"\f882"}.la-sort-amount-down:before{content:"\f160"}.la-sort-amount-down-alt:before{content:"\f884"}.la-sort-amount-up:before{content:"\f161"}.la-sort-amount-up-alt:before{content:"\f885"}.la-sort-down:before{content:"\f0dd"}.la-sort-numeric-down:before{content:"\f162"}.la-sort-numeric-down-alt:before{content:"\f886"}.la-sort-numeric-up:before{content:"\f163"}.la-sort-numeric-up-alt:before{content:"\f887"}.la-sort-up:before{content:"\f0de"}.la-soundcloud:before{content:"\f1be"}.la-sourcetree:before{content:"\f7d3"}.la-spa:before{content:"\f5bb"}.la-space-shuttle:before{content:"\f197"}.la-speakap:before{content:"\f3f3"}.la-speaker-deck:before{content:"\f83c"}.la-spell-check:before{content:"\f891"}.la-spider:before{content:"\f717"}.la-spinner:before{content:"\f110"}.la-splotch:before{content:"\f5bc"}.la-spotify:before{content:"\f1bc"}.la-spray-can:before{content:"\f5bd"}.la-square:before{content:"\f0c8"}.la-square-full:before{content:"\f45c"}.la-square-root-alt:before{content:"\f698"}.la-squarespace:before{content:"\f5be"}.la-stack-exchange:before{content:"\f18d"}.la-stack-overflow:before{content:"\f16c"}.la-stackpath:before{content:"\f842"}.la-stamp:before{content:"\f5bf"}.la-star:before{content:"\f005"}.la-star-and-crescent:before{content:"\f699"}.la-star-half:before{content:"\f089"}.la-star-half-alt:before{content:"\f5c0"}.la-star-of-david:before{content:"\f69a"}.la-star-of-life:before{content:"\f621"}.la-staylinked:before{content:"\f3f5"}.la-steam:before{content:"\f1b6"}.la-steam-square:before{content:"\f1b7"}.la-steam-symbol:before{content:"\f3f6"}.la-step-backward:before{content:"\f048"}.la-step-forward:before{content:"\f051"}.la-stethoscope:before{content:"\f0f1"}.la-sticker-mule:before{content:"\f3f7"}.la-sticky-note:before{content:"\f249"}.la-stop:before{content:"\f04d"}.la-stop-circle:before{content:"\f28d"}.la-stopwatch:before{content:"\f2f2"}.la-store:before{content:"\f54e"}.la-store-alt:before{content:"\f54f"}.la-strava:before{content:"\f428"}.la-stream:before{content:"\f550"}.la-street-view:before{content:"\f21d"}.la-strikethrough:before{content:"\f0cc"}.la-stripe:before{content:"\f429"}.la-stripe-s:before{content:"\f42a"}.la-stroopwafel:before{content:"\f551"}.la-studiovinari:before{content:"\f3f8"}.la-stumbleupon:before{content:"\f1a4"}.la-stumbleupon-circle:before{content:"\f1a3"}.la-subscript:before{content:"\f12c"}.la-subway:before{content:"\f239"}.la-suitcase:before{content:"\f0f2"}.la-suitcase-rolling:before{content:"\f5c1"}.la-sun:before{content:"\f185"}.la-superpowers:before{content:"\f2dd"}.la-superscript:before{content:"\f12b"}.la-supple:before{content:"\f3f9"}.la-surprise:before{content:"\f5c2"}.la-suse:before{content:"\f7d6"}.la-swatchbook:before{content:"\f5c3"}.la-swift:before{content:"\f8e1"}.la-swimmer:before{content:"\f5c4"}.la-swimming-pool:before{content:"\f5c5"}.la-symfony:before{content:"\f83d"}.la-synagogue:before{content:"\f69b"}.la-sync:before{content:"\f021"}.la-sync-alt:before{content:"\f2f1"}.la-syringe:before{content:"\f48e"}.la-table:before{content:"\f0ce"}.la-table-tennis:before{content:"\f45d"}.la-tablet:before{content:"\f10a"}.la-tablet-alt:before{content:"\f3fa"}.la-tablets:before{content:"\f490"}.la-tachometer-alt:before{content:"\f3fd"}.la-tag:before{content:"\f02b"}.la-tags:before{content:"\f02c"}.la-tape:before{content:"\f4db"}.la-tasks:before{content:"\f0ae"}.la-taxi:before{content:"\f1ba"}.la-teamspeak:before{content:"\f4f9"}.la-teeth:before{content:"\f62e"}.la-teeth-open:before{content:"\f62f"}.la-telegram:before{content:"\f2c6"}.la-telegram-plane:before{content:"\f3fe"}.la-temperature-high:before{content:"\f769"}.la-temperature-low:before{content:"\f76b"}.la-tencent-weibo:before{content:"\f1d5"}.la-tenge:before{content:"\f7d7"}.la-terminal:before{content:"\f120"}.la-text-height:before{content:"\f034"}.la-text-width:before{content:"\f035"}.la-th:before{content:"\f00a"}.la-th-large:before{content:"\f009"}.la-th-list:before{content:"\f00b"}.la-the-red-yeti:before{content:"\f69d"}.la-theater-masks:before{content:"\f630"}.la-themeco:before{content:"\f5c6"}.la-themeisle:before{content:"\f2b2"}.la-thermometer:before{content:"\f491"}.la-thermometer-empty:before{content:"\f2cb"}.la-thermometer-full:before{content:"\f2c7"}.la-thermometer-half:before{content:"\f2c9"}.la-thermometer-quarter:before{content:"\f2ca"}.la-thermometer-three-quarters:before{content:"\f2c8"}.la-think-peaks:before{content:"\f731"}.la-thumbs-down:before{content:"\f165"}.la-thumbs-up:before{content:"\f164"}.la-thumbtack:before{content:"\f08d"}.la-ticket-alt:before{content:"\f3ff"}.la-times:before{content:"\f00d"}.la-times-circle:before{content:"\f057"}.la-tint:before{content:"\f043"}.la-tint-slash:before{content:"\f5c7"}.la-tired:before{content:"\f5c8"}.la-toggle-off:before{content:"\f204"}.la-toggle-on:before{content:"\f205"}.la-toilet:before{content:"\f7d8"}.la-toilet-paper:before{content:"\f71e"}.la-toolbox:before{content:"\f552"}.la-tools:before{content:"\f7d9"}.la-tooth:before{content:"\f5c9"}.la-torah:before{content:"\f6a0"}.la-torii-gate:before{content:"\f6a1"}.la-tractor:before{content:"\f722"}.la-trade-federation:before{content:"\f513"}.la-trademark:before{content:"\f25c"}.la-traffic-light:before{content:"\f637"}.la-train:before{content:"\f238"}.la-tram:before{content:"\f7da"}.la-transgender:before{content:"\f224"}.la-transgender-alt:before{content:"\f225"}.la-trash:before{content:"\f1f8"}.la-trash-alt:before{content:"\f2ed"}.la-trash-restore:before{content:"\f829"}.la-trash-restore-alt:before{content:"\f82a"}.la-tree:before{content:"\f1bb"}.la-trello:before{content:"\f181"}.la-tripadvisor:before{content:"\f262"}.la-trophy:before{content:"\f091"}.la-truck:before{content:"\f0d1"}.la-truck-loading:before{content:"\f4de"}.la-truck-monster:before{content:"\f63b"}.la-truck-moving:before{content:"\f4df"}.la-truck-pickup:before{content:"\f63c"}.la-tshirt:before{content:"\f553"}.la-tty:before{content:"\f1e4"}.la-tumblr:before{content:"\f173"}.la-tumblr-square:before{content:"\f174"}.la-tv:before{content:"\f26c"}.la-twitch:before{content:"\f1e8"}.la-twitter:before{content:"\f099"}.la-twitter-square:before{content:"\f081"}.la-typo3:before{content:"\f42b"}.la-uber:before{content:"\f402"}.la-ubuntu:before{content:"\f7df"}.la-uikit:before{content:"\f403"}.la-umbraco:before{content:"\f8e8"}.la-umbrella:before{content:"\f0e9"}.la-umbrella-beach:before{content:"\f5ca"}.la-underline:before{content:"\f0cd"}.la-undo:before{content:"\f0e2"}.la-undo-alt:before{content:"\f2ea"}.la-uniregistry:before{content:"\f404"}.la-universal-access:before{content:"\f29a"}.la-university:before{content:"\f19c"}.la-unlink:before{content:"\f127"}.la-unlock:before{content:"\f09c"}.la-unlock-alt:before{content:"\f13e"}.la-untappd:before{content:"\f405"}.la-upload:before{content:"\f093"}.la-ups:before{content:"\f7e0"}.la-usb:before{content:"\f287"}.la-user:before{content:"\f007"}.la-user-alt:before{content:"\f406"}.la-user-alt-slash:before{content:"\f4fa"}.la-user-astronaut:before{content:"\f4fb"}.la-user-check:before{content:"\f4fc"}.la-user-circle:before{content:"\f2bd"}.la-user-clock:before{content:"\f4fd"}.la-user-cog:before{content:"\f4fe"}.la-user-edit:before{content:"\f4ff"}.la-user-friends:before{content:"\f500"}.la-user-graduate:before{content:"\f501"}.la-user-injured:before{content:"\f728"}.la-user-lock:before{content:"\f502"}.la-user-md:before{content:"\f0f0"}.la-user-minus:before{content:"\f503"}.la-user-ninja:before{content:"\f504"}.la-user-nurse:before{content:"\f82f"}.la-user-plus:before{content:"\f234"}.la-user-secret:before{content:"\f21b"}.la-user-shield:before{content:"\f505"}.la-user-slash:before{content:"\f506"}.la-user-tag:before{content:"\f507"}.la-user-tie:before{content:"\f508"}.la-user-times:before{content:"\f235"}.la-users:before{content:"\f0c0"}.la-users-cog:before{content:"\f509"}.la-usps:before{content:"\f7e1"}.la-ussunnah:before{content:"\f407"}.la-utensil-spoon:before{content:"\f2e5"}.la-utensils:before{content:"\f2e7"}.la-vaadin:before{content:"\f408"}.la-vector-square:before{content:"\f5cb"}.la-venus:before{content:"\f221"}.la-venus-double:before{content:"\f226"}.la-venus-mars:before{content:"\f228"}.la-viacoin:before{content:"\f237"}.la-viadeo:before{content:"\f2a9"}.la-viadeo-square:before{content:"\f2aa"}.la-vial:before{content:"\f492"}.la-vials:before{content:"\f493"}.la-viber:before{content:"\f409"}.la-video:before{content:"\f03d"}.la-video-slash:before{content:"\f4e2"}.la-vihara:before{content:"\f6a7"}.la-vimeo:before{content:"\f40a"}.la-vimeo-square:before{content:"\f194"}.la-vimeo-v:before{content:"\f27d"}.la-vine:before{content:"\f1ca"}.la-vk:before{content:"\f189"}.la-vnv:before{content:"\f40b"}.la-voicemail:before{content:"\f897"}.la-volleyball-ball:before{content:"\f45f"}.la-volume-down:before{content:"\f027"}.la-volume-mute:before{content:"\f6a9"}.la-volume-off:before{content:"\f026"}.la-volume-up:before{content:"\f028"}.la-vote-yea:before{content:"\f772"}.la-vr-cardboard:before{content:"\f729"}.la-vuejs:before{content:"\f41f"}.la-walking:before{content:"\f554"}.la-wallet:before{content:"\f555"}.la-warehouse:before{content:"\f494"}.la-water:before{content:"\f773"}.la-wave-square:before{content:"\f83e"}.la-waze:before{content:"\f83f"}.la-weebly:before{content:"\f5cc"}.la-weibo:before{content:"\f18a"}.la-weight:before{content:"\f496"}.la-weight-hanging:before{content:"\f5cd"}.la-weixin:before{content:"\f1d7"}.la-whatsapp:before{content:"\f232"}.la-whatsapp-square:before{content:"\f40c"}.la-wheelchair:before{content:"\f193"}.la-whmcs:before{content:"\f40d"}.la-wifi:before{content:"\f1eb"}.la-wikipedia-w:before{content:"\f266"}.la-wind:before{content:"\f72e"}.la-window-close:before{content:"\f410"}.la-window-maximize:before{content:"\f2d0"}.la-window-minimize:before{content:"\f2d1"}.la-window-restore:before{content:"\f2d2"}.la-windows:before{content:"\f17a"}.la-wine-bottle:before{content:"\f72f"}.la-wine-glass:before{content:"\f4e3"}.la-wine-glass-alt:before{content:"\f5ce"}.la-wix:before{content:"\f5cf"}.la-wizards-of-the-coast:before{content:"\f730"}.la-wolf-pack-battalion:before{content:"\f514"}.la-won-sign:before{content:"\f159"}.la-wordpress:before{content:"\f19a"}.la-wordpress-simple:before{content:"\f411"}.la-wpbeginner:before{content:"\f297"}.la-wpexplorer:before{content:"\f2de"}.la-wpforms:before{content:"\f298"}.la-wpressr:before{content:"\f3e4"}.la-wrench:before{content:"\f0ad"}.la-x-ray:before{content:"\f497"}.la-xbox:before{content:"\f412"}.la-xing:before{content:"\f168"}.la-xing-square:before{content:"\f169"}.la-y-combinator:before{content:"\f23b"}.la-yahoo:before{content:"\f19e"}.la-yammer:before{content:"\f840"}.la-yandex:before{content:"\f413"}.la-yandex-international:before{content:"\f414"}.la-yarn:before{content:"\f7e3"}.la-yelp:before{content:"\f1e9"}.la-yen-sign:before{content:"\f157"}.la-yin-yang:before{content:"\f6ad"}.la-yoast:before{content:"\f2b1"}.la-youtube:before{content:"\f167"}.la-youtube-square:before{content:"\f431"}.la-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:'Line Awesome Brands';font-style:normal;font-weight:400;font-display:auto;src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-brands-400.eot);src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-brands-400.eot?#iefix) format("embedded-opentype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-brands-400.woff2) format("woff2"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-brands-400.woff) format("woff"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-brands-400.ttf) format("truetype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-brands-400.svg#lineawesome) format("svg")}.lab{font-family:'Line Awesome Brands'}@font-face{font-family:'Line Awesome Free';font-style:normal;font-weight:400;font-display:auto;src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-regular-400.eot);src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-regular-400.eot?#iefix) format("embedded-opentype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-regular-400.woff2) format("woff2"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-regular-400.woff) format("woff"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-regular-400.ttf) format("truetype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-regular-400.svg#lineawesome) format("svg")}.lar{font-family:'Line Awesome Free';font-weight:400}@font-face{font-family:'Line Awesome Free';font-style:normal;font-weight:900;font-display:auto;src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-solid-900.eot);src:url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-solid-900.eot?#iefix) format("embedded-opentype"),url(../font/la-solid-900.woff2) format("woff2"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-solid-900.woff) format("woff"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-solid-900.ttf) format("truetype"),url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/line-awesome/fonts/la-solid-900.svg#lineawesome) format("svg")}.la,.las{font-family:'Line Awesome Free';font-weight:900}.la.la-glass:before{content:"\f000"}.la.la-meetup{font-family:'Line Awesome Brands';font-weight:400}.la.la-star-o{font-family:'Line Awesome Free';font-weight:400}.la.la-star-o:before{content:"\f005"}.la.la-remove:before{content:"\f00d"}.la.la-close:before{content:"\f00d"}.la.la-gear:before{content:"\f013"}.la.la-trash-o{font-family:'Line Awesome Free';font-weight:400}.la.la-trash-o:before{content:"\f2ed"}.la.la-file-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-o:before{content:"\f15b"}.la.la-clock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-clock-o:before{content:"\f017"}.la.la-arrow-circle-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-down:before{content:"\f358"}.la.la-arrow-circle-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-up:before{content:"\f35b"}.la.la-play-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-play-circle-o:before{content:"\f144"}.la.la-repeat:before{content:"\f01e"}.la.la-rotate-right:before{content:"\f01e"}.la.la-refresh:before{content:"\f021"}.la.la-list-alt{font-family:'Line Awesome Free';font-weight:400}.la.la-dedent:before{content:"\f03b"}.la.la-video-camera:before{content:"\f03d"}.la.la-picture-o{font-family:'Line Awesome Free';font-weight:400}.la.la-picture-o:before{content:"\f03e"}.la.la-photo{font-family:'Line Awesome Free';font-weight:400}.la.la-photo:before{content:"\f03e"}.la.la-image{font-family:'Line Awesome Free';font-weight:400}.la.la-image:before{content:"\f03e"}.la.la-pencil:before{content:"\f303"}.la.la-map-marker:before{content:"\f3c5"}.la.la-pencil-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-pencil-square-o:before{content:"\f044"}.la.la-share-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-share-square-o:before{content:"\f14d"}.la.la-check-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-check-square-o:before{content:"\f14a"}.la.la-arrows:before{content:"\f0b2"}.la.la-times-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-times-circle-o:before{content:"\f057"}.la.la-check-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-check-circle-o:before{content:"\f058"}.la.la-mail-forward:before{content:"\f064"}.la.la-eye{font-family:'Line Awesome Free';font-weight:400}.la.la-eye-slash{font-family:'Line Awesome Free';font-weight:400}.la.la-warning:before{content:"\f071"}.la.la-calendar:before{content:"\f073"}.la.la-arrows-v:before{content:"\f338"}.la.la-arrows-h:before{content:"\f337"}.la.la-bar-chart{font-family:'Line Awesome Free';font-weight:400}.la.la-bar-chart:before{content:"\f080"}.la.la-bar-chart-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bar-chart-o:before{content:"\f080"}.la.la-twitter-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-gears:before{content:"\f085"}.la.la-thumbs-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-thumbs-o-up:before{content:"\f164"}.la.la-thumbs-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-thumbs-o-down:before{content:"\f165"}.la.la-heart-o{font-family:'Line Awesome Free';font-weight:400}.la.la-heart-o:before{content:"\f004"}.la.la-sign-out:before{content:"\f2f5"}.la.la-linkedin-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-linkedin-square:before{content:"\f08c"}.la.la-thumb-tack:before{content:"\f08d"}.la.la-external-link:before{content:"\f35d"}.la.la-sign-in:before{content:"\f2f6"}.la.la-github-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-lemon-o{font-family:'Line Awesome Free';font-weight:400}.la.la-lemon-o:before{content:"\f094"}.la.la-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-square-o:before{content:"\f0c8"}.la.la-bookmark-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bookmark-o:before{content:"\f02e"}.la.la-twitter{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook:before{content:"\f39e"}.la.la-facebook-f{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-f:before{content:"\f39e"}.la.la-github{font-family:'Line Awesome Brands';font-weight:400}.la.la-credit-card{font-family:'Line Awesome Free';font-weight:400}.la.la-feed:before{content:"\f09e"}.la.la-hdd-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hdd-o:before{content:"\f0a0"}.la.la-hand-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-right:before{content:"\f0a4"}.la.la-hand-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-left:before{content:"\f0a5"}.la.la-hand-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-up:before{content:"\f0a6"}.la.la-hand-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-down:before{content:"\f0a7"}.la.la-arrows-alt:before{content:"\f31e"}.la.la-group:before{content:"\f0c0"}.la.la-chain:before{content:"\f0c1"}.la.la-scissors:before{content:"\f0c4"}.la.la-files-o{font-family:'Line Awesome Free';font-weight:400}.la.la-files-o:before{content:"\f0c5"}.la.la-floppy-o{font-family:'Line Awesome Free';font-weight:400}.la.la-floppy-o:before{content:"\f0c7"}.la.la-navicon:before{content:"\f0c9"}.la.la-reorder:before{content:"\f0c9"}.la.la-pinterest{font-family:'Line Awesome Brands';font-weight:400}.la.la-pinterest-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus:before{content:"\f0d5"}.la.la-money{font-family:'Line Awesome Free';font-weight:400}.la.la-money:before{content:"\f3d1"}.la.la-unsorted:before{content:"\f0dc"}.la.la-sort-desc:before{content:"\f0dd"}.la.la-sort-asc:before{content:"\f0de"}.la.la-linkedin{font-family:'Line Awesome Brands';font-weight:400}.la.la-linkedin:before{content:"\f0e1"}.la.la-rotate-left:before{content:"\f0e2"}.la.la-legal:before{content:"\f0e3"}.la.la-tachometer:before{content:"\f3fd"}.la.la-dashboard:before{content:"\f3fd"}.la.la-comment-o{font-family:'Line Awesome Free';font-weight:400}.la.la-comment-o:before{content:"\f075"}.la.la-comments-o{font-family:'Line Awesome Free';font-weight:400}.la.la-comments-o:before{content:"\f086"}.la.la-flash:before{content:"\f0e7"}.la.la-clipboard{font-family:'Line Awesome Free';font-weight:400}.la.la-paste{font-family:'Line Awesome Free';font-weight:400}.la.la-paste:before{content:"\f328"}.la.la-lightbulb-o{font-family:'Line Awesome Free';font-weight:400}.la.la-lightbulb-o:before{content:"\f0eb"}.la.la-exchange:before{content:"\f362"}.la.la-cloud-download:before{content:"\f381"}.la.la-cloud-upload:before{content:"\f382"}.la.la-bell-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bell-o:before{content:"\f0f3"}.la.la-cutlery:before{content:"\f2e7"}.la.la-file-text-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-text-o:before{content:"\f15c"}.la.la-building-o{font-family:'Line Awesome Free';font-weight:400}.la.la-building-o:before{content:"\f1ad"}.la.la-hospital-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hospital-o:before{content:"\f0f8"}.la.la-tablet:before{content:"\f3fa"}.la.la-mobile:before{content:"\f3cd"}.la.la-mobile-phone:before{content:"\f3cd"}.la.la-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-circle-o:before{content:"\f111"}.la.la-mail-reply:before{content:"\f3e5"}.la.la-github-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-folder-o{font-family:'Line Awesome Free';font-weight:400}.la.la-folder-o:before{content:"\f07b"}.la.la-folder-open-o{font-family:'Line Awesome Free';font-weight:400}.la.la-folder-open-o:before{content:"\f07c"}.la.la-smile-o{font-family:'Line Awesome Free';font-weight:400}.la.la-smile-o:before{content:"\f118"}.la.la-frown-o{font-family:'Line Awesome Free';font-weight:400}.la.la-frown-o:before{content:"\f119"}.la.la-meh-o{font-family:'Line Awesome Free';font-weight:400}.la.la-meh-o:before{content:"\f11a"}.la.la-keyboard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-keyboard-o:before{content:"\f11c"}.la.la-flag-o{font-family:'Line Awesome Free';font-weight:400}.la.la-flag-o:before{content:"\f024"}.la.la-mail-reply-all:before{content:"\f122"}.la.la-star-half-o{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-o:before{content:"\f089"}.la.la-star-half-empty{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-empty:before{content:"\f089"}.la.la-star-half-full{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-full:before{content:"\f089"}.la.la-code-fork:before{content:"\f126"}.la.la-chain-broken:before{content:"\f127"}.la.la-shield:before{content:"\f3ed"}.la.la-calendar-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-o:before{content:"\f133"}.la.la-maxcdn{font-family:'Line Awesome Brands';font-weight:400}.la.la-html5{font-family:'Line Awesome Brands';font-weight:400}.la.la-css3{font-family:'Line Awesome Brands';font-weight:400}.la.la-ticket:before{content:"\f3ff"}.la.la-minus-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-minus-square-o:before{content:"\f146"}.la.la-level-up:before{content:"\f3bf"}.la.la-level-down:before{content:"\f3be"}.la.la-pencil-square:before{content:"\f14b"}.la.la-external-link-square:before{content:"\f360"}.la.la-compass{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-down:before{content:"\f150"}.la.la-toggle-down{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-down:before{content:"\f150"}.la.la-caret-square-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-up:before{content:"\f151"}.la.la-toggle-up{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-up:before{content:"\f151"}.la.la-caret-square-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-right:before{content:"\f152"}.la.la-toggle-right{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-right:before{content:"\f152"}.la.la-eur:before{content:"\f153"}.la.la-euro:before{content:"\f153"}.la.la-gbp:before{content:"\f154"}.la.la-usd:before{content:"\f155"}.la.la-dollar:before{content:"\f155"}.la.la-inr:before{content:"\f156"}.la.la-rupee:before{content:"\f156"}.la.la-jpy:before{content:"\f157"}.la.la-cny:before{content:"\f157"}.la.la-rmb:before{content:"\f157"}.la.la-yen:before{content:"\f157"}.la.la-rub:before{content:"\f158"}.la.la-ruble:before{content:"\f158"}.la.la-rouble:before{content:"\f158"}.la.la-krw:before{content:"\f159"}.la.la-won:before{content:"\f159"}.la.la-btc{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitcoin{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitcoin:before{content:"\f15a"}.la.la-file-text:before{content:"\f15c"}.la.la-sort-alpha-asc:before{content:"\f15d"}.la.la-sort-alpha-desc:before{content:"\f881"}.la.la-sort-amount-asc:before{content:"\f160"}.la.la-sort-amount-desc:before{content:"\f884"}.la.la-sort-numeric-asc:before{content:"\f162"}.la.la-sort-numeric-desc:before{content:"\f886"}.la.la-youtube-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube{font-family:'Line Awesome Brands';font-weight:400}.la.la-xing{font-family:'Line Awesome Brands';font-weight:400}.la.la-xing-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube-play{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube-play:before{content:"\f167"}.la.la-dropbox{font-family:'Line Awesome Brands';font-weight:400}.la.la-stack-overflow{font-family:'Line Awesome Brands';font-weight:400}.la.la-instagram{font-family:'Line Awesome Brands';font-weight:400}.la.la-flickr{font-family:'Line Awesome Brands';font-weight:400}.la.la-adn{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket-square:before{content:"\f171"}.la.la-tumblr{font-family:'Line Awesome Brands';font-weight:400}.la.la-tumblr-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-long-arrow-down:before{content:"\f309"}.la.la-long-arrow-up:before{content:"\f30c"}.la.la-long-arrow-left:before{content:"\f30a"}.la.la-long-arrow-right:before{content:"\f30b"}.la.la-apple{font-family:'Line Awesome Brands';font-weight:400}.la.la-windows{font-family:'Line Awesome Brands';font-weight:400}.la.la-android{font-family:'Line Awesome Brands';font-weight:400}.la.la-linux{font-family:'Line Awesome Brands';font-weight:400}.la.la-dribbble{font-family:'Line Awesome Brands';font-weight:400}.la.la-skype{font-family:'Line Awesome Brands';font-weight:400}.la.la-foursquare{font-family:'Line Awesome Brands';font-weight:400}.la.la-trello{font-family:'Line Awesome Brands';font-weight:400}.la.la-gratipay{font-family:'Line Awesome Brands';font-weight:400}.la.la-gittip{font-family:'Line Awesome Brands';font-weight:400}.la.la-gittip:before{content:"\f184"}.la.la-sun-o{font-family:'Line Awesome Free';font-weight:400}.la.la-sun-o:before{content:"\f185"}.la.la-moon-o{font-family:'Line Awesome Free';font-weight:400}.la.la-moon-o:before{content:"\f186"}.la.la-vk{font-family:'Line Awesome Brands';font-weight:400}.la.la-weibo{font-family:'Line Awesome Brands';font-weight:400}.la.la-renren{font-family:'Line Awesome Brands';font-weight:400}.la.la-pagelines{font-family:'Line Awesome Brands';font-weight:400}.la.la-stack-exchange{font-family:'Line Awesome Brands';font-weight:400}.la.la-arrow-circle-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-right:before{content:"\f35a"}.la.la-arrow-circle-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-left:before{content:"\f359"}.la.la-caret-square-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-left:before{content:"\f191"}.la.la-toggle-left{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-left:before{content:"\f191"}.la.la-dot-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-dot-circle-o:before{content:"\f192"}.la.la-vimeo-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-try:before{content:"\f195"}.la.la-turkish-lira:before{content:"\f195"}.la.la-plus-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-plus-square-o:before{content:"\f0fe"}.la.la-slack{font-family:'Line Awesome Brands';font-weight:400}.la.la-wordpress{font-family:'Line Awesome Brands';font-weight:400}.la.la-openid{font-family:'Line Awesome Brands';font-weight:400}.la.la-institution:before{content:"\f19c"}.la.la-bank:before{content:"\f19c"}.la.la-mortar-board:before{content:"\f19d"}.la.la-yahoo{font-family:'Line Awesome Brands';font-weight:400}.la.la-google{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-stumbleupon-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-stumbleupon{font-family:'Line Awesome Brands';font-weight:400}.la.la-delicious{font-family:'Line Awesome Brands';font-weight:400}.la.la-digg{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper-pp{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-drupal{font-family:'Line Awesome Brands';font-weight:400}.la.la-joomla{font-family:'Line Awesome Brands';font-weight:400}.la.la-spoon:before{content:"\f2e5"}.la.la-behance{font-family:'Line Awesome Brands';font-weight:400}.la.la-behance-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-steam{font-family:'Line Awesome Brands';font-weight:400}.la.la-steam-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-automobile:before{content:"\f1b9"}.la.la-cab:before{content:"\f1ba"}.la.la-envelope-o{font-family:'Line Awesome Free';font-weight:400}.la.la-envelope-o:before{content:"\f0e0"}.la.la-deviantart{font-family:'Line Awesome Brands';font-weight:400}.la.la-soundcloud{font-family:'Line Awesome Brands';font-weight:400}.la.la-file-pdf-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-pdf-o:before{content:"\f1c1"}.la.la-file-word-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-word-o:before{content:"\f1c2"}.la.la-file-excel-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-excel-o:before{content:"\f1c3"}.la.la-file-powerpoint-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-powerpoint-o:before{content:"\f1c4"}.la.la-file-image-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-image-o:before{content:"\f1c5"}.la.la-file-photo-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-photo-o:before{content:"\f1c5"}.la.la-file-picture-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-picture-o:before{content:"\f1c5"}.la.la-file-archive-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-archive-o:before{content:"\f1c6"}.la.la-file-zip-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-zip-o:before{content:"\f1c6"}.la.la-file-audio-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-audio-o:before{content:"\f1c7"}.la.la-file-sound-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-sound-o:before{content:"\f1c7"}.la.la-file-video-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-video-o:before{content:"\f1c8"}.la.la-file-movie-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-movie-o:before{content:"\f1c8"}.la.la-file-code-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-code-o:before{content:"\f1c9"}.la.la-vine{font-family:'Line Awesome Brands';font-weight:400}.la.la-codepen{font-family:'Line Awesome Brands';font-weight:400}.la.la-jsfiddle{font-family:'Line Awesome Brands';font-weight:400}.la.la-life-ring{font-family:'Line Awesome Free';font-weight:400}.la.la-life-bouy{font-family:'Line Awesome Free';font-weight:400}.la.la-life-bouy:before{content:"\f1cd"}.la.la-life-buoy{font-family:'Line Awesome Free';font-weight:400}.la.la-life-buoy:before{content:"\f1cd"}.la.la-life-saver{font-family:'Line Awesome Free';font-weight:400}.la.la-life-saver:before{content:"\f1cd"}.la.la-support{font-family:'Line Awesome Free';font-weight:400}.la.la-support:before{content:"\f1cd"}.la.la-circle-o-notch:before{content:"\f1ce"}.la.la-rebel{font-family:'Line Awesome Brands';font-weight:400}.la.la-ra{font-family:'Line Awesome Brands';font-weight:400}.la.la-ra:before{content:"\f1d0"}.la.la-resistance{font-family:'Line Awesome Brands';font-weight:400}.la.la-resistance:before{content:"\f1d0"}.la.la-empire{font-family:'Line Awesome Brands';font-weight:400}.la.la-ge{font-family:'Line Awesome Brands';font-weight:400}.la.la-ge:before{content:"\f1d1"}.la.la-git-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-git{font-family:'Line Awesome Brands';font-weight:400}.la.la-hacker-news{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator-square:before{content:"\f1d4"}.la.la-yc-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc-square:before{content:"\f1d4"}.la.la-tencent-weibo{font-family:'Line Awesome Brands';font-weight:400}.la.la-qq{font-family:'Line Awesome Brands';font-weight:400}.la.la-weixin{font-family:'Line Awesome Brands';font-weight:400}.la.la-wechat{font-family:'Line Awesome Brands';font-weight:400}.la.la-wechat:before{content:"\f1d7"}.la.la-send:before{content:"\f1d8"}.la.la-paper-plane-o{font-family:'Line Awesome Free';font-weight:400}.la.la-paper-plane-o:before{content:"\f1d8"}.la.la-send-o{font-family:'Line Awesome Free';font-weight:400}.la.la-send-o:before{content:"\f1d8"}.la.la-circle-thin{font-family:'Line Awesome Free';font-weight:400}.la.la-circle-thin:before{content:"\f111"}.la.la-header:before{content:"\f1dc"}.la.la-sliders:before{content:"\f1de"}.la.la-futbol-o{font-family:'Line Awesome Free';font-weight:400}.la.la-futbol-o:before{content:"\f1e3"}.la.la-soccer-ball-o{font-family:'Line Awesome Free';font-weight:400}.la.la-soccer-ball-o:before{content:"\f1e3"}.la.la-slideshare{font-family:'Line Awesome Brands';font-weight:400}.la.la-twitch{font-family:'Line Awesome Brands';font-weight:400}.la.la-yelp{font-family:'Line Awesome Brands';font-weight:400}.la.la-newspaper-o{font-family:'Line Awesome Free';font-weight:400}.la.la-newspaper-o:before{content:"\f1ea"}.la.la-paypal{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-wallet{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-visa{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-mastercard{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-discover{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-amex{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-paypal{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-stripe{font-family:'Line Awesome Brands';font-weight:400}.la.la-bell-slash-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bell-slash-o:before{content:"\f1f6"}.la.la-trash:before{content:"\f2ed"}.la.la-copyright{font-family:'Line Awesome Free';font-weight:400}.la.la-eyedropper:before{content:"\f1fb"}.la.la-area-chart:before{content:"\f1fe"}.la.la-pie-chart:before{content:"\f200"}.la.la-line-chart:before{content:"\f201"}.la.la-lastfm{font-family:'Line Awesome Brands';font-weight:400}.la.la-lastfm-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-ioxhost{font-family:'Line Awesome Brands';font-weight:400}.la.la-angellist{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc{font-family:'Line Awesome Free';font-weight:400}.la.la-cc:before{content:"\f20a"}.la.la-ils:before{content:"\f20b"}.la.la-shekel:before{content:"\f20b"}.la.la-sheqel:before{content:"\f20b"}.la.la-meanpath{font-family:'Line Awesome Brands';font-weight:400}.la.la-meanpath:before{content:"\f2b4"}.la.la-buysellads{font-family:'Line Awesome Brands';font-weight:400}.la.la-connectdevelop{font-family:'Line Awesome Brands';font-weight:400}.la.la-dashcube{font-family:'Line Awesome Brands';font-weight:400}.la.la-forumbee{font-family:'Line Awesome Brands';font-weight:400}.la.la-leanpub{font-family:'Line Awesome Brands';font-weight:400}.la.la-sellsy{font-family:'Line Awesome Brands';font-weight:400}.la.la-shirtsinbulk{font-family:'Line Awesome Brands';font-weight:400}.la.la-simplybuilt{font-family:'Line Awesome Brands';font-weight:400}.la.la-skyatlas{font-family:'Line Awesome Brands';font-weight:400}.la.la-diamond{font-family:'Line Awesome Free';font-weight:400}.la.la-diamond:before{content:"\f3a5"}.la.la-intersex:before{content:"\f224"}.la.la-facebook-official{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-official:before{content:"\f09a"}.la.la-pinterest-p{font-family:'Line Awesome Brands';font-weight:400}.la.la-whatsapp{font-family:'Line Awesome Brands';font-weight:400}.la.la-hotel:before{content:"\f236"}.la.la-viacoin{font-family:'Line Awesome Brands';font-weight:400}.la.la-medium{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc:before{content:"\f23b"}.la.la-optin-monster{font-family:'Line Awesome Brands';font-weight:400}.la.la-opencart{font-family:'Line Awesome Brands';font-weight:400}.la.la-expeditedssl{font-family:'Line Awesome Brands';font-weight:400}.la.la-battery-4:before{content:"\f240"}.la.la-battery:before{content:"\f240"}.la.la-battery-3:before{content:"\f241"}.la.la-battery-2:before{content:"\f242"}.la.la-battery-1:before{content:"\f243"}.la.la-battery-0:before{content:"\f244"}.la.la-object-group{font-family:'Line Awesome Free';font-weight:400}.la.la-object-ungroup{font-family:'Line Awesome Free';font-weight:400}.la.la-sticky-note-o{font-family:'Line Awesome Free';font-weight:400}.la.la-sticky-note-o:before{content:"\f249"}.la.la-cc-jcb{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-diners-club{font-family:'Line Awesome Brands';font-weight:400}.la.la-clone{font-family:'Line Awesome Free';font-weight:400}.la.la-hourglass-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hourglass-o:before{content:"\f254"}.la.la-hourglass-1:before{content:"\f251"}.la.la-hourglass-2:before{content:"\f252"}.la.la-hourglass-3:before{content:"\f253"}.la.la-hand-rock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-rock-o:before{content:"\f255"}.la.la-hand-grab-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-grab-o:before{content:"\f255"}.la.la-hand-paper-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-paper-o:before{content:"\f256"}.la.la-hand-stop-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-stop-o:before{content:"\f256"}.la.la-hand-scissors-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-scissors-o:before{content:"\f257"}.la.la-hand-lizard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-lizard-o:before{content:"\f258"}.la.la-hand-spock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-spock-o:before{content:"\f259"}.la.la-hand-pointer-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-pointer-o:before{content:"\f25a"}.la.la-hand-peace-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-peace-o:before{content:"\f25b"}.la.la-registered{font-family:'Line Awesome Free';font-weight:400}.la.la-creative-commons{font-family:'Line Awesome Brands';font-weight:400}.la.la-gg{font-family:'Line Awesome Brands';font-weight:400}.la.la-gg-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-tripadvisor{font-family:'Line Awesome Brands';font-weight:400}.la.la-odnoklassniki{font-family:'Line Awesome Brands';font-weight:400}.la.la-odnoklassniki-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-get-pocket{font-family:'Line Awesome Brands';font-weight:400}.la.la-wikipedia-w{font-family:'Line Awesome Brands';font-weight:400}.la.la-safari{font-family:'Line Awesome Brands';font-weight:400}.la.la-chrome{font-family:'Line Awesome Brands';font-weight:400}.la.la-firefox{font-family:'Line Awesome Brands';font-weight:400}.la.la-opera{font-family:'Line Awesome Brands';font-weight:400}.la.la-internet-explorer{font-family:'Line Awesome Brands';font-weight:400}.la.la-television:before{content:"\f26c"}.la.la-contao{font-family:'Line Awesome Brands';font-weight:400}.la.la-500px{font-family:'Line Awesome Brands';font-weight:400}.la.la-amazon{font-family:'Line Awesome Brands';font-weight:400}.la.la-calendar-plus-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-plus-o:before{content:"\f271"}.la.la-calendar-minus-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-minus-o:before{content:"\f272"}.la.la-calendar-times-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-times-o:before{content:"\f273"}.la.la-calendar-check-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-check-o:before{content:"\f274"}.la.la-map-o{font-family:'Line Awesome Free';font-weight:400}.la.la-map-o:before{content:"\f279"}.la.la-commenting:before{content:"\f4ad"}.la.la-commenting-o{font-family:'Line Awesome Free';font-weight:400}.la.la-commenting-o:before{content:"\f4ad"}.la.la-houzz{font-family:'Line Awesome Brands';font-weight:400}.la.la-vimeo{font-family:'Line Awesome Brands';font-weight:400}.la.la-vimeo:before{content:"\f27d"}.la.la-black-tie{font-family:'Line Awesome Brands';font-weight:400}.la.la-fonticons{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit-alien{font-family:'Line Awesome Brands';font-weight:400}.la.la-edge{font-family:'Line Awesome Brands';font-weight:400}.la.la-credit-card-alt:before{content:"\f09d"}.la.la-codiepie{font-family:'Line Awesome Brands';font-weight:400}.la.la-modx{font-family:'Line Awesome Brands';font-weight:400}.la.la-fort-awesome{font-family:'Line Awesome Brands';font-weight:400}.la.la-usb{font-family:'Line Awesome Brands';font-weight:400}.la.la-product-hunt{font-family:'Line Awesome Brands';font-weight:400}.la.la-mixcloud{font-family:'Line Awesome Brands';font-weight:400}.la.la-scribd{font-family:'Line Awesome Brands';font-weight:400}.la.la-pause-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-pause-circle-o:before{content:"\f28b"}.la.la-stop-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-stop-circle-o:before{content:"\f28d"}.la.la-bluetooth{font-family:'Line Awesome Brands';font-weight:400}.la.la-bluetooth-b{font-family:'Line Awesome Brands';font-weight:400}.la.la-gitlab{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpbeginner{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpforms{font-family:'Line Awesome Brands';font-weight:400}.la.la-envira{font-family:'Line Awesome Brands';font-weight:400}.la.la-wheelchair-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-wheelchair-alt:before{content:"\f368"}.la.la-question-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-question-circle-o:before{content:"\f059"}.la.la-volume-control-phone:before{content:"\f2a0"}.la.la-asl-interpreting:before{content:"\f2a3"}.la.la-deafness:before{content:"\f2a4"}.la.la-hard-of-hearing:before{content:"\f2a4"}.la.la-glide{font-family:'Line Awesome Brands';font-weight:400}.la.la-glide-g{font-family:'Line Awesome Brands';font-weight:400}.la.la-signing:before{content:"\f2a7"}.la.la-viadeo{font-family:'Line Awesome Brands';font-weight:400}.la.la-viadeo-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat-ghost{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper{font-family:'Line Awesome Brands';font-weight:400}.la.la-first-order{font-family:'Line Awesome Brands';font-weight:400}.la.la-yoast{font-family:'Line Awesome Brands';font-weight:400}.la.la-themeisle{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-official{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-official:before{content:"\f2b3"}.la.la-google-plus-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-circle:before{content:"\f2b3"}.la.la-font-awesome{font-family:'Line Awesome Brands';font-weight:400}.la.la-fa{font-family:'Line Awesome Brands';font-weight:400}.la.la-fa:before{content:"\f2b4"}.la.la-handshake-o{font-family:'Line Awesome Free';font-weight:400}.la.la-handshake-o:before{content:"\f2b5"}.la.la-envelope-open-o{font-family:'Line Awesome Free';font-weight:400}.la.la-envelope-open-o:before{content:"\f2b6"}.la.la-linode{font-family:'Line Awesome Brands';font-weight:400}.la.la-address-book-o{font-family:'Line Awesome Free';font-weight:400}.la.la-address-book-o:before{content:"\f2b9"}.la.la-vcard:before{content:"\f2bb"}.la.la-address-card-o{font-family:'Line Awesome Free';font-weight:400}.la.la-address-card-o:before{content:"\f2bb"}.la.la-vcard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-vcard-o:before{content:"\f2bb"}.la.la-user-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-user-circle-o:before{content:"\f2bd"}.la.la-user-o{font-family:'Line Awesome Free';font-weight:400}.la.la-user-o:before{content:"\f007"}.la.la-id-badge{font-family:'Line Awesome Free';font-weight:400}.la.la-drivers-license:before{content:"\f2c2"}.la.la-id-card-o{font-family:'Line Awesome Free';font-weight:400}.la.la-id-card-o:before{content:"\f2c2"}.la.la-drivers-license-o{font-family:'Line Awesome Free';font-weight:400}.la.la-drivers-license-o:before{content:"\f2c2"}.la.la-quora{font-family:'Line Awesome Brands';font-weight:400}.la.la-free-code-camp{font-family:'Line Awesome Brands';font-weight:400}.la.la-telegram{font-family:'Line Awesome Brands';font-weight:400}.la.la-thermometer-4:before{content:"\f2c7"}.la.la-thermometer:before{content:"\f2c7"}.la.la-thermometer-3:before{content:"\f2c8"}.la.la-thermometer-2:before{content:"\f2c9"}.la.la-thermometer-1:before{content:"\f2ca"}.la.la-thermometer-0:before{content:"\f2cb"}.la.la-bathtub:before{content:"\f2cd"}.la.la-s15:before{content:"\f2cd"}.la.la-window-maximize{font-family:'Line Awesome Free';font-weight:400}.la.la-window-restore{font-family:'Line Awesome Free';font-weight:400}.la.la-times-rectangle:before{content:"\f410"}.la.la-window-close-o{font-family:'Line Awesome Free';font-weight:400}.la.la-window-close-o:before{content:"\f410"}.la.la-times-rectangle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-times-rectangle-o:before{content:"\f410"}.la.la-bandcamp{font-family:'Line Awesome Brands';font-weight:400}.la.la-grav{font-family:'Line Awesome Brands';font-weight:400}.la.la-etsy{font-family:'Line Awesome Brands';font-weight:400}.la.la-imdb{font-family:'Line Awesome Brands';font-weight:400}.la.la-ravelry{font-family:'Line Awesome Brands';font-weight:400}.la.la-eercast{font-family:'Line Awesome Brands';font-weight:400}.la.la-eercast:before{content:"\f2da"}.la.la-snowflake-o{font-family:'Line Awesome Free';font-weight:400}.la.la-snowflake-o:before{content:"\f2dc"}.la.la-superpowers{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpexplorer{font-family:'Line Awesome Brands';font-weight:400}.la.la-spotify{font-family:'Line Awesome Brands';font-weight:400} diff --git a/src/main/resources/static/css/materialdesignicons.min.css b/src/main/resources/static/css/materialdesignicons.min.css new file mode 100644 index 0000000..c197fb5 --- /dev/null +++ b/src/main/resources/static/css/materialdesignicons.min.css @@ -0,0 +1,10203 @@ +/* MaterialDesignIcons.com */ +@font-face { + font-family: "Material Design Icons"; + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot?v=2.4.85"); + src: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot?#iefix&v=2.4.85") format("embedded-opentype"), url("../font/materialdesignicons-webfont.woff2") format("woff2"), url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff?v=2.4.85") format("woff"), url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf?v=2.4.85") format("truetype"), url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.svg?v=2.4.85#materialdesigniconsregular") format("svg"); + font-weight: normal; + font-style: normal; +} +.mdi:before, +.mdi-set { + display: inline-block; + font: normal normal normal 24px/1 "Material Design Icons"; + font-size: inherit; + text-rendering: auto; + line-height: inherit; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.mdi-access-point:before { + content: "\F002"; +} + +.mdi-access-point-network:before { + content: "\F003"; +} + +.mdi-account:before { + content: "\F004"; +} + +.mdi-account-alert:before { + content: "\F005"; +} + +.mdi-account-box:before { + content: "\F006"; +} + +.mdi-account-box-multiple:before { + content: "\F933"; +} + +.mdi-account-box-outline:before { + content: "\F007"; +} + +.mdi-account-card-details:before { + content: "\F5D2"; +} + +.mdi-account-check:before { + content: "\F008"; +} + +.mdi-account-circle:before { + content: "\F009"; +} + +.mdi-account-convert:before { + content: "\F00A"; +} + +.mdi-account-edit:before { + content: "\F6BB"; +} + +.mdi-account-group:before { + content: "\F848"; +} + +.mdi-account-heart:before { + content: "\F898"; +} + +.mdi-account-key:before { + content: "\F00B"; +} + +.mdi-account-location:before { + content: "\F00C"; +} + +.mdi-account-minus:before { + content: "\F00D"; +} + +.mdi-account-multiple:before { + content: "\F00E"; +} + +.mdi-account-multiple-check:before { + content: "\F8C4"; +} + +.mdi-account-multiple-minus:before { + content: "\F5D3"; +} + +.mdi-account-multiple-outline:before { + content: "\F00F"; +} + +.mdi-account-multiple-plus:before { + content: "\F010"; +} + +.mdi-account-multiple-plus-outline:before { + content: "\F7FF"; +} + +.mdi-account-network:before { + content: "\F011"; +} + +.mdi-account-off:before { + content: "\F012"; +} + +.mdi-account-outline:before { + content: "\F013"; +} + +.mdi-account-plus:before { + content: "\F014"; +} + +.mdi-account-plus-outline:before { + content: "\F800"; +} + +.mdi-account-remove:before { + content: "\F015"; +} + +.mdi-account-search:before { + content: "\F016"; +} + +.mdi-account-search-outline:before { + content: "\F934"; +} + +.mdi-account-settings:before { + content: "\F630"; +} + +.mdi-account-settings-variant:before { + content: "\F631"; +} + +.mdi-account-star:before { + content: "\F017"; +} + +.mdi-account-switch:before { + content: "\F019"; +} + +.mdi-accusoft:before { + content: "\F849"; +} + +.mdi-adjust:before { + content: "\F01A"; +} + +.mdi-adobe:before { + content: "\F935"; +} + +.mdi-air-conditioner:before { + content: "\F01B"; +} + +.mdi-airballoon:before { + content: "\F01C"; +} + +.mdi-airplane:before { + content: "\F01D"; +} + +.mdi-airplane-landing:before { + content: "\F5D4"; +} + +.mdi-airplane-off:before { + content: "\F01E"; +} + +.mdi-airplane-takeoff:before { + content: "\F5D5"; +} + +.mdi-airplay:before { + content: "\F01F"; +} + +.mdi-airport:before { + content: "\F84A"; +} + +.mdi-alarm:before { + content: "\F020"; +} + +.mdi-alarm-bell:before { + content: "\F78D"; +} + +.mdi-alarm-check:before { + content: "\F021"; +} + +.mdi-alarm-light:before { + content: "\F78E"; +} + +.mdi-alarm-multiple:before { + content: "\F022"; +} + +.mdi-alarm-off:before { + content: "\F023"; +} + +.mdi-alarm-plus:before { + content: "\F024"; +} + +.mdi-alarm-snooze:before { + content: "\F68D"; +} + +.mdi-album:before { + content: "\F025"; +} + +.mdi-alert:before { + content: "\F026"; +} + +.mdi-alert-box:before { + content: "\F027"; +} + +.mdi-alert-circle:before { + content: "\F028"; +} + +.mdi-alert-circle-outline:before { + content: "\F5D6"; +} + +.mdi-alert-decagram:before { + content: "\F6BC"; +} + +.mdi-alert-octagon:before { + content: "\F029"; +} + +.mdi-alert-octagram:before { + content: "\F766"; +} + +.mdi-alert-outline:before { + content: "\F02A"; +} + +.mdi-alien:before { + content: "\F899"; +} + +.mdi-all-inclusive:before { + content: "\F6BD"; +} + +.mdi-alpha:before { + content: "\F02B"; +} + +.mdi-alphabetical:before { + content: "\F02C"; +} + +.mdi-altimeter:before { + content: "\F5D7"; +} + +.mdi-amazon:before { + content: "\F02D"; +} + +.mdi-amazon-alexa:before { + content: "\F8C5"; +} + +.mdi-amazon-drive:before { + content: "\F02E"; +} + +.mdi-ambulance:before { + content: "\F02F"; +} + +.mdi-amplifier:before { + content: "\F030"; +} + +.mdi-anchor:before { + content: "\F031"; +} + +.mdi-android:before { + content: "\F032"; +} + +.mdi-android-debug-bridge:before { + content: "\F033"; +} + +.mdi-android-head:before { + content: "\F78F"; +} + +.mdi-android-studio:before { + content: "\F034"; +} + +.mdi-angle-acute:before { + content: "\F936"; +} + +.mdi-angle-obtuse:before { + content: "\F937"; +} + +.mdi-angle-right:before { + content: "\F938"; +} + +.mdi-angular:before { + content: "\F6B1"; +} + +.mdi-angularjs:before { + content: "\F6BE"; +} + +.mdi-animation:before { + content: "\F5D8"; +} + +.mdi-animation-play:before { + content: "\F939"; +} + +.mdi-anvil:before { + content: "\F89A"; +} + +.mdi-apple:before { + content: "\F035"; +} + +.mdi-apple-finder:before { + content: "\F036"; +} + +.mdi-apple-icloud:before { + content: "\F038"; +} + +.mdi-apple-ios:before { + content: "\F037"; +} + +.mdi-apple-keyboard-caps:before { + content: "\F632"; +} + +.mdi-apple-keyboard-command:before { + content: "\F633"; +} + +.mdi-apple-keyboard-control:before { + content: "\F634"; +} + +.mdi-apple-keyboard-option:before { + content: "\F635"; +} + +.mdi-apple-keyboard-shift:before { + content: "\F636"; +} + +.mdi-apple-safari:before { + content: "\F039"; +} + +.mdi-application:before { + content: "\F614"; +} + +.mdi-approval:before { + content: "\F790"; +} + +.mdi-apps:before { + content: "\F03B"; +} + +.mdi-arch:before { + content: "\F8C6"; +} + +.mdi-archive:before { + content: "\F03C"; +} + +.mdi-arrange-bring-forward:before { + content: "\F03D"; +} + +.mdi-arrange-bring-to-front:before { + content: "\F03E"; +} + +.mdi-arrange-send-backward:before { + content: "\F03F"; +} + +.mdi-arrange-send-to-back:before { + content: "\F040"; +} + +.mdi-arrow-all:before { + content: "\F041"; +} + +.mdi-arrow-bottom-left:before { + content: "\F042"; +} + +.mdi-arrow-bottom-right:before { + content: "\F043"; +} + +.mdi-arrow-collapse:before { + content: "\F615"; +} + +.mdi-arrow-collapse-all:before { + content: "\F044"; +} + +.mdi-arrow-collapse-down:before { + content: "\F791"; +} + +.mdi-arrow-collapse-horizontal:before { + content: "\F84B"; +} + +.mdi-arrow-collapse-left:before { + content: "\F792"; +} + +.mdi-arrow-collapse-right:before { + content: "\F793"; +} + +.mdi-arrow-collapse-up:before { + content: "\F794"; +} + +.mdi-arrow-collapse-vertical:before { + content: "\F84C"; +} + +.mdi-arrow-down:before { + content: "\F045"; +} + +.mdi-arrow-down-bold:before { + content: "\F72D"; +} + +.mdi-arrow-down-bold-box:before { + content: "\F72E"; +} + +.mdi-arrow-down-bold-box-outline:before { + content: "\F72F"; +} + +.mdi-arrow-down-bold-circle:before { + content: "\F047"; +} + +.mdi-arrow-down-bold-circle-outline:before { + content: "\F048"; +} + +.mdi-arrow-down-bold-hexagon-outline:before { + content: "\F049"; +} + +.mdi-arrow-down-box:before { + content: "\F6BF"; +} + +.mdi-arrow-down-drop-circle:before { + content: "\F04A"; +} + +.mdi-arrow-down-drop-circle-outline:before { + content: "\F04B"; +} + +.mdi-arrow-down-thick:before { + content: "\F046"; +} + +.mdi-arrow-expand:before { + content: "\F616"; +} + +.mdi-arrow-expand-all:before { + content: "\F04C"; +} + +.mdi-arrow-expand-down:before { + content: "\F795"; +} + +.mdi-arrow-expand-horizontal:before { + content: "\F84D"; +} + +.mdi-arrow-expand-left:before { + content: "\F796"; +} + +.mdi-arrow-expand-right:before { + content: "\F797"; +} + +.mdi-arrow-expand-up:before { + content: "\F798"; +} + +.mdi-arrow-expand-vertical:before { + content: "\F84E"; +} + +.mdi-arrow-left:before { + content: "\F04D"; +} + +.mdi-arrow-left-bold:before { + content: "\F730"; +} + +.mdi-arrow-left-bold-box:before { + content: "\F731"; +} + +.mdi-arrow-left-bold-box-outline:before { + content: "\F732"; +} + +.mdi-arrow-left-bold-circle:before { + content: "\F04F"; +} + +.mdi-arrow-left-bold-circle-outline:before { + content: "\F050"; +} + +.mdi-arrow-left-bold-hexagon-outline:before { + content: "\F051"; +} + +.mdi-arrow-left-box:before { + content: "\F6C0"; +} + +.mdi-arrow-left-drop-circle:before { + content: "\F052"; +} + +.mdi-arrow-left-drop-circle-outline:before { + content: "\F053"; +} + +.mdi-arrow-left-thick:before { + content: "\F04E"; +} + +.mdi-arrow-right:before { + content: "\F054"; +} + +.mdi-arrow-right-bold:before { + content: "\F733"; +} + +.mdi-arrow-right-bold-box:before { + content: "\F734"; +} + +.mdi-arrow-right-bold-box-outline:before { + content: "\F735"; +} + +.mdi-arrow-right-bold-circle:before { + content: "\F056"; +} + +.mdi-arrow-right-bold-circle-outline:before { + content: "\F057"; +} + +.mdi-arrow-right-bold-hexagon-outline:before { + content: "\F058"; +} + +.mdi-arrow-right-box:before { + content: "\F6C1"; +} + +.mdi-arrow-right-drop-circle:before { + content: "\F059"; +} + +.mdi-arrow-right-drop-circle-outline:before { + content: "\F05A"; +} + +.mdi-arrow-right-thick:before { + content: "\F055"; +} + +.mdi-arrow-split-horizontal:before { + content: "\F93A"; +} + +.mdi-arrow-split-vertical:before { + content: "\F93B"; +} + +.mdi-arrow-top-left:before { + content: "\F05B"; +} + +.mdi-arrow-top-right:before { + content: "\F05C"; +} + +.mdi-arrow-up:before { + content: "\F05D"; +} + +.mdi-arrow-up-bold:before { + content: "\F736"; +} + +.mdi-arrow-up-bold-box:before { + content: "\F737"; +} + +.mdi-arrow-up-bold-box-outline:before { + content: "\F738"; +} + +.mdi-arrow-up-bold-circle:before { + content: "\F05F"; +} + +.mdi-arrow-up-bold-circle-outline:before { + content: "\F060"; +} + +.mdi-arrow-up-bold-hexagon-outline:before { + content: "\F061"; +} + +.mdi-arrow-up-box:before { + content: "\F6C2"; +} + +.mdi-arrow-up-drop-circle:before { + content: "\F062"; +} + +.mdi-arrow-up-drop-circle-outline:before { + content: "\F063"; +} + +.mdi-arrow-up-thick:before { + content: "\F05E"; +} + +.mdi-artist:before { + content: "\F802"; +} + +.mdi-assistant:before { + content: "\F064"; +} + +.mdi-asterisk:before { + content: "\F6C3"; +} + +.mdi-at:before { + content: "\F065"; +} + +.mdi-atlassian:before { + content: "\F803"; +} + +.mdi-atom:before { + content: "\F767"; +} + +.mdi-attachment:before { + content: "\F066"; +} + +.mdi-audio-video:before { + content: "\F93C"; +} + +.mdi-audiobook:before { + content: "\F067"; +} + +.mdi-augmented-reality:before { + content: "\F84F"; +} + +.mdi-auto-fix:before { + content: "\F068"; +} + +.mdi-auto-upload:before { + content: "\F069"; +} + +.mdi-autorenew:before { + content: "\F06A"; +} + +.mdi-av-timer:before { + content: "\F06B"; +} + +.mdi-axe:before { + content: "\F8C7"; +} + +.mdi-azure:before { + content: "\F804"; +} + +.mdi-baby:before { + content: "\F06C"; +} + +.mdi-baby-buggy:before { + content: "\F68E"; +} + +.mdi-backburger:before { + content: "\F06D"; +} + +.mdi-backspace:before { + content: "\F06E"; +} + +.mdi-backup-restore:before { + content: "\F06F"; +} + +.mdi-badminton:before { + content: "\F850"; +} + +.mdi-bandcamp:before { + content: "\F674"; +} + +.mdi-bank:before { + content: "\F070"; +} + +.mdi-barcode:before { + content: "\F071"; +} + +.mdi-barcode-scan:before { + content: "\F072"; +} + +.mdi-barley:before { + content: "\F073"; +} + +.mdi-barrel:before { + content: "\F074"; +} + +.mdi-baseball:before { + content: "\F851"; +} + +.mdi-baseball-bat:before { + content: "\F852"; +} + +.mdi-basecamp:before { + content: "\F075"; +} + +.mdi-basket:before { + content: "\F076"; +} + +.mdi-basket-fill:before { + content: "\F077"; +} + +.mdi-basket-unfill:before { + content: "\F078"; +} + +.mdi-basketball:before { + content: "\F805"; +} + +.mdi-battery:before { + content: "\F079"; +} + +.mdi-battery-10:before { + content: "\F07A"; +} + +.mdi-battery-10-bluetooth:before { + content: "\F93D"; +} + +.mdi-battery-20:before { + content: "\F07B"; +} + +.mdi-battery-20-bluetooth:before { + content: "\F93E"; +} + +.mdi-battery-30:before { + content: "\F07C"; +} + +.mdi-battery-30-bluetooth:before { + content: "\F93F"; +} + +.mdi-battery-40:before { + content: "\F07D"; +} + +.mdi-battery-40-bluetooth:before { + content: "\F940"; +} + +.mdi-battery-50:before { + content: "\F07E"; +} + +.mdi-battery-50-bluetooth:before { + content: "\F941"; +} + +.mdi-battery-60:before { + content: "\F07F"; +} + +.mdi-battery-60-bluetooth:before { + content: "\F942"; +} + +.mdi-battery-70:before { + content: "\F080"; +} + +.mdi-battery-70-bluetooth:before { + content: "\F943"; +} + +.mdi-battery-80:before { + content: "\F081"; +} + +.mdi-battery-80-bluetooth:before { + content: "\F944"; +} + +.mdi-battery-90:before { + content: "\F082"; +} + +.mdi-battery-90-bluetooth:before { + content: "\F945"; +} + +.mdi-battery-alert:before { + content: "\F083"; +} + +.mdi-battery-alert-bluetooth:before { + content: "\F946"; +} + +.mdi-battery-bluetooth:before { + content: "\F947"; +} + +.mdi-battery-bluetooth-variant:before { + content: "\F948"; +} + +.mdi-battery-charging:before { + content: "\F084"; +} + +.mdi-battery-charging-10:before { + content: "\F89B"; +} + +.mdi-battery-charging-100:before { + content: "\F085"; +} + +.mdi-battery-charging-20:before { + content: "\F086"; +} + +.mdi-battery-charging-30:before { + content: "\F087"; +} + +.mdi-battery-charging-40:before { + content: "\F088"; +} + +.mdi-battery-charging-50:before { + content: "\F89C"; +} + +.mdi-battery-charging-60:before { + content: "\F089"; +} + +.mdi-battery-charging-70:before { + content: "\F89D"; +} + +.mdi-battery-charging-80:before { + content: "\F08A"; +} + +.mdi-battery-charging-90:before { + content: "\F08B"; +} + +.mdi-battery-charging-outline:before { + content: "\F89E"; +} + +.mdi-battery-charging-wireless:before { + content: "\F806"; +} + +.mdi-battery-charging-wireless-10:before { + content: "\F807"; +} + +.mdi-battery-charging-wireless-20:before { + content: "\F808"; +} + +.mdi-battery-charging-wireless-30:before { + content: "\F809"; +} + +.mdi-battery-charging-wireless-40:before { + content: "\F80A"; +} + +.mdi-battery-charging-wireless-50:before { + content: "\F80B"; +} + +.mdi-battery-charging-wireless-60:before { + content: "\F80C"; +} + +.mdi-battery-charging-wireless-70:before { + content: "\F80D"; +} + +.mdi-battery-charging-wireless-80:before { + content: "\F80E"; +} + +.mdi-battery-charging-wireless-90:before { + content: "\F80F"; +} + +.mdi-battery-charging-wireless-alert:before { + content: "\F810"; +} + +.mdi-battery-charging-wireless-outline:before { + content: "\F811"; +} + +.mdi-battery-minus:before { + content: "\F08C"; +} + +.mdi-battery-negative:before { + content: "\F08D"; +} + +.mdi-battery-outline:before { + content: "\F08E"; +} + +.mdi-battery-plus:before { + content: "\F08F"; +} + +.mdi-battery-positive:before { + content: "\F090"; +} + +.mdi-battery-unknown:before { + content: "\F091"; +} + +.mdi-battery-unknown-bluetooth:before { + content: "\F949"; +} + +.mdi-beach:before { + content: "\F092"; +} + +.mdi-beaker:before { + content: "\F68F"; +} + +.mdi-beats:before { + content: "\F097"; +} + +.mdi-bed-empty:before { + content: "\F89F"; +} + +.mdi-beer:before { + content: "\F098"; +} + +.mdi-behance:before { + content: "\F099"; +} + +.mdi-bell:before { + content: "\F09A"; +} + +.mdi-bell-off:before { + content: "\F09B"; +} + +.mdi-bell-outline:before { + content: "\F09C"; +} + +.mdi-bell-plus:before { + content: "\F09D"; +} + +.mdi-bell-ring:before { + content: "\F09E"; +} + +.mdi-bell-ring-outline:before { + content: "\F09F"; +} + +.mdi-bell-sleep:before { + content: "\F0A0"; +} + +.mdi-beta:before { + content: "\F0A1"; +} + +.mdi-bible:before { + content: "\F0A2"; +} + +.mdi-bike:before { + content: "\F0A3"; +} + +.mdi-bing:before { + content: "\F0A4"; +} + +.mdi-binoculars:before { + content: "\F0A5"; +} + +.mdi-bio:before { + content: "\F0A6"; +} + +.mdi-biohazard:before { + content: "\F0A7"; +} + +.mdi-bitbucket:before { + content: "\F0A8"; +} + +.mdi-bitcoin:before { + content: "\F812"; +} + +.mdi-black-mesa:before { + content: "\F0A9"; +} + +.mdi-blackberry:before { + content: "\F0AA"; +} + +.mdi-blender:before { + content: "\F0AB"; +} + +.mdi-blinds:before { + content: "\F0AC"; +} + +.mdi-block-helper:before { + content: "\F0AD"; +} + +.mdi-blogger:before { + content: "\F0AE"; +} + +.mdi-bluetooth:before { + content: "\F0AF"; +} + +.mdi-bluetooth-audio:before { + content: "\F0B0"; +} + +.mdi-bluetooth-connect:before { + content: "\F0B1"; +} + +.mdi-bluetooth-off:before { + content: "\F0B2"; +} + +.mdi-bluetooth-settings:before { + content: "\F0B3"; +} + +.mdi-bluetooth-transfer:before { + content: "\F0B4"; +} + +.mdi-blur:before { + content: "\F0B5"; +} + +.mdi-blur-linear:before { + content: "\F0B6"; +} + +.mdi-blur-off:before { + content: "\F0B7"; +} + +.mdi-blur-radial:before { + content: "\F0B8"; +} + +.mdi-bomb:before { + content: "\F690"; +} + +.mdi-bomb-off:before { + content: "\F6C4"; +} + +.mdi-bone:before { + content: "\F0B9"; +} + +.mdi-book:before { + content: "\F0BA"; +} + +.mdi-book-minus:before { + content: "\F5D9"; +} + +.mdi-book-multiple:before { + content: "\F0BB"; +} + +.mdi-book-multiple-variant:before { + content: "\F0BC"; +} + +.mdi-book-open:before { + content: "\F0BD"; +} + +.mdi-book-open-page-variant:before { + content: "\F5DA"; +} + +.mdi-book-open-variant:before { + content: "\F0BE"; +} + +.mdi-book-plus:before { + content: "\F5DB"; +} + +.mdi-book-secure:before { + content: "\F799"; +} + +.mdi-book-unsecure:before { + content: "\F79A"; +} + +.mdi-book-variant:before { + content: "\F0BF"; +} + +.mdi-bookmark:before { + content: "\F0C0"; +} + +.mdi-bookmark-check:before { + content: "\F0C1"; +} + +.mdi-bookmark-music:before { + content: "\F0C2"; +} + +.mdi-bookmark-outline:before { + content: "\F0C3"; +} + +.mdi-bookmark-plus:before { + content: "\F0C5"; +} + +.mdi-bookmark-plus-outline:before { + content: "\F0C4"; +} + +.mdi-bookmark-remove:before { + content: "\F0C6"; +} + +.mdi-boombox:before { + content: "\F5DC"; +} + +.mdi-bootstrap:before { + content: "\F6C5"; +} + +.mdi-border-all:before { + content: "\F0C7"; +} + +.mdi-border-all-variant:before { + content: "\F8A0"; +} + +.mdi-border-bottom:before { + content: "\F0C8"; +} + +.mdi-border-bottom-variant:before { + content: "\F8A1"; +} + +.mdi-border-color:before { + content: "\F0C9"; +} + +.mdi-border-horizontal:before { + content: "\F0CA"; +} + +.mdi-border-inside:before { + content: "\F0CB"; +} + +.mdi-border-left:before { + content: "\F0CC"; +} + +.mdi-border-left-variant:before { + content: "\F8A2"; +} + +.mdi-border-none:before { + content: "\F0CD"; +} + +.mdi-border-none-variant:before { + content: "\F8A3"; +} + +.mdi-border-outside:before { + content: "\F0CE"; +} + +.mdi-border-right:before { + content: "\F0CF"; +} + +.mdi-border-right-variant:before { + content: "\F8A4"; +} + +.mdi-border-style:before { + content: "\F0D0"; +} + +.mdi-border-top:before { + content: "\F0D1"; +} + +.mdi-border-top-variant:before { + content: "\F8A5"; +} + +.mdi-border-vertical:before { + content: "\F0D2"; +} + +.mdi-bottle-wine:before { + content: "\F853"; +} + +.mdi-bow-tie:before { + content: "\F677"; +} + +.mdi-bowl:before { + content: "\F617"; +} + +.mdi-bowling:before { + content: "\F0D3"; +} + +.mdi-box:before { + content: "\F0D4"; +} + +.mdi-box-cutter:before { + content: "\F0D5"; +} + +.mdi-box-shadow:before { + content: "\F637"; +} + +.mdi-bridge:before { + content: "\F618"; +} + +.mdi-briefcase:before { + content: "\F0D6"; +} + +.mdi-briefcase-check:before { + content: "\F0D7"; +} + +.mdi-briefcase-download:before { + content: "\F0D8"; +} + +.mdi-briefcase-outline:before { + content: "\F813"; +} + +.mdi-briefcase-upload:before { + content: "\F0D9"; +} + +.mdi-brightness-1:before { + content: "\F0DA"; +} + +.mdi-brightness-2:before { + content: "\F0DB"; +} + +.mdi-brightness-3:before { + content: "\F0DC"; +} + +.mdi-brightness-4:before { + content: "\F0DD"; +} + +.mdi-brightness-5:before { + content: "\F0DE"; +} + +.mdi-brightness-6:before { + content: "\F0DF"; +} + +.mdi-brightness-7:before { + content: "\F0E0"; +} + +.mdi-brightness-auto:before { + content: "\F0E1"; +} + +.mdi-broom:before { + content: "\F0E2"; +} + +.mdi-brush:before { + content: "\F0E3"; +} + +.mdi-buddhism:before { + content: "\F94A"; +} + +.mdi-buffer:before { + content: "\F619"; +} + +.mdi-bug:before { + content: "\F0E4"; +} + +.mdi-bulletin-board:before { + content: "\F0E5"; +} + +.mdi-bullhorn:before { + content: "\F0E6"; +} + +.mdi-bullseye:before { + content: "\F5DD"; +} + +.mdi-bullseye-arrow:before { + content: "\F8C8"; +} + +.mdi-bus:before { + content: "\F0E7"; +} + +.mdi-bus-articulated-end:before { + content: "\F79B"; +} + +.mdi-bus-articulated-front:before { + content: "\F79C"; +} + +.mdi-bus-clock:before { + content: "\F8C9"; +} + +.mdi-bus-double-decker:before { + content: "\F79D"; +} + +.mdi-bus-school:before { + content: "\F79E"; +} + +.mdi-bus-side:before { + content: "\F79F"; +} + +.mdi-cached:before { + content: "\F0E8"; +} + +.mdi-cake:before { + content: "\F0E9"; +} + +.mdi-cake-layered:before { + content: "\F0EA"; +} + +.mdi-cake-variant:before { + content: "\F0EB"; +} + +.mdi-calculator:before { + content: "\F0EC"; +} + +.mdi-calendar:before { + content: "\F0ED"; +} + +.mdi-calendar-blank:before { + content: "\F0EE"; +} + +.mdi-calendar-check:before { + content: "\F0EF"; +} + +.mdi-calendar-clock:before { + content: "\F0F0"; +} + +.mdi-calendar-edit:before { + content: "\F8A6"; +} + +.mdi-calendar-multiple:before { + content: "\F0F1"; +} + +.mdi-calendar-multiple-check:before { + content: "\F0F2"; +} + +.mdi-calendar-plus:before { + content: "\F0F3"; +} + +.mdi-calendar-question:before { + content: "\F691"; +} + +.mdi-calendar-range:before { + content: "\F678"; +} + +.mdi-calendar-remove:before { + content: "\F0F4"; +} + +.mdi-calendar-search:before { + content: "\F94B"; +} + +.mdi-calendar-text:before { + content: "\F0F5"; +} + +.mdi-calendar-today:before { + content: "\F0F6"; +} + +.mdi-call-made:before { + content: "\F0F7"; +} + +.mdi-call-merge:before { + content: "\F0F8"; +} + +.mdi-call-missed:before { + content: "\F0F9"; +} + +.mdi-call-received:before { + content: "\F0FA"; +} + +.mdi-call-split:before { + content: "\F0FB"; +} + +.mdi-camcorder:before { + content: "\F0FC"; +} + +.mdi-camcorder-box:before { + content: "\F0FD"; +} + +.mdi-camcorder-box-off:before { + content: "\F0FE"; +} + +.mdi-camcorder-off:before { + content: "\F0FF"; +} + +.mdi-camera:before { + content: "\F100"; +} + +.mdi-camera-account:before { + content: "\F8CA"; +} + +.mdi-camera-burst:before { + content: "\F692"; +} + +.mdi-camera-enhance:before { + content: "\F101"; +} + +.mdi-camera-front:before { + content: "\F102"; +} + +.mdi-camera-front-variant:before { + content: "\F103"; +} + +.mdi-camera-gopro:before { + content: "\F7A0"; +} + +.mdi-camera-image:before { + content: "\F8CB"; +} + +.mdi-camera-iris:before { + content: "\F104"; +} + +.mdi-camera-metering-center:before { + content: "\F7A1"; +} + +.mdi-camera-metering-matrix:before { + content: "\F7A2"; +} + +.mdi-camera-metering-partial:before { + content: "\F7A3"; +} + +.mdi-camera-metering-spot:before { + content: "\F7A4"; +} + +.mdi-camera-off:before { + content: "\F5DF"; +} + +.mdi-camera-party-mode:before { + content: "\F105"; +} + +.mdi-camera-rear:before { + content: "\F106"; +} + +.mdi-camera-rear-variant:before { + content: "\F107"; +} + +.mdi-camera-switch:before { + content: "\F108"; +} + +.mdi-camera-timer:before { + content: "\F109"; +} + +.mdi-cancel:before { + content: "\F739"; +} + +.mdi-candle:before { + content: "\F5E2"; +} + +.mdi-candycane:before { + content: "\F10A"; +} + +.mdi-cannabis:before { + content: "\F7A5"; +} + +.mdi-car:before { + content: "\F10B"; +} + +.mdi-car-battery:before { + content: "\F10C"; +} + +.mdi-car-connected:before { + content: "\F10D"; +} + +.mdi-car-convertible:before { + content: "\F7A6"; +} + +.mdi-car-estate:before { + content: "\F7A7"; +} + +.mdi-car-hatchback:before { + content: "\F7A8"; +} + +.mdi-car-limousine:before { + content: "\F8CC"; +} + +.mdi-car-pickup:before { + content: "\F7A9"; +} + +.mdi-car-side:before { + content: "\F7AA"; +} + +.mdi-car-sports:before { + content: "\F7AB"; +} + +.mdi-car-wash:before { + content: "\F10E"; +} + +.mdi-caravan:before { + content: "\F7AC"; +} + +.mdi-cards:before { + content: "\F638"; +} + +.mdi-cards-club:before { + content: "\F8CD"; +} + +.mdi-cards-diamond:before { + content: "\F8CE"; +} + +.mdi-cards-heart:before { + content: "\F8CF"; +} + +.mdi-cards-outline:before { + content: "\F639"; +} + +.mdi-cards-playing-outline:before { + content: "\F63A"; +} + +.mdi-cards-spade:before { + content: "\F8D0"; +} + +.mdi-cards-variant:before { + content: "\F6C6"; +} + +.mdi-carrot:before { + content: "\F10F"; +} + +.mdi-cart:before { + content: "\F110"; +} + +.mdi-cart-off:before { + content: "\F66B"; +} + +.mdi-cart-outline:before { + content: "\F111"; +} + +.mdi-cart-plus:before { + content: "\F112"; +} + +.mdi-case-sensitive-alt:before { + content: "\F113"; +} + +.mdi-cash:before { + content: "\F114"; +} + +.mdi-cash-100:before { + content: "\F115"; +} + +.mdi-cash-multiple:before { + content: "\F116"; +} + +.mdi-cash-usd:before { + content: "\F117"; +} + +.mdi-cast:before { + content: "\F118"; +} + +.mdi-cast-connected:before { + content: "\F119"; +} + +.mdi-cast-off:before { + content: "\F789"; +} + +.mdi-castle:before { + content: "\F11A"; +} + +.mdi-cat:before { + content: "\F11B"; +} + +.mdi-cctv:before { + content: "\F7AD"; +} + +.mdi-ceiling-light:before { + content: "\F768"; +} + +.mdi-cellphone:before { + content: "\F11C"; +} + +.mdi-cellphone-android:before { + content: "\F11D"; +} + +.mdi-cellphone-basic:before { + content: "\F11E"; +} + +.mdi-cellphone-dock:before { + content: "\F11F"; +} + +.mdi-cellphone-erase:before { + content: "\F94C"; +} + +.mdi-cellphone-iphone:before { + content: "\F120"; +} + +.mdi-cellphone-key:before { + content: "\F94D"; +} + +.mdi-cellphone-link:before { + content: "\F121"; +} + +.mdi-cellphone-link-off:before { + content: "\F122"; +} + +.mdi-cellphone-lock:before { + content: "\F94E"; +} + +.mdi-cellphone-message:before { + content: "\F8D2"; +} + +.mdi-cellphone-off:before { + content: "\F94F"; +} + +.mdi-cellphone-settings:before { + content: "\F123"; +} + +.mdi-cellphone-settings-variant:before { + content: "\F950"; +} + +.mdi-cellphone-sound:before { + content: "\F951"; +} + +.mdi-cellphone-text:before { + content: "\F8D1"; +} + +.mdi-cellphone-wireless:before { + content: "\F814"; +} + +.mdi-certificate:before { + content: "\F124"; +} + +.mdi-chair-school:before { + content: "\F125"; +} + +.mdi-chart-arc:before { + content: "\F126"; +} + +.mdi-chart-areaspline:before { + content: "\F127"; +} + +.mdi-chart-bar:before { + content: "\F128"; +} + +.mdi-chart-bar-stacked:before { + content: "\F769"; +} + +.mdi-chart-bubble:before { + content: "\F5E3"; +} + +.mdi-chart-donut:before { + content: "\F7AE"; +} + +.mdi-chart-donut-variant:before { + content: "\F7AF"; +} + +.mdi-chart-gantt:before { + content: "\F66C"; +} + +.mdi-chart-histogram:before { + content: "\F129"; +} + +.mdi-chart-line:before { + content: "\F12A"; +} + +.mdi-chart-line-stacked:before { + content: "\F76A"; +} + +.mdi-chart-line-variant:before { + content: "\F7B0"; +} + +.mdi-chart-multiline:before { + content: "\F8D3"; +} + +.mdi-chart-pie:before { + content: "\F12B"; +} + +.mdi-chart-scatterplot-hexbin:before { + content: "\F66D"; +} + +.mdi-chart-timeline:before { + content: "\F66E"; +} + +.mdi-check:before { + content: "\F12C"; +} + +.mdi-check-all:before { + content: "\F12D"; +} + +.mdi-check-circle:before { + content: "\F5E0"; +} + +.mdi-check-circle-outline:before { + content: "\F5E1"; +} + +.mdi-check-outline:before { + content: "\F854"; +} + +.mdi-checkbox-blank:before { + content: "\F12E"; +} + +.mdi-checkbox-blank-circle:before { + content: "\F12F"; +} + +.mdi-checkbox-blank-circle-outline:before { + content: "\F130"; +} + +.mdi-checkbox-blank-outline:before { + content: "\F131"; +} + +.mdi-checkbox-intermediate:before { + content: "\F855"; +} + +.mdi-checkbox-marked:before { + content: "\F132"; +} + +.mdi-checkbox-marked-circle:before { + content: "\F133"; +} + +.mdi-checkbox-marked-circle-outline:before { + content: "\F134"; +} + +.mdi-checkbox-marked-outline:before { + content: "\F135"; +} + +.mdi-checkbox-multiple-blank:before { + content: "\F136"; +} + +.mdi-checkbox-multiple-blank-circle:before { + content: "\F63B"; +} + +.mdi-checkbox-multiple-blank-circle-outline:before { + content: "\F63C"; +} + +.mdi-checkbox-multiple-blank-outline:before { + content: "\F137"; +} + +.mdi-checkbox-multiple-marked:before { + content: "\F138"; +} + +.mdi-checkbox-multiple-marked-circle:before { + content: "\F63D"; +} + +.mdi-checkbox-multiple-marked-circle-outline:before { + content: "\F63E"; +} + +.mdi-checkbox-multiple-marked-outline:before { + content: "\F139"; +} + +.mdi-checkerboard:before { + content: "\F13A"; +} + +.mdi-chemical-weapon:before { + content: "\F13B"; +} + +.mdi-chess-bishop:before { + content: "\F85B"; +} + +.mdi-chess-king:before { + content: "\F856"; +} + +.mdi-chess-knight:before { + content: "\F857"; +} + +.mdi-chess-pawn:before { + content: "\F858"; +} + +.mdi-chess-queen:before { + content: "\F859"; +} + +.mdi-chess-rook:before { + content: "\F85A"; +} + +.mdi-chevron-double-down:before { + content: "\F13C"; +} + +.mdi-chevron-double-left:before { + content: "\F13D"; +} + +.mdi-chevron-double-right:before { + content: "\F13E"; +} + +.mdi-chevron-double-up:before { + content: "\F13F"; +} + +.mdi-chevron-down:before { + content: "\F140"; +} + +.mdi-chevron-left:before { + content: "\F141"; +} + +.mdi-chevron-right:before { + content: "\F142"; +} + +.mdi-chevron-up:before { + content: "\F143"; +} + +.mdi-chili-hot:before { + content: "\F7B1"; +} + +.mdi-chili-medium:before { + content: "\F7B2"; +} + +.mdi-chili-mild:before { + content: "\F7B3"; +} + +.mdi-chip:before { + content: "\F61A"; +} + +.mdi-christiantiy:before { + content: "\F952"; +} + +.mdi-church:before { + content: "\F144"; +} + +.mdi-circle:before { + content: "\F764"; +} + +.mdi-circle-edit-outline:before { + content: "\F8D4"; +} + +.mdi-circle-outline:before { + content: "\F765"; +} + +.mdi-cisco-webex:before { + content: "\F145"; +} + +.mdi-city:before { + content: "\F146"; +} + +.mdi-clipboard:before { + content: "\F147"; +} + +.mdi-clipboard-account:before { + content: "\F148"; +} + +.mdi-clipboard-alert:before { + content: "\F149"; +} + +.mdi-clipboard-arrow-down:before { + content: "\F14A"; +} + +.mdi-clipboard-arrow-left:before { + content: "\F14B"; +} + +.mdi-clipboard-check:before { + content: "\F14C"; +} + +.mdi-clipboard-check-outline:before { + content: "\F8A7"; +} + +.mdi-clipboard-flow:before { + content: "\F6C7"; +} + +.mdi-clipboard-outline:before { + content: "\F14D"; +} + +.mdi-clipboard-plus:before { + content: "\F750"; +} + +.mdi-clipboard-pulse:before { + content: "\F85C"; +} + +.mdi-clipboard-pulse-outline:before { + content: "\F85D"; +} + +.mdi-clipboard-text:before { + content: "\F14E"; +} + +.mdi-clippy:before { + content: "\F14F"; +} + +.mdi-clock:before { + content: "\F953"; +} + +.mdi-clock-alert:before { + content: "\F954"; +} + +.mdi-clock-alert-outline:before { + content: "\F5CE"; +} + +.mdi-clock-end:before { + content: "\F151"; +} + +.mdi-clock-fast:before { + content: "\F152"; +} + +.mdi-clock-in:before { + content: "\F153"; +} + +.mdi-clock-out:before { + content: "\F154"; +} + +.mdi-clock-outline:before { + content: "\F150"; +} + +.mdi-clock-start:before { + content: "\F155"; +} + +.mdi-close:before { + content: "\F156"; +} + +.mdi-close-box:before { + content: "\F157"; +} + +.mdi-close-box-outline:before { + content: "\F158"; +} + +.mdi-close-circle:before { + content: "\F159"; +} + +.mdi-close-circle-outline:before { + content: "\F15A"; +} + +.mdi-close-network:before { + content: "\F15B"; +} + +.mdi-close-octagon:before { + content: "\F15C"; +} + +.mdi-close-octagon-outline:before { + content: "\F15D"; +} + +.mdi-close-outline:before { + content: "\F6C8"; +} + +.mdi-closed-caption:before { + content: "\F15E"; +} + +.mdi-cloud:before { + content: "\F15F"; +} + +.mdi-cloud-braces:before { + content: "\F7B4"; +} + +.mdi-cloud-check:before { + content: "\F160"; +} + +.mdi-cloud-circle:before { + content: "\F161"; +} + +.mdi-cloud-download:before { + content: "\F162"; +} + +.mdi-cloud-off-outline:before { + content: "\F164"; +} + +.mdi-cloud-outline:before { + content: "\F163"; +} + +.mdi-cloud-print:before { + content: "\F165"; +} + +.mdi-cloud-print-outline:before { + content: "\F166"; +} + +.mdi-cloud-search:before { + content: "\F955"; +} + +.mdi-cloud-search-outline:before { + content: "\F956"; +} + +.mdi-cloud-sync:before { + content: "\F63F"; +} + +.mdi-cloud-tags:before { + content: "\F7B5"; +} + +.mdi-cloud-upload:before { + content: "\F167"; +} + +.mdi-clover:before { + content: "\F815"; +} + +.mdi-code-array:before { + content: "\F168"; +} + +.mdi-code-braces:before { + content: "\F169"; +} + +.mdi-code-brackets:before { + content: "\F16A"; +} + +.mdi-code-equal:before { + content: "\F16B"; +} + +.mdi-code-greater-than:before { + content: "\F16C"; +} + +.mdi-code-greater-than-or-equal:before { + content: "\F16D"; +} + +.mdi-code-less-than:before { + content: "\F16E"; +} + +.mdi-code-less-than-or-equal:before { + content: "\F16F"; +} + +.mdi-code-not-equal:before { + content: "\F170"; +} + +.mdi-code-not-equal-variant:before { + content: "\F171"; +} + +.mdi-code-parentheses:before { + content: "\F172"; +} + +.mdi-code-string:before { + content: "\F173"; +} + +.mdi-code-tags:before { + content: "\F174"; +} + +.mdi-code-tags-check:before { + content: "\F693"; +} + +.mdi-codepen:before { + content: "\F175"; +} + +.mdi-coffee:before { + content: "\F176"; +} + +.mdi-coffee-outline:before { + content: "\F6C9"; +} + +.mdi-coffee-to-go:before { + content: "\F177"; +} + +.mdi-cogs:before { + content: "\F8D5"; +} + +.mdi-coin:before { + content: "\F178"; +} + +.mdi-coins:before { + content: "\F694"; +} + +.mdi-collage:before { + content: "\F640"; +} + +.mdi-color-helper:before { + content: "\F179"; +} + +.mdi-comment:before { + content: "\F17A"; +} + +.mdi-comment-account:before { + content: "\F17B"; +} + +.mdi-comment-account-outline:before { + content: "\F17C"; +} + +.mdi-comment-alert:before { + content: "\F17D"; +} + +.mdi-comment-alert-outline:before { + content: "\F17E"; +} + +.mdi-comment-check:before { + content: "\F17F"; +} + +.mdi-comment-check-outline:before { + content: "\F180"; +} + +.mdi-comment-multiple:before { + content: "\F85E"; +} + +.mdi-comment-multiple-outline:before { + content: "\F181"; +} + +.mdi-comment-outline:before { + content: "\F182"; +} + +.mdi-comment-plus-outline:before { + content: "\F183"; +} + +.mdi-comment-processing:before { + content: "\F184"; +} + +.mdi-comment-processing-outline:before { + content: "\F185"; +} + +.mdi-comment-question:before { + content: "\F816"; +} + +.mdi-comment-question-outline:before { + content: "\F186"; +} + +.mdi-comment-remove:before { + content: "\F5DE"; +} + +.mdi-comment-remove-outline:before { + content: "\F187"; +} + +.mdi-comment-text:before { + content: "\F188"; +} + +.mdi-comment-text-multiple:before { + content: "\F85F"; +} + +.mdi-comment-text-multiple-outline:before { + content: "\F860"; +} + +.mdi-comment-text-outline:before { + content: "\F189"; +} + +.mdi-compare:before { + content: "\F18A"; +} + +.mdi-compass:before { + content: "\F18B"; +} + +.mdi-compass-outline:before { + content: "\F18C"; +} + +.mdi-console:before { + content: "\F18D"; +} + +.mdi-console-line:before { + content: "\F7B6"; +} + +.mdi-console-network:before { + content: "\F8A8"; +} + +.mdi-contact-mail:before { + content: "\F18E"; +} + +.mdi-contacts:before { + content: "\F6CA"; +} + +.mdi-content-copy:before { + content: "\F18F"; +} + +.mdi-content-cut:before { + content: "\F190"; +} + +.mdi-content-duplicate:before { + content: "\F191"; +} + +.mdi-content-paste:before { + content: "\F192"; +} + +.mdi-content-save:before { + content: "\F193"; +} + +.mdi-content-save-all:before { + content: "\F194"; +} + +.mdi-content-save-outline:before { + content: "\F817"; +} + +.mdi-content-save-settings:before { + content: "\F61B"; +} + +.mdi-contrast:before { + content: "\F195"; +} + +.mdi-contrast-box:before { + content: "\F196"; +} + +.mdi-contrast-circle:before { + content: "\F197"; +} + +.mdi-cookie:before { + content: "\F198"; +} + +.mdi-copyright:before { + content: "\F5E6"; +} + +.mdi-cordova:before { + content: "\F957"; +} + +.mdi-corn:before { + content: "\F7B7"; +} + +.mdi-counter:before { + content: "\F199"; +} + +.mdi-cow:before { + content: "\F19A"; +} + +.mdi-crane:before { + content: "\F861"; +} + +.mdi-creation:before { + content: "\F1C9"; +} + +.mdi-credit-card:before { + content: "\F19B"; +} + +.mdi-credit-card-multiple:before { + content: "\F19C"; +} + +.mdi-credit-card-off:before { + content: "\F5E4"; +} + +.mdi-credit-card-plus:before { + content: "\F675"; +} + +.mdi-credit-card-scan:before { + content: "\F19D"; +} + +.mdi-credit-card-settings:before { + content: "\F8D6"; +} + +.mdi-crop:before { + content: "\F19E"; +} + +.mdi-crop-free:before { + content: "\F19F"; +} + +.mdi-crop-landscape:before { + content: "\F1A0"; +} + +.mdi-crop-portrait:before { + content: "\F1A1"; +} + +.mdi-crop-rotate:before { + content: "\F695"; +} + +.mdi-crop-square:before { + content: "\F1A2"; +} + +.mdi-crosshairs:before { + content: "\F1A3"; +} + +.mdi-crosshairs-gps:before { + content: "\F1A4"; +} + +.mdi-crown:before { + content: "\F1A5"; +} + +.mdi-cryengine:before { + content: "\F958"; +} + +.mdi-cube:before { + content: "\F1A6"; +} + +.mdi-cube-outline:before { + content: "\F1A7"; +} + +.mdi-cube-send:before { + content: "\F1A8"; +} + +.mdi-cube-unfolded:before { + content: "\F1A9"; +} + +.mdi-cup:before { + content: "\F1AA"; +} + +.mdi-cup-off:before { + content: "\F5E5"; +} + +.mdi-cup-water:before { + content: "\F1AB"; +} + +.mdi-cupcake:before { + content: "\F959"; +} + +.mdi-curling:before { + content: "\F862"; +} + +.mdi-currency-bdt:before { + content: "\F863"; +} + +.mdi-currency-btc:before { + content: "\F1AC"; +} + +.mdi-currency-chf:before { + content: "\F7B8"; +} + +.mdi-currency-cny:before { + content: "\F7B9"; +} + +.mdi-currency-eth:before { + content: "\F7BA"; +} + +.mdi-currency-eur:before { + content: "\F1AD"; +} + +.mdi-currency-gbp:before { + content: "\F1AE"; +} + +.mdi-currency-inr:before { + content: "\F1AF"; +} + +.mdi-currency-jpy:before { + content: "\F7BB"; +} + +.mdi-currency-krw:before { + content: "\F7BC"; +} + +.mdi-currency-kzt:before { + content: "\F864"; +} + +.mdi-currency-ngn:before { + content: "\F1B0"; +} + +.mdi-currency-rub:before { + content: "\F1B1"; +} + +.mdi-currency-sign:before { + content: "\F7BD"; +} + +.mdi-currency-try:before { + content: "\F1B2"; +} + +.mdi-currency-twd:before { + content: "\F7BE"; +} + +.mdi-currency-usd:before { + content: "\F1B3"; +} + +.mdi-currency-usd-off:before { + content: "\F679"; +} + +.mdi-current-ac:before { + content: "\F95A"; +} + +.mdi-current-dc:before { + content: "\F95B"; +} + +.mdi-cursor-default:before { + content: "\F1B4"; +} + +.mdi-cursor-default-outline:before { + content: "\F1B5"; +} + +.mdi-cursor-move:before { + content: "\F1B6"; +} + +.mdi-cursor-pointer:before { + content: "\F1B7"; +} + +.mdi-cursor-text:before { + content: "\F5E7"; +} + +.mdi-database:before { + content: "\F1B8"; +} + +.mdi-database-export:before { + content: "\F95D"; +} + +.mdi-database-import:before { + content: "\F95C"; +} + +.mdi-database-minus:before { + content: "\F1B9"; +} + +.mdi-database-plus:before { + content: "\F1BA"; +} + +.mdi-database-search:before { + content: "\F865"; +} + +.mdi-death-star:before { + content: "\F8D7"; +} + +.mdi-death-star-variant:before { + content: "\F8D8"; +} + +.mdi-debian:before { + content: "\F8D9"; +} + +.mdi-debug-step-into:before { + content: "\F1BB"; +} + +.mdi-debug-step-out:before { + content: "\F1BC"; +} + +.mdi-debug-step-over:before { + content: "\F1BD"; +} + +.mdi-decagram:before { + content: "\F76B"; +} + +.mdi-decagram-outline:before { + content: "\F76C"; +} + +.mdi-decimal-decrease:before { + content: "\F1BE"; +} + +.mdi-decimal-increase:before { + content: "\F1BF"; +} + +.mdi-delete:before { + content: "\F1C0"; +} + +.mdi-delete-circle:before { + content: "\F682"; +} + +.mdi-delete-empty:before { + content: "\F6CB"; +} + +.mdi-delete-forever:before { + content: "\F5E8"; +} + +.mdi-delete-restore:before { + content: "\F818"; +} + +.mdi-delete-sweep:before { + content: "\F5E9"; +} + +.mdi-delete-variant:before { + content: "\F1C1"; +} + +.mdi-delta:before { + content: "\F1C2"; +} + +.mdi-desk-lamp:before { + content: "\F95E"; +} + +.mdi-deskphone:before { + content: "\F1C3"; +} + +.mdi-desktop-classic:before { + content: "\F7BF"; +} + +.mdi-desktop-mac:before { + content: "\F1C4"; +} + +.mdi-desktop-tower:before { + content: "\F1C5"; +} + +.mdi-details:before { + content: "\F1C6"; +} + +.mdi-developer-board:before { + content: "\F696"; +} + +.mdi-deviantart:before { + content: "\F1C7"; +} + +.mdi-dialpad:before { + content: "\F61C"; +} + +.mdi-diamond:before { + content: "\F1C8"; +} + +.mdi-dice-1:before { + content: "\F1CA"; +} + +.mdi-dice-2:before { + content: "\F1CB"; +} + +.mdi-dice-3:before { + content: "\F1CC"; +} + +.mdi-dice-4:before { + content: "\F1CD"; +} + +.mdi-dice-5:before { + content: "\F1CE"; +} + +.mdi-dice-6:before { + content: "\F1CF"; +} + +.mdi-dice-d10:before { + content: "\F76E"; +} + +.mdi-dice-d12:before { + content: "\F866"; +} + +.mdi-dice-d20:before { + content: "\F5EA"; +} + +.mdi-dice-d4:before { + content: "\F5EB"; +} + +.mdi-dice-d6:before { + content: "\F5EC"; +} + +.mdi-dice-d8:before { + content: "\F5ED"; +} + +.mdi-dice-multiple:before { + content: "\F76D"; +} + +.mdi-dictionary:before { + content: "\F61D"; +} + +.mdi-dip-switch:before { + content: "\F7C0"; +} + +.mdi-directions:before { + content: "\F1D0"; +} + +.mdi-directions-fork:before { + content: "\F641"; +} + +.mdi-discord:before { + content: "\F66F"; +} + +.mdi-disk:before { + content: "\F5EE"; +} + +.mdi-disk-alert:before { + content: "\F1D1"; +} + +.mdi-disk-player:before { + content: "\F95F"; +} + +.mdi-disqus:before { + content: "\F1D2"; +} + +.mdi-disqus-outline:before { + content: "\F1D3"; +} + +.mdi-division:before { + content: "\F1D4"; +} + +.mdi-division-box:before { + content: "\F1D5"; +} + +.mdi-dna:before { + content: "\F683"; +} + +.mdi-dns:before { + content: "\F1D6"; +} + +.mdi-do-not-disturb:before { + content: "\F697"; +} + +.mdi-do-not-disturb-off:before { + content: "\F698"; +} + +.mdi-docker:before { + content: "\F867"; +} + +.mdi-dolby:before { + content: "\F6B2"; +} + +.mdi-domain:before { + content: "\F1D7"; +} + +.mdi-donkey:before { + content: "\F7C1"; +} + +.mdi-door:before { + content: "\F819"; +} + +.mdi-door-closed:before { + content: "\F81A"; +} + +.mdi-door-open:before { + content: "\F81B"; +} + +.mdi-doorbell-video:before { + content: "\F868"; +} + +.mdi-dots-horizontal:before { + content: "\F1D8"; +} + +.mdi-dots-horizontal-circle:before { + content: "\F7C2"; +} + +.mdi-dots-vertical:before { + content: "\F1D9"; +} + +.mdi-dots-vertical-circle:before { + content: "\F7C3"; +} + +.mdi-douban:before { + content: "\F699"; +} + +.mdi-download:before { + content: "\F1DA"; +} + +.mdi-download-network:before { + content: "\F6F3"; +} + +.mdi-drag:before { + content: "\F1DB"; +} + +.mdi-drag-horizontal:before { + content: "\F1DC"; +} + +.mdi-drag-vertical:before { + content: "\F1DD"; +} + +.mdi-drawing:before { + content: "\F1DE"; +} + +.mdi-drawing-box:before { + content: "\F1DF"; +} + +.mdi-dribbble:before { + content: "\F1E0"; +} + +.mdi-dribbble-box:before { + content: "\F1E1"; +} + +.mdi-drone:before { + content: "\F1E2"; +} + +.mdi-dropbox:before { + content: "\F1E3"; +} + +.mdi-drupal:before { + content: "\F1E4"; +} + +.mdi-duck:before { + content: "\F1E5"; +} + +.mdi-dumbbell:before { + content: "\F1E6"; +} + +.mdi-ear-hearing:before { + content: "\F7C4"; +} + +.mdi-earth:before { + content: "\F1E7"; +} + +.mdi-earth-box:before { + content: "\F6CC"; +} + +.mdi-earth-box-off:before { + content: "\F6CD"; +} + +.mdi-earth-off:before { + content: "\F1E8"; +} + +.mdi-edge:before { + content: "\F1E9"; +} + +.mdi-eject:before { + content: "\F1EA"; +} + +.mdi-elephant:before { + content: "\F7C5"; +} + +.mdi-elevation-decline:before { + content: "\F1EB"; +} + +.mdi-elevation-rise:before { + content: "\F1EC"; +} + +.mdi-elevator:before { + content: "\F1ED"; +} + +.mdi-email:before { + content: "\F1EE"; +} + +.mdi-email-alert:before { + content: "\F6CE"; +} + +.mdi-email-open:before { + content: "\F1EF"; +} + +.mdi-email-open-outline:before { + content: "\F5EF"; +} + +.mdi-email-outline:before { + content: "\F1F0"; +} + +.mdi-email-search:before { + content: "\F960"; +} + +.mdi-email-search-outline:before { + content: "\F961"; +} + +.mdi-email-secure:before { + content: "\F1F1"; +} + +.mdi-email-variant:before { + content: "\F5F0"; +} + +.mdi-emby:before { + content: "\F6B3"; +} + +.mdi-emoticon:before { + content: "\F1F2"; +} + +.mdi-emoticon-cool:before { + content: "\F1F3"; +} + +.mdi-emoticon-dead:before { + content: "\F69A"; +} + +.mdi-emoticon-devil:before { + content: "\F1F4"; +} + +.mdi-emoticon-excited:before { + content: "\F69B"; +} + +.mdi-emoticon-happy:before { + content: "\F1F5"; +} + +.mdi-emoticon-neutral:before { + content: "\F1F6"; +} + +.mdi-emoticon-poop:before { + content: "\F1F7"; +} + +.mdi-emoticon-sad:before { + content: "\F1F8"; +} + +.mdi-emoticon-tongue:before { + content: "\F1F9"; +} + +.mdi-engine:before { + content: "\F1FA"; +} + +.mdi-engine-outline:before { + content: "\F1FB"; +} + +.mdi-equal:before { + content: "\F1FC"; +} + +.mdi-equal-box:before { + content: "\F1FD"; +} + +.mdi-eraser:before { + content: "\F1FE"; +} + +.mdi-eraser-variant:before { + content: "\F642"; +} + +.mdi-escalator:before { + content: "\F1FF"; +} + +.mdi-ethereum:before { + content: "\F869"; +} + +.mdi-ethernet:before { + content: "\F200"; +} + +.mdi-ethernet-cable:before { + content: "\F201"; +} + +.mdi-ethernet-cable-off:before { + content: "\F202"; +} + +.mdi-etsy:before { + content: "\F203"; +} + +.mdi-ev-station:before { + content: "\F5F1"; +} + +.mdi-eventbrite:before { + content: "\F7C6"; +} + +.mdi-evernote:before { + content: "\F204"; +} + +.mdi-exclamation:before { + content: "\F205"; +} + +.mdi-exit-to-app:before { + content: "\F206"; +} + +.mdi-exponent:before { + content: "\F962"; +} + +.mdi-exponent-box:before { + content: "\F963"; +} + +.mdi-export:before { + content: "\F207"; +} + +.mdi-eye:before { + content: "\F208"; +} + +.mdi-eye-off:before { + content: "\F209"; +} + +.mdi-eye-off-outline:before { + content: "\F6D0"; +} + +.mdi-eye-outline:before { + content: "\F6CF"; +} + +.mdi-eye-plus:before { + content: "\F86A"; +} + +.mdi-eye-plus-outline:before { + content: "\F86B"; +} + +.mdi-eye-settings:before { + content: "\F86C"; +} + +.mdi-eye-settings-outline:before { + content: "\F86D"; +} + +.mdi-eyedropper:before { + content: "\F20A"; +} + +.mdi-eyedropper-variant:before { + content: "\F20B"; +} + +.mdi-face:before { + content: "\F643"; +} + +.mdi-face-profile:before { + content: "\F644"; +} + +.mdi-facebook:before { + content: "\F20C"; +} + +.mdi-facebook-box:before { + content: "\F20D"; +} + +.mdi-facebook-messenger:before { + content: "\F20E"; +} + +.mdi-factory:before { + content: "\F20F"; +} + +.mdi-fan:before { + content: "\F210"; +} + +.mdi-fan-off:before { + content: "\F81C"; +} + +.mdi-fast-forward:before { + content: "\F211"; +} + +.mdi-fast-forward-outline:before { + content: "\F6D1"; +} + +.mdi-fax:before { + content: "\F212"; +} + +.mdi-feather:before { + content: "\F6D2"; +} + +.mdi-fedora:before { + content: "\F8DA"; +} + +.mdi-ferry:before { + content: "\F213"; +} + +.mdi-file:before { + content: "\F214"; +} + +.mdi-file-account:before { + content: "\F73A"; +} + +.mdi-file-chart:before { + content: "\F215"; +} + +.mdi-file-check:before { + content: "\F216"; +} + +.mdi-file-cloud:before { + content: "\F217"; +} + +.mdi-file-compare:before { + content: "\F8A9"; +} + +.mdi-file-delimited:before { + content: "\F218"; +} + +.mdi-file-document:before { + content: "\F219"; +} + +.mdi-file-document-box:before { + content: "\F21A"; +} + +.mdi-file-download:before { + content: "\F964"; +} + +.mdi-file-download-outline:before { + content: "\F965"; +} + +.mdi-file-excel:before { + content: "\F21B"; +} + +.mdi-file-excel-box:before { + content: "\F21C"; +} + +.mdi-file-export:before { + content: "\F21D"; +} + +.mdi-file-find:before { + content: "\F21E"; +} + +.mdi-file-hidden:before { + content: "\F613"; +} + +.mdi-file-image:before { + content: "\F21F"; +} + +.mdi-file-import:before { + content: "\F220"; +} + +.mdi-file-lock:before { + content: "\F221"; +} + +.mdi-file-multiple:before { + content: "\F222"; +} + +.mdi-file-music:before { + content: "\F223"; +} + +.mdi-file-outline:before { + content: "\F224"; +} + +.mdi-file-pdf:before { + content: "\F225"; +} + +.mdi-file-pdf-box:before { + content: "\F226"; +} + +.mdi-file-percent:before { + content: "\F81D"; +} + +.mdi-file-plus:before { + content: "\F751"; +} + +.mdi-file-powerpoint:before { + content: "\F227"; +} + +.mdi-file-powerpoint-box:before { + content: "\F228"; +} + +.mdi-file-presentation-box:before { + content: "\F229"; +} + +.mdi-file-question:before { + content: "\F86E"; +} + +.mdi-file-restore:before { + content: "\F670"; +} + +.mdi-file-send:before { + content: "\F22A"; +} + +.mdi-file-tree:before { + content: "\F645"; +} + +.mdi-file-undo:before { + content: "\F8DB"; +} + +.mdi-file-video:before { + content: "\F22B"; +} + +.mdi-file-word:before { + content: "\F22C"; +} + +.mdi-file-word-box:before { + content: "\F22D"; +} + +.mdi-file-xml:before { + content: "\F22E"; +} + +.mdi-film:before { + content: "\F22F"; +} + +.mdi-filmstrip:before { + content: "\F230"; +} + +.mdi-filmstrip-off:before { + content: "\F231"; +} + +.mdi-filter:before { + content: "\F232"; +} + +.mdi-filter-outline:before { + content: "\F233"; +} + +.mdi-filter-remove:before { + content: "\F234"; +} + +.mdi-filter-remove-outline:before { + content: "\F235"; +} + +.mdi-filter-variant:before { + content: "\F236"; +} + +.mdi-finance:before { + content: "\F81E"; +} + +.mdi-find-replace:before { + content: "\F6D3"; +} + +.mdi-fingerprint:before { + content: "\F237"; +} + +.mdi-fire:before { + content: "\F238"; +} + +.mdi-fire-truck:before { + content: "\F8AA"; +} + +.mdi-firebase:before { + content: "\F966"; +} + +.mdi-firefox:before { + content: "\F239"; +} + +.mdi-fish:before { + content: "\F23A"; +} + +.mdi-flag:before { + content: "\F23B"; +} + +.mdi-flag-checkered:before { + content: "\F23C"; +} + +.mdi-flag-outline:before { + content: "\F23D"; +} + +.mdi-flag-triangle:before { + content: "\F23F"; +} + +.mdi-flag-variant:before { + content: "\F240"; +} + +.mdi-flag-variant-outline:before { + content: "\F23E"; +} + +.mdi-flash:before { + content: "\F241"; +} + +.mdi-flash-auto:before { + content: "\F242"; +} + +.mdi-flash-circle:before { + content: "\F81F"; +} + +.mdi-flash-off:before { + content: "\F243"; +} + +.mdi-flash-outline:before { + content: "\F6D4"; +} + +.mdi-flash-red-eye:before { + content: "\F67A"; +} + +.mdi-flashlight:before { + content: "\F244"; +} + +.mdi-flashlight-off:before { + content: "\F245"; +} + +.mdi-flask:before { + content: "\F093"; +} + +.mdi-flask-empty:before { + content: "\F094"; +} + +.mdi-flask-empty-outline:before { + content: "\F095"; +} + +.mdi-flask-outline:before { + content: "\F096"; +} + +.mdi-flattr:before { + content: "\F246"; +} + +.mdi-flip-to-back:before { + content: "\F247"; +} + +.mdi-flip-to-front:before { + content: "\F248"; +} + +.mdi-floor-lamp:before { + content: "\F8DC"; +} + +.mdi-floor-plan:before { + content: "\F820"; +} + +.mdi-floppy:before { + content: "\F249"; +} + +.mdi-flower:before { + content: "\F24A"; +} + +.mdi-folder:before { + content: "\F24B"; +} + +.mdi-folder-account:before { + content: "\F24C"; +} + +.mdi-folder-download:before { + content: "\F24D"; +} + +.mdi-folder-edit:before { + content: "\F8DD"; +} + +.mdi-folder-google-drive:before { + content: "\F24E"; +} + +.mdi-folder-image:before { + content: "\F24F"; +} + +.mdi-folder-key:before { + content: "\F8AB"; +} + +.mdi-folder-key-network:before { + content: "\F8AC"; +} + +.mdi-folder-lock:before { + content: "\F250"; +} + +.mdi-folder-lock-open:before { + content: "\F251"; +} + +.mdi-folder-move:before { + content: "\F252"; +} + +.mdi-folder-multiple:before { + content: "\F253"; +} + +.mdi-folder-multiple-image:before { + content: "\F254"; +} + +.mdi-folder-multiple-outline:before { + content: "\F255"; +} + +.mdi-folder-network:before { + content: "\F86F"; +} + +.mdi-folder-open:before { + content: "\F76F"; +} + +.mdi-folder-outline:before { + content: "\F256"; +} + +.mdi-folder-plus:before { + content: "\F257"; +} + +.mdi-folder-remove:before { + content: "\F258"; +} + +.mdi-folder-search:before { + content: "\F967"; +} + +.mdi-folder-search-outline:before { + content: "\F968"; +} + +.mdi-folder-star:before { + content: "\F69C"; +} + +.mdi-folder-upload:before { + content: "\F259"; +} + +.mdi-font-awesome:before { + content: "\F03A"; +} + +.mdi-food:before { + content: "\F25A"; +} + +.mdi-food-apple:before { + content: "\F25B"; +} + +.mdi-food-croissant:before { + content: "\F7C7"; +} + +.mdi-food-fork-drink:before { + content: "\F5F2"; +} + +.mdi-food-off:before { + content: "\F5F3"; +} + +.mdi-food-variant:before { + content: "\F25C"; +} + +.mdi-football:before { + content: "\F25D"; +} + +.mdi-football-australian:before { + content: "\F25E"; +} + +.mdi-football-helmet:before { + content: "\F25F"; +} + +.mdi-forklift:before { + content: "\F7C8"; +} + +.mdi-format-align-bottom:before { + content: "\F752"; +} + +.mdi-format-align-center:before { + content: "\F260"; +} + +.mdi-format-align-justify:before { + content: "\F261"; +} + +.mdi-format-align-left:before { + content: "\F262"; +} + +.mdi-format-align-middle:before { + content: "\F753"; +} + +.mdi-format-align-right:before { + content: "\F263"; +} + +.mdi-format-align-top:before { + content: "\F754"; +} + +.mdi-format-annotation-plus:before { + content: "\F646"; +} + +.mdi-format-bold:before { + content: "\F264"; +} + +.mdi-format-clear:before { + content: "\F265"; +} + +.mdi-format-color-fill:before { + content: "\F266"; +} + +.mdi-format-color-text:before { + content: "\F69D"; +} + +.mdi-format-columns:before { + content: "\F8DE"; +} + +.mdi-format-float-center:before { + content: "\F267"; +} + +.mdi-format-float-left:before { + content: "\F268"; +} + +.mdi-format-float-none:before { + content: "\F269"; +} + +.mdi-format-float-right:before { + content: "\F26A"; +} + +.mdi-format-font:before { + content: "\F6D5"; +} + +.mdi-format-header-1:before { + content: "\F26B"; +} + +.mdi-format-header-2:before { + content: "\F26C"; +} + +.mdi-format-header-3:before { + content: "\F26D"; +} + +.mdi-format-header-4:before { + content: "\F26E"; +} + +.mdi-format-header-5:before { + content: "\F26F"; +} + +.mdi-format-header-6:before { + content: "\F270"; +} + +.mdi-format-header-decrease:before { + content: "\F271"; +} + +.mdi-format-header-equal:before { + content: "\F272"; +} + +.mdi-format-header-increase:before { + content: "\F273"; +} + +.mdi-format-header-pound:before { + content: "\F274"; +} + +.mdi-format-horizontal-align-center:before { + content: "\F61E"; +} + +.mdi-format-horizontal-align-left:before { + content: "\F61F"; +} + +.mdi-format-horizontal-align-right:before { + content: "\F620"; +} + +.mdi-format-indent-decrease:before { + content: "\F275"; +} + +.mdi-format-indent-increase:before { + content: "\F276"; +} + +.mdi-format-italic:before { + content: "\F277"; +} + +.mdi-format-line-spacing:before { + content: "\F278"; +} + +.mdi-format-line-style:before { + content: "\F5C8"; +} + +.mdi-format-line-weight:before { + content: "\F5C9"; +} + +.mdi-format-list-bulleted:before { + content: "\F279"; +} + +.mdi-format-list-bulleted-type:before { + content: "\F27A"; +} + +.mdi-format-list-checkbox:before { + content: "\F969"; +} + +.mdi-format-list-checks:before { + content: "\F755"; +} + +.mdi-format-list-numbers:before { + content: "\F27B"; +} + +.mdi-format-page-break:before { + content: "\F6D6"; +} + +.mdi-format-paint:before { + content: "\F27C"; +} + +.mdi-format-paragraph:before { + content: "\F27D"; +} + +.mdi-format-pilcrow:before { + content: "\F6D7"; +} + +.mdi-format-quote-close:before { + content: "\F27E"; +} + +.mdi-format-quote-open:before { + content: "\F756"; +} + +.mdi-format-rotate-90:before { + content: "\F6A9"; +} + +.mdi-format-section:before { + content: "\F69E"; +} + +.mdi-format-size:before { + content: "\F27F"; +} + +.mdi-format-strikethrough:before { + content: "\F280"; +} + +.mdi-format-strikethrough-variant:before { + content: "\F281"; +} + +.mdi-format-subscript:before { + content: "\F282"; +} + +.mdi-format-superscript:before { + content: "\F283"; +} + +.mdi-format-text:before { + content: "\F284"; +} + +.mdi-format-textdirection-l-to-r:before { + content: "\F285"; +} + +.mdi-format-textdirection-r-to-l:before { + content: "\F286"; +} + +.mdi-format-title:before { + content: "\F5F4"; +} + +.mdi-format-underline:before { + content: "\F287"; +} + +.mdi-format-vertical-align-bottom:before { + content: "\F621"; +} + +.mdi-format-vertical-align-center:before { + content: "\F622"; +} + +.mdi-format-vertical-align-top:before { + content: "\F623"; +} + +.mdi-format-wrap-inline:before { + content: "\F288"; +} + +.mdi-format-wrap-square:before { + content: "\F289"; +} + +.mdi-format-wrap-tight:before { + content: "\F28A"; +} + +.mdi-format-wrap-top-bottom:before { + content: "\F28B"; +} + +.mdi-forum:before { + content: "\F28C"; +} + +.mdi-forum-outline:before { + content: "\F821"; +} + +.mdi-forward:before { + content: "\F28D"; +} + +.mdi-fountain:before { + content: "\F96A"; +} + +.mdi-foursquare:before { + content: "\F28E"; +} + +.mdi-freebsd:before { + content: "\F8DF"; +} + +.mdi-fridge:before { + content: "\F28F"; +} + +.mdi-fridge-filled:before { + content: "\F290"; +} + +.mdi-fridge-filled-bottom:before { + content: "\F291"; +} + +.mdi-fridge-filled-top:before { + content: "\F292"; +} + +.mdi-fuel:before { + content: "\F7C9"; +} + +.mdi-fullscreen:before { + content: "\F293"; +} + +.mdi-fullscreen-exit:before { + content: "\F294"; +} + +.mdi-function:before { + content: "\F295"; +} + +.mdi-function-variant:before { + content: "\F870"; +} + +.mdi-gamepad:before { + content: "\F296"; +} + +.mdi-gamepad-variant:before { + content: "\F297"; +} + +.mdi-garage:before { + content: "\F6D8"; +} + +.mdi-garage-alert:before { + content: "\F871"; +} + +.mdi-garage-open:before { + content: "\F6D9"; +} + +.mdi-gas-cylinder:before { + content: "\F647"; +} + +.mdi-gas-station:before { + content: "\F298"; +} + +.mdi-gate:before { + content: "\F299"; +} + +.mdi-gate-and:before { + content: "\F8E0"; +} + +.mdi-gate-nand:before { + content: "\F8E1"; +} + +.mdi-gate-nor:before { + content: "\F8E2"; +} + +.mdi-gate-not:before { + content: "\F8E3"; +} + +.mdi-gate-or:before { + content: "\F8E4"; +} + +.mdi-gate-xnor:before { + content: "\F8E5"; +} + +.mdi-gate-xor:before { + content: "\F8E6"; +} + +.mdi-gauge:before { + content: "\F29A"; +} + +.mdi-gauge-empty:before { + content: "\F872"; +} + +.mdi-gauge-full:before { + content: "\F873"; +} + +.mdi-gauge-low:before { + content: "\F874"; +} + +.mdi-gavel:before { + content: "\F29B"; +} + +.mdi-gender-female:before { + content: "\F29C"; +} + +.mdi-gender-male:before { + content: "\F29D"; +} + +.mdi-gender-male-female:before { + content: "\F29E"; +} + +.mdi-gender-transgender:before { + content: "\F29F"; +} + +.mdi-gentoo:before { + content: "\F8E7"; +} + +.mdi-gesture:before { + content: "\F7CA"; +} + +.mdi-gesture-double-tap:before { + content: "\F73B"; +} + +.mdi-gesture-swipe-down:before { + content: "\F73C"; +} + +.mdi-gesture-swipe-left:before { + content: "\F73D"; +} + +.mdi-gesture-swipe-right:before { + content: "\F73E"; +} + +.mdi-gesture-swipe-up:before { + content: "\F73F"; +} + +.mdi-gesture-tap:before { + content: "\F740"; +} + +.mdi-gesture-two-double-tap:before { + content: "\F741"; +} + +.mdi-gesture-two-tap:before { + content: "\F742"; +} + +.mdi-ghost:before { + content: "\F2A0"; +} + +.mdi-gift:before { + content: "\F2A1"; +} + +.mdi-git:before { + content: "\F2A2"; +} + +.mdi-github-box:before { + content: "\F2A3"; +} + +.mdi-github-circle:before { + content: "\F2A4"; +} + +.mdi-github-face:before { + content: "\F6DA"; +} + +.mdi-glass-cocktail:before { + content: "\F356"; +} + +.mdi-glass-flute:before { + content: "\F2A5"; +} + +.mdi-glass-mug:before { + content: "\F2A6"; +} + +.mdi-glass-stange:before { + content: "\F2A7"; +} + +.mdi-glass-tulip:before { + content: "\F2A8"; +} + +.mdi-glass-wine:before { + content: "\F875"; +} + +.mdi-glassdoor:before { + content: "\F2A9"; +} + +.mdi-glasses:before { + content: "\F2AA"; +} + +.mdi-globe-model:before { + content: "\F8E8"; +} + +.mdi-gmail:before { + content: "\F2AB"; +} + +.mdi-gnome:before { + content: "\F2AC"; +} + +.mdi-golf:before { + content: "\F822"; +} + +.mdi-gondola:before { + content: "\F685"; +} + +.mdi-google:before { + content: "\F2AD"; +} + +.mdi-google-allo:before { + content: "\F801"; +} + +.mdi-google-analytics:before { + content: "\F7CB"; +} + +.mdi-google-assistant:before { + content: "\F7CC"; +} + +.mdi-google-cardboard:before { + content: "\F2AE"; +} + +.mdi-google-chrome:before { + content: "\F2AF"; +} + +.mdi-google-circles:before { + content: "\F2B0"; +} + +.mdi-google-circles-communities:before { + content: "\F2B1"; +} + +.mdi-google-circles-extended:before { + content: "\F2B2"; +} + +.mdi-google-circles-group:before { + content: "\F2B3"; +} + +.mdi-google-controller:before { + content: "\F2B4"; +} + +.mdi-google-controller-off:before { + content: "\F2B5"; +} + +.mdi-google-drive:before { + content: "\F2B6"; +} + +.mdi-google-earth:before { + content: "\F2B7"; +} + +.mdi-google-fit:before { + content: "\F96B"; +} + +.mdi-google-glass:before { + content: "\F2B8"; +} + +.mdi-google-hangouts:before { + content: "\F2C9"; +} + +.mdi-google-home:before { + content: "\F823"; +} + +.mdi-google-keep:before { + content: "\F6DB"; +} + +.mdi-google-maps:before { + content: "\F5F5"; +} + +.mdi-google-nearby:before { + content: "\F2B9"; +} + +.mdi-google-pages:before { + content: "\F2BA"; +} + +.mdi-google-photos:before { + content: "\F6DC"; +} + +.mdi-google-physical-web:before { + content: "\F2BB"; +} + +.mdi-google-play:before { + content: "\F2BC"; +} + +.mdi-google-plus:before { + content: "\F2BD"; +} + +.mdi-google-plus-box:before { + content: "\F2BE"; +} + +.mdi-google-translate:before { + content: "\F2BF"; +} + +.mdi-google-wallet:before { + content: "\F2C0"; +} + +.mdi-gpu:before { + content: "\F8AD"; +} + +.mdi-gradient:before { + content: "\F69F"; +} + +.mdi-graphql:before { + content: "\F876"; +} + +.mdi-grease-pencil:before { + content: "\F648"; +} + +.mdi-greater-than:before { + content: "\F96C"; +} + +.mdi-greater-than-or-equal:before { + content: "\F96D"; +} + +.mdi-grid:before { + content: "\F2C1"; +} + +.mdi-grid-large:before { + content: "\F757"; +} + +.mdi-grid-off:before { + content: "\F2C2"; +} + +.mdi-group:before { + content: "\F2C3"; +} + +.mdi-guitar-acoustic:before { + content: "\F770"; +} + +.mdi-guitar-electric:before { + content: "\F2C4"; +} + +.mdi-guitar-pick:before { + content: "\F2C5"; +} + +.mdi-guitar-pick-outline:before { + content: "\F2C6"; +} + +.mdi-guy-fawkes-mask:before { + content: "\F824"; +} + +.mdi-hackernews:before { + content: "\F624"; +} + +.mdi-hamburger:before { + content: "\F684"; +} + +.mdi-hammer:before { + content: "\F8E9"; +} + +.mdi-hand-pointing-right:before { + content: "\F2C7"; +} + +.mdi-hanger:before { + content: "\F2C8"; +} + +.mdi-hard-hat:before { + content: "\F96E"; +} + +.mdi-harddisk:before { + content: "\F2CA"; +} + +.mdi-headphones:before { + content: "\F2CB"; +} + +.mdi-headphones-bluetooth:before { + content: "\F96F"; +} + +.mdi-headphones-box:before { + content: "\F2CC"; +} + +.mdi-headphones-off:before { + content: "\F7CD"; +} + +.mdi-headphones-settings:before { + content: "\F2CD"; +} + +.mdi-headset:before { + content: "\F2CE"; +} + +.mdi-headset-dock:before { + content: "\F2CF"; +} + +.mdi-headset-off:before { + content: "\F2D0"; +} + +.mdi-heart:before { + content: "\F2D1"; +} + +.mdi-heart-box:before { + content: "\F2D2"; +} + +.mdi-heart-box-outline:before { + content: "\F2D3"; +} + +.mdi-heart-broken:before { + content: "\F2D4"; +} + +.mdi-heart-circle:before { + content: "\F970"; +} + +.mdi-heart-circle-outline:before { + content: "\F971"; +} + +.mdi-heart-half:before { + content: "\F6DE"; +} + +.mdi-heart-half-full:before { + content: "\F6DD"; +} + +.mdi-heart-half-outline:before { + content: "\F6DF"; +} + +.mdi-heart-off:before { + content: "\F758"; +} + +.mdi-heart-outline:before { + content: "\F2D5"; +} + +.mdi-heart-pulse:before { + content: "\F5F6"; +} + +.mdi-help:before { + content: "\F2D6"; +} + +.mdi-help-box:before { + content: "\F78A"; +} + +.mdi-help-circle:before { + content: "\F2D7"; +} + +.mdi-help-circle-outline:before { + content: "\F625"; +} + +.mdi-help-network:before { + content: "\F6F4"; +} + +.mdi-hexagon:before { + content: "\F2D8"; +} + +.mdi-hexagon-multiple:before { + content: "\F6E0"; +} + +.mdi-hexagon-outline:before { + content: "\F2D9"; +} + +.mdi-high-definition:before { + content: "\F7CE"; +} + +.mdi-high-definition-box:before { + content: "\F877"; +} + +.mdi-highway:before { + content: "\F5F7"; +} + +.mdi-hinduism:before { + content: "\F972"; +} + +.mdi-history:before { + content: "\F2DA"; +} + +.mdi-hockey-puck:before { + content: "\F878"; +} + +.mdi-hockey-sticks:before { + content: "\F879"; +} + +.mdi-hololens:before { + content: "\F2DB"; +} + +.mdi-home:before { + content: "\F2DC"; +} + +.mdi-home-account:before { + content: "\F825"; +} + +.mdi-home-alert:before { + content: "\F87A"; +} + +.mdi-home-assistant:before { + content: "\F7CF"; +} + +.mdi-home-automation:before { + content: "\F7D0"; +} + +.mdi-home-circle:before { + content: "\F7D1"; +} + +.mdi-home-currency-usd:before { + content: "\F8AE"; +} + +.mdi-home-heart:before { + content: "\F826"; +} + +.mdi-home-lock:before { + content: "\F8EA"; +} + +.mdi-home-lock-open:before { + content: "\F8EB"; +} + +.mdi-home-map-marker:before { + content: "\F5F8"; +} + +.mdi-home-minus:before { + content: "\F973"; +} + +.mdi-home-modern:before { + content: "\F2DD"; +} + +.mdi-home-outline:before { + content: "\F6A0"; +} + +.mdi-home-plus:before { + content: "\F974"; +} + +.mdi-home-variant:before { + content: "\F2DE"; +} + +.mdi-hook:before { + content: "\F6E1"; +} + +.mdi-hook-off:before { + content: "\F6E2"; +} + +.mdi-hops:before { + content: "\F2DF"; +} + +.mdi-hospital:before { + content: "\F2E0"; +} + +.mdi-hospital-building:before { + content: "\F2E1"; +} + +.mdi-hospital-marker:before { + content: "\F2E2"; +} + +.mdi-hot-tub:before { + content: "\F827"; +} + +.mdi-hotel:before { + content: "\F2E3"; +} + +.mdi-houzz:before { + content: "\F2E4"; +} + +.mdi-houzz-box:before { + content: "\F2E5"; +} + +.mdi-hulu:before { + content: "\F828"; +} + +.mdi-human:before { + content: "\F2E6"; +} + +.mdi-human-child:before { + content: "\F2E7"; +} + +.mdi-human-female:before { + content: "\F649"; +} + +.mdi-human-greeting:before { + content: "\F64A"; +} + +.mdi-human-handsdown:before { + content: "\F64B"; +} + +.mdi-human-handsup:before { + content: "\F64C"; +} + +.mdi-human-male:before { + content: "\F64D"; +} + +.mdi-human-male-female:before { + content: "\F2E8"; +} + +.mdi-human-pregnant:before { + content: "\F5CF"; +} + +.mdi-humble-bundle:before { + content: "\F743"; +} + +.mdi-ice-cream:before { + content: "\F829"; +} + +.mdi-image:before { + content: "\F2E9"; +} + +.mdi-image-album:before { + content: "\F2EA"; +} + +.mdi-image-area:before { + content: "\F2EB"; +} + +.mdi-image-area-close:before { + content: "\F2EC"; +} + +.mdi-image-broken:before { + content: "\F2ED"; +} + +.mdi-image-broken-variant:before { + content: "\F2EE"; +} + +.mdi-image-filter:before { + content: "\F2EF"; +} + +.mdi-image-filter-black-white:before { + content: "\F2F0"; +} + +.mdi-image-filter-center-focus:before { + content: "\F2F1"; +} + +.mdi-image-filter-center-focus-weak:before { + content: "\F2F2"; +} + +.mdi-image-filter-drama:before { + content: "\F2F3"; +} + +.mdi-image-filter-frames:before { + content: "\F2F4"; +} + +.mdi-image-filter-hdr:before { + content: "\F2F5"; +} + +.mdi-image-filter-none:before { + content: "\F2F6"; +} + +.mdi-image-filter-tilt-shift:before { + content: "\F2F7"; +} + +.mdi-image-filter-vintage:before { + content: "\F2F8"; +} + +.mdi-image-multiple:before { + content: "\F2F9"; +} + +.mdi-image-off:before { + content: "\F82A"; +} + +.mdi-image-outline:before { + content: "\F975"; +} + +.mdi-image-plus:before { + content: "\F87B"; +} + +.mdi-image-search:before { + content: "\F976"; +} + +.mdi-image-search-outline:before { + content: "\F977"; +} + +.mdi-import:before { + content: "\F2FA"; +} + +.mdi-inbox:before { + content: "\F686"; +} + +.mdi-inbox-arrow-down:before { + content: "\F2FB"; +} + +.mdi-inbox-arrow-up:before { + content: "\F3D1"; +} + +.mdi-inbox-multiple:before { + content: "\F8AF"; +} + +.mdi-incognito:before { + content: "\F5F9"; +} + +.mdi-infinity:before { + content: "\F6E3"; +} + +.mdi-information:before { + content: "\F2FC"; +} + +.mdi-information-outline:before { + content: "\F2FD"; +} + +.mdi-information-variant:before { + content: "\F64E"; +} + +.mdi-instagram:before { + content: "\F2FE"; +} + +.mdi-instapaper:before { + content: "\F2FF"; +} + +.mdi-internet-explorer:before { + content: "\F300"; +} + +.mdi-invert-colors:before { + content: "\F301"; +} + +.mdi-islam:before { + content: "\F978"; +} + +.mdi-itunes:before { + content: "\F676"; +} + +.mdi-jeepney:before { + content: "\F302"; +} + +.mdi-jira:before { + content: "\F303"; +} + +.mdi-jquery:before { + content: "\F87C"; +} + +.mdi-jsfiddle:before { + content: "\F304"; +} + +.mdi-json:before { + content: "\F626"; +} + +.mdi-judaism:before { + content: "\F979"; +} + +.mdi-karate:before { + content: "\F82B"; +} + +.mdi-keg:before { + content: "\F305"; +} + +.mdi-kettle:before { + content: "\F5FA"; +} + +.mdi-key:before { + content: "\F306"; +} + +.mdi-key-change:before { + content: "\F307"; +} + +.mdi-key-minus:before { + content: "\F308"; +} + +.mdi-key-plus:before { + content: "\F309"; +} + +.mdi-key-remove:before { + content: "\F30A"; +} + +.mdi-key-variant:before { + content: "\F30B"; +} + +.mdi-keyboard:before { + content: "\F30C"; +} + +.mdi-keyboard-backspace:before { + content: "\F30D"; +} + +.mdi-keyboard-caps:before { + content: "\F30E"; +} + +.mdi-keyboard-close:before { + content: "\F30F"; +} + +.mdi-keyboard-off:before { + content: "\F310"; +} + +.mdi-keyboard-outline:before { + content: "\F97A"; +} + +.mdi-keyboard-return:before { + content: "\F311"; +} + +.mdi-keyboard-tab:before { + content: "\F312"; +} + +.mdi-keyboard-variant:before { + content: "\F313"; +} + +.mdi-kickstarter:before { + content: "\F744"; +} + +.mdi-kodi:before { + content: "\F314"; +} + +.mdi-label:before { + content: "\F315"; +} + +.mdi-label-outline:before { + content: "\F316"; +} + +.mdi-ladybug:before { + content: "\F82C"; +} + +.mdi-lambda:before { + content: "\F627"; +} + +.mdi-lamp:before { + content: "\F6B4"; +} + +.mdi-lan:before { + content: "\F317"; +} + +.mdi-lan-connect:before { + content: "\F318"; +} + +.mdi-lan-disconnect:before { + content: "\F319"; +} + +.mdi-lan-pending:before { + content: "\F31A"; +} + +.mdi-language-c:before { + content: "\F671"; +} + +.mdi-language-cpp:before { + content: "\F672"; +} + +.mdi-language-csharp:before { + content: "\F31B"; +} + +.mdi-language-css3:before { + content: "\F31C"; +} + +.mdi-language-go:before { + content: "\F7D2"; +} + +.mdi-language-html5:before { + content: "\F31D"; +} + +.mdi-language-javascript:before { + content: "\F31E"; +} + +.mdi-language-lua:before { + content: "\F8B0"; +} + +.mdi-language-php:before { + content: "\F31F"; +} + +.mdi-language-python:before { + content: "\F320"; +} + +.mdi-language-python-text:before { + content: "\F321"; +} + +.mdi-language-r:before { + content: "\F7D3"; +} + +.mdi-language-swift:before { + content: "\F6E4"; +} + +.mdi-language-typescript:before { + content: "\F6E5"; +} + +.mdi-laptop:before { + content: "\F322"; +} + +.mdi-laptop-chromebook:before { + content: "\F323"; +} + +.mdi-laptop-mac:before { + content: "\F324"; +} + +.mdi-laptop-off:before { + content: "\F6E6"; +} + +.mdi-laptop-windows:before { + content: "\F325"; +} + +.mdi-lastfm:before { + content: "\F326"; +} + +.mdi-lastpass:before { + content: "\F446"; +} + +.mdi-launch:before { + content: "\F327"; +} + +.mdi-lava-lamp:before { + content: "\F7D4"; +} + +.mdi-layers:before { + content: "\F328"; +} + +.mdi-layers-off:before { + content: "\F329"; +} + +.mdi-lead-pencil:before { + content: "\F64F"; +} + +.mdi-leaf:before { + content: "\F32A"; +} + +.mdi-led-off:before { + content: "\F32B"; +} + +.mdi-led-on:before { + content: "\F32C"; +} + +.mdi-led-outline:before { + content: "\F32D"; +} + +.mdi-led-strip:before { + content: "\F7D5"; +} + +.mdi-led-variant-off:before { + content: "\F32E"; +} + +.mdi-led-variant-on:before { + content: "\F32F"; +} + +.mdi-led-variant-outline:before { + content: "\F330"; +} + +.mdi-less-than:before { + content: "\F97B"; +} + +.mdi-less-than-or-equal:before { + content: "\F97C"; +} + +.mdi-library:before { + content: "\F331"; +} + +.mdi-library-books:before { + content: "\F332"; +} + +.mdi-library-music:before { + content: "\F333"; +} + +.mdi-library-plus:before { + content: "\F334"; +} + +.mdi-lifebuoy:before { + content: "\F87D"; +} + +.mdi-light-switch:before { + content: "\F97D"; +} + +.mdi-lightbulb:before { + content: "\F335"; +} + +.mdi-lightbulb-on:before { + content: "\F6E7"; +} + +.mdi-lightbulb-on-outline:before { + content: "\F6E8"; +} + +.mdi-lightbulb-outline:before { + content: "\F336"; +} + +.mdi-link:before { + content: "\F337"; +} + +.mdi-link-off:before { + content: "\F338"; +} + +.mdi-link-variant:before { + content: "\F339"; +} + +.mdi-link-variant-off:before { + content: "\F33A"; +} + +.mdi-linkedin:before { + content: "\F33B"; +} + +.mdi-linkedin-box:before { + content: "\F33C"; +} + +.mdi-linux:before { + content: "\F33D"; +} + +.mdi-linux-mint:before { + content: "\F8EC"; +} + +.mdi-loading:before { + content: "\F771"; +} + +.mdi-lock:before { + content: "\F33E"; +} + +.mdi-lock-alert:before { + content: "\F8ED"; +} + +.mdi-lock-clock:before { + content: "\F97E"; +} + +.mdi-lock-open:before { + content: "\F33F"; +} + +.mdi-lock-open-outline:before { + content: "\F340"; +} + +.mdi-lock-outline:before { + content: "\F341"; +} + +.mdi-lock-pattern:before { + content: "\F6E9"; +} + +.mdi-lock-plus:before { + content: "\F5FB"; +} + +.mdi-lock-question:before { + content: "\F8EE"; +} + +.mdi-lock-reset:before { + content: "\F772"; +} + +.mdi-lock-smart:before { + content: "\F8B1"; +} + +.mdi-locker:before { + content: "\F7D6"; +} + +.mdi-locker-multiple:before { + content: "\F7D7"; +} + +.mdi-login:before { + content: "\F342"; +} + +.mdi-login-variant:before { + content: "\F5FC"; +} + +.mdi-logout:before { + content: "\F343"; +} + +.mdi-logout-variant:before { + content: "\F5FD"; +} + +.mdi-looks:before { + content: "\F344"; +} + +.mdi-loop:before { + content: "\F6EA"; +} + +.mdi-loupe:before { + content: "\F345"; +} + +.mdi-lumx:before { + content: "\F346"; +} + +.mdi-magnet:before { + content: "\F347"; +} + +.mdi-magnet-on:before { + content: "\F348"; +} + +.mdi-magnify:before { + content: "\F349"; +} + +.mdi-magnify-close:before { + content: "\F97F"; +} + +.mdi-magnify-minus:before { + content: "\F34A"; +} + +.mdi-magnify-minus-outline:before { + content: "\F6EB"; +} + +.mdi-magnify-plus:before { + content: "\F34B"; +} + +.mdi-magnify-plus-outline:before { + content: "\F6EC"; +} + +.mdi-mail-ru:before { + content: "\F34C"; +} + +.mdi-mailbox:before { + content: "\F6ED"; +} + +.mdi-map:before { + content: "\F34D"; +} + +.mdi-map-marker:before { + content: "\F34E"; +} + +.mdi-map-marker-circle:before { + content: "\F34F"; +} + +.mdi-map-marker-distance:before { + content: "\F8EF"; +} + +.mdi-map-marker-minus:before { + content: "\F650"; +} + +.mdi-map-marker-multiple:before { + content: "\F350"; +} + +.mdi-map-marker-off:before { + content: "\F351"; +} + +.mdi-map-marker-outline:before { + content: "\F7D8"; +} + +.mdi-map-marker-plus:before { + content: "\F651"; +} + +.mdi-map-marker-radius:before { + content: "\F352"; +} + +.mdi-map-minus:before { + content: "\F980"; +} + +.mdi-map-outline:before { + content: "\F981"; +} + +.mdi-map-plus:before { + content: "\F982"; +} + +.mdi-map-search:before { + content: "\F983"; +} + +.mdi-map-search-outline:before { + content: "\F984"; +} + +.mdi-margin:before { + content: "\F353"; +} + +.mdi-markdown:before { + content: "\F354"; +} + +.mdi-marker:before { + content: "\F652"; +} + +.mdi-marker-check:before { + content: "\F355"; +} + +.mdi-material-design:before { + content: "\F985"; +} + +.mdi-material-ui:before { + content: "\F357"; +} + +.mdi-math-compass:before { + content: "\F358"; +} + +.mdi-matrix:before { + content: "\F628"; +} + +.mdi-maxcdn:before { + content: "\F359"; +} + +.mdi-medal:before { + content: "\F986"; +} + +.mdi-medical-bag:before { + content: "\F6EE"; +} + +.mdi-medium:before { + content: "\F35A"; +} + +.mdi-memory:before { + content: "\F35B"; +} + +.mdi-menu:before { + content: "\F35C"; +} + +.mdi-menu-down:before { + content: "\F35D"; +} + +.mdi-menu-down-outline:before { + content: "\F6B5"; +} + +.mdi-menu-left:before { + content: "\F35E"; +} + +.mdi-menu-right:before { + content: "\F35F"; +} + +.mdi-menu-up:before { + content: "\F360"; +} + +.mdi-menu-up-outline:before { + content: "\F6B6"; +} + +.mdi-message:before { + content: "\F361"; +} + +.mdi-message-alert:before { + content: "\F362"; +} + +.mdi-message-bulleted:before { + content: "\F6A1"; +} + +.mdi-message-bulleted-off:before { + content: "\F6A2"; +} + +.mdi-message-draw:before { + content: "\F363"; +} + +.mdi-message-image:before { + content: "\F364"; +} + +.mdi-message-outline:before { + content: "\F365"; +} + +.mdi-message-plus:before { + content: "\F653"; +} + +.mdi-message-processing:before { + content: "\F366"; +} + +.mdi-message-reply:before { + content: "\F367"; +} + +.mdi-message-reply-text:before { + content: "\F368"; +} + +.mdi-message-settings:before { + content: "\F6EF"; +} + +.mdi-message-settings-variant:before { + content: "\F6F0"; +} + +.mdi-message-text:before { + content: "\F369"; +} + +.mdi-message-text-outline:before { + content: "\F36A"; +} + +.mdi-message-video:before { + content: "\F36B"; +} + +.mdi-meteor:before { + content: "\F629"; +} + +.mdi-metronome:before { + content: "\F7D9"; +} + +.mdi-metronome-tick:before { + content: "\F7DA"; +} + +.mdi-micro-sd:before { + content: "\F7DB"; +} + +.mdi-microphone:before { + content: "\F36C"; +} + +.mdi-microphone-minus:before { + content: "\F8B2"; +} + +.mdi-microphone-off:before { + content: "\F36D"; +} + +.mdi-microphone-outline:before { + content: "\F36E"; +} + +.mdi-microphone-plus:before { + content: "\F8B3"; +} + +.mdi-microphone-settings:before { + content: "\F36F"; +} + +.mdi-microphone-variant:before { + content: "\F370"; +} + +.mdi-microphone-variant-off:before { + content: "\F371"; +} + +.mdi-microscope:before { + content: "\F654"; +} + +.mdi-microsoft:before { + content: "\F372"; +} + +.mdi-microsoft-dynamics:before { + content: "\F987"; +} + +.mdi-midi:before { + content: "\F8F0"; +} + +.mdi-midi-port:before { + content: "\F8F1"; +} + +.mdi-minecraft:before { + content: "\F373"; +} + +.mdi-minus:before { + content: "\F374"; +} + +.mdi-minus-box:before { + content: "\F375"; +} + +.mdi-minus-box-outline:before { + content: "\F6F1"; +} + +.mdi-minus-circle:before { + content: "\F376"; +} + +.mdi-minus-circle-outline:before { + content: "\F377"; +} + +.mdi-minus-network:before { + content: "\F378"; +} + +.mdi-mixcloud:before { + content: "\F62A"; +} + +.mdi-mixed-reality:before { + content: "\F87E"; +} + +.mdi-mixer:before { + content: "\F7DC"; +} + +.mdi-monitor:before { + content: "\F379"; +} + +.mdi-monitor-cellphone:before { + content: "\F988"; +} + +.mdi-monitor-cellphone-star:before { + content: "\F989"; +} + +.mdi-monitor-multiple:before { + content: "\F37A"; +} + +.mdi-more:before { + content: "\F37B"; +} + +.mdi-motorbike:before { + content: "\F37C"; +} + +.mdi-mouse:before { + content: "\F37D"; +} + +.mdi-mouse-bluetooth:before { + content: "\F98A"; +} + +.mdi-mouse-off:before { + content: "\F37E"; +} + +.mdi-mouse-variant:before { + content: "\F37F"; +} + +.mdi-mouse-variant-off:before { + content: "\F380"; +} + +.mdi-move-resize:before { + content: "\F655"; +} + +.mdi-move-resize-variant:before { + content: "\F656"; +} + +.mdi-movie:before { + content: "\F381"; +} + +.mdi-movie-roll:before { + content: "\F7DD"; +} + +.mdi-muffin:before { + content: "\F98B"; +} + +.mdi-multiplication:before { + content: "\F382"; +} + +.mdi-multiplication-box:before { + content: "\F383"; +} + +.mdi-mushroom:before { + content: "\F7DE"; +} + +.mdi-mushroom-outline:before { + content: "\F7DF"; +} + +.mdi-music:before { + content: "\F759"; +} + +.mdi-music-box:before { + content: "\F384"; +} + +.mdi-music-box-outline:before { + content: "\F385"; +} + +.mdi-music-circle:before { + content: "\F386"; +} + +.mdi-music-note:before { + content: "\F387"; +} + +.mdi-music-note-bluetooth:before { + content: "\F5FE"; +} + +.mdi-music-note-bluetooth-off:before { + content: "\F5FF"; +} + +.mdi-music-note-eighth:before { + content: "\F388"; +} + +.mdi-music-note-half:before { + content: "\F389"; +} + +.mdi-music-note-off:before { + content: "\F38A"; +} + +.mdi-music-note-quarter:before { + content: "\F38B"; +} + +.mdi-music-note-sixteenth:before { + content: "\F38C"; +} + +.mdi-music-note-whole:before { + content: "\F38D"; +} + +.mdi-music-off:before { + content: "\F75A"; +} + +.mdi-nas:before { + content: "\F8F2"; +} + +.mdi-nativescript:before { + content: "\F87F"; +} + +.mdi-nature:before { + content: "\F38E"; +} + +.mdi-nature-people:before { + content: "\F38F"; +} + +.mdi-navigation:before { + content: "\F390"; +} + +.mdi-near-me:before { + content: "\F5CD"; +} + +.mdi-needle:before { + content: "\F391"; +} + +.mdi-netflix:before { + content: "\F745"; +} + +.mdi-network:before { + content: "\F6F2"; +} + +.mdi-network-strength-1:before { + content: "\F8F3"; +} + +.mdi-network-strength-1-alert:before { + content: "\F8F4"; +} + +.mdi-network-strength-2:before { + content: "\F8F5"; +} + +.mdi-network-strength-2-alert:before { + content: "\F8F6"; +} + +.mdi-network-strength-3:before { + content: "\F8F7"; +} + +.mdi-network-strength-3-alert:before { + content: "\F8F8"; +} + +.mdi-network-strength-4:before { + content: "\F8F9"; +} + +.mdi-network-strength-4-alert:before { + content: "\F8FA"; +} + +.mdi-network-strength-off:before { + content: "\F8FB"; +} + +.mdi-network-strength-off-outline:before { + content: "\F8FC"; +} + +.mdi-network-strength-outline:before { + content: "\F8FD"; +} + +.mdi-new-box:before { + content: "\F394"; +} + +.mdi-newspaper:before { + content: "\F395"; +} + +.mdi-nfc:before { + content: "\F396"; +} + +.mdi-nfc-tap:before { + content: "\F397"; +} + +.mdi-nfc-variant:before { + content: "\F398"; +} + +.mdi-ninja:before { + content: "\F773"; +} + +.mdi-nintendo-switch:before { + content: "\F7E0"; +} + +.mdi-nodejs:before { + content: "\F399"; +} + +.mdi-not-equal:before { + content: "\F98C"; +} + +.mdi-not-equal-variant:before { + content: "\F98D"; +} + +.mdi-note:before { + content: "\F39A"; +} + +.mdi-note-multiple:before { + content: "\F6B7"; +} + +.mdi-note-multiple-outline:before { + content: "\F6B8"; +} + +.mdi-note-outline:before { + content: "\F39B"; +} + +.mdi-note-plus:before { + content: "\F39C"; +} + +.mdi-note-plus-outline:before { + content: "\F39D"; +} + +.mdi-note-text:before { + content: "\F39E"; +} + +.mdi-notebook:before { + content: "\F82D"; +} + +.mdi-notification-clear-all:before { + content: "\F39F"; +} + +.mdi-npm:before { + content: "\F6F6"; +} + +.mdi-npm-variant:before { + content: "\F98E"; +} + +.mdi-npm-variant-outline:before { + content: "\F98F"; +} + +.mdi-nuke:before { + content: "\F6A3"; +} + +.mdi-null:before { + content: "\F7E1"; +} + +.mdi-numeric:before { + content: "\F3A0"; +} + +.mdi-numeric-0-box:before { + content: "\F3A1"; +} + +.mdi-numeric-0-box-multiple-outline:before { + content: "\F3A2"; +} + +.mdi-numeric-0-box-outline:before { + content: "\F3A3"; +} + +.mdi-numeric-1-box:before { + content: "\F3A4"; +} + +.mdi-numeric-1-box-multiple-outline:before { + content: "\F3A5"; +} + +.mdi-numeric-1-box-outline:before { + content: "\F3A6"; +} + +.mdi-numeric-2-box:before { + content: "\F3A7"; +} + +.mdi-numeric-2-box-multiple-outline:before { + content: "\F3A8"; +} + +.mdi-numeric-2-box-outline:before { + content: "\F3A9"; +} + +.mdi-numeric-3-box:before { + content: "\F3AA"; +} + +.mdi-numeric-3-box-multiple-outline:before { + content: "\F3AB"; +} + +.mdi-numeric-3-box-outline:before { + content: "\F3AC"; +} + +.mdi-numeric-4-box:before { + content: "\F3AD"; +} + +.mdi-numeric-4-box-multiple-outline:before { + content: "\F3AE"; +} + +.mdi-numeric-4-box-outline:before { + content: "\F3AF"; +} + +.mdi-numeric-5-box:before { + content: "\F3B0"; +} + +.mdi-numeric-5-box-multiple-outline:before { + content: "\F3B1"; +} + +.mdi-numeric-5-box-outline:before { + content: "\F3B2"; +} + +.mdi-numeric-6-box:before { + content: "\F3B3"; +} + +.mdi-numeric-6-box-multiple-outline:before { + content: "\F3B4"; +} + +.mdi-numeric-6-box-outline:before { + content: "\F3B5"; +} + +.mdi-numeric-7-box:before { + content: "\F3B6"; +} + +.mdi-numeric-7-box-multiple-outline:before { + content: "\F3B7"; +} + +.mdi-numeric-7-box-outline:before { + content: "\F3B8"; +} + +.mdi-numeric-8-box:before { + content: "\F3B9"; +} + +.mdi-numeric-8-box-multiple-outline:before { + content: "\F3BA"; +} + +.mdi-numeric-8-box-outline:before { + content: "\F3BB"; +} + +.mdi-numeric-9-box:before { + content: "\F3BC"; +} + +.mdi-numeric-9-box-multiple-outline:before { + content: "\F3BD"; +} + +.mdi-numeric-9-box-outline:before { + content: "\F3BE"; +} + +.mdi-numeric-9-plus-box:before { + content: "\F3BF"; +} + +.mdi-numeric-9-plus-box-multiple-outline:before { + content: "\F3C0"; +} + +.mdi-numeric-9-plus-box-outline:before { + content: "\F3C1"; +} + +.mdi-nut:before { + content: "\F6F7"; +} + +.mdi-nutrition:before { + content: "\F3C2"; +} + +.mdi-oar:before { + content: "\F67B"; +} + +.mdi-octagon:before { + content: "\F3C3"; +} + +.mdi-octagon-outline:before { + content: "\F3C4"; +} + +.mdi-octagram:before { + content: "\F6F8"; +} + +.mdi-octagram-outline:before { + content: "\F774"; +} + +.mdi-odnoklassniki:before { + content: "\F3C5"; +} + +.mdi-office:before { + content: "\F3C6"; +} + +.mdi-office-building:before { + content: "\F990"; +} + +.mdi-oil:before { + content: "\F3C7"; +} + +.mdi-oil-temperature:before { + content: "\F3C8"; +} + +.mdi-omega:before { + content: "\F3C9"; +} + +.mdi-onedrive:before { + content: "\F3CA"; +} + +.mdi-onenote:before { + content: "\F746"; +} + +.mdi-onepassword:before { + content: "\F880"; +} + +.mdi-opacity:before { + content: "\F5CC"; +} + +.mdi-open-in-app:before { + content: "\F3CB"; +} + +.mdi-open-in-new:before { + content: "\F3CC"; +} + +.mdi-openid:before { + content: "\F3CD"; +} + +.mdi-opera:before { + content: "\F3CE"; +} + +.mdi-orbit:before { + content: "\F018"; +} + +.mdi-ornament:before { + content: "\F3CF"; +} + +.mdi-ornament-variant:before { + content: "\F3D0"; +} + +.mdi-owl:before { + content: "\F3D2"; +} + +.mdi-package:before { + content: "\F3D3"; +} + +.mdi-package-down:before { + content: "\F3D4"; +} + +.mdi-package-up:before { + content: "\F3D5"; +} + +.mdi-package-variant:before { + content: "\F3D6"; +} + +.mdi-package-variant-closed:before { + content: "\F3D7"; +} + +.mdi-page-first:before { + content: "\F600"; +} + +.mdi-page-last:before { + content: "\F601"; +} + +.mdi-page-layout-body:before { + content: "\F6F9"; +} + +.mdi-page-layout-footer:before { + content: "\F6FA"; +} + +.mdi-page-layout-header:before { + content: "\F6FB"; +} + +.mdi-page-layout-sidebar-left:before { + content: "\F6FC"; +} + +.mdi-page-layout-sidebar-right:before { + content: "\F6FD"; +} + +.mdi-palette:before { + content: "\F3D8"; +} + +.mdi-palette-advanced:before { + content: "\F3D9"; +} + +.mdi-palette-swatch:before { + content: "\F8B4"; +} + +.mdi-panda:before { + content: "\F3DA"; +} + +.mdi-pandora:before { + content: "\F3DB"; +} + +.mdi-panorama:before { + content: "\F3DC"; +} + +.mdi-panorama-fisheye:before { + content: "\F3DD"; +} + +.mdi-panorama-horizontal:before { + content: "\F3DE"; +} + +.mdi-panorama-vertical:before { + content: "\F3DF"; +} + +.mdi-panorama-wide-angle:before { + content: "\F3E0"; +} + +.mdi-paper-cut-vertical:before { + content: "\F3E1"; +} + +.mdi-paperclip:before { + content: "\F3E2"; +} + +.mdi-parking:before { + content: "\F3E3"; +} + +.mdi-passport:before { + content: "\F7E2"; +} + +.mdi-patreon:before { + content: "\F881"; +} + +.mdi-pause:before { + content: "\F3E4"; +} + +.mdi-pause-circle:before { + content: "\F3E5"; +} + +.mdi-pause-circle-outline:before { + content: "\F3E6"; +} + +.mdi-pause-octagon:before { + content: "\F3E7"; +} + +.mdi-pause-octagon-outline:before { + content: "\F3E8"; +} + +.mdi-paw:before { + content: "\F3E9"; +} + +.mdi-paw-off:before { + content: "\F657"; +} + +.mdi-paypal:before { + content: "\F882"; +} + +.mdi-peace:before { + content: "\F883"; +} + +.mdi-pen:before { + content: "\F3EA"; +} + +.mdi-pencil:before { + content: "\F3EB"; +} + +.mdi-pencil-box:before { + content: "\F3EC"; +} + +.mdi-pencil-box-outline:before { + content: "\F3ED"; +} + +.mdi-pencil-circle:before { + content: "\F6FE"; +} + +.mdi-pencil-circle-outline:before { + content: "\F775"; +} + +.mdi-pencil-lock:before { + content: "\F3EE"; +} + +.mdi-pencil-off:before { + content: "\F3EF"; +} + +.mdi-pentagon:before { + content: "\F6FF"; +} + +.mdi-pentagon-outline:before { + content: "\F700"; +} + +.mdi-percent:before { + content: "\F3F0"; +} + +.mdi-periodic-table:before { + content: "\F8B5"; +} + +.mdi-periodic-table-co2:before { + content: "\F7E3"; +} + +.mdi-periscope:before { + content: "\F747"; +} + +.mdi-pharmacy:before { + content: "\F3F1"; +} + +.mdi-phone:before { + content: "\F3F2"; +} + +.mdi-phone-bluetooth:before { + content: "\F3F3"; +} + +.mdi-phone-classic:before { + content: "\F602"; +} + +.mdi-phone-forward:before { + content: "\F3F4"; +} + +.mdi-phone-hangup:before { + content: "\F3F5"; +} + +.mdi-phone-in-talk:before { + content: "\F3F6"; +} + +.mdi-phone-incoming:before { + content: "\F3F7"; +} + +.mdi-phone-locked:before { + content: "\F3F8"; +} + +.mdi-phone-log:before { + content: "\F3F9"; +} + +.mdi-phone-minus:before { + content: "\F658"; +} + +.mdi-phone-missed:before { + content: "\F3FA"; +} + +.mdi-phone-outgoing:before { + content: "\F3FB"; +} + +.mdi-phone-paused:before { + content: "\F3FC"; +} + +.mdi-phone-plus:before { + content: "\F659"; +} + +.mdi-phone-return:before { + content: "\F82E"; +} + +.mdi-phone-rotate-landscape:before { + content: "\F884"; +} + +.mdi-phone-rotate-portrait:before { + content: "\F885"; +} + +.mdi-phone-settings:before { + content: "\F3FD"; +} + +.mdi-phone-voip:before { + content: "\F3FE"; +} + +.mdi-pi:before { + content: "\F3FF"; +} + +.mdi-pi-box:before { + content: "\F400"; +} + +.mdi-piano:before { + content: "\F67C"; +} + +.mdi-pickaxe:before { + content: "\F8B6"; +} + +.mdi-pier:before { + content: "\F886"; +} + +.mdi-pier-crane:before { + content: "\F887"; +} + +.mdi-pig:before { + content: "\F401"; +} + +.mdi-pill:before { + content: "\F402"; +} + +.mdi-pillar:before { + content: "\F701"; +} + +.mdi-pin:before { + content: "\F403"; +} + +.mdi-pin-off:before { + content: "\F404"; +} + +.mdi-pin-off-outline:before { + content: "\F92F"; +} + +.mdi-pin-outline:before { + content: "\F930"; +} + +.mdi-pine-tree:before { + content: "\F405"; +} + +.mdi-pine-tree-box:before { + content: "\F406"; +} + +.mdi-pinterest:before { + content: "\F407"; +} + +.mdi-pinterest-box:before { + content: "\F408"; +} + +.mdi-pipe:before { + content: "\F7E4"; +} + +.mdi-pipe-disconnected:before { + content: "\F7E5"; +} + +.mdi-pipe-leak:before { + content: "\F888"; +} + +.mdi-pistol:before { + content: "\F702"; +} + +.mdi-piston:before { + content: "\F889"; +} + +.mdi-pizza:before { + content: "\F409"; +} + +.mdi-plane-shield:before { + content: "\F6BA"; +} + +.mdi-play:before { + content: "\F40A"; +} + +.mdi-play-box-outline:before { + content: "\F40B"; +} + +.mdi-play-circle:before { + content: "\F40C"; +} + +.mdi-play-circle-outline:before { + content: "\F40D"; +} + +.mdi-play-network:before { + content: "\F88A"; +} + +.mdi-play-pause:before { + content: "\F40E"; +} + +.mdi-play-protected-content:before { + content: "\F40F"; +} + +.mdi-play-speed:before { + content: "\F8FE"; +} + +.mdi-playlist-check:before { + content: "\F5C7"; +} + +.mdi-playlist-edit:before { + content: "\F8FF"; +} + +.mdi-playlist-minus:before { + content: "\F410"; +} + +.mdi-playlist-play:before { + content: "\F411"; +} + +.mdi-playlist-plus:before { + content: "\F412"; +} + +.mdi-playlist-remove:before { + content: "\F413"; +} + +.mdi-playstation:before { + content: "\F414"; +} + +.mdi-plex:before { + content: "\F6B9"; +} + +.mdi-plus:before { + content: "\F415"; +} + +.mdi-plus-box:before { + content: "\F416"; +} + +.mdi-plus-box-outline:before { + content: "\F703"; +} + +.mdi-plus-circle:before { + content: "\F417"; +} + +.mdi-plus-circle-multiple-outline:before { + content: "\F418"; +} + +.mdi-plus-circle-outline:before { + content: "\F419"; +} + +.mdi-plus-minus:before { + content: "\F991"; +} + +.mdi-plus-minus-box:before { + content: "\F992"; +} + +.mdi-plus-network:before { + content: "\F41A"; +} + +.mdi-plus-one:before { + content: "\F41B"; +} + +.mdi-plus-outline:before { + content: "\F704"; +} + +.mdi-pocket:before { + content: "\F41C"; +} + +.mdi-podcast:before { + content: "\F993"; +} + +.mdi-pokeball:before { + content: "\F41D"; +} + +.mdi-poker-chip:before { + content: "\F82F"; +} + +.mdi-polaroid:before { + content: "\F41E"; +} + +.mdi-poll:before { + content: "\F41F"; +} + +.mdi-poll-box:before { + content: "\F420"; +} + +.mdi-polymer:before { + content: "\F421"; +} + +.mdi-pool:before { + content: "\F606"; +} + +.mdi-popcorn:before { + content: "\F422"; +} + +.mdi-pot:before { + content: "\F65A"; +} + +.mdi-pot-mix:before { + content: "\F65B"; +} + +.mdi-pound:before { + content: "\F423"; +} + +.mdi-pound-box:before { + content: "\F424"; +} + +.mdi-power:before { + content: "\F425"; +} + +.mdi-power-cycle:before { + content: "\F900"; +} + +.mdi-power-off:before { + content: "\F901"; +} + +.mdi-power-on:before { + content: "\F902"; +} + +.mdi-power-plug:before { + content: "\F6A4"; +} + +.mdi-power-plug-off:before { + content: "\F6A5"; +} + +.mdi-power-settings:before { + content: "\F426"; +} + +.mdi-power-sleep:before { + content: "\F903"; +} + +.mdi-power-socket:before { + content: "\F427"; +} + +.mdi-power-socket-au:before { + content: "\F904"; +} + +.mdi-power-socket-eu:before { + content: "\F7E6"; +} + +.mdi-power-socket-uk:before { + content: "\F7E7"; +} + +.mdi-power-socket-us:before { + content: "\F7E8"; +} + +.mdi-power-standby:before { + content: "\F905"; +} + +.mdi-prescription:before { + content: "\F705"; +} + +.mdi-presentation:before { + content: "\F428"; +} + +.mdi-presentation-play:before { + content: "\F429"; +} + +.mdi-printer:before { + content: "\F42A"; +} + +.mdi-printer-3d:before { + content: "\F42B"; +} + +.mdi-printer-alert:before { + content: "\F42C"; +} + +.mdi-printer-settings:before { + content: "\F706"; +} + +.mdi-priority-high:before { + content: "\F603"; +} + +.mdi-priority-low:before { + content: "\F604"; +} + +.mdi-professional-hexagon:before { + content: "\F42D"; +} + +.mdi-progress-check:before { + content: "\F994"; +} + +.mdi-progress-clock:before { + content: "\F995"; +} + +.mdi-progress-download:before { + content: "\F996"; +} + +.mdi-progress-upload:before { + content: "\F997"; +} + +.mdi-projector:before { + content: "\F42E"; +} + +.mdi-projector-screen:before { + content: "\F42F"; +} + +.mdi-publish:before { + content: "\F6A6"; +} + +.mdi-pulse:before { + content: "\F430"; +} + +.mdi-puzzle:before { + content: "\F431"; +} + +.mdi-qi:before { + content: "\F998"; +} + +.mdi-qqchat:before { + content: "\F605"; +} + +.mdi-qrcode:before { + content: "\F432"; +} + +.mdi-qrcode-edit:before { + content: "\F8B7"; +} + +.mdi-qrcode-scan:before { + content: "\F433"; +} + +.mdi-quadcopter:before { + content: "\F434"; +} + +.mdi-quality-high:before { + content: "\F435"; +} + +.mdi-quicktime:before { + content: "\F436"; +} + +.mdi-rabbit:before { + content: "\F906"; +} + +.mdi-radar:before { + content: "\F437"; +} + +.mdi-radiator:before { + content: "\F438"; +} + +.mdi-radio:before { + content: "\F439"; +} + +.mdi-radio-handheld:before { + content: "\F43A"; +} + +.mdi-radio-tower:before { + content: "\F43B"; +} + +.mdi-radioactive:before { + content: "\F43C"; +} + +.mdi-radiobox-blank:before { + content: "\F43D"; +} + +.mdi-radiobox-marked:before { + content: "\F43E"; +} + +.mdi-raspberrypi:before { + content: "\F43F"; +} + +.mdi-ray-end:before { + content: "\F440"; +} + +.mdi-ray-end-arrow:before { + content: "\F441"; +} + +.mdi-ray-start:before { + content: "\F442"; +} + +.mdi-ray-start-arrow:before { + content: "\F443"; +} + +.mdi-ray-start-end:before { + content: "\F444"; +} + +.mdi-ray-vertex:before { + content: "\F445"; +} + +.mdi-react:before { + content: "\F707"; +} + +.mdi-read:before { + content: "\F447"; +} + +.mdi-receipt:before { + content: "\F449"; +} + +.mdi-record:before { + content: "\F44A"; +} + +.mdi-record-player:before { + content: "\F999"; +} + +.mdi-record-rec:before { + content: "\F44B"; +} + +.mdi-recycle:before { + content: "\F44C"; +} + +.mdi-reddit:before { + content: "\F44D"; +} + +.mdi-redo:before { + content: "\F44E"; +} + +.mdi-redo-variant:before { + content: "\F44F"; +} + +.mdi-refresh:before { + content: "\F450"; +} + +.mdi-regex:before { + content: "\F451"; +} + +.mdi-relative-scale:before { + content: "\F452"; +} + +.mdi-reload:before { + content: "\F453"; +} + +.mdi-reminder:before { + content: "\F88B"; +} + +.mdi-remote:before { + content: "\F454"; +} + +.mdi-remote-desktop:before { + content: "\F8B8"; +} + +.mdi-rename-box:before { + content: "\F455"; +} + +.mdi-reorder-horizontal:before { + content: "\F687"; +} + +.mdi-reorder-vertical:before { + content: "\F688"; +} + +.mdi-repeat:before { + content: "\F456"; +} + +.mdi-repeat-off:before { + content: "\F457"; +} + +.mdi-repeat-once:before { + content: "\F458"; +} + +.mdi-replay:before { + content: "\F459"; +} + +.mdi-reply:before { + content: "\F45A"; +} + +.mdi-reply-all:before { + content: "\F45B"; +} + +.mdi-reproduction:before { + content: "\F45C"; +} + +.mdi-resize-bottom-right:before { + content: "\F45D"; +} + +.mdi-responsive:before { + content: "\F45E"; +} + +.mdi-restart:before { + content: "\F708"; +} + +.mdi-restore:before { + content: "\F99A"; +} + +.mdi-restore-clock:before { + content: "\F6A7"; +} + +.mdi-rewind:before { + content: "\F45F"; +} + +.mdi-rewind-outline:before { + content: "\F709"; +} + +.mdi-rhombus:before { + content: "\F70A"; +} + +.mdi-rhombus-outline:before { + content: "\F70B"; +} + +.mdi-ribbon:before { + content: "\F460"; +} + +.mdi-rice:before { + content: "\F7E9"; +} + +.mdi-ring:before { + content: "\F7EA"; +} + +.mdi-road:before { + content: "\F461"; +} + +.mdi-road-variant:before { + content: "\F462"; +} + +.mdi-robot:before { + content: "\F6A8"; +} + +.mdi-robot-vacuum:before { + content: "\F70C"; +} + +.mdi-robot-vacuum-variant:before { + content: "\F907"; +} + +.mdi-rocket:before { + content: "\F463"; +} + +.mdi-room-service:before { + content: "\F88C"; +} + +.mdi-rotate-3d:before { + content: "\F464"; +} + +.mdi-rotate-left:before { + content: "\F465"; +} + +.mdi-rotate-left-variant:before { + content: "\F466"; +} + +.mdi-rotate-right:before { + content: "\F467"; +} + +.mdi-rotate-right-variant:before { + content: "\F468"; +} + +.mdi-rounded-corner:before { + content: "\F607"; +} + +.mdi-router-wireless:before { + content: "\F469"; +} + +.mdi-routes:before { + content: "\F46A"; +} + +.mdi-rowing:before { + content: "\F608"; +} + +.mdi-rss:before { + content: "\F46B"; +} + +.mdi-rss-box:before { + content: "\F46C"; +} + +.mdi-ruler:before { + content: "\F46D"; +} + +.mdi-run:before { + content: "\F70D"; +} + +.mdi-run-fast:before { + content: "\F46E"; +} + +.mdi-sale:before { + content: "\F46F"; +} + +.mdi-salesforce:before { + content: "\F88D"; +} + +.mdi-sass:before { + content: "\F7EB"; +} + +.mdi-satellite:before { + content: "\F470"; +} + +.mdi-satellite-uplink:before { + content: "\F908"; +} + +.mdi-satellite-variant:before { + content: "\F471"; +} + +.mdi-sausage:before { + content: "\F8B9"; +} + +.mdi-saxophone:before { + content: "\F609"; +} + +.mdi-scale:before { + content: "\F472"; +} + +.mdi-scale-balance:before { + content: "\F5D1"; +} + +.mdi-scale-bathroom:before { + content: "\F473"; +} + +.mdi-scanner:before { + content: "\F6AA"; +} + +.mdi-scanner-off:before { + content: "\F909"; +} + +.mdi-school:before { + content: "\F474"; +} + +.mdi-screen-rotation:before { + content: "\F475"; +} + +.mdi-screen-rotation-lock:before { + content: "\F476"; +} + +.mdi-screwdriver:before { + content: "\F477"; +} + +.mdi-script:before { + content: "\F478"; +} + +.mdi-sd:before { + content: "\F479"; +} + +.mdi-seal:before { + content: "\F47A"; +} + +.mdi-search-web:before { + content: "\F70E"; +} + +.mdi-seat-flat:before { + content: "\F47B"; +} + +.mdi-seat-flat-angled:before { + content: "\F47C"; +} + +.mdi-seat-individual-suite:before { + content: "\F47D"; +} + +.mdi-seat-legroom-extra:before { + content: "\F47E"; +} + +.mdi-seat-legroom-normal:before { + content: "\F47F"; +} + +.mdi-seat-legroom-reduced:before { + content: "\F480"; +} + +.mdi-seat-recline-extra:before { + content: "\F481"; +} + +.mdi-seat-recline-normal:before { + content: "\F482"; +} + +.mdi-security:before { + content: "\F483"; +} + +.mdi-security-account:before { + content: "\F88E"; +} + +.mdi-security-close:before { + content: "\F99B"; +} + +.mdi-security-home:before { + content: "\F689"; +} + +.mdi-security-lock:before { + content: "\F99C"; +} + +.mdi-security-network:before { + content: "\F484"; +} + +.mdi-security-off:before { + content: "\F99D"; +} + +.mdi-select:before { + content: "\F485"; +} + +.mdi-select-all:before { + content: "\F486"; +} + +.mdi-select-inverse:before { + content: "\F487"; +} + +.mdi-select-off:before { + content: "\F488"; +} + +.mdi-selection:before { + content: "\F489"; +} + +.mdi-selection-off:before { + content: "\F776"; +} + +.mdi-send:before { + content: "\F48A"; +} + +.mdi-send-secure:before { + content: "\F7EC"; +} + +.mdi-serial-port:before { + content: "\F65C"; +} + +.mdi-server:before { + content: "\F48B"; +} + +.mdi-server-minus:before { + content: "\F48C"; +} + +.mdi-server-network:before { + content: "\F48D"; +} + +.mdi-server-network-off:before { + content: "\F48E"; +} + +.mdi-server-off:before { + content: "\F48F"; +} + +.mdi-server-plus:before { + content: "\F490"; +} + +.mdi-server-remove:before { + content: "\F491"; +} + +.mdi-server-security:before { + content: "\F492"; +} + +.mdi-set-all:before { + content: "\F777"; +} + +.mdi-set-center:before { + content: "\F778"; +} + +.mdi-set-center-right:before { + content: "\F779"; +} + +.mdi-set-left:before { + content: "\F77A"; +} + +.mdi-set-left-center:before { + content: "\F77B"; +} + +.mdi-set-left-right:before { + content: "\F77C"; +} + +.mdi-set-none:before { + content: "\F77D"; +} + +.mdi-set-right:before { + content: "\F77E"; +} + +.mdi-set-top-box:before { + content: "\F99E"; +} + +.mdi-settings:before { + content: "\F493"; +} + +.mdi-settings-box:before { + content: "\F494"; +} + +.mdi-settings-outline:before { + content: "\F8BA"; +} + +.mdi-shape:before { + content: "\F830"; +} + +.mdi-shape-circle-plus:before { + content: "\F65D"; +} + +.mdi-shape-outline:before { + content: "\F831"; +} + +.mdi-shape-plus:before { + content: "\F495"; +} + +.mdi-shape-polygon-plus:before { + content: "\F65E"; +} + +.mdi-shape-rectangle-plus:before { + content: "\F65F"; +} + +.mdi-shape-square-plus:before { + content: "\F660"; +} + +.mdi-share:before { + content: "\F496"; +} + +.mdi-share-outline:before { + content: "\F931"; +} + +.mdi-share-variant:before { + content: "\F497"; +} + +.mdi-shield:before { + content: "\F498"; +} + +.mdi-shield-half-full:before { + content: "\F77F"; +} + +.mdi-shield-outline:before { + content: "\F499"; +} + +.mdi-ship-wheel:before { + content: "\F832"; +} + +.mdi-shopping:before { + content: "\F49A"; +} + +.mdi-shopping-music:before { + content: "\F49B"; +} + +.mdi-shovel:before { + content: "\F70F"; +} + +.mdi-shovel-off:before { + content: "\F710"; +} + +.mdi-shower:before { + content: "\F99F"; +} + +.mdi-shower-head:before { + content: "\F9A0"; +} + +.mdi-shredder:before { + content: "\F49C"; +} + +.mdi-shuffle:before { + content: "\F49D"; +} + +.mdi-shuffle-disabled:before { + content: "\F49E"; +} + +.mdi-shuffle-variant:before { + content: "\F49F"; +} + +.mdi-sigma:before { + content: "\F4A0"; +} + +.mdi-sigma-lower:before { + content: "\F62B"; +} + +.mdi-sign-caution:before { + content: "\F4A1"; +} + +.mdi-sign-direction:before { + content: "\F780"; +} + +.mdi-sign-text:before { + content: "\F781"; +} + +.mdi-signal:before { + content: "\F4A2"; +} + +.mdi-signal-2g:before { + content: "\F711"; +} + +.mdi-signal-3g:before { + content: "\F712"; +} + +.mdi-signal-4g:before { + content: "\F713"; +} + +.mdi-signal-cellular-1:before { + content: "\F8BB"; +} + +.mdi-signal-cellular-2:before { + content: "\F8BC"; +} + +.mdi-signal-cellular-3:before { + content: "\F8BD"; +} + +.mdi-signal-cellular-outline:before { + content: "\F8BE"; +} + +.mdi-signal-hspa:before { + content: "\F714"; +} + +.mdi-signal-hspa-plus:before { + content: "\F715"; +} + +.mdi-signal-off:before { + content: "\F782"; +} + +.mdi-signal-variant:before { + content: "\F60A"; +} + +.mdi-silverware:before { + content: "\F4A3"; +} + +.mdi-silverware-fork:before { + content: "\F4A4"; +} + +.mdi-silverware-spoon:before { + content: "\F4A5"; +} + +.mdi-silverware-variant:before { + content: "\F4A6"; +} + +.mdi-sim:before { + content: "\F4A7"; +} + +.mdi-sim-alert:before { + content: "\F4A8"; +} + +.mdi-sim-off:before { + content: "\F4A9"; +} + +.mdi-sitemap:before { + content: "\F4AA"; +} + +.mdi-skip-backward:before { + content: "\F4AB"; +} + +.mdi-skip-forward:before { + content: "\F4AC"; +} + +.mdi-skip-next:before { + content: "\F4AD"; +} + +.mdi-skip-next-circle:before { + content: "\F661"; +} + +.mdi-skip-next-circle-outline:before { + content: "\F662"; +} + +.mdi-skip-previous:before { + content: "\F4AE"; +} + +.mdi-skip-previous-circle:before { + content: "\F663"; +} + +.mdi-skip-previous-circle-outline:before { + content: "\F664"; +} + +.mdi-skull:before { + content: "\F68B"; +} + +.mdi-skype:before { + content: "\F4AF"; +} + +.mdi-skype-business:before { + content: "\F4B0"; +} + +.mdi-slack:before { + content: "\F4B1"; +} + +.mdi-slackware:before { + content: "\F90A"; +} + +.mdi-sleep:before { + content: "\F4B2"; +} + +.mdi-sleep-off:before { + content: "\F4B3"; +} + +.mdi-smoke-detector:before { + content: "\F392"; +} + +.mdi-smoking:before { + content: "\F4B4"; +} + +.mdi-smoking-off:before { + content: "\F4B5"; +} + +.mdi-snapchat:before { + content: "\F4B6"; +} + +.mdi-snowflake:before { + content: "\F716"; +} + +.mdi-snowman:before { + content: "\F4B7"; +} + +.mdi-soccer:before { + content: "\F4B8"; +} + +.mdi-soccer-field:before { + content: "\F833"; +} + +.mdi-sofa:before { + content: "\F4B9"; +} + +.mdi-solid:before { + content: "\F68C"; +} + +.mdi-sort:before { + content: "\F4BA"; +} + +.mdi-sort-alphabetical:before { + content: "\F4BB"; +} + +.mdi-sort-ascending:before { + content: "\F4BC"; +} + +.mdi-sort-descending:before { + content: "\F4BD"; +} + +.mdi-sort-numeric:before { + content: "\F4BE"; +} + +.mdi-sort-variant:before { + content: "\F4BF"; +} + +.mdi-soundcloud:before { + content: "\F4C0"; +} + +.mdi-source-branch:before { + content: "\F62C"; +} + +.mdi-source-commit:before { + content: "\F717"; +} + +.mdi-source-commit-end:before { + content: "\F718"; +} + +.mdi-source-commit-end-local:before { + content: "\F719"; +} + +.mdi-source-commit-local:before { + content: "\F71A"; +} + +.mdi-source-commit-next-local:before { + content: "\F71B"; +} + +.mdi-source-commit-start:before { + content: "\F71C"; +} + +.mdi-source-commit-start-next-local:before { + content: "\F71D"; +} + +.mdi-source-fork:before { + content: "\F4C1"; +} + +.mdi-source-merge:before { + content: "\F62D"; +} + +.mdi-source-pull:before { + content: "\F4C2"; +} + +.mdi-soy-sauce:before { + content: "\F7ED"; +} + +.mdi-speaker:before { + content: "\F4C3"; +} + +.mdi-speaker-bluetooth:before { + content: "\F9A1"; +} + +.mdi-speaker-off:before { + content: "\F4C4"; +} + +.mdi-speaker-wireless:before { + content: "\F71E"; +} + +.mdi-speedometer:before { + content: "\F4C5"; +} + +.mdi-spellcheck:before { + content: "\F4C6"; +} + +.mdi-spotify:before { + content: "\F4C7"; +} + +.mdi-spotlight:before { + content: "\F4C8"; +} + +.mdi-spotlight-beam:before { + content: "\F4C9"; +} + +.mdi-spray:before { + content: "\F665"; +} + +.mdi-square:before { + content: "\F763"; +} + +.mdi-square-edit-outline:before { + content: "\F90B"; +} + +.mdi-square-inc:before { + content: "\F4CA"; +} + +.mdi-square-inc-cash:before { + content: "\F4CB"; +} + +.mdi-square-outline:before { + content: "\F762"; +} + +.mdi-square-root:before { + content: "\F783"; +} + +.mdi-square-root-box:before { + content: "\F9A2"; +} + +.mdi-ssh:before { + content: "\F8BF"; +} + +.mdi-stack-exchange:before { + content: "\F60B"; +} + +.mdi-stack-overflow:before { + content: "\F4CC"; +} + +.mdi-stadium:before { + content: "\F71F"; +} + +.mdi-stairs:before { + content: "\F4CD"; +} + +.mdi-standard-definition:before { + content: "\F7EE"; +} + +.mdi-star:before { + content: "\F4CE"; +} + +.mdi-star-circle:before { + content: "\F4CF"; +} + +.mdi-star-circle-outline:before { + content: "\F9A3"; +} + +.mdi-star-face:before { + content: "\F9A4"; +} + +.mdi-star-half:before { + content: "\F4D0"; +} + +.mdi-star-off:before { + content: "\F4D1"; +} + +.mdi-star-outline:before { + content: "\F4D2"; +} + +.mdi-steam:before { + content: "\F4D3"; +} + +.mdi-steam-box:before { + content: "\F90C"; +} + +.mdi-steering:before { + content: "\F4D4"; +} + +.mdi-steering-off:before { + content: "\F90D"; +} + +.mdi-step-backward:before { + content: "\F4D5"; +} + +.mdi-step-backward-2:before { + content: "\F4D6"; +} + +.mdi-step-forward:before { + content: "\F4D7"; +} + +.mdi-step-forward-2:before { + content: "\F4D8"; +} + +.mdi-stethoscope:before { + content: "\F4D9"; +} + +.mdi-sticker:before { + content: "\F5D0"; +} + +.mdi-sticker-emoji:before { + content: "\F784"; +} + +.mdi-stocking:before { + content: "\F4DA"; +} + +.mdi-stop:before { + content: "\F4DB"; +} + +.mdi-stop-circle:before { + content: "\F666"; +} + +.mdi-stop-circle-outline:before { + content: "\F667"; +} + +.mdi-store:before { + content: "\F4DC"; +} + +.mdi-store-24-hour:before { + content: "\F4DD"; +} + +.mdi-stove:before { + content: "\F4DE"; +} + +.mdi-subdirectory-arrow-left:before { + content: "\F60C"; +} + +.mdi-subdirectory-arrow-right:before { + content: "\F60D"; +} + +.mdi-subway:before { + content: "\F6AB"; +} + +.mdi-subway-variant:before { + content: "\F4DF"; +} + +.mdi-summit:before { + content: "\F785"; +} + +.mdi-sunglasses:before { + content: "\F4E0"; +} + +.mdi-surround-sound:before { + content: "\F5C5"; +} + +.mdi-surround-sound-2-0:before { + content: "\F7EF"; +} + +.mdi-surround-sound-3-1:before { + content: "\F7F0"; +} + +.mdi-surround-sound-5-1:before { + content: "\F7F1"; +} + +.mdi-surround-sound-7-1:before { + content: "\F7F2"; +} + +.mdi-svg:before { + content: "\F720"; +} + +.mdi-swap-horizontal:before { + content: "\F4E1"; +} + +.mdi-swap-horizontal-variant:before { + content: "\F8C0"; +} + +.mdi-swap-vertical:before { + content: "\F4E2"; +} + +.mdi-swap-vertical-variant:before { + content: "\F8C1"; +} + +.mdi-swim:before { + content: "\F4E3"; +} + +.mdi-switch:before { + content: "\F4E4"; +} + +.mdi-sword:before { + content: "\F4E5"; +} + +.mdi-sword-cross:before { + content: "\F786"; +} + +.mdi-sync:before { + content: "\F4E6"; +} + +.mdi-sync-alert:before { + content: "\F4E7"; +} + +.mdi-sync-off:before { + content: "\F4E8"; +} + +.mdi-tab:before { + content: "\F4E9"; +} + +.mdi-tab-plus:before { + content: "\F75B"; +} + +.mdi-tab-unselected:before { + content: "\F4EA"; +} + +.mdi-table:before { + content: "\F4EB"; +} + +.mdi-table-column:before { + content: "\F834"; +} + +.mdi-table-column-plus-after:before { + content: "\F4EC"; +} + +.mdi-table-column-plus-before:before { + content: "\F4ED"; +} + +.mdi-table-column-remove:before { + content: "\F4EE"; +} + +.mdi-table-column-width:before { + content: "\F4EF"; +} + +.mdi-table-edit:before { + content: "\F4F0"; +} + +.mdi-table-large:before { + content: "\F4F1"; +} + +.mdi-table-merge-cells:before { + content: "\F9A5"; +} + +.mdi-table-of-contents:before { + content: "\F835"; +} + +.mdi-table-row:before { + content: "\F836"; +} + +.mdi-table-row-height:before { + content: "\F4F2"; +} + +.mdi-table-row-plus-after:before { + content: "\F4F3"; +} + +.mdi-table-row-plus-before:before { + content: "\F4F4"; +} + +.mdi-table-row-remove:before { + content: "\F4F5"; +} + +.mdi-table-search:before { + content: "\F90E"; +} + +.mdi-table-settings:before { + content: "\F837"; +} + +.mdi-tablet:before { + content: "\F4F6"; +} + +.mdi-tablet-android:before { + content: "\F4F7"; +} + +.mdi-tablet-cellphone:before { + content: "\F9A6"; +} + +.mdi-tablet-ipad:before { + content: "\F4F8"; +} + +.mdi-taco:before { + content: "\F761"; +} + +.mdi-tag:before { + content: "\F4F9"; +} + +.mdi-tag-faces:before { + content: "\F4FA"; +} + +.mdi-tag-heart:before { + content: "\F68A"; +} + +.mdi-tag-minus:before { + content: "\F90F"; +} + +.mdi-tag-multiple:before { + content: "\F4FB"; +} + +.mdi-tag-outline:before { + content: "\F4FC"; +} + +.mdi-tag-plus:before { + content: "\F721"; +} + +.mdi-tag-remove:before { + content: "\F722"; +} + +.mdi-tag-text-outline:before { + content: "\F4FD"; +} + +.mdi-target:before { + content: "\F4FE"; +} + +.mdi-taxi:before { + content: "\F4FF"; +} + +.mdi-teach:before { + content: "\F88F"; +} + +.mdi-teamviewer:before { + content: "\F500"; +} + +.mdi-telegram:before { + content: "\F501"; +} + +.mdi-television:before { + content: "\F502"; +} + +.mdi-television-box:before { + content: "\F838"; +} + +.mdi-television-classic:before { + content: "\F7F3"; +} + +.mdi-television-classic-off:before { + content: "\F839"; +} + +.mdi-television-guide:before { + content: "\F503"; +} + +.mdi-television-off:before { + content: "\F83A"; +} + +.mdi-temperature-celsius:before { + content: "\F504"; +} + +.mdi-temperature-fahrenheit:before { + content: "\F505"; +} + +.mdi-temperature-kelvin:before { + content: "\F506"; +} + +.mdi-tennis:before { + content: "\F507"; +} + +.mdi-tent:before { + content: "\F508"; +} + +.mdi-terrain:before { + content: "\F509"; +} + +.mdi-test-tube:before { + content: "\F668"; +} + +.mdi-test-tube-empty:before { + content: "\F910"; +} + +.mdi-test-tube-off:before { + content: "\F911"; +} + +.mdi-text:before { + content: "\F9A7"; +} + +.mdi-text-shadow:before { + content: "\F669"; +} + +.mdi-text-short:before { + content: "\F9A8"; +} + +.mdi-text-subject:before { + content: "\F9A9"; +} + +.mdi-text-to-speech:before { + content: "\F50A"; +} + +.mdi-text-to-speech-off:before { + content: "\F50B"; +} + +.mdi-textbox:before { + content: "\F60E"; +} + +.mdi-textbox-password:before { + content: "\F7F4"; +} + +.mdi-texture:before { + content: "\F50C"; +} + +.mdi-theater:before { + content: "\F50D"; +} + +.mdi-theme-light-dark:before { + content: "\F50E"; +} + +.mdi-thermometer:before { + content: "\F50F"; +} + +.mdi-thermometer-lines:before { + content: "\F510"; +} + +.mdi-thermostat:before { + content: "\F393"; +} + +.mdi-thermostat-box:before { + content: "\F890"; +} + +.mdi-thought-bubble:before { + content: "\F7F5"; +} + +.mdi-thought-bubble-outline:before { + content: "\F7F6"; +} + +.mdi-thumb-down:before { + content: "\F511"; +} + +.mdi-thumb-down-outline:before { + content: "\F512"; +} + +.mdi-thumb-up:before { + content: "\F513"; +} + +.mdi-thumb-up-outline:before { + content: "\F514"; +} + +.mdi-thumbs-up-down:before { + content: "\F515"; +} + +.mdi-ticket:before { + content: "\F516"; +} + +.mdi-ticket-account:before { + content: "\F517"; +} + +.mdi-ticket-confirmation:before { + content: "\F518"; +} + +.mdi-ticket-outline:before { + content: "\F912"; +} + +.mdi-ticket-percent:before { + content: "\F723"; +} + +.mdi-tie:before { + content: "\F519"; +} + +.mdi-tilde:before { + content: "\F724"; +} + +.mdi-timelapse:before { + content: "\F51A"; +} + +.mdi-timer:before { + content: "\F51B"; +} + +.mdi-timer-10:before { + content: "\F51C"; +} + +.mdi-timer-3:before { + content: "\F51D"; +} + +.mdi-timer-off:before { + content: "\F51E"; +} + +.mdi-timer-sand:before { + content: "\F51F"; +} + +.mdi-timer-sand-empty:before { + content: "\F6AC"; +} + +.mdi-timer-sand-full:before { + content: "\F78B"; +} + +.mdi-timetable:before { + content: "\F520"; +} + +.mdi-toggle-switch:before { + content: "\F521"; +} + +.mdi-toggle-switch-off:before { + content: "\F522"; +} + +.mdi-toilet:before { + content: "\F9AA"; +} + +.mdi-toolbox:before { + content: "\F9AB"; +} + +.mdi-toolbox-outline:before { + content: "\F9AC"; +} + +.mdi-tooltip:before { + content: "\F523"; +} + +.mdi-tooltip-edit:before { + content: "\F524"; +} + +.mdi-tooltip-image:before { + content: "\F525"; +} + +.mdi-tooltip-outline:before { + content: "\F526"; +} + +.mdi-tooltip-outline-plus:before { + content: "\F527"; +} + +.mdi-tooltip-text:before { + content: "\F528"; +} + +.mdi-tooth:before { + content: "\F8C2"; +} + +.mdi-tooth-outline:before { + content: "\F529"; +} + +.mdi-tor:before { + content: "\F52A"; +} + +.mdi-tournament:before { + content: "\F9AD"; +} + +.mdi-tower-beach:before { + content: "\F680"; +} + +.mdi-tower-fire:before { + content: "\F681"; +} + +.mdi-towing:before { + content: "\F83B"; +} + +.mdi-track-light:before { + content: "\F913"; +} + +.mdi-trackpad:before { + content: "\F7F7"; +} + +.mdi-trackpad-lock:before { + content: "\F932"; +} + +.mdi-tractor:before { + content: "\F891"; +} + +.mdi-traffic-light:before { + content: "\F52B"; +} + +.mdi-train:before { + content: "\F52C"; +} + +.mdi-train-variant:before { + content: "\F8C3"; +} + +.mdi-tram:before { + content: "\F52D"; +} + +.mdi-transcribe:before { + content: "\F52E"; +} + +.mdi-transcribe-close:before { + content: "\F52F"; +} + +.mdi-transfer:before { + content: "\F530"; +} + +.mdi-transit-transfer:before { + content: "\F6AD"; +} + +.mdi-transition:before { + content: "\F914"; +} + +.mdi-transition-masked:before { + content: "\F915"; +} + +.mdi-translate:before { + content: "\F5CA"; +} + +.mdi-treasure-chest:before { + content: "\F725"; +} + +.mdi-tree:before { + content: "\F531"; +} + +.mdi-trello:before { + content: "\F532"; +} + +.mdi-trending-down:before { + content: "\F533"; +} + +.mdi-trending-neutral:before { + content: "\F534"; +} + +.mdi-trending-up:before { + content: "\F535"; +} + +.mdi-triangle:before { + content: "\F536"; +} + +.mdi-triangle-outline:before { + content: "\F537"; +} + +.mdi-trophy:before { + content: "\F538"; +} + +.mdi-trophy-award:before { + content: "\F539"; +} + +.mdi-trophy-outline:before { + content: "\F53A"; +} + +.mdi-trophy-variant:before { + content: "\F53B"; +} + +.mdi-trophy-variant-outline:before { + content: "\F53C"; +} + +.mdi-truck:before { + content: "\F53D"; +} + +.mdi-truck-delivery:before { + content: "\F53E"; +} + +.mdi-truck-fast:before { + content: "\F787"; +} + +.mdi-truck-trailer:before { + content: "\F726"; +} + +.mdi-tshirt-crew:before { + content: "\F53F"; +} + +.mdi-tshirt-v:before { + content: "\F540"; +} + +.mdi-tumble-dryer:before { + content: "\F916"; +} + +.mdi-tumblr:before { + content: "\F541"; +} + +.mdi-tumblr-box:before { + content: "\F917"; +} + +.mdi-tumblr-reblog:before { + content: "\F542"; +} + +.mdi-tune:before { + content: "\F62E"; +} + +.mdi-tune-vertical:before { + content: "\F66A"; +} + +.mdi-twitch:before { + content: "\F543"; +} + +.mdi-twitter:before { + content: "\F544"; +} + +.mdi-twitter-box:before { + content: "\F545"; +} + +.mdi-twitter-circle:before { + content: "\F546"; +} + +.mdi-twitter-retweet:before { + content: "\F547"; +} + +.mdi-two-factor-authentication:before { + content: "\F9AE"; +} + +.mdi-uber:before { + content: "\F748"; +} + +.mdi-ubuntu:before { + content: "\F548"; +} + +.mdi-ultra-high-definition:before { + content: "\F7F8"; +} + +.mdi-umbraco:before { + content: "\F549"; +} + +.mdi-umbrella:before { + content: "\F54A"; +} + +.mdi-umbrella-closed:before { + content: "\F9AF"; +} + +.mdi-umbrella-outline:before { + content: "\F54B"; +} + +.mdi-undo:before { + content: "\F54C"; +} + +.mdi-undo-variant:before { + content: "\F54D"; +} + +.mdi-unfold-less-horizontal:before { + content: "\F54E"; +} + +.mdi-unfold-less-vertical:before { + content: "\F75F"; +} + +.mdi-unfold-more-horizontal:before { + content: "\F54F"; +} + +.mdi-unfold-more-vertical:before { + content: "\F760"; +} + +.mdi-ungroup:before { + content: "\F550"; +} + +.mdi-unity:before { + content: "\F6AE"; +} + +.mdi-unreal:before { + content: "\F9B0"; +} + +.mdi-untappd:before { + content: "\F551"; +} + +.mdi-update:before { + content: "\F6AF"; +} + +.mdi-upload:before { + content: "\F552"; +} + +.mdi-upload-multiple:before { + content: "\F83C"; +} + +.mdi-upload-network:before { + content: "\F6F5"; +} + +.mdi-usb:before { + content: "\F553"; +} + +.mdi-van-passenger:before { + content: "\F7F9"; +} + +.mdi-van-utility:before { + content: "\F7FA"; +} + +.mdi-vanish:before { + content: "\F7FB"; +} + +.mdi-vector-arrange-above:before { + content: "\F554"; +} + +.mdi-vector-arrange-below:before { + content: "\F555"; +} + +.mdi-vector-circle:before { + content: "\F556"; +} + +.mdi-vector-circle-variant:before { + content: "\F557"; +} + +.mdi-vector-combine:before { + content: "\F558"; +} + +.mdi-vector-curve:before { + content: "\F559"; +} + +.mdi-vector-difference:before { + content: "\F55A"; +} + +.mdi-vector-difference-ab:before { + content: "\F55B"; +} + +.mdi-vector-difference-ba:before { + content: "\F55C"; +} + +.mdi-vector-ellipse:before { + content: "\F892"; +} + +.mdi-vector-intersection:before { + content: "\F55D"; +} + +.mdi-vector-line:before { + content: "\F55E"; +} + +.mdi-vector-point:before { + content: "\F55F"; +} + +.mdi-vector-polygon:before { + content: "\F560"; +} + +.mdi-vector-polyline:before { + content: "\F561"; +} + +.mdi-vector-radius:before { + content: "\F749"; +} + +.mdi-vector-rectangle:before { + content: "\F5C6"; +} + +.mdi-vector-selection:before { + content: "\F562"; +} + +.mdi-vector-square:before { + content: "\F001"; +} + +.mdi-vector-triangle:before { + content: "\F563"; +} + +.mdi-vector-union:before { + content: "\F564"; +} + +.mdi-venmo:before { + content: "\F578"; +} + +.mdi-verified:before { + content: "\F565"; +} + +.mdi-vibrate:before { + content: "\F566"; +} + +.mdi-video:before { + content: "\F567"; +} + +.mdi-video-3d:before { + content: "\F7FC"; +} + +.mdi-video-4k-box:before { + content: "\F83D"; +} + +.mdi-video-account:before { + content: "\F918"; +} + +.mdi-video-image:before { + content: "\F919"; +} + +.mdi-video-input-antenna:before { + content: "\F83E"; +} + +.mdi-video-input-component:before { + content: "\F83F"; +} + +.mdi-video-input-hdmi:before { + content: "\F840"; +} + +.mdi-video-input-svideo:before { + content: "\F841"; +} + +.mdi-video-minus:before { + content: "\F9B1"; +} + +.mdi-video-off:before { + content: "\F568"; +} + +.mdi-video-plus:before { + content: "\F9B2"; +} + +.mdi-video-stabilization:before { + content: "\F91A"; +} + +.mdi-video-switch:before { + content: "\F569"; +} + +.mdi-view-agenda:before { + content: "\F56A"; +} + +.mdi-view-array:before { + content: "\F56B"; +} + +.mdi-view-carousel:before { + content: "\F56C"; +} + +.mdi-view-column:before { + content: "\F56D"; +} + +.mdi-view-dashboard:before { + content: "\F56E"; +} + +.mdi-view-dashboard-variant:before { + content: "\F842"; +} + +.mdi-view-day:before { + content: "\F56F"; +} + +.mdi-view-grid:before { + content: "\F570"; +} + +.mdi-view-headline:before { + content: "\F571"; +} + +.mdi-view-list:before { + content: "\F572"; +} + +.mdi-view-module:before { + content: "\F573"; +} + +.mdi-view-parallel:before { + content: "\F727"; +} + +.mdi-view-quilt:before { + content: "\F574"; +} + +.mdi-view-sequential:before { + content: "\F728"; +} + +.mdi-view-stream:before { + content: "\F575"; +} + +.mdi-view-week:before { + content: "\F576"; +} + +.mdi-vimeo:before { + content: "\F577"; +} + +.mdi-violin:before { + content: "\F60F"; +} + +.mdi-virtual-reality:before { + content: "\F893"; +} + +.mdi-visualstudio:before { + content: "\F610"; +} + +.mdi-vk:before { + content: "\F579"; +} + +.mdi-vk-box:before { + content: "\F57A"; +} + +.mdi-vk-circle:before { + content: "\F57B"; +} + +.mdi-vlc:before { + content: "\F57C"; +} + +.mdi-voice:before { + content: "\F5CB"; +} + +.mdi-voicemail:before { + content: "\F57D"; +} + +.mdi-volleyball:before { + content: "\F9B3"; +} + +.mdi-volume-high:before { + content: "\F57E"; +} + +.mdi-volume-low:before { + content: "\F57F"; +} + +.mdi-volume-medium:before { + content: "\F580"; +} + +.mdi-volume-minus:before { + content: "\F75D"; +} + +.mdi-volume-mute:before { + content: "\F75E"; +} + +.mdi-volume-off:before { + content: "\F581"; +} + +.mdi-volume-plus:before { + content: "\F75C"; +} + +.mdi-vpn:before { + content: "\F582"; +} + +.mdi-vuejs:before { + content: "\F843"; +} + +.mdi-walk:before { + content: "\F583"; +} + +.mdi-wall:before { + content: "\F7FD"; +} + +.mdi-wall-sconce:before { + content: "\F91B"; +} + +.mdi-wall-sconce-flat:before { + content: "\F91C"; +} + +.mdi-wall-sconce-variant:before { + content: "\F91D"; +} + +.mdi-wallet:before { + content: "\F584"; +} + +.mdi-wallet-giftcard:before { + content: "\F585"; +} + +.mdi-wallet-membership:before { + content: "\F586"; +} + +.mdi-wallet-travel:before { + content: "\F587"; +} + +.mdi-wan:before { + content: "\F588"; +} + +.mdi-washing-machine:before { + content: "\F729"; +} + +.mdi-watch:before { + content: "\F589"; +} + +.mdi-watch-export:before { + content: "\F58A"; +} + +.mdi-watch-export-variant:before { + content: "\F894"; +} + +.mdi-watch-import:before { + content: "\F58B"; +} + +.mdi-watch-import-variant:before { + content: "\F895"; +} + +.mdi-watch-variant:before { + content: "\F896"; +} + +.mdi-watch-vibrate:before { + content: "\F6B0"; +} + +.mdi-water:before { + content: "\F58C"; +} + +.mdi-water-off:before { + content: "\F58D"; +} + +.mdi-water-percent:before { + content: "\F58E"; +} + +.mdi-water-pump:before { + content: "\F58F"; +} + +.mdi-watermark:before { + content: "\F612"; +} + +.mdi-waves:before { + content: "\F78C"; +} + +.mdi-weather-cloudy:before { + content: "\F590"; +} + +.mdi-weather-fog:before { + content: "\F591"; +} + +.mdi-weather-hail:before { + content: "\F592"; +} + +.mdi-weather-hurricane:before { + content: "\F897"; +} + +.mdi-weather-lightning:before { + content: "\F593"; +} + +.mdi-weather-lightning-rainy:before { + content: "\F67D"; +} + +.mdi-weather-night:before { + content: "\F594"; +} + +.mdi-weather-partlycloudy:before { + content: "\F595"; +} + +.mdi-weather-pouring:before { + content: "\F596"; +} + +.mdi-weather-rainy:before { + content: "\F597"; +} + +.mdi-weather-snowy:before { + content: "\F598"; +} + +.mdi-weather-snowy-rainy:before { + content: "\F67E"; +} + +.mdi-weather-sunny:before { + content: "\F599"; +} + +.mdi-weather-sunset:before { + content: "\F59A"; +} + +.mdi-weather-sunset-down:before { + content: "\F59B"; +} + +.mdi-weather-sunset-up:before { + content: "\F59C"; +} + +.mdi-weather-windy:before { + content: "\F59D"; +} + +.mdi-weather-windy-variant:before { + content: "\F59E"; +} + +.mdi-web:before { + content: "\F59F"; +} + +.mdi-webcam:before { + content: "\F5A0"; +} + +.mdi-webhook:before { + content: "\F62F"; +} + +.mdi-webpack:before { + content: "\F72A"; +} + +.mdi-wechat:before { + content: "\F611"; +} + +.mdi-weight:before { + content: "\F5A1"; +} + +.mdi-weight-kilogram:before { + content: "\F5A2"; +} + +.mdi-weight-pound:before { + content: "\F9B4"; +} + +.mdi-whatsapp:before { + content: "\F5A3"; +} + +.mdi-wheelchair-accessibility:before { + content: "\F5A4"; +} + +.mdi-whistle:before { + content: "\F9B5"; +} + +.mdi-white-balance-auto:before { + content: "\F5A5"; +} + +.mdi-white-balance-incandescent:before { + content: "\F5A6"; +} + +.mdi-white-balance-iridescent:before { + content: "\F5A7"; +} + +.mdi-white-balance-sunny:before { + content: "\F5A8"; +} + +.mdi-widgets:before { + content: "\F72B"; +} + +.mdi-wifi:before { + content: "\F5A9"; +} + +.mdi-wifi-off:before { + content: "\F5AA"; +} + +.mdi-wifi-strength-1:before { + content: "\F91E"; +} + +.mdi-wifi-strength-1-alert:before { + content: "\F91F"; +} + +.mdi-wifi-strength-1-lock:before { + content: "\F920"; +} + +.mdi-wifi-strength-2:before { + content: "\F921"; +} + +.mdi-wifi-strength-2-alert:before { + content: "\F922"; +} + +.mdi-wifi-strength-2-lock:before { + content: "\F923"; +} + +.mdi-wifi-strength-3:before { + content: "\F924"; +} + +.mdi-wifi-strength-3-alert:before { + content: "\F925"; +} + +.mdi-wifi-strength-3-lock:before { + content: "\F926"; +} + +.mdi-wifi-strength-4:before { + content: "\F927"; +} + +.mdi-wifi-strength-4-alert:before { + content: "\F928"; +} + +.mdi-wifi-strength-4-lock:before { + content: "\F929"; +} + +.mdi-wifi-strength-alert-outline:before { + content: "\F92A"; +} + +.mdi-wifi-strength-lock-outline:before { + content: "\F92B"; +} + +.mdi-wifi-strength-off:before { + content: "\F92C"; +} + +.mdi-wifi-strength-off-outline:before { + content: "\F92D"; +} + +.mdi-wifi-strength-outline:before { + content: "\F92E"; +} + +.mdi-wii:before { + content: "\F5AB"; +} + +.mdi-wiiu:before { + content: "\F72C"; +} + +.mdi-wikipedia:before { + content: "\F5AC"; +} + +.mdi-window-close:before { + content: "\F5AD"; +} + +.mdi-window-closed:before { + content: "\F5AE"; +} + +.mdi-window-maximize:before { + content: "\F5AF"; +} + +.mdi-window-minimize:before { + content: "\F5B0"; +} + +.mdi-window-open:before { + content: "\F5B1"; +} + +.mdi-window-restore:before { + content: "\F5B2"; +} + +.mdi-windows:before { + content: "\F5B3"; +} + +.mdi-wordpress:before { + content: "\F5B4"; +} + +.mdi-worker:before { + content: "\F5B5"; +} + +.mdi-wrap:before { + content: "\F5B6"; +} + +.mdi-wrench:before { + content: "\F5B7"; +} + +.mdi-wunderlist:before { + content: "\F5B8"; +} + +.mdi-xamarin:before { + content: "\F844"; +} + +.mdi-xamarin-outline:before { + content: "\F845"; +} + +.mdi-xaml:before { + content: "\F673"; +} + +.mdi-xbox:before { + content: "\F5B9"; +} + +.mdi-xbox-controller:before { + content: "\F5BA"; +} + +.mdi-xbox-controller-battery-alert:before { + content: "\F74A"; +} + +.mdi-xbox-controller-battery-empty:before { + content: "\F74B"; +} + +.mdi-xbox-controller-battery-full:before { + content: "\F74C"; +} + +.mdi-xbox-controller-battery-low:before { + content: "\F74D"; +} + +.mdi-xbox-controller-battery-medium:before { + content: "\F74E"; +} + +.mdi-xbox-controller-battery-unknown:before { + content: "\F74F"; +} + +.mdi-xbox-controller-off:before { + content: "\F5BB"; +} + +.mdi-xda:before { + content: "\F5BC"; +} + +.mdi-xing:before { + content: "\F5BD"; +} + +.mdi-xing-box:before { + content: "\F5BE"; +} + +.mdi-xing-circle:before { + content: "\F5BF"; +} + +.mdi-xml:before { + content: "\F5C0"; +} + +.mdi-xmpp:before { + content: "\F7FE"; +} + +.mdi-yammer:before { + content: "\F788"; +} + +.mdi-yeast:before { + content: "\F5C1"; +} + +.mdi-yelp:before { + content: "\F5C2"; +} + +.mdi-yin-yang:before { + content: "\F67F"; +} + +.mdi-youtube:before { + content: "\F5C3"; +} + +.mdi-youtube-creator-studio:before { + content: "\F846"; +} + +.mdi-youtube-gaming:before { + content: "\F847"; +} + +.mdi-youtube-tv:before { + content: "\F448"; +} + +.mdi-zip-box:before { + content: "\F5C4"; +} + +.mdi-blank:before { + content: "\F68C"; + visibility: hidden; +} + +.mdi-18px.mdi-set, .mdi-18px.mdi:before { + font-size: 18px; +} + +.mdi-24px.mdi-set, .mdi-24px.mdi:before { + font-size: 24px; +} + +.mdi-36px.mdi-set, .mdi-36px.mdi:before { + font-size: 36px; +} + +.mdi-48px.mdi-set, .mdi-48px.mdi:before { + font-size: 48px; +} + +.mdi-dark:before { + color: rgba(0, 0, 0, 0.54); +} +.mdi-dark.mdi-inactive:before { + color: rgba(0, 0, 0, 0.26); +} + +.mdi-light:before { + color: white; +} +.mdi-light.mdi-inactive:before { + color: rgba(255, 255, 255, 0.3); +} + +.mdi-rotate-45 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(45deg); + transform: scaleX(-1) rotate(45deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(45deg); + -ms-transform: rotate(45deg); + transform: scaleY(-1) rotate(45deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-45:before { + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); +} + +.mdi-rotate-90 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(90deg); + transform: scaleX(-1) rotate(90deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(90deg); + -ms-transform: rotate(90deg); + transform: scaleY(-1) rotate(90deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-90:before { + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} + +.mdi-rotate-135 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(135deg); + transform: scaleX(-1) rotate(135deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(135deg); + -ms-transform: rotate(135deg); + transform: scaleY(-1) rotate(135deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-135:before { + -webkit-transform: rotate(135deg); + -ms-transform: rotate(135deg); + transform: rotate(135deg); +} + +.mdi-rotate-180 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(180deg); + transform: scaleX(-1) rotate(180deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(180deg); + -ms-transform: rotate(180deg); + transform: scaleY(-1) rotate(180deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-180:before { + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} + +.mdi-rotate-225 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(225deg); + transform: scaleX(-1) rotate(225deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(225deg); + -ms-transform: rotate(225deg); + transform: scaleY(-1) rotate(225deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-225:before { + -webkit-transform: rotate(225deg); + -ms-transform: rotate(225deg); + transform: rotate(225deg); +} + +.mdi-rotate-270 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(270deg); + transform: scaleX(-1) rotate(270deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(270deg); + -ms-transform: rotate(270deg); + transform: scaleY(-1) rotate(270deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-270:before { + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} + +.mdi-rotate-315 { + /* + // Not included in production + &.mdi-flip-h:before { + -webkit-transform: scaleX(-1) rotate(315deg); + transform: scaleX(-1) rotate(315deg); + filter: FlipH; + -ms-filter: "FlipH"; + } + &.mdi-flip-v:before { + -webkit-transform: scaleY(-1) rotate(315deg); + -ms-transform: rotate(315deg); + transform: scaleY(-1) rotate(315deg); + filter: FlipV; + -ms-filter: "FlipV"; + } + */ +} +.mdi-rotate-315:before { + -webkit-transform: rotate(315deg); + -ms-transform: rotate(315deg); + transform: rotate(315deg); +} + +.mdi-flip-h:before { + -webkit-transform: scaleX(-1); + transform: scaleX(-1); + filter: FlipH; + -ms-filter: "FlipH"; +} + +.mdi-flip-v:before { + -webkit-transform: scaleY(-1); + transform: scaleY(-1); + filter: FlipV; + -ms-filter: "FlipV"; +} + +.mdi-spin:before { + -webkit-animation: mdi-spin 2s infinite linear; + animation: mdi-spin 2s infinite linear; +} + +@-webkit-keyframes mdi-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes mdi-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +/*# sourceMappingURL=materialdesignicons.css.map */ diff --git a/src/main/resources/static/css/metisMenu.min.css b/src/main/resources/static/css/metisMenu.min.css new file mode 100644 index 0000000..36a59dd --- /dev/null +++ b/src/main/resources/static/css/metisMenu.min.css @@ -0,0 +1,8 @@ +/*! +* metismenu https://github.com/onokumus/metismenu#readme +* A jQuery menu plugin +* @version 3.0.3 +* @author Osman Nuri Okumus (https://github.com/onokumus) +* @license: MIT +*/.metismenu .arrow{float:right;line-height:1.42857}[dir=rtl] .metismenu .arrow{float:left}.metismenu .glyphicon.arrow:before{content:"\e079"}.metismenu .mm-active>a>.glyphicon.arrow:before{content:"\e114"}.metismenu .fa.arrow:before{content:"\f104"}.metismenu .mm-active>a>.fa.arrow:before{content:"\f107"}.metismenu .ion.arrow:before{content:"\f3d2"}.metismenu .mm-active>a>.ion.arrow:before{content:"\f3d0"}.metismenu .plus-times{float:right}[dir=rtl] .metismenu .plus-times{float:left}.metismenu .fa.plus-times:before{content:"\f067"}.metismenu .mm-active>a>.fa.plus-times{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.metismenu .plus-minus{float:right}[dir=rtl] .metismenu .plus-minus{float:left}.metismenu .fa.plus-minus:before{content:"\f067"}.metismenu .mm-active>a>.fa.plus-minus:before{content:"\f068"}.metismenu .mm-collapse:not(.mm-show){display:none}.metismenu .mm-collapsing{position:relative;height:0;overflow:hidden;transition-timing-function:ease;transition-duration:.35s;transition-property:height,visibility}.metismenu .has-arrow{position:relative}.metismenu .has-arrow:after{position:absolute;content:"";width:.5em;height:.5em;border-width:1px 0 0 1px;border-style:solid;border-color:initial;right:1em;-webkit-transform:rotate(-45deg) translateY(-50%);transform:rotate(-45deg) translateY(-50%);-webkit-transform-origin:top;transform-origin:top;top:50%;transition:all .3s ease-out}[dir=rtl] .metismenu .has-arrow:after{right:auto;left:1em;-webkit-transform:rotate(135deg) translateY(-50%);transform:rotate(135deg) translateY(-50%)}.metismenu .has-arrow[aria-expanded=true]:after,.metismenu .mm-active>.has-arrow:after{-webkit-transform:rotate(-135deg) translateY(-50%);transform:rotate(-135deg) translateY(-50%)}[dir=rtl] .metismenu .has-arrow[aria-expanded=true]:after,[dir=rtl] .metismenu .mm-active>.has-arrow:after{-webkit-transform:rotate(225deg) translateY(-50%);transform:rotate(225deg) translateY(-50%)} +/*# sourceMappingURL=metisMenu.min.css.map */ \ No newline at end of file diff --git a/src/main/resources/static/css/nice-select.css b/src/main/resources/static/css/nice-select.css new file mode 100644 index 0000000..f3c0f05 --- /dev/null +++ b/src/main/resources/static/css/nice-select.css @@ -0,0 +1,141 @@ +.nice-select { + -webkit-tap-highlight-color: transparent; + background-color: #fff; + border-radius: 5px; + border: solid 1px #e8e8e8; + box-sizing: border-box; + clear: both; + cursor: pointer; + display: block; + float: left; + font-family: inherit; + font-size: 14px; + font-weight: normal; + height: 42px; + line-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 30px; + position: relative; + text-align: left !important; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; + width: auto; } + .nice-select:hover { + border-color: #dbdbdb; } + .nice-select:active, .nice-select.open, .nice-select:focus { + border-color: #999; } + .nice-select:after { + border-bottom: 3px solid #eee; + border-right: 3px solid #eee; + content: ''; + display: block; + height: 10px; + margin-top: -6px; + pointer-events: none; + position: absolute; + right: 8px; + top: 50%; + margin-right:10px; + -webkit-transform-origin: 66% 66%; + -ms-transform-origin: 66% 66%; + transform-origin: 66% 66%; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-transition: all 0.15s ease-in-out; + transition: all 0.15s ease-in-out; + width: 10px; } + .nice-select.open:after { + -webkit-transform: rotate(-135deg); + -ms-transform: rotate(-135deg); + transform: rotate(-135deg); } + .nice-select.open .list { + opacity: 1; + pointer-events: auto; + -webkit-transform: scale(1) translateY(0); + -ms-transform: scale(1) translateY(0); + transform: scale(1) translateY(0); } + .nice-select.disabled { + border-color: #ededed; + color: #999; + pointer-events: none; } + .nice-select.disabled:after { + border-color: #cccccc; } + .nice-select.wide { + width: 100%; + line-height:44px; + } + .nice-select.wide .list { + left: 0 !important; + right: 0 !important; } + .nice-select.right { + float: right; } + .nice-select.right .list { + left: auto; + right: 0; } + .nice-select.small { + font-size: 12px; + height: 36px; + line-height: 34px; } + .nice-select.small:after { + height: 4px; + width: 4px; } + .nice-select.small .option { + line-height: 34px; + min-height: 34px; } + .nice-select .list { + background-color: #fff; + border-radius: 5px; + box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11); + box-sizing: border-box; + margin-top: 4px; + opacity: 0; + overflow: hidden; + padding: 0; + pointer-events: none; + position: absolute; + top: 100%; + left: 0; + -webkit-transform-origin: 50% 0; + -ms-transform-origin: 50% 0; + transform-origin: 50% 0; + -webkit-transform: scale(0.75) translateY(-21px); + -ms-transform: scale(0.75) translateY(-21px); + transform: scale(0.75) translateY(-21px); + -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; + z-index: 9; } + .nice-select .list:hover .option:not(:hover) { + background-color: transparent !important; } + .nice-select .option { + cursor: pointer; + font-weight: 400; + line-height: 40px; + list-style: none; + min-height: 40px; + outline: none; + padding-left: 18px; + padding-right: 29px; + text-align: left; + -webkit-transition: all 0.2s; + transition: all 0.2s; } + .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { + background-color: #f6f6f6; } + .nice-select .option.selected { + font-weight: bold; } + .nice-select .option.disabled { + background-color: transparent; + color: #999; + cursor: default; } + +.no-csspointerevents .nice-select .list { + display: none; } + +.no-csspointerevents .nice-select.open .list { + display: block; } diff --git a/src/main/resources/static/css/perfect-scrollbar.css b/src/main/resources/static/css/perfect-scrollbar.css new file mode 100644 index 0000000..b486392 --- /dev/null +++ b/src/main/resources/static/css/perfect-scrollbar.css @@ -0,0 +1,116 @@ +/* + * Container style + */ +.ps { + overflow: hidden !important; + overflow-anchor: none; + -ms-overflow-style: none; + touch-action: auto; + -ms-touch-action: auto; +} + +/* + * Scrollbar rail styles + */ +.ps__rail-x { + display: none; + opacity: 0; + transition: background-color .2s linear, opacity .2s linear; + -webkit-transition: background-color .2s linear, opacity .2s linear; + height: 15px; + /* there must be 'bottom' or 'top' for ps__rail-x */ + bottom: 0px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__rail-y { + display: none; + opacity: 0; + transition: background-color .2s linear, opacity .2s linear; + -webkit-transition: background-color .2s linear, opacity .2s linear; + width: 15px; + /* there must be 'right' or 'left' for ps__rail-y */ + right: 0; + /* please don't change 'position' */ + position: absolute; +} + +.ps--active-x > .ps__rail-x, +.ps--active-y > .ps__rail-y { + display: block; + background-color: transparent; +} + +.ps:hover > .ps__rail-x, +.ps:hover > .ps__rail-y, +.ps--focus > .ps__rail-x, +.ps--focus > .ps__rail-y, +.ps--scrolling-x > .ps__rail-x, +.ps--scrolling-y > .ps__rail-y { + opacity: 0.6; +} + +.ps .ps__rail-x:hover, +.ps .ps__rail-y:hover, +.ps .ps__rail-x:focus, +.ps .ps__rail-y:focus, +.ps .ps__rail-x.ps--clicking, +.ps .ps__rail-y.ps--clicking { + background-color: #eee; + opacity: 0.9; +} + +/* + * Scrollbar thumb styles + */ +.ps__thumb-x { + background-color: #aaa; + border-radius: 6px; + transition: background-color .2s linear, height .2s ease-in-out; + -webkit-transition: background-color .2s linear, height .2s ease-in-out; + height: 6px; + /* there must be 'bottom' for ps__thumb-x */ + bottom: 2px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__thumb-y { + background-color: #aaa; + border-radius: 6px; + transition: background-color .2s linear, width .2s ease-in-out; + -webkit-transition: background-color .2s linear, width .2s ease-in-out; + width: 6px; + /* there must be 'right' for ps__thumb-y */ + right: 2px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__rail-x:hover > .ps__thumb-x, +.ps__rail-x:focus > .ps__thumb-x, +.ps__rail-x.ps--clicking .ps__thumb-x { + background-color: #999; + height: 11px; +} + +.ps__rail-y:hover > .ps__thumb-y, +.ps__rail-y:focus > .ps__thumb-y, +.ps__rail-y.ps--clicking .ps__thumb-y { + background-color: #999; + width: 11px; +} + +/* MS supports */ +@supports (-ms-overflow-style: none) { + .ps { + overflow: auto !important; + } +} + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .ps { + overflow: auto !important; + } +} diff --git a/src/main/resources/static/css/simple-line-icons.css b/src/main/resources/static/css/simple-line-icons.css new file mode 100644 index 0000000..4a464dc --- /dev/null +++ b/src/main/resources/static/css/simple-line-icons.css @@ -0,0 +1,754 @@ +@font-face { + font-family: 'simple-line-icons'; + src: url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.eot?-i3a2kk'); + src: url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/simple-line-icons/fonts/Simple-Line-Iconsd41d.eot?#iefix-i3a2kk') format('embedded-opentype'), url('../font/Simple-Line-Icons4c82.ttf') format('truetype'), url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff2?-i3a2kk') format('woff2'), url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.woff?-i3a2kk') format('woff'), url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/simple-line-icons/fonts/Simple-Line-Icons4c82.svg?-i3a2kk#simple-line-icons') format('svg'); + font-weight: normal; + font-style: normal; +} +/* + Use the following CSS code if you want to have a class per icon. + Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower: +*/ +.icon-user, +.icon-people, +.icon-user-female, +.icon-user-follow, +.icon-user-following, +.icon-user-unfollow, +.icon-login, +.icon-logout, +.icon-emotsmile, +.icon-phone, +.icon-call-end, +.icon-call-in, +.icon-call-out, +.icon-map, +.icon-location-pin, +.icon-direction, +.icon-directions, +.icon-compass, +.icon-layers, +.icon-menu, +.icon-list, +.icon-options-vertical, +.icon-options, +.icon-arrow-down, +.icon-arrow-left, +.icon-arrow-right, +.icon-arrow-up, +.icon-arrow-up-circle, +.icon-arrow-left-circle, +.icon-arrow-right-circle, +.icon-arrow-down-circle, +.icon-check, +.icon-clock, +.icon-plus, +.icon-close, +.icon-trophy, +.icon-screen-smartphone, +.icon-screen-desktop, +.icon-plane, +.icon-notebook, +.icon-mustache, +.icon-mouse, +.icon-magnet, +.icon-energy, +.icon-disc, +.icon-cursor, +.icon-cursor-move, +.icon-crop, +.icon-chemistry, +.icon-speedometer, +.icon-shield, +.icon-screen-tablet, +.icon-magic-wand, +.icon-hourglass, +.icon-graduation, +.icon-ghost, +.icon-game-controller, +.icon-fire, +.icon-eyeglass, +.icon-envelope-open, +.icon-envelope-letter, +.icon-bell, +.icon-badge, +.icon-anchor, +.icon-wallet, +.icon-vector, +.icon-speech, +.icon-puzzle, +.icon-printer, +.icon-present, +.icon-playlist, +.icon-pin, +.icon-picture, +.icon-handbag, +.icon-globe-alt, +.icon-globe, +.icon-folder-alt, +.icon-folder, +.icon-film, +.icon-feed, +.icon-drop, +.icon-drawar, +.icon-docs, +.icon-doc, +.icon-diamond, +.icon-cup, +.icon-calculator, +.icon-bubbles, +.icon-briefcase, +.icon-book-open, +.icon-basket-loaded, +.icon-basket, +.icon-bag, +.icon-action-undo, +.icon-action-redo, +.icon-wrench, +.icon-umbrella, +.icon-trash, +.icon-tag, +.icon-support, +.icon-frame, +.icon-size-fullscreen, +.icon-size-actual, +.icon-shuffle, +.icon-share-alt, +.icon-share, +.icon-rocket, +.icon-question, +.icon-pie-chart, +.icon-pencil, +.icon-note, +.icon-loop, +.icon-home, +.icon-grid, +.icon-graph, +.icon-microphone, +.icon-music-tone-alt, +.icon-music-tone, +.icon-earphones-alt, +.icon-earphones, +.icon-equalizer, +.icon-like, +.icon-dislike, +.icon-control-start, +.icon-control-rewind, +.icon-control-play, +.icon-control-pause, +.icon-control-forward, +.icon-control-end, +.icon-volume-1, +.icon-volume-2, +.icon-volume-off, +.icon-calender, +.icon-bulb, +.icon-chart, +.icon-ban, +.icon-bubble, +.icon-camrecorder, +.icon-camera, +.icon-cloud-download, +.icon-cloud-upload, +.icon-envelope, +.icon-eye, +.icon-flag, +.icon-heart, +.icon-info, +.icon-key, +.icon-link, +.icon-lock, +.icon-lock-open, +.icon-magnifier, +.icon-magnifier-add, +.icon-magnifier-remove, +.icon-paper-clip, +.icon-paper-plane, +.icon-power, +.icon-refresh, +.icon-reload, +.icon-settings, +.icon-star, +.icon-symble-female, +.icon-symbol-male, +.icon-target, +.icon-credit-card, +.icon-paypal, +.icon-social-tumblr, +.icon-social-twitter, +.icon-social-facebook, +.icon-social-instagram, +.icon-social-linkedin, +.icon-social-pintarest, +.icon-social-github, +.icon-social-gplus, +.icon-social-reddit, +.icon-social-skype, +.icon-social-dribbble, +.icon-social-behance, +.icon-social-foursqare, +.icon-social-soundcloud, +.icon-social-spotify, +.icon-social-stumbleupon, +.icon-social-youtube, +.icon-social-dropbox { + font-family: 'simple-line-icons'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.icon-user:before { + content: "\e005"; +} +.icon-people:before { + content: "\e001"; +} +.icon-user-female:before { + content: "\e000"; +} +.icon-user-follow:before { + content: "\e002"; +} +.icon-user-following:before { + content: "\e003"; +} +.icon-user-unfollow:before { + content: "\e004"; +} +.icon-login:before { + content: "\e066"; +} +.icon-logout:before { + content: "\e065"; +} +.icon-emotsmile:before { + content: "\e021"; +} +.icon-phone:before { + content: "\e600"; +} +.icon-call-end:before { + content: "\e048"; +} +.icon-call-in:before { + content: "\e047"; +} +.icon-call-out:before { + content: "\e046"; +} +.icon-map:before { + content: "\e033"; +} +.icon-location-pin:before { + content: "\e096"; +} +.icon-direction:before { + content: "\e042"; +} +.icon-directions:before { + content: "\e041"; +} +.icon-compass:before { + content: "\e045"; +} +.icon-layers:before { + content: "\e034"; +} +.icon-menu:before { + content: "\e601"; +} +.icon-list:before { + content: "\e067"; +} +.icon-options-vertical:before { + content: "\e602"; +} +.icon-options:before { + content: "\e603"; +} +.icon-arrow-down:before { + content: "\e604"; +} +.icon-arrow-left:before { + content: "\e605"; +} +.icon-arrow-right:before { + content: "\e606"; +} +.icon-arrow-up:before { + content: "\e607"; +} +.icon-arrow-up-circle:before { + content: "\e078"; +} +.icon-arrow-left-circle:before { + content: "\e07a"; +} +.icon-arrow-right-circle:before { + content: "\e079"; +} +.icon-arrow-down-circle:before { + content: "\e07b"; +} +.icon-check:before { + content: "\e080"; +} +.icon-clock:before { + content: "\e081"; +} +.icon-plus:before { + content: "\e095"; +} +.icon-close:before { + content: "\e082"; +} +.icon-trophy:before { + content: "\e006"; +} +.icon-screen-smartphone:before { + content: "\e010"; +} +.icon-screen-desktop:before { + content: "\e011"; +} +.icon-plane:before { + content: "\e012"; +} +.icon-notebook:before { + content: "\e013"; +} +.icon-mustache:before { + content: "\e014"; +} +.icon-mouse:before { + content: "\e015"; +} +.icon-magnet:before { + content: "\e016"; +} +.icon-energy:before { + content: "\e020"; +} +.icon-disc:before { + content: "\e022"; +} +.icon-cursor:before { + content: "\e06e"; +} +.icon-cursor-move:before { + content: "\e023"; +} +.icon-crop:before { + content: "\e024"; +} +.icon-chemistry:before { + content: "\e026"; +} +.icon-speedometer:before { + content: "\e007"; +} +.icon-shield:before { + content: "\e00e"; +} +.icon-screen-tablet:before { + content: "\e00f"; +} +.icon-magic-wand:before { + content: "\e017"; +} +.icon-hourglass:before { + content: "\e018"; +} +.icon-graduation:before { + content: "\e019"; +} +.icon-ghost:before { + content: "\e01a"; +} +.icon-game-controller:before { + content: "\e01b"; +} +.icon-fire:before { + content: "\e01c"; +} +.icon-eyeglass:before { + content: "\e01d"; +} +.icon-envelope-open:before { + content: "\e01e"; +} +.icon-envelope-letter:before { + content: "\e01f"; +} +.icon-bell:before { + content: "\e027"; +} +.icon-badge:before { + content: "\e028"; +} +.icon-anchor:before { + content: "\e029"; +} +.icon-wallet:before { + content: "\e02a"; +} +.icon-vector:before { + content: "\e02b"; +} +.icon-speech:before { + content: "\e02c"; +} +.icon-puzzle:before { + content: "\e02d"; +} +.icon-printer:before { + content: "\e02e"; +} +.icon-present:before { + content: "\e02f"; +} +.icon-playlist:before { + content: "\e030"; +} +.icon-pin:before { + content: "\e031"; +} +.icon-picture:before { + content: "\e032"; +} +.icon-handbag:before { + content: "\e035"; +} +.icon-globe-alt:before { + content: "\e036"; +} +.icon-globe:before { + content: "\e037"; +} +.icon-folder-alt:before { + content: "\e039"; +} +.icon-folder:before { + content: "\e089"; +} +.icon-film:before { + content: "\e03a"; +} +.icon-feed:before { + content: "\e03b"; +} +.icon-drop:before { + content: "\e03e"; +} +.icon-drawar:before { + content: "\e03f"; +} +.icon-docs:before { + content: "\e040"; +} +.icon-doc:before { + content: "\e085"; +} +.icon-diamond:before { + content: "\e043"; +} +.icon-cup:before { + content: "\e044"; +} +.icon-calculator:before { + content: "\e049"; +} +.icon-bubbles:before { + content: "\e04a"; +} +.icon-briefcase:before { + content: "\e04b"; +} +.icon-book-open:before { + content: "\e04c"; +} +.icon-basket-loaded:before { + content: "\e04d"; +} +.icon-basket:before { + content: "\e04e"; +} +.icon-bag:before { + content: "\e04f"; +} +.icon-action-undo:before { + content: "\e050"; +} +.icon-action-redo:before { + content: "\e051"; +} +.icon-wrench:before { + content: "\e052"; +} +.icon-umbrella:before { + content: "\e053"; +} +.icon-trash:before { + content: "\e054"; +} +.icon-tag:before { + content: "\e055"; +} +.icon-support:before { + content: "\e056"; +} +.icon-frame:before { + content: "\e038"; +} +.icon-size-fullscreen:before { + content: "\e057"; +} +.icon-size-actual:before { + content: "\e058"; +} +.icon-shuffle:before { + content: "\e059"; +} +.icon-share-alt:before { + content: "\e05a"; +} +.icon-share:before { + content: "\e05b"; +} +.icon-rocket:before { + content: "\e05c"; +} +.icon-question:before { + content: "\e05d"; +} +.icon-pie-chart:before { + content: "\e05e"; +} +.icon-pencil:before { + content: "\e05f"; +} +.icon-note:before { + content: "\e060"; +} +.icon-loop:before { + content: "\e064"; +} +.icon-home:before { + content: "\e069"; +} +.icon-grid:before { + content: "\e06a"; +} +.icon-graph:before { + content: "\e06b"; +} +.icon-microphone:before { + content: "\e063"; +} +.icon-music-tone-alt:before { + content: "\e061"; +} +.icon-music-tone:before { + content: "\e062"; +} +.icon-earphones-alt:before { + content: "\e03c"; +} +.icon-earphones:before { + content: "\e03d"; +} +.icon-equalizer:before { + content: "\e06c"; +} +.icon-like:before { + content: "\e068"; +} +.icon-dislike:before { + content: "\e06d"; +} +.icon-control-start:before { + content: "\e06f"; +} +.icon-control-rewind:before { + content: "\e070"; +} +.icon-control-play:before { + content: "\e071"; +} +.icon-control-pause:before { + content: "\e072"; +} +.icon-control-forward:before { + content: "\e073"; +} +.icon-control-end:before { + content: "\e074"; +} +.icon-volume-1:before { + content: "\e09f"; +} +.icon-volume-2:before { + content: "\e0a0"; +} +.icon-volume-off:before { + content: "\e0a1"; +} +.icon-calender:before { + content: "\e075"; +} +.icon-bulb:before { + content: "\e076"; +} +.icon-chart:before { + content: "\e077"; +} +.icon-ban:before { + content: "\e07c"; +} +.icon-bubble:before { + content: "\e07d"; +} +.icon-camrecorder:before { + content: "\e07e"; +} +.icon-camera:before { + content: "\e07f"; +} +.icon-cloud-download:before { + content: "\e083"; +} +.icon-cloud-upload:before { + content: "\e084"; +} +.icon-envelope:before { + content: "\e086"; +} +.icon-eye:before { + content: "\e087"; +} +.icon-flag:before { + content: "\e088"; +} +.icon-heart:before { + content: "\e08a"; +} +.icon-info:before { + content: "\e08b"; +} +.icon-key:before { + content: "\e08c"; +} +.icon-link:before { + content: "\e08d"; +} +.icon-lock:before { + content: "\e08e"; +} +.icon-lock-open:before { + content: "\e08f"; +} +.icon-magnifier:before { + content: "\e090"; +} +.icon-magnifier-add:before { + content: "\e091"; +} +.icon-magnifier-remove:before { + content: "\e092"; +} +.icon-paper-clip:before { + content: "\e093"; +} +.icon-paper-plane:before { + content: "\e094"; +} +.icon-power:before { + content: "\e097"; +} +.icon-refresh:before { + content: "\e098"; +} +.icon-reload:before { + content: "\e099"; +} +.icon-settings:before { + content: "\e09a"; +} +.icon-star:before { + content: "\e09b"; +} +.icon-symble-female:before { + content: "\e09c"; +} +.icon-symbol-male:before { + content: "\e09d"; +} +.icon-target:before { + content: "\e09e"; +} +.icon-credit-card:before { + content: "\e025"; +} +.icon-paypal:before { + content: "\e608"; +} +.icon-social-tumblr:before { + content: "\e00a"; +} +.icon-social-twitter:before { + content: "\e009"; +} +.icon-social-facebook:before { + content: "\e00b"; +} +.icon-social-instagram:before { + content: "\e609"; +} +.icon-social-linkedin:before { + content: "\e60a"; +} +.icon-social-pintarest:before { + content: "\e60b"; +} +.icon-social-github:before { + content: "\e60c"; +} +.icon-social-gplus:before { + content: "\e60d"; +} +.icon-social-reddit:before { + content: "\e60e"; +} +.icon-social-skype:before { + content: "\e60f"; +} +.icon-social-dribbble:before { + content: "\e00d"; +} +.icon-social-behance:before { + content: "\e610"; +} +.icon-social-foursqare:before { + content: "\e611"; +} +.icon-social-soundcloud:before { + content: "\e612"; +} +.icon-social-spotify:before { + content: "\e613"; +} +.icon-social-stumbleupon:before { + content: "\e614"; +} +.icon-social-youtube:before { + content: "\e008"; +} +.icon-social-dropbox:before { + content: "\e00c"; +} diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css new file mode 100644 index 0000000..2a03c82 --- /dev/null +++ b/src/main/resources/static/css/style.css @@ -0,0 +1,29535 @@ +/* + Table of Contents + + Name : JOBICK + Author : DexignZone + Author Portfolio : https://themeforest.net/user/dexignzone/portfolio + + + + Table of Sass Contents + + 1. Abstracts + _bs-custom + _inheritance + _maps + _mixin + _variable + + 2. bootstrap + -Here goes all official bootstrap scss files + + 3. Global/Base + _color + _custom-grid + _fonts + _helper + _reset + + 4. layout + +footer + +header + +rtl + +sidebar + +tables + +theme + +version-dark + + 5. Conponents + +app + +charts + +forms + +map + +uc + +ui + +widget + + 6. Page + _index-1 + _page-error + _page-register + _page-signin + _page-user-lock + _page-user-lock + +*/ +@import url("css2.css"); +@import url("css.css"); +@import url("css1.css"); +@import url("css3.css"); +@import url("css4.css"); +@import url("css5.css"); +@import url("simple-line-icons.css"); +@import url("all.min.css"); +@import url("materialdesignicons.min.css"); +@import url("themify-icons.css"); +@import url("line-awesome.min.css"); +@import url("style1.css"); +@import url("flaticon.css"); +@import url("flaticon_1.css"); +@import url("icomoon.css"); +@import url("bootstrap-icons.css"); +@import url(animate.min.css); +@import url(aos.min.css); +@import url(perfect-scrollbar.css); +@import url(metisMenu.min.css); +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +.gradient_one { + background-image: linear-gradient(to right, rgba(186, 1, 181, 0.85) 0%, rgba(103, 25, 255, 0.85) 100%); } + +.gradient-1 { + background: #f0a907; + background: -moz-linear-gradient(top, #f0a907 0%, #f53c79 100%); + background: -webkit-linear-gradient(top, #f0a907 0%, #f53c79 100%); + background: linear-gradient(to bottom, #f0a907 0%, #f53c79 100%) !important; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0a907', endColorstr='#f53c79',GradientType=0 ); } + +.gradient-2 { + background: #4dedf5; + background: -moz-linear-gradient(top, #4dedf5 0%, #480ceb 100%); + background: -webkit-linear-gradient(top, #4dedf5 0%, #480ceb 100%); + background: linear-gradient(to bottom, #4dedf5 0%, #480ceb 100%) !important; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4dedf5', endColorstr='#480ceb',GradientType=0 ); } + +.gradient-3 { + background: #51f5ae; + background: -moz-linear-gradient(top, #51f5ae 0%, #3fbcda 100%); + background: -webkit-linear-gradient(top, #51f5ae 0%, #3fbcda 100%); + background: linear-gradient(to bottom, #51f5ae 0%, #3fbcda 100%) !important; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#51f5ae', endColorstr='#3fbcda',GradientType=0 ); } + +.gradient-4 { + background: #f25521; + background: -moz-linear-gradient(left, #f25521 0%, #f9c70a 100%); + background: -webkit-linear-gradient(left, #f25521 0%, #f9c70a 100%); + background: linear-gradient(to right, #f25521 0%, #f9c70a 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f25521', endColorstr='#f9c70a',GradientType=1 ); } + +.gradient-5 { + background: #f53c79; + background: -moz-linear-gradient(left, #f53c79 0%, #f0a907 100%); + background: -webkit-linear-gradient(left, #f53c79 0%, #f0a907 100%); + background: linear-gradient(to right, #f53c79 0%, #f0a907 100%) !important; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f53c79', endColorstr='#f0a907',GradientType=1 ); } + +.gradient-6 { + background: #36b9d8; + background: -moz-linear-gradient(left, #36b9d8 0%, #4bffa2 100%); + background: -webkit-linear-gradient(left, #36b9d8 0%, #4bffa2 100%); + background: linear-gradient(to right, #36b9d8 0%, #4bffa2 100%) !important; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36b9d8', endColorstr='#4bffa2',GradientType=1 ); } + +.gradient-7 { + background: #4400eb; + background: -moz-linear-gradient(left, #4400eb 0%, #44e7f5 100%); + background: -webkit-linear-gradient(left, #4400eb 0%, #44e7f5 100%); + background: linear-gradient(to right, #4400eb 0%, #44e7f5 100%) !important; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4400eb', endColorstr='#44e7f5',GradientType=1 ); } + +.gradient-8 { + background: #F7B00F; + background: -moz-linear-gradient(top, #F7B00F 0%, #F25521 100%); + background: -webkit-linear-gradient(top, #F7B00F 0%, #F25521 100%); + background: linear-gradient(to bottom, #F7B00F 0%, #F25521 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F7B00F', endColorstr='#F25521',GradientType=1 ); } + +.gradient-9, .datepicker.datepicker-dropdown td.day:hover, .datepicker.datepicker-dropdown th.next:hover, .datepicker.datepicker-dropdown th.prev:hover, .datepicker table tr td.selected, .datepicker table tr td.active, .datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover { + background: #f31e7a !important; + background: -moz-linear-gradient(left, #f31e7a 0%, #fd712c 100%); + background: -webkit-linear-gradient(left, #f31e7a 0%, #fd712c 100%); + background: linear-gradient(to right, #f31e7a 0%, #fd712c 100%) !important; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f31e7a', endColorstr='#fd712c',GradientType=1 ); } + +.gradient-10 { + background: #f25521 !important; + background: -moz-linear-gradient(left, #f25521 0%, #f9c70a 100%); + background: -webkit-linear-gradient(left, #f25521 0%, #f9c70a 100%); + background: linear-gradient(to top, #f25521 0%, #f9c70a 100%) !important; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f25521', endColorstr='#f9c70a',GradientType=1 ); } + +.gradient-11 { + background: #3398fb; + background: -moz-linear-gradient(left, #3398fb 0%, #8553ee 100%); + background: -webkit-linear-gradient(left, #3398fb 0%, #8553ee 100%); + background: linear-gradient(to right, #3398fb 0%, #8553ee 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3398fb', endColorstr='#8553ee',GradientType=1 ); } + +.gradient-12 { + background: #36e1b4; + background: -moz-linear-gradient(left, #36e1b4 0%, #11cae7 100%); + background: -webkit-linear-gradient(left, #36e1b4 0%, #11cae7 100%); + background: linear-gradient(to right, #36e1b4 0%, #11cae7 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36e1b4', endColorstr='#11cae7',GradientType=1 ); } + +.gradient-13 { + background: #ffbf31; + background: -moz-linear-gradient(left, #ffbf31 0%, #ff890e 100%); + background: -webkit-linear-gradient(left, #ffbf31 0%, #ff890e 100%); + background: linear-gradient(to right, #ffbf31 0%, #ff890e 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffbf31', endColorstr='#ff890e',GradientType=1 ); } + +.gradient-14 { + background: #23bdb8; + background: -moz-linear-gradient(-45deg, #23bdb8 0%, #43e794 100%); + background: -webkit-linear-gradient(-45deg, #23bdb8 0%, #43e794 100%); + background: linear-gradient(135deg, #23bdb8 0%, #43e794 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23bdb8', endColorstr='#43e794',GradientType=1 ); } + +.gradient-15 { + background: #9a56ff; + background: -moz-linear-gradient(-45deg, #9a56ff 0%, #e36cd9 100%); + background: -webkit-linear-gradient(-45deg, #9a56ff 0%, #e36cd9 100%); + background: linear-gradient(135deg, #9a56ff 0%, #e36cd9 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9a56ff', endColorstr='#e36cd9',GradientType=1 ); } + +.gradient-16 { + background: #f48665; + background: -moz-linear-gradient(-45deg, #f48665 0%, #fda23f 100%); + background: -webkit-linear-gradient(-45deg, #f48665 0%, #fda23f 100%); + background: linear-gradient(135deg, #f48665 0%, #fda23f 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f48665', endColorstr='#fda23f',GradientType=1 ); } + +.gradient-17 { + background: #e36cd9; + background: -moz-linear-gradient(-45deg, #e36cd9 0%, #fe60ae 100%); + background: -webkit-linear-gradient(-45deg, #e36cd9 0%, #fe60ae 100%); + background: linear-gradient(135deg, #e36cd9 0%, #fe60ae 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e36cd9', endColorstr='#fe60ae',GradientType=1 ); } + +.gradient-18 { + background: #a15cff; + background: -moz-linear-gradient(left, #a15cff 0%, #ce82fd 100%); + background: -webkit-linear-gradient(left, #a15cff 0%, #ce82fd 100%); + background: linear-gradient(to right, #a15cff 0%, #ce82fd 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a15cff', endColorstr='#ce82fd',GradientType=1 ); } + +/* +0 - 600: Phone +600 - 900: Tablet portrait +900 - 1200: Tablet landscape +1200 - 1800: Normal styles +1800+ : Big Desktop +1em = 16px +The smaller device rules always should write below the bigger device rules +Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component +*/ +/*! + * Bootstrap v5.0.0-beta2 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --bs-blue: #5e72e4; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #e83e8c; + --bs-red: #EE3232; + --bs-orange: #ff9900; + --bs-yellow: #FFFA6F; + --bs-green: #297F00; + --bs-teal: #20c997; + --bs-cyan: #3065D0; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-primary: #F93A0B; + --bs-secondary: #145650; + --bs-success: #68e365; + --bs-info: #D653C1; + --bs-warning: #ffa755; + --bs-danger: #f72b50; + --bs-light: #c8c8c8; + --bs-dark: #6e6e6e; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); } + +*, +*::before, +*::after { + box-sizing: border-box; } + +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; } } + +body { + margin: 0; + font-family: "Roboto", sans-serif; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #393939; + background-color: #F8F8F8; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + +[tabindex="-1"]:focus:not(:focus-visible) { + outline: 0 !important; } + +hr { + margin: 1rem 0; + color: inherit; + background-color: currentColor; + border: 0; + opacity: 0.25; } + +hr:not([size]) { + height: 1px; } + +h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; + color: #000; } + +h1, .h1 { + font-size: calc(1.35rem + 1.2vw); } + @media (min-width: 1200px) { + h1, .h1 { + font-size: 2.25rem; } } + +h2, .h2 { + font-size: calc(1.3125rem + 0.75vw); } + @media (min-width: 1200px) { + h2, .h2 { + font-size: 1.875rem; } } + +h3, .h3 { + font-size: calc(1.275rem + 0.3vw); } + @media (min-width: 1200px) { + h3, .h3 { + font-size: 1.5rem; } } + +h4, .h4 { + font-size: 1.125rem; } + +h5, .h5 { + font-size: 1rem; } + +h6, .h6 { + font-size: 0.938rem; } + +p { + margin-top: 0; + margin-bottom: 1rem; } + +abbr[title], +abbr[data-bs-original-title] { + text-decoration: underline; + text-decoration: underline dotted; + cursor: help; + text-decoration-skip-ink: none; } + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; } + +ol, +ul { + padding-left: 2rem; } + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; } + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; } + +dt { + font-weight: 700; } + +dd { + margin-bottom: .5rem; + margin-left: 0; } + +blockquote { + margin: 0 0 1rem; } + +b, +strong { + font-weight: bolder; } + +small, .small { + font-size: 0.875em; } + +mark, .mark { + padding: 0.2em; + background-color: #fcf8e3; } + +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; } + +sub { + bottom: -.25em; } + +sup { + top: -.5em; } + +a { + color: #F93A0B; + text-decoration: underline; } + a:hover { + color: #c72e09; } + +a:not([href]):not([class]), a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; } + +pre, +code, +kbd, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; + direction: ltr /* rtl:ignore */; + unicode-bidi: bidi-override; } + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 0.875em; } + pre code { + font-size: inherit; + color: inherit; + word-break: normal; } + +code { + font-size: 0.875em; + color: #e83e8c; + word-wrap: break-word; } + a > code { + color: inherit; } + +kbd { + padding: 0.2rem 0.4rem; + font-size: 0.875em; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; } + kbd kbd { + padding: 0; + font-size: 1em; + font-weight: 700; } + +figure { + margin: 0 0 1rem; } + +img, +svg { + vertical-align: middle; } + +table { + caption-side: bottom; + border-collapse: collapse; } + +caption { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: #89879f; + text-align: left; } + +th { + text-align: inherit; + text-align: -webkit-match-parent; } + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; } + +label { + display: inline-block; } + +button { + border-radius: 0; } + +button:focus:not(:focus-visible) { + outline: 0; } + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; } + +button, +select { + text-transform: none; } + +[role="button"] { + cursor: pointer; } + +select { + word-wrap: normal; } + +[list]::-webkit-calendar-picker-indicator { + display: none; } + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; } + button:not(:disabled), + [type="button"]:not(:disabled), + [type="reset"]:not(:disabled), + [type="submit"]:not(:disabled) { + cursor: pointer; } + +::-moz-focus-inner { + padding: 0; + border-style: none; } + +textarea { + resize: vertical; } + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; } + +legend { + float: left; + width: 100%; + padding: 0; + margin-bottom: 0.5rem; + font-size: calc(1.275rem + 0.3vw); + line-height: inherit; } + @media (min-width: 1200px) { + legend { + font-size: 1.5rem; } } + legend + * { + clear: left; } + +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; } + +::-webkit-inner-spin-button { + height: auto; } + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: textfield; } + +/* rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +*/ +::-webkit-search-decoration { + -webkit-appearance: none; } + +::-webkit-color-swatch-wrapper { + padding: 0; } + +::file-selector-button { + font: inherit; } + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; } + +output { + display: inline-block; } + +iframe { + border: 0; } + +summary { + display: list-item; + cursor: pointer; } + +progress { + vertical-align: baseline; } + +[hidden] { + display: none !important; } + +.lead { + font-size: 1.09375rem; + font-weight: 300; } + +.display-1 { + font-size: calc(1.625rem + 4.5vw); + font-weight: 300; + line-height: 1.2; } + @media (min-width: 1200px) { + .display-1 { + font-size: 5rem; } } + +.display-2 { + font-size: calc(1.575rem + 3.9vw); + font-weight: 300; + line-height: 1.2; } + @media (min-width: 1200px) { + .display-2 { + font-size: 4.5rem; } } + +.display-3 { + font-size: calc(1.525rem + 3.3vw); + font-weight: 300; + line-height: 1.2; } + @media (min-width: 1200px) { + .display-3 { + font-size: 4rem; } } + +.display-4 { + font-size: calc(1.475rem + 2.7vw); + font-weight: 300; + line-height: 1.2; } + @media (min-width: 1200px) { + .display-4 { + font-size: 3.5rem; } } + +.display-5 { + font-size: calc(1.425rem + 2.1vw); + font-weight: 300; + line-height: 1.2; } + @media (min-width: 1200px) { + .display-5 { + font-size: 3rem; } } + +.display-6 { + font-size: calc(1.375rem + 1.5vw); + font-weight: 300; + line-height: 1.2; } + @media (min-width: 1200px) { + .display-6 { + font-size: 2.5rem; } } + +.list-unstyled { + padding-left: 0; + list-style: none; } + +.list-inline { + padding-left: 0; + list-style: none; } + +.list-inline-item { + display: inline-block; } + .list-inline-item:not(:last-child) { + margin-right: 0.5rem; } + +.initialism { + font-size: 0.875em; + text-transform: uppercase; } + +.blockquote { + margin-bottom: 1rem; + font-size: 1.09375rem; } + .blockquote > :last-child { + margin-bottom: 0; } + +.blockquote-footer { + margin-top: -1rem; + margin-bottom: 1rem; + font-size: 0.875em; + color: #6c757d; } + .blockquote-footer::before { + content: "\2014\00A0"; } + +.img-fluid { + max-width: 100%; + height: auto; } + +.img-thumbnail { + padding: 0.25rem; + background-color: #F8F8F8; + border: 1px solid #dee2e6; + border-radius: 0.75rem; + max-width: 100%; + height: auto; } + +.figure { + display: inline-block; } + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; } + +.figure-caption { + font-size: 0.875em; + color: #6c757d; } + +.container, +.container-fluid, +.container-sm, +.container-md, +.container-lg, +.container-xl, +.container-xxl { + width: 100%; + padding-right: var(--bs-gutter-x, 15px); + padding-left: var(--bs-gutter-x, 15px); + margin-right: auto; + margin-left: auto; } + +@media (min-width: 576px) { + .container, .container-sm { + max-width: 540px; } } +@media (min-width: 768px) { + .container, .container-sm, .container-md { + max-width: 720px; } } +@media (min-width: 992px) { + .container, .container-sm, .container-md, .container-lg { + max-width: 960px; } } +@media (min-width: 1200px) { + .container, .container-sm, .container-md, .container-lg, .container-xl { + max-width: 1140px; } } +@media (min-width: 1440) { + .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { + max-width: 1320px; } } +.row { + --bs-gutter-x: 30px; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(var(--bs-gutter-y) * -1); + margin-right: calc(var(--bs-gutter-x) / -2); + margin-left: calc(var(--bs-gutter-x) / -2); } + .row > * { + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) / 2); + padding-left: calc(var(--bs-gutter-x) / 2); + margin-top: var(--bs-gutter-y); } + +.col { + flex: 1 0 0%; } + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; } + +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; } + +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; } + +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; } + +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; } + +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; } + +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; } + +.col-auto { + flex: 0 0 auto; + width: auto; } + +.col-1 { + flex: 0 0 auto; + width: 8.3333333333%; } + +.col-2 { + flex: 0 0 auto; + width: 16.6666666667%; } + +.col-3 { + flex: 0 0 auto; + width: 25%; } + +.col-4 { + flex: 0 0 auto; + width: 33.3333333333%; } + +.col-5 { + flex: 0 0 auto; + width: 41.6666666667%; } + +.col-6 { + flex: 0 0 auto; + width: 50%; } + +.col-7 { + flex: 0 0 auto; + width: 58.3333333333%; } + +.col-8 { + flex: 0 0 auto; + width: 66.6666666667%; } + +.col-9 { + flex: 0 0 auto; + width: 75%; } + +.col-10 { + flex: 0 0 auto; + width: 83.3333333333%; } + +.col-11 { + flex: 0 0 auto; + width: 91.6666666667%; } + +.col-12 { + flex: 0 0 auto; + width: 100%; } + +.offset-1 { + margin-left: 8.3333333333%; } + +.offset-2 { + margin-left: 16.6666666667%; } + +.offset-3 { + margin-left: 25%; } + +.offset-4 { + margin-left: 33.3333333333%; } + +.offset-5 { + margin-left: 41.6666666667%; } + +.offset-6 { + margin-left: 50%; } + +.offset-7 { + margin-left: 58.3333333333%; } + +.offset-8 { + margin-left: 66.6666666667%; } + +.offset-9 { + margin-left: 75%; } + +.offset-10 { + margin-left: 83.3333333333%; } + +.offset-11 { + margin-left: 91.6666666667%; } + +.g-0, +.gx-0 { + --bs-gutter-x: 0; } + +.g-0, +.gy-0 { + --bs-gutter-y: 0; } + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; } + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; } + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; } + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; } + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; } + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; } + +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; } + +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; } + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; } + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; } + +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; } + + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; } + + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; } + + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; } + + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; } + + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; } + + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; } + + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-sm-auto { + flex: 0 0 auto; + width: auto; } + + .col-sm-1 { + flex: 0 0 auto; + width: 8.3333333333%; } + + .col-sm-2 { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-sm-3 { + flex: 0 0 auto; + width: 25%; } + + .col-sm-4 { + flex: 0 0 auto; + width: 33.3333333333%; } + + .col-sm-5 { + flex: 0 0 auto; + width: 41.6666666667%; } + + .col-sm-6 { + flex: 0 0 auto; + width: 50%; } + + .col-sm-7 { + flex: 0 0 auto; + width: 58.3333333333%; } + + .col-sm-8 { + flex: 0 0 auto; + width: 66.6666666667%; } + + .col-sm-9 { + flex: 0 0 auto; + width: 75%; } + + .col-sm-10 { + flex: 0 0 auto; + width: 83.3333333333%; } + + .col-sm-11 { + flex: 0 0 auto; + width: 91.6666666667%; } + + .col-sm-12 { + flex: 0 0 auto; + width: 100%; } + + .offset-sm-0 { + margin-left: 0; } + + .offset-sm-1 { + margin-left: 8.3333333333%; } + + .offset-sm-2 { + margin-left: 16.6666666667%; } + + .offset-sm-3 { + margin-left: 25%; } + + .offset-sm-4 { + margin-left: 33.3333333333%; } + + .offset-sm-5 { + margin-left: 41.6666666667%; } + + .offset-sm-6 { + margin-left: 50%; } + + .offset-sm-7 { + margin-left: 58.3333333333%; } + + .offset-sm-8 { + margin-left: 66.6666666667%; } + + .offset-sm-9 { + margin-left: 75%; } + + .offset-sm-10 { + margin-left: 83.3333333333%; } + + .offset-sm-11 { + margin-left: 91.6666666667%; } + + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0; } + + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0; } + + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem; } + + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem; } + + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem; } + + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem; } + + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 1rem; } + + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 1rem; } + + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1.5rem; } + + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.5rem; } + + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; } + + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; } } +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; } + + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; } + + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; } + + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; } + + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; } + + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; } + + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; } + + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-md-auto { + flex: 0 0 auto; + width: auto; } + + .col-md-1 { + flex: 0 0 auto; + width: 8.3333333333%; } + + .col-md-2 { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-md-3 { + flex: 0 0 auto; + width: 25%; } + + .col-md-4 { + flex: 0 0 auto; + width: 33.3333333333%; } + + .col-md-5 { + flex: 0 0 auto; + width: 41.6666666667%; } + + .col-md-6 { + flex: 0 0 auto; + width: 50%; } + + .col-md-7 { + flex: 0 0 auto; + width: 58.3333333333%; } + + .col-md-8 { + flex: 0 0 auto; + width: 66.6666666667%; } + + .col-md-9 { + flex: 0 0 auto; + width: 75%; } + + .col-md-10 { + flex: 0 0 auto; + width: 83.3333333333%; } + + .col-md-11 { + flex: 0 0 auto; + width: 91.6666666667%; } + + .col-md-12 { + flex: 0 0 auto; + width: 100%; } + + .offset-md-0 { + margin-left: 0; } + + .offset-md-1 { + margin-left: 8.3333333333%; } + + .offset-md-2 { + margin-left: 16.6666666667%; } + + .offset-md-3 { + margin-left: 25%; } + + .offset-md-4 { + margin-left: 33.3333333333%; } + + .offset-md-5 { + margin-left: 41.6666666667%; } + + .offset-md-6 { + margin-left: 50%; } + + .offset-md-7 { + margin-left: 58.3333333333%; } + + .offset-md-8 { + margin-left: 66.6666666667%; } + + .offset-md-9 { + margin-left: 75%; } + + .offset-md-10 { + margin-left: 83.3333333333%; } + + .offset-md-11 { + margin-left: 91.6666666667%; } + + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0; } + + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0; } + + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem; } + + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem; } + + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem; } + + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem; } + + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 1rem; } + + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 1rem; } + + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1.5rem; } + + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.5rem; } + + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; } + + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; } } +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; } + + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; } + + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; } + + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; } + + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; } + + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; } + + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; } + + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-lg-auto { + flex: 0 0 auto; + width: auto; } + + .col-lg-1 { + flex: 0 0 auto; + width: 8.3333333333%; } + + .col-lg-2 { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-lg-3 { + flex: 0 0 auto; + width: 25%; } + + .col-lg-4 { + flex: 0 0 auto; + width: 33.3333333333%; } + + .col-lg-5 { + flex: 0 0 auto; + width: 41.6666666667%; } + + .col-lg-6 { + flex: 0 0 auto; + width: 50%; } + + .col-lg-7 { + flex: 0 0 auto; + width: 58.3333333333%; } + + .col-lg-8 { + flex: 0 0 auto; + width: 66.6666666667%; } + + .col-lg-9 { + flex: 0 0 auto; + width: 75%; } + + .col-lg-10 { + flex: 0 0 auto; + width: 83.3333333333%; } + + .col-lg-11 { + flex: 0 0 auto; + width: 91.6666666667%; } + + .col-lg-12 { + flex: 0 0 auto; + width: 100%; } + + .offset-lg-0 { + margin-left: 0; } + + .offset-lg-1 { + margin-left: 8.3333333333%; } + + .offset-lg-2 { + margin-left: 16.6666666667%; } + + .offset-lg-3 { + margin-left: 25%; } + + .offset-lg-4 { + margin-left: 33.3333333333%; } + + .offset-lg-5 { + margin-left: 41.6666666667%; } + + .offset-lg-6 { + margin-left: 50%; } + + .offset-lg-7 { + margin-left: 58.3333333333%; } + + .offset-lg-8 { + margin-left: 66.6666666667%; } + + .offset-lg-9 { + margin-left: 75%; } + + .offset-lg-10 { + margin-left: 83.3333333333%; } + + .offset-lg-11 { + margin-left: 91.6666666667%; } + + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0; } + + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0; } + + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem; } + + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem; } + + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem; } + + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem; } + + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 1rem; } + + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 1rem; } + + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1.5rem; } + + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.5rem; } + + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; } + + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; } } +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; } + + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; } + + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; } + + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; } + + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; } + + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; } + + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; } + + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-xl-auto { + flex: 0 0 auto; + width: auto; } + + .col-xl-1 { + flex: 0 0 auto; + width: 8.3333333333%; } + + .col-xl-2 { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-xl-3 { + flex: 0 0 auto; + width: 25%; } + + .col-xl-4 { + flex: 0 0 auto; + width: 33.3333333333%; } + + .col-xl-5 { + flex: 0 0 auto; + width: 41.6666666667%; } + + .col-xl-6 { + flex: 0 0 auto; + width: 50%; } + + .col-xl-7 { + flex: 0 0 auto; + width: 58.3333333333%; } + + .col-xl-8 { + flex: 0 0 auto; + width: 66.6666666667%; } + + .col-xl-9 { + flex: 0 0 auto; + width: 75%; } + + .col-xl-10 { + flex: 0 0 auto; + width: 83.3333333333%; } + + .col-xl-11 { + flex: 0 0 auto; + width: 91.6666666667%; } + + .col-xl-12 { + flex: 0 0 auto; + width: 100%; } + + .offset-xl-0 { + margin-left: 0; } + + .offset-xl-1 { + margin-left: 8.3333333333%; } + + .offset-xl-2 { + margin-left: 16.6666666667%; } + + .offset-xl-3 { + margin-left: 25%; } + + .offset-xl-4 { + margin-left: 33.3333333333%; } + + .offset-xl-5 { + margin-left: 41.6666666667%; } + + .offset-xl-6 { + margin-left: 50%; } + + .offset-xl-7 { + margin-left: 58.3333333333%; } + + .offset-xl-8 { + margin-left: 66.6666666667%; } + + .offset-xl-9 { + margin-left: 75%; } + + .offset-xl-10 { + margin-left: 83.3333333333%; } + + .offset-xl-11 { + margin-left: 91.6666666667%; } + + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0; } + + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0; } + + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem; } + + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem; } + + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem; } + + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem; } + + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 1rem; } + + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 1rem; } + + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1.5rem; } + + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.5rem; } + + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; } + + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; } } +@media (min-width: 1440) { + .col-xxl { + flex: 1 0 0%; } + + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; } + + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; } + + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; } + + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; } + + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; } + + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; } + + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-xxl-auto { + flex: 0 0 auto; + width: auto; } + + .col-xxl-1 { + flex: 0 0 auto; + width: 8.3333333333%; } + + .col-xxl-2 { + flex: 0 0 auto; + width: 16.6666666667%; } + + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; } + + .col-xxl-4 { + flex: 0 0 auto; + width: 33.3333333333%; } + + .col-xxl-5 { + flex: 0 0 auto; + width: 41.6666666667%; } + + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; } + + .col-xxl-7 { + flex: 0 0 auto; + width: 58.3333333333%; } + + .col-xxl-8 { + flex: 0 0 auto; + width: 66.6666666667%; } + + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; } + + .col-xxl-10 { + flex: 0 0 auto; + width: 83.3333333333%; } + + .col-xxl-11 { + flex: 0 0 auto; + width: 91.6666666667%; } + + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; } + + .offset-xxl-0 { + margin-left: 0; } + + .offset-xxl-1 { + margin-left: 8.3333333333%; } + + .offset-xxl-2 { + margin-left: 16.6666666667%; } + + .offset-xxl-3 { + margin-left: 25%; } + + .offset-xxl-4 { + margin-left: 33.3333333333%; } + + .offset-xxl-5 { + margin-left: 41.6666666667%; } + + .offset-xxl-6 { + margin-left: 50%; } + + .offset-xxl-7 { + margin-left: 58.3333333333%; } + + .offset-xxl-8 { + margin-left: 66.6666666667%; } + + .offset-xxl-9 { + margin-left: 75%; } + + .offset-xxl-10 { + margin-left: 83.3333333333%; } + + .offset-xxl-11 { + margin-left: 91.6666666667%; } + + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0; } + + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0; } + + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem; } + + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem; } + + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem; } + + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem; } + + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 1rem; } + + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 1rem; } + + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1.5rem; } + + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.5rem; } + + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; } + + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; } } +.table { + --bs-table-bg: transparent; + --bs-table-striped-color: #393939; + --bs-table-striped-bg: rgba(0, 0, 0, 0.05); + --bs-table-active-color: #393939; + --bs-table-active-bg: rgba(0, 0, 0, 0.1); + --bs-table-hover-color: #393939; + --bs-table-hover-bg: rgba(0, 0, 0, 0.075); + width: 100%; + margin-bottom: 1rem; + color: #393939; + vertical-align: top; + border-color: #EEEEEE; } + .table > :not(caption) > * > * { + padding: 0.5rem 0.5rem; + background-color: var(--bs-table-bg); + border-bottom-width: 1px; + box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); } + .table > tbody { + vertical-align: inherit; } + .table > thead { + vertical-align: bottom; } + .table > :not(:last-child) > :last-child > * { + border-bottom-color: currentColor; } + +.caption-top { + caption-side: top; } + +.table-sm > :not(caption) > * > * { + padding: 0.25rem 0.25rem; } + +.table-bordered > :not(caption) > * { + border-width: 1px 0; } + .table-bordered > :not(caption) > * > * { + border-width: 0 1px; } + +.table-borderless > :not(caption) > * > * { + border-bottom-width: 0; } + +.table-striped > tbody > tr:nth-of-type(odd) { + --bs-table-accent-bg: var(--bs-table-striped-bg); + color: var(--bs-table-striped-color); } + +.table-active { + --bs-table-accent-bg: var(--bs-table-active-bg); + color: var(--bs-table-active-color); } + +.table-hover > tbody > tr:hover { + --bs-table-accent-bg: var(--bs-table-hover-bg); + color: var(--bs-table-hover-color); } + +.table-primary { + --bs-table-bg: #fed8ce; + --bs-table-striped-bg: #f1cdc4; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e5c2b9; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ebc8bf; + --bs-table-hover-color: #000; + color: #000; + border-color: #e5c2b9; } + +.table-secondary { + --bs-table-bg: #d0dddc; + --bs-table-striped-bg: #c6d2d1; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bbc7c6; + --bs-table-active-color: #000; + --bs-table-hover-bg: #c0cccc; + --bs-table-hover-color: #000; + color: #000; + border-color: #bbc7c6; } + +.table-success { + --bs-table-bg: #e1f9e0; + --bs-table-striped-bg: #d6edd5; + --bs-table-striped-color: #000; + --bs-table-active-bg: #cbe0ca; + --bs-table-active-color: #000; + --bs-table-hover-bg: #d0e6cf; + --bs-table-hover-color: #000; + color: #000; + border-color: #cbe0ca; } + +.table-info { + --bs-table-bg: #f7ddf3; + --bs-table-striped-bg: #ebd2e7; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dec7db; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e4cce1; + --bs-table-hover-color: #000; + color: #000; + border-color: #dec7db; } + +.table-warning { + --bs-table-bg: #ffeddd; + --bs-table-striped-bg: #f2e1d2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e6d5c7; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ecdbcc; + --bs-table-hover-color: #000; + color: #000; + border-color: #e6d5c7; } + +.table-danger { + --bs-table-bg: #fdd5dc; + --bs-table-striped-bg: #f0cad1; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e4c0c6; + --bs-table-active-color: #000; + --bs-table-hover-bg: #eac5cc; + --bs-table-hover-color: #000; + color: #000; + border-color: #e4c0c6; } + +.table-light { + --bs-table-bg: #c8c8c8; + --bs-table-striped-bg: #bebebe; + --bs-table-striped-color: #000; + --bs-table-active-bg: #b4b4b4; + --bs-table-active-color: #000; + --bs-table-hover-bg: #b9b9b9; + --bs-table-hover-color: #000; + color: #000; + border-color: #b4b4b4; } + +.table-dark { + --bs-table-bg: #6e6e6e; + --bs-table-striped-bg: #757575; + --bs-table-striped-color: #fff; + --bs-table-active-bg: #7d7d7d; + --bs-table-active-color: #000; + --bs-table-hover-bg: #797979; + --bs-table-hover-color: #000; + color: #fff; + border-color: #7d7d7d; } + +.table-responsive { + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + +@media (max-width: 575.98px) { + .table-responsive-sm { + overflow-x: auto; + -webkit-overflow-scrolling: touch; } } +@media (max-width: 767.98px) { + .table-responsive-md { + overflow-x: auto; + -webkit-overflow-scrolling: touch; } } +@media (max-width: 991.98px) { + .table-responsive-lg { + overflow-x: auto; + -webkit-overflow-scrolling: touch; } } +@media (max-width: 1199.98px) { + .table-responsive-xl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; } } +@media (max-width: 1439.98) { + .table-responsive-xxl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; } } +.form-label { + margin-bottom: 0.5rem; } + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; } + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.09375rem; } + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.765625rem; } + +.form-text { + margin-top: 0.25rem; + font-size: 0.875em; + color: #89879f; } + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #393939; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #f5f5f5; + appearance: none; + border-radius: 0.75rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; } } + .form-control[type="file"] { + overflow: hidden; } + .form-control[type="file"]:not(:disabled):not([readonly]) { + cursor: pointer; } + .form-control:focus { + color: #393939; + background-color: #fff; + border-color: #fc9d85; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.25); } + .form-control::-webkit-date-and-time-value { + height: 1.5em; } + .form-control::placeholder { + color: #6c757d; + opacity: 1; } + .form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; } + .form-control::file-selector-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + margin-inline-end: 0.75rem; + color: #393939; + background-color: #e9ecef; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-control::file-selector-button { + transition: none; } } + .form-control:hover:not(:disabled):not([readonly])::file-selector-button { + background-color: #dde0e3; } + .form-control::-webkit-file-upload-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + margin-inline-end: 0.75rem; + color: #393939; + background-color: #e9ecef; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-control::-webkit-file-upload-button { + transition: none; } } + .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { + background-color: #dde0e3; } + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + line-height: 1.5; + color: #393939; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; } + .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; } + +.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.765625rem; + border-radius: 0.2rem; } + .form-control-sm::file-selector-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + margin-inline-end: 0.5rem; } + .form-control-sm::-webkit-file-upload-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + margin-inline-end: 0.5rem; } + +.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.09375rem; + border-radius: 0.3rem; } + .form-control-lg::file-selector-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + margin-inline-end: 1rem; } + .form-control-lg::-webkit-file-upload-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + margin-inline-end: 1rem; } + +textarea.form-control { + min-height: calc(1.5em + 0.75rem + 2px); } +textarea.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); } +textarea.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); } + +.form-control-color { + max-width: 3rem; + height: auto; + padding: 0.375rem; } + .form-control-color:not(:disabled):not([readonly]) { + cursor: pointer; } + .form-control-color::-moz-color-swatch { + height: 1.5em; + border-radius: 0.75rem; } + .form-control-color::-webkit-color-swatch { + height: 1.5em; + border-radius: 0.75rem; } + +.form-select { + display: block; + width: 100%; + padding: 0.375rem 2.25rem 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #393939; + background-color: #fff; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right 0.75rem center; + background-size: 16px 12px; + border: 1px solid #f5f5f5; + border-radius: 0.75rem; + appearance: none; } + .form-select:focus { + border-color: #fc9d85; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.25); } + .form-select[multiple], .form-select[size]:not([size="1"]) { + padding-right: 0.75rem; + background-image: none; } + .form-select:disabled { + color: #6c757d; + background-color: #e9ecef; } + .form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #393939; } + +.form-select-sm { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.765625rem; } + +.form-select-lg { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.09375rem; } + +.form-check { + display: block; + min-height: 1.3125rem; + padding-left: 1.5em; + margin-bottom: 0.125rem; } + .form-check .form-check-input { + float: left; + margin-left: -1.5em; } + +.form-check-input { + width: 1em; + height: 1em; + margin-top: 0.25em; + vertical-align: top; + background-color: #fff; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + border: 1px solid rgba(0, 0, 0, 0.25); + appearance: none; + color-adjust: exact; } + .form-check-input[type="checkbox"] { + border-radius: 0.25em; } + .form-check-input[type="radio"] { + border-radius: 50%; } + .form-check-input:active { + filter: brightness(90%); } + .form-check-input:focus { + border-color: #fc9d85; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.25); } + .form-check-input:checked { + background-color: #F93A0B; + border-color: #F93A0B; } + .form-check-input:checked[type="checkbox"] { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); } + .form-check-input:checked[type="radio"] { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); } + .form-check-input[type="checkbox"]:indeterminate { + background-color: #F93A0B; + border-color: #F93A0B; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); } + .form-check-input:disabled { + pointer-events: none; + filter: none; + opacity: 0.5; } + .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { + opacity: 0.5; } + +.form-switch { + padding-left: 2.5em; } + .form-switch .form-check-input { + width: 2em; + margin-left: -2.5em; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); + background-position: left center; + border-radius: 2em; + transition: background-position 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-switch .form-check-input { + transition: none; } } + .form-switch .form-check-input:focus { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fc9d85'/%3e%3c/svg%3e"); } + .form-switch .form-check-input:checked { + background-position: right center; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } + +.form-check-inline { + display: inline-block; + margin-right: 1rem; } + +.btn-check { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } + .btn-check[disabled] + .btn, .btn-check:disabled + .btn { + pointer-events: none; + filter: none; + opacity: 0.65; } + +.form-range { + width: 100%; + height: 1.5rem; + padding: 0; + background-color: transparent; + appearance: none; } + .form-range:focus { + outline: 0; } + .form-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #F8F8F8, 0 0 0 0.25rem rgba(249, 58, 11, 0.25); } + .form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #F8F8F8, 0 0 0 0.25rem rgba(249, 58, 11, 0.25); } + .form-range::-moz-focus-outer { + border: 0; } + .form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #F93A0B; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .form-range::-webkit-slider-thumb { + transition: none; } } + .form-range::-webkit-slider-thumb:active { + background-color: #fdc4b6; } + .form-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; } + .form-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #F93A0B; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .form-range::-moz-range-thumb { + transition: none; } } + .form-range::-moz-range-thumb:active { + background-color: #fdc4b6; } + .form-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; } + .form-range:disabled { + pointer-events: none; } + .form-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; } + .form-range:disabled::-moz-range-thumb { + background-color: #adb5bd; } + +.form-floating { + position: relative; } + .form-floating > .form-control, + .form-floating > .form-select { + height: calc(3.5rem + 2px); + padding: 1rem 0.75rem; } + .form-floating > label { + position: absolute; + top: 0; + left: 0; + height: 100%; + padding: 1rem 0.75rem; + pointer-events: none; + border: 1px solid transparent; + transform-origin: 0 0; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-floating > label { + transition: none; } } + .form-floating > .form-control::placeholder { + color: transparent; } + .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; } + .form-floating > .form-control:-webkit-autofill { + padding-top: 1.625rem; + padding-bottom: 0.625rem; } + .form-floating > .form-select { + padding-top: 1.625rem; + padding-bottom: 0.625rem; } + .form-floating > .form-control:focus ~ label, + .form-floating > .form-control:not(:placeholder-shown) ~ label, + .form-floating > .form-select ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } + .form-floating > .form-control:-webkit-autofill ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; } + .input-group > .form-control, + .input-group > .form-select { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; } + .input-group > .form-control:focus, + .input-group > .form-select:focus { + z-index: 3; } + .input-group .btn { + position: relative; + z-index: 2; } + .input-group .btn:focus { + z-index: 3; } + +.input-group-text { + display: flex; + align-items: center; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #393939; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #f5f5f5; + border-radius: 0.75rem; } + +.input-group-lg > .form-control, +.input-group-lg > .form-select, +.input-group-lg > .input-group-text, +.input-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + border-radius: 0.3rem; } + +.input-group-sm > .form-control, +.input-group-sm > .form-select, +.input-group-sm > .input-group-text, +.input-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.765625rem; + border-radius: 0.2rem; } + +.input-group-lg > .form-select, +.input-group-sm > .form-select { + padding-right: 3rem; } + +.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), +.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } +.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), +.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } +.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { + margin-left: -1px; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #68e365; } + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.765625rem; + color: #000; + background-color: rgba(104, 227, 101, 0.9); + border-radius: 0.75rem; } + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #68e365; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2368e365' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #68e365; + box-shadow: 0 0 0 0.25rem rgba(104, 227, 101, 0.25); } + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .form-select:valid, .form-select.is-valid { + border-color: #68e365; + padding-right: 4.125rem; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2368e365' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-select:valid:focus, .form-select.is-valid:focus { + border-color: #68e365; + box-shadow: 0 0 0 0.25rem rgba(104, 227, 101, 0.25); } + +.was-validated .form-check-input:valid, .form-check-input.is-valid { + border-color: #68e365; } + .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { + background-color: #68e365; } + .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { + box-shadow: 0 0 0 0.25rem rgba(104, 227, 101, 0.25); } + .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #68e365; } + +.form-check-inline .form-check-input ~ .valid-feedback { + margin-left: .5em; } + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #f72b50; } + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.765625rem; + color: #000; + background-color: rgba(247, 43, 80, 0.9); + border-radius: 0.75rem; } + +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #f72b50; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f72b50'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f72b50' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #f72b50; + box-shadow: 0 0 0 0.25rem rgba(247, 43, 80, 0.25); } + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .form-select:invalid, .form-select.is-invalid { + border-color: #f72b50; + padding-right: 4.125rem; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f72b50'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f72b50' stroke='none'/%3e%3c/svg%3e"); + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { + border-color: #f72b50; + box-shadow: 0 0 0 0.25rem rgba(247, 43, 80, 0.25); } + +.was-validated .form-check-input:invalid, .form-check-input.is-invalid { + border-color: #f72b50; } + .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { + background-color: #f72b50; } + .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { + box-shadow: 0 0 0 0.25rem rgba(247, 43, 80, 0.25); } + .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #f72b50; } + +.form-check-inline .form-check-input ~ .invalid-feedback { + margin-left: .5em; } + +.btn { + display: inline-block; + font-weight: 400; + line-height: 1.5; + color: #393939; + text-align: center; + text-decoration: none; + vertical-align: middle; + cursor: pointer; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + border-radius: 0.75rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .btn { + transition: none; } } + .btn:hover { + color: #393939; } + .btn-check:focus + .btn, .btn:focus { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.25); } + .btn:disabled, .btn.disabled, fieldset:disabled .btn { + pointer-events: none; + opacity: 0.65; } + +.btn-primary { + color: #000; + background-color: #F93A0B; + border-color: #F93A0B; } + .btn-primary:hover { + color: #000; + background-color: #fa5830; + border-color: #fa4e23; } + .btn-check:focus + .btn-primary, .btn-primary:focus { + color: #000; + background-color: #fa5830; + border-color: #fa4e23; + box-shadow: 0 0 0 0.25rem rgba(212, 49, 9, 0.5); } + .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle { + color: #000; + background-color: #fa613c; + border-color: #fa4e23; } + .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(212, 49, 9, 0.5); } + .btn-primary:disabled, .btn-primary.disabled { + color: #000; + background-color: #F93A0B; + border-color: #F93A0B; } + +.btn-secondary { + color: #fff; + background-color: #145650; + border-color: #145650; } + .btn-secondary:hover { + color: #fff; + background-color: #114944; + border-color: #104540; } + .btn-check:focus + .btn-secondary, .btn-secondary:focus { + color: #fff; + background-color: #114944; + border-color: #104540; + box-shadow: 0 0 0 0.25rem rgba(55, 111, 106, 0.5); } + .btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #104540; + border-color: #0f413c; } + .btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(55, 111, 106, 0.5); } + .btn-secondary:disabled, .btn-secondary.disabled { + color: #fff; + background-color: #145650; + border-color: #145650; } + +.btn-success { + color: #000; + background-color: #68e365; + border-color: #68e365; } + .btn-success:hover { + color: #000; + background-color: #7fe77c; + border-color: #77e674; } + .btn-check:focus + .btn-success, .btn-success:focus { + color: #000; + background-color: #7fe77c; + border-color: #77e674; + box-shadow: 0 0 0 0.25rem rgba(88, 193, 86, 0.5); } + .btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle { + color: #000; + background-color: #86e984; + border-color: #77e674; } + .btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(88, 193, 86, 0.5); } + .btn-success:disabled, .btn-success.disabled { + color: #000; + background-color: #68e365; + border-color: #68e365; } + +.btn-info { + color: #000; + background-color: #D653C1; + border-color: #D653C1; } + .btn-info:hover { + color: #000; + background-color: #dc6dca; + border-color: #da64c7; } + .btn-check:focus + .btn-info, .btn-info:focus { + color: #000; + background-color: #dc6dca; + border-color: #da64c7; + box-shadow: 0 0 0 0.25rem rgba(182, 71, 164, 0.5); } + .btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle { + color: #000; + background-color: #de75cd; + border-color: #da64c7; } + .btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(182, 71, 164, 0.5); } + .btn-info:disabled, .btn-info.disabled { + color: #000; + background-color: #D653C1; + border-color: #D653C1; } + +.btn-warning { + color: #000; + background-color: #ffa755; + border-color: #ffa755; } + .btn-warning:hover { + color: #000; + background-color: #ffb46f; + border-color: #ffb066; } + .btn-check:focus + .btn-warning, .btn-warning:focus { + color: #000; + background-color: #ffb46f; + border-color: #ffb066; + box-shadow: 0 0 0 0.25rem rgba(217, 142, 72, 0.5); } + .btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle { + color: #000; + background-color: #ffb977; + border-color: #ffb066; } + .btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(217, 142, 72, 0.5); } + .btn-warning:disabled, .btn-warning.disabled { + color: #000; + background-color: #ffa755; + border-color: #ffa755; } + +.btn-danger { + color: #000; + background-color: #f72b50; + border-color: #f72b50; } + .btn-danger:hover { + color: #000; + background-color: #f84b6a; + border-color: #f84062; } + .btn-check:focus + .btn-danger, .btn-danger:focus { + color: #000; + background-color: #f84b6a; + border-color: #f84062; + box-shadow: 0 0 0 0.25rem rgba(210, 37, 68, 0.5); } + .btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle { + color: #000; + background-color: #f95573; + border-color: #f84062; } + .btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(210, 37, 68, 0.5); } + .btn-danger:disabled, .btn-danger.disabled { + color: #000; + background-color: #f72b50; + border-color: #f72b50; } + +.btn-light { + color: #000; + background-color: #c8c8c8; + border-color: #c8c8c8; } + .btn-light:hover { + color: #000; + background-color: #d0d0d0; + border-color: #cecece; } + .btn-check:focus + .btn-light, .btn-light:focus { + color: #000; + background-color: #d0d0d0; + border-color: #cecece; + box-shadow: 0 0 0 0.25rem rgba(170, 170, 170, 0.5); } + .btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle { + color: #000; + background-color: lightgray; + border-color: #cecece; } + .btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(170, 170, 170, 0.5); } + .btn-light:disabled, .btn-light.disabled { + color: #000; + background-color: #c8c8c8; + border-color: #c8c8c8; } + +.btn-dark { + color: #fff; + background-color: #6e6e6e; + border-color: #6e6e6e; } + .btn-dark:hover { + color: #fff; + background-color: #5e5e5e; + border-color: #585858; } + .btn-check:focus + .btn-dark, .btn-dark:focus { + color: #fff; + background-color: #5e5e5e; + border-color: #585858; + box-shadow: 0 0 0 0.25rem rgba(132, 132, 132, 0.5); } + .btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #585858; + border-color: #535353; } + .btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(132, 132, 132, 0.5); } + .btn-dark:disabled, .btn-dark.disabled { + color: #fff; + background-color: #6e6e6e; + border-color: #6e6e6e; } + +.btn-outline-primary { + color: #F93A0B; + border-color: #F93A0B; } + .btn-outline-primary:hover { + color: #000; + background-color: #F93A0B; + border-color: #F93A0B; } + .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus { + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.5); } + .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show { + color: #000; + background-color: #F93A0B; + border-color: #F93A0B; } + .btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.5); } + .btn-outline-primary:disabled, .btn-outline-primary.disabled { + color: #F93A0B; + background-color: transparent; } + +.btn-outline-secondary { + color: #145650; + border-color: #145650; } + .btn-outline-secondary:hover { + color: #fff; + background-color: #145650; + border-color: #145650; } + .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus { + box-shadow: 0 0 0 0.25rem rgba(20, 86, 80, 0.5); } + .btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show { + color: #fff; + background-color: #145650; + border-color: #145650; } + .btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(20, 86, 80, 0.5); } + .btn-outline-secondary:disabled, .btn-outline-secondary.disabled { + color: #145650; + background-color: transparent; } + +.btn-outline-success { + color: #68e365; + border-color: #68e365; } + .btn-outline-success:hover { + color: #000; + background-color: #68e365; + border-color: #68e365; } + .btn-check:focus + .btn-outline-success, .btn-outline-success:focus { + box-shadow: 0 0 0 0.25rem rgba(104, 227, 101, 0.5); } + .btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show { + color: #000; + background-color: #68e365; + border-color: #68e365; } + .btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(104, 227, 101, 0.5); } + .btn-outline-success:disabled, .btn-outline-success.disabled { + color: #68e365; + background-color: transparent; } + +.btn-outline-info { + color: #D653C1; + border-color: #D653C1; } + .btn-outline-info:hover { + color: #000; + background-color: #D653C1; + border-color: #D653C1; } + .btn-check:focus + .btn-outline-info, .btn-outline-info:focus { + box-shadow: 0 0 0 0.25rem rgba(214, 83, 193, 0.5); } + .btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show { + color: #000; + background-color: #D653C1; + border-color: #D653C1; } + .btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(214, 83, 193, 0.5); } + .btn-outline-info:disabled, .btn-outline-info.disabled { + color: #D653C1; + background-color: transparent; } + +.btn-outline-warning { + color: #ffa755; + border-color: #ffa755; } + .btn-outline-warning:hover { + color: #000; + background-color: #ffa755; + border-color: #ffa755; } + .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus { + box-shadow: 0 0 0 0.25rem rgba(255, 167, 85, 0.5); } + .btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show { + color: #000; + background-color: #ffa755; + border-color: #ffa755; } + .btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(255, 167, 85, 0.5); } + .btn-outline-warning:disabled, .btn-outline-warning.disabled { + color: #ffa755; + background-color: transparent; } + +.btn-outline-danger { + color: #f72b50; + border-color: #f72b50; } + .btn-outline-danger:hover { + color: #000; + background-color: #f72b50; + border-color: #f72b50; } + .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus { + box-shadow: 0 0 0 0.25rem rgba(247, 43, 80, 0.5); } + .btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show { + color: #000; + background-color: #f72b50; + border-color: #f72b50; } + .btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(247, 43, 80, 0.5); } + .btn-outline-danger:disabled, .btn-outline-danger.disabled { + color: #f72b50; + background-color: transparent; } + +.btn-outline-light { + color: #c8c8c8; + border-color: #c8c8c8; } + .btn-outline-light:hover { + color: #000; + background-color: #c8c8c8; + border-color: #c8c8c8; } + .btn-check:focus + .btn-outline-light, .btn-outline-light:focus { + box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, 0.5); } + .btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show { + color: #000; + background-color: #c8c8c8; + border-color: #c8c8c8; } + .btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, 0.5); } + .btn-outline-light:disabled, .btn-outline-light.disabled { + color: #c8c8c8; + background-color: transparent; } + +.btn-outline-dark { + color: #6e6e6e; + border-color: #6e6e6e; } + .btn-outline-dark:hover { + color: #fff; + background-color: #6e6e6e; + border-color: #6e6e6e; } + .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus { + box-shadow: 0 0 0 0.25rem rgba(110, 110, 110, 0.5); } + .btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show { + color: #fff; + background-color: #6e6e6e; + border-color: #6e6e6e; } + .btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem rgba(110, 110, 110, 0.5); } + .btn-outline-dark:disabled, .btn-outline-dark.disabled { + color: #6e6e6e; + background-color: transparent; } + +.btn-link { + font-weight: 400; + color: #F93A0B; + text-decoration: underline; } + .btn-link:hover { + color: #c72e09; } + .btn-link:disabled, .btn-link.disabled { + color: #6c757d; } + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + border-radius: 0.3rem; } + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.765625rem; + border-radius: 0.2rem; } + +.fade { + transition: opacity 0.15s linear; } + @media (prefers-reduced-motion: reduce) { + .fade { + transition: none; } } + .fade:not(.show) { + opacity: 0; } + +.collapse:not(.show) { + display: none; } + +.collapsing { + height: 0; + overflow: hidden; + transition: height 0.35s ease; } + @media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; } } + +.dropup, +.dropend, +.dropdown, +.dropstart { + position: relative; } + +.dropdown-toggle { + white-space: nowrap; } + .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; } + .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropdown-menu { + position: absolute; + top: 100%; + z-index: 1000; + display: none; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0; + font-size: 0.875rem; + color: #393939; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.75rem; } + .dropdown-menu[data-bs-popper] { + left: 0; + margin-top: 0.125rem; } + +.dropdown-menu-start { + --bs-position: start; } + .dropdown-menu-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + +.dropdown-menu-end { + --bs-position: end; } + .dropdown-menu-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } + +@media (min-width: 576px) { + .dropdown-menu-sm-start { + --bs-position: start; } + .dropdown-menu-sm-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + + .dropdown-menu-sm-end { + --bs-position: end; } + .dropdown-menu-sm-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } +@media (min-width: 768px) { + .dropdown-menu-md-start { + --bs-position: start; } + .dropdown-menu-md-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + + .dropdown-menu-md-end { + --bs-position: end; } + .dropdown-menu-md-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } +@media (min-width: 992px) { + .dropdown-menu-lg-start { + --bs-position: start; } + .dropdown-menu-lg-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + + .dropdown-menu-lg-end { + --bs-position: end; } + .dropdown-menu-lg-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } +@media (min-width: 1200px) { + .dropdown-menu-xl-start { + --bs-position: start; } + .dropdown-menu-xl-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + + .dropdown-menu-xl-end { + --bs-position: end; } + .dropdown-menu-xl-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } +@media (min-width: 1440) { + .dropdown-menu-xxl-start { + --bs-position: start; } + .dropdown-menu-xxl-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + + .dropdown-menu-xxl-end { + --bs-position: end; } + .dropdown-menu-xxl-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } +.dropup .dropdown-menu { + top: auto; + bottom: 100%; } + .dropup .dropdown-menu[data-bs-popper] { + margin-top: 0; + margin-bottom: 0.125rem; } +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; } +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropend .dropdown-menu { + top: 0; + right: auto; + left: 100%; } + .dropend .dropdown-menu[data-bs-popper] { + margin-top: 0; + margin-left: 0.125rem; } +.dropend .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; } +.dropend .dropdown-toggle:empty::after { + margin-left: 0; } +.dropend .dropdown-toggle::after { + vertical-align: 0; } + +.dropstart .dropdown-menu { + top: 0; + right: 100%; + left: auto; } + .dropstart .dropdown-menu[data-bs-popper] { + margin-top: 0; + margin-right: 0.125rem; } +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; } +.dropstart .dropdown-toggle::after { + display: none; } +.dropstart .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; } +.dropstart .dropdown-toggle:empty::after { + margin-left: 0; } +.dropstart .dropdown-toggle::before { + vertical-align: 0; } + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid rgba(0, 0, 0, 0.15); } + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border: 0; } + .dropdown-item:hover, .dropdown-item:focus { + color: #1e2125; + background-color: #e9ecef; } + .dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #F93A0B; } + .dropdown-item.disabled, .dropdown-item:disabled { + color: #adb5bd; + pointer-events: none; + background-color: transparent; } + +.dropdown-menu.show { + display: block; } + +.dropdown-header { + display: block; + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 0.765625rem; + color: #6c757d; + white-space: nowrap; } + +.dropdown-item-text { + display: block; + padding: 0.25rem 1rem; + color: #212529; } + +.dropdown-menu-dark { + color: #dee2e6; + background-color: #343a40; + border-color: rgba(0, 0, 0, 0.15); } + .dropdown-menu-dark .dropdown-item { + color: #dee2e6; } + .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus { + color: #fff; + background-color: rgba(255, 255, 255, 0.15); } + .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active { + color: #fff; + background-color: #F93A0B; } + .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled { + color: #adb5bd; } + .dropdown-menu-dark .dropdown-divider { + border-color: rgba(0, 0, 0, 0.15); } + .dropdown-menu-dark .dropdown-item-text { + color: #dee2e6; } + .dropdown-menu-dark .dropdown-header { + color: #adb5bd; } + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; } + .btn-group > .btn, + .btn-group-vertical > .btn { + position: relative; + flex: 1 1 auto; } + .btn-group > .btn-check:checked + .btn, + .btn-group > .btn-check:focus + .btn, + .btn-group > .btn:hover, + .btn-group > .btn:focus, + .btn-group > .btn:active, + .btn-group > .btn.active, + .btn-group-vertical > .btn-check:checked + .btn, + .btn-group-vertical > .btn-check:focus + .btn, + .btn-group-vertical > .btn:hover, + .btn-group-vertical > .btn:focus, + .btn-group-vertical > .btn:active, + .btn-group-vertical > .btn.active { + z-index: 1; } + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .btn-toolbar .input-group { + width: auto; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; } +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } +.btn-group > .btn:nth-child(n + 3), +.btn-group > :not(.btn-check) + .btn, +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; } + .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after { + margin-left: 0; } + .dropstart .dropdown-toggle-split::before { + margin-right: 0; } + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; } + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; } + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; } + .btn-group-vertical > .btn, + .btn-group-vertical > .btn-group { + width: 100%; } + .btn-group-vertical > .btn:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; } + .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), + .btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .btn-group-vertical > .btn ~ .btn, + .btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + +.nav-link { + display: block; + padding: 0.5rem 1rem; + text-decoration: none; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .nav-link { + transition: none; } } + .nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; } + +.nav-tabs { + border-bottom: 1px solid #dee2e6; } + .nav-tabs .nav-link { + margin-bottom: -1px; + background: none; + border: 1px solid transparent; + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } + .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; + isolation: isolate; } + .nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; } + .nav-tabs .nav-link.active, + .nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #F8F8F8; + border-color: #dee2e6 #dee2e6 #F8F8F8; } + .nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.nav-pills .nav-link { + background: none; + border: 0; + border-radius: 0.75rem; } +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #F93A0B; } + +.nav-fill > .nav-link, +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; } + +.nav-justified > .nav-link, +.nav-justified .nav-item { + flex-basis: 0; + flex-grow: 1; + text-align: center; } + +.tab-content > .tab-pane { + display: none; } +.tab-content > .active { + display: block; } + +.navbar { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding-top: 0.5rem; + padding-bottom: 0.5rem; } + .navbar > .container, + .navbar > .container-fluid, + .navbar > .container-sm, + .navbar > .container-md, + .navbar > .container-lg, + .navbar > .container-xl, + .navbar > .container-xxl { + display: flex; + flex-wrap: inherit; + align-items: center; + justify-content: space-between; } + +.navbar-brand { + padding-top: 0.3359375rem; + padding-bottom: 0.3359375rem; + margin-right: 1rem; + font-size: 1.09375rem; + text-decoration: none; + white-space: nowrap; } + +.navbar-nav { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + .navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; } + .navbar-nav .dropdown-menu { + position: static; } + +.navbar-text { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; } + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.09375rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.75rem; + transition: box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .navbar-toggler { + transition: none; } } + .navbar-toggler:hover { + text-decoration: none; } + .navbar-toggler:focus { + text-decoration: none; + outline: 0; + box-shadow: 0 0 0 0.25rem; } + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + background-repeat: no-repeat; + background-position: center; + background-size: 100%; } + +.navbar-nav-scroll { + max-height: var(--bs-scroll-height, 75vh); + overflow-y: auto; } + +@media (min-width: 576px) { + .navbar-expand-sm { + flex-wrap: nowrap; + justify-content: flex-start; } + .navbar-expand-sm .navbar-nav { + flex-direction: row; } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-sm .navbar-nav-scroll { + overflow: visible; } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-sm .navbar-toggler { + display: none; } } +@media (min-width: 768px) { + .navbar-expand-md { + flex-wrap: nowrap; + justify-content: flex-start; } + .navbar-expand-md .navbar-nav { + flex-direction: row; } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-md .navbar-nav-scroll { + overflow: visible; } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-md .navbar-toggler { + display: none; } } +@media (min-width: 992px) { + .navbar-expand-lg { + flex-wrap: nowrap; + justify-content: flex-start; } + .navbar-expand-lg .navbar-nav { + flex-direction: row; } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-lg .navbar-nav-scroll { + overflow: visible; } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-lg .navbar-toggler { + display: none; } } +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-wrap: nowrap; + justify-content: flex-start; } + .navbar-expand-xl .navbar-nav { + flex-direction: row; } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-xl .navbar-nav-scroll { + overflow: visible; } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-xl .navbar-toggler { + display: none; } } +@media (min-width: 1440) { + .navbar-expand-xxl { + flex-wrap: nowrap; + justify-content: flex-start; } + .navbar-expand-xxl .navbar-nav { + flex-direction: row; } + .navbar-expand-xxl .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-xxl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-xxl .navbar-nav-scroll { + overflow: visible; } + .navbar-expand-xxl .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-xxl .navbar-toggler { + display: none; } } +.navbar-expand { + flex-wrap: nowrap; + justify-content: flex-start; } + .navbar-expand .navbar-nav { + flex-direction: row; } + .navbar-expand .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand .navbar-nav-scroll { + overflow: visible; } + .navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand .navbar-toggler { + display: none; } + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); } +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.55); } + .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); } + .navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); } +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); } +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.55); + border-color: rgba(0, 0, 0, 0.1); } +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.55); } + .navbar-light .navbar-text a, + .navbar-light .navbar-text a:hover, + .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-dark .navbar-brand { + color: #fff; } + .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; } +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.55); } + .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); } + .navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); } +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; } +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(255, 255, 255, 0.1); } +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.55); } + .navbar-dark .navbar-text a, + .navbar-dark .navbar-text a:hover, + .navbar-dark .navbar-text a:focus { + color: #fff; } + +.card { + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.75rem; } + .card > hr { + margin-right: 0; + margin-left: 0; } + .card > .list-group { + border-top: inherit; + border-bottom: inherit; } + .card > .list-group:first-child { + border-top-width: 0; + border-top-left-radius: calc(0.75rem - 1px); + border-top-right-radius: calc(0.75rem - 1px); } + .card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: calc(0.75rem - 1px); + border-bottom-left-radius: calc(0.75rem - 1px); } + .card > .card-header + .list-group, + .card > .list-group + .card-footer { + border-top: 0; } + +.card-body { + flex: 1 1 auto; + padding: 1rem 1rem; } + +.card-title { + margin-bottom: 0.5rem; } + +.card-subtitle { + margin-top: -0.25rem; + margin-bottom: 0; } + +.card-text:last-child { + margin-bottom: 0; } + +.card-link:hover { + text-decoration: none; } +.card-link + .card-link { + margin-left: 1rem /* rtl:ignore */; } + +.card-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); } + .card-header:first-child { + border-radius: calc(0.75rem - 1px) calc(0.75rem - 1px) 0 0; } + +.card-footer { + padding: 0.5rem 1rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); } + .card-footer:last-child { + border-radius: 0 0 calc(0.75rem - 1px) calc(0.75rem - 1px); } + +.card-header-tabs { + margin-right: -0.5rem; + margin-bottom: -0.5rem; + margin-left: -0.5rem; + border-bottom: 0; } + .card-header-tabs .nav-link.active { + background-color: #fff; + border-bottom-color: #fff; } + +.card-header-pills { + margin-right: -0.5rem; + margin-left: -0.5rem; } + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1rem; + border-radius: calc(0.75rem - 1px); } + +.card-img, +.card-img-top, +.card-img-bottom { + width: 100%; } + +.card-img, +.card-img-top { + border-top-left-radius: calc(0.75rem - 1px); + border-top-right-radius: calc(0.75rem - 1px); } + +.card-img, +.card-img-bottom { + border-bottom-right-radius: calc(0.75rem - 1px); + border-bottom-left-radius: calc(0.75rem - 1px); } + +.card-group > .card { + margin-bottom: 15px; } +@media (min-width: 576px) { + .card-group { + display: flex; + flex-flow: row wrap; } + .card-group > .card { + flex: 1 0 0%; + margin-bottom: 0; } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; } } + +.accordion-button { + position: relative; + display: flex; + align-items: center; + width: 100%; + padding: 1rem 1.25rem; + font-size: 0.875rem; + color: #393939; + text-align: left; + background-color: transparent; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0; + overflow-anchor: none; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; } + @media (prefers-reduced-motion: reduce) { + .accordion-button { + transition: none; } } + .accordion-button.collapsed { + border-bottom-width: 0; } + .accordion-button:not(.collapsed) { + color: #e0340a; + background-color: #feebe7; } + .accordion-button:not(.collapsed)::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0340a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); + transform: rotate(180deg); } + .accordion-button::after { + flex-shrink: 0; + width: 1.25rem; + height: 1.25rem; + margin-left: auto; + content: ""; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23393939'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-size: 1.25rem; + transition: transform 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .accordion-button::after { + transition: none; } } + .accordion-button:hover { + z-index: 2; } + .accordion-button:focus { + z-index: 3; + border-color: #fc9d85; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.25); } + +.accordion-header { + margin-bottom: 0; } + +.accordion-item:first-of-type .accordion-button { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } +.accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-width: 1px; + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } +.accordion-item:last-of-type .accordion-collapse { + border-bottom-width: 1px; + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } + +.accordion-collapse { + border: solid rgba(0, 0, 0, 0.125); + border-width: 0 1px; } + +.accordion-body { + padding: 1rem 1.25rem; } + +.accordion-flush .accordion-button { + border-right: 0; + border-left: 0; + border-radius: 0; } +.accordion-flush .accordion-collapse { + border-width: 0; } +.accordion-flush .accordion-item:first-of-type .accordion-button { + border-top-width: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; } +.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-width: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0 0; + margin-bottom: 1rem; + list-style: none; } + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; } + .breadcrumb-item + .breadcrumb-item::before { + float: left; + padding-right: 0.5rem; + color: #6c757d; + content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */; } +.breadcrumb-item.active { + color: #6c757d; } + +.pagination { + display: flex; + padding-left: 0; + list-style: none; } + +.page-link { + position: relative; + display: block; + color: #F93A0B; + text-decoration: none; + background-color: #fff; + border: 1px solid #dee2e6; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .page-link { + transition: none; } } + .page-link:hover { + z-index: 2; + color: #c72e09; + background-color: #e9ecef; + border-color: #dee2e6; } + .page-link:focus { + z-index: 3; + color: #c72e09; + background-color: #e9ecef; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.25); } + +.page-item:not(:first-child) .page-link { + margin-left: -1px; } +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #F93A0B; + border-color: #F93A0B; } +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + background-color: #fff; + border-color: #dee2e6; } + +.page-link { + padding: 0.375rem 0.75rem; } + +.page-item:first-child .page-link { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } +.page-item:last-child .page-link { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.09375rem; } +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; } +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; } + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.765625rem; } +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; } +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; } + +.badge { + display: inline-block; + padding: 0.35em 0.65em; + font-size: 0.75em; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.75rem; } + .badge:empty { + display: none; } + +.btn .badge { + position: relative; + top: -1px; } + +.alert { + position: relative; + padding: 1rem 1rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.75rem; } + +.alert-heading { + color: inherit; } + +.alert-link { + font-weight: 700; } + +.alert-dismissible { + padding-right: 3rem; } + .alert-dismissible .btn-close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 1.25rem 1rem; } + +.alert-primary { + color: #952307; + background-color: #fed8ce; + border-color: #fdc4b6; } + .alert-primary .alert-link { + color: #771c06; } + +.alert-secondary { + color: #0c3430; + background-color: #d0dddc; + border-color: #b9cccb; } + .alert-secondary .alert-link { + color: #0a2a26; } + +.alert-success { + color: #2a5b28; + background-color: #e1f9e0; + border-color: #d2f7d1; } + .alert-success .alert-link { + color: #224920; } + +.alert-info { + color: #803274; + background-color: #f7ddf3; + border-color: #f3cbec; } + .alert-info .alert-link { + color: #66285d; } + +.alert-warning { + color: #664322; + background-color: #ffeddd; + border-color: #ffe5cc; } + .alert-warning .alert-link { + color: #52361b; } + +.alert-danger { + color: #941a30; + background-color: #fdd5dc; + border-color: #fdbfcb; } + .alert-danger .alert-link { + color: #761526; } + +.alert-light { + color: #505050; + background-color: #f4f4f4; + border-color: #efefef; } + .alert-light .alert-link { + color: #404040; } + +.alert-dark { + color: #424242; + background-color: #e2e2e2; + border-color: #d4d4d4; } + .alert-dark .alert-link { + color: #353535; } + +@keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; } } +.progress { + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.65625rem; + background-color: #e9ecef; + border-radius: 0.75rem; } + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #F93A0B; + transition: width 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; } } + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; } + +.progress-bar-animated { + animation: 1s linear infinite progress-bar-stripes; } + @media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + animation: none; } } + +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: 0.75rem; } + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; } + .list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; } + .list-group-item-action:active { + color: #393939; + background-color: #e9ecef; } + +.list-group-item { + position: relative; + display: block; + padding: 0.5rem 1rem; + text-decoration: none; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); } + .list-group-item:first-child { + border-top-left-radius: inherit; + border-top-right-radius: inherit; } + .list-group-item:last-child { + border-bottom-right-radius: inherit; + border-bottom-left-radius: inherit; } + .list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; } + .list-group-item.active { + z-index: 2; + color: #fff; + background-color: #F93A0B; + border-color: #F93A0B; } + .list-group-item + .list-group-item { + border-top-width: 0; } + .list-group-item + .list-group-item.active { + margin-top: -1px; + border-top-width: 1px; } + +.list-group-horizontal { + flex-direction: row; } + .list-group-horizontal > .list-group-item:first-child { + border-bottom-left-radius: 0.75rem; + border-top-right-radius: 0; } + .list-group-horizontal > .list-group-item:last-child { + border-top-right-radius: 0.75rem; + border-bottom-left-radius: 0; } + .list-group-horizontal > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } + +@media (min-width: 576px) { + .list-group-horizontal-sm { + flex-direction: row; } + .list-group-horizontal-sm > .list-group-item:first-child { + border-bottom-left-radius: 0.75rem; + border-top-right-radius: 0; } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-right-radius: 0.75rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-sm > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-sm > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } +@media (min-width: 768px) { + .list-group-horizontal-md { + flex-direction: row; } + .list-group-horizontal-md > .list-group-item:first-child { + border-bottom-left-radius: 0.75rem; + border-top-right-radius: 0; } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-right-radius: 0.75rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-md > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-md > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } +@media (min-width: 992px) { + .list-group-horizontal-lg { + flex-direction: row; } + .list-group-horizontal-lg > .list-group-item:first-child { + border-bottom-left-radius: 0.75rem; + border-top-right-radius: 0; } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-right-radius: 0.75rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-lg > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-lg > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } +@media (min-width: 1200px) { + .list-group-horizontal-xl { + flex-direction: row; } + .list-group-horizontal-xl > .list-group-item:first-child { + border-bottom-left-radius: 0.75rem; + border-top-right-radius: 0; } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-right-radius: 0.75rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-xl > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-xl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } +@media (min-width: 1440) { + .list-group-horizontal-xxl { + flex-direction: row; } + .list-group-horizontal-xxl > .list-group-item:first-child { + border-bottom-left-radius: 0.75rem; + border-top-right-radius: 0; } + .list-group-horizontal-xxl > .list-group-item:last-child { + border-top-right-radius: 0.75rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-xxl > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-xxl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } +.list-group-flush { + border-radius: 0; } + .list-group-flush > .list-group-item { + border-width: 0 0 1px; } + .list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; } + +.list-group-item-primary { + color: #952307; + background-color: #fed8ce; } + .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #952307; + background-color: #e5c2b9; } + .list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #952307; + border-color: #952307; } + +.list-group-item-secondary { + color: #0c3430; + background-color: #d0dddc; } + .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #0c3430; + background-color: #bbc7c6; } + .list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #0c3430; + border-color: #0c3430; } + +.list-group-item-success { + color: #2a5b28; + background-color: #e1f9e0; } + .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #2a5b28; + background-color: #cbe0ca; } + .list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #2a5b28; + border-color: #2a5b28; } + +.list-group-item-info { + color: #803274; + background-color: #f7ddf3; } + .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #803274; + background-color: #dec7db; } + .list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #803274; + border-color: #803274; } + +.list-group-item-warning { + color: #664322; + background-color: #ffeddd; } + .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #664322; + background-color: #e6d5c7; } + .list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #664322; + border-color: #664322; } + +.list-group-item-danger { + color: #941a30; + background-color: #fdd5dc; } + .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #941a30; + background-color: #e4c0c6; } + .list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #941a30; + border-color: #941a30; } + +.list-group-item-light { + color: #505050; + background-color: #f4f4f4; } + .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #505050; + background-color: gainsboro; } + .list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #505050; + border-color: #505050; } + +.list-group-item-dark { + color: #424242; + background-color: #e2e2e2; } + .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #424242; + background-color: #cbcbcb; } + .list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #424242; + border-color: #424242; } + +.btn-close { + box-sizing: content-box; + width: 1em; + height: 1em; + padding: 0.25em 0.25em; + color: #000; + background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat; + border: 0; + border-radius: 0.75rem; + opacity: 0.5; } + .btn-close:hover { + color: #000; + text-decoration: none; + opacity: 0.75; } + .btn-close:focus { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(249, 58, 11, 0.25); + opacity: 1; } + .btn-close:disabled, .btn-close.disabled { + pointer-events: none; + user-select: none; + opacity: 0.25; } + +.btn-close-white { + filter: invert(1) grayscale(100%) brightness(200%); } + +.toast { + width: 350px; + max-width: 100%; + font-size: 0.875rem; + pointer-events: auto; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + border-radius: 0.75rem; } + .toast:not(.showing):not(.show) { + opacity: 0; } + .toast.hide { + display: none; } + +.toast-container { + width: max-content; + max-width: 100%; + pointer-events: none; } + .toast-container > :not(:last-child) { + margin-bottom: 15px; } + +.toast-header { + display: flex; + align-items: center; + padding: 0.5rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + border-top-left-radius: calc(0.75rem - 1px); + border-top-right-radius: calc(0.75rem - 1px); } + .toast-header .btn-close { + margin-right: -0.375rem; + margin-left: 0.75rem; } + +.toast-body { + padding: 0.75rem; + word-wrap: break-word; } + +.modal-open { + overflow: hidden; } + .modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; } + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; } + .modal.fade .modal-dialog { + transition: transform 0.3s ease-out; + transform: translate(0, -50px); } + @media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; } } + .modal.show .modal-dialog { + transform: none; } + .modal.modal-static .modal-dialog { + transform: scale(1.02); } + +.modal-dialog-scrollable { + height: calc(100% - 1rem); } + .modal-dialog-scrollable .modal-content { + max-height: 100%; + overflow: hidden; } + .modal-dialog-scrollable .modal-body { + overflow-y: auto; } + +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - 1rem); } + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; } + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; } + .modal-backdrop.fade { + opacity: 0; } + .modal-backdrop.show { + opacity: 0.5; } + +.modal-header { + display: flex; + flex-shrink: 0; + align-items: center; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #EEEEEE; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .modal-header .btn-close { + padding: 0.5rem 0.5rem; + margin: -0.5rem -0.5rem -0.5rem auto; } + +.modal-title { + margin-bottom: 0; + line-height: 1.5; } + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: 1rem; } + +.modal-footer { + display: flex; + flex-wrap: wrap; + flex-shrink: 0; + align-items: center; + justify-content: flex-end; + padding: 0.75rem; + border-top: 1px solid #EEEEEE; + border-bottom-right-radius: calc(0.3rem - 1px); + border-bottom-left-radius: calc(0.3rem - 1px); } + .modal-footer > * { + margin: 0.25rem; } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; } + + .modal-dialog-scrollable { + height: calc(100% - 3.5rem); } + + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); } + + .modal-sm { + max-width: 300px; } } +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; } } +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; } } +.modal-fullscreen { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; } + .modal-fullscreen .modal-content { + height: 100%; + border: 0; + border-radius: 0; } + .modal-fullscreen .modal-header { + border-radius: 0; } + .modal-fullscreen .modal-body { + overflow-y: auto; } + .modal-fullscreen .modal-footer { + border-radius: 0; } + +@media (max-width: 575.98px) { + .modal-fullscreen-sm-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; } + .modal-fullscreen-sm-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; } + .modal-fullscreen-sm-down .modal-header { + border-radius: 0; } + .modal-fullscreen-sm-down .modal-body { + overflow-y: auto; } + .modal-fullscreen-sm-down .modal-footer { + border-radius: 0; } } +@media (max-width: 767.98px) { + .modal-fullscreen-md-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; } + .modal-fullscreen-md-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; } + .modal-fullscreen-md-down .modal-header { + border-radius: 0; } + .modal-fullscreen-md-down .modal-body { + overflow-y: auto; } + .modal-fullscreen-md-down .modal-footer { + border-radius: 0; } } +@media (max-width: 991.98px) { + .modal-fullscreen-lg-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; } + .modal-fullscreen-lg-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; } + .modal-fullscreen-lg-down .modal-header { + border-radius: 0; } + .modal-fullscreen-lg-down .modal-body { + overflow-y: auto; } + .modal-fullscreen-lg-down .modal-footer { + border-radius: 0; } } +@media (max-width: 1199.98px) { + .modal-fullscreen-xl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; } + .modal-fullscreen-xl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; } + .modal-fullscreen-xl-down .modal-header { + border-radius: 0; } + .modal-fullscreen-xl-down .modal-body { + overflow-y: auto; } + .modal-fullscreen-xl-down .modal-footer { + border-radius: 0; } } +@media (max-width: 1439.98) { + .modal-fullscreen-xxl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; } + .modal-fullscreen-xxl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; } + .modal-fullscreen-xxl-down .modal-header { + border-radius: 0; } + .modal-fullscreen-xxl-down .modal-body { + overflow-y: auto; } + .modal-fullscreen-xxl-down .modal-footer { + border-radius: 0; } } +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: "Roboto", sans-serif; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.765625rem; + word-wrap: break-word; + opacity: 0; } + .tooltip.show { + opacity: 0.9; } + .tooltip .tooltip-arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; } + .tooltip .tooltip-arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] { + padding: 0.4rem 0; } + .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow { + bottom: 0; } + .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before { + top: -1px; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; } + +.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] { + padding: 0 0.4rem; } + .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before { + right: -1px; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; } + +.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] { + padding: 0.4rem 0; } + .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow { + top: 0; } + .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before { + bottom: -1px; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; } + +.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] { + padding: 0 0.4rem; } + .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before { + left: -1px; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; } + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.75rem; } + +.popover { + position: absolute; + top: 0; + left: 0 /* rtl:ignore */; + z-index: 1060; + display: block; + max-width: 276px; + font-family: "Roboto", sans-serif; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.765625rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; } + .popover .popover-arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; } + .popover .popover-arrow::before, .popover .popover-arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow { + bottom: calc(-0.5rem - 1px); } + .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); } + .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; } + +.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; } + .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); } + .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; } + +.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow { + top: calc(-0.5rem - 1px); } + .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); } + .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; } +.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f0f0f0; } + +.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; } + .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); } + .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; } + +.popover-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #000; + background-color: #f0f0f0; + border-bottom: 1px solid #d8d8d8; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .popover-header:empty { + display: none; } + +.popover-body { + padding: 1rem 1rem; + color: #393939; } + +.carousel { + position: relative; } + +.carousel.pointer-event { + touch-action: pan-y; } + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; } + .carousel-inner::after { + display: block; + clear: both; + content: ""; } + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; } } + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; } + +/* rtl:begin:ignore */ +.carousel-item-next:not(.carousel-item-start), +.active.carousel-item-end { + transform: translateX(100%); } + +.carousel-item-prev:not(.carousel-item-end), +.active.carousel-item-start { + transform: translateX(-100%); } + +/* rtl:end:ignore */ +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; } +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end { + z-index: 1; + opacity: 1; } +.carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; } + @media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-start, + .carousel-fade .active.carousel-item-end { + transition: none; } } + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + padding: 0; + color: #fff; + text-align: center; + background: none; + border: 0; + opacity: 0.5; + transition: opacity 0.15s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; } } + .carousel-control-prev:hover, .carousel-control-prev:focus, + .carousel-control-next:hover, + .carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; } + +.carousel-control-prev { + left: 0; } + +.carousel-control-next { + right: 0; } + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; } + +/* rtl:options: { + "autoRename": true, + "stringMap":[ { + "name" : "prev-next", + "search" : "prev", + "replace" : "next" + } ] +} */ +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); } + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); } + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 2; + display: flex; + justify-content: center; + padding: 0; + margin-right: 15%; + margin-bottom: 1rem; + margin-left: 15%; + list-style: none; } + .carousel-indicators [data-bs-target] { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + padding: 0; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: 0.5; + transition: opacity 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-indicators [data-bs-target] { + transition: none; } } + .carousel-indicators .active { + opacity: 1; } + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 1.25rem; + left: 15%; + padding-top: 1.25rem; + padding-bottom: 1.25rem; + color: #fff; + text-align: center; } + +.carousel-dark .carousel-control-prev-icon, +.carousel-dark .carousel-control-next-icon { + filter: invert(1) grayscale(100); } +.carousel-dark .carousel-indicators [data-bs-target] { + background-color: #000; } +.carousel-dark .carousel-caption { + color: #000; } + +@keyframes spinner-border { + to { + transform: rotate(360deg) /* rtl:ignore */; } } +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + animation: 0.75s linear infinite spinner-border; } + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; } + +@keyframes spinner-grow { + 0% { + transform: scale(0); } + 50% { + opacity: 1; + transform: none; } } +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + animation: 0.75s linear infinite spinner-grow; } + +.spinner-grow-sm { + width: 1rem; + height: 1rem; } + +@media (prefers-reduced-motion: reduce) { + .spinner-border, + .spinner-grow { + animation-duration: 1.5s; } } +.clearfix::after { + display: block; + clear: both; + content: ""; } + +.link-primary { + color: #F93A0B; } + .link-primary:hover, .link-primary:focus { + color: #fa613c; } + +.link-secondary { + color: #145650; } + .link-secondary:hover, .link-secondary:focus { + color: #104540; } + +.link-success { + color: #68e365; } + .link-success:hover, .link-success:focus { + color: #86e984; } + +.link-info { + color: #D653C1; } + .link-info:hover, .link-info:focus { + color: #de75cd; } + +.link-warning { + color: #ffa755; } + .link-warning:hover, .link-warning:focus { + color: #ffb977; } + +.link-danger { + color: #f72b50; } + .link-danger:hover, .link-danger:focus { + color: #f95573; } + +.link-light { + color: #c8c8c8; } + .link-light:hover, .link-light:focus { + color: lightgray; } + +.link-dark { + color: #6e6e6e; } + .link-dark:hover, .link-dark:focus { + color: #585858; } + +.ratio { + position: relative; + width: 100%; } + .ratio::before { + display: block; + padding-top: var(--bs-aspect-ratio); + content: ""; } + .ratio > * { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + +.ratio-1x1 { + --bs-aspect-ratio: 100%; } + +.ratio-4x3 { + --bs-aspect-ratio: calc(3 / 4 * 100%); } + +.ratio-16x9 { + --bs-aspect-ratio: calc(9 / 16 * 100%); } + +.ratio-21x9 { + --bs-aspect-ratio: calc(9 / 21 * 100%); } + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; } + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; } + +.sticky-top { + position: sticky; + top: 0; + z-index: 1020; } + +@media (min-width: 576px) { + .sticky-sm-top { + position: sticky; + top: 0; + z-index: 1020; } } +@media (min-width: 768px) { + .sticky-md-top { + position: sticky; + top: 0; + z-index: 1020; } } +@media (min-width: 992px) { + .sticky-lg-top { + position: sticky; + top: 0; + z-index: 1020; } } +@media (min-width: 1200px) { + .sticky-xl-top { + position: sticky; + top: 0; + z-index: 1020; } } +@media (min-width: 1440) { + .sticky-xxl-top { + position: sticky; + top: 0; + z-index: 1020; } } +.visually-hidden, +.visually-hidden-focusable:not(:focus):not(:focus-within) { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border: 0 !important; } + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + content: ""; } + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + +.align-baseline { + vertical-align: baseline !important; } + +.align-top { + vertical-align: top !important; } + +.align-middle { + vertical-align: middle !important; } + +.align-bottom { + vertical-align: bottom !important; } + +.align-text-bottom { + vertical-align: text-bottom !important; } + +.align-text-top { + vertical-align: text-top !important; } + +.float-start { + float: left !important; } + +.float-end { + float: right !important; } + +.float-none { + float: none !important; } + +.overflow-auto { + overflow: auto !important; } + +.overflow-hidden { + overflow: hidden !important; } + +.overflow-visible { + overflow: visible !important; } + +.overflow-scroll { + overflow: scroll !important; } + +.d-inline { + display: inline !important; } + +.d-inline-block { + display: inline-block !important; } + +.d-block { + display: block !important; } + +.d-grid { + display: grid !important; } + +.d-table { + display: table !important; } + +.d-table-row { + display: table-row !important; } + +.d-table-cell { + display: table-cell !important; } + +.d-flex { + display: flex !important; } + +.d-inline-flex { + display: inline-flex !important; } + +.d-none { + display: none !important; } + +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } + +.shadow-none { + box-shadow: none !important; } + +.position-static { + position: static !important; } + +.position-relative { + position: relative !important; } + +.position-absolute { + position: absolute !important; } + +.position-fixed { + position: fixed !important; } + +.position-sticky { + position: sticky !important; } + +.top-0 { + top: 0 !important; } + +.top-50 { + top: 50% !important; } + +.top-100 { + top: 100% !important; } + +.bottom-0 { + bottom: 0 !important; } + +.bottom-50 { + bottom: 50% !important; } + +.bottom-100 { + bottom: 100% !important; } + +.start-0 { + left: 0 !important; } + +.start-50 { + left: 50% !important; } + +.start-100 { + left: 100% !important; } + +.end-0 { + right: 0 !important; } + +.end-50 { + right: 50% !important; } + +.end-100 { + right: 100% !important; } + +.translate-middle { + transform: translate(-50%, -50%) !important; } + +.translate-middle-x { + transform: translateX(-50%) !important; } + +.translate-middle-y { + transform: translateY(-50%) !important; } + +.border { + border: 1px solid #EEEEEE !important; } + +.border-0 { + border: 0 !important; } + +.border-top { + border-top: 1px solid #EEEEEE !important; } + +.border-top-0 { + border-top: 0 !important; } + +.border-end { + border-right: 1px solid #EEEEEE !important; } + +.border-end-0 { + border-right: 0 !important; } + +.border-bottom { + border-bottom: 1px solid #EEEEEE !important; } + +.border-bottom-0 { + border-bottom: 0 !important; } + +.border-start { + border-left: 1px solid #EEEEEE !important; } + +.border-start-0 { + border-left: 0 !important; } + +.border-primary { + border-color: #F93A0B !important; } + +.border-secondary { + border-color: #145650 !important; } + +.border-success { + border-color: #68e365 !important; } + +.border-info { + border-color: #D653C1 !important; } + +.border-warning { + border-color: #ffa755 !important; } + +.border-danger { + border-color: #f72b50 !important; } + +.border-light { + border-color: #c8c8c8 !important; } + +.border-dark { + border-color: #6e6e6e !important; } + +.border-white { + border-color: #fff !important; } + +.border-0 { + border-width: 0 !important; } + +.border-1 { + border-width: 1px !important; } + +.border-2 { + border-width: 2px !important; } + +.border-3 { + border-width: 3px !important; } + +.border-4 { + border-width: 4px !important; } + +.border-5 { + border-width: 5px !important; } + +.w-25 { + width: 25% !important; } + +.w-50 { + width: 50% !important; } + +.w-75 { + width: 75% !important; } + +.w-100 { + width: 100% !important; } + +.w-auto { + width: auto !important; } + +.mw-100 { + max-width: 100% !important; } + +.vw-100 { + width: 100vw !important; } + +.min-vw-100 { + min-width: 100vw !important; } + +.h-25 { + height: 25% !important; } + +.h-50 { + height: 50% !important; } + +.h-75 { + height: 75% !important; } + +.h-100 { + height: 100% !important; } + +.h-auto { + height: auto !important; } + +.mh-100 { + max-height: 100% !important; } + +.vh-100 { + height: 100vh !important; } + +.min-vh-100 { + min-height: 100vh !important; } + +.flex-fill { + flex: 1 1 auto !important; } + +.flex-row { + flex-direction: row !important; } + +.flex-column { + flex-direction: column !important; } + +.flex-row-reverse { + flex-direction: row-reverse !important; } + +.flex-column-reverse { + flex-direction: column-reverse !important; } + +.flex-grow-0 { + flex-grow: 0 !important; } + +.flex-grow-1 { + flex-grow: 1 !important; } + +.flex-shrink-0 { + flex-shrink: 0 !important; } + +.flex-shrink-1 { + flex-shrink: 1 !important; } + +.flex-wrap { + flex-wrap: wrap !important; } + +.flex-nowrap { + flex-wrap: nowrap !important; } + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } + +.gap-0 { + gap: 0 !important; } + +.gap-1 { + gap: 0.25rem !important; } + +.gap-2 { + gap: 0.5rem !important; } + +.gap-3 { + gap: 1rem !important; } + +.gap-4 { + gap: 1.5rem !important; } + +.gap-5 { + gap: 3rem !important; } + +.justify-content-start { + justify-content: flex-start !important; } + +.justify-content-end { + justify-content: flex-end !important; } + +.justify-content-center { + justify-content: center !important; } + +.justify-content-between { + justify-content: space-between !important; } + +.justify-content-around { + justify-content: space-around !important; } + +.justify-content-evenly { + justify-content: space-evenly !important; } + +.align-items-start { + align-items: flex-start !important; } + +.align-items-end { + align-items: flex-end !important; } + +.align-items-center { + align-items: center !important; } + +.align-items-baseline { + align-items: baseline !important; } + +.align-items-stretch { + align-items: stretch !important; } + +.align-content-start { + align-content: flex-start !important; } + +.align-content-end { + align-content: flex-end !important; } + +.align-content-center { + align-content: center !important; } + +.align-content-between { + align-content: space-between !important; } + +.align-content-around { + align-content: space-around !important; } + +.align-content-stretch { + align-content: stretch !important; } + +.align-self-auto { + align-self: auto !important; } + +.align-self-start { + align-self: flex-start !important; } + +.align-self-end { + align-self: flex-end !important; } + +.align-self-center { + align-self: center !important; } + +.align-self-baseline { + align-self: baseline !important; } + +.align-self-stretch { + align-self: stretch !important; } + +.order-first { + order: -1 !important; } + +.order-0 { + order: 0 !important; } + +.order-1 { + order: 1 !important; } + +.order-2 { + order: 2 !important; } + +.order-3 { + order: 3 !important; } + +.order-4 { + order: 4 !important; } + +.order-5 { + order: 5 !important; } + +.order-last { + order: 6 !important; } + +.m-0 { + margin: 0 !important; } + +.m-1 { + margin: 0.25rem !important; } + +.m-2 { + margin: 0.5rem !important; } + +.m-3 { + margin: 1rem !important; } + +.m-4 { + margin: 1.5rem !important; } + +.m-5 { + margin: 3rem !important; } + +.m-auto { + margin: auto !important; } + +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } + +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; } + +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; } + +.mx-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; } + +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; } + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; } + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } + +.mt-0 { + margin-top: 0 !important; } + +.mt-1 { + margin-top: 0.25rem !important; } + +.mt-2 { + margin-top: 0.5rem !important; } + +.mt-3 { + margin-top: 1rem !important; } + +.mt-4 { + margin-top: 1.5rem !important; } + +.mt-5 { + margin-top: 3rem !important; } + +.mt-auto { + margin-top: auto !important; } + +.me-0 { + margin-right: 0 !important; } + +.me-1 { + margin-right: 0.25rem !important; } + +.me-2 { + margin-right: 0.5rem !important; } + +.me-3 { + margin-right: 1rem !important; } + +.me-4 { + margin-right: 1.5rem !important; } + +.me-5 { + margin-right: 3rem !important; } + +.me-auto { + margin-right: auto !important; } + +.mb-0 { + margin-bottom: 0 !important; } + +.mb-1 { + margin-bottom: 0.25rem !important; } + +.mb-2 { + margin-bottom: 0.5rem !important; } + +.mb-3 { + margin-bottom: 1rem !important; } + +.mb-4 { + margin-bottom: 1.5rem !important; } + +.mb-5 { + margin-bottom: 3rem !important; } + +.mb-auto { + margin-bottom: auto !important; } + +.ms-0 { + margin-left: 0 !important; } + +.ms-1 { + margin-left: 0.25rem !important; } + +.ms-2 { + margin-left: 0.5rem !important; } + +.ms-3 { + margin-left: 1rem !important; } + +.ms-4 { + margin-left: 1.5rem !important; } + +.ms-5 { + margin-left: 3rem !important; } + +.ms-auto { + margin-left: auto !important; } + +.p-0 { + padding: 0 !important; } + +.p-1 { + padding: 0.25rem !important; } + +.p-2 { + padding: 0.5rem !important; } + +.p-3 { + padding: 1rem !important; } + +.p-4 { + padding: 1.5rem !important; } + +.p-5 { + padding: 3rem !important; } + +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; } + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; } + +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; } + +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; } + +.px-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; } + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; } + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } + +.pt-0 { + padding-top: 0 !important; } + +.pt-1 { + padding-top: 0.25rem !important; } + +.pt-2 { + padding-top: 0.5rem !important; } + +.pt-3 { + padding-top: 1rem !important; } + +.pt-4 { + padding-top: 1.5rem !important; } + +.pt-5 { + padding-top: 3rem !important; } + +.pe-0 { + padding-right: 0 !important; } + +.pe-1 { + padding-right: 0.25rem !important; } + +.pe-2 { + padding-right: 0.5rem !important; } + +.pe-3 { + padding-right: 1rem !important; } + +.pe-4 { + padding-right: 1.5rem !important; } + +.pe-5 { + padding-right: 3rem !important; } + +.pb-0 { + padding-bottom: 0 !important; } + +.pb-1 { + padding-bottom: 0.25rem !important; } + +.pb-2 { + padding-bottom: 0.5rem !important; } + +.pb-3 { + padding-bottom: 1rem !important; } + +.pb-4 { + padding-bottom: 1.5rem !important; } + +.pb-5 { + padding-bottom: 3rem !important; } + +.ps-0 { + padding-left: 0 !important; } + +.ps-1 { + padding-left: 0.25rem !important; } + +.ps-2 { + padding-left: 0.5rem !important; } + +.ps-3 { + padding-left: 1rem !important; } + +.ps-4 { + padding-left: 1.5rem !important; } + +.ps-5 { + padding-left: 3rem !important; } + +.fs-1 { + font-size: calc(1.35rem + 1.2vw) !important; } + +.fs-2 { + font-size: calc(1.3125rem + 0.75vw) !important; } + +.fs-3 { + font-size: calc(1.275rem + 0.3vw) !important; } + +.fs-4 { + font-size: 1.125rem !important; } + +.fs-5 { + font-size: 1rem !important; } + +.fs-6 { + font-size: 0.938rem !important; } + +.fst-italic { + font-style: italic !important; } + +.fst-normal { + font-style: normal !important; } + +.fw-light { + font-weight: 300 !important; } + +.fw-lighter { + font-weight: lighter !important; } + +.fw-normal { + font-weight: 400 !important; } + +.fw-bold { + font-weight: 700 !important; } + +.fw-bolder { + font-weight: bolder !important; } + +.text-lowercase { + text-transform: lowercase !important; } + +.text-uppercase { + text-transform: uppercase !important; } + +.text-capitalize { + text-transform: capitalize !important; } + +.text-start { + text-align: left !important; } + +.text-end { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +.text-primary { + color: #F93A0B !important; } + +.text-secondary { + color: #145650 !important; } + +.text-success { + color: #68e365 !important; } + +.text-info { + color: #D653C1 !important; } + +.text-warning { + color: #ffa755 !important; } + +.text-danger { + color: #f72b50 !important; } + +.text-light { + color: #c8c8c8 !important; } + +.text-dark { + color: #6e6e6e !important; } + +.text-white { + color: #fff !important; } + +.text-body { + color: #393939 !important; } + +.text-muted { + color: #89879f !important; } + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; } + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; } + +.text-reset { + color: inherit !important; } + +.lh-1 { + line-height: 1 !important; } + +.lh-sm { + line-height: 1.25 !important; } + +.lh-base { + line-height: 1.5 !important; } + +.lh-lg { + line-height: 2 !important; } + +.bg-primary { + background-color: #F93A0B !important; } + +.bg-secondary { + background-color: #145650 !important; } + +.bg-success { + background-color: #68e365 !important; } + +.bg-info { + background-color: #D653C1 !important; } + +.bg-warning { + background-color: #ffa755 !important; } + +.bg-danger { + background-color: #f72b50 !important; } + +.bg-light { + background-color: #c8c8c8 !important; } + +.bg-dark { + background-color: #6e6e6e !important; } + +.bg-body { + background-color: #F8F8F8 !important; } + +.bg-white { + background-color: #fff !important; } + +.bg-transparent { + background-color: transparent !important; } + +.bg-gradient { + background-image: var(--bs-gradient) !important; } + +.text-wrap { + white-space: normal !important; } + +.text-nowrap { + white-space: nowrap !important; } + +.text-decoration-none { + text-decoration: none !important; } + +.text-decoration-underline { + text-decoration: underline !important; } + +.text-decoration-line-through { + text-decoration: line-through !important; } + +/* rtl:begin:remove */ +.text-break { + word-wrap: break-word !important; + word-break: break-word !important; } + +/* rtl:end:remove */ +.font-monospace { + font-family: var(--bs-font-monospace) !important; } + +.user-select-all { + user-select: all !important; } + +.user-select-auto { + user-select: auto !important; } + +.user-select-none { + user-select: none !important; } + +.pe-none { + pointer-events: none !important; } + +.pe-auto { + pointer-events: auto !important; } + +.rounded { + border-radius: 0.75rem !important; } + +.rounded-0 { + border-radius: 0 !important; } + +.rounded-1 { + border-radius: 0.2rem !important; } + +.rounded-2 { + border-radius: 0.75rem !important; } + +.rounded-3 { + border-radius: 0.3rem !important; } + +.rounded-circle { + border-radius: 50% !important; } + +.rounded-pill { + border-radius: 50rem !important; } + +.rounded-top { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; } + +.rounded-end { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; } + +.rounded-bottom { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } + +.rounded-start { + border-bottom-left-radius: 0.75rem !important; + border-top-left-radius: 0.75rem !important; } + +.visible { + visibility: visible !important; } + +.invisible { + visibility: hidden !important; } + +@media (min-width: 576px) { + .float-sm-start { + float: left !important; } + + .float-sm-end { + float: right !important; } + + .float-sm-none { + float: none !important; } + + .d-sm-inline { + display: inline !important; } + + .d-sm-inline-block { + display: inline-block !important; } + + .d-sm-block { + display: block !important; } + + .d-sm-grid { + display: grid !important; } + + .d-sm-table { + display: table !important; } + + .d-sm-table-row { + display: table-row !important; } + + .d-sm-table-cell { + display: table-cell !important; } + + .d-sm-flex { + display: flex !important; } + + .d-sm-inline-flex { + display: inline-flex !important; } + + .d-sm-none { + display: none !important; } + + .flex-sm-fill { + flex: 1 1 auto !important; } + + .flex-sm-row { + flex-direction: row !important; } + + .flex-sm-column { + flex-direction: column !important; } + + .flex-sm-row-reverse { + flex-direction: row-reverse !important; } + + .flex-sm-column-reverse { + flex-direction: column-reverse !important; } + + .flex-sm-grow-0 { + flex-grow: 0 !important; } + + .flex-sm-grow-1 { + flex-grow: 1 !important; } + + .flex-sm-shrink-0 { + flex-shrink: 0 !important; } + + .flex-sm-shrink-1 { + flex-shrink: 1 !important; } + + .flex-sm-wrap { + flex-wrap: wrap !important; } + + .flex-sm-nowrap { + flex-wrap: nowrap !important; } + + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; } + + .gap-sm-0 { + gap: 0 !important; } + + .gap-sm-1 { + gap: 0.25rem !important; } + + .gap-sm-2 { + gap: 0.5rem !important; } + + .gap-sm-3 { + gap: 1rem !important; } + + .gap-sm-4 { + gap: 1.5rem !important; } + + .gap-sm-5 { + gap: 3rem !important; } + + .justify-content-sm-start { + justify-content: flex-start !important; } + + .justify-content-sm-end { + justify-content: flex-end !important; } + + .justify-content-sm-center { + justify-content: center !important; } + + .justify-content-sm-between { + justify-content: space-between !important; } + + .justify-content-sm-around { + justify-content: space-around !important; } + + .justify-content-sm-evenly { + justify-content: space-evenly !important; } + + .align-items-sm-start { + align-items: flex-start !important; } + + .align-items-sm-end { + align-items: flex-end !important; } + + .align-items-sm-center { + align-items: center !important; } + + .align-items-sm-baseline { + align-items: baseline !important; } + + .align-items-sm-stretch { + align-items: stretch !important; } + + .align-content-sm-start { + align-content: flex-start !important; } + + .align-content-sm-end { + align-content: flex-end !important; } + + .align-content-sm-center { + align-content: center !important; } + + .align-content-sm-between { + align-content: space-between !important; } + + .align-content-sm-around { + align-content: space-around !important; } + + .align-content-sm-stretch { + align-content: stretch !important; } + + .align-self-sm-auto { + align-self: auto !important; } + + .align-self-sm-start { + align-self: flex-start !important; } + + .align-self-sm-end { + align-self: flex-end !important; } + + .align-self-sm-center { + align-self: center !important; } + + .align-self-sm-baseline { + align-self: baseline !important; } + + .align-self-sm-stretch { + align-self: stretch !important; } + + .order-sm-first { + order: -1 !important; } + + .order-sm-0 { + order: 0 !important; } + + .order-sm-1 { + order: 1 !important; } + + .order-sm-2 { + order: 2 !important; } + + .order-sm-3 { + order: 3 !important; } + + .order-sm-4 { + order: 4 !important; } + + .order-sm-5 { + order: 5 !important; } + + .order-sm-last { + order: 6 !important; } + + .m-sm-0 { + margin: 0 !important; } + + .m-sm-1 { + margin: 0.25rem !important; } + + .m-sm-2 { + margin: 0.5rem !important; } + + .m-sm-3 { + margin: 1rem !important; } + + .m-sm-4 { + margin: 1.5rem !important; } + + .m-sm-5 { + margin: 3rem !important; } + + .m-sm-auto { + margin: auto !important; } + + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } + + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } + + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; } + + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; } + + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; } + + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; } + + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; } + + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } + + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } + + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } + + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } + + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } + + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; } + + .mt-sm-0 { + margin-top: 0 !important; } + + .mt-sm-1 { + margin-top: 0.25rem !important; } + + .mt-sm-2 { + margin-top: 0.5rem !important; } + + .mt-sm-3 { + margin-top: 1rem !important; } + + .mt-sm-4 { + margin-top: 1.5rem !important; } + + .mt-sm-5 { + margin-top: 3rem !important; } + + .mt-sm-auto { + margin-top: auto !important; } + + .me-sm-0 { + margin-right: 0 !important; } + + .me-sm-1 { + margin-right: 0.25rem !important; } + + .me-sm-2 { + margin-right: 0.5rem !important; } + + .me-sm-3 { + margin-right: 1rem !important; } + + .me-sm-4 { + margin-right: 1.5rem !important; } + + .me-sm-5 { + margin-right: 3rem !important; } + + .me-sm-auto { + margin-right: auto !important; } + + .mb-sm-0 { + margin-bottom: 0 !important; } + + .mb-sm-1 { + margin-bottom: 0.25rem !important; } + + .mb-sm-2 { + margin-bottom: 0.5rem !important; } + + .mb-sm-3 { + margin-bottom: 1rem !important; } + + .mb-sm-4 { + margin-bottom: 1.5rem !important; } + + .mb-sm-5 { + margin-bottom: 3rem !important; } + + .mb-sm-auto { + margin-bottom: auto !important; } + + .ms-sm-0 { + margin-left: 0 !important; } + + .ms-sm-1 { + margin-left: 0.25rem !important; } + + .ms-sm-2 { + margin-left: 0.5rem !important; } + + .ms-sm-3 { + margin-left: 1rem !important; } + + .ms-sm-4 { + margin-left: 1.5rem !important; } + + .ms-sm-5 { + margin-left: 3rem !important; } + + .ms-sm-auto { + margin-left: auto !important; } + + .p-sm-0 { + padding: 0 !important; } + + .p-sm-1 { + padding: 0.25rem !important; } + + .p-sm-2 { + padding: 0.5rem !important; } + + .p-sm-3 { + padding: 1rem !important; } + + .p-sm-4 { + padding: 1.5rem !important; } + + .p-sm-5 { + padding: 3rem !important; } + + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; } + + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; } + + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; } + + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; } + + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; } + + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; } + + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } + + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } + + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } + + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } + + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } + + .pt-sm-0 { + padding-top: 0 !important; } + + .pt-sm-1 { + padding-top: 0.25rem !important; } + + .pt-sm-2 { + padding-top: 0.5rem !important; } + + .pt-sm-3 { + padding-top: 1rem !important; } + + .pt-sm-4 { + padding-top: 1.5rem !important; } + + .pt-sm-5 { + padding-top: 3rem !important; } + + .pe-sm-0 { + padding-right: 0 !important; } + + .pe-sm-1 { + padding-right: 0.25rem !important; } + + .pe-sm-2 { + padding-right: 0.5rem !important; } + + .pe-sm-3 { + padding-right: 1rem !important; } + + .pe-sm-4 { + padding-right: 1.5rem !important; } + + .pe-sm-5 { + padding-right: 3rem !important; } + + .pb-sm-0 { + padding-bottom: 0 !important; } + + .pb-sm-1 { + padding-bottom: 0.25rem !important; } + + .pb-sm-2 { + padding-bottom: 0.5rem !important; } + + .pb-sm-3 { + padding-bottom: 1rem !important; } + + .pb-sm-4 { + padding-bottom: 1.5rem !important; } + + .pb-sm-5 { + padding-bottom: 3rem !important; } + + .ps-sm-0 { + padding-left: 0 !important; } + + .ps-sm-1 { + padding-left: 0.25rem !important; } + + .ps-sm-2 { + padding-left: 0.5rem !important; } + + .ps-sm-3 { + padding-left: 1rem !important; } + + .ps-sm-4 { + padding-left: 1.5rem !important; } + + .ps-sm-5 { + padding-left: 3rem !important; } + + .text-sm-start { + text-align: left !important; } + + .text-sm-end { + text-align: right !important; } + + .text-sm-center { + text-align: center !important; } } +@media (min-width: 768px) { + .float-md-start { + float: left !important; } + + .float-md-end { + float: right !important; } + + .float-md-none { + float: none !important; } + + .d-md-inline { + display: inline !important; } + + .d-md-inline-block { + display: inline-block !important; } + + .d-md-block { + display: block !important; } + + .d-md-grid { + display: grid !important; } + + .d-md-table { + display: table !important; } + + .d-md-table-row { + display: table-row !important; } + + .d-md-table-cell { + display: table-cell !important; } + + .d-md-flex { + display: flex !important; } + + .d-md-inline-flex { + display: inline-flex !important; } + + .d-md-none { + display: none !important; } + + .flex-md-fill { + flex: 1 1 auto !important; } + + .flex-md-row { + flex-direction: row !important; } + + .flex-md-column { + flex-direction: column !important; } + + .flex-md-row-reverse { + flex-direction: row-reverse !important; } + + .flex-md-column-reverse { + flex-direction: column-reverse !important; } + + .flex-md-grow-0 { + flex-grow: 0 !important; } + + .flex-md-grow-1 { + flex-grow: 1 !important; } + + .flex-md-shrink-0 { + flex-shrink: 0 !important; } + + .flex-md-shrink-1 { + flex-shrink: 1 !important; } + + .flex-md-wrap { + flex-wrap: wrap !important; } + + .flex-md-nowrap { + flex-wrap: nowrap !important; } + + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; } + + .gap-md-0 { + gap: 0 !important; } + + .gap-md-1 { + gap: 0.25rem !important; } + + .gap-md-2 { + gap: 0.5rem !important; } + + .gap-md-3 { + gap: 1rem !important; } + + .gap-md-4 { + gap: 1.5rem !important; } + + .gap-md-5 { + gap: 3rem !important; } + + .justify-content-md-start { + justify-content: flex-start !important; } + + .justify-content-md-end { + justify-content: flex-end !important; } + + .justify-content-md-center { + justify-content: center !important; } + + .justify-content-md-between { + justify-content: space-between !important; } + + .justify-content-md-around { + justify-content: space-around !important; } + + .justify-content-md-evenly { + justify-content: space-evenly !important; } + + .align-items-md-start { + align-items: flex-start !important; } + + .align-items-md-end { + align-items: flex-end !important; } + + .align-items-md-center { + align-items: center !important; } + + .align-items-md-baseline { + align-items: baseline !important; } + + .align-items-md-stretch { + align-items: stretch !important; } + + .align-content-md-start { + align-content: flex-start !important; } + + .align-content-md-end { + align-content: flex-end !important; } + + .align-content-md-center { + align-content: center !important; } + + .align-content-md-between { + align-content: space-between !important; } + + .align-content-md-around { + align-content: space-around !important; } + + .align-content-md-stretch { + align-content: stretch !important; } + + .align-self-md-auto { + align-self: auto !important; } + + .align-self-md-start { + align-self: flex-start !important; } + + .align-self-md-end { + align-self: flex-end !important; } + + .align-self-md-center { + align-self: center !important; } + + .align-self-md-baseline { + align-self: baseline !important; } + + .align-self-md-stretch { + align-self: stretch !important; } + + .order-md-first { + order: -1 !important; } + + .order-md-0 { + order: 0 !important; } + + .order-md-1 { + order: 1 !important; } + + .order-md-2 { + order: 2 !important; } + + .order-md-3 { + order: 3 !important; } + + .order-md-4 { + order: 4 !important; } + + .order-md-5 { + order: 5 !important; } + + .order-md-last { + order: 6 !important; } + + .m-md-0 { + margin: 0 !important; } + + .m-md-1 { + margin: 0.25rem !important; } + + .m-md-2 { + margin: 0.5rem !important; } + + .m-md-3 { + margin: 1rem !important; } + + .m-md-4 { + margin: 1.5rem !important; } + + .m-md-5 { + margin: 3rem !important; } + + .m-md-auto { + margin: auto !important; } + + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } + + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } + + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; } + + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; } + + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; } + + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; } + + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; } + + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } + + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } + + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } + + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } + + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } + + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; } + + .mt-md-0 { + margin-top: 0 !important; } + + .mt-md-1 { + margin-top: 0.25rem !important; } + + .mt-md-2 { + margin-top: 0.5rem !important; } + + .mt-md-3 { + margin-top: 1rem !important; } + + .mt-md-4 { + margin-top: 1.5rem !important; } + + .mt-md-5 { + margin-top: 3rem !important; } + + .mt-md-auto { + margin-top: auto !important; } + + .me-md-0 { + margin-right: 0 !important; } + + .me-md-1 { + margin-right: 0.25rem !important; } + + .me-md-2 { + margin-right: 0.5rem !important; } + + .me-md-3 { + margin-right: 1rem !important; } + + .me-md-4 { + margin-right: 1.5rem !important; } + + .me-md-5 { + margin-right: 3rem !important; } + + .me-md-auto { + margin-right: auto !important; } + + .mb-md-0 { + margin-bottom: 0 !important; } + + .mb-md-1 { + margin-bottom: 0.25rem !important; } + + .mb-md-2 { + margin-bottom: 0.5rem !important; } + + .mb-md-3 { + margin-bottom: 1rem !important; } + + .mb-md-4 { + margin-bottom: 1.5rem !important; } + + .mb-md-5 { + margin-bottom: 3rem !important; } + + .mb-md-auto { + margin-bottom: auto !important; } + + .ms-md-0 { + margin-left: 0 !important; } + + .ms-md-1 { + margin-left: 0.25rem !important; } + + .ms-md-2 { + margin-left: 0.5rem !important; } + + .ms-md-3 { + margin-left: 1rem !important; } + + .ms-md-4 { + margin-left: 1.5rem !important; } + + .ms-md-5 { + margin-left: 3rem !important; } + + .ms-md-auto { + margin-left: auto !important; } + + .p-md-0 { + padding: 0 !important; } + + .p-md-1 { + padding: 0.25rem !important; } + + .p-md-2 { + padding: 0.5rem !important; } + + .p-md-3 { + padding: 1rem !important; } + + .p-md-4 { + padding: 1.5rem !important; } + + .p-md-5 { + padding: 3rem !important; } + + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; } + + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; } + + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; } + + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; } + + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; } + + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; } + + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } + + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } + + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } + + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } + + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } + + .pt-md-0 { + padding-top: 0 !important; } + + .pt-md-1 { + padding-top: 0.25rem !important; } + + .pt-md-2 { + padding-top: 0.5rem !important; } + + .pt-md-3 { + padding-top: 1rem !important; } + + .pt-md-4 { + padding-top: 1.5rem !important; } + + .pt-md-5 { + padding-top: 3rem !important; } + + .pe-md-0 { + padding-right: 0 !important; } + + .pe-md-1 { + padding-right: 0.25rem !important; } + + .pe-md-2 { + padding-right: 0.5rem !important; } + + .pe-md-3 { + padding-right: 1rem !important; } + + .pe-md-4 { + padding-right: 1.5rem !important; } + + .pe-md-5 { + padding-right: 3rem !important; } + + .pb-md-0 { + padding-bottom: 0 !important; } + + .pb-md-1 { + padding-bottom: 0.25rem !important; } + + .pb-md-2 { + padding-bottom: 0.5rem !important; } + + .pb-md-3 { + padding-bottom: 1rem !important; } + + .pb-md-4 { + padding-bottom: 1.5rem !important; } + + .pb-md-5 { + padding-bottom: 3rem !important; } + + .ps-md-0 { + padding-left: 0 !important; } + + .ps-md-1 { + padding-left: 0.25rem !important; } + + .ps-md-2 { + padding-left: 0.5rem !important; } + + .ps-md-3 { + padding-left: 1rem !important; } + + .ps-md-4 { + padding-left: 1.5rem !important; } + + .ps-md-5 { + padding-left: 3rem !important; } + + .text-md-start { + text-align: left !important; } + + .text-md-end { + text-align: right !important; } + + .text-md-center { + text-align: center !important; } } +@media (min-width: 992px) { + .float-lg-start { + float: left !important; } + + .float-lg-end { + float: right !important; } + + .float-lg-none { + float: none !important; } + + .d-lg-inline { + display: inline !important; } + + .d-lg-inline-block { + display: inline-block !important; } + + .d-lg-block { + display: block !important; } + + .d-lg-grid { + display: grid !important; } + + .d-lg-table { + display: table !important; } + + .d-lg-table-row { + display: table-row !important; } + + .d-lg-table-cell { + display: table-cell !important; } + + .d-lg-flex { + display: flex !important; } + + .d-lg-inline-flex { + display: inline-flex !important; } + + .d-lg-none { + display: none !important; } + + .flex-lg-fill { + flex: 1 1 auto !important; } + + .flex-lg-row { + flex-direction: row !important; } + + .flex-lg-column { + flex-direction: column !important; } + + .flex-lg-row-reverse { + flex-direction: row-reverse !important; } + + .flex-lg-column-reverse { + flex-direction: column-reverse !important; } + + .flex-lg-grow-0 { + flex-grow: 0 !important; } + + .flex-lg-grow-1 { + flex-grow: 1 !important; } + + .flex-lg-shrink-0 { + flex-shrink: 0 !important; } + + .flex-lg-shrink-1 { + flex-shrink: 1 !important; } + + .flex-lg-wrap { + flex-wrap: wrap !important; } + + .flex-lg-nowrap { + flex-wrap: nowrap !important; } + + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; } + + .gap-lg-0 { + gap: 0 !important; } + + .gap-lg-1 { + gap: 0.25rem !important; } + + .gap-lg-2 { + gap: 0.5rem !important; } + + .gap-lg-3 { + gap: 1rem !important; } + + .gap-lg-4 { + gap: 1.5rem !important; } + + .gap-lg-5 { + gap: 3rem !important; } + + .justify-content-lg-start { + justify-content: flex-start !important; } + + .justify-content-lg-end { + justify-content: flex-end !important; } + + .justify-content-lg-center { + justify-content: center !important; } + + .justify-content-lg-between { + justify-content: space-between !important; } + + .justify-content-lg-around { + justify-content: space-around !important; } + + .justify-content-lg-evenly { + justify-content: space-evenly !important; } + + .align-items-lg-start { + align-items: flex-start !important; } + + .align-items-lg-end { + align-items: flex-end !important; } + + .align-items-lg-center { + align-items: center !important; } + + .align-items-lg-baseline { + align-items: baseline !important; } + + .align-items-lg-stretch { + align-items: stretch !important; } + + .align-content-lg-start { + align-content: flex-start !important; } + + .align-content-lg-end { + align-content: flex-end !important; } + + .align-content-lg-center { + align-content: center !important; } + + .align-content-lg-between { + align-content: space-between !important; } + + .align-content-lg-around { + align-content: space-around !important; } + + .align-content-lg-stretch { + align-content: stretch !important; } + + .align-self-lg-auto { + align-self: auto !important; } + + .align-self-lg-start { + align-self: flex-start !important; } + + .align-self-lg-end { + align-self: flex-end !important; } + + .align-self-lg-center { + align-self: center !important; } + + .align-self-lg-baseline { + align-self: baseline !important; } + + .align-self-lg-stretch { + align-self: stretch !important; } + + .order-lg-first { + order: -1 !important; } + + .order-lg-0 { + order: 0 !important; } + + .order-lg-1 { + order: 1 !important; } + + .order-lg-2 { + order: 2 !important; } + + .order-lg-3 { + order: 3 !important; } + + .order-lg-4 { + order: 4 !important; } + + .order-lg-5 { + order: 5 !important; } + + .order-lg-last { + order: 6 !important; } + + .m-lg-0 { + margin: 0 !important; } + + .m-lg-1 { + margin: 0.25rem !important; } + + .m-lg-2 { + margin: 0.5rem !important; } + + .m-lg-3 { + margin: 1rem !important; } + + .m-lg-4 { + margin: 1.5rem !important; } + + .m-lg-5 { + margin: 3rem !important; } + + .m-lg-auto { + margin: auto !important; } + + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } + + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } + + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; } + + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; } + + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; } + + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; } + + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; } + + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } + + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } + + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } + + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } + + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } + + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; } + + .mt-lg-0 { + margin-top: 0 !important; } + + .mt-lg-1 { + margin-top: 0.25rem !important; } + + .mt-lg-2 { + margin-top: 0.5rem !important; } + + .mt-lg-3 { + margin-top: 1rem !important; } + + .mt-lg-4 { + margin-top: 1.5rem !important; } + + .mt-lg-5 { + margin-top: 3rem !important; } + + .mt-lg-auto { + margin-top: auto !important; } + + .me-lg-0 { + margin-right: 0 !important; } + + .me-lg-1 { + margin-right: 0.25rem !important; } + + .me-lg-2 { + margin-right: 0.5rem !important; } + + .me-lg-3 { + margin-right: 1rem !important; } + + .me-lg-4 { + margin-right: 1.5rem !important; } + + .me-lg-5 { + margin-right: 3rem !important; } + + .me-lg-auto { + margin-right: auto !important; } + + .mb-lg-0 { + margin-bottom: 0 !important; } + + .mb-lg-1 { + margin-bottom: 0.25rem !important; } + + .mb-lg-2 { + margin-bottom: 0.5rem !important; } + + .mb-lg-3 { + margin-bottom: 1rem !important; } + + .mb-lg-4 { + margin-bottom: 1.5rem !important; } + + .mb-lg-5 { + margin-bottom: 3rem !important; } + + .mb-lg-auto { + margin-bottom: auto !important; } + + .ms-lg-0 { + margin-left: 0 !important; } + + .ms-lg-1 { + margin-left: 0.25rem !important; } + + .ms-lg-2 { + margin-left: 0.5rem !important; } + + .ms-lg-3 { + margin-left: 1rem !important; } + + .ms-lg-4 { + margin-left: 1.5rem !important; } + + .ms-lg-5 { + margin-left: 3rem !important; } + + .ms-lg-auto { + margin-left: auto !important; } + + .p-lg-0 { + padding: 0 !important; } + + .p-lg-1 { + padding: 0.25rem !important; } + + .p-lg-2 { + padding: 0.5rem !important; } + + .p-lg-3 { + padding: 1rem !important; } + + .p-lg-4 { + padding: 1.5rem !important; } + + .p-lg-5 { + padding: 3rem !important; } + + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; } + + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; } + + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; } + + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; } + + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; } + + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; } + + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } + + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } + + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } + + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } + + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } + + .pt-lg-0 { + padding-top: 0 !important; } + + .pt-lg-1 { + padding-top: 0.25rem !important; } + + .pt-lg-2 { + padding-top: 0.5rem !important; } + + .pt-lg-3 { + padding-top: 1rem !important; } + + .pt-lg-4 { + padding-top: 1.5rem !important; } + + .pt-lg-5 { + padding-top: 3rem !important; } + + .pe-lg-0 { + padding-right: 0 !important; } + + .pe-lg-1 { + padding-right: 0.25rem !important; } + + .pe-lg-2 { + padding-right: 0.5rem !important; } + + .pe-lg-3 { + padding-right: 1rem !important; } + + .pe-lg-4 { + padding-right: 1.5rem !important; } + + .pe-lg-5 { + padding-right: 3rem !important; } + + .pb-lg-0 { + padding-bottom: 0 !important; } + + .pb-lg-1 { + padding-bottom: 0.25rem !important; } + + .pb-lg-2 { + padding-bottom: 0.5rem !important; } + + .pb-lg-3 { + padding-bottom: 1rem !important; } + + .pb-lg-4 { + padding-bottom: 1.5rem !important; } + + .pb-lg-5 { + padding-bottom: 3rem !important; } + + .ps-lg-0 { + padding-left: 0 !important; } + + .ps-lg-1 { + padding-left: 0.25rem !important; } + + .ps-lg-2 { + padding-left: 0.5rem !important; } + + .ps-lg-3 { + padding-left: 1rem !important; } + + .ps-lg-4 { + padding-left: 1.5rem !important; } + + .ps-lg-5 { + padding-left: 3rem !important; } + + .text-lg-start { + text-align: left !important; } + + .text-lg-end { + text-align: right !important; } + + .text-lg-center { + text-align: center !important; } } +@media (min-width: 1200px) { + .float-xl-start { + float: left !important; } + + .float-xl-end { + float: right !important; } + + .float-xl-none { + float: none !important; } + + .d-xl-inline { + display: inline !important; } + + .d-xl-inline-block { + display: inline-block !important; } + + .d-xl-block { + display: block !important; } + + .d-xl-grid { + display: grid !important; } + + .d-xl-table { + display: table !important; } + + .d-xl-table-row { + display: table-row !important; } + + .d-xl-table-cell { + display: table-cell !important; } + + .d-xl-flex { + display: flex !important; } + + .d-xl-inline-flex { + display: inline-flex !important; } + + .d-xl-none { + display: none !important; } + + .flex-xl-fill { + flex: 1 1 auto !important; } + + .flex-xl-row { + flex-direction: row !important; } + + .flex-xl-column { + flex-direction: column !important; } + + .flex-xl-row-reverse { + flex-direction: row-reverse !important; } + + .flex-xl-column-reverse { + flex-direction: column-reverse !important; } + + .flex-xl-grow-0 { + flex-grow: 0 !important; } + + .flex-xl-grow-1 { + flex-grow: 1 !important; } + + .flex-xl-shrink-0 { + flex-shrink: 0 !important; } + + .flex-xl-shrink-1 { + flex-shrink: 1 !important; } + + .flex-xl-wrap { + flex-wrap: wrap !important; } + + .flex-xl-nowrap { + flex-wrap: nowrap !important; } + + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; } + + .gap-xl-0 { + gap: 0 !important; } + + .gap-xl-1 { + gap: 0.25rem !important; } + + .gap-xl-2 { + gap: 0.5rem !important; } + + .gap-xl-3 { + gap: 1rem !important; } + + .gap-xl-4 { + gap: 1.5rem !important; } + + .gap-xl-5 { + gap: 3rem !important; } + + .justify-content-xl-start { + justify-content: flex-start !important; } + + .justify-content-xl-end { + justify-content: flex-end !important; } + + .justify-content-xl-center { + justify-content: center !important; } + + .justify-content-xl-between { + justify-content: space-between !important; } + + .justify-content-xl-around { + justify-content: space-around !important; } + + .justify-content-xl-evenly { + justify-content: space-evenly !important; } + + .align-items-xl-start { + align-items: flex-start !important; } + + .align-items-xl-end { + align-items: flex-end !important; } + + .align-items-xl-center { + align-items: center !important; } + + .align-items-xl-baseline { + align-items: baseline !important; } + + .align-items-xl-stretch { + align-items: stretch !important; } + + .align-content-xl-start { + align-content: flex-start !important; } + + .align-content-xl-end { + align-content: flex-end !important; } + + .align-content-xl-center { + align-content: center !important; } + + .align-content-xl-between { + align-content: space-between !important; } + + .align-content-xl-around { + align-content: space-around !important; } + + .align-content-xl-stretch { + align-content: stretch !important; } + + .align-self-xl-auto { + align-self: auto !important; } + + .align-self-xl-start { + align-self: flex-start !important; } + + .align-self-xl-end { + align-self: flex-end !important; } + + .align-self-xl-center { + align-self: center !important; } + + .align-self-xl-baseline { + align-self: baseline !important; } + + .align-self-xl-stretch { + align-self: stretch !important; } + + .order-xl-first { + order: -1 !important; } + + .order-xl-0 { + order: 0 !important; } + + .order-xl-1 { + order: 1 !important; } + + .order-xl-2 { + order: 2 !important; } + + .order-xl-3 { + order: 3 !important; } + + .order-xl-4 { + order: 4 !important; } + + .order-xl-5 { + order: 5 !important; } + + .order-xl-last { + order: 6 !important; } + + .m-xl-0 { + margin: 0 !important; } + + .m-xl-1 { + margin: 0.25rem !important; } + + .m-xl-2 { + margin: 0.5rem !important; } + + .m-xl-3 { + margin: 1rem !important; } + + .m-xl-4 { + margin: 1.5rem !important; } + + .m-xl-5 { + margin: 3rem !important; } + + .m-xl-auto { + margin: auto !important; } + + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } + + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } + + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; } + + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; } + + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; } + + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; } + + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; } + + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } + + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } + + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } + + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } + + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } + + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; } + + .mt-xl-0 { + margin-top: 0 !important; } + + .mt-xl-1 { + margin-top: 0.25rem !important; } + + .mt-xl-2 { + margin-top: 0.5rem !important; } + + .mt-xl-3 { + margin-top: 1rem !important; } + + .mt-xl-4 { + margin-top: 1.5rem !important; } + + .mt-xl-5 { + margin-top: 3rem !important; } + + .mt-xl-auto { + margin-top: auto !important; } + + .me-xl-0 { + margin-right: 0 !important; } + + .me-xl-1 { + margin-right: 0.25rem !important; } + + .me-xl-2 { + margin-right: 0.5rem !important; } + + .me-xl-3 { + margin-right: 1rem !important; } + + .me-xl-4 { + margin-right: 1.5rem !important; } + + .me-xl-5 { + margin-right: 3rem !important; } + + .me-xl-auto { + margin-right: auto !important; } + + .mb-xl-0 { + margin-bottom: 0 !important; } + + .mb-xl-1 { + margin-bottom: 0.25rem !important; } + + .mb-xl-2 { + margin-bottom: 0.5rem !important; } + + .mb-xl-3 { + margin-bottom: 1rem !important; } + + .mb-xl-4 { + margin-bottom: 1.5rem !important; } + + .mb-xl-5 { + margin-bottom: 3rem !important; } + + .mb-xl-auto { + margin-bottom: auto !important; } + + .ms-xl-0 { + margin-left: 0 !important; } + + .ms-xl-1 { + margin-left: 0.25rem !important; } + + .ms-xl-2 { + margin-left: 0.5rem !important; } + + .ms-xl-3 { + margin-left: 1rem !important; } + + .ms-xl-4 { + margin-left: 1.5rem !important; } + + .ms-xl-5 { + margin-left: 3rem !important; } + + .ms-xl-auto { + margin-left: auto !important; } + + .p-xl-0 { + padding: 0 !important; } + + .p-xl-1 { + padding: 0.25rem !important; } + + .p-xl-2 { + padding: 0.5rem !important; } + + .p-xl-3 { + padding: 1rem !important; } + + .p-xl-4 { + padding: 1.5rem !important; } + + .p-xl-5 { + padding: 3rem !important; } + + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; } + + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; } + + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; } + + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; } + + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; } + + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; } + + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } + + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } + + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } + + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } + + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } + + .pt-xl-0 { + padding-top: 0 !important; } + + .pt-xl-1 { + padding-top: 0.25rem !important; } + + .pt-xl-2 { + padding-top: 0.5rem !important; } + + .pt-xl-3 { + padding-top: 1rem !important; } + + .pt-xl-4 { + padding-top: 1.5rem !important; } + + .pt-xl-5 { + padding-top: 3rem !important; } + + .pe-xl-0 { + padding-right: 0 !important; } + + .pe-xl-1 { + padding-right: 0.25rem !important; } + + .pe-xl-2 { + padding-right: 0.5rem !important; } + + .pe-xl-3 { + padding-right: 1rem !important; } + + .pe-xl-4 { + padding-right: 1.5rem !important; } + + .pe-xl-5 { + padding-right: 3rem !important; } + + .pb-xl-0 { + padding-bottom: 0 !important; } + + .pb-xl-1 { + padding-bottom: 0.25rem !important; } + + .pb-xl-2 { + padding-bottom: 0.5rem !important; } + + .pb-xl-3 { + padding-bottom: 1rem !important; } + + .pb-xl-4 { + padding-bottom: 1.5rem !important; } + + .pb-xl-5 { + padding-bottom: 3rem !important; } + + .ps-xl-0 { + padding-left: 0 !important; } + + .ps-xl-1 { + padding-left: 0.25rem !important; } + + .ps-xl-2 { + padding-left: 0.5rem !important; } + + .ps-xl-3 { + padding-left: 1rem !important; } + + .ps-xl-4 { + padding-left: 1.5rem !important; } + + .ps-xl-5 { + padding-left: 3rem !important; } + + .text-xl-start { + text-align: left !important; } + + .text-xl-end { + text-align: right !important; } + + .text-xl-center { + text-align: center !important; } } +@media (min-width: 1440) { + .float-xxl-start { + float: left !important; } + + .float-xxl-end { + float: right !important; } + + .float-xxl-none { + float: none !important; } + + .d-xxl-inline { + display: inline !important; } + + .d-xxl-inline-block { + display: inline-block !important; } + + .d-xxl-block { + display: block !important; } + + .d-xxl-grid { + display: grid !important; } + + .d-xxl-table { + display: table !important; } + + .d-xxl-table-row { + display: table-row !important; } + + .d-xxl-table-cell { + display: table-cell !important; } + + .d-xxl-flex { + display: flex !important; } + + .d-xxl-inline-flex { + display: inline-flex !important; } + + .d-xxl-none { + display: none !important; } + + .flex-xxl-fill { + flex: 1 1 auto !important; } + + .flex-xxl-row { + flex-direction: row !important; } + + .flex-xxl-column { + flex-direction: column !important; } + + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; } + + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; } + + .flex-xxl-grow-0 { + flex-grow: 0 !important; } + + .flex-xxl-grow-1 { + flex-grow: 1 !important; } + + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; } + + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; } + + .flex-xxl-wrap { + flex-wrap: wrap !important; } + + .flex-xxl-nowrap { + flex-wrap: nowrap !important; } + + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; } + + .gap-xxl-0 { + gap: 0 !important; } + + .gap-xxl-1 { + gap: 0.25rem !important; } + + .gap-xxl-2 { + gap: 0.5rem !important; } + + .gap-xxl-3 { + gap: 1rem !important; } + + .gap-xxl-4 { + gap: 1.5rem !important; } + + .gap-xxl-5 { + gap: 3rem !important; } + + .justify-content-xxl-start { + justify-content: flex-start !important; } + + .justify-content-xxl-end { + justify-content: flex-end !important; } + + .justify-content-xxl-center { + justify-content: center !important; } + + .justify-content-xxl-between { + justify-content: space-between !important; } + + .justify-content-xxl-around { + justify-content: space-around !important; } + + .justify-content-xxl-evenly { + justify-content: space-evenly !important; } + + .align-items-xxl-start { + align-items: flex-start !important; } + + .align-items-xxl-end { + align-items: flex-end !important; } + + .align-items-xxl-center { + align-items: center !important; } + + .align-items-xxl-baseline { + align-items: baseline !important; } + + .align-items-xxl-stretch { + align-items: stretch !important; } + + .align-content-xxl-start { + align-content: flex-start !important; } + + .align-content-xxl-end { + align-content: flex-end !important; } + + .align-content-xxl-center { + align-content: center !important; } + + .align-content-xxl-between { + align-content: space-between !important; } + + .align-content-xxl-around { + align-content: space-around !important; } + + .align-content-xxl-stretch { + align-content: stretch !important; } + + .align-self-xxl-auto { + align-self: auto !important; } + + .align-self-xxl-start { + align-self: flex-start !important; } + + .align-self-xxl-end { + align-self: flex-end !important; } + + .align-self-xxl-center { + align-self: center !important; } + + .align-self-xxl-baseline { + align-self: baseline !important; } + + .align-self-xxl-stretch { + align-self: stretch !important; } + + .order-xxl-first { + order: -1 !important; } + + .order-xxl-0 { + order: 0 !important; } + + .order-xxl-1 { + order: 1 !important; } + + .order-xxl-2 { + order: 2 !important; } + + .order-xxl-3 { + order: 3 !important; } + + .order-xxl-4 { + order: 4 !important; } + + .order-xxl-5 { + order: 5 !important; } + + .order-xxl-last { + order: 6 !important; } + + .m-xxl-0 { + margin: 0 !important; } + + .m-xxl-1 { + margin: 0.25rem !important; } + + .m-xxl-2 { + margin: 0.5rem !important; } + + .m-xxl-3 { + margin: 1rem !important; } + + .m-xxl-4 { + margin: 1.5rem !important; } + + .m-xxl-5 { + margin: 3rem !important; } + + .m-xxl-auto { + margin: auto !important; } + + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; } + + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; } + + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; } + + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; } + + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; } + + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; } + + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; } + + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } + + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } + + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } + + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } + + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } + + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; } + + .mt-xxl-0 { + margin-top: 0 !important; } + + .mt-xxl-1 { + margin-top: 0.25rem !important; } + + .mt-xxl-2 { + margin-top: 0.5rem !important; } + + .mt-xxl-3 { + margin-top: 1rem !important; } + + .mt-xxl-4 { + margin-top: 1.5rem !important; } + + .mt-xxl-5 { + margin-top: 3rem !important; } + + .mt-xxl-auto { + margin-top: auto !important; } + + .me-xxl-0 { + margin-right: 0 !important; } + + .me-xxl-1 { + margin-right: 0.25rem !important; } + + .me-xxl-2 { + margin-right: 0.5rem !important; } + + .me-xxl-3 { + margin-right: 1rem !important; } + + .me-xxl-4 { + margin-right: 1.5rem !important; } + + .me-xxl-5 { + margin-right: 3rem !important; } + + .me-xxl-auto { + margin-right: auto !important; } + + .mb-xxl-0 { + margin-bottom: 0 !important; } + + .mb-xxl-1 { + margin-bottom: 0.25rem !important; } + + .mb-xxl-2 { + margin-bottom: 0.5rem !important; } + + .mb-xxl-3 { + margin-bottom: 1rem !important; } + + .mb-xxl-4 { + margin-bottom: 1.5rem !important; } + + .mb-xxl-5 { + margin-bottom: 3rem !important; } + + .mb-xxl-auto { + margin-bottom: auto !important; } + + .ms-xxl-0 { + margin-left: 0 !important; } + + .ms-xxl-1 { + margin-left: 0.25rem !important; } + + .ms-xxl-2 { + margin-left: 0.5rem !important; } + + .ms-xxl-3 { + margin-left: 1rem !important; } + + .ms-xxl-4 { + margin-left: 1.5rem !important; } + + .ms-xxl-5 { + margin-left: 3rem !important; } + + .ms-xxl-auto { + margin-left: auto !important; } + + .p-xxl-0 { + padding: 0 !important; } + + .p-xxl-1 { + padding: 0.25rem !important; } + + .p-xxl-2 { + padding: 0.5rem !important; } + + .p-xxl-3 { + padding: 1rem !important; } + + .p-xxl-4 { + padding: 1.5rem !important; } + + .p-xxl-5 { + padding: 3rem !important; } + + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; } + + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; } + + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; } + + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; } + + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; } + + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; } + + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } + + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } + + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } + + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } + + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } + + .pt-xxl-0 { + padding-top: 0 !important; } + + .pt-xxl-1 { + padding-top: 0.25rem !important; } + + .pt-xxl-2 { + padding-top: 0.5rem !important; } + + .pt-xxl-3 { + padding-top: 1rem !important; } + + .pt-xxl-4 { + padding-top: 1.5rem !important; } + + .pt-xxl-5 { + padding-top: 3rem !important; } + + .pe-xxl-0 { + padding-right: 0 !important; } + + .pe-xxl-1 { + padding-right: 0.25rem !important; } + + .pe-xxl-2 { + padding-right: 0.5rem !important; } + + .pe-xxl-3 { + padding-right: 1rem !important; } + + .pe-xxl-4 { + padding-right: 1.5rem !important; } + + .pe-xxl-5 { + padding-right: 3rem !important; } + + .pb-xxl-0 { + padding-bottom: 0 !important; } + + .pb-xxl-1 { + padding-bottom: 0.25rem !important; } + + .pb-xxl-2 { + padding-bottom: 0.5rem !important; } + + .pb-xxl-3 { + padding-bottom: 1rem !important; } + + .pb-xxl-4 { + padding-bottom: 1.5rem !important; } + + .pb-xxl-5 { + padding-bottom: 3rem !important; } + + .ps-xxl-0 { + padding-left: 0 !important; } + + .ps-xxl-1 { + padding-left: 0.25rem !important; } + + .ps-xxl-2 { + padding-left: 0.5rem !important; } + + .ps-xxl-3 { + padding-left: 1rem !important; } + + .ps-xxl-4 { + padding-left: 1.5rem !important; } + + .ps-xxl-5 { + padding-left: 3rem !important; } + + .text-xxl-start { + text-align: left !important; } + + .text-xxl-end { + text-align: right !important; } + + .text-xxl-center { + text-align: center !important; } } +@media (min-width: 1200px) { + .fs-1 { + font-size: 2.25rem !important; } + + .fs-2 { + font-size: 1.875rem !important; } + + .fs-3 { + font-size: 1.5rem !important; } } +@media print { + .d-print-inline { + display: inline !important; } + + .d-print-inline-block { + display: inline-block !important; } + + .d-print-block { + display: block !important; } + + .d-print-grid { + display: grid !important; } + + .d-print-table { + display: table !important; } + + .d-print-table-row { + display: table-row !important; } + + .d-print-table-cell { + display: table-cell !important; } + + .d-print-flex { + display: flex !important; } + + .d-print-inline-flex { + display: inline-flex !important; } + + .d-print-none { + display: none !important; } } +.c-pointer { + cursor: pointer; } + +* { + outline: none; + padding: 0; } + *::after { + margin: 0; + padding: 0; } + *::before { + margin: 0; + padding: 0; } + +::selection { + color: #fff; + background: var(--primary); } + +@media only screen and (max-width: 100rem) { + :root { + font-size: 14px; } } +body { + overflow-x: hidden; + height: 100%; + position: relative; + max-width: 100%; + font-size: 0.875rem; } + @media only screen and (max-width: 61.9375rem) { + body { + font-size: 0.875rem; } } + +p { + line-height: 1.8; } + +.box-shadow-none { + box-shadow: none !important; } + +.media { + display: flex; + align-items: flex-start; } + +.media-body { + flex: 1; } + +#main-wrapper { + opacity: 0; + transition: all 0.25s ease-in; + overflow: hidden; + position: relative; } + #main-wrapper.show { + opacity: 1; } + +.rounded-lg { + border-radius: 1.25rem; } + +ul { + padding: 0; + margin: 0; } + +li { + list-style: none; } + +a { + color: #393939; + text-decoration: none; } + a:hover, a:focus, a.active { + text-decoration: none; } + +.btn-link:hover, .btn-link:focus, .btn-link.active { + text-decoration: none; } + +.bg-primary { + background-color: var(--primary) !important; } + +.text-primary { + color: var(--primary) !important; } + +.fs-12 { + font-size: 0.75rem !important; + line-height: 1.5; } + +.fs-13 { + font-size: 0.8125rem !important; + line-height: 1.5; } + +.fs-14 { + font-size: 0.875rem !important; + line-height: 1.6; } + +.fs-15 { + font-size: 0.875rem !important; + line-height: 1.5; } + +.fs-16 { + font-size: 1rem !important; + line-height: 1.6; } + @media only screen and (max-width: 35.9375rem) { + .fs-16 { + font-size: 0.875rem !important; } } + +.fs-18 { + font-size: 1.125rem !important; + line-height: 1.5; } + @media only screen and (max-width: 35.9375rem) { + .fs-18 { + font-size: 1rem !important; } } + +.fs-20 { + font-size: 1.25rem !important; + line-height: 1.5; } + +.fs-22 { + font-size: 1.375rem !important; + line-height: 1.5; } + +.fs-24 { + font-size: 1.5rem !important; + line-height: 1.4; } + +.fs-26 { + font-size: 1.625rem !important; + line-height: 1.4; } + +.fs-28 { + font-size: 1.75rem !important; + line-height: 1.4; } + @media only screen and (max-width: 35.9375rem) { + .fs-28 { + font-size: 1.5rem !important; } } + +.fs-30 { + font-size: 1.875rem !important; + line-height: 1.4; } + +.fs-32 { + font-size: 2rem !important; + line-height: 1.25; } + +.fs-34 { + font-size: 2.125rem !important; + line-height: 1.25; } + +.fs-35 { + font-size: 2.1875rem !important; + line-height: 1.25; } + +.fs-36 { + font-size: 2.25rem !important; + line-height: 1.25; } + +.fs-38 { + font-size: 2.375rem !important; + line-height: 1.25; } + +.fs-46 { + font-size: 2.875rem !important; + line-height: 1.25; } + +.fs-48 { + font-size: 3rem !important; + line-height: 1.25; } + +.font-w100 { + font-weight: 100; } + +.font-w200 { + font-weight: 200; } + +.font-w300 { + font-weight: 300; } + +.font-w400 { + font-weight: 400; } + +.font-w500 { + font-weight: 500; } + +.font-w600 { + font-weight: 600; } + +.font-w700 { + font-weight: 700; } + +.font-w800 { + font-weight: 800; } + +.font-w900 { + font-weight: 900; } + +h1, .h1, .h1, h2, .h2, .h2, h3, .h3, .h3, h4, .h4, .h4, h5, .h5, .h5, h6, .h6, .h6 { + line-height: 1.5; } + +.w-space-no { + white-space: nowrap; } + +.content-body .container { + margin-top: 2.5rem; } +.content-body .container-fluid, .content-body .container-sm, .content-body .container-md, .content-body .container-lg, .content-body .container-xl, .content-body .container-xxl { + padding-top: 2.5rem; + padding-right: 2.5rem; + padding-left: 2.5rem; } + @media only screen and (max-width: 75rem) { + .content-body .container-fluid, .content-body .container-sm, .content-body .container-md, .content-body .container-lg, .content-body .container-xl, .content-body .container-xxl { + padding-top: 1.875rem; + padding-right: 1.875rem; + padding-left: 1.875rem; } } + @media only screen and (max-width: 47.9375rem) { + .content-body .container-fluid, .content-body .container-sm, .content-body .container-md, .content-body .container-lg, .content-body .container-xl, .content-body .container-xxl { + padding-top: 1.25rem; + padding-right: 1.25rem; + padding-left: 1.25rem; } } + @media only screen and (max-width: 35.9375rem) { + .content-body .container-fluid, .content-body .container-sm, .content-body .container-md, .content-body .container-lg, .content-body .container-xl, .content-body .container-xxl { + padding-top: 0.9375rem; + padding-right: 0.9375rem; + padding-left: 0.9375rem; } } + +/*sp*/ +.row.sp4, +.sp4 { + margin-left: -0.125rem; + margin-right: -0.125rem; } + .row.sp4 [class*="col-"], + .sp4 [class*="col-"] { + padding-left: 0.125rem; + padding-right: 0.125rem; } + +.op1 { + opacity: 0.1; } + +.op2 { + opacity: 0.2; } + +.op3 { + opacity: 0.3; } + +.op4 { + opacity: 0.4; } + +.op5 { + opacity: 0.5; } + +.op6 { + opacity: 0.6; } + +.op7 { + opacity: 0.7; } + +.op8 { + opacity: 0.8; } + +.op9 { + opacity: 0.9; } + +.content-heading { + font-size: 1rem; + margin-bottom: 1.875rem; + margin-top: 3.125rem; + border-bottom: 0.0625rem solid #f5f5f5; + padding-bottom: 0.625rem; } + [direction="rtl"] .content-heading { + text-align: right; } + +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus { + box-shadow: none; } + +.vh-100 { + height: 100vh !important; } + +.support-ticket { + position: fixed; + bottom: 1.875rem; + right: 0.9375rem; + z-index: 999999; } + +.support-ticket-btn { + width: 6.25rem; + background: #7CB442; + animation: 0.7s ease-in-out 0s infinite alternate none running crescendo; + border-radius: 3.125rem; + color: #fff; + font-size: 0.5rem; + font-size: 1rem; + padding: 0.3125rem 0.625rem 0.4375rem; + text-align: center; + display: inline-block; + box-shadow: rgba(124, 180, 66, 0.7) 0rem 0.5rem 2.1875rem 0rem; } + .support-ticket-btn:hover, .support-ticket-btn:focus { + color: #fff; } + +.text-blue { + color: #5e72e4; } + +.text-indigo { + color: #6610f2; } + +.text-purple { + color: #6f42c1; } + +.text-pink { + color: #e83e8c; } + +.text-red { + color: #EE3232; } + +.text-orange { + color: #ff9900; } + +.text-yellow { + color: #FFFA6F; } + +.text-green { + color: #297F00; } + +.text-teal { + color: #20c997; } + +.text-cyan { + color: #3065D0; } + +/* .bg-gray-dark{ + background:$color_pallate_2 !important; +} +.bg-purpal{ + background:$color_pallate_4 !important; +} +.bg-red{ + background:$color_pallate_5 !important; +} +.bg-blue-dark{ + background:$color_pallate_6 !important; +} */ +.bg-blue { + background: #496ecc !important; } + +.bg-orange { + background: #ed8030 !important; } + +.bg-green { + background: #299e4a !important; } + +.bg-purpel { + background: #9517c1 !important; } + +.bg-dark-blue { + background: #251e71 !important; } + +/* .bg-blue-light{ + background:$color_pallate_8 !important; +} +.bg-green-light{ + background:$color_pallate_9 !important; +} +.bg-green{ + background:$color_pallate_10 !important; +} */ +.bg-black { + background: #000; } + +.text-black { + color: #000 !important; } + +.dlab-scroll { + position: relative; } + +.scale1 { + transform: scale(1.1); + -moz-transform: scale(1.1); + -webkit-transform: scale(1.1); + -ms-transform: scale(1.1); + -o-transform: scale(1.1); + display: inline-block; } + +.scale2 { + transform: scale(1.2); + -moz-transform: scale(1.2); + -webkit-transform: scale(1.2); + -ms-transform: scale(1.2); + -o-transform: scale(1.2); + display: inline-block; } + +.scale3 { + transform: scale(1.3); + -moz-transform: scale(1.3); + -webkit-transform: scale(1.3); + -ms-transform: scale(1.3); + -o-transform: scale(1.3); + display: inline-block; } + +.scale4 { + transform: scale(1.4); + -moz-transform: scale(1.4); + -webkit-transform: scale(1.4); + -ms-transform: scale(1.4); + -o-transform: scale(1.4); + display: inline-block; } + +.scale5 { + transform: scale(1.5); + -moz-transform: scale(1.5); + -webkit-transform: scale(1.5); + -ms-transform: scale(1.5); + -o-transform: scale(1.5); + display: inline-block; } + +.scale-2 { + transform: scale(2); + -moz-transform: scale(2); + -webkit-transform: scale(2); + -ms-transform: scale(2); + -o-transform: scale(2); + display: inline-block; } + +@-webkit-keyframes crescendo { + from { + -webkit-transform: translateY(5px) scale(0.8); + -ms-transform: translateY(5px) scale(0.8); + transform: translateY(5px) scale(0.8); } + to { + -webkit-transform: translateY(0px) scale(1); + -ms-transform: translateY(0px) scale(1); + transform: translateY(0px) scale(1); } } +.height10 { + height: 0.625rem; } + +.height20 { + height: 1.25rem; } + +.height30 { + height: 1.875rem; } + +.height40 { + height: 2.5rem; } + +.height50 { + height: 3.125rem; } + +.height60 { + height: 3.75rem; } + +.height70 { + height: 4.375rem; } + +.height80 { + height: 5rem; } + +.height90 { + height: 5.625rem; } + +.height100 { + height: 6.25rem; } + +.height110 { + height: 6.875rem; } + +.height120 { + height: 7.5rem; } + +.height130 { + height: 8.125rem; } + +.height140 { + height: 8.75rem; } + +.height150 { + height: 9.375rem; } + +.height160 { + height: 10rem; } + +.height170 { + height: 10.625rem; } + +.height180 { + height: 11.25rem; } + +.height190 { + height: 11.875rem; } + +.height200 { + height: 12.5rem; } + +.height210 { + height: 13.125rem; } + +.height220 { + height: 13.75rem; } + +.height230 { + height: 14.375rem; } + +.height240 { + height: 15rem; } + +.height250 { + height: 15.625rem; } + +.height260 { + height: 16.25rem; } + +.height270 { + height: 16.875rem; } + +.height280 { + height: 17.5rem; } + +.height290 { + height: 18.125rem; } + +.height300 { + height: 18.75rem; } + +.height310 { + height: 19.375rem; } + +.height320 { + height: 20rem; } + +.height330 { + height: 20.625rem; } + +.height340 { + height: 21.25rem; } + +.height350 { + height: 21.875rem; } + +.height360 { + height: 22.5rem; } + +.height370 { + height: 23.125rem; } + +.height380 { + height: 23.75rem; } + +.height390 { + height: 24.375rem; } + +.height400 { + height: 25rem; } + +.height415 { + height: 25.9375rem; } + +.height500 { + height: 31.25rem; } + +.height550 { + height: 34.375rem; } + +.height600 { + height: 37.5rem; } + +.height630 { + height: 39.375rem; } + +.height720 { + height: 45rem; } + +.height750 { + height: 46.875rem; } + +.height800 { + height: 50rem; } + +.width10 { + width: 0.625rem; } + +.width20 { + width: 1.25rem; } + +.width30 { + width: 1.875rem; } + +.width40 { + width: 2.5rem; } + +.width50 { + width: 3.125rem; } + +.width60 { + width: 3.75rem; } + +.width70 { + width: 4.375rem; } + +.width80 { + width: 5rem; } + +.width90 { + width: 5.625rem; } + +.width100 { + width: 6.25rem; } + +.width110 { + width: 6.875rem; } + +.width120 { + width: 7.5rem; } + +.width130 { + width: 8.125rem; } + +.width140 { + width: 8.75rem; } + +.width150 { + width: 9.375rem; } + +.width160 { + width: 10rem; } + +.width170 { + width: 10.625rem; } + +.width180 { + width: 11.25rem; } + +.width190 { + width: 11.875rem; } + +.width200 { + width: 12.5rem; } + +.width210 { + width: 13.125rem; } + +.width220 { + width: 13.75rem; } + +.width230 { + width: 14.375rem; } + +.width240 { + width: 15rem; } + +.width250 { + width: 15.625rem; } + +.width260 { + width: 16.25rem; } + +.width270 { + width: 16.875rem; } + +.width280 { + width: 17.5rem; } + +.width290 { + width: 18.125rem; } + +.width300 { + width: 18.75rem; } + +.width310 { + width: 19.375rem; } + +.width320 { + width: 20rem; } + +.width330 { + width: 20.625rem; } + +.width340 { + width: 21.25rem; } + +.width350 { + width: 21.875rem; } + +.width360 { + width: 22.5rem; } + +.width370 { + width: 23.125rem; } + +.width380 { + width: 23.75rem; } + +.width390 { + width: 24.375rem; } + +.width400 { + width: 25rem; } + +.rounded { + border-radius: 1.25rem !important; } + +label { + margin-bottom: 0.5rem; } + +@keyframes gXGDoR { + from { + -webkit-transform: translateY(5px) scale(0.8); + -ms-transform: translateY(5px) scale(0.8); + transform: translateY(5px) scale(0.8); } + to { + -webkit-transform: translateY(0px) scale(1); + -ms-transform: translateY(0px) scale(1); + transform: translateY(0px) scale(1); } } +@keyframes crescendo { + from { + -webkit-transform: translateY(5px) scale(0.8); + -ms-transform: translateY(5px) scale(0.8); + transform: translateY(5px) scale(0.8); } + to { + -webkit-transform: translateY(0px) scale(1); + -ms-transform: translateY(0px) scale(1); + transform: translateY(0px) scale(1); } } +@keyframes gXGDoR { + from { + -webkit-transform: translateY(5px) scale(0.8); + -ms-transform: translateY(5px) scale(0.8); + transform: translateY(5px) scale(0.8); } + to { + -webkit-transform: translateY(0px) scale(1); + -ms-transform: translateY(0px) scale(1); + transform: translateY(0px) scale(1); } } +@media only screen and (min-width: 1200px) and (max-width: 1600px) { + .col-xxl-1 { + flex: 0 0 8.3333333333%; + max-width: 8.3333333333%; } + + .col-xxl-2 { + flex: 0 0 16.6666666667%; + max-width: 16.6666666667%; } + + .col-xxl-3 { + flex: 0 0 25%; + max-width: 25%; } + + .col-xxl-4 { + flex: 0 0 33.3333333333%; + max-width: 33.3333333333%; } + + .col-xxl-5 { + flex: 0 0 41.6666666667%; + max-width: 41.6666666667%; } + + .col-xxl-6 { + flex: 0 0 50%; + max-width: 50%; } + + .col-xxl-7 { + flex: 0 0 58.3333333333%; + max-width: 58.3333333333%; } + + .col-xxl-8 { + flex: 0 0 66.6666666667%; + max-width: 66.6666666667%; } + + .col-xxl-9 { + flex: 0 0 75%; + max-width: 75%; } + + .col-xxl-10 { + flex: 0 0 83.3333333333%; + max-width: 83.3333333333%; } + + .col-xxl-11 { + flex: 0 0 91.6666666667%; + max-width: 91.6666666667%; } + + .col-xxl-12 { + flex: 0 0 100%; + max-width: 100%; } + + .mb-xxl-4 { + margin-bottom: 1.5rem !important; } } +/* Editable */ +#preloader { + background-color: #fff; + padding: 0; + margin: 0; + height: 100%; + position: fixed; + z-index: 99999; + width: 100%; + display: flex; + align-items: center; + justify-content: center; } + #preloader .lds-ripple { + display: inline-block; + position: relative; + width: 80px; + height: 80px; } + #preloader .lds-ripple div { + position: absolute; + border: 4px solid var(--primary); + opacity: 1; + border-radius: 50%; + animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; } + #preloader .lds-ripple div:nth-child(2) { + animation-delay: -0.5s; } +@keyframes lds-ripple { + 0% { + top: 36px; + left: 36px; + width: 0; + height: 0; + opacity: 1; } + 100% { + top: 0px; + left: 0px; + width: 72px; + height: 72px; + opacity: 0; } } +[data-theme-version="dark"] #preloader { + background-color: #17171E; } + +.footer { + padding-left: 17.1875rem; + background-color: #F8F8F8; + font-size: 0.875rem; } + .footer .copyright { + padding: 0.9375rem; } + .footer .copyright p { + text-align: center; + margin: 0; + color: #000; } + .footer .copyright a { + color: var(--primary); } + +[data-sidebar-style="mini"] .nav-control, +[data-layout="horizontal"] .nav-control { + display: none; } + +@media only screen and (max-width: 47.9375rem) { + [data-sidebar-style="overlay"] .nav-header .logo-abbr { + display: block; } } + +[data-header-position="fixed"] .nav-header { + position: fixed; } + +.nav-header { + height: 7.5rem; + width: 20.5rem; + display: inline-block; + text-align: left; + position: absolute; + top: 0; + background-color: var(--nav-headbg); + transition: all .2s ease; + z-index: 5; } + .nav-header .logo-abbr { + max-width: 2.9375rem; } + @media only screen and (max-width: 87.5rem) { + .nav-header .logo-abbr { + max-width: 2.8125rem; } } + @media only screen and (max-width: 35.9375rem) { + .nav-header .logo-abbr { + width: 2.1875rem; + height: 2.1875rem; } } + .nav-header .logo-compact { + display: none; } + @media only screen and (max-width: 87.5rem) { + .nav-header { + height: 5.5rem; + width: 17rem; } } + .nav-header .brand-logo { + display: flex; + height: 100%; + width: 100%; + justify-content: flex-start; + align-items: center; + font-size: 1.125rem; + color: #fff; + text-decoration: none; + padding-left: 1.875rem; + padding-right: 1.875rem; + font-weight: 700; } + @media only screen and (max-width: 87.5rem) { + .nav-header .brand-logo { + padding-left: 1.25rem; + padding-right: 1.25rem; } } + [data-sidebar-style="compact"] .nav-header .brand-logo, [data-sidebar-style="mini"] .nav-header .brand-logo { + padding-left: 0; + padding-right: 0; + justify-content: center; } + @media only screen and (max-width: 47.9375rem) { + .nav-header .brand-logo { + padding-left: 0; + padding-right: 0; + justify-content: center; } } + .nav-header .brand-title { + margin-left: 0.9375rem; + max-width: 8.75rem; + font-size: 2.375rem; + color: #000; } + [data-theme-version="dark"] .nav-header .brand-title { + background-position: 0 120%; } + @media only screen and (max-width: 47.9375rem) { + .nav-header { + top: 0; + background: transparent; } } + .nav-header .rect-primary-rect { + fill: var(--primary); } + +@media only screen and (max-width: 74.9375rem) { + .nav-header { + height: 5rem; } } +@media only screen and (max-width: 63.9375rem) { + .nav-header { + width: 5rem; } + .nav-header .brand-title { + display: none; } } +.nav-control { + cursor: pointer; + position: absolute; + right: -5rem; + text-align: center; + top: 55%; + transform: translateY(-50%); + z-index: 9999; + font-size: 1.4rem; + padding: 0.125rem 0.5rem 0; + border-radius: 0.125rem; } + @media only screen and (max-width: 87.5rem) { + .nav-control { + right: 0.444rem; } } + @media only screen and (max-width: 47.9375rem) { + .nav-control { + right: -3rem; } } + @media only screen and (max-width: 35.9375rem) { + .nav-control { + right: -3rem; } } + +.hamburger { + display: inline-block; + left: 0rem; + position: relative; + top: 0rem; + -webkit-transition: all 0.3s ease-in-out 0s; + transition: all 0.3s ease-in-out 0s; + width: 1.625rem; + z-index: 999; } + +.hamburger .line { + background: #000; + display: block; + height: 0.1875rem; + border-radius: 0.1875rem; + margin-top: 0.375rem; + margin-bottom: 0.375rem; + margin-right: auto; + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; } + +.hamburger .line:nth-child(1) { + width: 1.625rem; } + +.hamburger .line:nth-child(2) { + width: 1.625rem; } + +.hamburger .line:nth-child(3) { + width: 0.9375rem; } + +.hamburger:hover { + cursor: pointer; } + +.hamburger:hover .line { + width: 1.625rem; } + +.hamburger.is-active .line:nth-child(1), +.hamburger.is-active .line:nth-child(3) { + width: 0.625rem; + height: 0.125rem; } + +.hamburger.is-active .line:nth-child(2) { + -webkit-transform: translateX(0px); + transform: translateX(0px); + width: 1.375rem; + height: 0.125rem; } + +.hamburger.is-active .line:nth-child(1) { + -webkit-transform: translateY(4px) translateX(12px) rotate(45deg); + transform: translateY(4px) translateX(12px) rotate(45deg); } + +.hamburger.is-active .line:nth-child(3) { + -webkit-transform: translateY(-4px) translateX(12px) rotate(-45deg); + transform: translateY(-4px) translateX(12px) rotate(-45deg); } + +@media (min-width: 47.9375rem) { + [data-sidebar-style="compact"] .nav-control { + display: none; } + [data-sidebar-style="compact"] .nav-header { + width: 11.25rem; } } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .brand-title { + display: none; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .nav-header .logo-abbr { + display: block; } + +[data-sidebar-style="full"][data-layout="horizontal"] .logo-compact { + display: none; } + +[data-sidebar-style="mini"] .nav-header { + height: 6.5rem; } + [data-sidebar-style="mini"] .nav-header .logo-abbr { + display: block; } + @media only screen and (max-width: 63.9375rem) { + [data-sidebar-style="mini"] .nav-header { + height: 5.5rem; } } + +[data-sidebar-style="compact"][data-layout="vertical"] .nav-header .brand-title { + display: none; } +[data-sidebar-style="compact"][data-layout="vertical"] .nav-header .logo-compact { + max-width: 4.6875rem; } + +[data-sidebar-style="compact"][data-layout="horizontal"] .nav-header .brand-logo { + padding-left: 1.875rem; + padding-right: 1.875rem; + justify-content: start; } + +[data-sidebar-style="modern"][data-layout="vertical"] .nav-header { + width: 10.625rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .nav-header .brand-title { + display: none; } + [data-sidebar-style="modern"][data-layout="vertical"] .nav-header .logo-compact { + display: none; } + +.header { + height: 7.5rem; + z-index: 1; + position: relative; + padding: 0rem; + background: var(--headerbg); + z-index: 3; + padding-left: 20.563rem; + padding-top: 0rem; + transition: all .2s ease; } + .header .header-content { + height: 100%; + padding-left: 7rem; + padding-right: 1.875rem; + align-items: center; + display: flex; } + @media only screen and (max-width: 87.5rem) { + .header .header-content { + padding-left: 5rem; } } + @media only screen and (max-width: 74.9375rem) { + .header .header-content { + padding-left: 2rem; } } + @media only screen and (max-width: 47.9375rem) { + .header .header-content { + padding-left: 3.75rem; + padding-right: 0.938rem; } } + .header .navbar { + padding: 0; + height: 100%; + width: 100%; } + .header .navbar .navbar-collapse { + height: 100%; + width: 100%; } + @media only screen and (max-width: 87.5rem) { + .header { + height: 5.5rem; } } + @media only screen and (max-width: 74.9375rem) { + .header { + height: 5rem; } } + @media only screen and (max-width: 47.9375rem) { + .header { + padding-top: 0; } } + +/* pulse in SVG */ +svg.pulse-svg { + overflow: visible; } + svg.pulse-svg .first-circle, svg.pulse-svg .second-circle, svg.pulse-svg .third-circle { + -webkit-transform: scale(0.3); + transform: scale(0.3); + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-animation: pulse-me 3s linear infinite; + animation: pulse-me 3s linear infinite; + fill: var(--primary); } + svg.pulse-svg .second-circle { + -webkit-animation-delay: 1s; + animation-delay: 1s; } + svg.pulse-svg .third-circle { + -webkit-animation-delay: 2s; + animation-delay: 2s; } + +/* pulse in CSS */ +.pulse-css { + width: 1rem; + height: 1rem; + border-radius: 0.5rem; + border-radius: 3.5rem; + height: 1.25rem; + position: absolute; + background: #fe8630; + right: 0.375rem; + top: 0.3125rem; + border: 0.25rem solid #fff; + width: 1.25rem; } + .pulse-css:after, .pulse-css:before { + content: ''; + width: 1rem; + height: 1rem; + border-radius: 0.5rem; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: -.2rem; + background-color: #D8B9C3; + margin: auto; + -webkit-transform: scale(0.3); + transform: scale(0.3); + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-animation: pulse-me 3s linear infinite; + animation: pulse-me 3s linear infinite; } + [direction="rtl"] .pulse-css:after, [direction="rtl"] .pulse-css:before { + left: auto; + right: -.2rem; } + @media only screen and (max-width: 87.5rem) { + .pulse-css { + height: 1rem; + width: 1rem; } } + +@-webkit-keyframes pulse-me { + 0% { + -webkit-transform: scale(0.3); + transform: scale(0.3); + opacity: 0; } + 50% { + opacity: 0.1; } + 70% { + opacity: 0.09; } + 100% { + -webkit-transform: scale(3); + transform: scale(3); + opacity: 0; } } +@keyframes pulse-me { + 0% { + -webkit-transform: scale(0.3); + transform: scale(0.3); + opacity: 0; } + 50% { + opacity: 0.1; } + 70% { + opacity: 0.09; } + 100% { + -webkit-transform: scale(3); + transform: scale(3); + opacity: 0; } } +[data-sidebar-style="full"] .header, +[data-sidebar-style="overlay"] .header { + width: 100%; } + @media only screen and (max-width: 87.5rem) { + [data-sidebar-style="full"] .header, + [data-sidebar-style="overlay"] .header { + width: 100%; + padding-left: 17rem; } } + @media only screen and (max-width: 63.9375rem) { + [data-sidebar-style="full"] .header, + [data-sidebar-style="overlay"] .header { + width: 100%; + padding-left: 5rem; } } + +[data-sidebar-style="mini"] .header { + width: 100%; + height: 6.5rem; + padding-left: 7.5rem; } + @media only screen and (max-width: 63.9375rem) { + [data-sidebar-style="mini"] .header { + height: 5.5rem; + padding-left: 6.5rem; } } + +[data-sidebar-style="compact"] .header { + width: 100%; + padding-left: 12.5rem; } + [data-sidebar-style="compact"] .header .header-content { + padding-left: 2.5rem; } + +[data-header-position="fixed"] .header { + position: fixed; + top: 0; + width: 100%; } +[data-header-position="fixed"] .content-body { + padding-top: 7.5rem; } + @media only screen and (max-width: 87.5rem) { + [data-header-position="fixed"] .content-body { + padding-top: 5.5rem; } } + @media only screen and (max-width: 74.9375rem) { + [data-header-position="fixed"] .content-body { + padding-top: 5rem; } } +[data-header-position="fixed"] .dlabnav { + margin-top: 0; } + +[data-sidebar-style="compact"][data-header-position="fixed"][data-container="boxed"][data-layout="vertical"] .header { + width: 74.9375rem; } + +[data-sidebar-style="modern"] .header { + width: 100%; + padding-left: 11.9rem; } +[data-sidebar-style="modern"][data-layout="horizontal"] .nav-header .brand-logo { + justify-content: start; } +[data-sidebar-style="modern"][data-layout="horizontal"] .header .header-content { + padding-left: 1.875rem; } + +.header-left { + height: 100%; + display: flex; + align-items: center; } + .header-left .breadcrumb { + margin-bottom: 0; } + .header-left .agenda a { + border-radius: 1.75rem; } + .header-left .agenda a i { + margin-right: 0.75rem; } + @media only screen and (max-width: 87.5rem) { + .header-left .agenda a i { + margin-right: 0rem; } } + @media only screen and (max-width: 93.75rem) { + .header-left .agenda a { + font-size: 0; + border-radius: 0.75rem; + padding: 0.8125rem 0.9375rem; } + .header-left .agenda a i { + font-size: 1.25rem; + margin-right: 0; } } + @media only screen and (max-width: 35.9375rem) { + .header-left .agenda { + display: none; } } + .header-left .dashboard_bar { + font-size: 1.75rem; + font-weight: 600; + color: #000; } + @media only screen and (max-width: 74.9375rem) { + .header-left .dashboard_bar { + font-size: 2.125rem; } } + @media only screen and (max-width: 47.9375rem) { + .header-left .dashboard_bar { + display: none; } } + .header-left .dashboard_bar.sub-bar { + font-size: 1.875rem; } + .header-left .search-area { + width: 18.875rem; + border-radius: 2.375rem; + margin-left: 7rem; } + @media only screen and (max-width: 100rem) { + .header-left .search-area { + width: 18.75rem; } } + @media only screen and (max-width: 74.9375rem) { + .header-left .search-area { + display: none; } } + .header-left .search-area .form-control { + border: 0; + background: #F6F6F6; + border-top-left-radius: 2.625rem; + border-bottom-left-radius: 2.625rem; + height: 3.5rem; } + @media only screen and (max-width: 87.5rem) { + .header-left .search-area .form-control { + height: 3rem; } } + .header-left .search-area .input-group-text { + border-top-right-radius: 2.625rem; + border-bottom-right-radius: 2.625rem; + background: #F1F1F1; } + .header-left .search-area .input-group-text a i { + font-size: 1.5rem; } + @media only screen and (max-width: 87.5rem) { + .header-left .search-area .input-group-text { + height: 3rem; } } + +[data-sidebar-style="compact"] .header-left { + margin-left: 0; } + +.header-right { + height: 100%; } + .header-right .nav-item { + height: 100%; + display: flex; + align-items: center; } + .header-right .nav-item .nav-link { + color: #464a53; + font-size: 1.125rem; } + .header-right .right-sidebar { + margin-right: -1.875rem; } + .header-right .right-sidebar a { + height: 5rem; + width: 5rem; + text-align: center; + justify-content: center; + display: flex; + align-items: center; + border-left: 0.0625rem solid #c8c8c8; } + .header-right > li:not(:first-child) { + padding-left: 1.25rem; } + @media only screen and (max-width: 74.9375rem) { + .header-right > li:not(:first-child) { + padding-left: 1rem; } } + @media only screen and (max-width: 35.9375rem) { + .header-right > li:not(:first-child) { + padding-left: 0.4rem; } } + @media only screen and (max-width: 47.9375rem) { + .header-right .notification_dropdown { + position: static; } } + .header-right .notification_dropdown .nav-link { + position: relative; + color: var(--primary); + border-radius: 1.25rem; + padding: 0.9375rem; + line-height: 1; } + @media only screen and (max-width: 87.5rem) { + .header-right .notification_dropdown .nav-link { + padding: 0.625rem; } } + .header-right .notification_dropdown .nav-link i { + font-size: 1.5rem; } + @media only screen and (max-width: 87.5rem) { + .header-right .notification_dropdown .nav-link i { + font-size: 1.125rem; } } + @media only screen and (max-width: 87.5rem) { + .header-right .notification_dropdown .nav-link svg { + width: 1.5rem; + height: 1.5rem; } } + @media only screen and (max-width: 35.9375rem) { + .header-right .notification_dropdown .nav-link svg { + width: 1.25rem; + height: 1.25rem; } } + .header-right .notification_dropdown .nav-link .badge { + position: absolute; + font-size: 0.625rem; + border-radius: 50%; + right: -0.5rem; + top: -0.25rem; + font-weight: normal; + height: 1.875rem; + width: 1.875rem; + line-height: 1.125rem; + text-align: center; + padding: 0.3125rem; + font-size: 0.875rem; } + @media only screen and (max-width: 87.5rem) { + .header-right .notification_dropdown .nav-link .badge { + height: 1.25rem; + width: 1.25rem; + border-width: 0.125rem; + line-height: 0.4375rem; + font-size: 0.5625rem; } } + @media only screen and (max-width: 35.9375rem) { + .header-right .notification_dropdown .nav-link .badge { + height: 1.125rem; + width: 1.125rem; + padding: 0; + line-height: 0.9375rem; + right: 0rem; + top: -0.125rem; } } + .header-right .notification_dropdown .dropdown-item:focus a, .header-right .notification_dropdown .dropdown-item:active a { + color: #fff; } + .header-right .notification_dropdown .dropdown-item a { + color: #6e6e6e; } + .header-right .notification_dropdown .dropdown-item a:hover { + text-decoration: none; } + .header-right .dropdown-menu { + border-width: 0; + box-shadow: 0 0 2.3125rem rgba(8, 21, 66, 0.05); } + [data-theme-version="dark"] .header-right .dropdown-menu { + box-shadow: none; } + .header-right .search-area { + width: 21.25rem; } + .header-right .search-area .form-control { + height: 3.5rem; + background: #f3f3f3; + border: 0; } + .header-right .search-area .input-group-text { + height: 3.5rem; + border-radius: 1rem; + background: #f3f3f3; + padding: 0 1.25rem; } + .header-right .search-area .input-group-text i { + font-size: 1.5rem; } + @media only screen and (max-width: 100rem) { + .header-right .search-area { + width: 15.625rem; } } + @media only screen and (max-width: 74.9375rem) { + .header-right .search-area { + display: none; } } + +.dlab-fullscreen #icon-minimize { + display: none; } +.dlab-fullscreen.active #icon-full { + display: none; } +.dlab-fullscreen.active #icon-minimize { + display: inline-block; } + +.notification_dropdown .dropdown-menu-end { + min-width: 19.375rem; + padding: 0rem 0 1rem; + top: 100%; } + .notification_dropdown .dropdown-menu-end .notification_title { + background: var(--primary); + color: #fff; + padding: 0.625rem 1.25rem; } + .notification_dropdown .dropdown-menu-end .notification_title h5, .notification_dropdown .dropdown-menu-end .notification_title .h5 { + color: #fff; + margin-bottom: 0.1875rem; } + .notification_dropdown .dropdown-menu-end .media { + width: 2.8125rem; + height: 2.8125rem; + font-size: 1.125rem; } + [data-theme-version="dark"] .notification_dropdown .dropdown-menu-end .media { + border-color: #2e2e42; } + .notification_dropdown .dropdown-menu-end .media > span { + width: 2.1875rem; + height: 2.1875rem; + border-radius: 3.125rem; + display: inline-block; + padding: 0.4375rem 0.5625rem; + margin-right: 0.625rem; } + [direction="rtl"].notification_dropdown .dropdown-menu-end .media > span { + margin-right: 0; + margin-left: 0.625rem; } + .notification_dropdown .dropdown-menu-end .media > span.success { + background: #e7fbe6; + color: #68e365; } + .notification_dropdown .dropdown-menu-end .media > span.primary { + background: var(--rgba-primary-1); + color: var(--primary); } + .notification_dropdown .dropdown-menu-end .media > span.danger { + background: #fee6ea; + color: #f72b50; } + .notification_dropdown .dropdown-menu-end .media .notify-time { + width: 100%; + margin-right: 0; + color: #828690; } + .notification_dropdown .dropdown-menu-end .media p { + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + max-width: 12.5rem; + margin-bottom: 0; + margin-top: 0.3125rem; } + @media only screen and (max-width: 35.9375rem) { + .notification_dropdown .dropdown-menu-end .media p { + max-width: 6.25rem; } } + .notification_dropdown .dropdown-menu-end .all-notification { + display: block; + padding: 0.9375rem 1.875rem 0; + text-align: center; + border-top: 0.0625rem solid #c8c8c8; } + .notification_dropdown .dropdown-menu-end .all-notification i { + margin-left: 0.625rem; } + +.header-profile > a.nav-link { + padding: 0; + display: flex; + align-items: center; + margin-left: 0.9375rem; } + .header-profile > a.nav-link i { + font-weight: 700; } + .header-profile > a.nav-link .header-info { + padding-left: 0rem; + text-align: left; } + @media only screen and (max-width: 87.5rem) { + .header-profile > a.nav-link .header-info { + padding-left: 0.625rem; } } + @media only screen and (max-width: 35.9375rem) { + .header-profile > a.nav-link .header-info { + display: none; } } + .header-profile > a.nav-link .header-info span { + font-size: 1rem; + color: #000; + display: block; + font-weight: 600; } + .header-profile > a.nav-link .header-info strong { + color: #6e6e6e; } + .header-profile > a.nav-link .header-info small, .header-profile > a.nav-link .header-info .small { + display: block; + font-size: 0.8125rem; + color: #89879f; + font-weight: 400; + line-height: 1.2; } + @media only screen and (max-width: 87.5rem) { + .header-profile > a.nav-link { + margin-left: 0rem; + padding-left: 0rem; } + .header-profile > a.nav-link .header-info span { + font-size: 1rem; } } + @media only screen and (max-width: 35.9375rem) { + .header-profile > a.nav-link { + margin-left: 0rem; + padding-left: 0rem; + border-left: 0; } } +.header-profile .dropdown-menu { + padding: 0.9375rem 0; + min-width: 12.5rem; } + .header-profile .dropdown-menu a:hover, .header-profile .dropdown-menu a:focus, .header-profile .dropdown-menu a.active { + color: #F93A0B; } +.header-profile img { + width: 3.5rem; + height: 3.5rem; + border-radius: 1.25rem; } + @media only screen and (max-width: 87.5rem) { + .header-profile img { + width: 2.4375rem; + height: 2.4375rem; } } +.header-profile .dropdown-toggle i { + font-size: 1.25rem; } +@media only screen and (max-width: 35.9375rem) { + .header-profile .dropdown-toggle span { + display: none; } } +.header-profile .profile_title { + background: #F93A0B; + color: #fff; + padding: 0.625rem 1.25rem; } + .header-profile .profile_title h5, .header-profile .profile_title .h5 { + color: #fff; + margin-bottom: 0.1875rem; } +.header-profile .dropdown-item { + padding: 0.5rem 1.5rem; } + +[data-container="boxed"] .search-area { + display: none !important; } + +.rtl { + text-align: right; + direction: rtl; } + .rtl .nav { + padding-right: 0; } + .rtl .navbar-nav .nav-item { + float: right; } + .rtl .navbar-nav .nav-item + .nav-item { + margin-right: 1rem; + margin-left: inherit; } + .rtl th { + text-align: right; } + .rtl .alert-dismissible { + padding-right: 1.25rem; + padding-left: 4rem; } + .rtl .dropdown-menu { + right: 0; + text-align: right; } + .rtl .checkbox label { + padding-right: 1.25rem; + padding-left: inherit; } + .rtl .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-radius: 0 0.75rem 0.75rem 0; } + .rtl .btn-group > .btn:last-child:not(:first-child), + .rtl .btn-group > .dropdown-toggle:not(:first-child) { + border-radius: 0.75rem 0 0 0.75rem; } + .rtl .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-radius: 0.75rem 0 0 0.75rem; } + .rtl .custom-control-label::after, + .rtl .custom-control-label::before { + right: 0; + left: inherit; } + .rtl .custom-select { + padding: 0.375rem 0.75rem 0.375rem 1.75rem; + background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat left 0.75rem center; + background-size: 8px 10px; } + .rtl .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), + .rtl .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), + .rtl .input-group > .input-group-append:not(:last-child) > .btn, + .rtl .input-group > .input-group-append:not(:last-child) > .input-group-text, + .rtl .input-group > .input-group-prepend > .btn, + .rtl .input-group > .input-group-prepend > .input-group-text { + border-radius: 0 0.75rem 0.75rem 0; } + .rtl .input-group > .input-group-append > .btn, + .rtl .input-group > .input-group-append > .input-group-text, + .rtl .input-group > .input-group-prepend:first-child > .btn:not(:first-child), + .rtl .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), + .rtl .input-group > .input-group-prepend:not(:first-child) > .btn, + .rtl .input-group > .input-group-prepend:not(:first-child) > .input-group-text { + border-radius: 0.75rem 0 0 0.75rem; } + .rtl .input-group > .custom-select:not(:first-child), + .rtl .input-group > .form-control:not(:first-child) { + border-radius: 0.75rem 0 0 0.75rem; } + .rtl .input-group > .custom-select:not(:last-child), + .rtl .input-group > .form-control:not(:last-child) { + border-radius: 0 0.75rem 0.75rem 0; } + .rtl .input-group > .custom-select:not(:last-child):not(:first-child), + .rtl .input-group > .form-control:not(:last-child):not(:first-child) { + border-radius: 0; } + .rtl .custom-control { + padding-right: 1.5rem; + padding-left: inherit; + margin-right: inherit; + margin-left: 1rem; } + .rtl .custom-control-indicator { + right: 0; + left: inherit; } + .rtl .custom-file-label::after { + right: initial; + left: -1px; + border-radius: .25rem 0 0 .25rem; } + .rtl .radio input, + .rtl .radio-inline, + .rtl .checkbox input, + .rtl .checkbox-inline input { + margin-right: -1.25rem; + margin-left: inherit; } + .rtl .list-group { + padding-right: 0; + padding-left: 40px; } + .rtl .close { + float: left; } + .rtl .modal-header .close { + margin: -15px auto -15px -15px; } + .rtl .modal-footer > :not(:first-child) { + margin-right: .25rem; } + .rtl .alert-dismissible .close { + right: inherit; + left: 0; } + .rtl .dropdown-toggle::after { + margin-right: .255em; + margin-left: 0; } + .rtl .form-check-input { + margin-right: -1.25rem; + margin-left: inherit; } + .rtl .form-check-label { + padding-right: 1.25rem; + padding-left: inherit; } + .rtl .offset-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-11 { + margin-right: 91.6666666667%; + margin-left: 0; } + @media (min-width: 576px) { + .rtl .offset-sm-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-sm-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-sm-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-sm-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-sm-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-sm-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-sm-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-sm-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-sm-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-sm-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-sm-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-sm-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + @media (min-width: 768px) { + .rtl .offset-md-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-md-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-md-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-md-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-md-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-md-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-md-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-md-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-md-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-md-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-md-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-md-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + @media (min-width: 992px) { + .rtl .offset-lg-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-lg-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-lg-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-lg-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-lg-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-lg-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-lg-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-lg-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-lg-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-lg-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-lg-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-lg-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + @media (min-width: 1200px) { + .rtl .offset-xl-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-xl-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-xl-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-xl-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-xl-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-xl-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-xl-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-xl-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-xl-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-xl-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-xl-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-xl-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + @media (min-width: 1440) { + .rtl .offset-xxl-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-xxl-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-xxl-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-xxl-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-xxl-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-xxl-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-xxl-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-xxl-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-xxl-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-xxl-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-xxl-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-xxl-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + .rtl .mr-0, + .rtl .mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-0, + .rtl .mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-1, + .rtl .mx-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-1, + .rtl .mx-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-2, + .rtl .mx-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-2, + .rtl .mx-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-3, + .rtl .mx-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-3, + .rtl .mx-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-4, + .rtl .mx-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-4, + .rtl .mx-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-5, + .rtl .mx-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-5, + .rtl .mx-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-0, + .rtl .px-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-0, + .rtl .px-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-1, + .rtl .px-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-1, + .rtl .px-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-2, + .rtl .px-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-2, + .rtl .px-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-3, + .rtl .px-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-3, + .rtl .px-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-4, + .rtl .px-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-4, + .rtl .px-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-5, + .rtl .px-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-5, + .rtl .px-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-auto { + margin-right: auto !important; + margin-left: auto !important; } + @media (min-width: 576px) { + .rtl .mr-sm-0, + .rtl .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-sm-0, + .rtl .mx-sm-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-sm-1, + .rtl .mx-sm-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-sm-1, + .rtl .mx-sm-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-sm-2, + .rtl .mx-sm-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-sm-2, + .rtl .mx-sm-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-sm-3, + .rtl .mx-sm-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-sm-3, + .rtl .mx-sm-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-sm-4, + .rtl .mx-sm-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-sm-4, + .rtl .mx-sm-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-sm-5, + .rtl .mx-sm-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-sm-5, + .rtl .mx-sm-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-sm-0, + .rtl .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-sm-0, + .rtl .px-sm-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-sm-1, + .rtl .px-sm-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-sm-1, + .rtl .px-sm-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-sm-2, + .rtl .px-sm-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-sm-2, + .rtl .px-sm-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-sm-3, + .rtl .px-sm-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-sm-3, + .rtl .px-sm-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-sm-4, + .rtl .px-sm-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-sm-4, + .rtl .px-sm-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-sm-5, + .rtl .px-sm-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-sm-5, + .rtl .px-sm-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-sm-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-sm-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; } } + @media (min-width: 768px) { + .rtl .mr-md-0, + .rtl .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-md-0, + .rtl .mx-md-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-md-1, + .rtl .mx-md-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-md-1, + .rtl .mx-md-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-md-2, + .rtl .mx-md-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-md-2, + .rtl .mx-md-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-md-3, + .rtl .mx-md-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-md-3, + .rtl .mx-md-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-md-4, + .rtl .mx-md-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-md-4, + .rtl .mx-md-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-md-5, + .rtl .mx-md-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-md-5, + .rtl .mx-md-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-md-0, + .rtl .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-md-0, + .rtl .px-md-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-md-1, + .rtl .px-md-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-md-1, + .rtl .px-md-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-md-2, + .rtl .px-md-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-md-2, + .rtl .px-md-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-md-3, + .rtl .px-md-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-md-3, + .rtl .px-md-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-md-4, + .rtl .px-md-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-md-4, + .rtl .px-md-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-md-5, + .rtl .px-md-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-md-5, + .rtl .px-md-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-md-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-md-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; } } + @media (min-width: 992px) { + .rtl .mr-lg-0, + .rtl .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-lg-0, + .rtl .mx-lg-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-lg-1, + .rtl .mx-lg-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-lg-1, + .rtl .mx-lg-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-lg-2, + .rtl .mx-lg-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-lg-2, + .rtl .mx-lg-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-lg-3, + .rtl .mx-lg-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-lg-3, + .rtl .mx-lg-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-lg-4, + .rtl .mx-lg-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-lg-4, + .rtl .mx-lg-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-lg-5, + .rtl .mx-lg-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-lg-5, + .rtl .mx-lg-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-lg-0, + .rtl .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-lg-0, + .rtl .px-lg-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-lg-1, + .rtl .px-lg-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-lg-1, + .rtl .px-lg-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-lg-2, + .rtl .px-lg-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-lg-2, + .rtl .px-lg-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-lg-3, + .rtl .px-lg-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-lg-3, + .rtl .px-lg-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-lg-4, + .rtl .px-lg-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-lg-4, + .rtl .px-lg-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-lg-5, + .rtl .px-lg-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-lg-5, + .rtl .px-lg-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-lg-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-lg-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; } } + @media (min-width: 1200px) { + .rtl .mr-xl-0, + .rtl .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-xl-0, + .rtl .mx-xl-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-xl-1, + .rtl .mx-xl-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-xl-1, + .rtl .mx-xl-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-xl-2, + .rtl .mx-xl-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-xl-2, + .rtl .mx-xl-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-xl-3, + .rtl .mx-xl-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-xl-3, + .rtl .mx-xl-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-xl-4, + .rtl .mx-xl-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-xl-4, + .rtl .mx-xl-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-xl-5, + .rtl .mx-xl-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-xl-5, + .rtl .mx-xl-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-xl-0, + .rtl .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-xl-0, + .rtl .px-xl-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-xl-1, + .rtl .px-xl-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-xl-1, + .rtl .px-xl-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-xl-2, + .rtl .px-xl-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-xl-2, + .rtl .px-xl-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-xl-3, + .rtl .px-xl-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-xl-3, + .rtl .px-xl-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-xl-4, + .rtl .px-xl-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-xl-4, + .rtl .px-xl-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-xl-5, + .rtl .px-xl-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-xl-5, + .rtl .px-xl-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-xl-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-xl-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; } } + @media (min-width: 1440) { + .rtl .mr-xxl-0, + .rtl .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-xxl-0, + .rtl .mx-xxl-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-xxl-1, + .rtl .mx-xxl-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-xxl-1, + .rtl .mx-xxl-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-xxl-2, + .rtl .mx-xxl-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-xxl-2, + .rtl .mx-xxl-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-xxl-3, + .rtl .mx-xxl-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-xxl-3, + .rtl .mx-xxl-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-xxl-4, + .rtl .mx-xxl-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-xxl-4, + .rtl .mx-xxl-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-xxl-5, + .rtl .mx-xxl-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-xxl-5, + .rtl .mx-xxl-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-xxl-0, + .rtl .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-xxl-0, + .rtl .px-xxl-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-xxl-1, + .rtl .px-xxl-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-xxl-1, + .rtl .px-xxl-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-xxl-2, + .rtl .px-xxl-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-xxl-2, + .rtl .px-xxl-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-xxl-3, + .rtl .px-xxl-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-xxl-3, + .rtl .px-xxl-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-xxl-4, + .rtl .px-xxl-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-xxl-4, + .rtl .px-xxl-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-xxl-5, + .rtl .px-xxl-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-xxl-5, + .rtl .px-xxl-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-xxl-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-xxl-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; } } + .rtl .text-right { + text-align: left !important; } + .rtl .text-left { + text-align: right !important; } + @media (min-width: 576px) { + .rtl .text-sm-right { + text-align: left !important; } + .rtl .text-sm-left { + text-align: right !important; } } + @media (min-width: 768px) { + .rtl .text-md-right { + text-align: left !important; } + .rtl .text-md-left { + text-align: right !important; } } + @media (min-width: 992px) { + .rtl .text-lg-right { + text-align: left !important; } + .rtl .text-lg-left { + text-align: right !important; } } + @media (min-width: 1200px) { + .rtl .text-xl-right { + text-align: left !important; } + .rtl .text-xl-left { + text-align: right !important; } } + @media (min-width: 1440) { + .rtl .text-xxl-right { + text-align: left !important; } + .rtl .text-xxl-left { + text-align: right !important; } } + +.rtl .mx-0 { + margin-right: auto; + margin-left: 0 !important; } +.rtl .mx-0 { + margin-left: auto; + margin-right: 0 !important; } +.rtl .mx-1 { + margin-right: auto; + margin-left: 0.25rem !important; } +.rtl .mx-1 { + margin-left: auto; + margin-right: 0.25rem !important; } +.rtl .mx-2 { + margin-right: auto; + margin-left: 0.5rem !important; } +.rtl .mx-2 { + margin-left: auto; + margin-right: 0.5rem !important; } +.rtl .mx-3 { + margin-right: auto; + margin-left: 1rem !important; } +.rtl .mx-3 { + margin-left: auto; + margin-right: 1rem !important; } +.rtl .mx-4 { + margin-right: auto; + margin-left: 1.5rem !important; } +.rtl .mx-4 { + margin-left: auto; + margin-right: 1.5rem !important; } +.rtl .mx-5 { + margin-right: auto; + margin-left: 3rem !important; } +.rtl .mx-5 { + margin-left: auto; + margin-right: 3rem !important; } +.rtl .px-0 { + padding-right: auto; + padding-left: 0 !important; } +.rtl .px-0 { + padding-left: auto; + padding-right: 0 !important; } +.rtl .px-1 { + padding-right: auto; + padding-left: 0.25rem !important; } +.rtl .px-1 { + padding-left: auto; + padding-right: 0.25rem !important; } +.rtl .px-2 { + padding-right: auto; + padding-left: 0.5rem !important; } +.rtl .px-2 { + padding-left: auto; + padding-right: 0.5rem !important; } +.rtl .px-3 { + padding-right: auto; + padding-left: 1rem !important; } +.rtl .px-3 { + padding-left: auto; + padding-right: 1rem !important; } +.rtl .px-4 { + padding-right: auto; + padding-left: 1.5rem !important; } +.rtl .px-4 { + padding-left: auto; + padding-right: 1.5rem !important; } +.rtl .px-5 { + padding-right: auto; + padding-left: 3rem !important; } +.rtl .px-5 { + padding-left: auto; + padding-right: 3rem !important; } +.rtl .mr-auto { + margin-right: 0 !important; + margin-left: auto !important; } +.rtl .mx-auto { + margin-right: auto !important; + margin-left: auto !important; } +.rtl .ml-auto { + margin-right: auto !important; + margin-left: 0 !important; } +.rtl .mx-auto { + margin-right: auto !important; + margin-left: auto !important; } +@media (min-width: 576px) { + .rtl .mx-sm-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-sm-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-sm-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-sm-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-sm-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-sm-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-sm-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-sm-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-sm-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-sm-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-sm-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-sm-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-sm-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-sm-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-sm-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-sm-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-sm-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-sm-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-sm-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-sm-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-sm-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-sm-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-sm-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-sm-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-sm-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-sm-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; } } +@media (min-width: 768px) { + .rtl .mx-md-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-md-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-md-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-md-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-md-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-md-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-md-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-md-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-md-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-md-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-md-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-md-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-md-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-md-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-md-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-md-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-md-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-md-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-md-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-md-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-md-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-md-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-md-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-md-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-md-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-md-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; } } +@media (min-width: 992px) { + .rtl .mx-lg-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-lg-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-lg-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-lg-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-lg-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-lg-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-lg-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-lg-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-lg-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-lg-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-lg-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-lg-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-lg-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-lg-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-lg-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-lg-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-lg-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-lg-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-lg-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-lg-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-lg-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-lg-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-lg-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-lg-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-lg-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-lg-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; } } +@media (min-width: 1200px) { + .rtl .mx-xl-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-xl-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-xl-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-xl-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-xl-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-xl-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-xl-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-xl-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-xl-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-xl-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-xl-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-xl-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-xl-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-xl-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-xl-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-xl-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-xl-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-xl-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-xl-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-xl-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-xl-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-xl-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-xl-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-xl-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-xl-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-xl-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; } } +@media (min-width: 1440) { + .rtl .mx-xxl-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-xxl-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-xxl-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-xxl-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-xxl-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-xxl-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-xxl-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-xxl-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-xxl-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-xxl-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-xxl-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-xxl-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-xxl-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-xxl-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-xxl-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-xxl-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-xxl-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-xxl-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-xxl-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-xxl-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-xxl-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-xxl-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-xxl-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-xxl-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-xxl-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-xxl-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; } } +.rtl .float-left { + float: right !important; } +.rtl .float-right { + float: left !important; } +.rtl .float-none { + float: none !important; } +@media (min-width: 576px) { + .rtl .float-sm-left { + float: right !important; } + .rtl .float-sm-right { + float: left !important; } + .rtl .float-sm-none { + float: none !important; } } +@media (min-width: 768px) { + .rtl .float-md-left { + float: right !important; } + .rtl .float-md-right { + float: left !important; } + .rtl .float-md-none { + float: none !important; } } +@media (min-width: 992px) { + .rtl .float-lg-left { + float: right !important; } + .rtl .float-lg-right { + float: left !important; } + .rtl .float-lg-none { + float: none !important; } } +@media (min-width: 1200px) { + .rtl .float-xl-left { + float: right !important; } + .rtl .float-xl-right { + float: left !important; } + .rtl .float-xl-none { + float: none !important; } } +@media (min-width: 1440) { + .rtl .float-xxl-left { + float: right !important; } + .rtl .float-xxl-right { + float: left !important; } + .rtl .float-xxl-none { + float: none !important; } } + +[direction="rtl"][data-theme-version="dark"] .border, [direction="rtl"][data-theme-version="dark"] .border-left, [direction="rtl"][data-theme-version="dark"] .border-right { + border-color: #2e2e42 !important; } +[direction="rtl"] .text-right { + text-align: left !important; } +[direction="rtl"] .text-left { + text-align: right !important; } +[direction="rtl"] .border-right { + border-left: 0.0625rem solid #f5f5f5 !important; + border-right: 0 !important; } +[direction="rtl"] .border-left { + border-right: 0.0625rem solid #f5f5f5 !important; + border-left: 0 !important; } +[direction="rtl"] .dropdown-menu { + left: auto; } +[direction="rtl"] .dropdown-menu-right { + left: 0; + right: auto; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .dropdown-menu-right { + left: 0.9375rem; } } +[direction="rtl"] .notification_dropdown .dropdown-menu-right .media > span { + margin-left: 0.625rem; + margin-right: 0; } + +[direction="rtl"]:not([data-container="boxed"]) .nav-header { + left: auto; + right: 0; } +[direction="rtl"][data-container="wide-boxed"] .nav-header { + left: auto; + right: auto; } +[direction="rtl"] .nav-header { + text-align: right; + right: auto; } + [direction="rtl"] .nav-header .brand-title { + margin-left: 0; + margin-right: 0.9375rem; } + [direction="rtl"] .nav-header .brand-logo { + padding-left: 0; + padding-right: 1.75rem; } + [data-sidebar-style="compact"][direction="rtl"] .nav-header .brand-logo { + padding-right: 0; } + [data-sidebar-style="compact"][direction="rtl"] .nav-header .brand-logo[data-layout="horizontal"] { + padding-right: 1.875rem; } + [data-sidebar-style="mini"][direction="rtl"] .nav-header .brand-logo { + padding-right: 0; } + [data-sidebar-style="modern"][direction="rtl"] .nav-header .brand-logo { + padding-right: 0; } + [data-layout="horizontal"][data-sidebar-style="modern"][direction="rtl"] .nav-header .brand-logo { + padding-right: 1.875rem; } + @media (max-width: 767.98px) { + [direction="rtl"] .nav-header .brand-logo { + padding-right: 0; } } +[direction="rtl"] .nav-control { + right: auto; + left: -4.0625rem; } + @media (max-width: 767.98px) { + [direction="rtl"] .nav-control { + left: -4.0625rem; } } + @media (max-width: 575.98px) { + [direction="rtl"] .nav-control { + left: -2.0625rem; } } +[direction="rtl"][data-sidebar-style="overlay"] .nav-header .hamburger.is-active { + right: 0; } + +[direction="rtl"][data-sidebar-style="compact"][data-layout="horizontal"] .nav-header .brand-logo { + padding-right: 2.5rem; } + +[direction="rtl"][data-sidebar-style="modern"][data-layout="horizontal"] .nav-header { + width: 16rem; } + +[direction="rtl"] .header { + padding: 0; + padding-right: 21.563rem; } + @media (max-width: 767.98px) { + [direction="rtl"] .header { + padding-right: 5rem; + padding-left: 0; } } + [direction="rtl"] .header .header-content { + padding-left: 1.875rem; + padding-right: 5.3125rem; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .header .header-content { + padding-right: 3.5rem; + padding-left: 0.938rem; } } + [data-sidebar-style="compact"][direction="rtl"] .header .header-content { + padding-right: 1.875rem; } + [data-sidebar-style="modern"][direction="rtl"] .header .header-content { + padding-right: 5.3125rem; } + [data-sidebar-style="overlay"][direction="rtl"] .header .header-content { + padding-right: 5.3125rem; } + @media only screen and (max-width: 35.9375rem) { + [data-sidebar-style="overlay"][direction="rtl"] .header .header-content { + padding-right: 0.5rem; } } + [direction="rtl"] .header .nav-control { + right: 0.4375rem; + left: auto; } +[direction="rtl"] .header-right > li:not(:first-child) { + padding-left: 0; + padding-right: 1.25rem; + margin-right: 0 !important; } + @media only screen and (max-width: 47.9375rem) { + [direction="rtl"] .header-right > li:not(:first-child) { + padding-right: 0.5rem; } } +[direction="rtl"] .header-right .search-area .input-group-append .input-group-text { + padding-right: auto; + padding-left: 1.25rem; } +[direction="rtl"] .header-right .search-area .form-control { + padding-left: auto; + padding-right: 1.25rem; } +[direction="rtl"] .header-right .header-profile > a.nav-link { + margin-left: auto; + padding-left: auto; + margin-right: 0.9375rem; + padding-right: 1.875rem; + border-right: 0.0625rem solid #EEEEEE; + border-left: 0; } + [direction="rtl"] .header-right .header-profile > a.nav-link .header-info { + padding-right: 1.25rem; + padding-left: auto; + text-align: right; } + @media only screen and (max-width: 87.5rem) { + [direction="rtl"] .header-right .header-profile > a.nav-link .header-info { + padding-right: 0.625rem; } } + @media only screen and (max-width: 87.5rem) { + [direction="rtl"] .header-right .header-profile > a.nav-link { + margin-right: 0.625rem; + padding-right: 1.25rem; } } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .header-right .header-profile > a.nav-link { + margin-right: 0rem; + padding-right: 0rem; + border-right: 0; } } +[direction="rtl"] .header-left .search_bar .dropdown-menu, +[direction="rtl"] .header-left .search_bar .dropdown-menu.show { + right: 2.5rem !important; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .header-left .search_bar .dropdown-menu, + [direction="rtl"] .header-left .search_bar .dropdown-menu.show { + right: -6.25rem !important; } } +[direction="rtl"] .header-left .search_bar .search_icon { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .header-left .search_bar .search_icon { + border-radius: 5rem; } } +[direction="rtl"][data-layout="horizontal"] .header { + padding: 0; + padding-right: 21.563rem; } + [direction="rtl"][data-layout="horizontal"] .header .header-content { + padding-right: 2.5rem; + padding-left: 2.5rem; } +[direction="rtl"][data-layout="horizontal"][data-sidebar-style="full"] .nav-header .brand-logo { + padding-right: 2.5rem; } +[direction="rtl"][data-layout="horizontal"][data-sidebar-style="mini"] .header { + padding-right: 7.75rem; } +[direction="rtl"][data-sidebar-style="mini"] .header { + padding-right: 6.25rem; } +[direction="rtl"][data-sidebar-style="compact"] .header { + padding: 0 0.9375rem; + padding-right: 11.25rem; } +[direction="rtl"][data-sidebar-style="compact"][data-layout="horizontal"] .header { + padding: 0; + padding-right: 21.563rem; } +[direction="rtl"][data-sidebar-style="modern"] .header { + padding: 0 0.9375rem; + padding-right: 10.625rem; } +[direction="rtl"][data-sidebar-style="modern"][data-layout="horizontal"] .header { + padding: 0; + padding-right: 16rem; } + +[direction="rtl"] { + text-align: right; } + [direction="rtl"] .dlabnav { + text-align: right; } + [direction="rtl"] .dlabnav .metismenu ul:after { + left: auto; + right: 1.5625rem; } + [direction="rtl"] .dlabnav .metismenu ul a:before { + left: auto; + right: 2.625rem; } + [data-sidebar-style="full"][direction="rtl"] .dlabnav .metismenu li > a i { + padding: 0 0 0 0; + margin-right: 0; + margin-left: 0.625rem; } + [direction="rtl"] .dlabnav .metismenu li > a svg { + margin-left: 0.3125rem; + margin-right: 0; } + [data-sidebar-style="compact"][direction="rtl"] .dlabnav .metismenu li > a svg { + left: auto; + margin-left: auto; + margin-right: auto; } + [data-sidebar-style="icon-hover"][direction="rtl"] .dlabnav .metismenu li > a svg { + margin-left: 0; } + [direction="rtl"] .dlabnav .metismenu li ul a { + padding-right: 6rem; + padding-left: 0.625rem; } + [direction="rtl"] .dlabnav .metismenu li.active > .has-arrow:after { + transform: rotate(45deg) translateY(-50%); } + [direction="rtl"] .dlabnav .metismenu .has-arrow:after { + left: 1.5625rem; + right: auto; } + [data-layout="horizontal"][direction="rtl"] .dlabnav .metismenu .has-arrow:after { + left: 1.125rem; } + [data-sidebar-style="modern"][direction="rtl"] .dlabnav .metismenu .has-arrow:after { + -webkit-transform: rotate(-45deg) translateY(-50%); + transform: rotate(-45deg) translateY(-50%); } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li .has-arrow:after { + left: 1.5rem; + right: auto; } + [direction="rtl"][data-sidebar-style="mini"] .dlabnav .metismenu > li > a > i { + padding: 0; } + [direction="rtl"][data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li > ul a.has-arrow:after { + left: 1.5625rem; + right: auto; } + [direction="rtl"][data-sidebar-style="compact"] .dlabnav .metismenu li > a i { + padding: 0; + margin-left: auto; + margin-right: auto; } + [direction="rtl"][data-sidebar-style="compact"] .dlabnav .metismenu li ul a { + padding-right: 0.625rem; + padding-left: 0.625rem; } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li > ul li:hover ul { + right: 11.8125rem; + left: 0; } + +[direction="rtl"] { + /* ===== Light gallery ===== */ } + [direction="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow { + left: 15px; + right: auto; } + [direction="rtl"] .input-group > .bootstrap-select:not(:first-child) .dropdown-toggle { + border-radius: 0.75rem 0 0 0.75rem; } + [direction="rtl"] .list-group { + padding-left: 0; } + [direction="rtl"] .form-check-input { + margin-left: -1.25rem; + margin-right: inherit; } + [direction="rtl"] .form-check-inline .form-check-input { + margin-right: 0; + margin-left: 10px; } + [direction="rtl"] .radio input, + [direction="rtl"] .radio-inline, + [direction="rtl"] .checkbox input, + [direction="rtl"] .checkbox-inline input { + margin-left: 0; + margin-right: 0; } + [direction="rtl"] .content-body { + margin-right: 21.563rem; + margin-left: auto; } + [data-sidebar-style="modern"][direction="rtl"] .content-body { + margin-right: 9.375rem; } + [direction="rtl"] .content-body .page-titles { + text-align: right; } + [direction="rtl"] .doctor-info-details .media-body span i, + [direction="rtl"] .recovered-chart-deta .col [class*="bg-"] { + margin-right: 0; + margin-left: 10px; } + [direction="rtl"] .patients-chart-deta .col, + [direction="rtl"] .patients-chart-deta .col [class*="bg-"], + [direction="rtl"] .recovered-chart-deta .col { + margin-right: 0; + margin-left: 15px; } + [direction="rtl"] .best-doctor .timeline .timeline-panel .media .number { + left: auto; + right: -13px; } + [direction="rtl"] .doctor-info-details .media i { + right: 0; + left: -15px; } + [direction="rtl"] .review-table .disease { + border-left: 0; + border-right: 1px solid #eee; + padding-left: 0; + padding-right: 20px; } + [direction="rtl"] .apexcharts-legend-text { + margin: 4px; } + [direction="rtl"] .doctor-info-details .media-body { + padding-left: 0; + padding-right: 40px; } + [direction="rtl"] .custom-control { + margin-left: 0; } + [direction="rtl"] .review-tab.nav-pills li:first-child a.nav-link { + border-radius: 0 0.75rem 0 0; } + [direction="rtl"] .review-tab.nav-pills li:last-child a.nav-link { + border-radius: 0.75rem 0 0 0; } + [direction="rtl"] .form-head .btn i { + margin-left: 5px; + margin-right: 0; } + [direction="rtl"] .iconbox { + padding-left: 0; + padding-right: 70px; } + [direction="rtl"] .iconbox i { + left: auto; + right: 0; } + [direction="rtl"] .table.tr-rounded tr td:first-child, [direction="rtl"] .table.tr-rounded tr th:first-child { + border-radius: 0 1.25rem 1.25rem 0; } + [direction="rtl"] .table.tr-rounded tr td:last-child, [direction="rtl"] .table.tr-rounded tr th:last-child { + border-radius: 1.25rem 0 0 1.25rem; } + [direction="rtl"] .custom-switch.toggle-switch.text-right { + padding-left: 48px; + padding-right: 0; } + [direction="rtl"] .toggle-switch.text-right .custom-control-label:before { + right: auto !important; + left: -47px; } + [direction="rtl"] .toggle-switch.text-right .custom-control-label:after { + right: auto !important; + left: -28px; } + [direction="rtl"] .toggle-switch.text-right .custom-control-input:checked ~ .custom-control-label:after { + left: -62px; + right: auto !important; } + [direction="rtl"] .check-switch { + padding-right: 40px; } + [direction="rtl"] .check-switch .custom-control-label:after, [direction="rtl"] .check-switch .custom-control-label:before { + right: -35px !important; } + [direction="rtl"] .bar-chart .apexcharts-yaxis { + transform: translatex(101%); } + [direction="rtl"] .detault-daterange .input-group-text { + padding: 0.532rem 0.75rem; + padding-right: auto; + padding-left: 0; } + [direction="rtl"] .form-wrapper .input-group .form-control { + text-align: left; } + [direction="rtl"] .timeline-chart .apexcharts-yaxis { + transform: translateX(0); } + [direction="rtl"] .card-table td:first-child { + padding-right: 30px; + padding-left: 10px; } + [direction="rtl"] .card-table td:last-child { + padding-left: 30px; + padding-right: 10px; } + [direction="rtl"] .chatbox .img_cont { + margin-right: 0px; + margin-left: 10px; } + [direction="rtl"] .profile-tab .nav-item .nav-link { + margin-right: 0; + margin-left: 30px; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .profile-tab .nav-item .nav-link { + margin-left: 0px; } } + [direction="rtl"] .widget-timeline .timeline > li > .timeline-panel { + margin-left: 0px; + margin-right: 40px; } + [direction="rtl"] .widget-timeline.style-1 .timeline .timeline-badge.timeline-badge + .timeline-panel { + padding: 5px 15px 5px 10px; + border-width: 0px 5px 0px 0px; } + [direction="rtl"] .widget-timeline.style-1 .timeline .timeline-badge.timeline-badge + .timeline-panel:after { + border: 0; + right: -9px; + width: 7px; + left: auto; + height: 7px; } + [direction="rtl"] .widget-timeline .timeline > li > .timeline-badge { + left: auto; + right: 0px; } + [direction="rtl"] .widget-timeline .timeline > li > .timeline-panel:after { + left: auto; + right: -5px; } + [direction="rtl"] .chatbox .msg_cotainer { + margin-left: 0; + margin-right: 10px; } + [direction="rtl"] .new-arrival-content .price { + float: left; } + [direction="rtl"] .input-group > .bootstrap-select:not(:first-child) .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; } + [direction="rtl"] .input-group > .bootstrap-select:not(:last-child) .dropdown-toggle { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + [direction="rtl"] .breadcrumb-item + .breadcrumb-item { + padding-right: 0.5rem; + padding-left: 0; } + [direction="rtl"] .breadcrumb-item + .breadcrumb-item::before { + padding-right: 0; + padding-left: 0.5rem; } + [direction="rtl"] .chatbox .chatbox-close { + left: 340px; + right: auto; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .chatbox .chatbox-close { + left: 280px; } } + [direction="rtl"] .separator { + margin-right: 0; + margin-left: 9px; } + [direction="rtl"] .card-tabs .nav-tabs { + padding-right: 5px; } + [direction="rtl"] .chatbox .msg_cotainer { + margin-left: 0; + margin-right: 10px; + border-radius: 1.375rem 0 1.375rem 1.375rem; } + [direction="rtl"] .chatbox .msg_cotainer:after { + left: auto; + right: -10px; + transform: rotate(-90deg); } + [direction="rtl"] .chatbox .type_msg .input-group .input-group-append .btn { + border-top-right-radius: 38px !important; + border-bottom-right-radius: 38px !important; } + [direction="rtl"] .chatbox .msg_cotainer_send { + margin-right: 0px; + margin-left: 10px; + border-radius: 0 6px 6px 6px; } + [direction="rtl"] .chatbox .msg_cotainer_send:after { + right: auto; + left: -10px; + transform: rotate(90deg); } + [direction="rtl"] .new-arrival-content .price { + float: left; } + [direction="rtl"] .trending-menus .tr-row .num { + margin-right: 0; + margin-left: 15px; } + [direction="rtl"] .default-select.style-2 .btn:after { + margin-left: 0; + margin-right: 0.5em; } + [direction="rtl"] .widget-timeline-icon li .icon { + left: auto; + right: -2px; } + [direction="rtl"] .widget-timeline-icon li a { + padding: 25px 0px 0px 50px; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .widget-timeline-icon .timeline { + margin-left: 0; + margin-right: 10px; } + [direction="rtl"] .widget-timeline-icon li { + border-left: 0; + border-right: 6px solid #F93A0B; } + [direction="rtl"] .widget-timeline-icon li a { + padding: 0 30px 30px 0; } + [direction="rtl"] .widget-timeline-icon li .icon { + right: -12px; } + [direction="rtl"] .widget-timeline-icon li:last-child { + border-color: transparent; } } + [direction="rtl"] #revenueMap .apexcharts-yaxis, [direction="rtl"] #customerMapkm .apexcharts-yaxis { + transform: translateX(0px); } + [direction="rtl"] .mail-list .list-group-item i { + padding-right: 0; + padding-left: 0.625rem; } + [direction="rtl"] .dlab-demo-panel { + right: auto; + left: -380px; } + [direction="rtl"] .dlab-demo-panel.show { + right: unset; + left: 0; } + [direction="rtl"] .dlab-demo-panel .dlab-demo-trigger { + left: 100%; + right: auto; + border-radius: 0 5px 5px 0; + box-shadow: 5px 3px 5px 0px rgba(119, 119, 119, 0.15); } + [direction="rtl"][data-layout="horizontal"] .content-body { + margin-right: 0; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu li li .has-arrow:after { + -webkit-transform: rotate(-4deg) translateY(-50%); + transform: rotate(-45deg) translateY(-50%); } + [direction="rtl"][data-sidebar-style="mini"]:not([data-layout="horizontal"]) .content-body { + margin-right: 6.25rem; } + [direction="rtl"][data-sidebar-style="compact"]:not([data-layout="horizontal"]) .content-body { + margin-right: 11.25rem; } + [direction="rtl"][data-sidebar-style="overlay"] .content-body { + margin-right: 0; } + [direction="rtl"] #external-events .external-event:before { + margin-right: 0; + margin-left: .9rem; } + [direction="rtl"] .post-input a i { + margin-left: 15px; + margin-right: 0; } + [direction="rtl"][data-sidebar-style="compact"] .dlabnav .metismenu .has-arrow:after { + -webkit-transform: rotate(-45deg) translateY(-50%); + transform: rotate(-45deg) translateY(-50%); } + [direction="rtl"] .dlabnav .metismenu .has-arrow:after { + -webkit-transform: rotate(-135deg) translateY(-50%); + transform: rotate(-135deg) translateY(-50%); } + [direction="rtl"] .dlabnav .metismenu .has-arrow[aria-expanded=true]:after, + [direction="rtl"] .dlabnav .metismenu .mm-active > .has-arrow:after { + -webkit-transform: rotate(-135deg) translateY(-50%); + transform: rotate(-135deg); } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu .has-arrow[aria-expanded=true]:after, + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu .mm-active > .has-arrow:after { + -webkit-transform: rotate(-45deg) translateY(-50%); + transform: rotate(-45deg); } + [direction="rtl"] .chatbox { + left: -500px; + right: auto; } + [direction="rtl"] .chatbox.active { + left: 0; + right: auto; } + @media only screen and (max-width: 575px) { + [direction="rtl"] .best-doctor .timeline .timeline-panel .media { + float: right; + margin-right: 0 !important; + margin-left: 15px !important; } } + [direction="rtl"] .default-select.style-1 .btn:after { + margin-left: 0; + margin-right: 0.5em; } + [direction="rtl"] .pagination .page-indicator { + transform: rotate(180deg); + -moz-transform: rotate(180deg); + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); } + [direction="rtl"] .lg-outer.lg-visible { + direction: ltr; } + [direction="rtl"] .chart-point .chart-point-list { + margin: 0; + padding-right: 20px; } + [direction="rtl"] .noUi-target { + direction: rtl; } + [direction="rtl"] .noUi-vertical .noUi-pips-vertical { + left: -20px; } + [direction="rtl"] .noUi-vertical .noUi-value-vertical { + padding-left: 0; + padding-right: 25px; } + [direction="rtl"] .sidebar-right .ps--active-x > .ps__rail-x { + display: none; } + [direction="rtl"] .form-wizard .nav-wizard li .nav-link:after { + right: 50%; + left: auto; } + [direction="rtl"] .dtp > .dtp-content { + right: 50%; + left: auto; } + [direction="rtl"] .modal-header .close { + margin: 0; + left: 0; + top: 0px; + right: auto; } + [direction="rtl"] .input-group-prepend .btn + .btn { + border-radius: 0 !important; } + [direction="rtl"] .form-control + .input-group-append .btn:first-child { + border-top-right-radius: 0 !important; + border-bottom-right-radius: 0 !important; } + [direction="rtl"] .input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0.75rem; + border-top-left-radius: 0.75rem; } + [direction="rtl"] .custom-file-label::after { + border-radius: .75rem 0 0 .75rem; } + [direction="rtl"] .input-group > .custom-file:not(:last-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } + [direction="rtl"] .input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-radius: 0; } + +@media only screen and (max-width: 1350px) and (min-width: 1200px) { + [direction="rtl"] .content-body { + margin-right: 17rem; } } +[direction="rtl"] .sidebar-right { + right: auto; + left: -50rem; } + [direction="rtl"] .sidebar-right.show { + left: 5.25rem; + right: unset; } + [direction="rtl"] .sidebar-right .sidebar-right-trigger { + left: 100%; + right: auto; + border-radius: 0 5px 5px 0; + box-shadow: 5px 3px 5px 0px rgba(119, 119, 119, 0.15); } + [direction="rtl"] .sidebar-right .sidebar-close-trigger { + right: auto; + left: -48px; } +[direction="rtl"] .bootstrap-select .dropdown-toggle .filter-option { + text-align: right; } + +html[dir="rtl"] [direction="rtl"] .footer { + padding-right: 17.1875rem; + padding-left: 0; } + @media (max-width: 767.98px) { + html[dir="rtl"] [direction="rtl"] .footer { + padding-right: 0; } } +html[dir="rtl"] [direction="rtl"][data-sidebar-style="overlay"] .footer { + padding-right: 0; } +html[dir="rtl"] [direction="rtl"] .menu-toggle .footer { + padding-right: 3.75rem; } +html[dir="rtl"] [direction="rtl"][data-container="boxed"] .footer { + padding-right: 0; } +html[dir="rtl"] [direction="rtl"][data-sidebar-style="mini"]:not([data-layout="horizontal"]) .footer { + padding-right: 3.75rem; } +html[dir="rtl"] [direction="rtl"][data-sidebar-style="compact"]:not([data-layout="horizontal"]) .footer { + padding-right: 9.375rem; } + +.nav-label { + margin: 0.625rem 1.875rem 0; + padding: 1.5625rem 0 0.625rem; + text-transform: uppercase; + font-size: 0.75rem; + letter-spacing: 0.05rem; + border-top: 0.0625rem solid #eaeaea; + color: #999999; } + [data-theme-version="dark"] .nav-label { + border-color: #2e2e42; } + .nav-label.first { + border: 0rem; + margin-top: 0rem; } + +.nav-badge { + position: absolute; + right: 2.8125rem; + top: 0.625rem; } + +.content-body { + margin-left: 20.563rem; + z-index: 0; + transition: all .2s ease; } + @media only screen and (max-width: 87.5rem) { + .content-body { + margin-left: 17rem; } } + +.bell img { + -webkit-animation: ring 8s .7s ease-in-out infinite; + -webkit-transform-origin: 50% 0.25rem; + -moz-animation: ring 8s .7s ease-in-out infinite; + -moz-transform-origin: 50% 0.25rem; + animation: ring 8s .7s ease-in-out infinite; } + +@-webkit-keyframes ring { + 0% { + -webkit-transform: rotateZ(0); } + 1% { + -webkit-transform: rotateZ(30deg); } + 3% { + -webkit-transform: rotateZ(-28deg); } + 5% { + -webkit-transform: rotateZ(34deg); } + 7% { + -webkit-transform: rotateZ(-32deg); } + 9% { + -webkit-transform: rotateZ(30deg); } + 11% { + -webkit-transform: rotateZ(-28deg); } + 13% { + -webkit-transform: rotateZ(26deg); } + 15% { + -webkit-transform: rotateZ(-24deg); } + 17% { + -webkit-transform: rotateZ(22deg); } + 19% { + -webkit-transform: rotateZ(-20deg); } + 21% { + -webkit-transform: rotateZ(18deg); } + 23% { + -webkit-transform: rotateZ(-16deg); } + 25% { + -webkit-transform: rotateZ(14deg); } + 27% { + -webkit-transform: rotateZ(-12deg); } + 29% { + -webkit-transform: rotateZ(10deg); } + 31% { + -webkit-transform: rotateZ(-8deg); } + 33% { + -webkit-transform: rotateZ(6deg); } + 35% { + -webkit-transform: rotateZ(-4deg); } + 37% { + -webkit-transform: rotateZ(2deg); } + 39% { + -webkit-transform: rotateZ(-1deg); } + 41% { + -webkit-transform: rotateZ(1deg); } + 43% { + -webkit-transform: rotateZ(0); } + 100% { + -webkit-transform: rotateZ(0); } } +@-moz-keyframes ring { + 0% { + -moz-transform: rotate(0); } + 1% { + -moz-transform: rotate(30deg); } + 3% { + -moz-transform: rotate(-28deg); } + 5% { + -moz-transform: rotate(34deg); } + 7% { + -moz-transform: rotate(-32deg); } + 9% { + -moz-transform: rotate(30deg); } + 11% { + -moz-transform: rotate(-28deg); } + 13% { + -moz-transform: rotate(26deg); } + 15% { + -moz-transform: rotate(-24deg); } + 17% { + -moz-transform: rotate(22deg); } + 19% { + -moz-transform: rotate(-20deg); } + 21% { + -moz-transform: rotate(18deg); } + 23% { + -moz-transform: rotate(-16deg); } + 25% { + -moz-transform: rotate(14deg); } + 27% { + -moz-transform: rotate(-12deg); } + 29% { + -moz-transform: rotate(10deg); } + 31% { + -moz-transform: rotate(-8deg); } + 33% { + -moz-transform: rotate(6deg); } + 35% { + -moz-transform: rotate(-4deg); } + 37% { + -moz-transform: rotate(2deg); } + 39% { + -moz-transform: rotate(-1deg); } + 41% { + -moz-transform: rotate(1deg); } + 43% { + -moz-transform: rotate(0); } + 100% { + -moz-transform: rotate(0); } } +@keyframes ring { + 0% { + transform: rotate(0); } + 1% { + transform: rotate(30deg); } + 3% { + transform: rotate(-28deg); } + 5% { + transform: rotate(34deg); } + 7% { + transform: rotate(-32deg); } + 9% { + transform: rotate(30deg); } + 11% { + transform: rotate(-28deg); } + 13% { + transform: rotate(26deg); } + 15% { + transform: rotate(-24deg); } + 17% { + transform: rotate(22deg); } + 19% { + transform: rotate(-20deg); } + 21% { + transform: rotate(18deg); } + 23% { + transform: rotate(-16deg); } + 25% { + transform: rotate(14deg); } + 27% { + transform: rotate(-12deg); } + 29% { + transform: rotate(10deg); } + 31% { + transform: rotate(-8deg); } + 33% { + transform: rotate(6deg); } + 35% { + transform: rotate(-4deg); } + 37% { + transform: rotate(2deg); } + 39% { + transform: rotate(-1deg); } + 41% { + transform: rotate(1deg); } + 43% { + transform: rotate(0); } + 100% { + transform: rotate(0); } } +.dlabnav { + width: 20.5rem; + padding-bottom: 0; + height: calc(100% - 7.5rem); + position: absolute; + top: 7.5rem; + padding-top: 0; + z-index: 6; + background-color: var(--sidebar-bg); + transition: all .2s ease; + box-shadow: 0rem 0.9375rem 1.875rem 0rem rgba(0, 0, 0, 0.02); } + @media only screen and (max-width: 87.5rem) { + .dlabnav { + top: 5.5rem; + height: calc(100% - 78px); } } + @media only screen and (max-width: 74.9375rem) { + .dlabnav { + top: 5rem; + height: calc(100% - 70px); } } + @media only screen and (max-width: 47.9375rem) { + .dlabnav { + width: 18rem; } } + .dlabnav .dlabnav-scroll { + position: relative; + height: 100%; } + @media only screen and (max-width: 87.5rem) { + .dlabnav { + width: 17rem; } } + .dlabnav ul { + padding: 0; + margin: 0; + list-style: none; } + .dlabnav .metismenu { + display: flex; + flex-direction: column; + padding-top: 0.9375rem; } + .dlabnav .metismenu.fixed { + position: fixed; + top: 0; + width: 100%; + left: 0; } + .dlabnav .metismenu > li { + display: flex; + flex-direction: column; } + .dlabnav .metismenu > li a > i { + font-size: 1.3rem; + display: inline-block; + vertical-align: middle; + position: relative; + top: 0; + height: auto; + width: auto; + text-align: center; + margin-right: 1.25rem; + border-radius: 0.125rem; + line-height: 1; + border-radius: 0.125rem; } + [data-sidebar-style="compact"] .dlabnav .metismenu > li a > i { + display: block; + padding: 0; + background: rgba(0, 0, 0, 0.05); + /* background:rgba($light,0.2); */ + color: rgba(0, 0, 0, 0.3); + width: 3.75rem; + height: 3.75rem; + border-radius: 1.25rem; + line-height: 3.75rem; + margin-left: auto; + margin-right: auto; + margin-bottom: 0.3125rem; } + [data-sidebar-style="compact"] .dlabnav .metismenu > li a > i[data-theme-version="dark"] { + color: #fff; } + @media only screen and (max-width: 84.375rem) { + .dlabnav .metismenu > li a > i { + height: auto; + line-height: 0.0625rem; + width: auto; + font-size: 1.5rem; + padding: 0; + color: #969BA0; } } + .dlabnav .metismenu > li > a { + font-weight: 500; + display: inline-block; + font-size: 1rem; + color: #737B8B; } + .dlabnav .metismenu > li > a i { + color: #96A0AF; } + .dlabnav .metismenu > li > a svg { + max-width: 1.5rem; + max-height: 1.5rem; + height: 100%; + margin-right: 0.3125rem; + margin-top: -0.1875rem; + color: var(--primary); } + .dlabnav .metismenu > li > a g [fill] { + fill: #8088a1; } + .dlabnav .metismenu > li:hover > a, .dlabnav .metismenu > li:focus > a { + /* background-color: lighten($color: $primary, $amount: 40%); */ + color: var(--primary); } + .dlabnav .metismenu > li:hover > a g [fill], .dlabnav .metismenu > li:focus > a g [fill] { + fill: var(--primary); } + .dlabnav .metismenu > li.mm-active > a { + color: var(--primary) !important; + background: var(--rgba-primary-1); + font-weight: 600; + box-shadow: none; } + .dlabnav .metismenu > li.mm-active > a i { + font-weight: 100; } + .dlabnav .metismenu > li.mm-active > a g [fill] { + fill: var(--primary); } + .dlabnav .metismenu > li.mm-active > a:after { + border-top: 0.3125rem solid var(--primary); + border-left: 0.3125rem solid var(--primary); } + [data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a i { + background: var(--rgba-primary-1); + color: var(--primary) !important; } + .dlabnav .metismenu li { + position: relative; } + .dlabnav .metismenu ul { + transition: all .2s ease-in-out; + position: relative; + z-index: 1; + padding: 0.5rem 0; } + .dlabnav .metismenu ul a { + padding-top: .5rem; + padding-bottom: .5rem; + position: relative; + font-size: 0.9375rem; + padding-left: 5rem; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } + @media only screen and (max-width: 84.375rem) { + .dlabnav .metismenu ul a { + padding-left: 4.6rem; } } + @media only screen and (max-width: 47.9375rem) { + .dlabnav .metismenu ul a { + padding-left: 3.5rem; + font-size: 0.875rem; } } + [data-sidebar-style="full"] .dlabnav .metismenu ul a:before { + content: ""; + height: 0.125rem; + width: 0.375rem; + background: var(--rgba-primary-5); + position: absolute; + left: 2.5rem; + top: 50%; + transform: translateY(-50%); + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } + [data-sidebar-style="full"] .dlabnav .metismenu ul a:hover { + padding-left: 5.5rem; } + @media only screen and (max-width: 78.125rem) { + [data-sidebar-style="full"] .dlabnav .metismenu ul a:hover { + padding-left: 4.5rem; } } + [data-sidebar-style="full"] .dlabnav .metismenu ul a:hover:before { + width: 1.25rem; } + .dlabnav .metismenu ul a:hover, .dlabnav .metismenu ul a:focus, .dlabnav .metismenu ul a.mm-active { + text-decoration: none; + color: var(--primary); } + .dlabnav .metismenu ul a:before { + position: absolute; + content: none; + height: 0.125rem; + width: 0.5rem; + top: 50%; + left: 1.75rem; + border-radius: 3.75rem; + transform: translateY(-50%); } + @media only screen and (max-width: 84.375rem) { + .dlabnav .metismenu ul a:before { + left: 2.8125rem; } } + .dlabnav .metismenu a { + position: relative; + display: block; + padding: 0.625rem 1.875rem; + outline-width: 0; + color: #759791; + text-decoration: none; } + @media only screen and (max-width: 47.9375rem) { + .dlabnav .metismenu a { + padding: 0.625rem 1.25rem; } } + .dlabnav .metismenu .has-arrow:after { + /* width: .5rem; + height: .5rem; + border-color: inherit; */ + border-top: 0.3125rem solid #C8C8C8; + border-left: 0.3125rem solid #C8C8C8; + border-bottom: 0.3125rem solid transparent; + border-right: 0.3125rem solid transparent; + right: 1.875rem; + top: 48%; + -webkit-transform: rotate(-225deg) translateY(-50%); + transform: rotate(-225deg) translateY(-50%); } + .dlabnav .metismenu .has-arrow[aria-expanded=true]:after, + .dlabnav .metismenu .mm-active > .has-arrow:after { + -webkit-transform: rotate(-135deg) translateY(-50%); + transform: rotate(-135deg) translateY(-50%); + /* margin-right: 2rem; */ } + .dlabnav .main-menu { + padding: 0.625rem 1.875rem; } + .dlabnav .header-info2 { + padding: 0 20px; } + .dlabnav .header-info2 img { + height: 3.75rem; + width: 3.75rem; + border-radius: 1.25rem; + margin-right: 1.2rem; } + .dlabnav .header-info2 span { + font-size: 1.25rem; + font-weight: 500; + color: #393939; } + @media only screen and (max-width: 87.5rem) { + .dlabnav .header-info2 span { + font-size: 0.9rem; } } + .dlabnav .header-info2 i { + margin-left: 1rem; + font-size: 1.2rem; } + @media only screen and (max-width: 87.5rem) { + .dlabnav .header-info2 { + padding: 0; } } + +.copyright { + padding: 0 1.875rem; + color: #9fa4a6; + margin-top: 1.875rem; } + .copyright p { + font-size: 0.875rem; } + .copyright strong { + display: block; + font-size: 0.875rem; } + +@media only screen and (max-width: 63.9375rem) { + .nav-header { + width: 5rem; } } + +@media (max-width: 47.9375rem) { + .brand-title { + display: none; } + + .footer { + padding-left: 0; } + + .dlabnav { + left: 0; + top: 5rem; } } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu > ul.collapse:not(.in), +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu > ul.collapse:not(.in) { + height: 15.75rem !important; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu:hover > a, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu:hover > a { + width: calc(70vw + 3.75rem); } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu:hover > ul, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu:hover > ul { + display: flex; + flex-wrap: wrap; + flex-direction: column; + max-height: 13.75rem; + width: 70vw; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu:hover > ul ul a, + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu:hover > ul ul a { + width: 101%; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-xl:hover > a, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-xl:hover > a { + width: calc(70vw + 3rem); } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-xl:hover > ul, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-xl:hover > ul { + max-height: 12.5rem; + width: 70vw; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-xl:hover > ul ul a, + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-xl:hover > ul ul a { + width: 101%; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-lg:hover > a, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-lg:hover > a { + width: calc(55vw + 3rem); } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-lg:hover > ul, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-lg:hover > ul { + max-height: 12.5rem; + width: 55vw; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-lg:hover > ul ul a, + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-lg:hover > ul ul a { + width: 101%; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-md:hover > a, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-md:hover > a { + width: calc(45vw + 3); } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-md:hover > ul, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-md:hover > ul { + max-height: 18.75rem; + width: 45vw; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-md:hover > ul ul a, + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-md:hover > ul ul a { + width: 101%; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-sm:hover > a, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-sm:hover > a { + width: calc(30vw + 3); } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-sm:hover > ul, +[data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-sm:hover > ul { + max-height: 18.125rem; + width: 30vw; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mega-menu-sm:hover > ul ul a, + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mega-menu-sm:hover > ul ul a { + width: 101%; } + +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu:hover > a { + width: calc(60vw + 3.75rem); } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu:hover > ul { + display: flex; + flex-wrap: wrap; + flex-direction: column; + max-height: 25rem; + width: 60vw; } + [data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu:hover > ul ul a { + width: 101%; } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-xl:hover > a { + width: calc(60vw + 3.75rem); } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-xl:hover > ul { + max-height: 25.625rem; + width: 60vw; } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-lg:hover > a { + width: calc(50vw + 3.75rem); } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-lg:hover > ul { + max-height: 16.25rem; + width: 50vw; } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-md:hover > a { + width: calc(40vw + 3.75rem); } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-md:hover > ul { + max-height: 18.75rem; + width: 40vw; } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-sm:hover > a { + width: calc(22vw + 3.75rem); } +[data-sidebar-style="mini"][data-layout="vertical"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-sm:hover > ul { + max-height: 18.125rem; + width: 22vw; } + +[data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:not(:last-child) { + position: static; } +[data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul { + left: 0; + right: 0; } + [data-theme-version="dark"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #2e2e42; } + [data-sibebarbg="color_2"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #3d0894; } + [data-sibebarbg="color_3"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #9a2104; } + [data-sibebarbg="color_4"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #1f0243; } + [data-sibebarbg="color_5"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #921925; } + [data-sibebarbg="color_6"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #aa4e01; } + [data-sibebarbg="color_7"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #a07800; } + [data-sibebarbg="color_8"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #cccccc; } + [data-sibebarbg="color_9"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #127155; } + [data-sibebarbg="color_10"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li { + border-color: #0c525d; } + [data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li a { + transition: all .4s ease-in-out; } + [data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu ul li a:hover { + border-radius: 0.25rem; } +[data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul { + display: flex; + flex-wrap: wrap; + flex-direction: column; + max-height: 13.75rem; + width: 70vw; + z-index: 99; } + [data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + content: ""; + height: 100%; + width: 0.0625rem; + position: absolute; + background-color: #fff; + right: 2.8125rem; + top: 0; } + [data-theme-version="dark"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #1e1e27; } + [data-sibebarbg="color_2"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #510bc4; } + [data-sibebarbg="color_3"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #cc2c05; } + [data-sibebarbg="color_4"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #360474; } + [data-sibebarbg="color_5"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #bd2130; } + [data-sibebarbg="color_6"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #dc6502; } + [data-sibebarbg="color_7"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #d39e00; } + [data-sibebarbg="color_8"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #e6e6e6; } + [data-sibebarbg="color_9"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #199d76; } + [data-sibebarbg="color_10"][data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul::after { + background-color: #117a8b; } + [data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu:hover > ul ul a { + width: 101%; } +[data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu-xl:hover > ul { + max-height: 13.125rem; + width: 70vw; } +[data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu-lg:hover > ul { + max-height: 13.125rem; + width: 43.75rem; + height: 13.125rem !important; } + @media only screen and (min-width: 75rem) and (max-width: 93.75rem) { + [data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu-lg:hover > ul { + width: 43.75rem; } } +[data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu-md:hover > ul { + max-height: 20rem; + width: 54vw; } + @media only screen and (min-width: 75rem) and (max-width: 93.75rem) { + [data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu-md:hover > ul { + width: 60vw; } } +[data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu-sm:hover > ul { + max-height: 20rem; + width: 25vw; } + @media only screen and (min-width: 75rem) and (max-width: 93.75rem) { + [data-layout="horizontal"] .dlabnav .metismenu > li.mega-menu-sm:hover > ul { + width: 35vw; } } + +[data-layout="horizontal"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu:hover > ul { + display: flex; + flex-wrap: wrap; + flex-direction: column; } +[data-layout="horizontal"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-xl:hover > ul { + max-height: 21.875rem; + width: 100%; } +[data-layout="horizontal"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-lg:hover > ul { + max-height: 21.875rem; + width: 55vw; } +[data-layout="horizontal"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-md:hover > ul { + max-height: 18.75rem; + width: 45vw; } +[data-layout="horizontal"][data-container="boxed"] .dlabnav .metismenu > li.mega-menu-sm:hover > ul { + max-height: 18.125rem; + width: 50vw; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +/* +0 - 600: Phone +600 - 900: Tablet portrait +900 - 1200: Tablet landscape +1200 - 1800: Normal styles +1800+ : Big Desktop +1em = 16px +The smaller device rules always should write below the bigger device rules +Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component +*/ +[data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li { + /* padding:0 1.25rem; */ } + [data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li > a { + font-size: 1rem; + padding: 1.375rem 2.1875rem; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } + [data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li > a:before { + position: absolute; + content: ""; + background: var(--primary); + width: 0; + height: 100%; + top: 0; + right: 0rem; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; + border-radius: 1.25rem; } + [data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a:before { + width: 0.563rem; } + @media only screen and (max-width: 87.5rem) { + [data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a:before { + width: 0.600rem; } } + [data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: var(--primary); + font-weight: 300; } + [data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li .has-arrow:after { + right: 1.5rem; } + @media only screen and (max-width: 87.5rem) { + [data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li { + padding: 0 0; } + [data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li > a { + font-size: 1rem; + padding: 0.9375rem 1.25rem; } } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .nav-header { + width: 6.5rem; + z-index: 999; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .nav-header .brand-logo { + padding-left: 0; + padding-right: 0; + justify-content: center; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .nav-header .nav-control { + right: -4rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .nav-header .nav-control .hamburger .line { + background-color: var(--primary); } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .copyright, +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .plus-box { + display: none; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .header { + padding-left: 7.5rem; + width: 100%; } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .header { + padding: 0 0.9375rem; + padding-right: 7.5rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .header .header-content { + padding-left: 5rem; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav { + width: 6.5rem; + overflow: visible; + position: absolute; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .nav-text { + display: none; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .slimScrollDiv, + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .dlabnav-scroll { + overflow: visible !important; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .header-info2 { + padding: 0; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .sidebar-info { + display: none !important; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .header-profile2 { + margin: 0 0.5rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li { + position: relative; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li a { + background: transparent; + margin: 0.125rem 0; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li a svg { + max-width: 1.5rem; + max-height: 1.5rem; + margin-right: 0; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li a:before { + content: none; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li a i { + margin: 0; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li > ul { + position: absolute; + left: 5.8rem; + top: 0; + width: 12rem; + z-index: 1001; + display: none; + padding-left: 0.0625rem; + height: auto !important; + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); + border-radius: 0.375rem; + margin-left: 0; + border: 0; + background: #fff; } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li > ul { + left: auto; + right: 5rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li > ul li:hover ul { + left: 11.8125rem; + top: 0; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li > ul li:hover ul:after { + content: none; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li:hover > ul { + display: block; + height: auto; + overflow: visible; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li { + transition: all 0.4s ease-in-out; + padding: 0 1.125rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li > a { + padding: 1.25rem 1.125rem; + text-align: center; + border-radius: 3rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li > a.has-arrow:after { + display: none; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mm-active > a { + background: var(--rgba-primary-1); + border-radius: 3rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li.mm-active > a i { + color: var(--primary); + padding: 0; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li:hover:nth-last-child(-n + 1) > ul { + bottom: 0; + top: auto; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li:hover > a { + border-radius: 3rem; + background: var(--rgba-primary-1); + color: var(--primary); } + [data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li:hover > a { + background: #212130; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li:hover > a i { + color: var(--primary); + /* background:$primary; */ } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li:hover > ul { + height: auto !important; + padding: 0.625rem 0; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li:hover > ul a { + padding: 0.375rem 1.25rem 0.375rem 1.25rem; + margin-left: -.1rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li:hover > ul ul { + padding: 0.625rem 0; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu > li:hover > ul ul a { + padding: 0.375rem 1.25rem 0.375rem 1.25rem; + margin-left: -.1rem; } + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu .nav-label, + [data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu .nav-badge { + display: none; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .content-body { + margin-left: 6.5rem; } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .content-body { + margin-right: 5.7rem; + margin-left: auto; + border: 0; } +[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle + .footer { + padding-left: 5.7rem; } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .menu-toggle + .footer { + padding-left: 0; + padding-right: 5.7rem; } + +[data-sidebar-style="full"][data-layout="horizontal"] .header .header-content { + padding-left: 1.875rem; } + +/* +0 - 600: Phone +600 - 900: Tablet portrait +900 - 1200: Tablet landscape +1200 - 1800: Normal styles +1800+ : Big Desktop +1em = 16px +The smaller device rules always should write below the bigger device rules +Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component +*/ +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +@media only screen and (min-width: 48rem) { + [data-sidebar-style="mini"] .nav-header { + width: 6.25rem; } + [data-sidebar-style="mini"] .nav-header .nav-control { + z-index: -1; } + [data-sidebar-style="mini"] .nav-header .nav-control .hamburger { + left: 6.25rem !important; } + [data-sidebar-style="mini"] .nav-header .nav-control .hamburger .line { + background-color: #6e6e6e !important; } + [data-sidebar-style="mini"] .nav-header .brand-title { + display: none; } + [data-sidebar-style="mini"] .nav-header .hamburger { + display: none; } + [data-sidebar-style="mini"] .header .header-content { + padding-left: 1.875rem; } + [direction="rtl"][data-sidebar-style="mini"] .header .header-content { + padding-right: 1.875rem; } + [data-sidebar-style="mini"] .dlabnav { + width: 6.25rem; + overflow: visible; + position: absolute; + z-index: 2; + top: 6.5rem; } + [data-sidebar-style="mini"] .dlabnav .copyright, + [data-sidebar-style="mini"] .dlabnav .plus-box { + display: none; } + [data-sidebar-style="mini"] .dlabnav .nav-text { + display: none; } + [data-sidebar-style="mini"] .dlabnav .slimScrollDiv, + [data-sidebar-style="mini"] .dlabnav .dlabnav-scroll { + overflow: visible !important; } + [data-sidebar-style="mini"] .dlabnav .nav-user { + padding: 0.6875rem; } + [data-sidebar-style="mini"] .dlabnav .nav-user .media-body { + display: none; } + [data-sidebar-style="mini"] .dlabnav .header-profile { + margin-bottom: 0; + margin-top: 0.75rem; } + [data-sidebar-style="mini"] .dlabnav .header-profile:hover > a.nav-link { + border-radius: 3rem; } + [data-sidebar-style="mini"] .dlabnav .header-profile img { + width: 3rem; + height: 3rem; } + [data-sidebar-style="mini"] .dlabnav .header-profile > a.nav-link { + border-radius: 3rem; + padding: 0.3125rem 0.3125rem; } + [data-sidebar-style="mini"] .dlabnav .header-profile .header-info { + display: none; } + [data-sidebar-style="mini"] .dlabnav .metismenu li a { + padding: 0.813rem 0.875rem; } + [data-sidebar-style="mini"] .dlabnav .metismenu li a svg { + margin-right: 0; } + [data-sidebar-style="mini"] .dlabnav .metismenu li a i { + height: auto; + width: auto; + line-height: 1; + margin: 0; } + [data-sidebar-style="mini"] .dlabnav .metismenu li > ul { + position: absolute; + left: 6.25rem; + top: 2.9375rem; + width: 11.875rem; + z-index: 1001; + display: none; + padding-left: 0.0625rem; + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); + height: auto !important; + border-radius: 1.25rem; + background: #fff; } + [direction="rtl"]:not([data-layout="horizontal"])[data-sidebar-style="mini"] .dlabnav .metismenu li > ul { + left: auto; + right: 6.25rem; + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); } + [data-sidebar-style="mini"] .dlabnav .metismenu > li { + padding: 0.125rem 1.25rem; } + [data-sidebar-style="mini"] .dlabnav .metismenu > li > a { + padding: 1.125rem 0.875rem; + /* width: 64px; + height: 64px; */ + text-align: center; + line-height: 1; + transition: all 0.5s; + -moz-transition: all 0.5s; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + -o-transition: all 0.5s; } + [data-sidebar-style="mini"] .dlabnav .metismenu > li > a > i { + padding: 0; + font-size: 1.375rem; } + [data-sidebar-style="mini"] .dlabnav .metismenu > li > a.has-arrow:after { + display: none; } + [data-sidebar-style="mini"] .dlabnav .metismenu .nav-label, + [data-sidebar-style="mini"] .dlabnav .metismenu .nav-badge { + display: none; } } + @media only screen and (min-width: 48rem) and (max-width: 63.9375rem) { + [data-sidebar-style="mini"] .dlabnav { + top: 5.5rem; } } +@media only screen and (min-width: 48rem) { + [data-sidebar-style="mini"] .dlabnav .header-info2 { + padding: 0; } + [data-sidebar-style="mini"] .dlabnav .sidebar-info { + display: none !important; } + [data-sidebar-style="mini"] .dlabnav .header-profile2 { + margin: 0 0.5rem; } + [data-sidebar-style="mini"] .content-body { + margin-left: 6.5rem; } + [data-sidebar-style="mini"] .footer { + padding-left: 6.5rem; } + [data-sidebar-style="mini"][data-header-position="fixed"] .content-body { + padding-top: 6.5rem; } } + @media only screen and (min-width: 48rem) and (max-width: 63.9375rem) { + [data-sidebar-style="mini"][data-header-position="fixed"] .content-body { + padding-top: 5.5rem; } } + +@media only screen and (min-width: 48rem) { + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav { + position: absolute !important; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu li:hover > ul { + display: block; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:nth-last-child(-n + 1) > ul { + bottom: 0; + top: auto !important; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:nth-last-child(-n + 1) > ul:after { + top: auto; + bottom: 1.25rem; } } + @media only screen and (min-width: 48rem) and (max-width: 74.9375rem) { + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:nth-last-child(-n + 1) > ul { + bottom: 0; + top: auto !important; } } +@media only screen and (min-width: 48rem) { + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li > ul { + overflow: visible; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li > ul:after { + content: none; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li > ul li:hover ul { + padding: 0.625rem 0; + width: 13rem; + left: 13rem; + top: -0.625rem; + border: 0; + margin: 0; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li > ul li:hover ul:after { + content: none; } + [direction="rtl"][data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li > ul li:hover ul { + left: auto; + right: 13rem; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a { + background: var(--rgba-primary-1); + color: #fff; + border-radius: 1.25rem; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: var(--primary); } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + background: var(--rgba-primary-1); + color: var(--primary); + /* box-shadow:0 12px 15px 0 var(--rgba-primary-1); */ + border-radius: 1.25rem; + position: unset; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + color: var(--primary); } + [direction="rtl"][data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a .nav-text { + padding-left: auto; + padding-right: 1.6875rem; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > ul { + height: auto !important; + overflow: visible; + border: 0; + margin-left: 0; + left: 6.25rem; + width: 13rem; + border-radius: 1.25rem; + border: 0; + padding: 0.625rem 0; + top: 0; } + [data-theme-version="dark"][data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > ul { + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); } + [direction="rtl"][data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > ul { + left: auto; + right: 6.25rem; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > ul a { + padding: 0.375rem 1.25rem 0.375rem 1.25rem; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > ul a:before { + content: none; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > ul a.has-arrow:after { + right: 1.25rem; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > ul ul a { + padding: 0.375rem 1.25rem 0.375rem 1.25rem; + margin-left: -0.1rem; } + [data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li:hover > ul ul a:before { + content: none; } + + [data-sidebar-style="mini"][data-header-position="fixed"][data-container="boxed"][data-layout="vertical"] .header { + width: 74.9375rem; } + + [data-sidebar-style="mini"][data-layout="horizontal"] .dlabnav .metismenu > li { + padding: 0; } + [data-sidebar-style="mini"][data-layout="horizontal"] .dlabnav .metismenu > li > a { + padding: 1.125rem; } + [data-sidebar-style="mini"][data-layout="horizontal"] .dlabnav .metismenu > li > a i { + padding: 0; + margin: 0; } + [direction="rtl"][data-sidebar-style="mini"][data-layout="horizontal"] .dlabnav .metismenu > li > a { + padding: 1.125rem; } + [direction="rtl"][data-sidebar-style="mini"][data-layout="horizontal"] .dlabnav .metismenu > li > a svg { + margin-left: 0; } + [data-sidebar-style="mini"][data-layout="horizontal"] .dlabnav .metismenu > li > a svg { + margin-right: 0; + margin-top: 0; } + [data-sidebar-style="mini"][data-layout="horizontal"] .dlabnav .metismenu > li > ul li a { + padding: 0.5rem 1.25rem 0.5rem 1.25rem; } } +@media only screen and (max-width: 74.9375rem) { + [data-sidebar-style="mini"] .dlabnav li.mm-active ul { + height: auto !important; } + [data-sidebar-style="mini"] .dlabnav li a.has-arrow::after { + transform: rotate(-45deg) translateY(-50%); } } +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +@media (min-width: 64rem) { + [data-layout="horizontal"] .nav-header { + width: 21.563rem; + height: 6.5rem; + top: 0; } + [data-layout="horizontal"] .nav-header .nav-control { + display: none; } + [data-layout="horizontal"] .nav-header .brand-logo { + padding-left: 2.5rem; + padding-right: 2.5rem; } + [data-layout="horizontal"] .header { + width: 100%; + height: 5.5rem; + padding-left: 21.563rem; + padding-top: 0; } + [data-layout="horizontal"] .dlabnav { + width: 100%; + position: relative; + height: auto; + padding-bottom: 0; + top: 0; + z-index: 2; } + [data-layout="horizontal"] .dlabnav .slimScrollDiv { + overflow: visible !important; } + [data-layout="horizontal"] .dlabnav .slimScrollDiv .dlabnav-scroll { + overflow: visible !important; } + [data-layout="horizontal"] .dlabnav .dlabnav-scroll { + overflow: visible !important; } + [data-layout="horizontal"] .dlabnav .slimScrollBar { + display: none !important; } + [data-layout="horizontal"] .dlabnav .header-profile { + margin-right: 0.9375rem; + margin-bottom: 0; + display: none; } + [data-layout="horizontal"] .dlabnav .header-profile:hover > a.nav-link { + border-radius: 3rem; } + [data-layout="horizontal"] .dlabnav .header-profile img { + height: 2.8125rem; + width: 2.8125rem; } + [data-layout="horizontal"] .dlabnav .header-profile > a.nav-link { + border-radius: 3rem; + padding: 0.3125rem 0.3125rem; } + [data-layout="horizontal"] .dlabnav .header-profile .header-info { + display: none; } + [data-layout="horizontal"] .dlabnav .header-profile2 { + display: none; } + [data-layout="horizontal"] .dlabnav .nav-user, + [data-layout="horizontal"] .dlabnav .nav-label { + display: none; } + [data-layout="horizontal"] .dlabnav .metismenu { + flex-direction: row; + padding: 0.625rem 1.25rem; + margin-bottom: 0; + display: inline-flex; + flex-wrap: wrap; } + [data-layout="horizontal"] .dlabnav .metismenu .collapse.in { + display: none; } + [data-layout="horizontal"] .dlabnav .metismenu ul { + border-left: 0; } + [data-theme-version="dark"][data-layout="horizontal"] .dlabnav .metismenu ul { + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); } + [data-layout="horizontal"] .dlabnav .metismenu li { + flex-direction: column; + position: relative; } + [data-layout="horizontal"] .dlabnav .metismenu li:hover > ul { + display: block; } + [data-layout="horizontal"] .dlabnav .metismenu li > ul { + position: absolute; + height: auto !important; + top: 100%; + width: 100%; + min-width: 13.75rem; + z-index: 999; + left: auto; + right: auto; + padding: 0.5rem 0; + display: none; + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); + margin: 0; + background: #fff; + border-radius: 1.25rem; } + [data-theme-version="dark"][data-layout="horizontal"] .dlabnav .metismenu li > ul { + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); + background: #212130; } + [data-layout="horizontal"] .dlabnav .metismenu li > ul li { + padding: 0; } + [data-layout="horizontal"] .dlabnav .metismenu li > ul li a { + transition: all .4s ease-in-out; + padding: 0.5rem 1.25rem 0.5rem 1.25rem; + margin-left: -.1rem; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu li > ul li a { + padding: 0.5rem 1.25rem 0.5rem 1.25rem; + text-align: right; } + [data-layout="horizontal"] .dlabnav .metismenu li > ul li a:hover { + border-radius: .4rem; + padding-left: 1.25rem; } + [data-layout="horizontal"] .dlabnav .metismenu li > ul li a:before { + content: none; + left: 1.375rem; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu li > ul li a:before { + left: auto; + right: 0.375rem; } + [data-layout="horizontal"] .dlabnav .metismenu li > ul ul { + left: 100%; + top: 0; + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu li > ul ul { + left: auto; + right: 100%; } + [data-layout="horizontal"] .dlabnav .metismenu > li { + flex: 0 0 auto; + position: relative; } + [data-layout="horizontal"] .dlabnav .metismenu > li > a i { + margin-right: 0.3125rem; } + [data-theme-version="dark"][data-layout="horizontal"] .dlabnav .metismenu > li { + border-color: rgba(255, 255, 255, 0.07); } + [data-theme-version="dark"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active { + border-color: transparent; } + [data-layout="horizontal"] .dlabnav .metismenu > li:hover, [data-layout="horizontal"] .dlabnav .metismenu > li.mm-active { + padding: 0; } + [data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a { + background: var(--rgba-primary-1) !important; + color: var(--primary); + border-radius: 1rem; } + [data-layout="horizontal"] .dlabnav .metismenu > li:hover > a i, [data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a i { + color: var(--primary); + background: transparent; + box-shadow: none; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu > li:first-child { + border-right: 0; } + [data-theme-version="dark"][direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu > li { + border-color: #2e2e42; } + [data-layout="horizontal"] .dlabnav .metismenu > li > a { + padding: 0.9375rem 2.5rem 0.9375rem 0.9375rem; + margin: 0.125rem 0.125rem; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu > li > a { + padding: 0.9375rem 0.9375rem 0.9375rem 2.5rem; } + [data-layout="horizontal"] .dlabnav .metismenu > li > a i { + padding: 0 0.4375rem 0 0; + height: auto; + width: auto; + line-height: 1; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu > li > a i { + padding: 0 0 0 0.4375rem; } + [data-layout="horizontal"] .dlabnav .metismenu > li > a .nav-badge { + display: none; } + [data-layout="horizontal"] .dlabnav .metismenu > li > a:after { + right: 1.25rem; + transform: rotate(-135deg) translateY(-50%); } + [data-layout="horizontal"] .dlabnav .metismenu > li:hover { + border-color: transparent; } + [data-layout="horizontal"] .dlabnav .metismenu > li:hover > ul { + display: flex !important; + flex-direction: column; + flex-wrap: wrap; + height: auto !important; + box-shadow: 0.3125rem 0.3125rem 1.875rem 0rem rgba(20, 0, 30, 0.1); + border-radius: 1.25rem; } + [data-theme-version="dark"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > ul { + box-shadow: 0.3125rem 0.3125rem 1.875rem 0rem rgba(0, 0, 0, 0.1); + background: #212130; } + [data-layout="horizontal"] .dlabnav .metismenu > li > ul > li:hover ul.collapse { + display: block !important; + position: absolute; + left: auto !important; + right: -100% !important; + top: 0 !important; } + [data-layout="horizontal"] .dlabnav .metismenu > li:nth-last-child(-n + 5) > ul { + left: auto; + right: 0; } + [data-layout="horizontal"] .dlabnav .metismenu > li:nth-last-child(-n + 5) > ul > li:hover ul.collapse { + right: auto !important; + left: -100% !important; } + [data-layout="horizontal"] .dlabnav .metismenu > li:nth-last-child(-n + 5) > ul.left { + left: 0; } + [data-layout="horizontal"] .dlabnav .metismenu > li:nth-last-child(-n + 5) > ul.left > li:hover ul.collapse { + left: 100% !important; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu > li:nth-last-child(-n + 5) > ul.left { + left: auto; + right: 0; } + [data-layout="horizontal"] .dlabnav .metismenu > li:last-child > ul ul { + left: -100%; } + [data-layout="horizontal"] .dlabnav .metismenu > li:last-child > ul.left ul { + left: 100%; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu > li:last-child > ul.left ul { + left: auto; + right: 100%; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu > li:nth-last-child(-n + 3) > ul { + left: 0; + right: auto; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu > li:nth-last-child(-n + 3) > ul > li:hover ul.collapse { + right: -100% !important; + left: auto !important; } + [data-layout="horizontal"] .dlabnav .copyright, + [data-layout="horizontal"] .dlabnav .plus-box { + display: none; } + [data-layout="horizontal"] .content-body { + margin-left: 0; } + [data-layout="horizontal"] .content-body .container-fluid, [data-layout="horizontal"] .content-body .container-sm, [data-layout="horizontal"] .content-body .container-md, [data-layout="horizontal"] .content-body .container-lg, [data-layout="horizontal"] .content-body .container-xl, [data-layout="horizontal"] .content-body .container-xxl { + padding-top: 2.5rem; } + [data-layout="horizontal"] .content-body .page-titles { + margin-left: 0 !important; + margin-right: 0 !important; + margin-bottom: 1.875rem; } + [data-layout="horizontal"] .footer { + margin-left: 0; + margin: 0 auto; + padding-left: 0; } + + [data-header-position="fixed"][data-layout="horizontal"] .dlabnav { + top: 6.5rem; } + [data-header-position="fixed"][data-layout="horizontal"] .header { + height: 6.5rem; } + [data-header-position="fixed"][data-layout="horizontal"] .content-body { + padding-top: 6.5rem; } + + [data-header-position="fixed"][data-sidebar-position="fixed"] .dlabnav { + position: fixed; } + + [data-header-position="fixed"][data-layout="horizontal"][data-sidebar-position="fixed"] .content-body { + padding-top: 11.5rem; } + + [data-header-position="fixed"][data-layout="horizontal"][data-sidebar-position="fixed"][data-sidebar-style="modern"] .content-body { + padding-top: 13.125rem; } + + [data-layout="horizontal"][data-container="boxed"] .footer { + margin-left: 0; + max-width: 74.9375rem; + margin: 0 auto; } + + [data-layout="horizontal"][data-container="wide"] .page-titles { + margin-left: -1.875rem; + margin-right: -1.875rem; } + + [data-layout="horizontal"][data-sidebar-style="modern"] .dlabnav .header-profile { + margin-bottom: 0; } + [data-layout="horizontal"][data-sidebar-style="modern"] .dlabnav .header-profile img { + height: 3.75rem; + width: 3.75rem; + margin-bottom: 0 !important; } + [data-layout="horizontal"][data-sidebar-style="modern"] .dlabnav .header-profile > a.nav-link { + border: 0.0625rem solid #EEEEEE; + padding: 0.25rem 0.25rem; + border-radius: 3rem; } + + [data-layout="horizontal"][data-sidebar-style="compact"] .page-titles { + margin-top: 0; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .header-profile { + margin-bottom: 0; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .header-profile img { + height: 3.75rem; + width: 3.75rem; + margin-bottom: 0 !important; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .header-profile > a.nav-link { + border: 0.0625rem solid #EEEEEE; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .metismenu > li > ul { + top: 4.5rem; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .metismenu > li > a { + padding: 1.125rem 1.25rem 0.625rem 1.25rem; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .metismenu > li > a::after { + display: none; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .metismenu > li > a .nav-text { + margin-top: 0.3125rem; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .metismenu > li > a > i { + width: auto; + margin: 0; + height: auto; + line-height: 1; + padding: 0; + background: transparent; + border-radius: 0; + margin-bottom: 0; } + [data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav .metismenu > li li { + text-align: left; } + + [data-sidebar-style="mini"][data-layout="horizontal"] .nav-header { + width: 7.75rem; + padding-left: 2.5rem; + padding-right: 2.5rem; } + [data-sidebar-style="mini"][data-layout="horizontal"] .nav-header .brand-logo { + justify-content: start; + padding-left: 0; + padding-right: 0; } + [data-sidebar-style="mini"][data-layout="horizontal"] .header { + width: 100%; + padding-left: 7.75rem; } + [data-sidebar-style="mini"][data-layout="horizontal"] .metismenu > li a { + width: auto; } + [data-sidebar-style="mini"][data-layout="horizontal"] .metismenu > li:hover a .nav-text { + display: none; } + + [data-header-position="fixed"][data-layout="horizontal"][data-sidebar-position="fixed"][data-sidebar-style="compact"] .content-body { + padding-top: 13.125rem; } + + [data-sidebar-position="fixed"][data-layout="horizontal"] .dlabnav.fixed { + position: fixed; + padding: 0 0.9375rem; + left: 0; + top: 0; + border-radius: 0; + width: 100%; } } +@media (min-width: 47.9375rem) { + [data-sidebar-style="compact"] .nav-header { + width: 11.25rem; } + [data-sidebar-style="compact"] .dlabnav .metismenu .has-arrow[aria-expanded=true]:after, [data-sidebar-style="compact"] .dlabnav .metismenu .mm-active > .has-arrow:after { + margin-right: 0; } + [data-sidebar-style="compact"] .dlabnav .header-profile { + margin-bottom: 0.3125rem; } + [data-sidebar-style="compact"] .dlabnav .header-profile > a.nav-link { + display: block; + text-align: center; + border: 0; } + [data-sidebar-style="compact"] .dlabnav .header-profile > a.nav-link img { + margin-bottom: 0.3125rem; } + [data-sidebar-style="compact"] .dlabnav .header-profile > a.nav-link .header-info { + margin-left: 0 !important; + text-align: center; + display: none; } + [data-sidebar-style="compact"] .dlabnav .header-profile > a.nav-link .header-info small, [data-sidebar-style="compact"] .dlabnav .header-profile > a.nav-link .header-info .small { + text-align: center !important; } + [data-sidebar-style="compact"] .dlabnav .header-profile .dropdown-menu { + min-width: 11rem; } + [data-sidebar-style="compact"] .dlabnav .header-profile a svg { + display: unset !important; } + [data-sidebar-style="compact"] .dlabnav .nav-user { + display: none; } + [data-sidebar-style="compact"] .dlabnav .metismenu li { + text-align: center; } + [data-sidebar-style="compact"] .dlabnav .metismenu li a { + padding: 0.7rem 0.5rem; } + [data-sidebar-style="compact"] .dlabnav .metismenu li a svg { + max-width: 1.3125rem; + max-height: 1.3125rem; + display: block; + margin-left: auto; + margin-right: auto; } + [data-sidebar-style="compact"] .dlabnav .metismenu li a i { + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } + [data-sidebar-style="compact"] .dlabnav .metismenu li ul:after { + content: none; } + [data-sidebar-style="compact"] .dlabnav .metismenu li > a { + background: transparent !important; + box-shadow: none; + font-size: 0.9375rem; } + [data-sidebar-style="compact"] .dlabnav .plus-box, [data-sidebar-style="compact"] .dlabnav .copyright { + display: none; } + [data-sidebar-style="compact"] .dlabnav .copyright { + padding: 0 1.25rem; + margin-top: 1.25rem; } + [data-sidebar-style="compact"] .dlabnav .header-info2 { + padding: 0; } + [data-sidebar-style="compact"] .dlabnav .sidebar-info { + display: none !important; } + [data-sidebar-style="compact"] .dlabnav .header-profile2 { + margin: 0 3rem; } + [data-sidebar-style="compact"] .nav-text { + display: inline-block; + margin-top: 0.3125rem; } + [data-sidebar-style="compact"] .nav-label.first { + display: none; } + [data-sidebar-style="compact"] .nav-badge { + display: none; } + [data-sidebar-style="compact"] .footer { + padding-left: 12.5rem; } + [data-sidebar-style="compact"] .content-body { + margin-left: 11.4rem; } + [data-sidebar-style="compact"][data-theme-version="dark"][data-layout="horizontal"] .dlabnav .metismenu li > a i { + color: #fff; } + [data-sidebar-style="compact"][data-theme-version="dark"][data-layout="vertical"] .dlabnav .metismenu li.mm-active > a i { + background: var(--primary); + color: #fff; } + [data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu li:hover > a i { + background: var(--rgba-primary-1); + color: var(--primary); } } +[data-layout="horizontal"][data-sidebar-style="compact"] .footer { + padding-left: 0; } +[data-layout="horizontal"][data-sidebar-style="compact"] .content-body { + margin-left: 0; } +[data-layout="horizontal"][data-sidebar-style="compact"] .dlabnav { + margin-bottom: 0; } +[data-layout="horizontal"][data-sidebar-style="compact"] .nav-header { + width: 21.75rem; } + [data-layout="horizontal"][data-sidebar-style="compact"] .nav-header .brand-logo { + padding-left: 2.5rem; + padding-right: 2.5rem; } + +[data-layout="vertical"][data-sidebar-style="compact"] .dlabnav { + width: 11.25rem; } + [data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu ul { + margin-left: 0; + border: 0; + background: rgba(0, 0, 0, 0.02); + padding: 0.625rem 0; } + [data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu ul { + background: 255, 255, 255, 0.05; } + [data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu ul a:before { + content: none; } + [data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu ul ul a { + padding: 0.625rem 0.9375rem; } + [data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li > a { + padding: 1.2rem 0.5rem; } + [data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li > a.has-arrow::after { + top: 0.0625rem; + display: inline-block; + right: auto; + margin-left: 0.3125rem; + position: relative; + width: 0.4375rem; + height: 0.4375rem; + border-width: 0.125rem 0rem 0rem 0.125rem; } + [direction="rtl"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li > a.has-arrow::after { + left: auto; + margin-left: 0; + margin-right: 0.3125rem; } + +@media (min-width: 47.9375rem) { + [data-sidebar-style="icon-hover"][data-layout="horizontal"] .header .header-content { + padding-left: 1.875rem; } + + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu li.mm-active > ul { + display: none; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .header-info2 { + justify-content: space-between; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .header-info2 img { + order: 1; + margin-right: 0; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .dlabnav .metismenu li.mm-active > ul { + display: block; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .nav-header { + width: 7rem; + border-radius: 0 0 0 0 !important; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .nav-header .brand-logo { + padding-left: 1.875rem; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .nav-header .brand-logo { + padding-left: 1.875rem; + padding-right: 1.875rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .nav-header .brand-logo .logo-abbr { + display: block; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .nav-header .brand-logo .brand-title { + display: none; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .nav-header .nav-control { + display: none; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .header { + padding-left: 7rem; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .header { + padding-right: 7rem; + padding-left: 0.9375rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .header .header-content { + padding-left: 2rem; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .header .header-content { + padding-right: 1.375rem; + padding-left: 0; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav { + overflow: visible; + position: absolute; + left: -13.5rem; } } + @media only screen and (min-width: 47.9375rem) and (min-width: 47.9375rem) and (max-width: 87.5rem) { + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav { + left: -10rem; } } +@media (min-width: 47.9375rem) { + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav { + left: auto; + right: -14.563rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .nav-label { + display: none; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .header-profile img { + order: 1; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .header-profile .header-info { + margin-left: 0 !important; + padding-left: 0 !important; + margin-right: 0.625rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li { + padding: 0 1.5625rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li > a { + display: flex; + justify-content: space-between; + padding: 1.25rem 1.25rem; + border-radius: 1rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li > a > svg, [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + order: 1; + margin-right: 0; + margin-top: 0; + padding-right: 0; + height: auto; + width: auto; + line-height: 1; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li > a > svg, [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + padding-left: 0; + padding-right: 0; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a { + background: var(--rgba-primary-1); + color: var(--primary); } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: var(--primary); } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul { + border-left: 0; + padding-left: 0; + padding-right: 0; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul { + padding-right: 0; + padding-left: 0; } + [data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul { + border-color: #2e2e42; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul:after { + left: auto; + right: 1.75rem; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul:after { + left: 1.75rem; + right: auto; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul a { + position: relative; + padding-left: 1.3rem; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul a { + padding-right: 1.25rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul a::before { + left: 1.25rem; + right: auto; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu ul a::before { + right: auto; + left: -0.3125rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu .has-arrow::after { + right: 5rem; + opacity: 0; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .metismenu .has-arrow::after { + right: auto; + left: 5rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .copyright, + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav .plus-box { + display: none; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .dlabnav.mm-show { + display: none; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .nav-header { + width: 20.5rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .nav-header .brand-logo { + padding-left: 1.6rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .nav-header .brand-logo .brand-title { + display: block; } } + @media only screen and (min-width: 47.9375rem) and (max-width: 87.5rem) { + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .nav-header { + width: 17rem; } } +@media (min-width: 47.9375rem) { + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle.mm-show { + display: block; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .header { + padding-left: 4.38rem; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .header { + padding-right: 4.38rem; + padding-left: 0.9375rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .dlabnav { + left: 0; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .dlabnav .metismenu .has-arrow:after { + opacity: 1; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .iconhover-toggle .dlabnav { + left: auto; + right: 0; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .content-body { + margin-left: 7rem; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .content-body { + margin-left: 0; + margin-right: 7rem; } + [data-sidebar-style="icon-hover"][data-layout="vertical"] .footer { + padding-left: 7rem; } + [direction="rtl"][data-sidebar-style="icon-hover"][data-layout="vertical"] .footer { + margin-left: 0; + margin-right: 7rem; } } +@media (min-width: 47.9375rem) { + [data-sidebar-style="modern"] .nav-header { + width: 10.625rem; } + [data-sidebar-style="modern"] .nav-header .brand-logo { + justify-content: center; } + [data-sidebar-style="modern"] .dlabnav .header-profile { + margin-bottom: 0.3125rem; } + [data-sidebar-style="modern"] .dlabnav .header-profile > a.nav-link { + display: block; + text-align: center; + margin: 0 -0.625rem 0.9375rem; + padding: 0.9375rem 0.625rem; + border-radius: 1.25rem; } + [data-sidebar-style="modern"] .dlabnav .header-profile > a.nav-link img { + margin-bottom: 0.3125rem; } + [data-sidebar-style="modern"] .dlabnav .header-profile > a.nav-link .header-info { + margin-left: 0 !important; + text-align: center; + display: none; } + [data-sidebar-style="modern"] .dlabnav .header-profile > a.nav-link .header-info small, [data-sidebar-style="modern"] .dlabnav .header-profile > a.nav-link .header-info .small { + text-align: center !important; } + [data-sidebar-style="modern"] .dlabnav .metismenu > li { + text-align: center; } + [data-sidebar-style="modern"] .dlabnav .metismenu > li > a { + padding: 1.25rem 0.9375rem 1.25rem 0.9375rem; + margin: 0.125rem 0; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } + [data-sidebar-style="modern"] .dlabnav .metismenu > li > a::after { + display: none; } + [data-sidebar-style="modern"] .dlabnav .metismenu > li > a:hover > a, [data-sidebar-style="modern"] .dlabnav .metismenu > li > a:focus > a, [data-sidebar-style="modern"] .dlabnav .metismenu > li > a:active > a, [data-sidebar-style="modern"] .dlabnav .metismenu > li > a.mm-active > a { + background-color: var(--primary-dark); } + [data-sidebar-style="modern"] .dlabnav .metismenu > li:hover, [data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active { + padding: 0; } + [data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a { + background: var(--rgba-primary-1); + color: var(--primary); + border-radius: 1rem; } + [data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a i, [data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a i { + color: var(--primary); } + [data-sidebar-style="modern"] .dlabnav .metismenu > li li { + text-align: left; } + [direction="rtl"][data-sidebar-style="modern"] .dlabnav .metismenu > li li { + text-align: right; } + [data-sidebar-style="modern"] .dlabnav .metismenu li a { + padding: 0.625rem 0.9375rem 0.625rem 0.9375rem; + font-size: 0.9375rem; } + [data-sidebar-style="modern"] .dlabnav .metismenu li ul:after { + content: none; } + [data-sidebar-style="modern"] .dlabnav .metismenu li > ul { + height: auto !important; } + [data-sidebar-style="modern"] .dlabnav .metismenu .nav-label { + display: none; } + [data-sidebar-style="modern"] .dlabnav .nav-label { + display: none; } + [data-sidebar-style="modern"] .dlabnav .nav-text { + display: block; + margin-top: 0.3125rem; } + [data-sidebar-style="modern"] .dlabnav .plus-box, + [data-sidebar-style="modern"] .dlabnav .copyright { + display: none; } + [data-sidebar-style="modern"] .dlabnav .sidebar-info { + display: none !important; } + [data-sidebar-style="modern"] .footer { + padding-left: 11.9rem; } + [data-sidebar-style="modern"] .content-body { + margin-left: 10.9rem; } + [data-sidebar-style="modern"][data-layout="horizontal"] .dlabnav .metismenu li > a i { + padding: 0; + margin: 0; } + + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav { + width: 10.625rem; + left: 0; } + [direction="rtl"][data-sidebar-style="modern"][data-layout="vertical"] .dlabnav { + left: auto; + right: 0; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .slimScrollDiv, + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .dlabnav-scroll { + overflow: visible !important; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu { + padding: 0.625rem 0.875rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu > li > a { + padding: 1.375rem 0.6em 0.9375rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu > li > a i { + padding: 0; + height: auto; + width: auto; + margin: 0; + line-height: 1; + margin-bottom: 0.3125rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu > li > ul { + display: none; + padding: 1.875rem 0.9375rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li { + position: relative; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li a { + padding: 1rem 1rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li a:before { + content: none; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li ul { + position: absolute; + left: 105%; + top: 0; + bottom: auto; + background-color: #fff; + border: 0.0625rem solid #f5f5f5; + width: 12.5rem; } + [data-theme-version="dark"][data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li ul { + background: #212130; + box-shadow: 0rem 0rem 0.8125rem 0rem rgba(0, 0, 0, 0.1); } + [direction="rtl"][data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li ul { + left: auto; + right: 105%; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li:hover > ul { + display: block; + left: 100%; + padding: 1rem 0; + margin-left: 0; + border: 0; + box-shadow: 0.3125rem 0.3125rem 1.875rem 0rem rgba(20, 0, 30, 0.1); + border-radius: 1.25rem; } + [data-theme-version="dark"][data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li:hover > ul { + box-shadow: 0.3125rem 0.3125rem 1.875rem 0rem rgba(20, 0, 30, 0.1); } + [direction="rtl"][data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .metismenu li:hover > ul { + left: auto; + right: 100%; + box-shadow: -0.3125rem 0.3125rem 1.875rem 0rem rgba(20, 0, 30, 0.1); } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .nav-label { + display: none; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .nav-text { + display: block; + margin-top: 0; } + [data-sidebar-style="modern"][data-layout="vertical"] .dlabnav .header-profile2 { + padding: 0 2.5rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .nav-control { + right: -4.25rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .header .header-content { + padding-left: 6rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .menu-toggle .dlabnav, [data-sidebar-style="modern"][data-layout="vertical"] .menu-toggle .nav-header { + left: -10.625rem; } + [data-sidebar-style="modern"][data-layout="vertical"] .menu-toggle .header { + padding-left: 0; } + [data-sidebar-style="modern"][data-layout="vertical"] .menu-toggle .content-body { + margin-left: 0; } + + [data-sidebar-style="modern"][data-layout="horizontal"] .nav-header { + width: 21.75rem; } + [data-sidebar-style="modern"][data-layout="horizontal"] .header { + padding-left: 21.75rem; } + [data-sidebar-style="modern"][data-layout="horizontal"] .footer, + [data-sidebar-style="modern"][data-layout="horizontal"] .content-body { + margin-left: 0; } + [data-sidebar-style="modern"][data-layout="horizontal"] .dlabnav .metismenu > li > a { + padding: 0.9375rem 1.5625rem 0.75rem 1.5625rem; + margin: 0 0.125rem; } + [data-sidebar-style="modern"][data-layout="horizontal"] .dlabnav .metismenu > li > ul { + top: 4.8rem; } + [data-sidebar-style="modern"][data-layout="horizontal"][data-container="boxed"] .dlabnav .metismenu > li > a { + padding: 0.8125rem 1.25rem; } } +[data-sidebar-style="overlay"][data-layout="vertical"] .dlabnav { + border-radius: 0 0 0 0 !important; } + @media only screen and (max-width: 47.9375rem) { + [data-sidebar-style="overlay"][data-layout="vertical"] .dlabnav { + border-radius: 0 0 0 0 !important; } } +[data-sidebar-style="overlay"][data-layout="vertical"] .nav-header { + border-radius: 0; } +[data-sidebar-style="overlay"][data-layout="vertical"] .menu-toggle .nav-header { + border-radius: 0 0 0 0; } +[data-sidebar-style="overlay"] .dlabnav { + left: -100%; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; + box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2); } + [data-sidebar-style="overlay"] .dlabnav .metismenu > li { + padding: 0 1.875rem; } + [data-sidebar-style="overlay"] .dlabnav .metismenu > li > a { + font-size: 1rem; + padding: 1.25rem 1.25rem; + color: #7f7184; + border-radius: 1rem; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } + [data-sidebar-style="overlay"] .dlabnav .metismenu > li > a i { + height: auto; + width: auto; + line-height: 1; } + [data-sidebar-style="overlay"] .dlabnav .metismenu > li:hover > a { + color: var(--primary); } + [data-sidebar-style="overlay"] .dlabnav .metismenu > li:hover > a i { + color: var(--primary); } + [data-sidebar-style="overlay"] .dlabnav .metismenu > li.mm-active > a { + /* background: var(--rgba-primary-1); */ + color: var(--primary); } + [data-sidebar-style="overlay"] .dlabnav .metismenu > li.mm-active > a i { + color: var(--primary); } + @media only screen and (max-width: 35.9375rem) { + [data-sidebar-style="overlay"] .dlabnav .metismenu > li { + padding: 0rem 0.9375rem; } } + [data-sidebar-style="overlay"] .dlabnav .metismenu ul a { + padding-top: .5rem; + padding-bottom: .5rem; + position: relative; + font-size: 0.9375rem; + padding-left: 4rem; } + [data-sidebar-style="overlay"] .dlabnav .metismenu ul a:before { + left: 1.5625rem; } + [direction="rtl"][data-sidebar-style="overlay"] .dlabnav { + left: auto; + right: -100%; } + @media only screen and (max-width: 47.9375rem) { + [data-sidebar-style="overlay"] .dlabnav .metismenu > li > a { + font-size: 0.875rem; + padding: 0.75rem 0.875rem; } + [data-sidebar-style="overlay"] .dlabnav .metismenu > li > a i { + font-size: 1.125rem; } + [data-sidebar-style="overlay"] .dlabnav .metismenu ul li a { + padding-left: 3.4rem; } } +[data-sidebar-style="overlay"] .content-body { + margin-left: 0; } +[data-sidebar-style="overlay"] .nav-header { + position: absolute; } + [data-sidebar-style="overlay"] .nav-header .hamburger.is-active { + left: 0; } + [data-sidebar-style="overlay"] .nav-header .hamburger.is-active .line { + background-color: var(--primary); } +[data-sidebar-style="overlay"] .menu-toggle .nav-header { + position: absolute; + left: auto; } +[data-sidebar-style="overlay"] .menu-toggle .dlabnav { + left: 0; } + [direction="rtl"][data-sidebar-style="overlay"] .menu-toggle .dlabnav { + left: auto; + right: 0; } +[data-sidebar-style="overlay"] .footer { + padding-left: 0; } + +[data-sidebar-style="overlay"][data-header-position="fixed"] .nav-header { + position: fixed; } + +[data-sidebar-position="fixed"][data-header-position="fixed"] .nav-header { + position: fixed; } + +[data-sidebar-position="fixed"][data-layout="vertical"] .nav-header { + position: fixed; + border-top-left-radius: 0; + border-top-right-radius: 0; } +[data-sidebar-position="fixed"][data-layout="vertical"] .dlabnav { + position: fixed; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + [data-sidebar-position="fixed"][data-layout="vertical"] .dlabnav .dlabnav-scroll { + border-top-left-radius: 0rem; + border-top-right-radius: 0rem; } +[data-sidebar-position="fixed"][data-layout="vertical"] .menu-toggle .dlabnav { + position: fixed; } + +[data-layout="vertical"] .nav-header { + border-top-left-radius: 0; + border-top-right-radius: 0; } +[data-layout="vertical"] .dlabnav { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +[data-sidebar-style="icon-hover"][data-layout="vertical"][data-container="wide-boxed"] .dlabnav, +[data-sidebar-style="icon-hover"][data-layout="vertical"][data-container="boxed"] .dlabnav, +[data-header-position="fixed"][data-sidebar-position="fixed"][data-sidebar-style="icon-hover"][data-layout="vertical"][data-container="wide-boxed"] .dlabnav, +[data-header-position="fixed"][data-sidebar-position="fixed"][data-sidebar-style="icon-hover"][data-layout="vertical"][data-container="boxed"] .dlabnav, +[data-sidebar-style="overlay"][data-layout="vertical"][data-container="wide-boxed"] .dlabnav, +[data-sidebar-style="overlay"][data-layout="vertical"][data-container="boxed"] .dlabnav, +[data-header-position="fixed"][data-sidebar-position="fixed"][data-sidebar-style="overlay"][data-layout="vertical"][data-container="wide-boxed"] .dlabnav, +[data-header-position="fixed"][data-sidebar-position="fixed"][data-sidebar-style="overlay"][data-layout="vertical"][data-container="boxed"] .dlabnav { + position: absolute; } + +.sidebar-right-trigger { + position: absolute; + z-index: 9; + top: 14.75rem; + right: 100%; + background-color: #F93A0B; + color: #fff; + display: inline-block; + height: 3rem; + width: 3rem; + text-align: center; + font-size: 1.75rem; + line-height: 3rem; + border-radius: 0.3125rem 0 0 0.3125rem; + box-shadow: -0.3125rem 0.1875rem 0.3125rem 0rem rgba(119, 119, 119, 0.15); } + [data-theme-version="dark"] .sidebar-right-trigger { + color: #fff; } + @media only screen and (max-width: 64rem) { + .sidebar-right-trigger { + display: none; } } + .sidebar-right-trigger:hover { + color: #fff; } + +.sidebar-right { + right: -50rem; + position: fixed; + top: 0; + width: 50rem; + background-color: #fff; + margin-top: 3.5rem; + transition: all .5s ease-in-out; + border-radius: 1.25rem; + z-index: 9999; } + .sidebar-right .bg-label-pattern { + background: transparent; + background-image: url("../image/pattern5.png"); + background-size: 130%; } + .sidebar-right .bootstrap-select { + height: 3rem; + border-radius: 0.375rem; } + .sidebar-right .bootstrap-select .btn { + padding: 0.75rem 0.9375rem; + font-size: 0.9375rem; + border-color: #d1d1d1; + border-radius: 0.375rem; } + [direction="rtl"] .sidebar-right .slimScrollDiv { + overflow: visible !important; } + .sidebar-right .sidebar-close-trigger { + position: absolute; + z-index: 2; + font-size: 1.75rem; + top: 0; + right: -3rem; + height: 3rem; + width: 3rem; + line-height: 3rem; + text-align: center; + background: black; + color: #fff; } + .sidebar-right.show { + right: 5.25rem; + box-shadow: 0rem 0rem 3.125rem rgba(0, 0, 0, 0.2); + z-index: 9999; } + .sidebar-right.show .bg-overlay { + position: fixed; + width: 100%; + cursor: pointer; + height: 100%; + top: 0; + left: 0; + background: rgba(0, 0, 0, 0.2); } + .sidebar-right .card-tabs .nav-tabs { + justify-content: space-between; + position: sticky; + top: 0; + width: 100%; + background-color: #fff; + z-index: 2; + border-bottom: 4px solid var(--rgba-primary-1); } + .sidebar-right .card-tabs .nav-tabs .nav-item { + margin-bottom: 0; + flex: 1; } + .sidebar-right .card-tabs .nav-tabs .nav-item .nav-link { + border: 0; + font-size: 1.125rem; + position: relative; + text-align: center; + background-color: #fff; + border-radius: 0; + margin: 0; } + .sidebar-right .card-tabs .nav-tabs .nav-item .nav-link.active { + background: var(--rgba-primary-1); + color: #000; } + [data-theme-version="dark"] .sidebar-right .card-tabs .nav-tabs .nav-item .nav-link.active { + border-right: none; + border-left: none; + border-top: none; } + .sidebar-right .sidebar-right-inner > h4, .sidebar-right .sidebar-right-inner > .h4 { + padding: 0.625rem 1.25rem; + display: flex; + justify-content: space-between; + align-items: center; + color: #000; + background: #fff; + margin: 0rem 0rem 0rem 0rem; } + .sidebar-right .tab-content { + padding: 1.25rem 1.25rem 0; + min-height: 23.125rem; + background: #fff; } + .sidebar-right .tab-content .tab-pane .admin-settings .row > div { + margin-bottom: 1.25rem; } + .sidebar-right .tab-content .tab-pane .admin-settings p { + color: #353535; + font-weight: 500; + margin-bottom: 0.5rem; + font-size: 1rem; } + .sidebar-right .tab-content .tab-pane .admin-settings input[type="radio"] { + display: none; } + .sidebar-right .tab-content .tab-pane .admin-settings input[type="radio"] + label { + display: inline-block; + width: 2.1875rem; + height: 2.1875rem; + cursor: pointer; + transition: all .1s ease; + border-radius: 0.25rem; + margin-right: 0.3125rem; + margin-bottom: 0.1875rem; } + .sidebar-right .tab-content .tab-pane .admin-settings input[type="radio"]:checked + label { + position: relative; } + .sidebar-right .tab-content .tab-pane .admin-settings input[type="radio"]:checked + label::after { + height: 2.0625rem; + width: 2.0625rem; + left: -0.25rem; + top: -0.25rem; + content: ""; + position: absolute; + background-color: inherit; + border-radius: 0.375rem; + opacity: 0.4; } + .sidebar-right #nav_header_color_1 + label, + .sidebar-right #header_color_1 + label, + .sidebar-right #sidebar_color_1 + label, + .sidebar-right #primary_color_1 + label { + background-color: #fff; } + .sidebar-right #nav_header_color_2 + label, + .sidebar-right #header_color_2 + label, + .sidebar-right #sidebar_color_2 + label, + .sidebar-right #primary_color_2 + label { + background-color: #6610f2; } + .sidebar-right #nav_header_color_3 + label, + .sidebar-right #header_color_3 + label, + .sidebar-right #sidebar_color_3 + label, + .sidebar-right #primary_color_3 + label { + background-color: #F93A0B; } + .sidebar-right #nav_header_color_4 + label, + .sidebar-right #header_color_4 + label, + .sidebar-right #sidebar_color_4 + label, + .sidebar-right #primary_color_4 + label { + background-color: #4d06a5; } + .sidebar-right #nav_header_color_5 + label, + .sidebar-right #header_color_5 + label, + .sidebar-right #sidebar_color_5 + label, + .sidebar-right #primary_color_5 + label { + background-color: #dc3545; } + .sidebar-right #nav_header_color_6 + label, + .sidebar-right #header_color_6 + label, + .sidebar-right #sidebar_color_6 + label, + .sidebar-right #primary_color_6 + label { + background-color: #fd7e14; } + .sidebar-right #nav_header_color_7 + label, + .sidebar-right #header_color_7 + label, + .sidebar-right #sidebar_color_7 + label, + .sidebar-right #primary_color_7 + label { + background-color: #ffc107; } + .sidebar-right #nav_header_color_8 + label, + .sidebar-right #header_color_8 + label, + .sidebar-right #sidebar_color_8 + label, + .sidebar-right #primary_color_8 + label { + background-color: #fff; } + .sidebar-right #nav_header_color_9 + label, + .sidebar-right #header_color_9 + label, + .sidebar-right #sidebar_color_9 + label, + .sidebar-right #primary_color_9 + label { + background-color: #20c997; } + .sidebar-right #nav_header_color_10 + label, + .sidebar-right #header_color_10 + label, + .sidebar-right #sidebar_color_10 + label, + .sidebar-right #primary_color_10 + label { + background-color: #17a2b8; } + .sidebar-right #nav_header_color_11 + label, + .sidebar-right #header_color_11 + label, + .sidebar-right #sidebar_color_11 + label, + .sidebar-right #primary_color_11 + label { + background-color: #94618E; } + .sidebar-right #nav_header_color_12 + label, + .sidebar-right #header_color_12 + label, + .sidebar-right #sidebar_color_12 + label, + .sidebar-right #primary_color_12 + label { + background-color: #343a40; } + .sidebar-right #nav_header_color_13 + label, + .sidebar-right #header_color_13 + label, + .sidebar-right #sidebar_color_13 + label, + .sidebar-right #primary_color_13 + label { + background-color: #2a2a2a; } + .sidebar-right #nav_header_color_14 + label, + .sidebar-right #header_color_14 + label, + .sidebar-right #sidebar_color_14 + label, + .sidebar-right #primary_color_14 + label { + background-color: #4885ed; } + .sidebar-right #nav_header_color_15 + label, + .sidebar-right #header_color_15 + label, + .sidebar-right #sidebar_color_15 + label, + .sidebar-right #primary_color_15 + label { + background-color: #4cb32b; } + .sidebar-right #nav_header_color_1 + label, + .sidebar-right #header_color_1 + label, + .sidebar-right #sidebar_color_1 + label, + .sidebar-right #primary_color_1 + label { + border: 0.0625rem solid #c4c4c4; } + .sidebar-right.style-1 { + height: 100vh; + width: 15.625rem; + margin-top: 0; + right: -15.625rem; } + .sidebar-right.style-1 .sidebar-right-inner { + background: #fff; } + .sidebar-right.style-1 .sidebar-right-trigger { + top: 12.4rem; } + .sidebar-right.style-1.show { + right: 0; } + .sidebar-right.style-1.show .sidebar-right-trigger { + display: block; } + +.nice-select.wide { + line-height: 2.8125rem; } + +@keyframes bounce { + 0% { + transform: translateX(-8%); + -webkit-transform: translateX(-8%); } + 50% { + transform: translateX(8%); + -webkit-transform: translateX(8%); } + 100% { + transform: translateX(-8%); + -webkit-transform: translateX(-8%); } } +@-webkit-keyframes bounce { + 0% { + transform: translateX(-8%); + -webkit-transform: translateX(-8%); } + 50% { + transform: translateX(8%); + -webkit-transform: translateX(8%); } + 100% { + transform: translateY(-8%); + -webkit-transform: translateY(-8%); } } +@media only screen and (max-width: 87.5rem) { + .nice-select.wide { + line-height: 2rem; } } + +.nav-user { + background: var(--primary); + margin-bottom: 0.625rem; + padding: 1.25rem 1.5625rem 0.9375rem; } + @media only screen and (min-width: 48rem) and (max-width: 74.9375rem) { + .nav-user { + padding: 1.25rem 0.9375rem 0.9375rem; } } + .nav-user img { + width: 2.1875rem; + height: 2.1875rem; } + @media only screen and (min-width: 48rem) and (max-width: 74.9375rem) { + .nav-user img { + width: 2.1875rem; + height: 2.1875rem; + margin-bottom: 0.625rem; } } + .nav-user h5, .nav-user .h5 { + margin-left: 0.625rem; + margin-bottom: 0.1875rem; + color: #fff; } + @media only screen and (min-width: 48rem) and (max-width: 74.9375rem) { + .nav-user h5, .nav-user .h5 { + display: none; } } + [data-sibebarbg="color_2"] .nav-user h5, [data-sibebarbg="color_2"] .nav-user .h5 { + color: #fff; } + .nav-user p { + margin-left: 0.625rem; + margin-bottom: 0.5rem; + color: #afcff7; } + @media only screen and (min-width: 48rem) and (max-width: 74.9375rem) { + .nav-user p { + display: none; } } + @media only screen and (min-width: 48rem) and (max-width: 74.9375rem) { + .nav-user i { + margin-top: 0.9375rem; + display: block; } } + +.menu-toggle .nav-user { + padding: 1.25rem 0.9375rem 0.9375rem; } + .menu-toggle .nav-user img { + width: 2.1875rem; + height: 2.1875rem; + margin-bottom: 0.625rem; } + .menu-toggle .nav-user h5, .menu-toggle .nav-user .h5, + .menu-toggle .nav-user p { + display: none; } + .menu-toggle .nav-user i { + margin-top: 0.9375rem; + display: block; } + .menu-toggle .nav-user .dropdown-menu { + left: 2.8125rem !important; + top: 1.375rem !important; } + +.chatbox { + width: 21.25rem; + height: 100vh; + position: fixed; + right: -31.25rem; + top: 0; + z-index: 999; + background: #fff; + box-shadow: 0rem 0rem 1.875rem 0rem rgba(82, 63, 105, 0.15); + -webkit-transition: all 0.8s; + -ms-transition: all 0.8s; + transition: all 0.8s; } + [data-theme-version="dark"] .chatbox { + background: #212130; } + .chatbox .chatbox-close { + position: absolute; + -webkit-transition: all 0.2s; + -ms-transition: all 0.2s; + transition: all 0.2s; + width: 0; + height: 100%; + right: 21.25rem; + background: #000; + z-index: 1; + opacity: 0.1; + cursor: pointer; } + .chatbox .card-fotter { + padding: 0.75rem 1rem; } + .chatbox .card-body { + padding: 1rem; } + .chatbox.active { + right: 0; } + .chatbox.active .chatbox-close { + width: 100vw; } + .chatbox .type_msg { + padding-top: 0.625rem; } + .chatbox .nav { + padding: 1rem 1rem 0 1rem; + background: var(--rgba-primary-1); + border: 0; + justify-content: space-between; } + .chatbox .nav .nav-link { + color: var(--primary); + opacity: 0.7; + text-transform: uppercase; } + .chatbox .nav .nav-link:hover, .chatbox .nav .nav-link.active { + background: transparent; + color: var(--primary); + opacity: 1; + border-color: var(--primary); } + .chatbox .img_cont { + width: 2.5rem; + border-radius: 2.5rem; + margin-right: 0.625rem; + position: relative; + height: 2.5rem; + background: #eee; + display: flex; + align-items: center; + justify-content: center; + font-weight: 600; + font-size: 0.875rem; + min-width: 2.5rem; + min-height: 2.5rem; } + .chatbox .img_cont .icon { + color: #fff; } + .chatbox .img_cont.primary { + background: var(--rgba-primary-1); + color: var(--primary); } + [data-theme-version="dark"] .chatbox .img_cont.primary { + background: var(--rgba-primary-1); } + .chatbox .img_cont.warning { + background: #ffe9d5; + color: #ffa755; } + [data-theme-version="dark"] .chatbox .img_cont.warning { + background: rgba(255, 167, 85, 0.1); } + .chatbox .img_cont.success { + background: #e7fbe6; + color: #68e365; } + [data-theme-version="dark"] .chatbox .img_cont.success { + background: rgba(104, 227, 101, 0.1); } + .chatbox .img_cont.info { + background: #efbae6; + color: #D653C1; } + [data-theme-version="dark"] .chatbox .img_cont.info { + background: rgba(214, 83, 193, 0.1); } + .chatbox .img_cont img { + width: 100%; } + .chatbox .img_cont .online_icon { + background: #68e365; + position: absolute; + width: 0.75rem; + height: 0.75rem; + border-radius: 0.9375rem; + right: -0.0625rem; + bottom: 0rem; + border: 0.125rem solid #fff; } + .chatbox .img_cont .online_icon.offline { + background: #f72b50; } + .chatbox .card { + box-shadow: none; } + .chatbox .search { + height: 2.5rem; } + .chatbox .user_info span { + font-size: 0.9375rem; + color: #000; + display: block; + font-weight: 500; + line-height: 1; + margin-bottom: 0.3125rem; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + display: block; + max-width: 10.625rem; } + [data-theme-version="dark"] .chatbox .user_info span { + color: #fff; } + .chatbox .user_info p { + font-size: 0.8125rem; + margin-bottom: 0; + line-height: 1; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + display: block; + max-width: 10.625rem; } + .chatbox .contacts li { + padding: 0.4375rem 1rem; + border-bottom: 0.0625rem solid #eee; + cursor: pointer; } + [data-theme-version="dark"] .chatbox .contacts li { + border-color: #2e2e42; } + .chatbox .contacts li > div { + display: flex; + align-items: center; } + .chatbox .contacts li:hover { + background: #f4f7ff; } + [data-theme-version="dark"] .chatbox .contacts li:hover { + background-color: #17171E; } + .chatbox .contacts .name-first-letter { + background: #F8F8F8; + padding: 0.25rem 1rem; + font-weight: 700; + color: #000; + position: sticky; + top: 0; + z-index: 1; } + [data-theme-version="dark"] .chatbox .contacts .name-first-letter { + color: #fff; + background: #17171E; } + .chatbox .contacts_body { + height: calc(100vh - 120px); } + .chatbox .card-header { + background: #f4f7ff; + padding: 0.9375rem 1.25rem; + justify-content: center; } + .chatbox .card-header h6, .chatbox .card-header .h6 { + font-size: 0.9375rem; } + .chatbox .card-header p { + line-height: 1.2; + font-size: 0.75rem; + color: #393939; } + .chatbox .chat-list-header { + justify-content: space-between; + background: #fff; } + [data-theme-version="dark"] .chatbox .chat-list-header { + background: #212130; } + .chatbox .chat-list-header a { + text-align: center; + width: 1.875rem; + height: 1.875rem; + background: #F8F8F8; + border-radius: 0.375rem; + line-height: 1.875rem; + display: block; } + [data-theme-version="dark"] .chatbox .chat-list-header a { + background: var(--rgba-primary-1); } + [data-theme-version="dark"] .chatbox .chat-list-header a svg g [fill] { + fill: #fff; } + .chatbox .img_cont_msg { + width: 1.875rem; + height: 1.875rem; + display: block; + max-width: 1.875rem; + min-width: 1.875rem; } + .chatbox .img_cont_msg img { + width: 100%; } + .chatbox .msg_cotainer { + background: var(--primary); + margin-left: 0.625rem; + border-radius: 0 1.25rem 1.25rem 1.25rem; + padding: 0.625rem 0.9375rem; + color: #fff; + position: relative; } + .chatbox .msg_cotainer .msg_time { + display: block; + font-size: 0.6875rem; + color: #fff; + margin-top: 0.3125rem; + opacity: 0.5; } + .chatbox .msg_cotainer:after { + content: ""; + position: absolute; + left: -0.625rem; + border-right: 0.625rem solid var(--primary); + border-bottom: 0.625rem solid transparent; + border-top: 0rem solid; + top: 0; } + .chatbox .msg_cotainer_send { + background: #F8F8F8; + padding: 0.625rem 0.9375rem; + border-radius: 0.375rem 0rem 0.375rem 0.375rem; + margin-right: 0.625rem; + color: #222; + position: relative; + text-align: right; } + [data-theme-version="dark"] .chatbox .msg_cotainer_send { + background: #17171E; + color: #fff; } + .chatbox .msg_cotainer_send .msg_time_send { + display: block; + font-size: 0.6875rem; + text-align: right; + margin-top: 0.3125rem; + opacity: 0.6; } + .chatbox .msg_cotainer_send:after { + content: ""; + position: absolute; + right: -0.625rem; + border-left: 0.625rem solid #F8F8F8; + border-bottom: 0.625rem solid transparent; + border-top: 0rem solid; + top: 0; } + [data-theme-version="dark"] .chatbox .msg_cotainer_send:after { + border-left: 0.625rem solid #17171E; } + .chatbox .type_msg .form-control { + padding: 0.625rem 0; + height: 3.125rem; + border: 0; + resize: none; } + .chatbox .type_msg .form-control:focus { + z-index: 0; } + .chatbox .type_msg .btn { + font-size: 1.125rem; + border-radius: 2.375rem !important; + width: 2.375rem; + height: 2.375rem; + padding: 0; + margin-top: 0.375rem; } + .chatbox .video_cam { + margin-left: 0.9375rem; } + .chatbox .video_cam span { + width: 2.1875rem; + height: 2.1875rem; + background: #10ca93; + text-align: center; + line-height: 2.1875rem; + border-radius: 2.1875rem; + color: #fff; + margin-right: 0.3125rem; + align-self: center; + font-size: 1rem; + padding: 0 0.1875rem; + display: inline-block; } + .chatbox .note_card .contacts li { + padding: 0.75rem 1rem; } + +@media only screen and (max-width: 36rem) { + .chatbox { + width: 17.5rem; } + .chatbox .chatbox-close { + right: 17.5rem; } } +.dlab-demo-panel { + right: -23.75rem; + position: fixed; + top: 0; + width: 23.75rem; + background-color: #fff; + height: 100vh; + transition: all .5s ease-in-out; + z-index: 9999; } + .dlab-demo-panel .dlab-demo-trigger { + position: absolute; + z-index: 9; + top: 21.75rem; + right: 100%; + background-color: #627EEA; + color: #fff; + display: inline-block; + height: 3rem; + width: 3rem; + text-align: center; + font-size: 1.75rem; + line-height: 3rem; + border-radius: 0.3125rem 0 0 0.3125rem; + box-shadow: -0.3125rem 0.1875rem 0.3125rem 0rem rgba(119, 119, 119, 0.15); } + @media only screen and (max-width: 63.9375rem) { + .dlab-demo-panel .dlab-demo-trigger { + display: none; } } + .dlab-demo-panel .dlab-demo-close { + height: 1.875rem; + color: #fff; + width: 1.875rem; + border-radius: 1.25rem; + background: rgba(0, 0, 0, 0.5); + line-height: 1.875rem; + text-align: center; } + .dlab-demo-panel.show { + right: 0; + box-shadow: 0rem 0rem 3.125rem rgba(0, 0, 0, 0.2); + z-index: 99999; + overflow: hidden; } + .dlab-demo-panel.show .sidebar-right-trigger { + display: none; } + .dlab-demo-panel.show .bg-close { + position: fixed; + z-index: -2; + cursor: pointer; + width: 100%; + height: 100%; + top: 0; + left: 0; + background: rgba(0, 0, 0, 0.15); } + .dlab-demo-panel .dlab-demo-inner { + padding: 1.875rem 1.875rem; + background: #fff; } + .dlab-demo-panel .dlab-demo-content { + height: calc(100vh - 140px); } + .dlab-demo-panel .dlab-demo-header { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 1.25rem; } + .dlab-demo-panel .dlab-demo-header h4, .dlab-demo-panel .dlab-demo-header .h4 { + margin-bottom: 0; + color: #000; } + .dlab-demo-panel .dlab-demo-bx { + height: 12.5rem; + overflow: hidden; + border: 0.3125rem solid #efefef; + box-shadow: 0rem 0rem 0.3125rem rgba(0, 0, 0, 0.1); + margin-bottom: 0.625rem; } + .dlab-demo-panel .dlab-demo-bx.demo-active { + border-color: #145650; } + .dlab-demo-panel .dlab-demo-bx.demo-active .overlay-layer { + opacity: 1; } + .dlab-demo-panel .overlay-bx { + position: relative; } + .dlab-demo-panel .overlay-bx .overlay-layer { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + background-color: rgba(0, 0, 0, 0.1); + -webkit-transition: all .3s ease; + transition: all .3s ease; + opacity: 0; } + .dlab-demo-panel .overlay-bx:hover .overlay-layer { + -webkit-transition: all .3s ease; + transition: all .3s ease; + opacity: 1; } + +:root { + --nav-headbg: #FFFFFF; + --sidebar-bg: #FFFFFF; + --headerbg: #FFFFFF; } + +[data-nav-headerbg="color_2"][data-theme-version="dark"], +[data-nav-headerbg="color_2"] { + --nav-headbg: #6610f2; } + [data-nav-headerbg="color_2"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_2"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_2"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_2"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_2"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_2"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_2"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_2"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_2"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_2"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_2"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_2"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_3"][data-theme-version="dark"], +[data-nav-headerbg="color_3"] { + --nav-headbg: #F93A0B; } + [data-nav-headerbg="color_3"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_3"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_3"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_3"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_3"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_3"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_3"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_3"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_3"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_3"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_3"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_3"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_4"][data-theme-version="dark"], +[data-nav-headerbg="color_4"] { + --nav-headbg: #4d06a5; } + [data-nav-headerbg="color_4"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_4"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_4"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_4"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_4"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_4"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_4"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_4"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_4"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_4"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_4"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_4"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_5"][data-theme-version="dark"], +[data-nav-headerbg="color_5"] { + --nav-headbg: #dc3545; } + [data-nav-headerbg="color_5"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_5"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_5"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_5"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_5"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_5"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_5"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_5"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_5"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_5"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_5"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_5"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_6"][data-theme-version="dark"], +[data-nav-headerbg="color_6"] { + --nav-headbg: #fd7e14; } + [data-nav-headerbg="color_6"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_6"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_6"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_6"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_6"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_6"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_6"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_6"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_6"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_6"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_6"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_6"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_7"][data-theme-version="dark"], +[data-nav-headerbg="color_7"] { + --nav-headbg: #ffc107; } + [data-nav-headerbg="color_7"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_7"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_7"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_7"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_7"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_7"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_7"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_7"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_7"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_7"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_7"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_7"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_8"][data-theme-version="dark"], +[data-nav-headerbg="color_8"] { + --nav-headbg: #fff; } + [data-nav-headerbg="color_8"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_8"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_8"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_8"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_8"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_8"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_8"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_8"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_8"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_9"][data-theme-version="dark"], +[data-nav-headerbg="color_9"] { + --nav-headbg: #20c997; } + [data-nav-headerbg="color_9"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_9"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_9"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_9"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_9"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_9"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_9"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_9"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_9"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_9"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_9"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_9"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_10"][data-theme-version="dark"], +[data-nav-headerbg="color_10"] { + --nav-headbg: #17a2b8; } + [data-nav-headerbg="color_10"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_10"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_10"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_10"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_10"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_10"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_10"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_10"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_10"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_10"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_10"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_10"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_11"][data-theme-version="dark"], +[data-nav-headerbg="color_11"] { + --nav-headbg: #94618E; } + [data-nav-headerbg="color_11"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_11"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_11"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_11"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_11"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_11"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_11"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_11"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_11"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_11"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_11"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_11"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_12"][data-theme-version="dark"], +[data-nav-headerbg="color_12"] { + --nav-headbg: #343a40; } + [data-nav-headerbg="color_12"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_12"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_12"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_12"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_12"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_12"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_12"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_12"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_12"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_12"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_12"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_12"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_13"][data-theme-version="dark"], +[data-nav-headerbg="color_13"] { + --nav-headbg: #2a2a2a; } + [data-nav-headerbg="color_13"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_13"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_13"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_13"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_13"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_13"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_13"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_13"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_13"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_13"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_13"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_13"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_14"][data-theme-version="dark"], +[data-nav-headerbg="color_14"] { + --nav-headbg: #4885ed; } + [data-nav-headerbg="color_14"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_14"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_14"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_14"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_14"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_14"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_14"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_14"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_14"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_14"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_14"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_14"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-nav-headerbg="color_15"][data-theme-version="dark"], +[data-nav-headerbg="color_15"] { + --nav-headbg: #4cb32b; } + [data-nav-headerbg="color_15"][data-theme-version="dark"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_15"] .nav-header .brand-logo .brand-title path { + fill: #fff; } + [data-nav-headerbg="color_15"][data-theme-version="dark"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_15"] .nav-header .brand-logo .brand-title tspan { + fill: #fff; } + [data-nav-headerbg="color_15"][data-theme-version="dark"] .nav-header .hamburger .line, + [data-nav-headerbg="color_15"] .nav-header .hamburger .line { + background: #000; } + [data-nav-headerbg="color_15"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path, + [data-nav-headerbg="color_15"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title path { + fill: #000; } + [data-nav-headerbg="color_15"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan, + [data-nav-headerbg="color_15"][data-nav-headerbg="color_8"] .nav-header .brand-logo .brand-title tspan { + fill: #000; } + [data-nav-headerbg="color_15"][data-theme-version="dark"][data-nav-headerbg="color_8"] .nav-header .hamburger .line, + [data-nav-headerbg="color_15"][data-nav-headerbg="color_8"] .nav-header .hamburger .line { + background: #000; } + +[data-sibebarbg="color_2"][data-theme-version="dark"], +[data-sibebarbg="color_2"] { + --sidebar-bg: #6610f2; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_2"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_2"] .menu-toggle .dlabnav .metismenu li > ul { + background: #6610f2 !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_2"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_2"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_2"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_2"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_2"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_2"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_2"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #8540f5; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_2"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_2"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_2"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_2"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_2"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_2"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_2"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #6f1ff3 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_2"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_2"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_2"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #8540f5 !important; + color: #fff !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_2"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_2"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_2"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_2"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_2"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_2"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_2"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_2"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_2"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_2"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_2"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_2"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_2"] .plus-box { + background-color: #8540f5; } + [data-sibebarbg="color_2"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_2"] .copyright { + color: #fff; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_2"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_2"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_3"][data-theme-version="dark"], +[data-sibebarbg="color_3"] { + --sidebar-bg: #F93A0B; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_3"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_3"] .menu-toggle .dlabnav .metismenu li > ul { + background: #F93A0B !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_3"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_3"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_3"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_3"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_3"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_3"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_3"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #fa623d; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_3"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_3"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_3"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_3"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_3"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_3"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_3"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #f9461a !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_3"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_3"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_3"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #fa623d !important; + color: #fff !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_3"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_3"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_3"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_3"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_3"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_3"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_3"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_3"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_3"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_3"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_3"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_3"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_3"] .plus-box { + background-color: #fa623d; } + [data-sibebarbg="color_3"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_3"] .copyright { + color: #fff; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_3"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_3"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_4"][data-theme-version="dark"], +[data-sibebarbg="color_4"] { + --sidebar-bg: #4d06a5; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_4"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_4"] .menu-toggle .dlabnav .metismenu li > ul { + background: #4d06a5 !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_4"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_4"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_4"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_4"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_4"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_4"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_4"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #6408d6; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_4"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_4"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_4"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_4"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_4"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_4"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_4"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #5407b4 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_4"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_4"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_4"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #6408d6 !important; + color: #fff !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_4"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_4"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_4"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_4"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_4"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_4"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_4"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_4"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_4"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_4"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_4"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_4"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_4"] .plus-box { + background-color: #6408d6; } + [data-sibebarbg="color_4"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_4"] .copyright { + color: #fff; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_4"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_4"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_5"][data-theme-version="dark"], +[data-sibebarbg="color_5"] { + --sidebar-bg: #dc3545; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_5"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_5"] .menu-toggle .dlabnav .metismenu li > ul { + background: #dc3545 !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_5"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_5"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_5"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_5"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_5"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_5"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_5"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #e4606d; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_5"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_5"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_5"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_5"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_5"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_5"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_5"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #de4251 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_5"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_5"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_5"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #e4606d !important; + color: #fff !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_5"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_5"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_5"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_5"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_5"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_5"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_5"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_5"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_5"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_5"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_5"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_5"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_5"] .plus-box { + background-color: #e4606d; } + [data-sibebarbg="color_5"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_5"] .copyright { + color: #fff; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_5"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_5"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_6"][data-theme-version="dark"], +[data-sibebarbg="color_6"] { + --sidebar-bg: #fd7e14; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_6"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_6"] .menu-toggle .dlabnav .metismenu li > ul { + background: #fd7e14 !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_6"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_6"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_6"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_6"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_6"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_6"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_6"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #fd9a47; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_6"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_6"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_6"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_6"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_6"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_6"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_6"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #fd8623 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_6"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_6"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_6"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #fd9a47 !important; + color: #fff !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_6"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_6"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_6"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_6"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_6"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_6"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_6"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_6"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_6"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_6"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_6"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_6"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_6"] .plus-box { + background-color: #fd9a47; } + [data-sibebarbg="color_6"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_6"] .copyright { + color: #fff; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_6"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_6"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_7"][data-theme-version="dark"], +[data-sibebarbg="color_7"] { + --sidebar-bg: #ffc107; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_7"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_7"] .menu-toggle .dlabnav .metismenu li > ul { + background: #ffc107 !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_7"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_7"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_7"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_7"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_7"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_7"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_7"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #ffce3a; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_7"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_7"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_7"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_7"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_7"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_7"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_7"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #ffc516 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_7"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_7"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_7"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #ffce3a !important; + color: #fff !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_7"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_7"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_7"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_7"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_7"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_7"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_7"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_7"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_7"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_7"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_7"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_7"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_7"] .plus-box { + background-color: #ffce3a; } + [data-sibebarbg="color_7"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_7"] .copyright { + color: #fff; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_7"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_7"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_8"][data-theme-version="dark"], +[data-sibebarbg="color_8"] { + --sidebar-bg: #fff; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_8"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_8"] .menu-toggle .dlabnav .metismenu li > ul { + background: #fff !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_8"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_8"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_8"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_8"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_8"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_8"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: white; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_8"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_8"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_8"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_8"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_8"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_8"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_8"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: white !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_8"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_8"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_8"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: white !important; + color: #fff !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_8"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_8"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_8"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_8"] .plus-box { + background-color: white; } + [data-sibebarbg="color_8"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_8"] .copyright { + color: #fff; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_8"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_8"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_9"][data-theme-version="dark"], +[data-sibebarbg="color_9"] { + --sidebar-bg: #20c997; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_9"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_9"] .menu-toggle .dlabnav .metismenu li > ul { + background: #20c997 !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_9"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_9"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_9"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_9"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_9"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_9"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_9"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #3ce0af; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_9"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_9"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_9"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_9"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_9"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_9"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_9"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #22d6a1 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_9"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_9"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_9"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #3ce0af !important; + color: #fff !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_9"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_9"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_9"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_9"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_9"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_9"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_9"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_9"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_9"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_9"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_9"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_9"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_9"] .plus-box { + background-color: #3ce0af; } + [data-sibebarbg="color_9"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_9"] .copyright { + color: #fff; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_9"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_9"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_10"][data-theme-version="dark"], +[data-sibebarbg="color_10"] { + --sidebar-bg: #17a2b8; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_10"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_10"] .menu-toggle .dlabnav .metismenu li > ul { + background: #17a2b8 !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_10"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_10"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_10"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_10"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_10"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_10"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_10"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #1fc8e3; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_10"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_10"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_10"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_10"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_10"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_10"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_10"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #19aec6 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_10"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_10"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_10"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #1fc8e3 !important; + color: #fff !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_10"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_10"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_10"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_10"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_10"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_10"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_10"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_10"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_10"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_10"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_10"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_10"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_10"] .plus-box { + background-color: #1fc8e3; } + [data-sibebarbg="color_10"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_10"] .copyright { + color: #fff; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_10"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_10"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_11"][data-theme-version="dark"], +[data-sibebarbg="color_11"] { + --sidebar-bg: #94618E; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_11"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_11"] .menu-toggle .dlabnav .metismenu li > ul { + background: #94618E !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_11"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_11"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_11"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_11"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_11"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_11"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_11"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #aa7ea5; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_11"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_11"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_11"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_11"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_11"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_11"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_11"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #9c6896 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_11"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_11"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_11"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #aa7ea5 !important; + color: #fff !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_11"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_11"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_11"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_11"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_11"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_11"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_11"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_11"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_11"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_11"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_11"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_11"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_11"] .plus-box { + background-color: #aa7ea5; } + [data-sibebarbg="color_11"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_11"] .copyright { + color: #fff; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_11"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_11"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_12"][data-theme-version="dark"], +[data-sibebarbg="color_12"] { + --sidebar-bg: #343a40; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_12"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_12"] .menu-toggle .dlabnav .metismenu li > ul { + background: #343a40 !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_12"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_12"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_12"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_12"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_12"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_12"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_12"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #4b545c; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_12"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_12"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_12"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_12"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_12"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_12"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_12"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #3b4248 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_12"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_12"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_12"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #4b545c !important; + color: #fff !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_12"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_12"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_12"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_12"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_12"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_12"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_12"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_12"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_12"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_12"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_12"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_12"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_12"] .plus-box { + background-color: #4b545c; } + [data-sibebarbg="color_12"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_12"] .copyright { + color: #fff; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_12"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_12"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_13"][data-theme-version="dark"], +[data-sibebarbg="color_13"] { + --sidebar-bg: #2a2a2a; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_13"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_13"] .menu-toggle .dlabnav .metismenu li > ul { + background: #2a2a2a !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_13"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_13"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_13"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_13"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_13"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_13"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_13"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #444444; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_13"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_13"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_13"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_13"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_13"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_13"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_13"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #323232 !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_13"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_13"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_13"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #444444 !important; + color: #fff !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_13"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_13"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_13"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_13"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_13"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_13"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_13"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_13"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_13"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_13"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_13"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_13"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_13"] .plus-box { + background-color: #444444; } + [data-sibebarbg="color_13"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_13"] .copyright { + color: #fff; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_13"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_13"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_14"][data-theme-version="dark"], +[data-sibebarbg="color_14"] { + --sidebar-bg: #4885ed; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_14"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_14"] .menu-toggle .dlabnav .metismenu li > ul { + background: #4885ed !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_14"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_14"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_14"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_14"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_14"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_14"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_14"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #76a4f2; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_14"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_14"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_14"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_14"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_14"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_14"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_14"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #568eee !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_14"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_14"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_14"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #76a4f2 !important; + color: #fff !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_14"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_14"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_14"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_14"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_14"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_14"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_14"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_14"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_14"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_14"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_14"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_14"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_14"] .plus-box { + background-color: #76a4f2; } + [data-sibebarbg="color_14"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_14"] .copyright { + color: #fff; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_14"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_14"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-sibebarbg="color_15"][data-theme-version="dark"], +[data-sibebarbg="color_15"] { + --sidebar-bg: #4cb32b; + /* .hamburger .line{ + background:$white; + } */ + /* &[data-sidebar-style="full"][data-layout="vertical"]{ + .dlabnav .metismenu > li.mm-active > a, + .dlabnav .metismenu > li:hover > a{ + background:transparent; + } + } */ } + [data-sibebarbg="color_15"][data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul, + [data-sibebarbg="color_15"] .menu-toggle .dlabnav .metismenu li > ul { + background: #4cb32b !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_15"] .dlabnav .metismenu ul a:before { + background: rgba(255, 255, 255, 0.5); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_15"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_15"][data-sidebar-style="mini"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_15"][data-sidebar-style="modern"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_15"][data-sidebar-style="compact"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_15"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu li ul, + [data-sibebarbg="color_15"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu li ul { + background-color: #63d140; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_15"][data-sidebar-style="mini"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-sidebar-style="mini"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_15"][data-sidebar-style="modern"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-sidebar-style="modern"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_15"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_15"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-sidebar-style="icon-hover"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_15"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-sidebar-style="full"][data-layout="horizontal"] .dlabnav .metismenu > li:hover > a { + background: rgba(255, 255, 255, 0.15) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover, + [data-sibebarbg="color_15"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li a:hover { + color: #fff; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i, + [data-sibebarbg="color_15"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li > a > i { + background: #51bf2e !important; + color: rgba(255, 255, 255, 0.7); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a, + [data-sibebarbg="color_15"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a { + box-shadow: none; + background: transparent !important; + color: #fff !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i, + [data-sibebarbg="color_15"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_15"][data-sidebar-style="compact"][data-layout="vertical"] .dlabnav .metismenu > li:hover > a i { + background: #63d140 !important; + color: #fff !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu a, + [data-sibebarbg="color_15"] .dlabnav .metismenu a { + color: rgba(255, 255, 255, 0.8) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu li ul a:hover, [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu li ul a:focus, [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu li ul a.mm-active, + [data-sibebarbg="color_15"] .dlabnav .metismenu li ul a:hover, + [data-sibebarbg="color_15"] .dlabnav .metismenu li ul a:focus, + [data-sibebarbg="color_15"] .dlabnav .metismenu li ul a.mm-active { + color: #fff; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_15"] .dlabnav .metismenu > li > a { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_15"] .dlabnav .metismenu > li > a i { + color: rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(255, 255, 255, 0.15) !important; + color: #fff !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i, + [data-sibebarbg="color_15"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_15"] .dlabnav .metismenu > li.mm-active > a:before { + background: #fff !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_15"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(255, 255, 255, 0.85) transparent transparent rgba(255, 255, 255, 0.85) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .header-info2 span, + [data-sibebarbg="color_15"] .dlabnav .header-info2 span { + color: #fff; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .sidebar-info, + [data-sibebarbg="color_15"] .dlabnav .sidebar-info { + color: #fff; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_15"] .dlabnav .sidebar-info i { + color: #fff; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .plus-box, + [data-sibebarbg="color_15"] .plus-box { + background-color: #63d140; } + [data-sibebarbg="color_15"][data-theme-version="dark"] .copyright, + [data-sibebarbg="color_15"] .copyright { + color: #fff; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu ul a:before { + background: rgba(0, 0, 0, 0.5); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu a:hover, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu a:focus, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu a.mm-active { + color: #000 !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu .has-arrow:after { + border-color: rgba(0, 0, 0, 0.85) transparent transparent rgba(0, 0, 0, 0.85); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu > li > a i { + color: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .metismenu > li.mm-active > a:before { + background: rgba(0, 0, 0, 0.6) !important; } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .copyright p, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .copyright p { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .book-box, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .book-box { + background: rgba(0, 0, 0, 0.4); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .header-info2 span, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .header-info2 span { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .sidebar-info { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .dlabnav .sidebar-info i { + color: rgba(0, 0, 0, 0.6); } + [data-sibebarbg="color_15"][data-theme-version="dark"][data-sibebarbg="color_8"] .plus-box, + [data-sibebarbg="color_15"][data-sibebarbg="color_8"] .plus-box { + background-color: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_2"][data-theme-version="dark"], +[data-headerbg="color_2"] { + --headerbg: #6610f2; } + [data-headerbg="color_2"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_2"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_2"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_2"] .search-area .input-group-text, + [data-headerbg="color_2"] .search-area .form-control, + [data-headerbg="color_2"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_2"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_2"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_2"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_2"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_2"] .header-left .search-area .form-control, + [data-headerbg="color_2"] .header-left .search-area .input-group-text { + background-color: #8540f5; } + [data-headerbg="color_2"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_2"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_2"] .header-left .search-area .form-control i, + [data-headerbg="color_2"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_2"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_2"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_2"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_2"] .header-left .plus-icon a { + background-color: #8540f5; } + [data-headerbg="color_2"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_2"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_2"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_2"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_2"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_2"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_2"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_2"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_2"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_2"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_2"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_2"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_2"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_2"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_2"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_2"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_2"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_2"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_2"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_2"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_3"][data-theme-version="dark"], +[data-headerbg="color_3"] { + --headerbg: #F93A0B; } + [data-headerbg="color_3"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_3"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_3"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_3"] .search-area .input-group-text, + [data-headerbg="color_3"] .search-area .form-control, + [data-headerbg="color_3"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_3"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_3"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_3"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_3"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_3"] .header-left .search-area .form-control, + [data-headerbg="color_3"] .header-left .search-area .input-group-text { + background-color: #fa623d; } + [data-headerbg="color_3"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_3"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_3"] .header-left .search-area .form-control i, + [data-headerbg="color_3"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_3"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_3"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_3"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_3"] .header-left .plus-icon a { + background-color: #fa623d; } + [data-headerbg="color_3"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_3"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_3"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_3"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_3"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_3"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_3"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_3"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_3"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_3"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_3"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_3"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_3"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_3"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_3"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_3"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_3"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_3"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_3"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_3"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_4"][data-theme-version="dark"], +[data-headerbg="color_4"] { + --headerbg: #4d06a5; } + [data-headerbg="color_4"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_4"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_4"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_4"] .search-area .input-group-text, + [data-headerbg="color_4"] .search-area .form-control, + [data-headerbg="color_4"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_4"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_4"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_4"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_4"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_4"] .header-left .search-area .form-control, + [data-headerbg="color_4"] .header-left .search-area .input-group-text { + background-color: #6408d6; } + [data-headerbg="color_4"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_4"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_4"] .header-left .search-area .form-control i, + [data-headerbg="color_4"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_4"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_4"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_4"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_4"] .header-left .plus-icon a { + background-color: #6408d6; } + [data-headerbg="color_4"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_4"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_4"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_4"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_4"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_4"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_4"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_4"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_4"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_4"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_4"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_4"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_4"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_4"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_4"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_4"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_4"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_4"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_4"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_4"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_5"][data-theme-version="dark"], +[data-headerbg="color_5"] { + --headerbg: #dc3545; } + [data-headerbg="color_5"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_5"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_5"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_5"] .search-area .input-group-text, + [data-headerbg="color_5"] .search-area .form-control, + [data-headerbg="color_5"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_5"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_5"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_5"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_5"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_5"] .header-left .search-area .form-control, + [data-headerbg="color_5"] .header-left .search-area .input-group-text { + background-color: #e4606d; } + [data-headerbg="color_5"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_5"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_5"] .header-left .search-area .form-control i, + [data-headerbg="color_5"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_5"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_5"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_5"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_5"] .header-left .plus-icon a { + background-color: #e4606d; } + [data-headerbg="color_5"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_5"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_5"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_5"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_5"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_5"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_5"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_5"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_5"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_5"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_5"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_5"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_5"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_5"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_5"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_5"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_5"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_5"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_5"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_5"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_6"][data-theme-version="dark"], +[data-headerbg="color_6"] { + --headerbg: #fd7e14; } + [data-headerbg="color_6"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_6"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_6"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_6"] .search-area .input-group-text, + [data-headerbg="color_6"] .search-area .form-control, + [data-headerbg="color_6"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_6"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_6"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_6"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_6"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_6"] .header-left .search-area .form-control, + [data-headerbg="color_6"] .header-left .search-area .input-group-text { + background-color: #fd9a47; } + [data-headerbg="color_6"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_6"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_6"] .header-left .search-area .form-control i, + [data-headerbg="color_6"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_6"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_6"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_6"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_6"] .header-left .plus-icon a { + background-color: #fd9a47; } + [data-headerbg="color_6"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_6"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_6"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_6"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_6"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_6"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_6"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_6"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_6"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_6"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_6"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_6"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_6"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_6"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_6"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_6"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_6"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_6"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_6"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_6"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_7"][data-theme-version="dark"], +[data-headerbg="color_7"] { + --headerbg: #ffc107; } + [data-headerbg="color_7"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_7"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_7"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_7"] .search-area .input-group-text, + [data-headerbg="color_7"] .search-area .form-control, + [data-headerbg="color_7"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_7"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_7"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_7"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_7"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_7"] .header-left .search-area .form-control, + [data-headerbg="color_7"] .header-left .search-area .input-group-text { + background-color: #ffce3a; } + [data-headerbg="color_7"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_7"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_7"] .header-left .search-area .form-control i, + [data-headerbg="color_7"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_7"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_7"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_7"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_7"] .header-left .plus-icon a { + background-color: #ffce3a; } + [data-headerbg="color_7"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_7"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_7"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_7"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_7"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_7"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_7"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_7"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_7"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_7"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_7"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_7"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_7"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_7"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_7"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_7"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_7"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_7"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_7"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_7"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_8"][data-theme-version="dark"], +[data-headerbg="color_8"] { + --headerbg: #fff; } + [data-headerbg="color_8"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_8"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_8"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_8"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_8"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_8"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_8"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_8"] .header-left .search-area .form-control, + [data-headerbg="color_8"] .header-left .search-area .input-group-text { + background-color: white; } + [data-headerbg="color_8"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_8"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_8"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_8"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_8"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_8"] .header-left .plus-icon a { + background-color: white; } + [data-headerbg="color_8"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_8"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_8"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_8"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_8"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_8"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_8"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_8"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_8"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_8"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_8"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_8"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_8"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_8"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_8"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_8"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_8"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_8"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_8"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_8"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_9"][data-theme-version="dark"], +[data-headerbg="color_9"] { + --headerbg: #20c997; } + [data-headerbg="color_9"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_9"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_9"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_9"] .search-area .input-group-text, + [data-headerbg="color_9"] .search-area .form-control, + [data-headerbg="color_9"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_9"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_9"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_9"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_9"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_9"] .header-left .search-area .form-control, + [data-headerbg="color_9"] .header-left .search-area .input-group-text { + background-color: #3ce0af; } + [data-headerbg="color_9"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_9"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_9"] .header-left .search-area .form-control i, + [data-headerbg="color_9"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_9"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_9"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_9"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_9"] .header-left .plus-icon a { + background-color: #3ce0af; } + [data-headerbg="color_9"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_9"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_9"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_9"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_9"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_9"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_9"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_9"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_9"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_9"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_9"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_9"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_9"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_9"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_9"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_9"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_9"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_9"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_9"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_9"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_10"][data-theme-version="dark"], +[data-headerbg="color_10"] { + --headerbg: #17a2b8; } + [data-headerbg="color_10"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_10"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_10"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_10"] .search-area .input-group-text, + [data-headerbg="color_10"] .search-area .form-control, + [data-headerbg="color_10"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_10"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_10"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_10"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_10"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_10"] .header-left .search-area .form-control, + [data-headerbg="color_10"] .header-left .search-area .input-group-text { + background-color: #1fc8e3; } + [data-headerbg="color_10"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_10"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_10"] .header-left .search-area .form-control i, + [data-headerbg="color_10"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_10"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_10"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_10"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_10"] .header-left .plus-icon a { + background-color: #1fc8e3; } + [data-headerbg="color_10"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_10"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_10"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_10"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_10"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_10"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_10"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_10"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_10"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_10"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_10"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_10"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_10"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_10"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_10"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_10"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_10"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_10"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_10"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_10"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_11"][data-theme-version="dark"], +[data-headerbg="color_11"] { + --headerbg: #94618E; } + [data-headerbg="color_11"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_11"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_11"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_11"] .search-area .input-group-text, + [data-headerbg="color_11"] .search-area .form-control, + [data-headerbg="color_11"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_11"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_11"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_11"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_11"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_11"] .header-left .search-area .form-control, + [data-headerbg="color_11"] .header-left .search-area .input-group-text { + background-color: #aa7ea5; } + [data-headerbg="color_11"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_11"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_11"] .header-left .search-area .form-control i, + [data-headerbg="color_11"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_11"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_11"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_11"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_11"] .header-left .plus-icon a { + background-color: #aa7ea5; } + [data-headerbg="color_11"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_11"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_11"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_11"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_11"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_11"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_11"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_11"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_11"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_11"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_11"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_11"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_11"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_11"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_11"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_11"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_11"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_11"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_11"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_11"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_12"][data-theme-version="dark"], +[data-headerbg="color_12"] { + --headerbg: #343a40; } + [data-headerbg="color_12"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_12"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_12"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_12"] .search-area .input-group-text, + [data-headerbg="color_12"] .search-area .form-control, + [data-headerbg="color_12"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_12"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_12"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_12"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_12"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_12"] .header-left .search-area .form-control, + [data-headerbg="color_12"] .header-left .search-area .input-group-text { + background-color: #4b545c; } + [data-headerbg="color_12"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_12"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_12"] .header-left .search-area .form-control i, + [data-headerbg="color_12"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_12"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_12"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_12"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_12"] .header-left .plus-icon a { + background-color: #4b545c; } + [data-headerbg="color_12"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_12"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_12"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_12"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_12"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_12"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_12"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_12"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_12"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_12"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_12"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_12"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_12"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_12"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_12"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_12"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_12"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_12"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_12"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_12"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_13"][data-theme-version="dark"], +[data-headerbg="color_13"] { + --headerbg: #2a2a2a; } + [data-headerbg="color_13"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_13"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_13"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_13"] .search-area .input-group-text, + [data-headerbg="color_13"] .search-area .form-control, + [data-headerbg="color_13"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_13"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_13"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_13"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_13"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_13"] .header-left .search-area .form-control, + [data-headerbg="color_13"] .header-left .search-area .input-group-text { + background-color: #444444; } + [data-headerbg="color_13"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_13"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_13"] .header-left .search-area .form-control i, + [data-headerbg="color_13"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_13"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_13"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_13"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_13"] .header-left .plus-icon a { + background-color: #444444; } + [data-headerbg="color_13"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_13"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_13"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_13"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_13"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_13"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_13"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_13"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_13"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_13"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_13"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_13"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_13"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_13"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_13"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_13"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_13"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_13"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_13"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_13"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_14"][data-theme-version="dark"], +[data-headerbg="color_14"] { + --headerbg: #4885ed; } + [data-headerbg="color_14"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_14"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_14"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_14"] .search-area .input-group-text, + [data-headerbg="color_14"] .search-area .form-control, + [data-headerbg="color_14"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_14"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_14"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_14"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_14"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_14"] .header-left .search-area .form-control, + [data-headerbg="color_14"] .header-left .search-area .input-group-text { + background-color: #76a4f2; } + [data-headerbg="color_14"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_14"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_14"] .header-left .search-area .form-control i, + [data-headerbg="color_14"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_14"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_14"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_14"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_14"] .header-left .plus-icon a { + background-color: #76a4f2; } + [data-headerbg="color_14"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_14"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_14"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_14"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_14"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_14"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_14"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_14"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_14"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_14"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_14"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_14"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_14"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_14"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_14"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_14"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_14"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_14"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_14"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_14"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +[data-headerbg="color_15"][data-theme-version="dark"], +[data-headerbg="color_15"] { + --headerbg: #4cb32b; } + [data-headerbg="color_15"][data-theme-version="dark"] .search-area .input-group-text, + [data-headerbg="color_15"][data-theme-version="dark"] .search-area .form-control, [data-headerbg="color_15"][data-theme-version="dark"] .search-area .form-control::placeholder, + [data-headerbg="color_15"] .search-area .input-group-text, + [data-headerbg="color_15"] .search-area .form-control, + [data-headerbg="color_15"] .search-area .form-control::placeholder { + color: #fff; } + [data-headerbg="color_15"][data-theme-version="dark"] .search-area .input-group-append .input-group-text i, + [data-headerbg="color_15"] .search-area .input-group-append .input-group-text i { + color: #fff; } + [data-headerbg="color_15"][data-theme-version="dark"] .header-left .search-area .form-control, + [data-headerbg="color_15"][data-theme-version="dark"] .header-left .search-area .input-group-text, + [data-headerbg="color_15"] .header-left .search-area .form-control, + [data-headerbg="color_15"] .header-left .search-area .input-group-text { + background-color: #63d140; } + [data-headerbg="color_15"][data-theme-version="dark"] .header-left .search-area .form-control i, + [data-headerbg="color_15"][data-theme-version="dark"] .header-left .search-area .input-group-text i, + [data-headerbg="color_15"] .header-left .search-area .form-control i, + [data-headerbg="color_15"] .header-left .search-area .input-group-text i { + color: #fff; } + [data-headerbg="color_15"][data-theme-version="dark"] .header-left .dashboard_bar, + [data-headerbg="color_15"] .header-left .dashboard_bar { + color: #fff; } + [data-headerbg="color_15"][data-theme-version="dark"] .header-left .plus-icon a, + [data-headerbg="color_15"] .header-left .plus-icon a { + background-color: #63d140; } + [data-headerbg="color_15"][data-theme-version="dark"] .header-right svg path, + [data-headerbg="color_15"] .header-right svg path { + fill: #fff; } + [data-headerbg="color_15"][data-theme-version="dark"] .header-profile > a.nav-link .header-info small, [data-headerbg="color_15"][data-theme-version="dark"] .header-profile > a.nav-link .header-info .small, [data-headerbg="color_15"][data-theme-version="dark"] .header-profile > a.nav-link .header-info span, + [data-headerbg="color_15"] .header-profile > a.nav-link .header-info small, + [data-headerbg="color_15"] .header-profile > a.nav-link .header-info .small, + [data-headerbg="color_15"] .header-profile > a.nav-link .header-info span { + color: #fff; } + [data-headerbg="color_15"][data-theme-version="dark"] .hamburger .line, + [data-headerbg="color_15"] .hamburger .line { + background: #fff !important; } + [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control, [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .search-area .form-control::placeholder, + [data-headerbg="color_15"][data-headerbg="color_8"] .search-area .input-group-text, + [data-headerbg="color_15"][data-headerbg="color_8"] .search-area .form-control, + [data-headerbg="color_15"][data-headerbg="color_8"] .search-area .form-control::placeholder { + color: #000; + background: #F1F1F1; } + [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .search-area .input-group-text i, + [data-headerbg="color_15"][data-headerbg="color_8"] .header-left .search-area .form-control i, + [data-headerbg="color_15"][data-headerbg="color_8"] .header-left .search-area .input-group-text i { + color: #000; } + [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .dashboard_bar, + [data-headerbg="color_15"][data-headerbg="color_8"] .header-left .dashboard_bar { + color: #000; } + [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .header-left .plus-icon a, + [data-headerbg="color_15"][data-headerbg="color_8"] .header-left .plus-icon a { + background-color: #000; } + [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .hamburger .line, + [data-headerbg="color_15"][data-headerbg="color_8"] .hamburger .line { + background: #000; } + [data-headerbg="color_15"][data-theme-version="dark"][data-headerbg="color_8"] .header-right svg path, + [data-headerbg="color_15"][data-headerbg="color_8"] .header-right svg path { + fill: rgba(0, 0, 0, 0.4); } + +@media (min-width: 62rem) { + [data-container="boxed"] #main-wrapper { + max-width: 74.9375rem; + margin: 0 auto; + box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.1); } + [direction="rtl"][data-container="boxed"] #main-wrapper { + text-align: right; } + [data-container="boxed"] .invoice-num { + font-size: 1.375rem; } } +@media only screen and (min-width: 84.375rem) { + [data-layout="vertical"][data-sidebar-style="overlay"][data-container="boxed"][data-header-position="fixed"] .header { + width: 74.9375rem; } } +@media only screen and (min-width: 75rem) and (max-width: 84.3125rem) { + [data-layout="vertical"][data-sidebar-style="overlay"][data-container="boxed"][data-header-position="fixed"] .header { + width: 74.9375rem; } } +[data-header-position="fixed"][data-layout="horizontal"][data-container="boxed"] .dlabnav { + max-width: 74.9375rem; } + +[data-layout="vertical"][data-container="boxed"][data-header-position="fixed"] .header, +[data-layout="horizontal"][data-container="boxed"][data-header-position="fixed"] .header { + width: 74.9375rem; } + +[data-layout="horizontal"][data-container="boxed"][data-header-position="fixed"][data-sidebar-style="mini"] .header { + width: 74.9375rem; } + +[data-container="boxed"] .metismenu.fixed { + left: auto; + max-width: 74.9375rem; } +[data-container="boxed"] .page-titles { + margin-bottom: 3rem; + padding: 0.9375rem 0.9375rem; } +[data-container="boxed"] .content-body .container-fluid, [data-container="boxed"] .content-body .container-sm, [data-container="boxed"] .content-body .container-md, [data-container="boxed"] .content-body .container-lg, [data-container="boxed"] .content-body .container-xl, [data-container="boxed"] .content-body .container-xxl { + padding: 2.5rem; } + +[data-container="boxed"][data-layout="vertical"] .page-titles { + margin-left: 0; + margin-right: 0; } + +[data-layout="vertical"][data-container="boxed"][data-sidebar-position="fixed"][data-header-position="static"][data-sidebar-style="overlay"] .nav-header { + position: absolute; } +[data-layout="vertical"][data-container="boxed"][data-sidebar-position="fixed"][data-header-position="static"][data-sidebar-style="overlay"] .menu-toggle .dlabnav { + position: absolute; } + +[data-container="boxed"][data-sidebar-position="fixed"][data-layout="horizontal"] .dlabnav.fixed { + left: auto; + max-width: 74.9375rem; } + +@media (min-width: 62rem) { + [data-container="wide-boxed"] #main-wrapper { + max-width: 92.5rem; + margin: 0 auto; + box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.1); } + [direction="rtl"][data-container="wide-boxed"] #main-wrapper { + text-align: right; } } +@media only screen and (min-width: 84.375rem) { + [data-layout="vertical"][data-sidebar-style="overlay"][data-container="wide-boxed"][data-header-position="fixed"] .header { + width: 92.5rem; } } +@media only screen and (min-width: 75rem) and (max-width: 100rem) { + [data-layout="vertical"][data-sidebar-style="overlay"][data-container="wide-boxed"][data-header-position="fixed"] .header { + width: 92.5rem; } } +[data-sidebar-style="compact"][data-header-position="fixed"][data-container="wide-boxed"][data-layout="vertical"] .header { + width: 92.5rem; } + +[data-header-position="fixed"][data-layout="horizontal"][data-container="wide-boxed"] .dlabnav { + max-width: 92.5rem; } + +[data-layout="vertical"][data-container="wide-boxed"][data-header-position="fixed"] .header, +[data-layout="horizontal"][data-container="wide-boxed"][data-header-position="fixed"] .header { + width: 92.5rem; } + +[data-layout="horizontal"][data-container="wide-boxed"][data-header-position="fixed"][data-sidebar-style="mini"] .header { + width: 92.5rem; } + +[data-container="wide-boxed"] .metismenu.fixed { + left: auto; + max-width: 92.5rem; } +[data-container="wide-boxed"] .page-titles { + margin-bottom: 3rem; + padding: 0.9375rem 0.9375rem; } +[data-container="wide-boxed"] .content-body .container-fluid, [data-container="wide-boxed"] .content-body .container-sm, [data-container="wide-boxed"] .content-body .container-md, [data-container="wide-boxed"] .content-body .container-lg, [data-container="wide-boxed"] .content-body .container-xl, [data-container="wide-boxed"] .content-body .container-xxl { + padding: 2.5rem; } + +[data-container="wide-boxed"][data-layout="vertical"] .page-titles { + margin-left: 0; + margin-right: 0; } + +[data-layout="vertical"][data-container="wide-boxed"][data-sidebar-position="fixed"][data-header-position="static"][data-sidebar-style="overlay"] .nav-header { + position: absolute; } +[data-layout="vertical"][data-container="wide-boxed"][data-sidebar-position="fixed"][data-header-position="static"][data-sidebar-style="overlay"] .menu-toggle .dlabnav { + position: absolute; } + +[data-container="wide-boxed"][data-sidebar-position="fixed"][data-layout="horizontal"] .dlabnav.fixed { + left: auto; + max-width: 92.5rem; } + +[data-primary="color_2"] { + --primary: #6610f2; + --secondary: #145650; + --primary-hover: #510bc4; + --primary-dark: #290564; + --rgba-primary-1: rgba(102, 16, 242, 0.1); + --rgba-primary-2: rgba(102, 16, 242, 0.2); + --rgba-primary-3: rgba(102, 16, 242, 0.3); + --rgba-primary-4: rgba(102, 16, 242, 0.4); + --rgba-primary-5: rgba(102, 16, 242, 0.5); + --rgba-primary-6: rgba(102, 16, 242, 0.6); + --rgba-primary-7: rgba(102, 16, 242, 0.7); + --rgba-primary-8: rgba(102, 16, 242, 0.8); + --rgba-primary-9: rgba(102, 16, 242, 0.9); } + +[data-primary="color_3"] { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); } + +[data-primary="color_4"] { + --primary: #4d06a5; + --secondary: #145650; + --primary-hover: #360474; + --primary-dark: #080111; + --rgba-primary-1: rgba(77, 6, 165, 0.1); + --rgba-primary-2: rgba(77, 6, 165, 0.2); + --rgba-primary-3: rgba(77, 6, 165, 0.3); + --rgba-primary-4: rgba(77, 6, 165, 0.4); + --rgba-primary-5: rgba(77, 6, 165, 0.5); + --rgba-primary-6: rgba(77, 6, 165, 0.6); + --rgba-primary-7: rgba(77, 6, 165, 0.7); + --rgba-primary-8: rgba(77, 6, 165, 0.8); + --rgba-primary-9: rgba(77, 6, 165, 0.9); } + +[data-primary="color_5"] { + --primary: #dc3545; + --secondary: #145650; + --primary-hover: #bd2130; + --primary-dark: #66121a; + --rgba-primary-1: rgba(220, 53, 69, 0.1); + --rgba-primary-2: rgba(220, 53, 69, 0.2); + --rgba-primary-3: rgba(220, 53, 69, 0.3); + --rgba-primary-4: rgba(220, 53, 69, 0.4); + --rgba-primary-5: rgba(220, 53, 69, 0.5); + --rgba-primary-6: rgba(220, 53, 69, 0.6); + --rgba-primary-7: rgba(220, 53, 69, 0.7); + --rgba-primary-8: rgba(220, 53, 69, 0.8); + --rgba-primary-9: rgba(220, 53, 69, 0.9); } + +[data-primary="color_6"] { + --primary: #fd7e14; + --secondary: #145650; + --primary-hover: #dc6502; + --primary-dark: #773701; + --rgba-primary-1: rgba(253, 126, 20, 0.1); + --rgba-primary-2: rgba(253, 126, 20, 0.2); + --rgba-primary-3: rgba(253, 126, 20, 0.3); + --rgba-primary-4: rgba(253, 126, 20, 0.4); + --rgba-primary-5: rgba(253, 126, 20, 0.5); + --rgba-primary-6: rgba(253, 126, 20, 0.6); + --rgba-primary-7: rgba(253, 126, 20, 0.7); + --rgba-primary-8: rgba(253, 126, 20, 0.8); + --rgba-primary-9: rgba(253, 126, 20, 0.9); } + +[data-primary="color_7"] { + --primary: #ffc107; + --secondary: #145650; + --primary-hover: #d39e00; + --primary-dark: #6d5200; + --rgba-primary-1: rgba(255, 193, 7, 0.1); + --rgba-primary-2: rgba(255, 193, 7, 0.2); + --rgba-primary-3: rgba(255, 193, 7, 0.3); + --rgba-primary-4: rgba(255, 193, 7, 0.4); + --rgba-primary-5: rgba(255, 193, 7, 0.5); + --rgba-primary-6: rgba(255, 193, 7, 0.6); + --rgba-primary-7: rgba(255, 193, 7, 0.7); + --rgba-primary-8: rgba(255, 193, 7, 0.8); + --rgba-primary-9: rgba(255, 193, 7, 0.9); } + +[data-primary="color_8"] { + --primary: #fff; + --secondary: #145650; + --primary-hover: #e6e6e6; + --primary-dark: #b3b3b3; + --rgba-primary-1: rgba(255, 255, 255, 0.1); + --rgba-primary-2: rgba(255, 255, 255, 0.2); + --rgba-primary-3: rgba(255, 255, 255, 0.3); + --rgba-primary-4: rgba(255, 255, 255, 0.4); + --rgba-primary-5: rgba(255, 255, 255, 0.5); + --rgba-primary-6: rgba(255, 255, 255, 0.6); + --rgba-primary-7: rgba(255, 255, 255, 0.7); + --rgba-primary-8: rgba(255, 255, 255, 0.8); + --rgba-primary-9: rgba(255, 255, 255, 0.9); } + +[data-primary="color_9"] { + --primary: #20c997; + --secondary: #145650; + --primary-hover: #199d76; + --primary-dark: #0b4534; + --rgba-primary-1: rgba(32, 201, 151, 0.1); + --rgba-primary-2: rgba(32, 201, 151, 0.2); + --rgba-primary-3: rgba(32, 201, 151, 0.3); + --rgba-primary-4: rgba(32, 201, 151, 0.4); + --rgba-primary-5: rgba(32, 201, 151, 0.5); + --rgba-primary-6: rgba(32, 201, 151, 0.6); + --rgba-primary-7: rgba(32, 201, 151, 0.7); + --rgba-primary-8: rgba(32, 201, 151, 0.8); + --rgba-primary-9: rgba(32, 201, 151, 0.9); } + +[data-primary="color_10"] { + --primary: #17a2b8; + --secondary: #145650; + --primary-hover: #117a8b; + --primary-dark: #062a30; + --rgba-primary-1: rgba(23, 162, 184, 0.1); + --rgba-primary-2: rgba(23, 162, 184, 0.2); + --rgba-primary-3: rgba(23, 162, 184, 0.3); + --rgba-primary-4: rgba(23, 162, 184, 0.4); + --rgba-primary-5: rgba(23, 162, 184, 0.5); + --rgba-primary-6: rgba(23, 162, 184, 0.6); + --rgba-primary-7: rgba(23, 162, 184, 0.7); + --rgba-primary-8: rgba(23, 162, 184, 0.8); + --rgba-primary-9: rgba(23, 162, 184, 0.9); } + +[data-primary="color_11"] { + --primary: #94618E; + --secondary: #145650; + --primary-hover: #754d70; + --primary-dark: #382435; + --rgba-primary-1: rgba(148, 97, 142, 0.1); + --rgba-primary-2: rgba(148, 97, 142, 0.2); + --rgba-primary-3: rgba(148, 97, 142, 0.3); + --rgba-primary-4: rgba(148, 97, 142, 0.4); + --rgba-primary-5: rgba(148, 97, 142, 0.5); + --rgba-primary-6: rgba(148, 97, 142, 0.6); + --rgba-primary-7: rgba(148, 97, 142, 0.7); + --rgba-primary-8: rgba(148, 97, 142, 0.8); + --rgba-primary-9: rgba(148, 97, 142, 0.9); } + +[data-primary="color_12"] { + --primary: #343a40; + --secondary: #145650; + --primary-hover: #1d2124; + --primary-dark: black; + --rgba-primary-1: rgba(52, 58, 64, 0.1); + --rgba-primary-2: rgba(52, 58, 64, 0.2); + --rgba-primary-3: rgba(52, 58, 64, 0.3); + --rgba-primary-4: rgba(52, 58, 64, 0.4); + --rgba-primary-5: rgba(52, 58, 64, 0.5); + --rgba-primary-6: rgba(52, 58, 64, 0.6); + --rgba-primary-7: rgba(52, 58, 64, 0.7); + --rgba-primary-8: rgba(52, 58, 64, 0.8); + --rgba-primary-9: rgba(52, 58, 64, 0.9); } + +[data-primary="color_13"] { + --primary: #2a2a2a; + --secondary: #145650; + --primary-hover: #111111; + --primary-dark: black; + --rgba-primary-1: rgba(42, 42, 42, 0.1); + --rgba-primary-2: rgba(42, 42, 42, 0.2); + --rgba-primary-3: rgba(42, 42, 42, 0.3); + --rgba-primary-4: rgba(42, 42, 42, 0.4); + --rgba-primary-5: rgba(42, 42, 42, 0.5); + --rgba-primary-6: rgba(42, 42, 42, 0.6); + --rgba-primary-7: rgba(42, 42, 42, 0.7); + --rgba-primary-8: rgba(42, 42, 42, 0.8); + --rgba-primary-9: rgba(42, 42, 42, 0.9); } + +[data-primary="color_14"] { + --primary: #4885ed; + --secondary: #145650; + --primary-hover: #1a66e8; + --primary-dark: #0e3d8e; + --rgba-primary-1: rgba(72, 133, 237, 0.1); + --rgba-primary-2: rgba(72, 133, 237, 0.2); + --rgba-primary-3: rgba(72, 133, 237, 0.3); + --rgba-primary-4: rgba(72, 133, 237, 0.4); + --rgba-primary-5: rgba(72, 133, 237, 0.5); + --rgba-primary-6: rgba(72, 133, 237, 0.6); + --rgba-primary-7: rgba(72, 133, 237, 0.7); + --rgba-primary-8: rgba(72, 133, 237, 0.8); + --rgba-primary-9: rgba(72, 133, 237, 0.9); } + +[data-primary="color_15"] { + --primary: #4cb32b; + --secondary: #145650; + --primary-hover: #3b8a21; + --primary-dark: #18380d; + --rgba-primary-1: rgba(76, 179, 43, 0.1); + --rgba-primary-2: rgba(76, 179, 43, 0.2); + --rgba-primary-3: rgba(76, 179, 43, 0.3); + --rgba-primary-4: rgba(76, 179, 43, 0.4); + --rgba-primary-5: rgba(76, 179, 43, 0.5); + --rgba-primary-6: rgba(76, 179, 43, 0.6); + --rgba-primary-7: rgba(76, 179, 43, 0.7); + --rgba-primary-8: rgba(76, 179, 43, 0.8); + --rgba-primary-9: rgba(76, 179, 43, 0.9); } + +[data-typography="opensans"] { + font-family: 'Open Sans', sans-serif; } + +[data-typography="poppins"] { + font-family: 'poppins', sans-serif; } + +[data-typography="cairo"] { + font-family: 'Cairo', sans-serif; } + +[data-typography="roboto"] { + font-family: 'Roboto', sans-serif; } + +[data-typography="helvetica"] { + font-family: 'HelveticaNeue'; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +[data-theme-version="transparent"] { + background: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/images/body/12.jpg"); + background-repeat: no-repeat; + background-attachment: fixed; + background-size: cover; + background-position: center; + position: relative; + color: #fff; } + [data-theme-version="transparent"] h1, [data-theme-version="transparent"] .h1, + [data-theme-version="transparent"] h2, + [data-theme-version="transparent"] .h2, + [data-theme-version="transparent"] h3, + [data-theme-version="transparent"] .h3, + [data-theme-version="transparent"] h4, + [data-theme-version="transparent"] .h4, + [data-theme-version="transparent"] h5, + [data-theme-version="transparent"] .h5, + [data-theme-version="transparent"] h6, + [data-theme-version="transparent"] .h6 { + color: #fff !important; } + [data-theme-version="transparent"] a.link { + color: #ddd; } + [data-theme-version="transparent"] a.link:focus, + [data-theme-version="transparent"] a.link:hover { + color: #D653C1; } + [data-theme-version="transparent"] a { + color: #fff; } + [data-theme-version="transparent"] a:hover { + color: #828690; } + [data-theme-version="transparent"] .border-right { + border-right: 1px solid #2e2e42 !important; } + [data-theme-version="transparent"] .border-left { + border-left: 1px solid #2e2e42 !important; } + [data-theme-version="transparent"] .border-top { + border-top: 1px solid #2e2e42 !important; } + [data-theme-version="transparent"] .border-bottom { + border-bottom: 1px solid #2e2e42 !important; } + [data-theme-version="transparent"] .border { + border: 1px solid #2e2e42 !important; } + +[data-theme-version="transparent"] .dropdown-menu { + background-color: #212130; } +[data-theme-version="transparent"] .dropdown-item:hover, [data-theme-version="transparent"] .dropdown-item:focus { + background-color: #17171E; + color: #fff; } +[data-theme-version="transparent"] .form-control { + background-color: #17171E; + border-color: #2e2e42; + color: #fff; } +[data-theme-version="transparent"] .card { + background-color: rgba(0, 0, 0, 0.15); } + +[data-theme-version="transparent"] .header { + background-color: rgba(0, 0, 0, 0.15); } +[data-theme-version="transparent"] .header-left input { + border-color: #2e2e42; + color: #fff; } + [data-theme-version="transparent"] .header-left input:focus { + box-shadow: none; + border-color: #F93A0B; } + [data-theme-version="transparent"] .header-left input::placeholder { + color: #fff; } +[data-theme-version="transparent"] .header-right .dropdown .nav-link:hover { + color: #fff; } +[data-theme-version="transparent"] .header-right .notification_dropdown .dropdown-item a { + color: #fff; } + +[data-theme-version="transparent"] .nav-header, +[data-theme-version="transparent"] .nav-control { + background-color: rgba(0, 0, 0, 0.15) !important; } +[data-theme-version="transparent"] .nav-control { + color: #fff; } +[data-theme-version="transparent"] .brand-logo { + color: #fff; } + [data-theme-version="transparent"] .brand-logo:hover { + color: #fff; } + +[data-theme-version="transparent"] .nav-header, +[data-theme-version="transparent"] .nav-control { + background-color: rgba(0, 0, 0, 0.15) !important; } +[data-theme-version="transparent"] .nav-control { + color: #fff; } +[data-theme-version="transparent"] .brand-logo { + color: #fff; } + [data-theme-version="transparent"] .brand-logo:hover { + color: #fff; } + +[data-theme-version="transparent"] .dlabnav { + background-color: rgba(0, 0, 0, 0.15) !important; } + [data-theme-version="transparent"] .dlabnav .metismenu > li > a { + color: rgba(0, 0, 0, 0.15); } + [data-theme-version="transparent"] .dlabnav .metismenu > li:hover > a, [data-theme-version="transparent"] .dlabnav .metismenu > li:focus > a, [data-theme-version="transparent"] .dlabnav .metismenu > li.mm-active > a { + background-color: rgba(0, 0, 0, 0.15) !important; + color: #fff; } + [data-theme-version="transparent"] .dlabnav .metismenu > li:hover > a::after, [data-theme-version="transparent"] .dlabnav .metismenu > li:focus > a::after, [data-theme-version="transparent"] .dlabnav .metismenu > li.mm-active > a::after { + border-color: transparent transparent #fff transparent; } + [data-theme-version="transparent"] .dlabnav .metismenu > li.mm-active ul ul { + background-color: transparent; } + [data-theme-version="transparent"] .dlabnav .metismenu ul { + background-color: rgba(0, 0, 0, 0.15); } + [data-theme-version="transparent"] .dlabnav .metismenu ul a:hover, [data-theme-version="transparent"] .dlabnav .metismenu ul a:focus, [data-theme-version="transparent"] .dlabnav .metismenu ul a.mm-active { + color: #fff; } + [data-theme-version="transparent"] .dlabnav .metismenu a { + color: rgba(0, 0, 0, 0.15); } + [data-theme-version="transparent"] .dlabnav .metismenu ul { + background-color: rgba(0, 0, 0, 0.15) !important; } + [data-theme-version="transparent"] .dlabnav .metismenu .has-arrow:after { + border-color: transparent transparent rgba(0, 0, 0, 0.15) transparent; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +[data-theme-version="dark"] { + background: #17171E; + color: #828690; + --nav-headbg: #212130; + --sidebar-bg: #212130; + --headerbg: #212130; } + [data-theme-version="dark"] h1, [data-theme-version="dark"] .h1, + [data-theme-version="dark"] h2, + [data-theme-version="dark"] .h2, + [data-theme-version="dark"] h3, + [data-theme-version="dark"] .h3, + [data-theme-version="dark"] h4, + [data-theme-version="dark"] .h4, + [data-theme-version="dark"] h5, + [data-theme-version="dark"] .h5, + [data-theme-version="dark"] h6, + [data-theme-version="dark"] .h6 { + color: #fff !important; } + [data-theme-version="dark"] a.link { + color: #ddd; } + [data-theme-version="dark"] a.link:focus, + [data-theme-version="dark"] a.link:hover { + color: #D653C1; } + [data-theme-version="dark"] a:hover { + color: #fff; } + [data-theme-version="dark"] .border-right { + border-right: 0.0625rem solid #2e2e42 !important; } + [data-theme-version="dark"] .border-left { + border-left: 0.0625rem solid #2e2e42 !important; } + [data-theme-version="dark"] .border-top { + border-top: 0.0625rem solid #2e2e42 !important; } + [data-theme-version="dark"] .border-bottom { + border-bottom: 0.0625rem solid #2e2e42 !important; } + [data-theme-version="dark"] .border { + border: 0.0625rem solid #2e2e42 !important; } + +[data-theme-version="dark"] .card { + background-color: #212130; + box-shadow: none; } +[data-theme-version="dark"] .dropdown-menu { + background-color: #212130; + box-shadow: 0rem 0rem 0rem 0.0625rem rgba(255, 255, 255, 0.1); } + [data-theme-version="dark"] .dropdown-menu .dropdown-item { + color: #777777; } + [data-theme-version="dark"] .dropdown-menu .dropdown-item.selected, [data-theme-version="dark"] .dropdown-menu .dropdown-item.selected.active, [data-theme-version="dark"] .dropdown-menu .dropdown-item.active, [data-theme-version="dark"] .dropdown-menu .dropdown-item:hover, [data-theme-version="dark"] .dropdown-menu .dropdown-item:focus { + background-color: #212130; + color: #fff; } +[data-theme-version="dark"] a { + color: #fff !important; } +[data-theme-version="dark"] .btn-link g [fill] { + fill: #fff; } +[data-theme-version="dark"] .btn-light:active, +[data-theme-version="dark"] .btn-light:focus, +[data-theme-version="dark"] .btn-light:hover { + color: #000; } +[data-theme-version="dark"] .form-control { + background-color: #2E2E40; + border-color: #2e2e42; + color: #fff; } +[data-theme-version="dark"] .modal-content { + background: #212130; } +[data-theme-version="dark"] .modal-footer, +[data-theme-version="dark"] .modal-header { + border-color: #2e2e42; } +[data-theme-version="dark"] .close { + font-weight: 400; + color: #fff; + text-shadow: none; } + [data-theme-version="dark"] .close:hover { + color: #fff; } +[data-theme-version="dark"] .star-rating .product-review, +[data-theme-version="dark"] .new-arrival-content .item { + color: #fff; } +[data-theme-version="dark"] .custom-dropdown .dropdown-menu { + border-color: #2e2e42; } +[data-theme-version="dark"] .widget-stat .media > span { + background: #2e2e42; + border-color: #2e2e42; + color: #fff; } +[data-theme-version="dark"] .plus-minus-input .custom-btn { + background: #17171E; + border-color: #2e2e42; } +[data-theme-version="dark"] .dropdown-divider, +[data-theme-version="dark"] .size-filter ul li { + border-color: #2e2e42; } +[data-theme-version="dark"] .custom-select { + border-color: #2e2e42; + color: #828690; + background: #17171E; } +[data-theme-version="dark"] .nav-tabs { + border-color: #2e2e42 !important; } +[data-theme-version="dark"] .mail-list .list-group-item.active i { + color: #fff; } +[data-theme-version="dark"] hr { + border-color: #2e2e42; } +[data-theme-version="dark"] .grid-col { + background: #17171E; } +[data-theme-version="dark"] .noUi-target { + border-color: #2e2e42; + border-radius: 0.5rem; + box-shadow: none; } + [data-theme-version="dark"] .noUi-target .noUi-connects { + background: #2e2e42; } +[data-theme-version="dark"] .noUi-marker-large, +[data-theme-version="dark"] .noUi-marker { + background: #2e2e42; } +[data-theme-version="dark"] .input-group-text { + background: #212130; + color: #fff; + border-color: #2e2e42; } +[data-theme-version="dark"] .note-editor.note-frame { + border-color: #2e2e42; } + [data-theme-version="dark"] .note-editor.note-frame .btn { + color: #fff; } + [data-theme-version="dark"] .note-editor.note-frame .note-editing-area .note-editable { + color: #fff; } +[data-theme-version="dark"] .widget-media .timeline .timeline-panel { + border-color: #2e2e42; } +[data-theme-version="dark"] .notification_dropdown .dropdown-menu-right .all-notification { + border-color: #2e2e42; } +[data-theme-version="dark"] #user-activity .nav-tabs .nav-link { + border-color: #2e2e42; } + [data-theme-version="dark"] #user-activity .nav-tabs .nav-link.active { + background: #17171E; + color: #fff; } +[data-theme-version="dark"] .list-group-item-action { + color: #393939; } +[data-theme-version="dark"] .list-group-item-action:focus, +[data-theme-version="dark"] .list-group-item-action:hover, +[data-theme-version="dark"] .list-group-item-action:focus { + background-color: #17171E; + border-color: #17171E; } +[data-theme-version="dark"] .list-group-item.active { + color: #fff; + border-color: var(--primary); } + [data-theme-version="dark"] .list-group-item.active:focus, [data-theme-version="dark"] .list-group-item.active:hover, [data-theme-version="dark"] .list-group-item.active:focus { + background-color: var(--primary); + border-color: var(--primary); + color: #fff; } +[data-theme-version="dark"] .swal2-popup { + background: #212130; } +[data-theme-version="dark"] .form-head .btn-outline-primary { + border-color: #2e2e42; } +[data-theme-version="dark"] .form-head .btn-outline-primary:hover { + border-color: var(--primary); } +[data-theme-version="dark"] .review-tab.nav-pills li a.nav-link.active { + background: transparent; } +[data-theme-version="dark"] .new-arrival-content h4 a, [data-theme-version="dark"] .new-arrival-content .h4 a { + color: #fff; } +[data-theme-version="dark"] .text-black { + color: #fff !important; } +[data-theme-version="dark"] .abilities-chart .ct-chart .ct-label { + fill: #fff; } +[data-theme-version="dark"] .morris_chart_height text tspan { + fill: #fff; } +[data-theme-version="dark"] .btn-link { + color: #fff; } +[data-theme-version="dark"] .order-bg { + background: #17171E; } +[data-theme-version="dark"] .detault-daterange { + background: #17171E; + color: #fff; } + [data-theme-version="dark"] .detault-daterange .input-group-text { + background: #212130; + border: 0; } +[data-theme-version="dark"] .dataTablesCard { + background-color: #212130; } +[data-theme-version="dark"] .compose-content .dropzone { + background: #17171E !important; } + [data-theme-version="dark"] .compose-content .dropzone .dlab-message .dlab-button { + color: #fff; } +[data-theme-version="dark"] .daterangepicker { + background: #17171E; + border-color: var(--primary); } + [data-theme-version="dark"] .daterangepicker .calendar-table { + border-color: var(--primary); + background: #17171E; } + [data-theme-version="dark"] .daterangepicker .calendar-table .table-condensed td:hover { + background-color: var(--primary); + color: #fff; } + [data-theme-version="dark"] .daterangepicker:after { + border-bottom: 0.375rem solid #17171E; } +[data-theme-version="dark"] .daterangepicker select.hourselect +, [data-theme-version="dark"] .daterangepicker select.minuteselect +, [data-theme-version="dark"] .daterangepicker select.secondselect +, [data-theme-version="dark"] .daterangepicker select.ampmselect { + background: #17171E; + border: 0.0625rem solid #2e2e42; + color: #fff; } +[data-theme-version="dark"] .daterangepicker td.off, +[data-theme-version="dark"] .daterangepicker td.off.in-range, +[data-theme-version="dark"] .daterangepicker td.off.start-date, +[data-theme-version="dark"] .daterangepicker td.off.end-date { + background-color: #212130; } + [data-theme-version="dark"] .daterangepicker td.off:hover, + [data-theme-version="dark"] .daterangepicker td.off.in-range:hover, + [data-theme-version="dark"] .daterangepicker td.off.start-date:hover, + [data-theme-version="dark"] .daterangepicker td.off.end-date:hover { + background-color: var(--primary); + color: #fff; } +[data-theme-version="dark"] .app-fullcalendar .fc-button { + background-color: #17171E; + border-color: var(--primary); + color: #fff; + text-shadow: none; } + [data-theme-version="dark"] .app-fullcalendar .fc-button:hover, [data-theme-version="dark"] .app-fullcalendar .fc-button.fc-stat-hover { + background-color: var(--primary); } +[data-theme-version="dark"] .swal2-popup .swal2-styled:focus { + outline: 0; + box-shadow: 0 0 0 0.125rem #2e2e42, 0 0 0 0.25rem var(--rgba-primary-1); } +[data-theme-version="dark"] .dd-handle { + border-color: #2e2e42; } +[data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul { + background: #212130; } +[data-theme-version="dark"] .header-right .notification_dropdown .nav-link { + border-color: #2e2e42; } +[data-theme-version="dark"] .nav-tabs .nav-link:hover, [data-theme-version="dark"] .nav-tabs .nav-link.active { + border-color: var(--primary); + background: transparent; + color: white !important; } +[data-theme-version="dark"] .clockpicker-popover .popover-content { + background-color: #212130; } +[data-theme-version="dark"] .clockpicker-plate { + background-color: #17171E; } +[data-theme-version="dark"] .clockpicker-popover .popover-title { + background-color: #17171E; + color: #fff; } +[data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link span { + background-color: #17171E; } +[data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link:after { + background: #17171E; } +[data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link.active:after, [data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link.done:after { + background: var(--primary); } +[data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link.active span +, [data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link.done span { + background: var(--primary); } +[data-theme-version="dark"] .check-switch .custom-control-label:after +, [data-theme-version="dark"] .check-switch .custom-control-label:before { + border-color: var(--primary); } +[data-theme-version="dark"] .fc-unthemed .fc-today { + background: #17171E; } +[data-theme-version="dark"] .fc-unthemed .fc-divider, [data-theme-version="dark"] .fc-unthemed .fc-list-heading td, [data-theme-version="dark"] .fc-unthemed .fc-popover .fc-header { + background: #2e2e42; } +[data-theme-version="dark"] .picker__box { + background: #17171E; } + [data-theme-version="dark"] .picker__box .picker__button--clear + , [data-theme-version="dark"] .picker__box .picker__button--close + , [data-theme-version="dark"] .picker__box .picker__button--today { + background: #212130; + color: #fff; } + [data-theme-version="dark"] .picker__box .picker__button--clear:hover:before + , [data-theme-version="dark"] .picker__box .picker__button--close:hover:before + , [data-theme-version="dark"] .picker__box .picker__button--today:hover:before { + color: #fff; } +[data-theme-version="dark"] .picker { + color: #999; } +[data-theme-version="dark"] .dtp > .dtp-content { + background: #17171E; } +[data-theme-version="dark"] .dtp table.dtp-picker-days tr > td > a { + color: #68686a; } + [data-theme-version="dark"] .dtp table.dtp-picker-days tr > td > a.selected { + color: #fff; } +[data-theme-version="dark"] .order-request tbody tr { + border-color: #2e2e42; } +[data-theme-version="dark"] .card-list li { + color: #fff; } +[data-theme-version="dark"] .card-bx .change-btn:hover { + color: var(--primary); } +[data-theme-version="dark"] .invoice-card.bg-warning { + background-color: #5b3c1f !important; } +[data-theme-version="dark"] .invoice-card.bg-success { + background-color: #2a6729 !important; } +[data-theme-version="dark"] .invoice-card.bg-info { + background-color: #4c276a !important; } +[data-theme-version="dark"] .invoice-card.bg-secondary { + background-color: #1c3e52 !important; } +[data-theme-version="dark"] .user-list li { + border-color: #212130; } +[data-theme-version="dark"] .toggle-switch { + color: #fff; } +[data-theme-version="dark"] .bar-chart .apexcharts-text tspan { + fill: #969ba0; } +[data-theme-version="dark"] .bar-chart line { + stroke: #2e2e42; } +[data-theme-version="dark"] .coin-card { + background: #0f6a62; + background: -moz-linear-gradient(left, #0f6a62 0%, #084355 100%); + background: -webkit-linear-gradient(left, #0f6a62 0%, #084355 100%); + background: linear-gradient(to right, #0f6a62 0%, #084355 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f6a62', endColorstr='#084355',GradientType=1 ); } + [data-theme-version="dark"] .coin-card .coin-icon { + background: rgba(0, 0, 0, 0.2); } +[data-theme-version="dark"] .accordion.style-1 .accordion-item, [data-theme-version="dark"] .invoice-list { + border-color: #2e2e42; } +[data-theme-version="dark"] .accordion.style-1 .accordion-header.collapsed .user-info a, [data-theme-version="dark"] .accordion.style-1 .accordion-header.collapsed .user-info, [data-theme-version="dark"] .accordion.style-1 .accordion-header.collapsed > span { + color: #fff; } +[data-theme-version="dark"] .ic-card > a { + background: #25479f; } + [data-theme-version="dark"] .ic-card > a:first-child { + border-color: #25479f; } +[data-theme-version="dark"] .ic-card span { + color: #fff; } +[data-theme-version="dark"] table.dataTable thead th, [data-theme-version="dark"] table.dataTable thead td { + border-color: #2e2e42 !important; } +[data-theme-version="dark"] .form-check .form-check-input { + background: transparent; } + [data-theme-version="dark"] .form-check .form-check-input:checked { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); } +[data-theme-version="dark"] .paging_simple_numbers.dataTables_paginate { + background: #17171E; } +[data-theme-version="dark"] .dataTables_info { + color: #fff; } +[data-theme-version="dark"] .dataTables_wrapper .dataTables_paginate span .paginate_button.current, +[data-theme-version="dark"] .dataTables_wrapper .dataTables_paginate span .paginate_button:hover { + background: var(--primary); + color: #fff !important; } +[data-theme-version="dark"] .dashboard-select { + background: var(--rgba-primary-1); } +[data-theme-version="dark"] .dashboard-select .list { + background: #212130; } +[data-theme-version="dark"] .dashboard-select .option:hover, [data-theme-version="dark"] .dashboard-select .option.focus, [data-theme-version="dark"] .dashboard-select .option.selected.focus { + background: #17171E; } +[data-theme-version="dark"] .card-tabs.style-1 .nav-tabs { + background: #212130; } +[data-theme-version="dark"] .transaction-details { + border-color: #2e2e42; } +[data-theme-version="dark"] .description { + color: #fff; } +[data-theme-version="dark"] .transaction-details .amount-bx { + background: #3f250d; } + [data-theme-version="dark"] .transaction-details .amount-bx i { + background: #8d3b0c; } +[data-theme-version="dark"] .nice-select .option { + background: #212130; } +[data-theme-version="dark"] .nice-select .option:hover, [data-theme-version="dark"] .nice-select .option.focus, [data-theme-version="dark"] .nice-select .option.selected.focus { + background: #212130; } +[data-theme-version="dark"] .card-tabs.style-1 { + border-color: #2e2e42; } +[data-theme-version="dark"] .nice-select .list { + background: #17171E; } +[data-theme-version="dark"] .table-search .input-group .input-group-text { + background: #212130; } +[data-theme-version="dark"] .dark-btn svg path { + stroke: #fff; } +[data-theme-version="dark"] .bar-chart .apexcharts-legend-text { + color: #fff !important; } +[data-theme-version="dark"] .Sales tspan { + fill: #fff; } +[data-theme-version="dark"] .timeline-chart rect { + fill: #17171E; } +[data-theme-version="dark"] .header-info span { + color: #fff !important; } +[data-theme-version="dark"] .smallipop-instance.blue { + color: #fff; } +[data-theme-version="dark"] .property-map .smallipop.smallimap-mapicon .circle-marker { + border-color: #2e2e42; } +[data-theme-version="dark"] .property-features li { + color: #fff; } +[data-theme-version="dark"] .review-tabs-1 { + background: #212130; } +[data-theme-version="dark"] .coin-tabs { + background: #2E2E40; } + [data-theme-version="dark"] .coin-tabs .nav-link.active { + background: var(--primary) !important; + color: #fff; } +[data-theme-version="dark"] .separate-row > div { + border-color: #2e2e42; } +[data-theme-version="dark"] .bg-white { + background: #2E2E40 !important; } +[data-theme-version="dark"] .dlabnav .header-info2 span { + color: #fff; } +[data-theme-version="dark"] .brand-title path { + fill: #fff; } +[data-theme-version="dark"] .brand-title tspan { + fill: #fff; } +[data-theme-version="dark"] .shapreter-row > div { + border-color: #2e2e42; } +[data-theme-version="dark"] .chartBar line { + stroke: #2e2e42; } +[data-theme-version="dark"] .search-job .search-dropdown:after { + background: #2e2e42; } +[data-theme-version="dark"] .chartjs line { + stroke: #2e2e42; } +[data-theme-version="dark"] .form-label { + color: #fff; } +[data-theme-version="dark"] .datepicker-switch { + color: #fff; } +[data-theme-version="dark"] .datepicker.datepicker-dropdown td.day, [data-theme-version="dark"] .datepicker.datepicker-dropdown th.next, [data-theme-version="dark"] .datepicker.datepicker-dropdown th.prev { + color: #fff; } +[data-theme-version="dark"] .datepicker.datepicker-dropdown th.dow { + color: #fff; } +[data-theme-version="dark"] .datepicker.datepicker-dropdown th.datepicker-switch, [data-theme-version="dark"] .datepicker.datepicker-dropdown th.next, [data-theme-version="dark"] .datepicker.datepicker-dropdown th.prev { + color: #fff; } +[data-theme-version="dark"] .btn-close { + color: #fff !important; } +[data-theme-version="dark"] .bgl-secondary { + color: #fff; } +[data-theme-version="dark"] .application tr td .btn { + color: #fff; } +[data-theme-version="dark"] .btn-link svg path { + stroke: #fff; } +[data-theme-version="dark"] .alert.alert-outline-secondary, +[data-theme-version="dark"] .alert.alert-outline-dark { + color: #fff; } +[data-theme-version="dark"] .form-control-plaintext { + color: #fff; } +[data-theme-version="dark"] .timeline-panel .media-body small, [data-theme-version="dark"] .timeline-panel .media-body .small { + color: #fff; } +[data-theme-version="dark"] .jobs { + border-color: #2e2e42; } + +[data-theme-version="dark"][data-layout="vertical"][data-sidebar-position="fixed"] .header { + border-color: #2e2e42; } +[data-theme-version="dark"] .header { + border-color: #2e2e42; } +[data-theme-version="dark"] .header-left .dashboard_bar { + color: #fff; } +[data-theme-version="dark"] .header-left .search-area .form-control { + background: #17171E; } +[data-theme-version="dark"] .header-left .search-area .input-group-text { + border: 0; + background: #17171E; } + [data-theme-version="dark"] .header-left .search-area .input-group-text a { + color: #4f7086; } +[data-theme-version="dark"] .header-right .notification_dropdown .nav-link { + /* background: $d-bg!important; */ } + [data-theme-version="dark"] .header-right .notification_dropdown .nav-link .badge { + border-color: #212130; } + [data-theme-version="dark"] .header-right .notification_dropdown .nav-link svg path { + fill: #fff; } +[data-theme-version="dark"] .header-right .dropdown .nav-link { + color: #fff; } + [data-theme-version="dark"] .header-right .dropdown .nav-link:hover { + color: #fff; } +[data-theme-version="dark"] .nav-header .hamburger .line { + background: #fff !important; } +[data-theme-version="dark"] .menu-toggle .nav-header .nav-control .hamburger .line { + background-color: #fff !important; } + +[data-theme-version="dark"] .nav-header { + border-color: #2e2e42; } +[data-theme-version="dark"] .nav-control { + color: #fff; } +[data-theme-version="dark"] .brand-logo { + color: #fff; } + [data-theme-version="dark"] .brand-logo:hover { + color: #fff; } +[data-theme-version="dark"] .svg-title-path { + fill: #fff; } + +[data-theme-version="dark"] .nav-header { + border-color: #2e2e42; } +[data-theme-version="dark"] .nav-control { + color: #fff; } +[data-theme-version="dark"] .brand-logo { + color: #fff; } + [data-theme-version="dark"] .brand-logo:hover { + color: #fff; } +[data-theme-version="dark"] .svg-title-path { + fill: #fff; } + +[data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li > ul { + background-color: #212130; } +[data-theme-version="dark"] .fixed-content-box { + background-color: #212130; } + [data-theme-version="dark"] .fixed-content-box .head-name { + background: #212130; + color: #fff; + border-color: #2e2e42; } + [data-theme-version="dark"] .fixed-content-box + .header + .dlabnav { + background-color: #17171E; } +[data-theme-version="dark"][data-layout="vertical"][data-sidebar-position="fixed"] .dlabnav { + border-color: #2e2e42; } +[data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, [data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a { + background: transparent; } + [data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a i, [data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a i { + color: var(--primary); + background: var(--rgba-primary-1); } +[data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li a > i { + color: rgba(255, 255, 255, 0.3); } +[data-theme-version="dark"] .dlabnav .header-profile > a.nav-link { + border-color: #2e2e42; } + [data-theme-version="dark"] .dlabnav .header-profile > a.nav-link .header-info span { + color: #fff; } +[data-theme-version="dark"] .dlabnav .metismenu > li > a { + color: #b3b3b3; } +[data-theme-version="dark"] .dlabnav .metismenu > li:hover > a, [data-theme-version="dark"] .dlabnav .metismenu > li:focus > a, [data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a { + color: #fff; + /* background:var(--rgba-primary-1); */ } + [data-theme-version="dark"] .dlabnav .metismenu > li:hover > a::after, [data-theme-version="dark"] .dlabnav .metismenu > li:focus > a::after, [data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a::after { + border-top: 0.3125rem solid #b3b3b3; + border-left: 0.3125rem solid #b3b3b3; + border-bottom: 0.3125rem solid transparent; + border-right: 0.3125rem solid transparent; } + [data-theme-version="dark"] .dlabnav .metismenu > li:hover > a i, [data-theme-version="dark"] .dlabnav .metismenu > li:focus > a i, [data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } +[data-theme-version="dark"] .dlabnav .metismenu > li.mm-active ul ul { + background-color: transparent; } +[data-theme-version="dark"] .dlabnav .metismenu ul:after { + background-color: #2e2e42; } +[data-theme-version="dark"] .dlabnav .metismenu ul a:hover, [data-theme-version="dark"] .dlabnav .metismenu ul a:focus, [data-theme-version="dark"] .dlabnav .metismenu ul a.mm-active { + color: #fff !important; } +[data-theme-version="dark"] .dlabnav .metismenu ul a:before { + background-color: #fff; } +[data-theme-version="dark"] .dlabnav .metismenu a { + color: #b3b3b3 !important; } +[data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after { + border-top: 0.3125rem solid #b3b3b3; + border-left: 0.3125rem solid #b3b3b3; + border-bottom: 0.3125rem solid transparent; + border-right: 0.3125rem solid transparent; } + +[data-theme-version="dark"] .sidebar-right .card-tabs .nav-tabs { + border-color: var(--rgba-primary-1) !important; } + [data-theme-version="dark"] .sidebar-right .card-tabs .nav-tabs .nav-item .nav-link { + color: #000 !important; } +[data-theme-version="dark"] .sidebar-right .form-control { + background: #fff; + color: #000; + border-color: #EEEEEE; } +[data-theme-version="dark"] .sidebar-right .default-select .list { + background: #fff; } + [data-theme-version="dark"] .sidebar-right .default-select .list .option.selected, [data-theme-version="dark"] .sidebar-right .default-select .list .option.focus, [data-theme-version="dark"] .sidebar-right .default-select .list .option:hover { + background: rgba(0, 0, 0, 0.05) !important; } +[data-theme-version="dark"] .sidebar-right .sidebar-right-inner > h4, [data-theme-version="dark"] .sidebar-right .sidebar-right-inner > .h4 { + color: #000 !important; } +[data-theme-version="dark"] .sidebar-right .nice-select .option { + background: #fff; } + +[data-theme-version="dark"] .footer { + background-color: transparent; } + [data-theme-version="dark"] .footer .copyright { + background-color: transparent; } + [data-theme-version="dark"] .footer .copyright p { + color: #fff; } + +/* ============= + Calendar +============= */ +.app-fullcalender button { + border-radius: 0rem; + color: #6e6e6e; } +.app-fullcalender td { + border-color: #f5f5f5; } + +.calendar { + float: left; + margin-bottom: 0; } + +.fc-view { + margin-top: 1.875rem; } + +.fc-toolbar { + margin-bottom: 0.3125rem; + margin-top: 0.9375rem; } + @media (max-width: 575.98px) { + .fc-toolbar .fc-left { + display: flex; + justify-content: space-between; + margin-bottom: 0.625rem; + float: none; } } + @media (max-width: 575.98px) { + .fc-toolbar .fc-right { + display: flex; + justify-content: center; + float: none; + margin-bottom: 0.3125rem; } } + @media (max-width: 575.98px) { + .fc-toolbar .fc-center { + display: flex; + justify-content: center; } + .fc-toolbar .fc-center * { + float: none; } } + +.fc-toolbar h2, .fc-toolbar .h2 { + font-size: 1rem; + font-weight: 600; + line-height: 1.875rem; + text-transform: uppercase; } + +.fc-toolbar .fc-state-active, +.fc-toolbar .ui-state-active, +.fc-toolbar .ui-state-hover, +.fc-toolbar button:focus, +.fc-toolbar button:hover { + z-index: 0; + box-shadow: none; } + +.fc-widget-header { + border: 0.0625rem solid #f5f5f5; + border-bottom: 0 !important; } + +.fc th.fc-widget-header { + background: #f5f5f5 !important; + font-size: 0.875rem; + line-height: 1.25rem; + padding: 0.625rem 0; + text-transform: uppercase; } + +.fc-button { + border: 0.0625rem solid #f5f5f5; + text-transform: capitalize; } + .fc-button.active { + box-shadow: none !important; } + +.fc-text-arrow { + font-family: inherit; + font-size: 1rem; } + +.fc-event, +.external-event { + border-radius: 0.125rem; + border: none; + cursor: move; + font-size: 0.8125rem; + margin: 0.3125rem 0.4375rem; + padding: 0.3125rem; + text-align: center; } + +.external-event { + cursor: move; + margin: 0.625rem 0; + padding: 0.125rem 0; } + +.fc-basic-view td.fc-week-number span { + padding-right: 0.3125rem; } + +.fc-basic-view td.fc-day-number { + padding-right: 0.3125rem; } + +#drop-remove { + margin-right: 0.5rem; + top: 0.1875rem; } + +#add-category .modal-dialog, +#event-modal .modal-dialog { + max-width: 37.5rem; } + +.fc-content { + color: #fff; } + +.fc th.fc-widget-header { + background: transparent !important; } + +.fc-button { + background: #fff; } + +.fc-state-hover { + background: #fff !important; } + +.fc-state-highlight { + background: #f2f4fa !important; } + [data-theme-version="dark"] .fc-state-highlight { + color: #fff !important; } + +.fc-cell-overlay { + background: #fff !important; } + +.fc-unthemed .fc-today { + background: #f2f4fa !important; } + +.fc-day-top { + color: #6e6e6e !important; } + [data-theme-version="dark"] .fc-day-top { + color: #fff !important; } + +.external-event { + color: #fff; } + [data-theme-version="dark"] .external-event { + color: #fff !important; } + +.fc-basic-view .fc-body .fc-row { + min-height: 1rem; } + +.fc-scroller.fc-day-grid-container { + height: 30.625rem !important; } + +.fc-row.fc-week.fc-widget-content.fc-rigid { + height: 5.0625rem !important; } + +@media only screen and (max-width: 90rem) { + .email_left_pane { + display: none; } } + +#external-events .external-event:before { + content: ""; + display: block; + width: 0.875rem; + min-width: 0.875rem; + height: 0.875rem; + border-radius: 50%; + margin-right: .9rem; + position: relative; + top: 0.125rem; } +[data-theme-version="dark"] #external-events [data-class="bg-primary"] { + color: #fff !important; } +#external-events [data-class="bg-primary"]::before { + background: var(--primary); } +#external-events [data-class="bg-success"]::before { + background: #68e365; } +#external-events [data-class="bg-warning"]::before { + background: #ffa755; } +#external-events [data-class="bg-dark"]::before { + background: #6e6e6e; } +#external-events [data-class="bg-danger"]::before { + background: #f72b50; } +#external-events [data-class="bg-info"]::before { + background: #D653C1; } +#external-events [data-class="bg-pink"]::before { + background: #e83e8c; } +#external-events [data-class="bg-secondary"]::before { + background: #145650; } + +.fc .fc-row .fc-content-skeleton table, .fc .fc-row .fc-content-skeleton td, .fc .fc-row .fc-helper-skeleton td { + border-color: #f5f5f5; } + [data-theme-version="dark"] .fc .fc-row .fc-content-skeleton table, + [data-theme-version="dark"] .fc .fc-row .fc-content-skeleton td, + [data-theme-version="dark"] .fc .fc-row .fc-helper-skeleton td { + border-color: #2e2e42; } + +[data-theme-version="dark"] .fc-unthemed .fc-content, [data-theme-version="dark"] .fc-unthemed .fc-divider, [data-theme-version="dark"] .fc-unthemed .fc-list-heading td, [data-theme-version="dark"] .fc-unthemed .fc-list-view, [data-theme-version="dark"] .fc-unthemed .fc-popover, [data-theme-version="dark"] .fc-unthemed .fc-row, [data-theme-version="dark"] .fc-unthemed tbody, [data-theme-version="dark"] .fc-unthemed td, [data-theme-version="dark"] .fc-unthemed th, [data-theme-version="dark"] .fc-unthemed thead { + border-color: #2e2e42; } + +.email-left-box { + width: 15rem; + float: left; + padding: 0 1.25rem 1.25rem 1rem; + border-top: 0; + border-left: 0; } + @media (min-width: 576px) and (max-width: 991.98px) { + .email-left-box { + width: 100%; + padding-bottom: 0rem !important; } } + @media (max-width: 575.98px) { + .email-left-box { + width: 100%; + float: none; + border: none; + padding-bottom: 1.875rem !important; } } + .email-left-box .intro-title { + background: var(--rgba-primary-1); + padding: 1rem; + margin: 1.875rem 0 1.25rem 0; } + .email-left-box .intro-title h5, .email-left-box .intro-title .h5 { + margin-bottom: 0; + color: #6a707e; + font-size: 0.875rem; } + .email-left-box .intro-title h5 i, .email-left-box .intro-title .h5 i { + font-size: 0.75rem; + position: relative; + bottom: 0.0625rem; } + .email-left-box .intro-title i { + color: var(--primary); } + +.email-right-box { + padding-left: 15rem; + padding-right: 1rem; } + @media (min-width: 576px) and (max-width: 991.98px) { + .email-right-box { + padding-left: 0; + padding-right: 0; + margin-left: 0 !important; + clear: both; } } + @media (max-width: 575.98px) { + .email-right-box { + padding-left: 0; + padding-right: 0; } } + .email-right-box .right-box-border { + border-right: 0.125rem solid var(--rgba-primary-1); } + @media screen and (min-width: 40.5625rem) and (max-width: 75rem) { + .email-right-box .right-box-padding { + padding-left: 1.25rem; } } + @media (min-width: 106.25rem) { + .email-right-box .right-box-padding { + padding-left: 0.9375rem; } } + @media (min-width: 576px) and (max-width: 991.98px) { + .email-right-box .right-box-padding { + padding-left: 0; } } + +.toolbar .btn-group .btn { + border: 0; } +.toolbar .btn-group input { + position: relative; + top: 0.125rem; } + +.read-content textarea { + height: 9.375rem; + padding: 0.9375rem 1.25rem; } +.read-content-email { + font-size: 0.875rem; } +.read-content h5, .read-content .h5 { + color: #6a707e; } +.read-content p strong { + color: #6a707e; } +.read-content-body p { + margin-bottom: 1.875rem; } +.read-content-attachment { + padding: 0.5rem 0; } + .read-content-attachment h6, .read-content-attachment .h6 { + font-size: 1.125rem; + color: #6a707e; } + .read-content-attachment h6 i, .read-content-attachment .h6 i { + padding-right: 0.3125rem; } + .read-content-attachment .attachment > div:not(:last-child) { + border-right: 0.0625rem solid #DDDFE1; } + +.compose-content .wysihtml5-toolbar { + border-color: #eaeaea; } +.compose-content .dropzone { + background: #f2f4fa !important; } +.compose-content h5, .compose-content .h5 { + font-size: 1.0625rem; + color: #6a707e; } + .compose-content h5 i, .compose-content .h5 i { + font-size: 1.125rem; + transform: rotate(90deg); } +.compose-content .dropzone { + border: 0.0625rem dashed #DDDFE1; + min-height: 13.125rem; + position: relative; } + .compose-content .dropzone .dlab-message { + margin: 0; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); } + +.email-list { + display: block; + padding-left: 0; } + .email-list .message { + position: relative; + display: block; + height: 3.125rem; + line-height: 3.125rem; + cursor: default; + transition-duration: 0.3s; } + .email-list .message a { + color: #828690; } + .email-list .message-single .custom-checkbox { + margin-top: 0.125rem; } + .email-list .message-single i { + color: #89879f; + font-size: 1.125rem; + padding-left: .4rem; } + .email-list .message:hover { + transition-duration: 0.05s; + background: rgba(152, 166, 173, 0.15); } + .email-list .message .col-mail { + float: left; + position: relative; } + .email-list .message .col-mail-1 { + width: 5.625rem; } + .email-list .message .col-mail-1 .star-toggle { + display: block; + float: left; + margin-top: 1.125rem; + font-size: 1rem; + margin-left: 0.3125rem; } + .email-list .message .col-mail-1 .email-checkbox { + display: block; + float: left; + margin: 0.9375rem 0.625rem 0 1.25rem; } + .email-list .message .col-mail-1 .dot { + display: block; + float: left; + border: .4rem solid transparent; + border-radius: 6.25rem; + margin: 1.375rem 1.625rem 0; + height: 0; + width: 0; + line-height: 0; + font-size: 0; } + .email-list .message .col-mail-2 { + position: absolute; + top: 0; + left: 5.625rem; + right: 0; + bottom: 0; } + .email-list .message .col-mail-2 .subject { + position: absolute; + top: 0; + left: 0; + right: 5.5rem; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; } + .email-list .message .col-mail-2 .date { + position: absolute; + top: 0; + right: 0; } + +.email-checkbox { + cursor: pointer; + height: 0.9375rem; + width: 0.9375rem; + position: relative; + display: inline-block; + border-radius: .1rem; + position: relative; + top: 0.3125rem; + box-shadow: inset 0 0 0 0.1rem #828690; } + .email-checkbox input { + opacity: 0; + cursor: pointer; } + .email-checkbox input:checked label { + opacity: 1; } + .email-checkbox label { + position: absolute; + top: .3rem; + left: .3rem; + right: .3rem; + bottom: .3rem; + cursor: pointer; + opacity: 0; + margin-bottom: 0 !important; + transition-duration: 0.05s; } + +.mail-list a { + vertical-align: middle; + padding: 0.625rem 0.9375rem; + display: block; + background: transparent; + color: #464a53; + font-weight: 600; } +.mail-list .list-group-item { + color: #6a707e; + padding: 0.75rem 1.0625rem; } + .mail-list .list-group-item i { + font-size: 1rem; + padding-right: 0.625rem; + color: #cccccc; } + .mail-list .list-group-item.active { + color: #fff; } + .mail-list .list-group-item.active i { + color: #fff; } + +.chat-wrap { + padding: 1.0625rem 1.875rem; } + .chat-wrap .media .media-body h6, .chat-wrap .media .media-body .h6 { + font-size: 1.0625rem; + color: #6a707e; } + .chat-wrap .media .media-body p { + font-size: 0.875rem; } + +@media (min-width: 40.5rem) { + .email-filter { + padding-left: 1.25rem; } } +@media (min-width: 106.25rem) { + .email-filter { + padding-left: 1.875rem; } } +.email-filter .input-group-prepend i { + font-size: 0.875rem; + color: #89879f; } +.email-filter .input-group-prepend .input-group-text { + border: 0; + border-bottom: 0.0625rem solid #DDDFE1 !important; + background: transparent; } +.email-filter .input-group .form-control { + padding: 0 0 0 0.3125rem; + border: 0; + font-size: 0.875rem; + height: 1.875rem; + color: #89879f; + border-bottom: 0.0625rem solid #DDDFE1; } + .email-filter .input-group .form-control::placeholder { + font-size: 0.875rem; + color: #89879f; } +.email-filter .input-group > .form-control { + min-height: 1.875rem; } + +.single-mail { + display: block; + padding: 1.5625rem 0; } + .single-mail .media { + padding-left: 1.25rem; + padding-right: 1.25rem; } + @media (min-width: 106.25rem) { + .single-mail .media { + padding-left: 1.875rem; + padding-right: 1.875rem; } } + .single-mail .media img { + width: 3.4375rem; + height: 3.4375rem; + border-radius: 50%; + margin-right: 0.9375rem; } + @media (min-width: 106.25rem) { + .single-mail .media img { + margin-right: 1.875rem; } } + .single-mail .media-body h6, .single-mail .media-body .h6 { + color: #abafb3; } + .single-mail .media-body h4, .single-mail .media-body .h4 { + font-size: 1rem; + color: #6a707e; } + .single-mail .media-body h4 button i, .single-mail .media-body .h4 button i { + font-size: 1.125rem; + color: #abafb3; + font-weight: bold; + transform: rotate(90deg); } + .single-mail .media-body p { + font-size: 0.875rem; + color: #abafb3; } + .single-mail.active { + background: var(--primary); } + .single-mail.active h6, .single-mail.active .h6, .single-mail.active h4, .single-mail.active .h4, .single-mail.active p, .single-mail.active i { + color: #fff !important; } + +[direction="rtl"] .email-right-box { + padding-left: 1rem; + padding-right: 15rem; } + @media only screen and (max-width: 61.9375rem) { + [direction="rtl"] .email-right-box { + padding-left: 0; + padding-right: 0; + margin-right: 0; } } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .email-right-box { + padding-left: 0; + padding-right: 0; } } +[direction="rtl"] .email-left-box { + float: right; } +[direction="rtl"] .email-list .message .col-mail-2 { + right: 5.625rem; + left: 0; + float: right; } + [direction="rtl"] .email-list .message .col-mail-2 .date { + right: auto; + left: 0; } + [direction="rtl"] .email-list .message .col-mail-2 .subject { + right: 0; + left: 5.5rem; } + +.photo-content { + position: relative; } + .photo-content .cover-photo { + background: url(../image/cover.jpg); + background-size: cover; + background-position: center; + min-height: 15.625rem; + width: 100%; } + +.profile .profile-photo { + max-width: 6.25rem; + position: relative; + z-index: 1; + margin-top: -4.5rem; + margin-right: 0.625rem; } + @media only screen and (max-width: 35.9375rem) { + .profile .profile-photo { + width: 5rem; + margin-left: auto; + margin-right: auto; + margin-bottom: 1.25rem; } } + +[direction="rtl"] .profile .profile-photo { + left: auto; + right: 0; + margin-right: 0; + margin-left: 0.9375rem; } + @media only screen and (max-width: 74.9375rem) { + [direction="rtl"] .profile .profile-photo { + right: 0.9375rem; } } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .profile .profile-photo { + width: 5rem; + right: calc(50% - 2.5rem); + top: -6.25rem; } } + +.profile-info { + padding: 0.9375rem 1.25rem; } + @media only screen and (max-width: 35.9375rem) { + .profile-info { + padding: 0 0 1.25rem; + text-align: center; } } + .profile-info h4, .profile-info .h4 { + color: #464a53 !important; } + .profile-info h4.text-primary, .profile-info .text-primary.h4 { + color: var(--primary) !important; } + .profile-info p { + color: #828690; } + .profile-info .prf-col { + min-width: 15.625rem; + padding: 0.625rem 3.125rem 0; } + +.profile-interest .row { + margin: 0 -0.0437rem; } + .profile-interest .row .int-col { + padding: 0 0.0437rem; } + .profile-interest .row .int-col .interest-cat { + margin-bottom: 0.0875rem; + position: relative; + display: block; } + .profile-interest .row .int-col .interest-cat:after { + background: #000; + bottom: 0; + content: ""; + left: 0; + opacity: 0.5; + position: absolute; + right: 0; + top: 0; + z-index: 0; } + .profile-interest .row .int-col .interest-cat p { + position: absolute; + top: 0; + width: 100%; + height: 100%; + padding: 0.3125rem; + left: 0; + margin: 0; + z-index: 1; + color: white; + font-size: 0.075rem; } + +.profile-tab .nav-item .nav-link { + font-size: 1rem; + margin-right: 1.875rem; + transition: all 0.5s ease-in-out; + border: none; + border-bottom: 0.0125rem solid transparent; + color: #828690; } + .profile-tab .nav-item .nav-link:hover, .profile-tab .nav-item .nav-link.active { + border: 0; + background: transparent; + background: transparent; + border-bottom: 0.0125rem solid var(--primary); + color: var(--primary); } + @media only screen and (max-width: 35.9375rem) { + .profile-tab .nav-item .nav-link { + margin-right: 0rem; } } + +.profile-info { + display: flex; } + @media only screen and (max-width: 35.9375rem) { + .profile-info { + display: block; } } + .profile-info .profile-details { + display: flex; + width: 100%; } + @media only screen and (max-width: 35.9375rem) { + .profile-info .profile-details { + display: block; } + .profile-info .profile-details .dropdown { + position: absolute; + top: 1.875rem; + right: 1.875rem; } } + +.post-input { + margin-bottom: 1.875rem; } + .post-input .form-control { + height: 4.6875rem; + font-weight: 400; + margin: 0.9375rem 0; } + .post-input .btn-social { + font-size: 1.25rem; + height: 3.4375rem; + display: inline-block; + padding: 0; + text-align: center; + border-radius: 1.25rem; + color: #fff; + width: 3.4375rem; + line-height: 3.375rem; } + .post-input .btn-social.facebook { + background-color: #3B5998; } + .post-input .btn-social.google-plus { + background-color: #DE4E43; } + .post-input .btn-social.linkedin { + background-color: #007BB6; } + .post-input .btn-social.instagram { + background-color: #8A5A4E; } + .post-input .btn-social.twitter { + background-color: #1EA1F3; } + .post-input .btn-social.youtube { + background-color: #CE201F; } + .post-input .btn-social.whatsapp { + background-color: #01C854; } + .post-input .btn-social i { + margin: 0 !important; } + +.profile-uoloaded-post img { + margin-bottom: 1.25rem; } +.profile-uoloaded-post a h4, .profile-uoloaded-post a .h4 { + margin-bottom: 0.625rem; + color: #464a53; } + +.event-chat-ryt .chat-area .chat-reciver, +.event-chat-ryt .chat-area .chat-sender { + margin-bottom: 1.875rem; + padding: 0; } + .event-chat-ryt .chat-area .chat-reciver img, + .event-chat-ryt .chat-area .chat-sender img { + border-radius: 1.875rem; } +.event-chat-ryt .chat-area .media { + position: relative; } + .event-chat-ryt .chat-area .media-body p { + margin: 0; + max-width: 100%; + display: inline-block; + position: relative; } + .event-chat-ryt .chat-area .media-body p span { + padding: 1rem; + display: inline-block; + top: 103%; + position: relative; + border: 0.0625rem solid #f5f5f5; } +.event-chat-ryt .chat-reciver { + padding: .5rem 1rem; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; } + .event-chat-ryt .chat-reciver .media { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } + .event-chat-ryt .chat-reciver .media .media-body { + margin-right: 2rem; + text-align: right; } + [direction="rtl"] .event-chat-ryt .chat-reciver .media .media-body { + text-align: left; + margin-left: 2rem; + margin-right: auto; } + .event-chat-ryt .chat-reciver .media .media-body p { + background: #fff; + margin-bottom: 0; + border-radius: 0.3125rem 0.3125rem 0 0.3125rem; } + .event-chat-ryt .chat-reciver .media .media-body p span { + text-align: left; + border: 0.0625rem solid #f5f5f5; } + .event-chat-ryt .chat-reciver .media .media-body p span::after { + content: ""; + width: 1.25rem; + height: 1.25rem; + border-bottom: 0.0625rem solid #f5f5f5; + border-right: 0.0625rem solid #f5f5f5; + position: absolute; + right: 0; + bottom: 0; + background: #fff; + -webkit-transform: rotate(-45deg) translateX(15px); + transform: rotate(-45deg) translateX(15px); } + [direction="rtl"] .event-chat-ryt .chat-reciver .media .media-body p span::after { + left: 0; + right: auto; + -webkit-transform: rotate(135deg) translateY(15px); + transform: rotate(135deg) translateY(15px); } + .event-chat-ryt .chat-reciver .media .media-body p .time { + position: absolute; + font-size: 0.75rem; + color: #393939; + font-weight: 400; + bottom: 0; + left: -5rem; } + [direction="rtl"] .event-chat-ryt .chat-reciver .media .media-body p .time { + right: -5rem; + left: auto; } +.event-chat-ryt .chat-sender { + text-align: left; + padding: .5rem 1rem; } + .event-chat-ryt .chat-sender .media .media-body { + margin-left: 2rem; } + [direction="rtl"] .event-chat-ryt .chat-sender .media .media-body { + text-align: right; + margin-right: 2rem; + margin-left: auto; } + .event-chat-ryt .chat-sender .media .media-body p { + background-color: #fff; + margin-bottom: 0; } + .event-chat-ryt .chat-sender .media .media-body p span::after { + content: ""; + width: 1.25rem; + height: 1.25rem; + border-bottom: 0.0625rem solid #f5f5f5; + border-left: 0.0625rem solid #f5f5f5; + position: absolute; + left: 0; + bottom: 0; + background: #fff; + -webkit-transform: rotate(45deg) translateX(-15px); + transform: rotate(45deg) translateX(-15px); } + [direction="rtl"] .event-chat-ryt .chat-sender .media .media-body p span::after { + left: auto; + right: 0; + -webkit-transform: rotate(-135deg) translateY(15px); + transform: rotate(-135deg) translateY(15px); } + .event-chat-ryt .chat-sender .media .media-body p .time { + position: absolute; + font-size: 0.625rem; + color: #393939; + font-weight: 400; + bottom: 0; + right: -5rem; } + [direction="rtl"] .event-chat-ryt .chat-sender .media .media-body p .time { + left: -5rem; + right: auto; } + +.char-type { + padding-top: 1.875rem; + padding-bottom: 1.875rem; } + .char-type form .form-control { + height: 2.8125rem; + padding-left: 1.125rem; + background: #F8F8F8; + border-right: 0; } + .char-type form .input-group-append i { + color: #898989; + font-size: 1.125rem; } + .char-type form .input-group-append .input-group-text { + padding-left: .7rem; + padding-right: .7rem; + background: #F8F8F8; + border-color: #f5f5f5; + border-left: 0; } + .char-type form .input-group-append .input-group-text:last-child { + padding-right: 1.8rem; } + +.media-avatar { + padding: 1.5625rem 0; + border-bottom: 0.0625rem solid #f5f5f5; } + .media-avatar:last-child { + border-bottom: 0rem; } + .media-avatar p { + margin-bottom: 0; } + .media-avatar .avatar-status { + position: relative; } + .media-avatar .avatar-status i { + position: absolute; + right: 0; + bottom: 0; } + +.ct-golden-section:before { + float: none; } + +.ct-chart { + max-height: 15.7rem; } + +.ct-chart .ct-label { + fill: #a3afb7; + color: #a3afb7; + font-size: 0.75rem; + line-height: 1; } + +.ct-grid { + stroke: rgba(49, 58, 70, 0.1); } + +.ct-chart.simple-pie-chart-chartist .ct-label { + color: #ffffff; + fill: #ffffff; + font-size: 0.625rem; } + +.ct-chart .ct-series.ct-series-a .ct-bar, +.ct-chart .ct-series.ct-series-a .ct-line, +.ct-chart .ct-series.ct-series-a .ct-point, +.ct-chart .ct-series.ct-series-a .ct-slice-donut { + stroke: var(--primary); } + +.ct-chart .ct-series.ct-series-b .ct-bar, +.ct-chart .ct-series.ct-series-b .ct-line, +.ct-chart .ct-series.ct-series-b .ct-point, +.ct-chart .ct-series.ct-series-b .ct-slice-donut { + stroke: #68e365; } + +.ct-chart .ct-series.ct-series-c .ct-bar, +.ct-chart .ct-series.ct-series-c .ct-line, +.ct-chart .ct-series.ct-series-c .ct-point, +.ct-chart .ct-series.ct-series-c .ct-slice-donut { + stroke: #ffa755; } + +.ct-chart .ct-series.ct-series-d .ct-bar, +.ct-chart .ct-series.ct-series-d .ct-line, +.ct-chart .ct-series.ct-series-d .ct-point, +.ct-chart .ct-series.ct-series-d .ct-slice-donut { + stroke: #f72b50; } + +.ct-chart .ct-series.ct-series-e .ct-bar, +.ct-chart .ct-series.ct-series-e .ct-line, +.ct-chart .ct-series.ct-series-e .ct-point, +.ct-chart .ct-series.ct-series-e .ct-slice-donut { + stroke: #D653C1; } + +.ct-chart .ct-series.ct-series-f .ct-bar, +.ct-chart .ct-series.ct-series-f .ct-line, +.ct-chart .ct-series.ct-series-f .ct-point, +.ct-chart .ct-series.ct-series-f .ct-slice-donut { + stroke: #6e6e6e; } + +.ct-chart .ct-series.ct-series-g .ct-bar, +.ct-chart .ct-series.ct-series-g .ct-line, +.ct-chart .ct-series.ct-series-g .ct-point, +.ct-chart .ct-series.ct-series-g .ct-slice-donut { + stroke: #8d6e63; } + +.ct-series-a .ct-area, +.ct-series-a .ct-slice-pie { + fill: #145650; } + +.ct-series-b .ct-area, +.ct-series-b .ct-slice-pie { + fill: #00A2FF; } + +.ct-series-c .ct-area, +.ct-series-c .ct-slice-pie { + fill: #ff9800; } + +.ct-series-d .ct-area, +.ct-series-d .ct-slice-pie { + fill: #ff9800; } + +.chartist-tooltip { + position: absolute; + display: inline-block; + opacity: 0; + min-width: 0.625rem; + padding: 0.125rem 0.625rem; + border-radius: 0.125rem; + background: #313a46; + color: #ffffff; + text-align: center; + pointer-events: none; + z-index: 1; + -webkit-transition: opacity .2s linear; + -moz-transition: opacity .2s linear; + -o-transition: opacity .2s linear; + transition: opacity .2s linear; } + +.chartist-tooltip.tooltip-show { + opacity: 1; } + +#donught_graph .ct-series.ct-series-a .ct-slice-donut { + stroke: #3FC6D4; } +#donught_graph .ct-series.ct-series-b .ct-slice-donut { + stroke: #333333; } +#donught_graph .ct-series.ct-series-c .ct-slice-donut { + stroke: #F63465; } + +@media only screen and (max-width: 47.9375rem) { + #pie-chart .ct-label { + color: #fff; + fill: #fff; } } + +#visitor_graph { + height: 15.8125rem !important; } + +#user_rating_graph { + height: 17.5rem !important; } + +#activity { + height: 16.875rem !important; } + +#visitorOnline { + height: 4.5rem !important; } + +#trendMeter { + height: 4.5rem !important; } + +#widget-revenue1, +#widget-revenue2, +#widget-revenue3 { + height: 7.3125rem !important; } + +#widget-profit1, +#widget-profit2, +#widget-profit3 { + height: 10rem !important; } + +#comparison-rate { + height: 14.375rem; } + +#session_day { + height: 10.9375rem; + width: auto !important; + margin: 0 auto; } + +#walet-status { + height: 8.75rem; } + +#bar1 { + height: 9.375rem; } + +#sold-product { + height: 14.375rem; } + +#chart-venue-expenses, +#chart-online-sale, +#chart-gross-sale { + height: 9.375rem !important; } + +#areaChart_3 { + height: 18.4375rem !important; } + +.chart-point { + display: flex; + align-items: center; } + .chart-point .check-point-area { + width: 6.25rem; + height: 6.25rem; + margin-top: -0.625rem; + margin-left: -0.625rem; } + .chart-point .chart-point-list { + margin: 0; + padding-left: 0.3125rem; } + .chart-point .chart-point-list li { + list-style: none; + font-size: 0.8125rem; + padding: 0.125rem 0; } + .chart-point .chart-point-list li i { + margin-right: 0.3125rem; + font-size: 0.6875rem; + position: relative; + top: -0.0625rem; } + +.c3 { + height: 15.625rem; } + +.c3-legend-item { + fill: #9fabb1; } + +.c3 .c3-axis-x path, +.c3 .c3-axis-x line, +.c3 .c3-axis-y path, +.c3 .c3-axis-y line, +.tick text { + stroke: #fff; } + +.flot-chart { + height: 15.7rem; } + +.tooltipflot { + background-color: transparent; + font-size: 1.4rem; + padding: .5rem 1rem; + color: rgba(255, 255, 255, 0.7); + border-radius: .2rem; } + +.legendColorBox > div { + border: 0 !important; + padding: 0 !important; } + +.legendLabel { + font-size: 0.825rem; + padding-left: .5rem; + color: #fff; } + +.flotTip { + background: #000; + border: 0.0625rem solid #000; + color: #fff; } + +.legend > div { + background: transparent !important; } + +#balance_graph { + height: 16.25rem; } + +.morris-hover { + position: absolute; + z-index: 1; + background: var(--primary); + color: #fff; } + +.morris-hover .morris-hover-point { + color: #fff !important; + margin: 0.1875rem 0; + text-align: center; + padding: 0 1.5625rem; } + +.morris-hover .morris-hover-row-label { + background-color: #6e6e6e; + text-align: center; + padding: 0.3125rem; + margin-bottom: 0.3125rem; } + +.morris-hover.morris-default-style { + border-radius: 0.3125rem; + padding: 0; + margin: 0; + border: none; + overflow: hidden; } + +/* svg text { + font-weight: 600 !important; +} */ +#morris_donught, +#morris_donught_2, +#line_chart_2, +#morris_bar, +#morris_bar_stalked, +#morris_bar_2, +#morris_area_2, +#morris_area { + height: 15rem !important; } + +#morris_line { + height: 17.375rem !important; } + +#crypto-btc-card, +#crypto-eth-card, +#crypto-rpl-card, +#crypto-ltc-card { + height: 9.375rem; } + +#daily-sales, #comparison-rate, #usage-chart, #walet-status { + width: 100%; + display: block; } + #daily-sales canvas, #comparison-rate canvas, #usage-chart canvas, #walet-status canvas { + max-width: 100% !important; + width: 100% !important; } + +#sparkline-composite-chart canvas, +#composite-bar canvas, +#sparkline11 canvas, +#StackedBarChart canvas, +#spark-bar canvas, +#tristate canvas { + height: 6.25rem !important; } + +#sparkline11 canvas { + width: 6.25rem !important; } + +.easy-pie-chart { + position: relative; + text-align: center; } + .easy-pie-chart .inner { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + display: inline-block; } + .easy-pie-chart img { + width: 4.6875rem; + height: 4.6875rem; + border-radius: 50%; } + .easy-pie-chart canvas { + display: block; + margin: 0 auto; } + +#revenue-chart { + height: 27.7rem; } + +#duration-value-axis { + height: 27.6rem; + width: 100%; } + +#combined-bullet { + height: 28.125rem; + width: 100%; } + +#zoomable-chart { + height: 28.125rem; + width: 100%; } + +#chartMap { + height: 28.125rem; + width: 100%; } + +#professional-candlesticks { + width: 100%; + height: 28.125rem; } + +#comparing-stock-indices { + width: 100%; + height: 28.125rem; } + +#multiple-panel-data { + width: 100%; + height: 28.125rem; } + +#depth-chart { + width: 100%; + height: 28.125rem; } + +.amcharts-export-menu { + display: none; } + +.amcharts-data-set-selector-div { + position: absolute; + left: 0; + right: 0; + text-align: center; + width: 16.875rem; + margin: 0 auto; } + .amcharts-data-set-selector-div select { + border: 0; + margin-left: 0.625rem; + background: #ddd; + color: #000; } + +.amChartsInputField { + border: 0; + background: var(--primary); + color: #fff; + padding: 0.3125rem 0.9375rem; + margin: 0 0.9375rem; } + +.amcharts-data-set-select { + border: 0; + background: #ddd; + color: #000; } + +.amcharts-period-input, +.amcharts-period-input-selected { + border: 0; + margin-left: 0.625rem; + background: var(--primary); + color: #fff; + padding: 0.3125rem 0.9375rem; } + +.amcharts-graph-g2 .amcharts-graph-stroke { + stroke-dasharray: 0.1875rem 0.1875rem; + stroke-linejoin: round; + stroke-linecap: round; + -webkit-animation: am-moving-dashes 1s linear infinite; + animation: am-moving-dashes 1s linear infinite; } + +@-webkit-keyframes am-moving-dashes { + 100% { + stroke-dashoffset: -1.9375rem; } } +@keyframes am-moving-dashes { + 100% { + stroke-dashoffset: -1.9375rem; } } +.lastBullet { + -webkit-animation: am-pulsating 1s ease-out infinite; + animation: am-pulsating 1s ease-out infinite; } + +@-webkit-keyframes am-pulsating { + 0% { + stroke-opacity: 1; + stroke-width: 0px; } + 100% { + stroke-opacity: 0; + stroke-width: 3.125rem; } } +@keyframes am-pulsating { + 0% { + stroke-opacity: 1; + stroke-width: 0px; } + 100% { + stroke-opacity: 0; + stroke-width: 3.125rem; } } +.amcharts-graph-column-front { + -webkit-transition: all .3s .3s ease-out; + transition: all .3s .3s ease-out; } + +.amcharts-graph-column-front:hover { + fill: #496375; + stroke: #496375; + -webkit-transition: all .3s ease-out; + transition: all .3s ease-out; } + +@-webkit-keyframes am-draw { + 0% { + stroke-dashoffset: 500%; } + 100% { + stroke-dashoffset: 0%; } } +@keyframes am-draw { + 0% { + stroke-dashoffset: 500%; } + 100% { + stroke-dashoffset: 0%; } } +@media only screen and (max-width: 61.9375rem) { + .amChartsPeriodSelector > fieldset > div { + float: none !important; + display: block !important; + margin-bottom: 0.625rem; } } + +.highcharts-root text { + font-weight: 300 !important; } + +.highcharts-credits { + display: none; } + +#chart_employee_gender, #chart_employee_status { + width: auto; + height: 21.875rem; } + +.form-control { + background: #fff; + border: 0.0625rem solid #f5f5f5; + padding: 0.3125rem 1.25rem; + color: #6e6e6e; + height: 3.5rem; + border-radius: 1rem; } + @media only screen and (max-width: 87.5rem) { + .form-control { + height: 3rem; } } + .form-control:hover, .form-control:focus, .form-control.active { + box-shadow: none; + background: #fff; + color: #6e6e6e; } + .form-control:focus { + border-color: var(--primary); } + .form-control.solid { + background: #F8F8F8; + border-color: #ececec; + color: #000; } + .form-control.solid[type="file"] { + padding: 6px 10px; } + +.input-rounded { + border-radius: 6.25rem; } + +[data-theme-version="light"] .input-primary .form-control, +[data-theme-version="dark"] .input-primary .form-control { + border-color: var(--primary); } +[data-theme-version="light"] .input-primary .input-group-text, +[data-theme-version="dark"] .input-primary .input-group-text { + background-color: var(--primary); + color: #fff; } +[data-theme-version="light"] .input-danger .form-control, +[data-theme-version="dark"] .input-danger .form-control { + border-color: #f72b50; } +[data-theme-version="light"] .input-danger .input-group-text, +[data-theme-version="dark"] .input-danger .input-group-text { + background-color: #f72b50; + color: #fff; } +[data-theme-version="light"] .input-info .form-control, +[data-theme-version="dark"] .input-info .form-control { + border-color: #D653C1; } +[data-theme-version="light"] .input-info .input-group-text, +[data-theme-version="dark"] .input-info .input-group-text { + background-color: #D653C1; + color: #fff; } +[data-theme-version="light"] .input-success .form-control, +[data-theme-version="dark"] .input-success .form-control { + border-color: #68e365; } +[data-theme-version="light"] .input-success .input-group-text, +[data-theme-version="dark"] .input-success .input-group-text { + background-color: #68e365; + color: #fff; } +[data-theme-version="light"] .input-warning .form-control, +[data-theme-version="dark"] .input-warning .form-control { + border-color: #ffa755; } +[data-theme-version="light"] .input-warning .input-group-text, +[data-theme-version="dark"] .input-warning .input-group-text { + background-color: #ffa755; + color: #fff; } + +[data-theme-version="light"] .input-primary-o .form-control, +[data-theme-version="dark"] .input-primary-o .form-control { + border-color: var(--primary); } +[data-theme-version="light"] .input-primary-o .input-group-text, +[data-theme-version="dark"] .input-primary-o .input-group-text { + background-color: transparent; + border-color: var(--primary); + color: var(--primary); } +[data-theme-version="light"] .input-danger-o .form-control, +[data-theme-version="dark"] .input-danger-o .form-control { + border-color: #f72b50; } +[data-theme-version="light"] .input-danger-o .input-group-text, +[data-theme-version="dark"] .input-danger-o .input-group-text { + background-color: transparent; + border-color: #f72b50; + color: #f72b50; } +[data-theme-version="light"] .input-info-o .form-control, +[data-theme-version="dark"] .input-info-o .form-control { + border-color: #D653C1; } +[data-theme-version="light"] .input-info-o .input-group-text, +[data-theme-version="dark"] .input-info-o .input-group-text { + background-color: transparent; + border-color: #D653C1; + color: #D653C1; } +[data-theme-version="light"] .input-success-o .form-control, +[data-theme-version="dark"] .input-success-o .form-control { + border-color: #68e365; } +[data-theme-version="light"] .input-success-o .input-group-text, +[data-theme-version="dark"] .input-success-o .input-group-text { + background-color: transparent; + border-color: #68e365; + color: #68e365; } +[data-theme-version="light"] .input-warning-o .form-control, +[data-theme-version="dark"] .input-warning-o .form-control { + border-color: #ffa755; } +[data-theme-version="light"] .input-warning-o .input-group-text, +[data-theme-version="dark"] .input-warning-o .input-group-text { + background-color: transparent; + border-color: #ffa755; + color: #ffa755; } + +.input-group-text { + background: #d7dae3; + border: 0.0625rem solid transparent; + min-width: 3.125rem; + display: flex; + justify-content: center; + padding: 0.532rem 0.75rem; } + .input-group-text i { + font-size: 1rem; } + +.form-file-label { + height: 2.5rem; + padding: 0.5rem 0.75rem; } + +.input-group-prepend .btn, +.input-group-append .btn { + z-index: 0; } + +.custom-select { + background: none; + border-color: #f5f5f5; + color: #6e6e6e; } + .custom-select:focus { + box-shadow: none; + border-color: var(--primary); + color: var(--primary); } + +.form-file-label { + background: #656C73; + white-space: nowrap; + color: #fff; } + [data-theme-version="dark"] .form-file-label { + background: #2e2e42; + border-color: #2e2e42; + color: #393939; } + +.custom_file_input .form-file-label::after { + height: 100%; } + +.form-control:disabled, +.form-control[readonly] { + background: #fff; + opacity: 1; } + +.form-file { + border: 0.0625rem solid #f5f5f5; + background: #fff; } + [data-theme-version="dark"] .form-file { + background: #17171E; + border-color: #2e2e42; } + +.input-group > .form-control-plaintext, +.input-group > .form-select, +.input-group > .form-file { + position: relative; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; } +.input-group > .form-file { + display: flex; + align-items: center; } + .input-group > .form-file:not(:last-child) .form-file-label, .input-group > .form-file:not(:last-child) .form-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .form-file:not(:first-child) .form-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.select2-container--default +.select2-selection--multiple +.select2-selection__choice { + border-radius: 1.25rem; } + +.form-file .form-control { + margin: 0; + border-radius: 0; + border: 0; + height: auto; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +/* input[type="checkbox"] { + &:after{ + content: ''; + display: block; + width: 1rem; + height: 1rem; + margin-top: 0px; + margin-left: -1px; + border: 1px solid transparent; + border-radius: 3px; + background: #d4d7da; + line-height: 1.3; + } + + &:checked:after{ + width: 1rem; + height: 1rem; + display: block; + content: "\f00c"; + font-family: 'FontAwesome'; + color: $white; + font-weight: 100; + font-size: 12px; + text-align: center; + border-radius: 3px; + background: $primary; + } + +} */ +.form-check-label { + margin-left: 0.3125rem; + margin-top: 0.1875rem; } + +.form-check-inline .form-check-input { + margin-right: 0.625rem; } + +.form-check-input { + top: 0.125rem; + border-width: 0.125rem; + width: 1.25rem; + height: 1.25rem; + border-color: #e7e7e7; } + +.rtl .form-check-label:before, .rtl .form-check-label:after { + right: -1.5rem !important; + left: inherit; } + +.form-check { + line-height: normal; } + +.toggle-switch { + padding-left: 3.125rem; + line-height: 1.25; + display: inline-block; + color: #000; + font-weight: 600; } + .toggle-switch .form-check-input { + border: 0; + cursor: pointer; + background: #d8d8d8; + width: 2.3125rem; + border-radius: 1.25rem !important; + height: 0.875rem; + position: relative; + left: -0.3125rem; + -webkit-transition: all 0.2s; + -ms-transition: all 0.2s; + transition: all 0.2s; + background-image: none; } + .toggle-switch .form-check-input:focus { + background-image: none !important; } + .toggle-switch .form-check-input:checked { + background: var(--rgba-primary-2); + background-image: none !important; } + .toggle-switch .form-check-input:checked:after { + left: 1.25rem; + background: var(--primary); } + .toggle-switch .form-check-input:focus { + box-shadow: none; } + .toggle-switch .form-check-input:after { + width: 1.25rem; + background: #909090; + height: 1.25rem; + content: ""; + position: absolute; + border-radius: 1.5rem; + top: -0.1875rem; + left: 0; + box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.3); + -webkit-transition: all 0.2s; + -ms-transition: all 0.2s; + transition: all 0.2s; } + .toggle-switch.text-end { + padding-right: 0rem; + padding-left: 0; } + .toggle-switch.text-end .form-check-input { + left: auto; + margin-left: 0; + float: right; + right: 0rem; } + .toggle-switch.text-end .form-check-label { + margin-right: 0.9375rem; + margin-left: 0; } + .toggle-switch .form-check-label { + cursor: pointer; } + +.form-check-input:focus ~ .form-check-label::before { + box-shadow: none !important; } + +.form-check-label::before { + background-color: transparent; + border-color: #c8c8c8; + border-width: 0.125rem; + border-radius: 0.125rem !important; } + [data-theme-version="dark"] .form-check-label::before { + background-color: transparent; + border-color: #2e2e42; } + +.check-xs .form-check-input { + width: 1.125rem; + height: 1.125rem; } + +.check-lg .form-check-input { + width: 1.5rem; + height: 1.5rem; } + +.check-xl .form-check-input { + width: 1.75rem; + height: 1.75rem; } + +.checkbox-info .form-check-input:focus { + border-color: #D653C1; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(214, 83, 193, 0.25); } +.checkbox-info .form-check-input:checked { + background-color: #D653C1; + border-color: #D653C1; } + [data-theme-version="dark"] .checkbox-info .form-check-input:checked { + background-color: rgba(214, 83, 193, 0.1); + border-color: transparent; } +.checkbox-danger .form-check-input:focus { + border-color: #f72b50; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(247, 43, 80, 0.25); } +.checkbox-danger .form-check-input:checked { + background-color: #f72b50; + border-color: #f72b50; } + [data-theme-version="dark"] .checkbox-danger .form-check-input:checked { + background-color: rgba(247, 43, 80, 0.15); + border-color: transparent; } +.checkbox-success .form-check-input:focus { + border-color: #68e365; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(104, 227, 101, 0.25); } +.checkbox-success .form-check-input:checked { + background-color: #68e365; + border-color: #68e365; } + [data-theme-version="dark"] .checkbox-success .form-check-input:checked { + background-color: rgba(104, 227, 101, 0.1); + border-color: transparent; } +.checkbox-warning .form-check-input:focus { + border-color: #ffa755; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(255, 167, 85, 0.25); } +.checkbox-warning .form-check-input:checked { + background-color: #ffa755; + border-color: #ffa755; } + [data-theme-version="dark"] .checkbox-warning .form-check-input:checked { + background-color: rgba(255, 167, 85, 0.1); + border-color: transparent; } +.checkbox-secondary .form-check-input:focus { + border-color: #145650; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(20, 86, 80, 0.25); } +.checkbox-secondary .form-check-input:checked { + background-color: #145650; + border-color: #145650; } + [data-theme-version="dark"] .checkbox-secondary .form-check-input:checked { + background-color: rgba(20, 86, 80, 0.5); + border-color: transparent; } + +.check-switch { + padding-left: 2.5rem; } + .check-switch .form-check-label { + line-height: 1.875rem; + font-weight: 500; } + .check-switch .form-check-label span { + line-height: 1; } + .check-switch .form-check-label:after, .check-switch .form-check-label:before { + height: 1.5rem; + width: 1.5rem; + left: -2rem; + border-radius: 3rem !important; + border-color: var(--rgba-primary-3); } + .check-switch .form-check-input:checked ~ .form-check-label::after { + background-image: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/images/svg/check.svg"); } + .check-switch .form-check-input:checked ~ .form-check-label::before { + background: #fff; } + +.form-check-input:checked { + background-color: var(--primary); + border-color: var(--primary); } +.form-check-input:focus { + border-color: var(--primary); + box-shadow: var(--rgba-primary-1); } + +.js-switch + .switchery { + border-radius: 3.125rem; + margin-right: 4rem; } + @media (max-width: 767.98px) { + .js-switch + .switchery { + margin-right: 1rem; } } + .js-switch + .switchery > small, .js-switch + .switchery > .small { + top: 0.125rem; } +.js-switch.js-switch-lg + .switchery { + height: 2rem; + width: 4.5rem; } + .js-switch.js-switch-lg + .switchery > small, .js-switch.js-switch-lg + .switchery > .small { + width: 1.75rem; + height: 1.75rem; } +.js-switch.js-switch-md + .switchery { + height: 1.5rem; + width: 3.5rem; } + .js-switch.js-switch-md + .switchery > small, .js-switch.js-switch-md + .switchery > .small { + width: 1.25rem; + height: 1.25rem; } +.js-switch.js-switch-sm + .switchery { + height: 1rem; + width: 2.2rem; } + .js-switch.js-switch-sm + .switchery > small, .js-switch.js-switch-sm + .switchery > .small { + width: 0.875rem; + height: 0.875rem; + top: 0.0625rem; } +.js-switch-square + .switchery { + border-radius: 0; } + .js-switch-square + .switchery > small, .js-switch-square + .switchery > .small { + border-radius: 0; + top: 0.125rem; } +.js-switch-square.js-switch-lg + .switchery { + height: 2rem; + width: 4.5rem; } + .js-switch-square.js-switch-lg + .switchery > small, .js-switch-square.js-switch-lg + .switchery > .small { + width: 1.75rem; + height: 1.75rem; } +.js-switch-square.js-switch-md + .switchery { + height: 1.5rem; + width: 3.5rem; } + .js-switch-square.js-switch-md + .switchery > small, .js-switch-square.js-switch-md + .switchery > .small { + width: 1.25rem; + height: 1.25rem; } +.js-switch-square.js-switch-sm + .switchery { + height: 1rem; + width: 2.2rem; } + .js-switch-square.js-switch-sm + .switchery > small, .js-switch-square.js-switch-sm + .switchery > .small { + width: 0.875rem; + height: 0.875rem; + top: 0.0625rem; } + +.form-control.is-valid { + border-color: #68e365 !important; + border-right: 0rem !important; } + .form-control.is-valid:focus { + box-shadow: none; } + +.form-control.is-warning { + border-color: #ffa755 !important; + border-right: 0rem !important; } + .form-control.is-warning:focus { + box-shadow: none; } + +.form-control.is-invalid { + border-color: #f72b50 !important; + border-right: 0rem !important; } + .form-control.is-invalid:focus { + box-shadow: none; } + +.is-valid .input-group-prepend .input-group-text i { + color: #68e365; } + +.is-invalid .input-group-prepend .input-group-text i { + color: var(--rgba-primary-2); } + +.show-pass { + cursor: pointer; } + .show-pass .fa-eye { + display: none; } + .show-pass.active .fa-eye-slash { + display: none; } + .show-pass.active .fa-eye { + display: inline-block; } + +.asColorPicker-dropdown { + max-width: 26rem; } + +.asColorPicker-trigger { + border: 0 none; + height: 100%; + position: absolute; + right: 0; + top: 0; + width: 2.1875rem; } + +[direction="rtl"] .asColorPicker-trigger { + left: 0; + right: auto; } + +.asColorPicker-clear { + display: none; + position: absolute; + right: 1rem; + text-decoration: none; + top: .5rem; } + +.daterangepicker td.active { + background-color: var(--primary); } + .daterangepicker td.active:hover { + background-color: var(--primary); } +.daterangepicker button.applyBtn { + background-color: var(--primary); + border-color: var(--primary); } + +.datepicker.datepicker-dropdown { + background: #f2f4fa; + border-radius: 0.0625rem; + border: 0.0625rem solid #EEEEEE; } + .datepicker.datepicker-dropdown td.day, .datepicker.datepicker-dropdown th.next, .datepicker.datepicker-dropdown th.prev { + height: 1.875rem; + width: 1.875rem !important; + padding: 0; + text-align: center; + font-weight: 300; + border-radius: 3.125rem; } + .datepicker.datepicker-dropdown td.day:hover, .datepicker.datepicker-dropdown th.next:hover, .datepicker.datepicker-dropdown th.prev:hover { + box-shadow: 0rem 0rem 1.875rem 0.3125rem rgba(243, 30, 122, 0.3); + color: #fff; } + .datepicker.datepicker-dropdown th.datepicker-switch, .datepicker.datepicker-dropdown th.next, .datepicker.datepicker-dropdown th.prev { + font-weight: 300; + color: #333; } + .datepicker.datepicker-dropdown th.dow { + font-weight: 300; } +.datepicker table tr td.selected, .datepicker table tr td.active.active { + box-shadow: 0rem 0rem 1.875rem 0.3125rem rgba(243, 30, 122, 0.3); + border: 0; } +.datepicker table tr td.today { + box-shadow: 0rem 0rem 1.875rem 0.3125rem rgba(243, 30, 122, 0.3); + color: #ffffff; } + .datepicker table tr td.today:hover { + box-shadow: 0rem 0rem 1.875rem 0.3125rem rgba(243, 30, 122, 0.3); + color: #ffffff; } +.datepicker table tr td.today.disabled { + box-shadow: 0rem 0rem 1.875rem 0.3125rem rgba(243, 30, 122, 0.3); + color: #ffffff; } + .datepicker table tr td.today.disabled:hover { + box-shadow: 0rem 0rem 1.875rem 0.3125rem rgba(243, 30, 122, 0.3); + color: #ffffff; } + +.picker__select--month, .picker__select--year { + height: 2.5em; } +.picker__input { + background-color: transparent !important; } + [data-theme-version="dark"] .picker__input { + background-color: transparent !important; + border: 0.0625rem solid #2e2e42; } + +.asColorPicker-wrap .form-control { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +#image { + max-width: 100%; } + +.docs-options .dropdown-menu { + padding: 1.5rem; } + +.docs-preview { + margin-bottom: 3rem; } + .docs-preview .img-preview { + float: left; + margin-right: .5rem; + margin-bottom: .5rem; + overflow: hidden; + max-width: 100% !important; } + .docs-preview .img-preview > img { + max-width: 100% !important; } + .docs-preview .img-preview.preview-lg { + width: 16rem; + height: 9rem; } + .docs-preview .img-preview.preview-md { + width: 8rem; + height: 4.5rem; } + .docs-preview .img-preview.preview-sm { + width: 4rem; + height: 2.25rem; } + .docs-preview .img-preview.preview-xs { + width: 2rem; + height: 1.125rem; + margin-right: 0; } + +.select2-container { + width: 100% !important; } + +.select2-container--default .select2-selection--single { + border-radius: 1.25rem; + border: 0.0625rem solid #c8c8c8; + height: 2.5rem; + background: #fff; } + [data-theme-version="dark"] .select2-container--default .select2-selection--single { + background: #17171E; + border-color: #2e2e42; } + .select2-container--default .select2-selection--single:hover, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single.active { + box-shadow: none; } + +.select2-container--default .select2-selection--single .select2-selection__rendered { + line-height: 2.5rem; + color: #393939; + padding-left: 0.9375rem; + min-height: 2.5rem; } + +.select2-container--default .select2-selection--multiple { + border-color: #f5f5f5; + border-radius: 0; } + +.select2-dropdown { + border-radius: 0; } + +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background-color: var(--primary); } + +.select2-container--default.select2-container--focus .select2-selection--multiple { + border-color: #f5f5f5; + background: #fff; } + +.select2-container--default .select2-selection--single .select2-selection__arrow { + top: 0.375rem; + right: 0.9375rem; } + +.select2-container .select2-selection--multiple { + min-height: 2.5rem; + color: #393939; + border-radius: 1.25rem; + border: 0.0625rem solid #c8c8c8; } + [data-theme-version="dark"] .select2-container .select2-selection--multiple { + background: #17171E; + border-color: #2e2e42; } + +[data-theme-version="dark"] .select2-search--dropdown .select2-search__field { + background: #212130; + border-color: #2e2e42; } + +.select2-dropdown { + border-color: #c8c8c8; } + [data-theme-version="dark"] .select2-dropdown { + background: #17171E; + border-color: #2e2e42; } + +.swal2-popup .swal2-content { + color: #393939; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +/* +0 - 600: Phone +600 - 900: Tablet portrait +900 - 1200: Tablet landscape +1200 - 1800: Normal styles +1800+ : Big Desktop +1em = 16px +The smaller device rules always should write below the bigger device rules +Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component +*/ +.form-wizard { + border: 0; } + .form-wizard .nav-wizard { + box-shadow: none !important; + margin-bottom: 2rem; } + .form-wizard .nav-wizard li .nav-link { + position: relative; } + .form-wizard .nav-wizard li .nav-link span { + border-radius: 3.125rem; + width: 3rem; + height: 3rem; + border: 0.125rem solid var(--primary); + display: block; + line-height: 3rem; + color: var(--primary); + font-size: 1.125rem; + margin: auto; + background-color: #fff; + position: relative; + z-index: 1; } + .form-wizard .nav-wizard li .nav-link:after { + position: absolute; + top: 50%; + left: 50%; + height: 0.1875rem; + transform: translateY(-50%); + background: #eeeeee !important; + z-index: 0; + width: 100%; } + .form-wizard .nav-wizard li .nav-link.active:after { + background: var(--primary) !important; } + .form-wizard .nav-wizard li .nav-link.active span { + background: var(--primary); + color: #fff; } + .form-wizard .nav-wizard li .nav-link.done:after { + background: var(--primary) !important; } + .form-wizard .nav-wizard li .nav-link.done span { + background-color: var(--primary); + color: #fff; } + .form-wizard .nav-wizard li:last-child .nav-link:after { + content: none; } + .form-wizard .toolbar-bottom .btn { + background-color: var(--primary); + border: 0; + padding: 0.75rem 1.125rem; } + .form-wizard .tab-content .tab-pane { + padding: 0; } + .form-wizard .emial-setup label.mailclinet { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + width: 10rem; + height: 10rem; + border-radius: 50%; + cursor: pointer; + background-color: #EEF5F9; + text-align: center; + margin: auto; } + [data-theme-version="dark"] .form-wizard .emial-setup label.mailclinet { + background-color: #17171E; } + @media only screen and (max-width: 35.9375rem) { + .form-wizard .emial-setup label.mailclinet { + width: 7rem; + height: 7rem; } } + .form-wizard .emial-setup label.mailclinet .mail-icon { + font-size: 3rem; + display: inline-block; + line-height: 1; + margin-top: -1rem; } + @media only screen and (max-width: 35.9375rem) { + .form-wizard .emial-setup label.mailclinet .mail-icon { + font-size: 2rem; } } + .form-wizard .emial-setup label.mailclinet .mail-text { + font-size: 1rem; + text-align: center; + margin-top: .5rem; } + @media only screen and (max-width: 35.9375rem) { + .form-wizard .emial-setup label.mailclinet .mail-text { + font-size: 1rem; + line-height: 1.25rem; } } + .form-wizard .emial-setup label.mailclinet input[type="radio"] { + display: none; } + .form-wizard .emial-setup label.mailclinet { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + width: 10rem; + height: 10rem; + border-radius: 50%; + cursor: pointer; + background-color: #EEF5F9; + text-align: center; + margin: auto; } + [data-theme-version="dark"] .form-wizard .emial-setup label.mailclinet { + background-color: #17171E; } + @media only screen and (max-width: 35.9375rem) { + .form-wizard .emial-setup label.mailclinet { + width: 7rem; + height: 7rem; } } + .form-wizard .emial-setup label.mailclinet .mail-icon { + font-size: 3rem; + display: inline-block; + line-height: 1; + margin-top: -1rem; } + @media only screen and (max-width: 35.9375rem) { + .form-wizard .emial-setup label.mailclinet .mail-icon { + font-size: 2rem; } } + .form-wizard .emial-setup label.mailclinet .mail-text { + font-size: 1rem; + text-align: center; + margin-top: .5rem; } + @media only screen and (max-width: 35.9375rem) { + .form-wizard .emial-setup label.mailclinet .mail-text { + font-size: 1rem; + line-height: 1.25rem; } } + .form-wizard .emial-setup label.mailclinet input[type="radio"] { + display: none; } + @media only screen and (max-width: 47.9375rem) { + .form-wizard .nav-wizard { + flex-direction: unset !important; } + .form-wizard .tab-content { + height: 100% !important; } } + @media only screen and (max-width: 35.9375rem) { + .form-wizard .nav-wizard li .nav-link { + padding: 0; } } + +.custom-ekeditor ul { + padding-left: 1.25rem; } + .custom-ekeditor ul li { + list-style: unset; } +.custom-ekeditor ol li { + list-style: decimal; } + +.ql-container { + height: 25rem; } + +#world-datamap { + padding-bottom: 46% !important; } + +.datamaps-hoverover { + background: #fff; + padding: 0.3125rem; + border-radius: 0.3125rem; + font-family: 'Roboto' !important; + color: var(--primary); + border: 0.0625rem solid var(--rgba-primary-3); } + +@media only screen and (max-width: 90rem) { + .world_map_card ul.list-group { + display: flex; + flex-wrap: wrap; + flex-direction: row; + margin-top: 2.1875rem; } } + +.jqvmap-zoomin, +.jqvmap-zoomout { + height: 1.25rem; + width: 1.25rem; + line-height: 0.875rem; + background-color: var(--primary); + color: #fff; } + +.jqvmap-zoomout { + top: 2.1875rem; } + +#world-map, #usa { + height: 25rem; } + @media only screen and (max-width: 61.9375rem) { + #world-map, #usa { + height: 21.875rem; } } + @media only screen and (max-width: 35.9375rem) { + #world-map, #usa { + height: 14.375rem; } } + +.blockUI.blockMsg.blockPage { + border: 0 !important; } + +#loginForm { + cursor: auto; } + +.blockMsg { + border: 0rem; + width: 20% !important; } + .blockMsg h1, .blockMsg .h1 { + font-size: 1rem; + padding: 0.5rem 0; + margin-bottom: 0; } + +.bootstrap-select { + margin-bottom: 0; } + .bootstrap-select .btn { + border: 1px solid #f5f5f5 !important; + background-color: transparent !important; + font-weight: 400; + color: #393939 !important; } + [data-theme-version="dark"] .bootstrap-select .btn { + border-color: #2e2e42 !important; + background: #17171E !important; } + .bootstrap-select .btn:active, .bootstrap-select .btn:focus, .bootstrap-select .btn:hover { + outline: none !important; + outline-offset: 0; } + [data-theme-version="dark"] .bootstrap-select .btn:active, [data-theme-version="dark"] .bootstrap-select .btn:focus, [data-theme-version="dark"] .bootstrap-select .btn:hover { + color: #393939 !important; } + .bootstrap-select .dropdown-menu { + border-color: #f5f5f5 !important; + box-shadow: 0rem 0rem 2.5rem 0rem rgba(82, 63, 105, 0.1); } + .bootstrap-select .dropdown-menu .dropdown-item { + padding: 0.25rem 1rem; } + [data-theme-version="dark"] .bootstrap-select .dropdown-menu { + border-color: #f5f5f5 !important; } + +.input-group > .bootstrap-select:not(:first-child) .dropdown-toggle { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.input-group > .bootstrap-select:not(:last-child) .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +.clipboard-btn { + transition: all .1s ease-in-out; } + .clipboard-btn:hover { + background-color: var(--primary); + color: #fff; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +.bootstrap-tagsinput { + flex: 1; + padding: 0; + padding-left: .5rem; + border-radius: 0; + border-color: #f5f5f5; + background-color: #fff; + width: 100%; } + .bootstrap-tagsinput .tag { + font-size: 0.875rem; + background-color: var(--primary); + border-radius: 0; + align-items: center; + border: 0.0625rem solid #f5f5f5; } + .bootstrap-tagsinput input[type="text"] { + flex: 1; + height: 2.1rem; + border-radius: 0; + border-color: #f5f5f5; } + .bootstrap-tagsinput label { + margin-bottom: .5rem; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +.twitter-typeahead { + width: 100%; } + .twitter-typeahead .tt-dataset.tt-dataset-states { + border: 1px solid #f5f5f5; } + .twitter-typeahead .tt-menu { + width: 100%; + background-color: #fff; } + .twitter-typeahead .tt-menu .tt-suggestion { + padding: 0.625rem; + cursor: pointer; } + .twitter-typeahead .tt-menu .tt-suggestion:hover { + background-color: var(--primary); + color: #fff; } + +.weather-one i { + font-size: 8rem; + position: relative; + top: .5rem; } +.weather-one h2, .weather-one .h2 { + display: inline-block; + float: right; + font-size: 4.8rem; } +.weather-one .city { + position: relative; + text-align: right; + top: -2.5rem; } +.weather-one .currently { + font-size: 1.6rem; + font-weight: 400; + position: relative; + top: 2.5rem; } +.weather-one .celcious { + text-align: right; + font-size: 2rem; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +.noUi-target { + border-color: transparent; + border-radius: 0; } + +.noUi-connect { + background-color: var(--primary); } + .noUi-connects { + background-color: #D2D6DE; } + .noUi-connect.c-1-color { + background-color: #68e365; } + .noUi-connect.c-2-color { + background-color: #D653C1; } + .noUi-connect.c-3-color { + background-color: var(--primary); } + .noUi-connect.c-4-color { + background-color: #ffa755; } + +.noUi-vertical { + width: 0.375rem; } + +.noUi-horizontal { + height: 0.125rem; + border: 0; + margin-bottom: 0.625rem; } + +.noUi-horizontal .noUi-handle, .noUi-vertical .noUi-handle { + height: 0.9375rem; + width: 0.9375rem; + border-radius: 3.125rem; + box-shadow: none; + border: none; + background-color: var(--primary); } + .noUi-horizontal .noUi-handle::after, .noUi-horizontal .noUi-handle::before, .noUi-vertical .noUi-handle::after, .noUi-vertical .noUi-handle::before { + display: none; } + +.noUi-vertical .noUi-handle { + left: -0.25rem; + top: -0.375rem; } + +.noUi-horizontal .noUi-handle { + top: -0.4375rem; + cursor: pointer; } + +html:not([dir=rtl]) .noUi-horizontal .noUi-handle { + right: -0.375rem; } + +#slider-toggle { + height: 3.125rem; } + +#slider-toggle.off .noUi-handle { + border-color: var(--primary); } + +.colorpicker-slider .sliders.noUi-target#red, .colorpicker-slider .sliders.noUi-target#green, .colorpicker-slider .sliders.noUi-target#blue { + margin: 0.625rem; + display: inline-block; + height: 12.5rem; } +.colorpicker-slider .sliders.noUi-target#red .noUi-connect { + background: #c0392b; } +.colorpicker-slider .sliders.noUi-target#green .noUi-connect { + background: #27ae60; } +.colorpicker-slider .sliders.noUi-target#blue .noUi-connect { + background: #2980b9; } +.colorpicker-slider #result { + margin: 3.75rem 1.625rem; + height: 6.25rem; + width: 6.25rem; + display: inline-block; + vertical-align: top; + color: #7f7f7f; + background: #7f7f7f; + border: 0.0625rem solid #fff; + box-shadow: 0 0 0.625rem; } + +.slider-vertical { + height: 18rem; } + +.nestable-cart { + overflow: hidden; } + +.dd-handle { + color: #fff; + background: var(--primary); + border-radius: 0.3125rem; + padding: 0.5rem 1rem; + height: auto; + border: 1px solid #f5f5f5; } + +.dd-handle:hover { + color: #fff; + background: var(--primary); } + +.dd3-content:hover { + color: #fff; + background: var(--primary); } + +.dd3-content { + color: #fff; } + +.dd-item > button { + line-height: 28px; + color: #fff; } + +.pignose-calendar { + box-shadow: none; + width: 100%; + max-width: none; + border-color: var(--primary); } + .pignose-calendar .pignose-calendar-top-date { + background-color: var(--primary); } + .pignose-calendar .pignose-calendar-top-date .pignose-calendar-top-month { + color: #fff; } + +.pignose-calendar.pignose-calendar-blue .pignose-calendar-body .pignose-calendar-row .pignose-calendar-unit.pignose-calendar-unit-active a { + background-color: var(--primary); + box-shadow: none; } + +.pignose-calendar .pignose-calendar-top { + box-shadow: none; + border-bottom: 0; } + +.pignose-calendar.pignose-calendar-blue { + background-color: rgba(0, 0, 0, 0.15); } + +.pignose-calendar .pignose-calendar-unit { + height: 4.8em; } + +.cd-h-timeline { + opacity: 0; + transition: opacity 0.2s; } + +.cd-h-timeline--loaded { + opacity: 1; } + +.cd-h-timeline__container { + position: relative; + height: 6.25rem; + max-width: 50rem; } + +.cd-h-timeline__dates { + position: relative; + height: 100%; + margin: 0 2.5rem; + overflow: hidden; } + .cd-h-timeline__dates::after, .cd-h-timeline__dates::before { + content: ''; + position: absolute; + z-index: 2; + top: 0; + height: 100%; + width: 1.25rem; } + .cd-h-timeline__dates::before { + left: 0; + background: var(--primary); } + .cd-h-timeline__dates::after { + right: 0; + background: var(--primary); } + +.cd-h-timeline__line { + position: absolute; + z-index: 1; + left: 0; + top: 3.0625rem; + height: 0.125rem; + background-color: var(--primary); + transition: transform 0.4s; } + +.cd-h-timeline__filling-line { + position: absolute; + z-index: 1; + left: 0; + top: 0; + height: 100%; + width: 100%; + background-color: #68e365; + transform: scaleX(0); + transform-origin: left center; + transition: transform 0.3s; } + +.cd-h-timeline__date { + position: absolute; + bottom: 0; + z-index: 2; + text-align: center; + font-size: 0.8em; + padding-bottom: var(--space-sm); + color: var(--cd-color-1); + user-select: none; + text-decoration: none; } + .cd-h-timeline__date::after { + content: ''; + position: absolute; + left: 50%; + transform: translateX(-50%); + bottom: -0.3125rem; + height: 0.75rem; + width: 0.75rem; + border-radius: 50%; + border-width: 0.125rem; + border-style: solid; + border-color: var(--rgba-primary-6); + background-color: var(--primary); + transition: background-color 0.3s, border-color .3s; } + .cd-h-timeline__date:hover::after { + background-color: #68e365; + border-color: #68e365; } + +.cd-h-timeline__date--selected { + pointer-events: none; } + .cd-h-timeline__date--selected::after { + background-color: #68e365; + border-color: #68e365; } + +.cd-h-timeline__date--older-event::after { + border-color: #68e365; } + +.cd-h-timeline__navigation { + position: absolute; + z-index: 1; + top: 50%; + transform: translateY(-50%); + height: 2.125rem; + width: 2.125rem; + border-radius: 50%; + border-width: 0.125rem; + border-style: solid; + border-color: var(--rgba-primary-6); + transition: border-color 0.3s; } + .cd-h-timeline__navigation::after { + content: ''; + position: absolute; + height: 1rem; + width: 1rem; + top: 50%; + left: 50%; + transform: translateX(-50%) translateY(-50%); + background: url(http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/images/svg/cd-arrow.svg) no-repeat 0 0; } + .cd-h-timeline__navigation:hover { + border-color: #68e365; } + +.cd-h-timeline__navigation--prev { + left: 0; + transform: translateY(-50%) rotate(180deg); } + +.cd-h-timeline__navigation--next { + right: 0; } + +.cd-h-timeline__navigation--inactive { + cursor: not-allowed; } + .cd-h-timeline__navigation--inactive::after { + background-position: 0 -1rem; } + .cd-h-timeline__navigation--inactive:hover { + border-color: var(--rgba-primary-6); } + +.cd-h-timeline__events { + position: relative; + width: 100%; + overflow: hidden; + transition: height .4s; } + +.cd-h-timeline__event { + position: absolute; + z-index: 1; + width: 100%; + left: 0; + top: 0; + transform: translateX(-100%); + padding: 0.0625rem 5%; + opacity: 0; + animation-duration: 0.4s; + animation-timing-function: ease-in-out; } + +.cd-h-timeline__event--selected { + position: relative; + z-index: 2; + opacity: 1; + transform: translateX(0); } + +.cd-h-timeline__event--enter-right, +.cd-h-timeline__event--leave-right { + animation-name: cd-enter-right; } + +.cd-h-timeline__event--enter-left, +.cd-h-timeline__event--leave-left { + animation-name: cd-enter-left; } + +.cd-h-timeline__event--leave-right, +.cd-h-timeline__event--leave-left { + animation-direction: reverse; } + +.cd-h-timeline__event-content { + max-width: 50rem; } + +.cd-h-timeline__event-title { + color: var(--cd-color-1); + font-family: var(--font-secondary); + font-weight: 700; + font-size: var(--text-xxxl); } + +.cd-h-timeline__event-date { + display: block; + font-style: italic; + margin: var(--space-xs) auto; } + .cd-h-timeline__event-date::before { + content: '- '; } + +@keyframes cd-enter-right { + 0% { + opacity: 0; + transform: translateX(100%); } + 100% { + opacity: 1; + transform: translateX(0%); } } +@keyframes cd-enter-left { + 0% { + opacity: 0; + transform: translateX(-100%); } + 100% { + opacity: 1; + transform: translateX(0%); } } +.toast-success { + background-color: var(--primary); } +.toast-info { + background-color: #D653C1; } +.toast-warning { + background-color: #ffa755; } +.toast-error { + background-color: #f72b50; } + +#toast-container > div { + box-shadow: none; + border-radius: 0; + width: auto; + max-width: 15.625rem; + opacity: 1; } + [direction="rtl"] #toast-container > div { + padding: 0.9375rem 3.125rem 0.9375rem 0.9375rem; + background-position: calc(100% - 0.9375rem); + text-align: right; } + #toast-container > div:hover { + box-shadow: none; } +#toast-container .toast-title { + margin-bottom: 0.3125rem; + font-weight: 600; } +#toast-container .toast-message { + font-size: 0.75rem; } +#toast-container .toast-close-button { + opacity: 1; + font-size: 1.25rem; + font-weight: normal; + text-shadow: none; } + +[direction="rtl"] .toast-top-right.demo_rtl_class { + left: 0.75rem; + right: auto; } + +/* Light Gallery */ +.lg-actions .lg-next, +.lg-actions .lg-prev, +.lg-sub-html, +.lg-toolbar { + background-color: rgba(30, 30, 30, 0.6); } + +.lg-outer .lg-toogle-thumb, +.lg-outer .lg-thumb-outer, +.lg-outer .lg-img-wrap, +.lg-outer .lg-item { + background-color: transparent; } + +.lg-thumb-outer.lg-grab, +.lg-toogle-thumb.lg-icon { + background-color: rgba(30, 30, 30, 0.6); } + +.lg-backdrop { + background-color: rgba(30, 30, 30, 0.9); } + +.lg-outer .lg-toogle-thumb, +.lg-actions .lg-next, +.lg-actions .lg-prev, +.lg-toolbar .lg-icon, +#lg-counter { + color: #fff; } + +.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover { + border-color: var(--primary); } + +.lightimg { + cursor: pointer; } + +.jqvmap-zoomin, .jqvmap-zoomout { + position: absolute; + left: 0.625rem; + -webkit-border-radius: 0.1875rem; + -moz-border-radius: 0.1875rem; + border-radius: 0.1875rem; + background: #000000; + padding: 0.1875rem; + color: white; + width: 1.0625rem; + height: 1.0625rem; + cursor: pointer; + line-height: 0.625rem; + text-align: center; } + +.jqvmap-zoomin { + top: 0.625rem; } + +.jqvmap-zoomout { + top: 1.875rem; } + +.ps__rail-x:hover, +.ps__rail-y:hover, +.ps__rail-x:focus, +.ps__rail-y:focus, +.ps__rail-x.ps--clicking, +.ps__rail-y.ps--clicking { + background-color: transparent; + opacity: 0.9; } + +.ps__rail-y:hover > .ps__thumb-y, +.ps__rail-y:focus > .ps__thumb-y, +.ps__rail-y.ps--clicking .ps__thumb-y { + background-color: #DAE2F3; + width: 0.25rem; } + +.ps__thumb-y { + background-color: #DAE2F3; + width: 0.25rem; } + +.total-average { + position: relative; + height: 18.75rem; } + +.widget-chat { + position: relative; + height: 15.625rem; } + +.widget-todo { + position: relative; + height: 13.125rem; } + +.widget-team { + position: relative; + height: 17.8125rem; } + +.widget-timeline { + position: relative; } + +.widget-comments { + position: relative; + height: 25rem; } + +.sidebar-right-inner { + position: relative; + height: 100%; } + +.widget-team .ps .ps__rail-x:hover, +.widget-team .ps .ps__rail-y:hover, +.widget-team .ps .ps__rail-x:focus, +.widget-team .ps .ps__rail-y:focus, +.widget-team .ps .ps__rail-x.ps--clicking, +.widget-team .ps .ps__rail-y.ps--clicking { + background-color: transparent !important; + opacity: 0.9; } + +.fc-h-event, .fc-v-event { + background: var(--primary); + border-radius: .42rem; } + +.fc-h-event .fc-event-title { + color: #fff; } + +.fc-theme-standard td, .fc-theme-standard th { + border-color: #ebedf3; } + +.fc-unthemed .fc-h-event, .fc-unthemed .fc-event-dot { + padding: 0; + border-radius: .42rem; } + +.fc-theme-standard th { + padding: .75rem .5rem; + font-size: 1rem; + font-weight: 500; + color: #b5b5c3; } + @media only screen and (max-width: 35.9375rem) { + .fc-theme-standard th { + font-size: 14px; + font-weight: 400; + padding: 3px 0px; } } + +.fc-theme-standard .fc-scrollgrid.fc-scrollgrid-liquid, .fc-scrollgrid, table { + border-color: #ebedf3; } + +.fc-daygrid-dot-event { + background: #fff; + border: 1px solid #ebedf3; + -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); } + .fc-daygrid-dot-event .fc-daygrid-event-dot { + border-color: var(--primary); } + +.fc-daygrid-dot-event .fc-event-title { + font-weight: 500; } + +.fc-event.bg-primary +, .fc-event.bg-success +, .fc-event.bg-warning +, .fc-event.bg-secondary +, .fc-event.bg-dark +, .fc-event.bg-info { + color: #fff !important; + border-radius: 8px; } + .fc-event.bg-primary + .fc-daygrid-event-dot, .fc-event.bg-success + .fc-daygrid-event-dot, .fc-event.bg-warning + .fc-daygrid-event-dot, .fc-event.bg-secondary + .fc-daygrid-event-dot, .fc-event.bg-dark + .fc-daygrid-event-dot, .fc-event.bg-info .fc-daygrid-event-dot { + border-color: #fff; } + +.fc .fc-scroller-liquid-absolute, .fc-scroller { + position: relative; + overflow: visible !important; } + +.fc .fc-button-group > .fc-button { + color: #b5b5c3; + background: 0 0; + border: 1px solid #ebedf3; + text-shadow: none !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; } + .fc .fc-button-group > .fc-button:focus, .fc .fc-button-group > .fc-button:active, .fc .fc-button-group > .fc-button:hover, .fc .fc-button-group > .fc-button.fc-button-active { + background: var(--primary); + color: #fff; + border-color: var(--primary); } + +.fc-button.fc-button-primary.fc-today-button { + background: var(--primary); + color: #fff; + border: 0; + opacity: 1; } + +.fc-unthemed .fc-toolbar .fc-button.fc-button-active, .fc-unthemed .fc-toolbar .fc-button:active, .fc-unthemed .fc-toolbar .fc-button:focus { + background: var(--primary); + color: #fff; + border: 1px solid var(--primary); + -webkit-box-shadow: none; + box-shadow: none; + text-shadow: none; } + +.fc .fc-toolbar-title { + font-size: 20px; + margin: 0; } + +.fc .fc-toolbar.fc-header-toolbar { + margin-bottom: -0.5em; } + +.external-event { + padding: 8px 10px; + display: flex; + align-items: center; + border-radius: 5px; } + .external-event:hover:before { + background: #fff !important; } + +.fc-event { + overflow: hidden; } + +.fc .fc-view-harness { + height: 800px !important; + overflow-y: auto; } + +@media only screen and (max-width: 35.9375rem) { + .fc .fc-toolbar.fc-header-toolbar { + display: block; } + .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk { + display: flex; + justify-content: center; } + .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:first-child { + justify-content: space-between; } + .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-title { + margin-bottom: 8px; } } + +#external-events .external-event { + text-align: left; + font-size: 16px; } + +@media only screen and (max-width: 35.9375rem) { + .fc.app-fullcalendar .fc-timegrid-slot-label { + width: 40px !important; + font-size: 10px; } + .fc.app-fullcalendar .fc-event, .fc.app-fullcalendar .external-event { + font-size: 10px; + margin: 0; + padding: 2px 0; + text-align: center; + line-height: 1.3; } + .fc.app-fullcalendar .fc-col-header-cell-cushion { + display: inline-block; + padding: 2px 4px; + font-size: 10px; } } + +.accordion-primary .accordion-header { + background: var(--primary); + border-color: var(--primary); + color: #fff; + box-shadow: 0 0.9375rem 1.25rem 0 var(--rgba-primary-1); } + .accordion-primary .accordion-header.collapsed { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + color: var(--primary); + box-shadow: none; } + [data-theme-version="dark"] .accordion-primary .accordion-header.collapsed { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + color: #393939; } +.accordion-primary-solid .accordion-header { + background: var(--primary); + border-color: var(--primary); + color: #fff; + box-shadow: 0 -0.625rem 1.25rem 0 var(--rgba-primary-1); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + .accordion-primary-solid .accordion-header.collapsed { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + color: var(--primary); + box-shadow: none; + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } + [data-theme-version="dark"] .accordion-primary-solid .accordion-header.collapsed { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + color: #393939; } +.accordion-primary-solid .accordion__body { + border: 0.125rem solid var(--primary); + border-top: none; + box-shadow: 0 0.9375rem 1.25rem 0 var(--rgba-primary-1); + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } +.accordion-danger .accordion-header { + background: #f72b50; + border-color: #f72b50; + color: #fff; + box-shadow: 0 0.9375rem 1.25rem 0 rgba(247, 43, 80, 0.15); } + .accordion-danger .accordion-header.collapsed { + background: #fee6ea; + border-color: #fee6ea; + color: #211c37; + box-shadow: none; } +.accordion-danger-solid .accordion-header { + background: #f72b50; + border-color: #f72b50; + color: #fff; + box-shadow: 0 -0.625rem 1.25rem 0 rgba(247, 43, 80, 0.15); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + .accordion-danger-solid .accordion-header.collapsed { + background: #fee6ea; + border-color: #fee6ea; + color: #211c37; + box-shadow: none; + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } + [data-theme-version="dark"] .accordion-danger-solid .accordion-header.collapsed { + background: rgba(247, 43, 80, 0.15); + border-color: rgba(247, 43, 80, 0.15); + color: #393939; } +.accordion-danger-solid .accordion__body { + border: 0.125rem solid #f72b50; + border-top: none; + box-shadow: 0 0.9375rem 1.25rem 0 rgba(247, 43, 80, 0.15); + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } +.accordion-item { + margin-bottom: 1.25rem; } +.accordion-header { + padding: 1rem 1.75rem; + border: 0.0625rem solid #f5f5f5; + cursor: pointer; + position: relative; + color: #333; + font-weight: 400; + border-radius: 1.25rem; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } + [data-theme-version="dark"] .accordion-header { + color: #fff !important; + border-color: #2e2e42; } + .accordion-header-indicator { + font-family: 'themify'; + position: absolute; + right: 1.5625rem; + top: 50%; + transform: translateY(-50%); } + [direction="rtl"] .accordion-header-indicator { + right: auto; + left: 1.5625rem; } + .accordion-header-indicator.indicator_bordered { + display: inline-block; + width: 1.5625rem; + text-align: center; + height: 1.5625rem; + border: 0.0625rem solid #f5f5f5; + border-radius: 50%; + line-height: 1.5625rem; } + .accordion-header:not(.collapsed) .accordion-header-indicator::before { + content: "\e622"; } + .accordion-header:not(.collapsed) .accordion-header-indicator.style_two::before { + content: "\e648"; } + .accordion-header.collapsed .accordion-header-indicator::before { + content: "\e61a"; } + .accordion-header.collapsed .accordion-header-indicator.style_two::before { + content: "\e64b"; } +.accordion-body-text { + padding: 0.875rem 1.25rem; } +.accordion-bordered .accordion__body { + border: 0.0625rem solid #f5f5f5; + border-top: none; + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } + [data-theme-version="dark"] .accordion-bordered .accordion__body { + border-color: #2e2e42; } +.accordion-bordered .accordion-header.collapsed { + border-radius: 1.25rem; } +.accordion-bordered .accordion-header { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } +.accordion-no-gutter .accordion-item { + margin-bottom: 0; } + .accordion-no-gutter .accordion-item .accordion-header.collapsed { + border-bottom: none; } + .accordion-no-gutter .accordion-item:last-child .accordion-header { + border-bottom: 0.0625rem solid #f5f5f5; } + [data-theme-version="dark"] .accordion-no-gutter .accordion-item:last-child .accordion-header { + border-color: #2e2e42; } +.accordion-no-gutter.accordion__bordered .accordion-item:not(:last-child) .accordion__body { + border-bottom: none; } +.accordion-left-indicator .accordion-header-text { + padding-left: 2.5rem; } +.accordion-left-indicator .accordion-header-indicator { + right: auto; + left: 1.5625rem; } +.accordion-with-icon .accordion-header-text { + padding-left: 2.5rem; } + [direction="rtl"] .accordion-with-icon .accordion-header-text { + padding-left: 0; + padding-right: 2.5rem; } +.accordion-with-icon .accordion-header-icon { + position: absolute; + right: auto; + left: 1.5625rem; + font-family: 'themify'; } + [direction="rtl"] .accordion-with-icon .accordion-header-icon { + left: auto; + right: 1.5625rem; } + .accordion-with-icon .accordion-header-icon::before { + content: "\e645"; } +.accordion-header-bg .accordion-header { + background-color: #c8c8c8; } + [data-theme-version="dark"] .accordion-header-bg .accordion-header { + background-color: #17171E; + color: #fff; } + .accordion-header-bg .accordion-header-primary { + background-color: var(--primary); + color: #fff; + border-color: var(--primary); } + [data-theme-version="dark"] .accordion-header-bg .accordion-header-primary { + background-color: var(--primary); } + .accordion-header-bg .accordion-header-info { + background-color: #D653C1; + color: #fff; + border-color: #D653C1; } + [data-theme-version="dark"] .accordion-header-bg .accordion-header-info { + background-color: #D653C1; } + .accordion-header-bg .accordion-header-success { + background-color: #68e365; + color: #fff; + border-color: #68e365; } + [data-theme-version="dark"] .accordion-header-bg .accordion-header-success { + background-color: #68e365; } +.accordion-header-bg.accordion-no-gutter .accordion-header { + border-color: transparent; + border-radius: 0; } +.accordion-header-bg.accordion-no-gutter .accordion-item:first-child .accordion-header { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; } +.accordion-header-bg.accordion-no-gutter .accordion-item:last-child .accordion-header { + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } +.accordion.accordion-no-gutter .accordion-header { + border-radius: 0; } +.accordion.accordion-no-gutter .accordion-header.collapsed { + border-radius: 0; } +.accordion.accordion-no-gutter .accordion__body { + border-radius: 0; } +.accordion.accordion-no-gutter .accordion-item:first-child .accordion-header { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; } +.accordion.accordion-no-gutter .accordion-item:last-child .accordion-header.collapsed { + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } +.accordion.accordion-no-gutter .accordion-item:last-child .accordion__body { + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } +.accordion-solid-bg .accordion-header { + border-color: transparent; + background-color: var(--rgba-primary-1); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + [data-theme-version="dark"] .accordion-solid-bg .accordion-header { + background-color: #17171E; } + .accordion-solid-bg .accordion-header.collapsed { + border-radius: 1.25rem; } +.accordion-solid-bg .accordion__body { + border-color: transparent; + background-color: var(--rgba-primary-1); + border-bottom-left-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; } + [data-theme-version="dark"] .accordion-solid-bg .accordion__body { + background-color: #17171E; } +.accordion-active-header .accordion-header:not(.collapsed) { + background-color: #D653C1; + border-color: #D653C1; + color: #fff; } +.accordion-header-shadow .accordion-header { + border: none; + box-shadow: 0 0 0.9375rem -0.1875rem rgba(0, 0, 0, 0.3); } +.accordion-rounded-stylish .accordion-header { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } +.accordion-rounded-stylish .accordion__body { + border-bottom-left-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } +.accordion-rounded .accordion-header { + border-radius: 0.3125rem; } +.accordion-gradient .accordion-header { + color: #fff; + background-image: linear-gradient(to right, rgba(186, 1, 181, 0.85) 0%, rgba(103, 25, 255, 0.85) 100%); + border-color: transparent; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + .accordion-gradient .accordion-header.collapsed { + border-bottom-left-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } +.accordion-gradient .accordion__body { + color: #fff; + background-image: linear-gradient(to right, rgba(186, 1, 181, 0.85) 0%, rgba(103, 25, 255, 0.85) 100%); + border-color: transparent; } + +.alert { + border-radius: 1.25rem; + padding: 1rem 1.5rem; } + .alert p { + line-height: 1.5; } + +.alert-rounded { + border-radius: 1.875rem; } + +.alert-primary { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + color: var(--primary); } + [data-theme-version="dark"] .alert-primary { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); } + +.alert-secondary { + background: #d9f6f3; + border-color: #d9f6f3; + color: #145650; } + [data-theme-version="dark"] .alert-secondary { + background: rgba(20, 86, 80, 0.5); + border-color: rgba(20, 86, 80, 0.5); + color: #fff; } + +.alert-success { + background: #e7fbe6; + border-color: #e7fbe6; + color: #68e365; } + [data-theme-version="dark"] .alert-success { + background: rgba(104, 227, 101, 0.1); + border-color: rgba(104, 227, 101, 0.1); } + +.alert-warning { + background: #ffe9d5; + border-color: #ffe9d5; + color: #ffa755; } + [data-theme-version="dark"] .alert-warning { + background: rgba(255, 167, 85, 0.1); + border-color: rgba(255, 167, 85, 0.1); } + +.alert-danger { + background: #fee6ea; + border-color: #fee6ea; + color: #f72b50; } + [data-theme-version="dark"] .alert-danger { + background: rgba(247, 43, 80, 0.15); + border-color: rgba(247, 43, 80, 0.15); } + +.alert-info { + background: white; + border-color: white; + color: #D653C1; } + [data-theme-version="dark"] .alert-info { + background: rgba(214, 83, 193, 0.1); + border-color: rgba(214, 83, 193, 0.1); } + +.alert-dark { + background: white; + border-color: white; + color: #6e6e6e; } + [data-theme-version="dark"] .alert-dark { + background: rgba(110, 110, 110, 0.35); + border-color: rgba(110, 110, 110, 0.35); + color: #fff; } + +.alert-light { + background: #c8c8c8; + border-color: #c8c8c8; + color: #6e6e6e; } + +.alert-alt.alert-primary { + border-left: 0.25rem solid var(--primary); } + +.alert-alt.alert-secondary { + border-left: 0.25rem solid #145650; } + +.alert-alt.alert-success { + border-left: 0.25rem solid #68e365; } + +.alert-alt.alert-warning { + border-left: 0.25rem solid #ffa755; } + +.alert-alt.alert-danger { + border-left: 0.25rem solid #f72b50; } + +.alert-alt.alert-info { + border-left: 0.25rem solid #D653C1; } + +.alert-alt.alert-dark { + border-left: 0.25rem solid #6e6e6e; } + +.alert-alt.alert-light { + border-left: 0.25rem solid #a2a2a2; } + +.alert-alt.alert-primary.solid { + border-left: 0.25rem solid var(--primary-dark) !important; } + +.alert-alt.alert-secondary.solid { + border-left: 0.25rem solid black !important; } + +.alert-alt.alert-success.solid { + border-left: 0.25rem solid #22aa1f !important; } + +.alert-alt.alert-warning.solid { + border-left: 0.25rem solid #d56700 !important; } + +.alert-alt.alert-danger.solid { + border-left: 0.25rem solid #9d0621 !important; } + +.alert-alt.alert-info.solid { + border-left: 0.25rem solid #892178 !important; } + +.alert-alt.alert-dark.solid { + border-left: 0.25rem solid #2e2e2e !important; } + +.alert-alt.alert-light.solid { + border-left: 0.25rem solid #888888 !important; } + +.alert-dismissible.solid .close:hover { + color: #fff; + opacity: 1; } + +.alert.alert-primary.solid { + background: var(--primary); + color: #fff; + border-color: var(--primary); } + +.alert.alert-secondary.solid { + background: #145650; + color: #fff; + border-color: #145650; } + +.alert.alert-success.solid { + background: #68e365; + color: #fff; + border-color: #68e365; } + +.alert.alert-warning.solid { + background: #ffa755; + color: #fff; + border-color: #ffa755; } + +.alert.alert-danger.solid { + background: #f72b50; + color: #fff; + border-color: #f72b50; } + +.alert.alert-info.solid { + background: #D653C1; + color: #fff; + border-color: #D653C1; } + +.alert.alert-dark.solid { + background: #6e6e6e; + color: #fff; + border-color: #6e6e6e; } + +.alert.alert-light.solid { + background: #c8c8c8; + color: #6e6e6e; + border-color: #c8c8c8; } + +.alert-right-icon > span i { + font-size: 1.125rem; + margin-right: 0.3125rem; } +.alert-right-icon .close i { + font-size: 1rem; } + +.alert.alert-outline-primary { + background: transparent; + color: var(--primary); + border-color: var(--primary); } + +.alert.alert-outline-secondary { + background: transparent; + color: #393939; + border-color: #145650; } + +.alert.alert-outline-success { + background: transparent; + color: #68e365; + border-color: #68e365; } + +.alert.alert-outline-info { + background: transparent; + color: #D653C1; + border-color: #D653C1; } + +.alert.alert-outline-warning { + background: transparent; + color: #ffa755; + border-color: #ffa755; } + +.alert.alert-outline-danger { + background: transparent; + color: #f72b50; + border-color: #f72b50; } + +.alert.alert-outline-dark { + background: transparent; + color: #393939; + border-color: #6e6e6e; } + +.alert.alert-outline-light { + background: transparent; + color: #6e6e6e; + border-color: #c8c8c8; } + +.alert-social { + color: #fff; } + .alert-social .alert-social-icon { + align-self: center; + margin-right: 0.9375rem; } + .alert-social .alert-social-icon i { + font-size: 2.625rem; } + .alert-social.facebook { + background-color: #3b5998; } + .alert-social.twitter { + background-color: #1da1f2; } + .alert-social.linkedin { + background-color: #007bb6; } + .alert-social.google-plus { + background-color: #db4439; } + .alert-social .close:hover { + opacity: 1 !important; + color: #fff !important; } + +.left-icon-big .alert-left-icon-big { + align-self: center; + margin-right: 0.9375rem; } + .left-icon-big .alert-left-icon-big i { + font-size: 2.1875rem; + line-height: 1; } + +[direction="rtl"] .left-icon-big .alert-left-icon-big, +[direction="rtl"] .alert-social .alert-social-icon { + margin-right: 0; + margin-left: 0.9375rem; } + +.badge { + line-height: 1.5; + border-radius: 1.03125rem; + padding: 0.25rem 0.625rem; + border: 0.0625rem solid transparent; } + +.badge-rounded { + border-radius: 1.25rem; + padding: 0.1875rem 0.8125rem; } + +.badge-circle { + border-radius: 6.25rem; + padding: 0.1875rem 0.4375rem; } + +.badge-outline-primary { + border: 0.0625rem solid var(--primary); + color: var(--primary); } + +.badge-outline-secondary { + border: 0.0625rem solid #145650; + color: #145650; } + [data-theme-version="dark"] .badge-outline-secondary { + color: #393939; } + +.badge-outline-success { + border: 0.0625rem solid #68e365; + color: #68e365; } + +.badge-outline-info { + border: 0.0625rem solid #D653C1; + color: #D653C1; } + +.badge-outline-warning { + border: 0.0625rem solid #ffa755; + color: #ffa755; } + +.badge-outline-danger { + border: 0.0625rem solid #f72b50; + color: #f72b50; } + +.badge-outline-light { + border: 0.0625rem solid #f5f5f5; + color: #6e6e6e; } + [data-theme-version="dark"] .badge-outline-light { + color: #393939; } + +.badge-outline-dark { + border: 0.0625rem solid #6e6e6e; + color: #6e6e6e; } + [data-theme-version="dark"] .badge-outline-dark { + color: #393939; } + +.badge-xs { + font-size: 0.625rem; + padding: 0rem 0.3125rem; + line-height: 1.125rem; } + +.badge-sm { + font-size: 0.6875rem; + padding: 0.3125rem 0.5rem; + line-height: 0.6875rem; } + +.badge-lg { + font-size: 0.875rem; + padding: 0rem 0.625rem; + line-height: 1.875rem; } + +.badge-xl { + font-size: 1rem; + padding: 0rem 0.9375rem; + line-height: 2.1875rem; } + +.badge-default { + background: #ADB6C7; } + +.badge-success { + background-color: #68e365; } + +.badge-secondary { + background-color: #145650; } + +.badge-info { + background-color: #D653C1; } + +.badge-primary { + background-color: var(--primary); } + +.badge-warning { + background-color: #ffa755; } + +.badge-danger { + background-color: #f72b50; } + +.badge-dark { + background-color: #6e6e6e; } + +.badge-light { + background-color: #c8c8c8; } + +.light.badge-default { + background: #ADB6C7; } + +.light.badge-success { + background-color: #e7fbe6; + color: #68e365; } + [data-theme-version="dark"] .light.badge-success { + background-color: rgba(104, 227, 101, 0.1); } + +.light.badge-info { + background-color: #efbae6; + color: #D653C1; } + [data-theme-version="dark"] .light.badge-info { + background-color: rgba(214, 83, 193, 0.1); } + +.light.badge-primary { + background-color: var(--rgba-primary-1); + color: var(--primary); } + [data-theme-version="dark"] .light.badge-primary { + background-color: var(--rgba-primary-1); } + +.light.badge-secondary { + background-color: #d9f6f3; + color: #145650; } + [data-theme-version="dark"] .light.badge-secondary { + background-color: rgba(20, 86, 80, 0.5); + color: #fff; } + +.light.badge-warning { + background-color: #ffe9d5; + color: #ffa755; } + [data-theme-version="dark"] .light.badge-warning { + background-color: rgba(255, 167, 85, 0.1); } + +.light.badge-danger { + background-color: #fee6ea; + color: #f72b50; } + [data-theme-version="dark"] .light.badge-danger { + background-color: rgba(247, 43, 80, 0.15); } + +.light.badge-dark { + background-color: #eeeeee; + color: #6e6e6e; } + [data-theme-version="dark"] .light.badge-dark { + background-color: rgba(110, 110, 110, 0.35); + color: #393939; } + +.bootstrap-label .label { + display: inline-block; + margin-right: 1rem; } + .bootstrap-label .label:last-child { + margin-right: 0; } + +.badge-demo .badge { + margin-right: 0.3125rem; + margin-bottom: 0.3125rem; } + .badge-demo .badge:last-child { + margin-right: 0; } + +.bootstrap-badge-buttons button { + margin-right: .2rem; + margin-bottom: 1rem; } + .bootstrap-badge-buttons button:last-child { + margin-right: 0; } + +.breadcrumb { + font-size: 1.1875rem; } + .breadcrumb .breadcrumb-item.active a { + color: var(--primary); } + .breadcrumb .breadcrumb-item + .breadcrumb-item::before { + color: var(--primary); } + +.page-titles { + padding: 0.9375rem 2.5rem; + background: #fff; + margin-bottom: 1.875rem; + border-radius: 1rem; + margin-top: 0; + margin-left: 0; + margin-right: 0; } + [data-theme-version="dark"] .page-titles { + background: #212130; } + @media only screen and (max-width: 74.9375rem) { + .page-titles { + margin-top: -1.875rem; } } + @media only screen and (max-width: 47.9375rem) { + .page-titles { + margin-left: -1.25rem; + margin-right: -1.25rem; + margin-bottom: 0.9375rem; + padding: 0.9375rem 1.25rem; + margin-top: -1.25rem; } } + .page-titles .justify-content-sm-end { + align-items: center; } + .page-titles h4, .page-titles .h4 { + margin-bottom: 0; + margin-top: 0; + color: var(--primary); + font-size: 1.25rem; } + .page-titles h4 span, .page-titles .h4 span { + font-size: 0.875rem; + font-weight: 400; } + .page-titles .breadcrumb { + margin-bottom: 0; + padding: 0; + background: transparent; } + .page-titles .breadcrumb li { + margin-top: 0; + margin-bottom: 0; } + .page-titles .breadcrumb li a { + color: #828690; } + @media only screen and (max-width: 35.9375rem) { + .page-titles .breadcrumb li a { + font-size: 0.75rem; } } + .page-titles .breadcrumb li.active { + color: var(--primary); + font-weight: 600; } + .page-titles .breadcrumb li.active a { + color: #145650; } + .page-titles .breadcrumb .breadcrumb-item + .breadcrumb-item:before { + /* font-family: 'simple-line-icons'; + font-weight: 400; + position:absolute; + font-size: 10px; */ + color: #145650; } + .page-titles .breadcrumb-datepicker { + font-size: 0.75rem; + color: #89879f; } + .page-titles .breadcrumb-datepicker__icon { + font-size: 0.875rem; } + .page-titles .breadcrumb-widget .border-dark { + border-color: #dee2e6 !important; } + .page-titles .breadcrumb-widget h4, .page-titles .breadcrumb-widget .h4 { + color: #646c9a; + font-weight: 600; } + @media only screen and (max-width: 35.9375rem) { + .page-titles .breadcrumb-widget { + text-align: left !important; + margin-bottom: 0.9375rem; } } + +button { + cursor: pointer; } + button:focus { + outline: 0; + box-shadow: none; } + +.btn { + padding: 0.938rem 1.5rem; + border-radius: 1.125rem; + font-weight: 400; + font-size: 1rem; } + .btn:hover, .btn:focus, .btn:active, .btn.active { + outline: 0 !important; } + @media only screen and (max-width: 87.5rem) { + .btn { + padding: 0.625rem 1rem; + font-size: 0.813rem; } } + .btn.btn-success, .btn.btn-secondary, .btn.btn-warning, .btn.btn-primary, .btn.btn-danger, .btn.btn-info { + color: #fff; } + .btn-transparent { + background-color: transparent; } + +.btn-primary { + border-color: var(--primary); + background-color: var(--primary); } + .btn-primary:active, .btn-primary:focus, .btn-primary:hover { + border-color: var(--primary-hover); + background-color: var(--primary-hover); } + .btn-primary:focus { + box-shadow: 0 0 0 0.25rem var(--rgba-primary-5); } + .btn-primary:disabled, .btn-primary.disabled { + background-color: var(--primary); + border-color: var(--primary); } + +.btn-link { + color: var(--primary); + text-decoration: none; } + .btn-link:hover { + color: var(--primary-hover); } + +.btn-outline-primary { + color: var(--primary); + border-color: var(--primary); } + .btn-outline-primary:hover { + border-color: var(--primary-hover); + background-color: var(--primary-hover); } + +.sharp { + min-width: 2.5rem; + padding: 0.4375rem; + height: 2.5rem; + min-height: 2.5rem; } + +.sharp.btn-xs { + padding: 0.1875rem; + width: 1.625rem; + height: 1.625rem; + min-width: 1.625rem; + min-height: 1.625rem; } + +.btn-block { + display: block; + width: 100%; } + +.light.tp-btn { + background-color: transparent; } +.light.btn-default { + background: #ADB6C7; } +.light.btn-success { + background-color: #e7fbe6; + border-color: #e7fbe6; + color: #68e365; } + .light.btn-success g [fill] { + fill: #68e365; } + [data-theme-version="dark"] .light.btn-success { + background-color: rgba(104, 227, 101, 0.1); + border-color: transparent; } + .light.btn-success:hover { + background-color: #68e365; + border-color: #68e365; + color: #fff; } + .light.btn-success:hover g [fill] { + fill: #fff; } +.light.btn-info { + background-color: #efbae6; + border-color: #efbae6; + color: #D653C1; } + .light.btn-info g [fill] { + fill: #D653C1; } + [data-theme-version="dark"] .light.btn-info { + background-color: rgba(214, 83, 193, 0.1); + border-color: transparent; } + .light.btn-info:hover { + background-color: #D653C1; + border-color: #D653C1; + color: #fff; } + .light.btn-info:hover g [fill] { + fill: #fff; } +.light.btn-primary { + background-color: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + color: var(--primary); } + .light.btn-primary g [fill] { + fill: var(--primary); } + [data-theme-version="dark"] .light.btn-primary { + background-color: var(--rgba-primary-1); + border-color: transparent; + color: #fff; } + .light.btn-primary:hover { + background-color: var(--primary); + border-color: var(--primary); + color: #fff; } + .light.btn-primary:hover g [fill] { + fill: #fff; } +.light.btn-secondary { + background-color: #d9f6f3; + border-color: #d9f6f3; + color: #145650; } + .light.btn-secondary g [fill] { + fill: #145650; } + [data-theme-version="dark"] .light.btn-secondary { + background-color: rgba(20, 86, 80, 0.5); + border-color: transparent; + color: #fff; } + .light.btn-secondary:hover { + background-color: #145650; + border-color: #145650; + color: #fff; } + .light.btn-secondary:hover g [fill] { + fill: #fff; } +.light.btn-warning { + background-color: #ffe9d5; + border-color: #ffe9d5; + color: #ffa755; } + .light.btn-warning g [fill] { + fill: #ffa755; } + [data-theme-version="dark"] .light.btn-warning { + background-color: rgba(255, 167, 85, 0.1); + border-color: transparent; } + .light.btn-warning:hover { + background-color: #ffa755; + border-color: #ffa755; + color: #fff; } + .light.btn-warning:hover g [fill] { + fill: #fff; } +.light.btn-danger { + background-color: #fee6ea; + border-color: #fee6ea; + color: #f72b50; } + .light.btn-danger g [fill] { + fill: #f72b50; } + [data-theme-version="dark"] .light.btn-danger { + background-color: rgba(247, 43, 80, 0.15); + border-color: transparent; } + .light.btn-danger:hover { + background-color: #f72b50; + border-color: #f72b50; + color: #fff; } + .light.btn-danger:hover g [fill] { + fill: #fff; } +.light.btn-dark { + background-color: #eeeeee; + border-color: #eeeeee; + color: #6e6e6e; } + .light.btn-dark g [fill] { + fill: #6e6e6e; } + [data-theme-version="dark"] .light.btn-dark { + background-color: rgba(110, 110, 110, 0.35); + border-color: transparent; + color: #fff; } + .light.btn-dark:hover { + background-color: #6e6e6e; + border-color: #6e6e6e; + color: #fff; } + .light.btn-dark:hover g [fill] { + fill: #fff; } + +.btn.tp-btn { + background-color: transparent; + border-color: transparent; } + .btn.tp-btn.btn-default { + background: #ADB6C7; } + .btn.tp-btn.btn-success { + color: #68e365; } + .btn.tp-btn.btn-success g [fill] { + fill: #68e365; } + .btn.tp-btn.btn-success:hover { + background-color: #68e365; + border-color: #68e365; + color: #fff; } + .btn.tp-btn.btn-success:hover g [fill] { + fill: #fff; } + .btn.tp-btn.btn-info { + color: #D653C1; } + .btn.tp-btn.btn-info g [fill] { + fill: #D653C1; } + .btn.tp-btn.btn-info:hover { + background-color: #D653C1; + border-color: #D653C1; + color: #fff; } + .btn.tp-btn.btn-info:hover g [fill] { + fill: #fff; } + .btn.tp-btn.btn-primary { + color: var(--primary); } + .btn.tp-btn.btn-primary g [fill] { + fill: var(--primary); } + .btn.tp-btn.btn-primary:hover { + background-color: var(--primary); + border-color: var(--primary); + color: #fff; } + .btn.tp-btn.btn-primary:hover g [fill] { + fill: #fff; } + .btn.tp-btn.btn-secondary { + color: #145650; } + .btn.tp-btn.btn-secondary g [fill] { + fill: #145650; } + .btn.tp-btn.btn-secondary:hover { + background-color: #145650; + border-color: #145650; + color: #fff; } + .btn.tp-btn.btn-secondary:hover g [fill] { + fill: #fff; } + .btn.tp-btn.btn-warning { + color: #ffa755; } + .btn.tp-btn.btn-warning g [fill] { + fill: #ffa755; } + .btn.tp-btn.btn-warning:hover { + background-color: #ffa755; + border-color: #ffa755; + color: #fff; } + .btn.tp-btn.btn-warning:hover g [fill] { + fill: #fff; } + .btn.tp-btn.btn-danger { + color: #f72b50; } + .btn.tp-btn.btn-danger g [fill] { + fill: #f72b50; } + .btn.tp-btn.btn-danger:hover { + background-color: #f72b50; + border-color: #f72b50; + color: #fff; } + .btn.tp-btn.btn-danger:hover g [fill] { + fill: #fff; } + .btn.tp-btn.btn-light { + color: #6e6e6e; } + .btn.tp-btn.btn-light g [fill] { + fill: #6e6e6e; } + .btn.tp-btn.btn-light:hover { + background-color: #c8c8c8; + border-color: #c8c8c8; + color: #6e6e6e; } + .btn.tp-btn.btn-light:hover g [fill] { + fill: #fff; } + .btn.tp-btn.btn-dark { + color: #6e6e6e; } + .btn.tp-btn.btn-dark g [fill] { + fill: #6e6e6e; } + .btn.tp-btn.btn-dark:hover { + background-color: #6e6e6e; + border-color: #6e6e6e; + color: #fff; } + .btn.tp-btn.btn-dark:hover g [fill] { + fill: #fff; } + +.btn.tp-btn-light { + background-color: transparent; + border-color: transparent; } + .btn.tp-btn-light.btn-success { + color: #68e365; } + .btn.tp-btn-light.btn-success g [fill] { + fill: #68e365; } + .btn.tp-btn-light.btn-success:hover { + background-color: #e7fbe6; + border-color: #e7fbe6; + color: #68e365; } + .btn.tp-btn-light.btn-success:hover g [fill] { + fill: #68e365; } + .btn.tp-btn-light.btn-info { + color: #D653C1; } + .btn.tp-btn-light.btn-info g [fill] { + fill: #D653C1; } + .btn.tp-btn-light.btn-info:hover { + background-color: #efbae6; + border-color: #efbae6; + color: #D653C1; } + .btn.tp-btn-light.btn-info:hover g [fill] { + fill: #D653C1; } + .btn.tp-btn-light.btn-primary { + color: var(--primary); } + .btn.tp-btn-light.btn-primary g [fill] { + fill: var(--primary); } + .btn.tp-btn-light.btn-primary:hover { + background-color: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + color: var(--primary); } + .btn.tp-btn-light.btn-primary:hover g [fill] { + fill: var(--primary); } + .btn.tp-btn-light.btn-secondary { + color: #145650; } + .btn.tp-btn-light.btn-secondary g [fill] { + fill: #145650; } + .btn.tp-btn-light.btn-secondary:hover { + background-color: #d9f6f3; + border-color: #d9f6f3; + color: #145650; } + .btn.tp-btn-light.btn-secondary:hover g [fill] { + fill: #145650; } + .btn.tp-btn-light.btn-warning { + color: #ffa755; } + .btn.tp-btn-light.btn-warning g [fill] { + fill: #ffa755; } + .btn.tp-btn-light.btn-warning:hover { + background-color: #ffe9d5; + border-color: #ffe9d5; + color: #ffa755; } + .btn.tp-btn-light.btn-warning:hover g [fill] { + fill: #ffa755; } + .btn.tp-btn-light.btn-danger { + color: #f72b50; } + .btn.tp-btn-light.btn-danger g [fill] { + fill: #f72b50; } + .btn.tp-btn-light.btn-danger:hover { + background-color: #fee6ea; + border-color: #fee6ea; + color: #f72b50; } + .btn.tp-btn-light.btn-danger:hover g [fill] { + fill: #fff; } + .btn.tp-btn-light.btn-dark { + color: #6e6e6e; } + .btn.tp-btn-light.btn-dark g [fill] { + fill: #6e6e6e; } + .btn.tp-btn-light.btn-dark:hover { + background-color: #eeeeee; + border-color: #eeeeee; + color: #6e6e6e; } + .btn.tp-btn-light.btn-dark:hover g [fill] { + fill: #fff; } + +.shadow.btn-primary { + -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 var(--rgba-primary-2) !important; + box-shadow: 0 0.3125rem 0.9375rem 0 var(--rgba-primary-2) !important; } + +.shadow.btn-secondary { + -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(20, 86, 80, 0.2) !important; + box-shadow: 0 0.3125rem 0.9375rem 0 rgba(20, 86, 80, 0.2) !important; } + +.shadow.btn-warning { + -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(255, 167, 85, 0.2) !important; + box-shadow: 0 0.3125rem 0.9375rem 0 rgba(255, 167, 85, 0.2) !important; } + +.shadow.btn-danger { + -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(247, 43, 80, 0.2) !important; + box-shadow: 0 0.3125rem 0.9375rem 0 rgba(247, 43, 80, 0.2) !important; } + +.shadow.btn-info { + -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(214, 83, 193, 0.2) !important; + box-shadow: 0 0.3125rem 0.9375rem 0 rgba(214, 83, 193, 0.2) !important; } + +.shadow.btn-success { + -webkit-box-shadow: 0 0.3125rem 0.9375rem 0 rgba(104, 227, 101, 0.2) !important; + box-shadow: 0 0.3125rem 0.9375rem 0 rgba(104, 227, 101, 0.2) !important; } + +.btn-xxs { + padding: 0.375rem 0.9375rem; + font-size: 0.6875rem; + line-height: 1.3; } + +.btn-xs { + font-size: 0.75rem; + padding: 0.438rem 1rem; + font-weight: 600; } + +.btn-sm, .btn-group-sm > .btn { + font-size: 0.813rem !important; + padding: 0.625rem 1rem; } + +.btn-md { + font-size: 0.875rem !important; + padding: 0.875rem 1.25rem; } + +.btn-lg, .btn-group-lg > .btn { + padding: 1rem 2rem; + font-size: 1.125rem !important; } + @media only screen and (max-width: 35.9375rem) { + .btn-lg, .btn-group-lg > .btn { + padding: 0.75rem 1.25rem; } } + +.btn-xl { + padding: 0.6rem 1rem; } + .btn-xl.btn-default { + font-weight: 600; } + +.btn-square { + border-radius: 0; } + +.btn-rounded { + border-radius: 2.5rem !important; } + +.btn-icon-end { + border-left: 0.0625rem solid white; + display: inline-block; + margin: -.8rem 0 -.8rem 1rem; + padding: 0.4375rem 0 0.4375rem 1rem; + margin: -1rem -0.25rem -1rem 1rem; + padding: 1rem 0 1rem 1.25rem; } + +.btn-icon-start { + background: #fff; + border-radius: 10rem; + display: inline-block; + margin: -0.5rem 0.75rem -0.5rem -1.188rem; + padding: 0.5rem 0.80rem 0.5rem; + float: left; } + @media only screen and (max-width: 87.5rem) { + .btn-icon-start { + margin: -0.5rem 0.75rem -0.5rem -0.880rem; } } + +[direction="rtl"] .btn-icon-start { + margin: -.5rem 0.5rem -0.5rem -1rem; } + @media only screen and (max-width: 87.5rem) { + [direction="rtl"] .btn-icon-start { + margin: -0.5rem 0.75rem -0.5rem -0.880rem; } } +[direction="rtl"] .btn-icon-end { + border-left: 0rem solid white; + display: inline-block; + margin: -.8rem 1rem -.8rem 0; + padding: 0.4375rem 1rem 0.4375rem 0; + border-right: 0.0625rem solid white; } + +.toggle-dropdown::after { + margin-left: 0.755em; } + +.social-btn-icon .btn { + min-width: 7.5rem; + margin-bottom: 1.5rem; } + +.social-icon .btn { + padding: .7rem 1.4rem; } + +.btn-circle { + height: 5rem; + width: 5rem; + border-radius: 50% !important; } + .btn-circle-sm { + width: 4.5rem; + height: 4.5rem; + font-size: 1.8rem; } + .btn-circle-md { + width: 6rem; + height: 6rem; + font-size: 2.5rem; } + .btn-circle-md i { + font-size: 2.4rem; } + .btn-circle-lg { + width: 8rem; + height: 8rem; + font-size: 3.2rem; } + .btn-circle-lg i { + font-size: 3.1rem; } + +.btn-page .btn { + min-width: 6.875rem; + margin-right: 0.25rem; + margin-bottom: 0.5rem; } + +.size-1 { + min-width: 10rem !important; + font-size: 1.5rem; + padding: 0.68rem 0.75rem; } + +.size-2 { + font-size: 1.25rem; + min-width: 8.125rem !important; + padding: 0.57rem 0.75rem; } + +.size-3 { + font-size: 0.875rem; + min-width: 6.875rem !important; + padding: 0.536rem 0.75rem; } + +.size-4 { + font-size: 0.875rem; + min-width: 6.25rem !important; } + +.size-5 { + font-size: 0.875rem; + min-width: 5.625rem !important; + padding: .22rem 0.75rem; } + +.size-6 { + font-size: 0.8125rem; + min-width: 5rem !important; + padding: 0.097rem 0.75rem; } + +.size-7 { + font-size: 0.75rem; + min-width: 3.75rem !important; + padding: 0.001rem 0.75rem; } + +.btn-light { + background: #c8c8c8; + border-color: #c8c8c8; + color: #fff; } + .btn-light:active, .btn-light:focus, .btn-light:hover { + background: white; + color: #6e6e6e; + border-color: white; } + +.btn-outline-primary:hover { + color: #fff; } + +.btn-outline-warning:hover { + color: #fff; } + +.btn-outline-light { + color: #6e6e6e; } + [data-theme-version="dark"] .btn-outline-light { + color: #393939; } + +[data-theme-version="dark"] .btn-outline-secondary { + color: #393939; } + +[data-theme-version="dark"] .btn-outline-dark { + color: #393939; } + +.btn-dark { + background: #6e6e6e; + border-color: #6e6e6e; + color: #fff; } + .btn-dark:active, .btn-dark:focus, .btn-dark:hover { + background: #555555; + color: #fff; + border-color: #555555; } + +.btn-group.btn-rounded .btn:first-child { + border-top-left-radius: 1.875rem; + border-bottom-left-radius: 1.875rem; } +.btn-group.btn-rounded .btn:last-child { + border-top-right-radius: 1.875rem; + border-bottom-right-radius: 1.875rem; } + +.btn-facebook { + background: #3b5998; + border-color: #3b5998; + color: #fff; } + .btn-facebook:active, .btn-facebook:focus, .btn-facebook:hover { + background: #2d4373; + color: #fff; + border-color: #2d4373; } + +.btn-twitter { + background: #1da1f2; + border-color: #1da1f2; + color: #fff; } + .btn-twitter:active, .btn-twitter:focus, .btn-twitter:hover { + background: #0c85d0; + color: #fff; + border-color: #0c85d0; } + +.btn-youtube { + background: #FF0000; + border-color: #FF0000; + color: #fff; } + .btn-youtube:active, .btn-youtube:focus, .btn-youtube:hover { + background: #cc0000; + color: #fff; + border-color: #cc0000; } + +.btn-instagram { + background: #c32aa3; + border-color: #c32aa3; + color: #fff; } + .btn-instagram:active, .btn-instagram:focus, .btn-instagram:hover { + background: #992180; + color: #fff; + border-color: #992180; } + +.btn-pinterest { + background: #bd081c; + border-color: #bd081c; + color: #fff; } + .btn-pinterest:active, .btn-pinterest:focus, .btn-pinterest:hover { + background: #8c0615; + color: #fff; + border-color: #8c0615; } + +.btn-linkedin { + background: #007bb6; + border-color: #007bb6; + color: #fff; } + .btn-linkedin:active, .btn-linkedin:focus, .btn-linkedin:hover { + background: #005983; + color: #fff; + border-color: #005983; } + +.btn-google-plus { + background: #db4439; + border-color: #db4439; + color: #fff; } + .btn-google-plus:active, .btn-google-plus:focus, .btn-google-plus:hover { + background: #be2d23; + color: #fff; + border-color: #be2d23; } + +.btn-google { + background: #4285f4; + border-color: #4285f4; + color: #fff; } + .btn-google:active, .btn-google:focus, .btn-google:hover { + background: #1266f1; + color: #fff; + border-color: #1266f1; } + +.btn-snapchat { + background: #fffc00; + border-color: #fffc00; + color: #000; } + .btn-snapchat:active, .btn-snapchat:focus, .btn-snapchat:hover { + background: #ccca00; + color: #000; + border-color: #ccca00; } + +.btn-whatsapp { + background: #25d366; + border-color: #25d366; + color: #fff; } + .btn-whatsapp:active, .btn-whatsapp:focus, .btn-whatsapp:hover { + background: #1da851; + color: #fff; + border-color: #1da851; } + +.btn-tumblr { + background: #35465d; + border-color: #35465d; + color: #fff; } + .btn-tumblr:active, .btn-tumblr:focus, .btn-tumblr:hover { + background: #222e3d; + color: #fff; + border-color: #222e3d; } + +.btn-reddit { + background: #ff4500; + border-color: #ff4500; + color: #fff; } + .btn-reddit:active, .btn-reddit:focus, .btn-reddit:hover { + background: #cc3700; + color: #fff; + border-color: #cc3700; } + +.btn-spotify { + background: #1ed760; + border-color: #1ed760; + color: #fff; } + .btn-spotify:active, .btn-spotify:focus, .btn-spotify:hover { + background: #18aa4c; + color: #fff; + border-color: #18aa4c; } + +.btn-yahoo { + background: #430297; + border-color: #430297; + color: #fff; } + .btn-yahoo:active, .btn-yahoo:focus, .btn-yahoo:hover { + background: #2d0165; + color: #fff; + border-color: #2d0165; } + +.btn-dribbble { + background: #ea4c89; + border-color: #ea4c89; + color: #fff; } + .btn-dribbble:active, .btn-dribbble:focus, .btn-dribbble:hover { + background: #e51e6b; + color: #fff; + border-color: #e51e6b; } + +.btn-skype { + background: #00aff0; + border-color: #00aff0; + color: #fff; } + .btn-skype:active, .btn-skype:focus, .btn-skype:hover { + background: #008abd; + color: #fff; + border-color: #008abd; } + +.btn-quora { + background: #aa2200; + border-color: #aa2200; + color: #fff; } + .btn-quora:active, .btn-quora:focus, .btn-quora:hover { + background: #771800; + color: #fff; + border-color: #771800; } + +.btn-vimeo { + background: #1ab7ea; + border-color: #1ab7ea; + color: #fff; } + .btn-vimeo:active, .btn-vimeo:focus, .btn-vimeo:hover { + background: #1295bf; + color: #fff; + border-color: #1295bf; } + +.btn-check:checked + .btn-outline-primary, +.btn-check:active + .btn-outline-primary, +.btn-outline-primary:active, +.btn-outline-primary.active, +.btn-outline-primary.dropdown-toggle.show { + background-color: var(--primary); + border-color: var(--primary); + color: #fff; } + +.btn-check:checked + .btn-outline-primary:focus, +.btn-check:active + .btn-outline-primary:focus, +.btn-outline-primary:active:focus, +.btn-outline-primary.active:focus, +.btn-outline-primary.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0.25rem var(--rgba-primary-5); } + +.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus { + box-shadow: 0 0 0 0.25rem var(--rgba-primary-5); } + +.btn-close:focus { + box-shadow: 0 0 0 0.25rem var(--rgba-primary-5); } + +.card { + margin-bottom: 1.875rem; + background-color: #fff; + transition: all .5s ease-in-out; + position: relative; + border: 0rem solid transparent; + border-radius: 1.25rem; + box-shadow: 0rem 0.3125rem 0.3125rem 0rem rgba(82, 63, 105, 0.05); + height: calc(100% - 30px); } + @media only screen and (max-width: 35.9375rem) { + .card { + margin-bottom: 0.938rem; + height: calc(100% - 0.938rem); } } + .card-body { + padding: 1.875rem; } + @media only screen and (max-width: 35.9375rem) { + .card-body { + padding: 1rem; } } + .card-title { + font-size: 1.25rem; + font-weight: 500; + color: #000; + text-transform: capitalize; } + .card-title--large { + font-size: 1.5rem; } + .card-title--medium { + font-size: 1rem; } + .card-title--small { + font-size: 0.875rem; } + .card-header { + border-color: #f5f5f5; + position: relative; + background: transparent; + padding: 1.5rem 1.875rem 1.25rem; + display: flex; + justify-content: space-between; + align-items: center; } + @media only screen and (max-width: 35.9375rem) { + .card-header { + padding: 1.25rem 1rem 1.25rem; } } + [data-theme-version="dark"] .card-header { + border-color: #2e2e42; } + .card-header .card-title { + margin-bottom: 0rem; } + .card-header .subtitle { + padding-top: 0.3125rem; + font-size: 0.875rem; + line-height: 1.5; } + .card-footer { + border-color: #f5f5f5; + background: transparent; + padding: 1.25rem 1.875rem 1.25rem; } + [data-theme-version="dark"] .card-footer { + border-color: #2e2e42; } + +.transparent-card.card { + background: transparent; + border: 0.0625rem solid transparent; + box-shadow: none; } + +.card-action > a { + display: inline-block; + width: 1.875rem; + height: 1.875rem; + line-height: 1.875rem; + border-radius: 0.3125rem; + border-color: transparent; + text-align: center; + background: var(--primary-dark); + color: #fff; + margin-right: 0.5rem; } + [data-theme-version="dark"] .card-action > a { + background: #17171E; } + .card-action > a:last-child { + margin-right: 0; } + .card-action > a:hover, .card-action > a:focus { + background: var(--primary-dark); } + [data-theme-version="dark"] .card-action > a:hover, [data-theme-version="dark"] .card-action > a:focus { + background: #17171E; } + .card-action > a i, .card-action > a span { + font-size: 1rem; } +.card-action .dropdown { + width: 1.875rem; + height: 1.875rem; + border-radius: 0.3125rem; + border-color: transparent; + text-align: center; + margin-right: 0.5rem; + top: -0.125rem; + position: relative; + display: inline-block; + background: var(--primary-dark); + color: var(--primary); } + [data-theme-version="dark"] .card-action .dropdown { + background: #17171E; } + .card-action .dropdown:hover, .card-action .dropdown:focus { + background: var(--primary-dark); } + [data-theme-version="dark"] .card-action .dropdown:hover, [data-theme-version="dark"] .card-action .dropdown:focus { + background: #17171E; } + .card-action .dropdown .btn { + padding: 0; + line-height: 1.6875rem; + color: #fff; } + .card-action .dropdown .btn:focus { + box-shadow: none; } + +.card-fullscreen { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 99999999; + overflow: auto; } + +.card-loader { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + background-color: rgba(0, 0, 0, 0.75); + z-index: 999; } + +.card-loader i { + margin: 0 auto; + background: var(--primary-dark); + padding: 0.625rem; + border-radius: 50%; + color: #fff; + font-size: 1rem; } + +.rotate-refresh { + -webkit-animation: mymove 0.8s infinite linear; + animation: mymove 0.8s infinite linear; + display: inline-block; } + +.card-header .date_picker { + display: inline-block; + padding: 0.5rem; + border: 0.0625rem solid #f5f5f5; + cursor: pointer; + border-radius: .375rem; } +.card-header .border-0 { + padding-bottom: 0; } + +@-webkit-keyframes mymove { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } +@keyframes mymove { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } +.carousel-custom-prev, .carousel-custom-next { + width: 2.5rem; + height: 2.5rem; + line-height: 2.5rem; + display: inline-block; + border-radius: 50%; + background: #fff; + text-align: center; } + .carousel-custom-prev i, .carousel-custom-next i { + font-size: 1rem; } + .carousel-custom-prev:hover, .carousel-custom-next:hover { + background: linear-gradient(to right, rgba(245, 60, 121, 0.99) 0%, rgba(246, 104, 47, 0.99) 100%); + color: #fff; } +.carousel-custom-next { + position: absolute; + top: 50%; + right: 30px; + transform: translateY(-50%); } +.carousel-custom-prev { + position: absolute; + top: 50%; + left: 30px; + transform: translateY(-50%); } + +.carousel-caption { + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.78); + z-index: 1; + background: rgba(0, 0, 0, 0.6); } + .carousel-caption h5, .carousel-caption .h5 { + color: #fff; + font-size: 1.8rem; } + .carousel-caption p { + margin-bottom: 0; } + +.carousel-indicators { + z-index: 1; } + +.dropdown-toggle:focus { + box-shadow: none !important; } + +.dropdown-outline { + border: 0.1rem solid var(--primary); } + +.dropdown-menu { + font-size: inherit; + border: 0; + z-index: 2; + overflow: hidden; + border-radius: 1.25rem; + box-shadow: 0 0 3.125rem 0 rgba(82, 63, 105, 0.15); + margin-top: 0; } + .dropdown-menu .dropdown-item { + font-size: 1rem; + color: #393939; + padding: 0.5rem 1.75rem; } + @media only screen and (max-width: 87.5rem) { + .dropdown-menu .dropdown-item { + padding: 0.375rem 1rem; + font-size: 0.875rem; } } + .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item.active { + color: #514e5f; } + .dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active { + color: var(--primary); + background: var(--rgba-primary-1); } + [direction="rtl"] .dropdown-menu { + right: auto !important; } + .dropdown-menu.show { + right: 0; } + +.dropdown-toggle-split { + padding: 0 0.625rem; + opacity: 0.85; } + .dropdown-toggle-split:after { + margin-left: 0 !important; } + .dropdown-toggle-split:active, .dropdown-toggle-split:focus, .dropdown-toggle-split:hover { + opacity: 1; } + +/* .dropleft .dropdown-toggle:before, +.dropright .dropdown-toggle:before, +.dropup .dropdown-toggle:after, +.dropdown-toggle:after { + content:"\f107"; + font-family:FontAwesome; + border: 0; + vertical-align: middle; + margin-left: 0.25em; + line-height: 1; +} */ +/* .dropup .dropdown-toggle:after{ + content:"\f106"; +} */ +/* .dropleft .dropdown-toggle::before { + content:"\f104"; +} +.dropright .dropdown-toggle::before { + content:"\f105"; +} */ +.dropright .dropdown-toggle::after { + content: none; } + +.custom-dropdown { + display: inline-block; + margin-bottom: 1rem; } + .custom-dropdown .dropdown-menu { + border: 0rem; + min-width: 10rem; } + +.card-action .custom-dropdown { + margin: 0rem; + background: var(--rgba-primary-1); } + .card-action .custom-dropdown.show, .card-action .custom-dropdown:focus, .card-action .custom-dropdown:hover { + background: var(--primary); + color: #fff; } + .card-action .custom-dropdown i { + display: inline-block; + padding-top: 0.5625rem; } + +.dropdown .dropdown-dots { + position: relative; + height: 0.3125rem; + width: 0.3125rem; + background: rgba(110, 110, 110, 0.4); + border-radius: 0.3125rem; + display: block; } + .dropdown .dropdown-dots:after, .dropdown .dropdown-dots:before { + content: ""; + height: 0.3125rem; + width: 0.3125rem; + background: rgba(110, 110, 110, 0.4); + position: absolute; + border-radius: 0.3125rem; } + .dropdown .dropdown-dots:after { + right: -0.5rem; } + .dropdown .dropdown-dots:before { + left: -0.5rem; } + .dropdown .dropdown-dots.text-white { + background: rgba(255, 255, 255, 0.7); } + .dropdown .dropdown-dots.text-white:after, .dropdown .dropdown-dots.text-white:before { + background: rgba(255, 255, 255, 0.7); } + +.grid-col { + padding: 0.5rem !important; + background: #f2f4fa; } + +.row.grid { + margin-bottom: 1.5rem; + text-align: center; } + +.row.grid .grid-col:first-child { + text-align: left; } + +.label { + display: inline-block; + text-align: center; + font-size: 0.75rem; + padding: .2rem .8rem; } + .label-fixed { + width: 7.5rem; + padding: .6rem 0; } + .label-fixed-lg { + width: 9.5rem; + padding: .6rem 0; } + .label-big { + width: 16.8rem; + font-size: 1.4rem; + padding: 1.1rem 0; } + .label-xl { + width: 10.5rem; + padding: 1.1rem 0; + font-size: 1.5rem; } + .label-lg { + width: 9.5rem; + padding: 1.1rem 0; } + .label-md { + width: 8.5rem; + padding: 1.1rem 0; } + .label-sm { + width: 7.5rem; + padding: 1.1rem 0; } + +.label-default { + background: #ADB6C7; } + +.label-primary { + background: var(--primary); + color: #fff; } + +.label-secondary { + background: #145650; + color: #fff; } + +.label-info { + background: #D653C1; + color: #fff; } + +.label-success { + background: #68e365; + color: #fff; } + +.label-warning { + background: #ffa755; + color: #fff; } + +.label-danger { + background: #f72b50; + color: #fff; } + +.label-light { + background: #c8c8c8; + color: #000; } + +.label-dark { + background: #6e6e6e; + color: #fff; } + +code { + word-break: break-word; + padding: 0.125rem 0.3125rem; + border-radius: 0.1875rem; + background: #fdcdd6; + color: #f72b50; } + [data-theme-version="dark"] code { + background: rgba(247, 43, 80, 0.1); } + +.heading-labels { + color: #333333; } + .heading-labels > * { + margin-bottom: .8rem; } + .heading-labels h1 .label, .heading-labels .h1 .label { + font-size: 1.125rem; + font-weight: normal; + padding: .4rem .9rem; } + .heading-labels h2 .label, .heading-labels .h2 .label { + font-size: 1rem; + font-weight: normal; + padding: 0.3rem .9rem; } + .heading-labels h3 .label, .heading-labels .h3 .label { + font-size: 0.875rem; + font-weight: normal; } + .heading-labels h4 .label, .heading-labels .h4 .label { + font-size: 0.75rem; + font-weight: normal; } + .heading-labels h5 .label, .heading-labels .h5 .label { + font-size: 0.75rem; + font-weight: normal; } + .heading-labels h6 .label, .heading-labels .h6 .label { + font-size: 0.75rem; + font-weight: normal; } + +.list-group-item { + background-color: rgba(255, 255, 255, 0); + border: 1px solid #f5f5f5; + padding: 1rem 1.5rem; } + .list-group-item.active { + background-color: var(--primary); + border-color: var(--primary); } + [data-theme-version="dark"] .list-group-item { + border-color: #2e2e42; } + +.list-group-item.disabled, .list-group-item:disabled { + color: #fff; + background-color: #145650; + border-color: #145650; } + +[class*="bg-"] .list-group-item { + border-color: rgba(255, 255, 255, 0.05); } + +.bg-warning .list-group-item { + border-color: rgba(0, 0, 0, 0.05); } + +.media img { + border-radius: 0.1875rem; } + +.vertical-card__menu:hover { + box-shadow: none; } +.vertical-card__menu--image { + text-align: center; } + .vertical-card__menu--image img { + width: 100%; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } +.vertical-card__menu--status.closed { + background: #f72b50; } + .vertical-card__menu--status.closed:after { + border-top: 0.625rem solid #f72b50; } + .vertical-card__menu--status.closed .ribbon-curve { + border-top: 0.6875rem solid #f72b50; + border-bottom: 0.625rem solid #f72b50; } +.vertical-card__menu--desc p { + margin-bottom: 0.625rem; } +.vertical-card__menu--price { + font-size: 1.25rem; + margin: 0; + font-weight: 700; } +.vertical-card__menu--rating { + font-size: 0.75rem; } +.vertical-card__menu--title { + font-weight: 700; } +.vertical-card__menu--button button { + font-size: 0.75rem; } +.vertical-card__menu .card-footer { + padding: 0.9375rem 1.25rem; + background-color: #f5f5f5; + border-top: none; } + @media only screen and (min-width: 75rem) and (max-width: 90rem) { + .vertical-card__menu .card-footer { + padding: 0.9375rem; } } + .vertical-card__menu .card-footer span { + color: #6e6e6e; + margin-right: 0.3125rem; } + +.horizontal-card__menu { + box-shadow: 0 0 0.4375rem rgba(173, 173, 173, 0.32); + display: flex; + flex-direction: row; } + @media (max-width: 575.98px) { + .horizontal-card__menu { + display: block; } } + .horizontal-card__menu .card-body { + padding: 0; + padding: 1.25rem 1.875rem; } + .horizontal-card__menu--image { + flex-basis: 30%; + max-width: 30%; } + .horizontal-card__menu--image img { + height: 100%; + width: 100%; } + @media (max-width: 575.98px) { + .horizontal-card__menu--image { + max-width: unset; + flex-basis: 100%; } } + .horizontal-card__menu--title { + font-size: 1rem; + font-weight: 700; + margin-bottom: 0.3125rem; } + .horizontal-card__menu--fav { + margin-right: 0.5rem; } + .horizontal-card__menu--price { + margin: 0; + font-size: 1rem; + font-weight: 700; } + .horizontal-card__menu--rating { + font-size: 0.625rem; } + .horizontal-card__menu--footer { + margin-top: 0.625rem; } + +.prev_price { + text-decoration: line-through; + font-size: 80%; + opacity: 0.5; } + +.modal-header { + padding: 1rem 1.875rem; } + .modal-header .close { + padding: 0.875rem 1.815rem; + margin: 0; + position: absolute; + right: 0; + float: none; + top: 0; + font-size: 1.875rem; + font-weight: 100; } + +.modal-body { + padding: 1.875rem; } + +.modal-footer { + padding: 1rem 1.875rem; } + +.modal-content { + border-radius: 1.25rem; } + +.modal-backdrop { + z-index: 10 !important; } + +.pagination .page-item .page-link:hover { + background: var(--primary); + border-color: var(--primary); + color: #fff; } +.pagination .page-item.active .page-link { + background: var(--primary); + border-color: var(--primary); + color: #fff; } + +.pagination { + margin-bottom: 1.25rem; } + .pagination .page-item.page-indicator .page-link { + padding: .65rem .8rem; + font-size: 0.875rem; } + .pagination .page-item.page-indicator:hover .page-link { + color: #6e6e6e; } + .pagination .page-item .page-link { + text-align: center; + z-index: 1; + padding: 0.55rem 1rem; + font-size: 1rem; + background: rgba(255, 255, 255, 0.15); + color: #6e6e6e; + border: 0.0625rem solid #f5f5f5; } + [data-theme-version="dark"] .pagination .page-item .page-link { + border-color: #2e2e42; + color: #828690; + background: rgba(255, 255, 255, 0); } + .pagination .page-item .page-link:hover i, .pagination .page-item .page-link span { + color: #fff; } + .pagination .page-item .page-link:focus { + outline: 0; + box-shadow: none; } + .pagination .page-item .page-link:hover { + background: var(--primary); + color: #fff; + border-color: var(--primary); } + .pagination .page-item.active .page-link { + background-color: var(--primary); + border-color: var(--primary); + color: #fff; + box-shadow: 0 0.625rem 1.25rem 0rem var(--rgba-primary-2); } + [data-theme-version="dark"] .pagination .page-item.active .page-link { + color: #fff; } + .pagination .page-item .page-link { + color: #6e6e6e; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } + .pagination .page-item:last-child .page-link { + margin-right: 0; } + [direction="rtl"] .pagination .page-item:first-child .page-link { + margin-right: 0; } + .pagination.no-bg li:not(.page-indicator):not(.active) .page-link { + background: transparent; + border-color: transparent; } + .pagination.no-bg.pagination-primary li:not(.page-indicator):not(.active):hover .page-link { + background: var(--primary); + border-color: var(--primary); } + [data-theme-version="dark"] .pagination.no-bg.pagination-primary li:not(.page-indicator):not(.active):hover .page-link { + background: var(--primary); + border-color: var(--primary); } + .pagination.no-bg.pagination-danger li:not(.page-indicator):not(.active):hover .page-link { + background: #f72b50; + border-color: #f72b50; } + [data-theme-version="dark"] .pagination.no-bg.pagination-danger li:not(.page-indicator):not(.active):hover .page-link { + background: #f72b50; + border-color: #f72b50; } + .pagination.no-bg.pagination-info li:not(.page-indicator):not(.active):hover .page-link { + background: #D653C1; + border-color: #D653C1; } + [data-theme-version="dark"] .pagination.no-bg.pagination-info li:not(.page-indicator):not(.active):hover .page-link { + background: #D653C1; + border-color: #D653C1; } + .pagination.no-bg.pagination-warning li:not(.page-indicator):not(.active):hover .page-link { + background: #ffa755; + border-color: #ffa755; } + [data-theme-version="dark"] .pagination.no-bg.pagination-warning li:not(.page-indicator):not(.active):hover .page-link { + background: #ffa755; + border-color: #ffa755; } + .pagination-primary .page-item .page-link { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + color: var(--primary); } + [data-theme-version="dark"] .pagination-primary .page-item .page-link { + background: var(--rgba-primary-1); + border-color: transparent; + color: var(--primary); } + .pagination-primary .page-item:hover .page-link, .pagination-primary .page-item.active .page-link { + background: var(--primary); + border-color: var(--primary); + box-shadow: 0 0.625rem 1.25rem 0rem var(--rgba-primary-2); } + [data-theme-version="dark"] .pagination-primary .page-item:hover .page-link, [data-theme-version="dark"] .pagination-primary .page-item.active .page-link { + color: #fff; } + .pagination-danger .page-item .page-link { + background: #fee6ea; + border-color: #fee6ea; + color: #f72b50; } + [data-theme-version="dark"] .pagination-danger .page-item .page-link { + background: rgba(247, 43, 80, 0.15); + border-color: transparent; + color: #f72b50; } + .pagination-danger .page-item:hover .page-link, .pagination-danger .page-item.active .page-link { + background: #f72b50; + border-color: #f72b50; + box-shadow: 0 0.625rem 1.25rem 0rem rgba(247, 43, 80, 0.2); } + [data-theme-version="dark"] .pagination-danger .page-item:hover .page-link, [data-theme-version="dark"] .pagination-danger .page-item.active .page-link { + color: #fff; } + .pagination-info .page-item .page-link { + background: #efbae6; + border-color: #efbae6; + color: #D653C1; } + [data-theme-version="dark"] .pagination-info .page-item .page-link { + background: rgba(214, 83, 193, 0.1); + border-color: transparent; + color: #D653C1; } + .pagination-info .page-item:hover .page-link, .pagination-info .page-item.active .page-link { + background: #D653C1; + border-color: #D653C1; + box-shadow: 0 0.625rem 1.25rem 0rem rgba(214, 83, 193, 0.2); } + .pagination-warning .page-item .page-link { + background: #ffe9d5; + border-color: #ffe9d5; + color: #ffa755; } + [data-theme-version="dark"] .pagination-warning .page-item .page-link { + background: rgba(255, 167, 85, 0.1); + border-color: transparent; + color: #ffa755; } + .pagination-warning .page-item:hover .page-link, .pagination-warning .page-item.active .page-link { + background: #ffa755; + border-color: #ffa755; + box-shadow: 0 0.625rem 1.25rem 0rem rgba(255, 167, 85, 0.2); } + .pagination-gutter .page-item { + margin-right: 0.4375rem; } + .pagination-gutter .page-item .page-link { + border-radius: 1.25rem !important; } + .pagination-circle .page-item { + margin-right: 0.4375rem; } + .pagination-circle .page-item .page-link, .pagination-circle .page-item .page-link { + width: 2.5rem; + height: 2.5rem; + padding: 0; + line-height: 2.5rem; + border-radius: 50% !important; + padding: 0; } + .pagination-circle .page-item.page-indicator .page-link { + width: 5rem; + border: 1px solid var(--primary); + border-radius: 22px !important; + line-height: 1.3rem; + height: 2.5rem; + background: var(--rgba-primary-1); + color: var(--primary); } + .pagination-circle .page-item.page-indicator .page-link:hover { + color: #fff; + background: var(--primary); } + .pagination.pagination-md .page-item .page-link { + width: 1.875rem; + height: 1.875rem; + line-height: 1.875rem; + font-size: 0.875rem; } + .pagination.pagination-sm .page-item.page-indicator .page-link { + font-size: 0.75rem; } + .pagination.pagination-sm .page-item .page-link { + padding: 0; + width: 1.875rem; + height: 1.875rem; + line-height: 1.875rem; + font-size: 0.875rem; } + .pagination.pagination-xs .page-item.page-indicator .page-link { + font-size: 0.625rem; } + .pagination.pagination-xs .page-item .page-link { + padding: 0; + width: 1.5625rem; + height: 1.5625rem; + line-height: 1.5625rem; + font-size: 0.75rem; } + +.popover { + border: 0.125rem solid #145650; + min-width: 13.125rem; + box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.1); } + [data-theme-version="dark"] .popover { + background-color: #17171E; } + .popover-header { + background: #145650; + color: #fff; + font-weight: 300; } + .popover-header::before { + border-bottom: 0 !important; } + .popover-body { + font-size: 0.75rem; } + [data-theme-version="dark"] .popover .popover-header { + border-color: #212130; } + @media only screen and (max-width: 47.9375rem) { + .popover { + z-index: 1; } } + +.bootstrap-popover-wrapper .bootstrap-popover:not(:last-child) { + margin-right: 0.5rem; } +.bootstrap-popover-wrapper .bootstrap-popover { + margin-bottom: .5rem; } + .bootstrap-popover-wrapper .bootstrap-popover button:hover, .bootstrap-popover-wrapper .bootstrap-popover button:focus { + background: var(--primary); + color: #fff; + box-shadow: none; } + +.bs-popover-top .arrow::after, .bs-popover-auto[data-popper-placement^="top"] .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + bottom: 0rem; + border-top-color: #145650; } + +.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + right: 0rem; + border-left-color: #145650; } + +.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + left: 0rem; + border-right-color: #145650; } + +.bs-popover-bottom .arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + top: 0rem; + border-bottom-color: #145650; } + +.note-popover { + display: none; } + +.progress-bar { + background-color: var(--primary); } + +.progress-bar-primary { + background-color: var(--primary); } + +.progress-bar-success { + background-color: #68e365; } + +.progress-bar-info { + background-color: #D653C1; } + +.progress-bar-danger { + background-color: #f72b50; } + +.progress-bar-warning { + background-color: #ffa755; } + +.progress-bar-pink { + background-color: #e83e8c; } + +.progress { + height: 6px; + background-color: #f6f6f6; + overflow: hidden; } + [data-theme-version="dark"] .progress { + background-color: #17171E; } + .progress-bar { + border-radius: 1.25rem; } + +.progress-vertical { + display: inline-block; + margin-bottom: 0; + margin-right: 2rem; + min-height: 17rem; + position: relative; } + @media (max-width: 991.98px) { + .progress-vertical { + margin-right: 1rem; } } + +.progress-vertical-bottom { + display: inline-block; + margin-bottom: 0; + margin-right: 2rem; + min-height: 17rem; + position: relative; + transform: rotate(180deg); } + @media (max-width: 991.98px) { + .progress-vertical-bottom { + margin-right: 1rem; } } + +.progress-animated { + animation-duration: 5s; + animation-name: myanimation; + transition: all 5s ease 0s; } + +@keyframes myanimation { + 0% { + width: 0; } } +@keyframes myanimation { + 0% { + width: 0; } } +.ribbon { + position: absolute; + z-index: 1; + text-transform: uppercase; } + .ribbon__one { + top: 0.9375rem; + left: -0.6875rem; + min-height: 1.25rem; + min-width: 3.25rem; + text-align: center; + padding: 0.1875rem 0.625rem; + background: #3AB54B; + color: #fff; + font-size: 0.625rem; } + .ribbon__one::after { + position: absolute; + width: 0; + height: 0; + border-top: 0.625rem solid #239132; + border-left: 0.6875rem solid transparent; + left: 0; + content: ""; + bottom: -0.625rem; } + .ribbon__two { + width: 3.125rem; + height: 3.125rem; + display: inline-block; + background: #ffa755; + line-height: 3.125rem; + text-align: center; + font-size: 1rem; + color: #fff; + right: 0.9375rem; + top: 0.9375rem; + border-radius: 0.1875rem; } + .ribbon__three { + left: -1.875rem; + top: 0.875rem; + width: 6.875rem; + height: 1.5625rem; + background-color: #f72b50; + clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%); + transform: rotate(-45deg); + color: #fff; + display: flex; + align-items: center; + justify-content: center; + font-size: 0.875rem; } + .ribbon__four { + left: 0.5rem; + top: -0.5rem; + width: 6.875rem; + height: 3.125rem; + background-color: var(--primary); + z-index: auto; + color: #fff; + font-size: 1rem; + display: flex; + align-items: center; + justify-content: center; } + .ribbon__four:after { + right: -0.3125rem; } + .ribbon__four:before { + left: -0.3125rem; } + .ribbon__four:after, .ribbon__four:before { + z-index: -1; + background-color: var(--rgba-primary-1); + top: 0.1875rem; + transform: rotate(45deg); + content: ""; + height: 0.625rem; + width: 0.625rem; + position: absolute; } + .ribbon__five { + left: -1.875rem; + top: 0.625rem; + width: 6.875rem; + height: 1.875rem; + background-color: var(--primary); + transform: rotate(-45deg); + font-size: 0.75rem; + color: #fff; + padding-bottom: 0.3125rem; + display: flex; + align-items: center; + justify-content: center; + font-size: 1rem; } + .ribbon__five::before { + position: absolute; + content: ""; + width: 0; + height: 0; + border-style: solid; + border-width: 0 3.125rem 3.125rem 3.125rem; + border-color: transparent transparent var(--primary) transparent; + left: 0.25rem; + top: -2.8125rem; } + .ribbon__six { + left: 0; + top: 1.125rem; + width: 6.875rem; + height: 2.375rem; + background-color: var(--primary); + -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0, 85% 50%, 100% 100%, 100% 100%, 0 100%); + clip-path: polygon(0 0, 100% 0%, 100% 0, 85% 50%, 100% 100%, 100% 100%, 0 100%); + display: flex; + font-size: 1.25rem; + align-items: center; + justify-content: center; + color: #fff; } + .ribbon-curve { + position: absolute; + top: 0; + right: -0.375rem; + width: 0.625rem; + height: 0.6875rem; + border-top: 0.6875rem solid #3AB54B; + border-bottom: 0.625rem solid #3AB54B; + border-right: 0.3125rem solid transparent; } + +.jsgrid-grid-body::-webkit-scrollbar, +.dataTables_scrollBody::-webkit-scrollbar, +.table-responsive::-webkit-scrollbar { + background-color: #f5f5f5; + width: 0.5rem; + height: 0.5rem; } +.jsgrid-grid-body::-webkit-scrollbar-track, +.dataTables_scrollBody::-webkit-scrollbar-track, +.table-responsive::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3); + border-radius: 0.625rem; + background-color: #f5f5f5; } +.jsgrid-grid-body::-webkit-scrollbar-thumb, +.dataTables_scrollBody::-webkit-scrollbar-thumb, +.table-responsive::-webkit-scrollbar-thumb { + border-radius: 0.625rem; + -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3); + background-color: var(--primary); } + +.multi-steps > li.is-active:before, .multi-steps > li.is-active ~ li:before { + content: counter(stepNum); + font-family: inherit; + font-weight: 400; } +.multi-steps > li.is-active:after, .multi-steps > li.is-active ~ li:after { + background-color: #f5f5f5; } + +.multi-steps { + display: table; + table-layout: fixed; + width: 100%; } + .multi-steps > li { + counter-increment: stepNum; + text-align: center; + display: table-cell; + position: relative; + color: var(--primary); } + @media (max-width: 575.98px) { + .multi-steps > li { + font-size: 0.75rem; } } + .multi-steps > li:before { + content: '\2713'; + display: block; + margin: 0 auto 0.25rem; + background-color: #fff; + width: 1.5625rem; + height: 1.5625rem; + line-height: 1.375rem; + text-align: center; + font-weight: bold; + position: relative; + z-index: 1; + border-width: 0.125rem; + border-style: solid; + border-color: var(--primary); + border-radius: 0.3125rem; } + @media (max-width: 575.98px) { + .multi-steps > li:before { + width: 1.5625rem; + height: 1.5625rem; + line-height: 1.3125rem; } } + .multi-steps > li:after { + content: ''; + height: 0.125rem; + width: 100%; + background-color: var(--primary); + position: absolute; + top: 0.75rem; + left: 50%; } + [direction="rtl"] .multi-steps > li:after { + left: auto; + right: 50%; } + @media (max-width: 575.98px) { + .multi-steps > li:after { + top: 0.75rem; } } + .multi-steps > li:last-child:after { + display: none; } + .multi-steps > li.is-active:before { + background-color: #fff; + border-color: var(--primary); } + .multi-steps > li.is-active ~ li { + color: #393939; } + .multi-steps > li.is-active ~ li:before { + background-color: #f5f5f5; + border-color: #f5f5f5; } + +.nav-pills .nav-link { + border-radius: 1.25rem; + padding: 0.75rem 1.25rem; } + +.default-tab .nav-link { + background: transparent; + border-radius: 0rem; + font-weight: 500; } + .default-tab .nav-link i { + display: inline-block; + transform: scale(1.5); + color: var(--primary); } + .default-tab .nav-link:focus, .default-tab .nav-link:hover, .default-tab .nav-link.active { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff #ebeef6; + border-radius: 1.25rem 1.25rem 0 0; + color: var(--primary); } + [data-theme-version="dark"] .default-tab .nav-link:focus, [data-theme-version="dark"] .default-tab .nav-link:hover, [data-theme-version="dark"] .default-tab .nav-link.active { + background-color: var(--rgba-primary-1); + border-color: transparent transparent #2e2e42 transparent; } + +.custom-tab-1 .nav-link { + background: transparent; + border-radius: 0rem; + font-weight: 500; + border-bottom: 0.1875rem solid transparent; + border-width: 0 0rem 0.1875rem 0; } + .custom-tab-1 .nav-link i { + display: inline-block; + transform: scale(1.5); + color: var(--primary); } + .custom-tab-1 .nav-link:focus, .custom-tab-1 .nav-link:hover, .custom-tab-1 .nav-link.active { + color: #495057; + background-color: #fff; + border-color: var(--primary); + border-radius: 0; + color: var(--primary); + border-width: 0 0rem 0.1875rem 0; } + [data-theme-version="dark"] .custom-tab-1 .nav-link:focus, [data-theme-version="dark"] .custom-tab-1 .nav-link:hover, [data-theme-version="dark"] .custom-tab-1 .nav-link.active { + background-color: var(--rgba-primary-1); } + +.nav-pills.light .nav-link.active, .nav-pills.light .show > .nav-link { + background: var(--rgba-primary-1); + color: var(--primary); + box-shadow: none; } + [data-theme-version="dark"] .nav-pills.light .nav-link.active, + [data-theme-version="dark"] .nav-pills.light .show > .nav-link { + background: var(--rgba-primary-1); } +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + background-color: var(--primary); + box-shadow: 0 0 1.25rem 0 var(--rgba-primary-2); } + +.tooltip-wrapper button:not(:last-child) { + margin-right: 0.5rem; } +.tooltip-wrapper button:hover { + background: var(--primary); + color: #fff; } +.tooltip-wrapper button { + margin-bottom: .5rem; } + .tooltip-wrapper button:focus { + box-shadow: none; } +.tooltip-inner { + border-radius: 0; + background: #333333; + font-size: 0.75rem; + font-weight: 300; + padding: 0.35rem 0.7rem; } + +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + border-bottom-color: #333333; } + +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + border-right-color: #333333; } + +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + border-left-color: #333333; } + +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + border-top-color: #333333; } + +.widget-timeline .timeline { + list-style: none; + position: relative; } + .widget-timeline .timeline:before { + top: 1.25rem; + bottom: 0; + position: absolute; + content: " "; + width: 0.1875rem; + left: 0.5625rem; + margin-right: -0.0938rem; + background: #c8c8c8; } + [data-theme-version="dark"] .widget-timeline .timeline:before { + background: #2e2e42; } + [direction="rtl"] .widget-timeline .timeline:before { + left: auto; + right: 0.5625rem; + margin-right: auto; + margin-left: -0.0938rem; } + .widget-timeline .timeline > li { + margin-bottom: 0.9375rem; + position: relative; } + .widget-timeline .timeline > li:before { + content: " "; + display: table; } + .widget-timeline .timeline > li:after { + content: " "; + display: table; + clear: both; } + .widget-timeline .timeline > li > .timeline-panel { + border-radius: 1.25rem; + padding: 0.9375rem 1.25rem; + position: relative; + display: block; + margin-left: 2.5rem; + border-width: 0.0625rem; + border-style: solid; } + .widget-timeline .timeline > li > .timeline-panel span { + font-size: 0.75rem; + display: block; + margin-bottom: 0.3125rem; + opacity: 0.8; + letter-spacing: 0.0625rem; } + .widget-timeline .timeline > li > .timeline-panel p { + font-size: 0.875rem; } + .widget-timeline .timeline > li > .timeline-panel:after { + content: ""; + width: 0.625rem; + height: 0.625rem; + background: inherit; + border-color: inherit; + border-style: solid; + border-width: 0rem 0rem 0.0625rem 0.0625rem; + display: block; + position: absolute; + left: -0.3125rem; + transform: rotate(45deg); + top: 0.9375rem; } + .widget-timeline .timeline > li > .timeline-badge { + border-radius: 50%; + height: 1.375rem; + left: 0; + position: absolute; + top: 0.625rem; + width: 1.375rem; + border-width: 0.125rem; + border-style: solid; + background: #fff; + padding: 0.25rem; } + [data-theme-version="dark"] .widget-timeline .timeline > li > .timeline-badge { + background-color: #212130; } + .widget-timeline .timeline > li > .timeline-badge:after { + content: ""; + width: 0.625rem; + height: 0.625rem; + border-radius: 100%; + display: block; } + [direction="rtl"] .widget-timeline .timeline > li > .timeline-badge { + left: auto; + right: 1.1875rem; } +.widget-timeline .timeline-body > p { + font-size: 0.75rem; } +.widget-timeline .timeline-badge.primary { + border-color: var(--rgba-primary-1); } + [data-theme-version="dark"] .widget-timeline .timeline-badge.primary { + border-color: var(--rgba-primary-1); } + .widget-timeline .timeline-badge.primary:after { + background-color: var(--primary); + box-shadow: 0 0.3125rem 0.625rem 0 var(--rgba-primary-2); } + .widget-timeline .timeline-badge.primary + .timeline-panel { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); } + [data-theme-version="dark"] .widget-timeline .timeline-badge.primary + .timeline-panel { + border-color: transparent; + background-color: var(--rgba-primary-1); } +.widget-timeline .timeline-badge.success { + border-color: #e7fbe6; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.success { + border-color: rgba(104, 227, 101, 0.1); } + .widget-timeline .timeline-badge.success:after { + background-color: #68e365 !important; + box-shadow: 0 0.3125rem 0.625rem 0 rgba(104, 227, 101, 0.2); } + .widget-timeline .timeline-badge.success + .timeline-panel { + background: #e7fbe6; + border-color: #e7fbe6; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.success + .timeline-panel { + background-color: rgba(104, 227, 101, 0.1); + border-color: transparent; } +.widget-timeline .timeline-badge.warning { + border-color: #ffe9d5; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.warning { + border-color: rgba(255, 167, 85, 0.1); } + .widget-timeline .timeline-badge.warning:after { + background-color: #ffa755 !important; + box-shadow: 0 0.3125rem 0.625rem 0 rgba(255, 167, 85, 0.2); } + .widget-timeline .timeline-badge.warning + .timeline-panel { + background: #ffe9d5; + border-color: #ffe9d5; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.warning + .timeline-panel { + background-color: rgba(255, 167, 85, 0.1); + border-color: transparent; } +.widget-timeline .timeline-badge.danger { + border-color: #fee6ea; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.danger { + border-color: rgba(247, 43, 80, 0.15); } + .widget-timeline .timeline-badge.danger:after { + background-color: #f72b50 !important; + box-shadow: 0 0.3125rem 0.625rem 0 rgba(247, 43, 80, 0.2); } + .widget-timeline .timeline-badge.danger + .timeline-panel { + background: #fee6ea; + border-color: #fee6ea; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.danger + .timeline-panel { + background-color: rgba(247, 43, 80, 0.15); + border-color: transparent; } +.widget-timeline .timeline-badge.info { + border-color: #efbae6; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.info { + border-color: rgba(214, 83, 193, 0.1); } + .widget-timeline .timeline-badge.info:after { + background-color: #D653C1 !important; + box-shadow: 0 0.3125rem 0.625rem 0 rgba(214, 83, 193, 0.2); } + .widget-timeline .timeline-badge.info + .timeline-panel { + background: #efbae6; + border-color: #efbae6; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.info + .timeline-panel { + background-color: rgba(214, 83, 193, 0.1); + border-color: transparent; } +.widget-timeline .timeline-badge.dark { + border-color: #eeeeee; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.dark { + border-color: rgba(110, 110, 110, 0.35); } + .widget-timeline .timeline-badge.dark:after { + background-color: #6e6e6e !important; + box-shadow: 0 0.3125rem 0.625rem 0 rgba(110, 110, 110, 0.2); } + .widget-timeline .timeline-badge.dark + .timeline-panel { + background: #eeeeee; + border-color: #eeeeee; } + [data-theme-version="dark"] .widget-timeline .timeline-badge.dark + .timeline-panel { + background-color: rgba(110, 110, 110, 0.35); + border-color: transparent; } +.widget-timeline.style-1 .timeline-panel { + background: transparent; } +.widget-timeline.style-1 .timeline .timeline-badge.timeline-badge + .timeline-panel { + background: transparent !important; + border-style: solid; + border-width: 0 0 0 0.3125rem; + border-radius: 0; + padding: 0.3125rem 0.625rem 0.3125rem 0.9375rem; } + .widget-timeline.style-1 .timeline .timeline-badge.timeline-badge + .timeline-panel:after { + border: 0; + left: -0.5625rem; + width: 0.4375rem; + height: 0.4375rem; } +.widget-timeline.style-1 .timeline .timeline-badge.primary + .timeline-panel { + border-color: var(--primary); } + .widget-timeline.style-1 .timeline .timeline-badge.primary + .timeline-panel:after { + background: var(--primary); } +.widget-timeline.style-1 .timeline .timeline-badge.success + .timeline-panel { + border-color: #68e365; } + .widget-timeline.style-1 .timeline .timeline-badge.success + .timeline-panel:after { + background: #68e365; } +.widget-timeline.style-1 .timeline .timeline-badge.warning + .timeline-panel { + border-color: #ffa755; } + .widget-timeline.style-1 .timeline .timeline-badge.warning + .timeline-panel:after { + background: #ffa755; } +.widget-timeline.style-1 .timeline .timeline-badge.danger + .timeline-panel { + border-color: #f72b50; } + .widget-timeline.style-1 .timeline .timeline-badge.danger + .timeline-panel:after { + background: #f72b50; } +.widget-timeline.style-1 .timeline .timeline-badge.info + .timeline-panel { + border-color: #D653C1; } + .widget-timeline.style-1 .timeline .timeline-badge.info + .timeline-panel:after { + background: #D653C1; } +.widget-timeline.style-1 .timeline .timeline-badge.dark + .timeline-panel { + border-color: #6e6e6e; } + .widget-timeline.style-1 .timeline .timeline-badge.dark + .timeline-panel:after { + background: #6e6e6e; } + +#chart_widget_4 { + height: 15.9375rem !important; } + +#chart_widget_5 .ct-series-a .ct-line, +#chart_widget_5 .ct-series-a .ct-point { + stroke: #46ffc8; } +#chart_widget_5 .ct-line { + stroke-width: 0.0625rem; } +#chart_widget_5 .ct-point { + stroke-width: 0.125rem; } +#chart_widget_5 .ct-series-a .ct-area { + fill: #20dea6; } +#chart_widget_5 .ct-area { + fill-opacity: 1; } + +#chart_widget_6 .ct-series-a .ct-line, +#chart_widget_6 .ct-series-a .ct-point { + stroke: #D653C1; } +#chart_widget_6 .ct-line { + stroke-width: 0.125rem; } +#chart_widget_6 .ct-point { + stroke-width: 0.3125rem; } +#chart_widget_6 .ct-series-a .ct-area { + fill: #D653C1; } +#chart_widget_6 .ct-area { + fill-opacity: .5; } + +#chart_widget_8 { + height: 15.9375rem; } + #chart_widget_8 .ct-series-a .ct-line, + #chart_widget_8 .ct-series-a .ct-point { + stroke: #D653C1; } + #chart_widget_8 .ct-line { + stroke-width: 0.125rem; } + #chart_widget_8 .ct-point { + stroke-width: 0.3125rem; } + #chart_widget_8 .ct-series-a .ct-area { + fill: #D653C1; } + #chart_widget_8 .ct-area { + fill-opacity: .5; } + +#chart_widget_9, #chart_widget_10 { + height: 15.625rem !important; } + +#chart_widget_11 .ct-slice-donut, #chart_widget_12 .ct-slice-donut, #chart_widget_13 .ct-slice-donut { + stroke-width: 1.5625rem !important; } + +#chart_widget_11 { + height: 16.875rem !important; } + +#chart_widget_17 { + height: 9.375rem !important; } + +.chart_widget_tab_one .nav-link { + border: 0.0625rem solid #ddd; } + .chart_widget_tab_one .nav-link.active { + background-color: var(--primary); + border: 0.0625rem solid var(--primary); + color: #fff; } + .chart_widget_tab_one .nav-link.active:hover { + border: 0.0625rem solid var(--primary); } + .chart_widget_tab_one .nav-link:hover { + border: 0.0625rem solid #ddd; } + +[data-theme-version="dark"] .ccc-widget > div { + background: #212130 !important; + border-color: #2e2e42 !important; } + +.social-icon { + display: inline-block; + width: 2.5rem; + height: 2.5rem; + line-height: 2.5rem; + border-radius: 0.25rem; + text-align: center; + background: #F8F8F8; + margin-bottom: 0.5rem; + font-size: 1.25rem; } + .social-icon i { + color: #fff; } + .social-icon.youtube { + background: #FF0000; } + .social-icon.facebook { + background: #3b5998; } + .social-icon.twitter { + background: #1da1f2; } + +.social-graph-wrapper { + text-align: center; + padding: 1.25rem; + position: relative; + color: #fff; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } + .social-graph-wrapper.widget-facebook { + background-color: #3b5998; } + .social-graph-wrapper.widget-twitter { + background-color: #1da1f2; } + .social-graph-wrapper.widget-linkedin { + background-color: #007bb6; } + .social-graph-wrapper.widget-googleplus { + background-color: #db4439; } + .social-graph-wrapper .s-icon { + font-size: 1.5rem; + position: relative; + padding: 0 0.625rem; } + +.social-icon2 a { + border: 0.1rem solid var(--primary); + display: block; + padding: 1rem; + margin-top: 1.5rem; + margin-bottom: .5rem; + border-radius: .3rem; + font-size: 1.6rem; } +.social-icon2 i { + font-size: 0.75rem; + color: var(--primary); } + +.social-icon3 ul li { + display: inline-block; } + .social-icon3 ul li a { + display: block; } + .social-icon3 ul li a i { + font-size: 1.4rem; + padding: 1rem .7rem; + color: #464a53; } + .social-icon3 ul li a:hover i { + color: var(--primary); } + +.social-icons-muted ul li a i { + color: #89879f; } + +.social-links a { + padding: .5rem; } + +.widget-stat .media { + padding: 0rem 0; + align-items: center; } + .widget-stat .media > span { + height: 5.3125rem; + width: 5.3125rem; + border-radius: 3.125rem; + padding: 0.625rem 0.75rem; + font-size: 2rem; + display: flex; + justify-content: center; + align-items: center; + color: #464a53; + min-width: 5.3125rem; } + .widget-stat .media .media-body p { + text-transform: uppercase; + font-weight: 500; + font-size: 0.875rem; } + [data-theme-version="dark"] .widget-stat .media .media-body p { + color: #fff; } + .widget-stat .media .media-body h3, .widget-stat .media .media-body .h3 { + font-size: 2.5rem; + font-weight: 600; + margin: 0; + line-height: 1.2; } + .widget-stat .media .media-body h4, .widget-stat .media .media-body .h4 { + font-size: 1.5rem; + display: inline-block; + vertical-align: middle; } + .widget-stat .media .media-body span { + margin-left: 0.3125rem; } +.widget-stat[class*="bg-"] .media > span { + background-color: rgba(255, 255, 255, 0.25); + color: #fff; } +.widget-stat[class*="bg-"] .progress { + background-color: rgba(255, 255, 255, 0.25) !important; } + +[direction="rtl"] .widget-stat .media .media-body span { + margin-left: 0; + margin-right: 0.625rem; } + +.dez-widget-1 .card { + background: #FFE7DB; } + .dez-widget-1 .card .card-body p { + color: #f87533; } +.dez-widget-1 .icon { + float: right; + width: 3.125rem; + height: 3.125rem; + display: flex; + align-items: center; + justify-content: center; + border-radius: 0.375rem; + font-size: 1.75rem; } + +.bgl-primary { + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); } + [data-theme-version="dark"] .bgl-primary { + background-color: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); } + +.bgl-secondary { + background: #d9f6f3; + border-color: #d9f6f3; } + [data-theme-version="dark"] .bgl-secondary { + background-color: rgba(20, 86, 80, 0.5); + border-color: rgba(20, 86, 80, 0.5); } + +.bgl-success { + background: #e7fbe6; + border-color: #e7fbe6; } + [data-theme-version="dark"] .bgl-success { + background-color: rgba(104, 227, 101, 0.1); + border-color: rgba(104, 227, 101, 0.1); } + +.bgl-warning { + background: #ffe9d5; + border-color: #ffe9d5; } + [data-theme-version="dark"] .bgl-warning { + background-color: rgba(255, 167, 85, 0.1); + border-color: rgba(255, 167, 85, 0.1); } + +.bgl-danger { + background: #fee6ea; + border-color: #fee6ea; } + [data-theme-version="dark"] .bgl-danger { + background-color: rgba(247, 43, 80, 0.15); + border-color: rgba(247, 43, 80, 0.15); } + +.bgl-info { + background: #efbae6; + border-color: #efbae6; } + [data-theme-version="dark"] .bgl-info { + background-color: rgba(214, 83, 193, 0.1); + border-color: rgba(214, 83, 193, 0.1); } + +.bg-primary-light { + background: var(--rgba-primary-5); } + [data-theme-version="dark"] .bg-primary-light { + background-color: var(--rgba-primary-1); } + +.bg-secondary-light { + background: rgba(217, 246, 243, 0.5); } + [data-theme-version="dark"] .bg-secondary-light { + background-color: rgba(20, 86, 80, 0.05); } + +.bg-success-light { + background: rgba(231, 251, 230, 0.5); } + [data-theme-version="dark"] .bg-success-light { + background-color: rgba(104, 227, 101, 0.05); } + +.bg-warning-light { + background: rgba(255, 233, 213, 0.5); } + [data-theme-version="dark"] .bg-warning-light { + background-color: rgba(255, 167, 85, 0.05); } + +.bg-danger-light { + background: rgba(254, 230, 234, 0.5); } + [data-theme-version="dark"] .bg-danger-light { + background-color: rgba(247, 43, 80, 0.05); } + +.bg-info-light { + background: rgba(239, 186, 230, 0.5); } + [data-theme-version="dark"] .bg-info-light { + background-color: rgba(214, 83, 193, 0.05); } + +.bgl-dark { + background: #eeeeee; + border-color: #eeeeee; } + +.bgl-light { + background: #c8c8c8; + border-color: #c8c8c8; } + +.overlay-box { + position: relative; + z-index: 1; } + .overlay-box:after { + content: ""; + width: 100%; + height: 100%; + left: 0; + top: 0; + position: absolute; + opacity: 0.85; + background: var(--primary); + z-index: -1; } + +.rating-bar { + font-size: 0.8125rem; } + +.tdl-holder { + margin: 0 auto; } + .tdl-holder ul { + list-style: none; + margin: 0; + padding: 0; } + .tdl-holder li { + background-color: #fff; + border-bottom: 0.0625rem solid #f5f5f5; + list-style: none none; + margin: 0; + padding: 0; } + .tdl-holder li span { + margin-left: 2.1875rem; + font-size: 1rem; + vertical-align: middle; + transition: all 0.2s linear; } + [direction="rtl"] .tdl-holder li span { + margin-left: auto; + margin-right: 2.1875rem; } + .tdl-holder label { + cursor: pointer; + display: block; + line-height: 3.125rem; + padding-left: 1.5rem; + position: relative; + margin: 0 !important; } + [direction="rtl"] .tdl-holder label { + padding-left: 0; + padding-right: 1.5rem; } + .tdl-holder label:hover { + background-color: #eef1f6; + color: #6e6e6e; } + .tdl-holder label:hover a { + color: #f72b50; } + .tdl-holder label a { + color: #fff; + display: inline-block; + line-height: normal; + height: 100%; + text-align: center; + text-decoration: none; + width: 3.125rem; + -webkit-transition: all .2s linear; + -moz-transition: all .2s linear; + -o-transition: all .2s linear; + transition: all 0.2s linear; + padding: 1.125rem 0rem; + font-size: 1.125rem; + position: absolute; + right: 0; } + [direction="rtl"] .tdl-holder label a { + right: auto; + left: 0; } + .tdl-holder input[type=checkbox] { + cursor: pointer; + opacity: 0; + position: absolute; } + .tdl-holder input[type=checkbox] + i { + background-color: #fff; + border: 0.0625rem solid #e7e7e7; + display: block; + height: 1.25rem; + position: absolute; + top: 0.9375rem; + width: 1.25rem; + z-index: 1; + border-radius: 0rem; + font-size: 0.6875rem; + border-radius: 0.25rem; } + .tdl-holder input[type=checkbox]:checked + i { + background: var(--primary); + border-color: transparent; } + .tdl-holder input[type=checkbox]:checked + i::after { + content: "\f00c"; + font-family: 'fontAwesome'; + display: block; + left: 0.125rem; + position: absolute; + top: -0.875rem; + z-index: 2; + color: #fff; } + .tdl-holder input[type=checkbox]:checked ~ span { + text-decoration: line-through; + position: relative; } + .tdl-holder input[type=text] { + background-color: #fff; + height: 3.125rem; + margin-top: 1.8125rem; + border-radius: 0.1875rem; } + .tdl-holder input[type=text]::placeholder { + color: #6e6e6e; } + +.widget-message p { + font-size: 0.875rem; + line-height: 1.5; } + +.picker .picker__frame { + min-width: 28.125rem; + max-width: 28.125rem; } + .picker .picker__frame .picker__box { + padding: 1.25rem; + border: 0; + box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.1); } + .picker .picker__frame .picker__box .picker__header { + margin-top: 0; } + .picker .picker__frame .picker__box .picker__header .picker__year { + color: var(--primary); + font-style: inherit; + font-size: 1.25rem; } + .picker .picker__frame .picker__box .picker__header .picker__nav--prev, + .picker .picker__frame .picker__box .picker__header .picker__nav--next { + width: 2.5rem; + height: 2.5rem; + padding: 0; + line-height: 2.5rem; + border-radius: 0.125rem; } + .picker .picker__frame .picker__box .picker__header .picker__nav--prev:before, + .picker .picker__frame .picker__box .picker__header .picker__nav--next:before { + content: none !important; } + .picker .picker__frame .picker__box .picker__header .picker__nav--prev:after, + .picker .picker__frame .picker__box .picker__header .picker__nav--next:after { + font-family: fontawesome; + border: 0; + margin: 0 auto; + font-size: 1.375rem; } + .picker .picker__frame .picker__box .picker__header .picker__nav--prev:hover, + .picker .picker__frame .picker__box .picker__header .picker__nav--next:hover { + background-color: var(--primary); + color: var(--primary); } + .picker .picker__frame .picker__box .picker__header .picker__nav--prev { + left: 0; } + .picker .picker__frame .picker__box .picker__header .picker__nav--prev:after { + content: "\f0d9"; } + .picker .picker__frame .picker__box .picker__header .picker__nav--next { + right: 0; } + .picker .picker__frame .picker__box .picker__header .picker__nav--next:after { + content: "\f0da"; } + .picker .picker__frame .picker__box .picker__table .picker__weekday { + padding: 0.625rem 0; + font-size: 1rem; } + .picker .picker__frame .picker__box .picker__table .picker__day { + width: 2.5rem; + height: 2.5rem; + border-radius: 3.125rem; + padding: 0 !important; + font-size: 1rem; + line-height: 2.5rem; + margin: auto; + border: 0 !important; } + .picker .picker__frame .picker__box .picker__table .picker__day.picker__day--today:before { + content: none !important; } + .picker .picker__frame .picker__box .picker__table .picker__day.picker__day--highlighted { + border: 0 !important; + padding: 0; + background-color: var(--primary); + color: #fff !important; } + .picker .picker__frame .picker__box .picker__table .picker__day:hover { + background-color: var(--primary); + color: #fff !important; } + .picker .picker__frame .picker__box .picker__footer .picker__button--today { + background-color: var(--primary); + color: #fff !important; } + .picker .picker__frame .picker__box .picker__footer .picker__button--today:before { + content: none !important; } + .picker .picker__frame .picker__box .picker__footer .picker__button--clear, + .picker .picker__frame .picker__box .picker__footer .picker__button--close, + .picker .picker__frame .picker__box .picker__footer .picker__button--today { + border: 0; + border-radius: 0.125rem; + font-size: 1rem; } + .picker .picker__frame .picker__box .picker__footer .picker__button--clear:hover, + .picker .picker__frame .picker__box .picker__footer .picker__button--close:hover, + .picker .picker__frame .picker__box .picker__footer .picker__button--today:hover { + background-color: var(--primary); + color: #fff !important; } + @media only screen and (max-width: 35.9375rem) { + .picker .picker__frame { + min-width: 100% !important; + max-width: 100% !important; } + .picker .picker__frame .picker__box { + padding: 0.9375rem; + margin: 0 0.625rem; } } + +.card-list { + overflow: unset; + height: calc(100% - 50px); } + .card-list .card-header { + padding-top: 0; + padding-bottom: 0; } + .card-list .card-header .photo { + overflow: hidden; + border-radius: 0.3125rem; + width: 100%; } + @media only screen and (max-width: 74.9375rem) { + .card-list { + height: calc(100% - 40px); } } + .card-list.list-left { + margin-top: 0.9375rem; + margin-left: 0.9375rem; } + .card-list.list-left .card-header { + padding-left: 0; } + .card-list.list-left .card-header .photo { + margin: -0.9375rem 0.9375rem 0 -0.9375rem; } + .card-list.list-right { + margin-top: 0.9375rem; + margin-right: 0.9375rem; + text-align: right; } + .card-list.list-right .card-header { + padding-right: 0; } + .card-list.list-right .card-header .photo { + margin: -0.9375rem -0.9375rem 0 0.9375rem; } + .card-list.list-right .card-header .photo img { + width: 100%; } + .card-list.list-center { + margin-top: 0.9375rem; } + .card-list.list-center .card-header .photo { + margin: -0.9375rem 0 0 0; } + .card-list .photo img { + width: 100%; } + +.card-profile .profile-photo { + margin-top: -1.25rem; } + +.widget-media .timeline .timeline-panel { + display: flex; + align-items: center; + border-bottom: 0.0625rem solid #eaeaea; + padding-bottom: 0.9375rem; + margin-bottom: 0.9375rem; } + .widget-media .timeline .timeline-panel .media { + width: 3.125rem; + height: 3.125rem; + background: #eee; + border-radius: 0.75rem; + overflow: hidden; + font-size: 1.25rem; + text-align: center; + display: flex; + align-items: center; + justify-content: center; + font-weight: 700; + align-self: start; } + .widget-media .timeline .timeline-panel .media-primary { + background: var(--rgba-primary-1); + color: var(--primary); } + [data-theme-version="dark"] .widget-media .timeline .timeline-panel .media-primary { + background-color: var(--rgba-primary-1); } + .widget-media .timeline .timeline-panel .media-info { + background: #efbae6; + color: #D653C1; } + [data-theme-version="dark"] .widget-media .timeline .timeline-panel .media-info { + background-color: rgba(214, 83, 193, 0.1); } + .widget-media .timeline .timeline-panel .media-warning { + background: #ffe9d5; + color: #ffa755; } + [data-theme-version="dark"] .widget-media .timeline .timeline-panel .media-warning { + background-color: rgba(255, 167, 85, 0.1); } + .widget-media .timeline .timeline-panel .media-danger { + background: #fee6ea; + color: #f72b50; } + [data-theme-version="dark"] .widget-media .timeline .timeline-panel .media-danger { + background-color: rgba(247, 43, 80, 0.15); } + .widget-media .timeline .timeline-panel .media-success { + background: #e7fbe6; + color: #68e365; } + [data-theme-version="dark"] .widget-media .timeline .timeline-panel .media-success { + background-color: rgba(104, 227, 101, 0.1); } + .widget-media .timeline .timeline-panel .media-body p { + font-size: 0.875rem; + line-height: 1.5; } + .widget-media .timeline .timeline-panel .dropdown { + align-self: self-end; + margin-top: 0.3125rem; } +.widget-media .timeline li:last-child .timeline-panel { + margin-bottom: 0; + border-bottom: 0; + padding-bottom: 0; } + +.card[class*="bg-"] .timeline .timeline-panel { + border-color: rgba(255, 255, 255, 0.2) !important; } + +.table { + color: strong; + color-color: #6e6e6e; } + .table th, .table td { + border-color: #f5f5f5; + padding: 0.9375rem 0.625rem; } + [data-theme-version="dark"] .table th, [data-theme-version="dark"] .table td { + border-color: #2e2e42; + color: #fff; } + .table.table-striped tbody tr:nth-of-type(odd), .table.table-hover tr:hover { + background-color: #f2f4fa; } + [data-theme-version="dark"] .table.table-striped tbody tr:nth-of-type(odd), [data-theme-version="dark"] .table.table-hover tr:hover { + background-color: #17171E; } + .table.shadow-hover tbody tr:hover { + background-color: #fff; + box-shadow: 0 0rem 1.875rem var(--rgba-primary-2); } + [data-theme-version="dark"] .table.shadow-hover tbody tr:hover { + background-color: #17171E; } + .table.tr-rounded tr td:first-child, .table.tr-rounded tr th:first-child { + border-radius: 2.8125rem 0 0 2.8125rem; } + .table.tr-rounded tr td:last-child, .table.tr-rounded tr th:last-child { + border-radius: 0 2.8125rem 2.8125rem 0; } + .table.border-hover tr td { + border-width: 0.0625rem 0 0.0625rem 0; + border-bottom: 0.0625rem solid transparent; + border-color: transparent; } + .table.border-hover tr td:first-child { + border-width: 0.0625rem 0 0.0625rem 0.0625rem; } + .table.border-hover tr td:last-child { + border-width: 0.0625rem 0.0625rem 0.0625rem 0; } + .table.border-hover tr:hover td { + border-color: #EEEEEE; } + .table.bg-primary-hover th, .table.bg-primary-hover td { + border: none; + font-weight: 500; } + .table.bg-primary-hover td { + color: #000; } + .table.bg-primary-hover th { + color: #6C6C6C; } + .table.bg-primary-hover tr:hover td, .table.bg-primary-hover tr:hover th { + background: var(--primary); + color: #fff; } + .table.bg-secondary-hover th, .table.bg-secondary-hover td { + border: none; + font-weight: 500; } + .table.bg-secondary-hover td { + color: #000; } + .table.bg-secondary-hover th { + color: #6C6C6C; } + .table.bg-secondary-hover tr:hover td, .table.bg-secondary-hover tr:hover th { + background: #145650; + color: #fff !important; } + .table.bg-info-hover th, .table.bg-info-hover td { + border: none; + font-weight: 500; } + .table.bg-info-hover td { + color: #000; } + .table.bg-info-hover th { + color: #6C6C6C; } + .table.bg-info-hover tr:hover td, .table.bg-info-hover tr:hover th { + background: #D653C1; + color: #fff !important; } + .table.bg-warning-hover th, .table.bg-warning-hover td { + border: none; + font-weight: 500; } + .table.bg-warning-hover td { + color: #000; } + .table.bg-warning-hover th { + color: #6C6C6C; } + .table.bg-warning-hover tr:hover td, .table.bg-warning-hover tr:hover th { + background: #ffa755; + color: #fff !important; } + .table.border-no td { + border: 0; } + .table.short-one tr td:first-child, .table.short-one tr th:first-child { + width: 3.75rem; } + .table thead th { + border-bottom: 0.0625rem solid #EEEEEE; + text-transform: capitalize; + font-size: 1.125rem; + white-space: nowrap; + font-weight: 500; + letter-spacing: 0.0313rem; + border-color: #f5f5f5 !important; } + [data-theme-version="dark"] .table thead th { + border-color: #2e2e42; } + .table tbody tr td { + vertical-align: middle; + border-color: #f5f5f5; } + [data-theme-version="dark"] .table tbody tr td { + /* border-color: $d-border; */ } + .table:not(.table-bordered) thead th { + border-top: none; } + .table .thead-primary th { + background-color: var(--primary); + color: #fff; } + .table .thead-info th { + background-color: #D653C1; + color: #fff; } + .table .thead-warning th { + background-color: #ffa755; + color: #fff; } + .table .thead-danger th { + background-color: #f72b50; + color: #fff; } + .table .thead-success th { + background-color: #68e365; + color: #fff; } + .table.primary-table-bordered { + border: 0.0625rem solid #f5f5f5; } + [data-theme-version="dark"] .table.primary-table-bordered { + border-color: #2e2e42; } + .table.primary-table-bg-hover thead th { + background-color: var(--primary-dark); + color: #fff; + border-bottom: none; } + .table.primary-table-bg-hover tbody tr { + background-color: var(--primary); + color: #fff; + transition: all .1s ease; } + .table.primary-table-bg-hover tbody tr:hover { + background-color: var(--rgba-primary-8); } + .table.primary-table-bg-hover tbody tr:not(:last-child) td, .table.primary-table-bg-hover tbody tr:not(:last-child) th { + border-bottom: 0.0625rem solid var(--primary-dark); } + .table-responsive-tiny { + min-width: 18.75rem; } + .table-responsive-sm { + min-width: 30rem !important; } + .table-responsive-md { + min-width: 36rem !important; } + .table-responsive-lg { + min-width: 60.9375rem !important; } + .table-responsive-xl { + min-width: 70.9375rem !important; } + +.table-primary, .table-primary > th, .table-primary > td { + background-color: var(--rgba-primary-1); + color: var(--primary); } + [data-theme-version="dark"] .table-primary, + [data-theme-version="dark"] .table-primary > th, + [data-theme-version="dark"] .table-primary > td { + background-color: var(--rgba-primary-1); } + +.table-success, .table-success > th, .table-success > td { + background-color: #e7fbe6; + color: #68e365; } + [data-theme-version="dark"] .table-success, + [data-theme-version="dark"] .table-success > th, + [data-theme-version="dark"] .table-success > td { + background-color: rgba(104, 227, 101, 0.1); } + +.table-info, .table-info > th, .table-info > td { + background-color: #efbae6; + color: #D653C1; } + [data-theme-version="dark"] .table-info, + [data-theme-version="dark"] .table-info > th, + [data-theme-version="dark"] .table-info > td { + background-color: rgba(214, 83, 193, 0.1); } + +.table-warning, .table-warning > th, .table-warning > td { + background-color: #ffe9d5; + color: #ffa755; } + [data-theme-version="dark"] .table-warning, + [data-theme-version="dark"] .table-warning > th, + [data-theme-version="dark"] .table-warning > td { + background-color: rgba(255, 167, 85, 0.1); } + +.table-danger, .table-danger > th, .table-danger > td { + background-color: #fee6ea; + color: #f72b50; } + [data-theme-version="dark"] .table-danger, + [data-theme-version="dark"] .table-danger > th, + [data-theme-version="dark"] .table-danger > td { + background-color: rgba(247, 43, 80, 0.15); } + +.table-active, .table-active > th, .table-active > td { + background-color: #f2f4fa; } + [data-theme-version="dark"] .table-active, + [data-theme-version="dark"] .table-active > th, + [data-theme-version="dark"] .table-active > td { + background-color: #17171E; } + +.card-table th:first-child, .card-table td:first-child { + padding-left: 1.875rem; } + @media only screen and (max-width: 35.9375rem) { + .card-table th:first-child, .card-table td:first-child { + padding-left: 0.9375rem; } } +.card-table th:last-child, .card-table td:last-child { + padding-right: 1.875rem; } + @media only screen and (max-width: 35.9375rem) { + .card-table th:last-child, .card-table td:last-child { + padding-right: 0.9375rem; } } + +.bootgrid-header { + padding: 0 !important; + margin: 0; } + @media only screen and (max-width: 35.9375rem) { + .bootgrid-header .actionBar { + padding: 0; } + .bootgrid-header .search { + margin: 0 0 0.625rem 0; } } + +table#example { + padding: 0rem 0 2rem 0; } + +table.dataTable { + font-size: 0.875rem; } + +#example2_wrapper .dataTables_scrollBody { + max-height: 33.25rem !important; } + +#employees, #custommers { + padding: .5rem 0 1rem 0; } + +.dataTables_wrapper .dataTables_paginate { + padding-top: 0.75em; + padding-bottom: 0.75em; } + +table.dataTable thead th, table.dataTable thead td { + border-bottom: 0.125rem solid #EEEEEE; + border-top: 0; } + +table.dataTable tfoot th, table.dataTable tfoot td { + border-top: 0; } + +table.dataTable tbody tr, table.dataTable tbody td { + background: transparent !important; } + +table.dataTable thead th { + color: #000; + white-space: nowrap; + font-size: 1.125rem; + text-transform: capitalize; + font-weight: 600; + padding: 1.25rem 0.9375rem; } + [data-theme-version="dark"] table.dataTable thead th { + color: #fff; } + @media only screen and (max-width: 87.5rem) { + table.dataTable thead th { + font-size: 1rem; } } + +table.dataTable tbody td { + padding: 1.25rem 0.9375rem; + font-size: 1rem; + font-weight: 400; + border-bottom: 0; } + @media only screen and (max-width: 35.9375rem) { + table.dataTable tbody td { + padding: 0.5rem 0.3125rem; } } + @media only screen and (max-width: 87.5rem) { + table.dataTable tbody td { + font-size: 0.875rem; + padding: 0.5rem 0.9375rem; } } + +table.dataTable tr.selected { + color: var(--primary); } + +table.dataTable tfoot th { + color: #6e6e6e; + font-weight: 600; } + [data-theme-version="dark"] table.dataTable tfoot th { + color: #fff; } + +/* .dataTables_wrapper .dataTables_paginate .paginate_button{ + border-radius: 12px; + padding: 12px 20px; + background:$primary-light; + color:$primary; + &:focus, + &:active, + &:hover{ + color: $white !important; + background: $primary; + border: 0 !important; + box-shadow: none; + } + &.current{ + color: $white !important; + background: $primary; + border: 0 !important; + } + &.current:hover, + &.previous:hover, + &.next:hover{ + background: $primary; + color: $white !important; + } +} */ +td.text-ov { + white-space: nowrap; } + +.dataTables_wrapper .dataTables_paginate { + align-items: center; + display: flex; + flex-flow: wrap; } + .dataTables_wrapper .dataTables_paginate .paginate_button.previous, .dataTables_wrapper .dataTables_paginate .paginate_button.next { + font-size: 1.125rem; + height: 3.125rem; + width: fit-content; + border: 0.0625rem solid var(--primary); + border-radius: 2.8125rem; + padding: 0 1.25rem; + line-height: 3.125rem; + margin: 0 0.625rem; + display: inline-block; + color: var(--primary) !important; } + .dataTables_wrapper .dataTables_paginate .paginate_button.previous.current:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.previous.previous:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.previous.next:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.next.current:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.next.previous:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.next.next:hover { + color: #fff !important; + background: var(--primary) !important; } + .dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled { + color: var(--primary) !important; } + @media only screen and (max-width: 35.9375rem) { + .dataTables_wrapper .dataTables_paginate .paginate_button.previous, .dataTables_wrapper .dataTables_paginate .paginate_button.next { + height: 3.125rem; + width: fit-content; + line-height: 3.125rem; + padding: 0 0.75rem; } } + .dataTables_wrapper .dataTables_paginate span .paginate_button { + height: 3.125rem; + width: 3.125rem; + padding: 0; + margin-left: 0rem; + margin: 0 0.125rem; + line-height: 3.125rem; + text-align: center; + font-size: 1.125rem; + border-radius: 2.8125rem; + color: var(--primary) !important; + background: var(--rgba-primary-1); } + @media only screen and (max-width: 35.9375rem) { + .dataTables_wrapper .dataTables_paginate span .paginate_button { + height: 3.125rem; + width: 3.125rem; + line-height: 3.125rem; } } + .dataTables_wrapper .dataTables_paginate span .paginate_button.current, .dataTables_wrapper .dataTables_paginate span .paginate_button:hover { + color: var(--primary) !important; } + .dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover, .dataTables_wrapper .dataTables_paginate span .paginate_button:hover:hover { + color: #fff !important; + background: var(--primary) !important; } + +.dataTables_wrapper input[type="search"], .dataTables_wrapper input[type="text"], .dataTables_wrapper select { + border: 0.0625rem solid #e2e2e2; + padding: .3rem 0.5rem; + color: #715d5d; + border-radius: 0.3125rem; } + [data-theme-version="dark"] .dataTables_wrapper input[type="search"], [data-theme-version="dark"] .dataTables_wrapper input[type="text"], [data-theme-version="dark"] .dataTables_wrapper select { + background: #17171E; + border-color: #2e2e42; + color: #fff; } +.dataTables_wrapper .dataTables_length { + margin-bottom: 0.9375rem; } + .dataTables_wrapper .dataTables_length .bootstrap-select { + width: 5rem; + margin: 0 0.3125rem; } + +table.dataTable.no-footer { + border-bottom: 0; } + +.rounded-lg { + min-width: 1.875rem; } + +.dataTables_scroll { + padding: 1rem 0; } + .dataTables_scrollFoot { + padding-top: 1rem; } + +.dataTablesCard { + background-color: #fff; + border-radius: 1.25rem; } + .dataTablesCard.border-no td { + border-top: 0 !important; } + +@media (max-width: 991.98px) { + .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter { + text-align: left; } } + +.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, +.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, +.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active { + color: #393939 !important; } + +.dataTables_wrapper .dataTables_length, +.dataTables_wrapper .dataTables_filter, +.dataTables_wrapper .dataTables_processing, +.dataTables_wrapper .dataTables_paginate { + color: #393939; + border-radius: 1rem; + padding: 0.125rem 0; + margin-bottom: 1.25rem; } + +.paging_simple_numbers.dataTables_paginate { + padding: 0.3125rem 0.3125rem; } + +.dataTables_wrapper .dataTables_paginate .paginate_button { + color: #393939 !important; } + +table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td { + border-color: #EEEEEE; } + [data-theme-version="dark"] table.dataTable.row-border tbody th, + [data-theme-version="dark"] table.dataTable.row-border tbody td, + [data-theme-version="dark"] table.dataTable.display tbody th, + [data-theme-version="dark"] table.dataTable.display tbody td { + border-color: #2e2e42; } + +.dataTables_wrapper .dataTables_length .bootstrap-select .dropdown-toggle { + font-size: 0.813rem !important; + padding: 0.625rem 1rem; } + +.fooicon { + font-size: 1.25rem; + color: #6e6e6e; } + +.jsgrid-table .jsgrid-header-row > .jsgrid-header-cell { + color: #6e6e6e; } +.jsgrid-table > tbody > tr > td { + padding: 1.2em; } +.jsgrid-table .jsgrid-insert-row input, .jsgrid-table .jsgrid-insert-row select, .jsgrid-table .jsgrid-edit-row input, .jsgrid-table .jsgrid-edit-row select { + border: 0.0625rem solid #DDDFE1; } + +.jsgrid .jsgrid-button { + border: 0 !important; + margin-left: 0.625rem; } + +.error-page .error-text { + font-size: 9.375rem; + line-height: 1; } + @media only screen and (max-width: 35.9375rem) { + .error-page .error-text { + font-size: 5rem; } } +.error-page h4, .error-page .h4 { + font-size: 2.5rem; + margin-bottom: 0.3125rem; } + @media only screen and (max-width: 35.9375rem) { + .error-page h4, .error-page .h4 { + font-size: 1.25rem; } } +.error-page p { + font-size: 1rem; } + @media only screen and (max-width: 35.9375rem) { + .error-page p { + font-size: 0.875rem; } } + +.flex-row-fluid { + -webkit-box-flex: 1; + flex: 1 auto; + -ms-flex: 1 0 0rem; + min-width: 0; } + +.authincation { + background: var(--rgba-primary-1); + display: flex; + min-height: 100vh; } + .authincation .login-aside { + background: #fff; + padding-top: 5rem; + max-width: 35rem; + width: 100%; + z-index: 1; + position: relative; } + .authincation .login-aside:after { + content: ""; + clip-path: polygon(0% 100%, 100% 0%, 0% 0%); + width: 8.75rem; + height: 100%; + position: absolute; + right: -8.75rem; + z-index: -1; + top: 0; + background: #fff; + box-shadow: 0.125rem 0rem 1.875rem rgba(0, 0, 0, 0.15); } + .authincation .login-aside .aside-image { + min-height: 28.125rem; + margin: auto 0; + min-width: 0; + background-size: contain; + background-repeat: no-repeat; + background-position: center; } + @media only screen and (max-width: 87.5rem) { + .authincation .login-aside { + max-width: 22.5rem; } } + @media only screen and (max-width: 61.9375rem) { + .authincation .login-aside { + max-width: 100%; + padding-top: 0; } + .authincation .login-aside:after { + content: none; } } + @media only screen and (max-width: 35.9375rem) { + .authincation .login-aside .aside-image { + min-height: 18.75rem; } } + +.authincation-content { + background: #fff; + box-shadow: 0 0 2.1875rem 0 rgba(154, 161, 171, 0.15); + border-radius: 0.3125rem; } + [data-theme-version="dark"] .authincation-content { + background: #212130; + box-shadow: none; } + .authincation-content.style-1 { + background: rgba(255, 255, 255, 0.5); + backdrop-filter: blur(20px); } + .authincation-content.style-1 .form-control { + background: rgba(255, 255, 255, 0.6); + border-radius: 0.3125rem; } + .authincation-content.style-1 .user-icon { + height: 6.25rem; + background: var(--primary); + width: 6.25rem; + text-align: center; + border-radius: 6.25rem; + line-height: 6.25rem; + margin-left: auto; + font-size: 3.75rem; + text-align: center; + color: white; + margin-right: auto; + margin-top: -6.25rem; + margin-bottom: 1.25rem; } + .authincation-content.style-2 { + background: transparent; + box-shadow: none; + max-width: 33.125rem; + width: 100%; } + .authincation-content.style-2 .form-control { + border: 0; + border-radius: 0.3125rem; + box-shadow: 0rem 0rem 0.9375rem rgba(0, 0, 0, 0.08); } + @media only screen and (max-width: 35.9375rem) { + .authincation-content.style-2 .auth-form { + padding: 1.875rem 0rem; } } + +.welcome-content { + background: url("http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/images/1.jpg"); + background-size: cover; + background-position: center; + height: 100%; + padding: 4.6875rem 3.125rem; + position: relative; + z-index: 1; + border-top-left-radius: 0.3125rem; + border-bottom-left-radius: 0.3125rem; } + .welcome-content::after { + content: ''; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + background: var(--primary); + opacity: 0.75; + z-index: -1; + border-top-left-radius: 0.3125rem; + border-bottom-left-radius: 0.3125rem; } + .welcome-content .welcome-title { + color: #fff; + font-weight: 500; + font-size: 1.25rem; } + .welcome-content p { + color: #fff; } + .welcome-content .brand-logo a { + display: inline-block; + margin-bottom: 1.25rem; + font-weight: 700; + color: #fff; + font-size: 1.25rem; } + .welcome-content .brand-logo a img { + width: 6.25rem; } + .welcome-content .intro-social { + position: absolute; + bottom: 4.6875rem; } + .welcome-content .intro-social ul { + margin-bottom: 0; } + .welcome-content .intro-social ul li { + display: inline-block; } + .welcome-content .intro-social ul li a { + color: #fff; + font-size: 0.875rem; + padding: 0rem 0.4375rem; } + +.auth-form { + padding: 3.125rem 3.125rem; } + @media only screen and (max-width: 35.9375rem) { + .auth-form { + padding: 1.875rem; } } + .auth-form .btn { + height: 3.125rem; + font-weight: 700; } + .auth-form .page-back { + display: inline-block; + margin-bottom: 0.9375rem; } + +@media only screen and (max-width: 47.9375rem) { + .doctor-info-details { + display: block !important; } } +.doctor-info-details .media { + position: relative; } + @media only screen and (max-width: 87.5rem) { + .doctor-info-details .media img { + width: 100%; } } + @media only screen and (max-width: 47.9375rem) { + .doctor-info-details .media { + float: left; } } + @media only screen and (max-width: 87.5rem) { + .doctor-info-details .media { + width: 5rem; + height: 5rem; + margin-right: 1.25rem; } } + .doctor-info-details .media i { + width: 4rem; + height: 4rem; + border-radius: 3.75rem; + border: 0.1875rem solid #fff; + line-height: 3.625rem; + text-align: center; + background: var(--primary); + position: absolute; + right: -0.9375rem; + bottom: -0.9375rem; + color: #fff; + font-size: 1.5rem; } + @media only screen and (max-width: 87.5rem) { + .doctor-info-details .media i { + width: 3.125rem; + height: 3.125rem; + font-size: 1.125rem; + line-height: 2.875rem; } } + @media only screen and (max-width: 35.9375rem) { + .doctor-info-details .media i { + width: 2.1875rem; + height: 2.1875rem; + font-size: 1rem; + line-height: 2.0625rem; + right: -0.4375rem; + bottom: -0.4375rem; } } +.doctor-info-details .media-body { + padding-left: 2.5rem; } + @media only screen and (max-width: 87.5rem) { + .doctor-info-details .media-body { + padding-left: 1.25rem; } } + @media only screen and (max-width: 47.9375rem) { + .doctor-info-details .media-body { + padding-left: 0; } } + .doctor-info-details .media-body h2, .doctor-info-details .media-body .h2 { + font-size: 2.5rem; + line-height: 1.2; + font-weight: 600; + color: #000; } + @media only screen and (max-width: 87.5rem) { + .doctor-info-details .media-body h2, .doctor-info-details .media-body .h2 { + font-size: 1.75rem; } } + @media only screen and (max-width: 35.9375rem) { + .doctor-info-details .media-body h2, .doctor-info-details .media-body .h2 { + font-size: 1.25rem; } } + .doctor-info-details .media-body p { + font-size: 1.125rem; + font-weight: 500; + color: #3e4954; } + .doctor-info-details .media-body span { + color: #333333; } + .doctor-info-details .media-body span i { + transform: scale(1.3); + display: inline-block; + margin-right: 0.625rem; } +.doctor-info-details .star-review i { + font-size: 1.375rem; } + @media only screen and (max-width: 87.5rem) { + .doctor-info-details .star-review i { + font-size: 1rem; } } + +.doctor-info-content p { + line-height: 1.4; } + +.review-box { + border: 0.0625rem solid #f0f0f0; + border-radius: 1.125rem; + padding: 1.25rem 1.875rem 1.875rem 1.875rem; } + @media only screen and (max-width: 87.5rem) { + .review-box { + padding: 0.9375rem 0.9375rem 1.25rem 0.9375rem; } } + @media only screen and (max-width: 47.9375rem) { + .review-box { + display: block !important; } } + .review-box h4, .review-box .h4 { + font-size: 1.25rem; } + .review-box p { + font-size: 0.875rem; + line-height: 1.4; } + @media only screen and (max-width: 47.9375rem) { + .review-box img { + width: 3.75rem; + float: left; } } + .review-box .media-footer { + min-width: 9.375rem; } + @media only screen and (max-width: 87.5rem) { + .review-box .media-footer { + min-width: 6.875rem; } } + @media only screen and (max-width: 47.9375rem) { + .review-box .star-review { + margin-top: 0.9375rem; } } + .review-box .star-review span { + display: block; + font-size: 1.5rem; + font-weight: 600; + margin-bottom: 0.9375rem; + line-height: 1.3; } + @media only screen and (max-width: 47.9375rem) { + .review-box .star-review span { + font-size: 1rem; + display: inline-block; + margin-bottom: 0; } } + .review-box .star-review i { + font-size: 1.125rem; + margin: 0 0.125rem; } + @media only screen and (max-width: 87.5rem) { + .review-box .star-review i { + font-size: 1rem; + margin: 0 0.0625rem; } } + +@media only screen and (max-width: 47.9375rem) { + .patient-box { + display: block !important; } } +.patient-box .up-sign i { + font-size: 3.125rem; + line-height: 0.7; } +@media only screen and (max-width: 47.9375rem) { + .patient-box .up-sign { + float: right; } } +@media only screen and (max-width: 47.9375rem) { + .patient-box img { + width: 6.25rem; + float: left; } } + +.patient-calender { + color: #fff; } + .patient-calender .bootstrap-datetimepicker-widget table td, + .patient-calender .bootstrap-datetimepicker-widget table th { + padding: 0.9375rem 0.3125rem; + border-radius: 1.25rem; } + .patient-calender .bootstrap-datetimepicker-widget table th { + height: 1.25rem; + line-height: 1.25rem; + width: 1.25rem; + font-weight: 400; + opacity: 0.7; + font-size: 0.875rem; } + .patient-calender .bootstrap-datetimepicker-widget table td.active, + .patient-calender .bootstrap-datetimepicker-widget table td.active:hover, + .patient-calender .bootstrap-datetimepicker-widget table span, + .patient-calender .bootstrap-datetimepicker-widget table i { + color: #fff; } + .patient-calender .bootstrap-datetimepicker-widget table thead tr:first-child th { + font-size: 1.125rem; + font-weight: 600; + opacity: 1; } + .patient-calender .bootstrap-datetimepicker-widget table .btn-primary { + border: 0; + padding: 0.625rem; } + .patient-calender .bootstrap-datetimepicker-widget table .btn-primary, + .patient-calender .bootstrap-datetimepicker-widget table td span.active, + .patient-calender .bootstrap-datetimepicker-widget table td i.active, + .patient-calender .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, + .patient-calender .bootstrap-datetimepicker-widget table td span:hover, + .patient-calender .bootstrap-datetimepicker-widget table td i:hover, + .patient-calender .bootstrap-datetimepicker-widget table td.day:hover, + .patient-calender .bootstrap-datetimepicker-widget table td.hour:hover, + .patient-calender .bootstrap-datetimepicker-widget table td.minute:hover, + .patient-calender .bootstrap-datetimepicker-widget table td.second:hover { + background: rgba(0, 0, 0, 0.2); } + .patient-calender .datepicker table tr td.active, .patient-calender .datepicker table tr td.today { + background: rgba(0, 0, 0, 0.2) !important; } + +.abilities-chart .ct-chart .ct-label { + font-size: 1rem; + fill: #000; } +.abilities-chart .ct-chart .ct-series.ct-series-a .ct-slice-donut { + stroke: #209f84; } +.abilities-chart .ct-chart .ct-series.ct-series-b .ct-slice-donut { + stroke: #07654e; } +.abilities-chart .ct-chart .ct-series.ct-series-c .ct-slice-donut { + stroke: #93cbff; } +.abilities-chart .chart-point { + font-size: 1rem; + justify-content: space-between; + margin-top: 2.5rem; } +.abilities-chart .chart-point .a, +.abilities-chart .chart-point .b, +.abilities-chart .chart-point .c { + width: 2rem; + height: 0.5rem; + display: block; + border-radius: 0.5rem; + margin-left: auto; + margin-right: auto; + margin-bottom: 0.625rem; } +.abilities-chart .chart-point .a { + background: #07654e; } +.abilities-chart .chart-point .b { + background: #209f84; } +.abilities-chart .chart-point .c { + background: #93cbff; } + +.heart-blast { + background-position: -105rem 0 !important; + transition: background 1s steps(28); } + +.heart { + width: 3.75rem; + height: 3.75rem; + display: inline-block; + background: url("../image/like.png"); + cursor: pointer; + margin: -1.5625rem -0.9375rem; } + +.header-left .search-area .form-control, +.header-left .search-area .input-group-text { + background: #F6F6F6; } + +.plus-box { + background: #145650; + color: #fff; + font-size: 0.875rem; + padding: 2rem 2rem; + overflow: hidden; + margin: 0 1.875rem; + border-radius: 1.125rem; + align-items: center; + margin-bottom: 2.5rem; + margin-top: 2.5rem; + position: relative; } + .plus-box:before { + position: absolute; + content: ""; + top: 1.2rem; + left: 1rem; + background-image: url(../image/dots1.png); + background-repeat: no-repeat; + height: 3rem; + width: 3rem; } + @media only screen and (max-width: 87.5rem) { + .plus-box { + margin: 1.25rem 1.25rem; } } + +.plus-icon a { + height: 3.563rem; + width: 3.563rem; + background: #145650; + display: block; + border-radius: 3.563rem; + line-height: 3.563rem; + margin-left: 2rem; + font-size: 1.5rem; + text-align: center; + color: #fff; } + @media only screen and (max-width: 74.9375rem) { + .plus-icon a { + height: 2.563rem; + width: 2.563rem; + line-height: 2.563rem; + font-size: 1rem; } } + @media only screen and (max-width: 35.9375rem) { + .plus-icon a { + margin-left: 0; } } +@media only screen and (max-width: 35.9375rem) { + .plus-icon { + display: none; } } + +.job-icon h2, .job-icon .h2 { + font-size: 1.875rem; + font-weight: 600; } + +.action-buttons .btn { + padding: 0; + border: 0; + margin: 0 4px; + height: 40px; + width: 40px; + line-height: 40px; + border-radius: 50%; } + +.custom-label { + min-width: 120px; + display: inline-block; } + +.custom-label-2 { + min-width: 180px; + display: inline-block; } + @media only screen and (max-width: 35.9375rem) { + .custom-label-2 { + min-width: 140px; } } + +.separate-row > div { + border-bottom: 1px solid #eee; } + .separate-row > div:nth-child(n+3) { + border-bottom: 0; } + .separate-row > div:nth-child(odd) { + border-right: 1px solid #eee; } + @media only screen and (max-width: 35.9375rem) { + .separate-row > div:nth-child(n+3) { + border-bottom: 1px solid #eee; } + .separate-row > div:nth-child(odd) { + border-right: 0; } + .separate-row > div:last-child { + border-bottom: 0; } } + +.coin-tabs { + background: #F9F9F9; + border-radius: 1.25rem; } + .coin-tabs .nav-tabs { + border: 0; } + .coin-tabs .nav-tabs .nav-item .nav-link { + border: 0; + border-radius: 1.25rem; + font-size: 1rem; + padding: 0.5rem 1rem; } + .coin-tabs .nav-tabs .nav-item .nav-link.active { + background: var(--primary); + color: #fff; } + +.update-profile img { + height: 7rem; + width: 7rem; + border-radius: 1.25rem; } + @media only screen and (max-width: 74.9375rem) { + .update-profile img { + height: 5rem; + width: 5rem; } } + +.default-progress { + height: 0.688rem; } + +.bg-green { + background: #1D92DF !important; } + +.dashboard-select { + border-radius: 3rem; + background: var(--rgba-primary-1); + border-color: var(--rgba-primary-1); + height: 46px; + border: 0; + padding-right: 40px; + line-height: 44px; + color: var(--primary); + text-transform: capitalize; } + .dashboard-select:after { + border-color: var(--primary); } + +.recent-activity { + position: relative; + padding-bottom: 1rem; } + .recent-activity:after { + position: absolute; + content: ""; + top: 1.188rem; + left: 0.5rem; + width: 0.063rem; + height: 100%; + background: #A1A1A1; } + +.jobs { + border: 1px solid #B1C1C8; + padding: 1.5rem 1.5rem; + border-radius: 1.25rem; } + .jobs h4, .jobs .h4 { + font-size: 1.25rem; } + +.default-select.style-1 { + border-radius: 2rem; + line-height: 2rem; + background: transparent; + color: var(--primary); + font-size: 1rem; + font-weight: 500; } + .default-select.style-1:after { + border-color: var(--primary); } + +table.dataTable tbody th, table.dataTable tbody td { + padding: 1.25rem 0.625rem; } + +/* .card-table th:first-child, .card-table td:first-child{ + padding-left:0; +} */ +.job-available .btn-outline-primary { + font-weight: 500; } + +.Studios-info { + margin-right: 2rem; } + @media only screen and (min-width: 75rem) { + .Studios-info { + margin-right: 1rem; } + .Studios-info svg { + width: 6rem; } } + @media only screen and (max-width: 35.9375rem) { + .Studios-info { + margin-bottom: 1rem; } + .Studios-info svg { + width: 5rem; } } + +.application { + margin-left: 2rem; } + @media only screen and (max-width: 35.9375rem) { + .application { + margin-left: 0.8rem; } } + +.wspace-no { + white-space: nowrap; } + +.application tr td .btn { + font-weight: 600; } + +.user img { + height: 6.25rem; + width: 6.25rem; + border-radius: 1.25rem; } +@media only screen and (max-width: 35.9375rem) { + .user img { + height: 5rem; + width: 5rem; + float: left; + margin-right: 15px; } } + +.recent-activity-wrapper .recent-activity:last-child:after { + content: none; } + +.listline-wrapper { + display: flex; + flex-wrap: wrap; } + .listline-wrapper .item:not(:last-child) { + border-right: 1px solid #EEEEEE; + margin-right: 5px; + padding: 2px 0; + padding-right: 15px; } + .listline-wrapper .item { + display: flex; + align-items: center; } + .listline-wrapper .item svg { + padding-right: 8px; } + .listline-wrapper .item i { + color: #a0a0a0; + padding-right: 8px; } + +.svg-main-icon g [fill] { + fill: #a0a0a0; } + +.search-job { + border-radius: 1rem; } + .search-job .search-dropdown { + position: relative; } + .search-job .search-dropdown:after { + content: ""; + position: absolute; + top: 0.375rem; + right: 0; + width: 0.125rem; + height: 2rem; + background: #E2E2E2; } + @media only screen and (max-width: 61.9375rem) { + .search-job .search-dropdown:nth-child(2):after { + content: none; } } + @media only screen and (max-width: 35.9375rem) { + .search-job .search-dropdown:after { + content: none; } } + .search-job .job-title-search .search-area .input-group-text { + background: transparent; + border: 0; + padding: 0; } + .search-job .job-title-search .search-area .form-control { + border: 0; } + +.jobs2 { + border-radius: 1.25rem; + transition: all 0.5s; } + .jobs2:hover { + box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1); } + +.researcher { + height: 3.8rem; } + +.block svg { + margin-top: -5.25rem; + position: relative; + z-index: 1; } + +.bg-blue { + background: #3772EA !important; } + +.orange { + color: #F93A0B; } + +.location { + margin-top: 2rem; } + .location span i { + height: 2.5rem; + width: 2.5rem; + min-width: 2.5rem; + border-radius: 3.125rem; + background: #145650; + color: #fff; + line-height: 2.5rem; + text-align: center; + margin-right: 1rem; + font-size: 1.3rem; } + +.pagination .page-indicator a { + border: 1px solid var(--rgba-primary-1); } + +.search-row .title { + font-size: 1.25rem; + font-weight: 600; } + .search-row .title .sub-title { + font-size: 1.125rem; } + +.job-tabs .nav-tabs { + border: 0; } + .job-tabs .nav-tabs .nav-item .nav-link { + border: 0; + background: transparent; } + .job-tabs .nav-tabs .nav-item .nav-link.active i { + color: var(--primary); } + .job-tabs .nav-tabs .nav-item .nav-link i { + color: #000; } + +.profile-back { + position: relative; } + .profile-back img { + width: 100%; + height: 25rem; + object-fit: cover; + border-radius: 1.25rem; } + @media only screen and (max-width: 35.9375rem) { + .profile-back img { + height: 20rem; } } + .profile-back .social-btn { + position: absolute; + bottom: 3rem; + right: 2rem; + z-index: 1; } + .profile-back .social-btn .social { + background: rgba(239, 239, 239, 0.22); + border: 0; + margin-right: 1rem; } + .profile-back .social-btn .btn { + font-size: 1.125rem; + font-weight: 600; } + .profile-back .social-btn .btn:hover { + color: #fff; } + @media only screen and (max-width: 87.5rem) { + .profile-back .social-btn .btn { + font-size: 0.7rem; } } + @media only screen and (max-width: 61.9375rem) { + .profile-back .social-btn { + bottom: unset; + top: 3rem; } } + @media only screen and (max-width: 35.9375rem) { + .profile-back .social-btn { + right: 0; + padding: 0 15px; } + .profile-back .social-btn .social { + margin-right: 0.2rem; + margin-bottom: 0.5rem; } } + .profile-back:after { + position: absolute; + content: ""; + height: 100%; + width: 100%; + top: 0; + left: 0; + border-radius: 1.25rem; + /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+39,000000+86&0.7+18,0.5+100 */ + background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0.65) 39%, rgba(0, 0, 0, 0.53) 86%, rgba(0, 0, 0, 0.5) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0.65) 39%, rgba(0, 0, 0, 0.53) 86%, rgba(0, 0, 0, 0.5) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0.65) 39%, rgba(0, 0, 0, 0.53) 86%, rgba(0, 0, 0, 0.5) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#80000000',GradientType=0 ); + /* IE6-9 */ } + +.profile-pic { + margin-top: -9rem; + position: relative; + padding-left: 6rem; } + .profile-pic img { + height: 13.688rem; + width: 13.688rem; + border-radius: 1.25rem; + border: 0.5rem solid #fff; + margin-right: 2rem; } + .profile-pic .profile-info2 { + color: #fff; } + .profile-pic .profile-info2 h2, .profile-pic .profile-info2 .h2 { + font-size: 2.5rem; + font-weight: 600; + color: #fff; } + .profile-pic .profile-info2 h4, .profile-pic .profile-info2 .h4 { + font-size: 1.5rem; + font-weight: 500; + color: #B1C1C8; } + @media only screen and (max-width: 87.5rem) { + .profile-pic { + margin-top: -6rem; + padding-left: 1rem; } + .profile-pic img { + height: 7.688rem; + width: 7.688rem; } + .profile-pic h2, .profile-pic .h2 { + font-size: 1.5rem !important; } + .profile-pic h4, .profile-pic .h4 { + font-size: 1rem !important; } } + @media only screen and (max-width: 61.9375rem) { + .profile-pic { + margin-top: -8rem; + align-items: center; + padding-left: 1rem; + padding-right: 1rem; } + .profile-pic img { + height: 6.688rem; + width: 6.688rem; + margin-right: 1rem; + border-width: 3px; } + .profile-pic h4, .profile-pic .h4 { + font-size: 0.7rem !important; } } + +.contacts-social span i { + height: 3.563rem; + width: 3.563rem; + background: var(--primary); + color: #fff; + border-radius: 3.563rem; + text-align: center; + line-height: 3.563rem; + font-size: 1.5rem; + display: block; } + +.bg-facebook.light { + background: rgba(71, 113, 213, 0.15); } + +.bg-linkedin.light { + background: rgba(14, 121, 179, 0.15); } + +.bg-dribble.light { + background: rgba(231, 85, 141, 0.15); } + +.bg-youtube.light { + background: rgba(251, 14, 14, 0.15); } + +.text-facebook { + color: #3D6AD6; } + +.text-linkedin { + color: #0073B1; } + +.text-dribble { + color: #EA4C89; } + +.text-youtube { + color: #FF0000; } + +.upload a { + height: 4.313rem; + width: 4.313rem; + border-radius: 4.313rem; + background: rgba(255, 255, 255, 0.2); + display: block; + text-align: center; + line-height: 4.313rem; + font-size: 2rem; + color: #fff; } + +.static-icon { + text-align: center; } + .static-icon h3, .static-icon .h3 { + font-size: 1.75rem; + font-weight: 600; } + .static-icon span i { + height: 3.813rem; + width: 3.813rem; + background: var(--rgba-primary-1); + text-align: center; + line-height: 3.813rem; + color: var(--primary); + border-radius: 3.813rem; + font-size: 1.7rem; + margin-bottom: 1rem; } + @media only screen and (max-width: 61.9375rem) { + .static-icon { + margin-bottom: 1.5rem; } } + +.shapreter-row > div { + border-right: 1px solid #eee; } + .shapreter-row > div:last-child { + border-right: 0; } +@media only screen and (max-width: 61.9375rem) { + .shapreter-row > div:nth-child(-n+3) { + border-bottom: 1px solid #eee; } + .shapreter-row > div:nth-child(n+4) { + padding-top: 1.5rem; } + .shapreter-row > div:nth-child(3) { + border-right: 0; } } +@media only screen and (max-width: 35.9375rem) { + .shapreter-row > div { + border: 0; } + .shapreter-row > div:nth-child(odd) { + border-right: 1px solid #eee; } + .shapreter-row > div:nth-child(-n+4) { + border-bottom: 1px solid #eee; } + .shapreter-row > div:nth-child(n+3) { + padding-top: 1.5rem; } } + +.bg-vigit { + background: #F6AD2E; } + +.bg-contact { + background: var(--primary); } + +.bg-follow { + background: #412EFF; } + +.action-btn span a { + padding: 0 1rem; } + +.job-table tr td { + font-weight: 600 !important; } + +/* +=================================== + Product detail +===================================*/ +.produtct-detail-tag { + display: inline-block; } + .produtct-detail-tag a { + font-style: 0.8125rem; + color: #6e6e6e; } + +.product-detail-content .item-tag { + background: #828690; + border-radius: 0.375rem; + display: inline-block; + font-size: 0.75rem; + margin-right: 0.25rem; + padding: 0.125rem 0.75rem; + color: #fff; } + +.filtaring-area h4, .filtaring-area .h4 { + color: #1d1d1d; + font-size: 1rem; + font-weight: 400; + text-transform: lowercase; } + +.plus-minus-input .input-icon { + font-size: 0.8125rem; + color: #6e6e6e; } + +.plus-minus-input { + display: flex; + width: 7.5rem; } + .plus-minus-input .custom-btn { + border-radius: 0; + height: 2.5rem; + padding: 0.75rem 0.5rem; + background: #fff; + border: 0.0625rem solid #f5f5f5; } + .plus-minus-input .form-control:hover, .plus-minus-input .form-control:focus, .plus-minus-input .form-control:active { + border: 0.0625rem solid #f5f5f5; } + +.btn-reveal-trigger .avatar-xl { + min-width: 1.875rem; } + +.share-view { + display: inline-block; } + .share-view ul li { + display: inline-block; } + .share-view .share-icon { + width: 2.5rem; + height: 2.5rem; + display: inline-block; + border: 0.0625rem solid #f5f5f5; + text-align: center; + line-height: 2.5rem; + font-style: 1rem; + color: #f5f5f5; + margin-right: 0.5rem; } + +/*--------tab----------*/ +.veritical-line { + padding: 1.25rem 1.875rem; + border-top: 0.0625rem solid #f5f5f5; + border-right: 0.0625rem solid #f5f5f5; + border-bottom: 0.0625rem solid #f5f5f5; + position: relative; } + .veritical-line:before { + background: #f5f5f5; + bottom: 0; + content: ""; + height: 100%; + left: -0.0625rem; + max-height: 40%; + position: absolute; + width: 0.0625rem; } + +.tab-content-text p { + color: #6e6e6e; + font-size: 0.8125rem; + font-weight: 400; + line-height: 1.5rem; + margin-bottom: 1.5625rem; } + +.tab-item-list li a { + background: #fff; + border-top: 0.0625rem solid #f5f5f5; + border-left: 0.0625rem solid #f5f5f5; + border-right: 0.0625rem solid #f5f5f5; + color: #6e6e6e; + display: block; + font-size: 1rem; + padding: 1rem; + text-transform: uppercase; } + .tab-item-list li a:hover, .tab-item-list li a:focus { + background: #fff; + color: #6e6e6e; + border-right: 0rem; } +.tab-item-list li:last-child { + border-bottom: 0.0625rem solid #f5f5f5; } + +.tab-list li { + margin-bottom: 0.4375rem; + font-size: 0.8125rem; } + .tab-list li i { + font-size: 0.8125rem; + margin-right: 0.875rem; } + +.slide-item-list { + text-align: center; + margin: 0 -0.3125rem; } + .slide-item-list li { + display: inline-block; + flex: 0 0 25%; + width: 25%; + padding: 0 0.3125rem; } + .slide-item-list li a { + display: inline-block; + padding-left: 0; + padding-right: 0; + padding-top: 0; + background: transparent; + padding-bottom: 0rem; } + .slide-item-list li a:hover, .slide-item-list li a:focus { + background: transparent; } + .slide-item-list li a img { + width: 100%; } + +.product-detail-text { + padding-top: 1.75rem; + padding-left: 1.875rem; + padding-right: 1.875rem; + padding-bottom: 4.375rem; } + +.star-rating .product-review { + font-style: 0.8125rem; + color: #6e6e6e; + font-weight: 400; + text-decoration: underline !important; } + +.product-detail .tab-content img { + display: inline-block; + width: 100%; } + +.popular-tag ul { + margin: 0rem; + padding: 0rem; } + .popular-tag ul li { + display: inline-block; + padding: 0.5rem 0.9375rem; + background: #f8f8f8; + font-size: 0.8125rem; + color: #fff; + margin-right: 0.625rem; + margin-bottom: 0.625rem; } + +.size-filter ul li { + display: inline-block; } + +.intro { + border: 0.0625rem solid red; + color: #1d1d1d; } + +#listResults .slider { + margin: 1.5625rem 0; } +#listResults .slider-box { + width: 90%; + margin: 1.5625rem auto; } +#listResults input { + width: 10%; } +#listResults label { + border: none; + display: inline-block; + margin-right: -0.25rem; + vertical-align: top; + width: 30%; } + +.plus-minus-input .input-icon { + font-size: 0.8125rem; + color: #aaaaaa; } +.plus-minus-input .custom-btn { + border-radius: 0; + height: 2.5rem; + padding: 0.5rem 0.75rem; + background: #ffffff; + border: 0.0625rem solid #c8c8c8; } + .plus-minus-input .custom-btn:hover, .plus-minus-input .custom-btn:focus, .plus-minus-input .custom-btn.active { + box-shadow: none; + outline: none; } +.plus-minus-input .form-control { + height: 2.5rem; + border-top: 0.0625rem solid #c8c8c8; + border-bottom: 0.0625rem solid #c8c8c8; + border-left: 0rem solid #c8c8c8; + border-right: 0.0625rem solid #c8c8c8; } + .plus-minus-input .form-control:hover, .plus-minus-input .form-control:focus, .plus-minus-input .form-control:active { + border-top: 0.0625rem solid #c8c8c8; + border-bottom: 0.0625rem solid #c8c8c8; + border-left: 0rem solid #c8c8c8; + border-right: 0rem solid #c8c8c8; } + +.new-arrival-product .new-arrivals-img-contnent { + overflow: hidden; } + .new-arrival-product .new-arrivals-img-contnent img { + width: 100%; + -webkit-transition: all 0.5s; + -ms-transition: all 0.5s; + transition: all 0.5s; } +.new-arrival-product:hover .new-arrivals-img-contnent img { + transform: scale(1.5) translateY(12%); + -moz-transform: scale(1.5) translateY(12%); + -webkit-transform: scale(1.5) translateY(12%); + -ms-transform: scale(1.5) translateY(12%); + -o-transform: scale(1.5) translateY(12%); } + +/* +=================================== + list view +===================================*/ +.new-arrival-content .item { + font-size: 0.75rem; + color: #6e6e6e; } +.new-arrival-content h4, .new-arrival-content .h4 { + font-size: 1rem; + font-weight: 600; + margin-bottom: 0.625rem; } + .new-arrival-content h4 a, .new-arrival-content .h4 a { + color: #000; } +.new-arrival-content .price { + font-weight: 600; + color: var(--primary); + font-size: 1.5rem; + margin-bottom: 0; + float: right; } + @media only screen and (max-width: 35.9375rem) { + .new-arrival-content .price { + float: none; + margin-top: 0.625rem; } } +.new-arrival-content p { + font-size: 0.875rem; + color: #828690; + margin-bottom: 0.375rem; + line-height: 1.5rem; } +.new-arrival-content .text-content { + margin-top: 1.125rem; } + +.new-arrival-content.text-center .price { + float: unset !important; } + +.success-icon { + color: #68e365; + font-size: 1rem; } + +.comment-review { + margin-bottom: 0.9375rem; + display: table; + width: 100%; } + .comment-review .client-review { + color: #828690; + padding-right: 1.25rem; + text-decoration: underline !important; + font-size: 0.875rem; } + .comment-review .span { + color: #828690; + font-size: 0.875rem; } + @media only screen and (max-width: 35.9375rem) { + .comment-review { + margin-bottom: 0; } } + +.star-rating li { + display: inline-block; } + .star-rating li i { + color: gold; } + +.rtl { + text-align: right; + direction: rtl; } + .rtl .nav { + padding-right: 0; } + .rtl .navbar-nav .nav-item { + float: right; } + .rtl .navbar-nav .nav-item + .nav-item { + margin-right: 1rem; + margin-left: inherit; } + .rtl th { + text-align: right; } + .rtl .alert-dismissible { + padding-right: 1.25rem; + padding-left: 4rem; } + .rtl .dropdown-menu { + right: 0; + text-align: right; } + .rtl .checkbox label { + padding-right: 1.25rem; + padding-left: inherit; } + .rtl .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-radius: 0 0.75rem 0.75rem 0; } + .rtl .btn-group > .btn:last-child:not(:first-child), + .rtl .btn-group > .dropdown-toggle:not(:first-child) { + border-radius: 0.75rem 0 0 0.75rem; } + .rtl .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-radius: 0.75rem 0 0 0.75rem; } + .rtl .custom-control-label::after, + .rtl .custom-control-label::before { + right: 0; + left: inherit; } + .rtl .custom-select { + padding: 0.375rem 0.75rem 0.375rem 1.75rem; + background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat left 0.75rem center; + background-size: 8px 10px; } + .rtl .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), + .rtl .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), + .rtl .input-group > .input-group-append:not(:last-child) > .btn, + .rtl .input-group > .input-group-append:not(:last-child) > .input-group-text, + .rtl .input-group > .input-group-prepend > .btn, + .rtl .input-group > .input-group-prepend > .input-group-text { + border-radius: 0 0.75rem 0.75rem 0; } + .rtl .input-group > .input-group-append > .btn, + .rtl .input-group > .input-group-append > .input-group-text, + .rtl .input-group > .input-group-prepend:first-child > .btn:not(:first-child), + .rtl .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), + .rtl .input-group > .input-group-prepend:not(:first-child) > .btn, + .rtl .input-group > .input-group-prepend:not(:first-child) > .input-group-text { + border-radius: 0.75rem 0 0 0.75rem; } + .rtl .input-group > .custom-select:not(:first-child), + .rtl .input-group > .form-control:not(:first-child) { + border-radius: 0.75rem 0 0 0.75rem; } + .rtl .input-group > .custom-select:not(:last-child), + .rtl .input-group > .form-control:not(:last-child) { + border-radius: 0 0.75rem 0.75rem 0; } + .rtl .input-group > .custom-select:not(:last-child):not(:first-child), + .rtl .input-group > .form-control:not(:last-child):not(:first-child) { + border-radius: 0; } + .rtl .custom-control { + padding-right: 1.5rem; + padding-left: inherit; + margin-right: inherit; + margin-left: 1rem; } + .rtl .custom-control-indicator { + right: 0; + left: inherit; } + .rtl .custom-file-label::after { + right: initial; + left: -1px; + border-radius: .25rem 0 0 .25rem; } + .rtl .radio input, + .rtl .radio-inline, + .rtl .checkbox input, + .rtl .checkbox-inline input { + margin-right: -1.25rem; + margin-left: inherit; } + .rtl .list-group { + padding-right: 0; + padding-left: 40px; } + .rtl .close { + float: left; } + .rtl .modal-header .close { + margin: -15px auto -15px -15px; } + .rtl .modal-footer > :not(:first-child) { + margin-right: .25rem; } + .rtl .alert-dismissible .close { + right: inherit; + left: 0; } + .rtl .dropdown-toggle::after { + margin-right: .255em; + margin-left: 0; } + .rtl .form-check-input { + margin-right: -1.25rem; + margin-left: inherit; } + .rtl .form-check-label { + padding-right: 1.25rem; + padding-left: inherit; } + .rtl .offset-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-11 { + margin-right: 91.6666666667%; + margin-left: 0; } + @media (min-width: 576px) { + .rtl .offset-sm-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-sm-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-sm-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-sm-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-sm-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-sm-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-sm-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-sm-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-sm-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-sm-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-sm-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-sm-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + @media (min-width: 768px) { + .rtl .offset-md-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-md-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-md-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-md-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-md-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-md-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-md-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-md-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-md-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-md-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-md-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-md-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + @media (min-width: 992px) { + .rtl .offset-lg-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-lg-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-lg-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-lg-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-lg-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-lg-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-lg-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-lg-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-lg-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-lg-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-lg-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-lg-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + @media (min-width: 1200px) { + .rtl .offset-xl-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-xl-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-xl-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-xl-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-xl-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-xl-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-xl-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-xl-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-xl-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-xl-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-xl-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-xl-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + @media (min-width: 1440) { + .rtl .offset-xxl-0 { + margin-right: 0; + margin-left: 0; } + .rtl .offset-xxl-1 { + margin-right: 8.3333333333%; + margin-left: 0; } + .rtl .offset-xxl-2 { + margin-right: 16.6666666667%; + margin-left: 0; } + .rtl .offset-xxl-3 { + margin-right: 25%; + margin-left: 0; } + .rtl .offset-xxl-4 { + margin-right: 33.3333333333%; + margin-left: 0; } + .rtl .offset-xxl-5 { + margin-right: 41.6666666667%; + margin-left: 0; } + .rtl .offset-xxl-6 { + margin-right: 50%; + margin-left: 0; } + .rtl .offset-xxl-7 { + margin-right: 58.3333333333%; + margin-left: 0; } + .rtl .offset-xxl-8 { + margin-right: 66.6666666667%; + margin-left: 0; } + .rtl .offset-xxl-9 { + margin-right: 75%; + margin-left: 0; } + .rtl .offset-xxl-10 { + margin-right: 83.3333333333%; + margin-left: 0; } + .rtl .offset-xxl-11 { + margin-right: 91.6666666667%; + margin-left: 0; } } + .rtl .mr-0, + .rtl .mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-0, + .rtl .mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-1, + .rtl .mx-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-1, + .rtl .mx-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-2, + .rtl .mx-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-2, + .rtl .mx-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-3, + .rtl .mx-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-3, + .rtl .mx-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-4, + .rtl .mx-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-4, + .rtl .mx-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-5, + .rtl .mx-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-5, + .rtl .mx-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-0, + .rtl .px-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-0, + .rtl .px-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-1, + .rtl .px-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-1, + .rtl .px-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-2, + .rtl .px-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-2, + .rtl .px-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-3, + .rtl .px-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-3, + .rtl .px-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-4, + .rtl .px-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-4, + .rtl .px-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-5, + .rtl .px-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-5, + .rtl .px-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-auto { + margin-right: auto !important; + margin-left: auto !important; } + @media (min-width: 576px) { + .rtl .mr-sm-0, + .rtl .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-sm-0, + .rtl .mx-sm-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-sm-1, + .rtl .mx-sm-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-sm-1, + .rtl .mx-sm-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-sm-2, + .rtl .mx-sm-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-sm-2, + .rtl .mx-sm-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-sm-3, + .rtl .mx-sm-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-sm-3, + .rtl .mx-sm-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-sm-4, + .rtl .mx-sm-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-sm-4, + .rtl .mx-sm-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-sm-5, + .rtl .mx-sm-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-sm-5, + .rtl .mx-sm-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-sm-0, + .rtl .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-sm-0, + .rtl .px-sm-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-sm-1, + .rtl .px-sm-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-sm-1, + .rtl .px-sm-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-sm-2, + .rtl .px-sm-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-sm-2, + .rtl .px-sm-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-sm-3, + .rtl .px-sm-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-sm-3, + .rtl .px-sm-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-sm-4, + .rtl .px-sm-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-sm-4, + .rtl .px-sm-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-sm-5, + .rtl .px-sm-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-sm-5, + .rtl .px-sm-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-sm-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-sm-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; } } + @media (min-width: 768px) { + .rtl .mr-md-0, + .rtl .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-md-0, + .rtl .mx-md-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-md-1, + .rtl .mx-md-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-md-1, + .rtl .mx-md-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-md-2, + .rtl .mx-md-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-md-2, + .rtl .mx-md-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-md-3, + .rtl .mx-md-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-md-3, + .rtl .mx-md-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-md-4, + .rtl .mx-md-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-md-4, + .rtl .mx-md-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-md-5, + .rtl .mx-md-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-md-5, + .rtl .mx-md-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-md-0, + .rtl .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-md-0, + .rtl .px-md-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-md-1, + .rtl .px-md-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-md-1, + .rtl .px-md-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-md-2, + .rtl .px-md-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-md-2, + .rtl .px-md-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-md-3, + .rtl .px-md-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-md-3, + .rtl .px-md-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-md-4, + .rtl .px-md-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-md-4, + .rtl .px-md-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-md-5, + .rtl .px-md-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-md-5, + .rtl .px-md-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-md-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-md-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; } } + @media (min-width: 992px) { + .rtl .mr-lg-0, + .rtl .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-lg-0, + .rtl .mx-lg-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-lg-1, + .rtl .mx-lg-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-lg-1, + .rtl .mx-lg-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-lg-2, + .rtl .mx-lg-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-lg-2, + .rtl .mx-lg-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-lg-3, + .rtl .mx-lg-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-lg-3, + .rtl .mx-lg-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-lg-4, + .rtl .mx-lg-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-lg-4, + .rtl .mx-lg-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-lg-5, + .rtl .mx-lg-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-lg-5, + .rtl .mx-lg-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-lg-0, + .rtl .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-lg-0, + .rtl .px-lg-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-lg-1, + .rtl .px-lg-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-lg-1, + .rtl .px-lg-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-lg-2, + .rtl .px-lg-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-lg-2, + .rtl .px-lg-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-lg-3, + .rtl .px-lg-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-lg-3, + .rtl .px-lg-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-lg-4, + .rtl .px-lg-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-lg-4, + .rtl .px-lg-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-lg-5, + .rtl .px-lg-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-lg-5, + .rtl .px-lg-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-lg-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-lg-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; } } + @media (min-width: 1200px) { + .rtl .mr-xl-0, + .rtl .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-xl-0, + .rtl .mx-xl-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-xl-1, + .rtl .mx-xl-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-xl-1, + .rtl .mx-xl-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-xl-2, + .rtl .mx-xl-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-xl-2, + .rtl .mx-xl-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-xl-3, + .rtl .mx-xl-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-xl-3, + .rtl .mx-xl-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-xl-4, + .rtl .mx-xl-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-xl-4, + .rtl .mx-xl-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-xl-5, + .rtl .mx-xl-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-xl-5, + .rtl .mx-xl-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-xl-0, + .rtl .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-xl-0, + .rtl .px-xl-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-xl-1, + .rtl .px-xl-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-xl-1, + .rtl .px-xl-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-xl-2, + .rtl .px-xl-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-xl-2, + .rtl .px-xl-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-xl-3, + .rtl .px-xl-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-xl-3, + .rtl .px-xl-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-xl-4, + .rtl .px-xl-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-xl-4, + .rtl .px-xl-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-xl-5, + .rtl .px-xl-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-xl-5, + .rtl .px-xl-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-xl-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-xl-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; } } + @media (min-width: 1440) { + .rtl .mr-xxl-0, + .rtl .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; } + .rtl .ml-xxl-0, + .rtl .mx-xxl-0 { + margin-left: 0 !important; + margin-right: 0 !important; } + .rtl .mr-xxl-1, + .rtl .mx-xxl-1 { + margin-right: 0 !important; + margin-left: 0.25rem !important; } + .rtl .ml-xxl-1, + .rtl .mx-xxl-1 { + margin-left: 0 !important; + margin-right: 0.25rem !important; } + .rtl .mr-xxl-2, + .rtl .mx-xxl-2 { + margin-right: 0 !important; + margin-left: 0.5rem !important; } + .rtl .ml-xxl-2, + .rtl .mx-xxl-2 { + margin-left: 0 !important; + margin-right: 0.5rem !important; } + .rtl .mr-xxl-3, + .rtl .mx-xxl-3 { + margin-right: 0 !important; + margin-left: 1rem !important; } + .rtl .ml-xxl-3, + .rtl .mx-xxl-3 { + margin-left: 0 !important; + margin-right: 1rem !important; } + .rtl .mr-xxl-4, + .rtl .mx-xxl-4 { + margin-right: 0 !important; + margin-left: 1.5rem !important; } + .rtl .ml-xxl-4, + .rtl .mx-xxl-4 { + margin-left: 0 !important; + margin-right: 1.5rem !important; } + .rtl .mr-xxl-5, + .rtl .mx-xxl-5 { + margin-right: 0 !important; + margin-left: 3rem !important; } + .rtl .ml-xxl-5, + .rtl .mx-xxl-5 { + margin-left: 0 !important; + margin-right: 3rem !important; } + .rtl .pr-xxl-0, + .rtl .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; } + .rtl .pl-xxl-0, + .rtl .px-xxl-0 { + padding-left: 0 !important; + padding-right: 0 !important; } + .rtl .pr-xxl-1, + .rtl .px-xxl-1 { + padding-right: 0 !important; + padding-left: 0.25rem !important; } + .rtl .pl-xxl-1, + .rtl .px-xxl-1 { + padding-left: 0 !important; + padding-right: 0.25rem !important; } + .rtl .pr-xxl-2, + .rtl .px-xxl-2 { + padding-right: 0 !important; + padding-left: 0.5rem !important; } + .rtl .pl-xxl-2, + .rtl .px-xxl-2 { + padding-left: 0 !important; + padding-right: 0.5rem !important; } + .rtl .pr-xxl-3, + .rtl .px-xxl-3 { + padding-right: 0 !important; + padding-left: 1rem !important; } + .rtl .pl-xxl-3, + .rtl .px-xxl-3 { + padding-left: 0 !important; + padding-right: 1rem !important; } + .rtl .pr-xxl-4, + .rtl .px-xxl-4 { + padding-right: 0 !important; + padding-left: 1.5rem !important; } + .rtl .pl-xxl-4, + .rtl .px-xxl-4 { + padding-left: 0 !important; + padding-right: 1.5rem !important; } + .rtl .pr-xxl-5, + .rtl .px-xxl-5 { + padding-right: 0 !important; + padding-left: 3rem !important; } + .rtl .pl-xxl-5, + .rtl .px-xxl-5 { + padding-left: 0 !important; + padding-right: 3rem !important; } + .rtl .mr-xxl-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .ml-xxl-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; } } + .rtl .text-right { + text-align: left !important; } + .rtl .text-left { + text-align: right !important; } + @media (min-width: 576px) { + .rtl .text-sm-right { + text-align: left !important; } + .rtl .text-sm-left { + text-align: right !important; } } + @media (min-width: 768px) { + .rtl .text-md-right { + text-align: left !important; } + .rtl .text-md-left { + text-align: right !important; } } + @media (min-width: 992px) { + .rtl .text-lg-right { + text-align: left !important; } + .rtl .text-lg-left { + text-align: right !important; } } + @media (min-width: 1200px) { + .rtl .text-xl-right { + text-align: left !important; } + .rtl .text-xl-left { + text-align: right !important; } } + @media (min-width: 1440) { + .rtl .text-xxl-right { + text-align: left !important; } + .rtl .text-xxl-left { + text-align: right !important; } } + +.rtl .mx-0 { + margin-right: auto; + margin-left: 0 !important; } +.rtl .mx-0 { + margin-left: auto; + margin-right: 0 !important; } +.rtl .mx-1 { + margin-right: auto; + margin-left: 0.25rem !important; } +.rtl .mx-1 { + margin-left: auto; + margin-right: 0.25rem !important; } +.rtl .mx-2 { + margin-right: auto; + margin-left: 0.5rem !important; } +.rtl .mx-2 { + margin-left: auto; + margin-right: 0.5rem !important; } +.rtl .mx-3 { + margin-right: auto; + margin-left: 1rem !important; } +.rtl .mx-3 { + margin-left: auto; + margin-right: 1rem !important; } +.rtl .mx-4 { + margin-right: auto; + margin-left: 1.5rem !important; } +.rtl .mx-4 { + margin-left: auto; + margin-right: 1.5rem !important; } +.rtl .mx-5 { + margin-right: auto; + margin-left: 3rem !important; } +.rtl .mx-5 { + margin-left: auto; + margin-right: 3rem !important; } +.rtl .px-0 { + padding-right: auto; + padding-left: 0 !important; } +.rtl .px-0 { + padding-left: auto; + padding-right: 0 !important; } +.rtl .px-1 { + padding-right: auto; + padding-left: 0.25rem !important; } +.rtl .px-1 { + padding-left: auto; + padding-right: 0.25rem !important; } +.rtl .px-2 { + padding-right: auto; + padding-left: 0.5rem !important; } +.rtl .px-2 { + padding-left: auto; + padding-right: 0.5rem !important; } +.rtl .px-3 { + padding-right: auto; + padding-left: 1rem !important; } +.rtl .px-3 { + padding-left: auto; + padding-right: 1rem !important; } +.rtl .px-4 { + padding-right: auto; + padding-left: 1.5rem !important; } +.rtl .px-4 { + padding-left: auto; + padding-right: 1.5rem !important; } +.rtl .px-5 { + padding-right: auto; + padding-left: 3rem !important; } +.rtl .px-5 { + padding-left: auto; + padding-right: 3rem !important; } +.rtl .mr-auto { + margin-right: 0 !important; + margin-left: auto !important; } +.rtl .mx-auto { + margin-right: auto !important; + margin-left: auto !important; } +.rtl .ml-auto { + margin-right: auto !important; + margin-left: 0 !important; } +.rtl .mx-auto { + margin-right: auto !important; + margin-left: auto !important; } +@media (min-width: 576px) { + .rtl .mx-sm-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-sm-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-sm-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-sm-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-sm-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-sm-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-sm-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-sm-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-sm-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-sm-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-sm-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-sm-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-sm-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-sm-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-sm-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-sm-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-sm-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-sm-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-sm-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-sm-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-sm-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-sm-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-sm-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-sm-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-sm-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-sm-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; } } +@media (min-width: 768px) { + .rtl .mx-md-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-md-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-md-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-md-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-md-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-md-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-md-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-md-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-md-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-md-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-md-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-md-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-md-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-md-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-md-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-md-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-md-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-md-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-md-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-md-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-md-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-md-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-md-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-md-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-md-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-md-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; } } +@media (min-width: 992px) { + .rtl .mx-lg-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-lg-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-lg-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-lg-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-lg-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-lg-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-lg-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-lg-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-lg-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-lg-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-lg-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-lg-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-lg-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-lg-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-lg-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-lg-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-lg-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-lg-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-lg-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-lg-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-lg-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-lg-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-lg-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-lg-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-lg-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-lg-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; } } +@media (min-width: 1200px) { + .rtl .mx-xl-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-xl-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-xl-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-xl-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-xl-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-xl-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-xl-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-xl-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-xl-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-xl-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-xl-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-xl-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-xl-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-xl-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-xl-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-xl-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-xl-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-xl-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-xl-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-xl-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-xl-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-xl-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-xl-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-xl-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-xl-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-xl-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; } } +@media (min-width: 1440) { + .rtl .mx-xxl-0 { + margin-right: auto; + margin-left: 0 !important; } + .rtl .mx-xxl-0 { + margin-left: auto; + margin-right: 0 !important; } + .rtl .mx-xxl-1 { + margin-right: auto; + margin-left: 0.25rem !important; } + .rtl .mx-xxl-1 { + margin-left: auto; + margin-right: 0.25rem !important; } + .rtl .mx-xxl-2 { + margin-right: auto; + margin-left: 0.5rem !important; } + .rtl .mx-xxl-2 { + margin-left: auto; + margin-right: 0.5rem !important; } + .rtl .mx-xxl-3 { + margin-right: auto; + margin-left: 1rem !important; } + .rtl .mx-xxl-3 { + margin-left: auto; + margin-right: 1rem !important; } + .rtl .mx-xxl-4 { + margin-right: auto; + margin-left: 1.5rem !important; } + .rtl .mx-xxl-4 { + margin-left: auto; + margin-right: 1.5rem !important; } + .rtl .mx-xxl-5 { + margin-right: auto; + margin-left: 3rem !important; } + .rtl .mx-xxl-5 { + margin-left: auto; + margin-right: 3rem !important; } + .rtl .px-xxl-0 { + padding-right: auto; + padding-left: 0 !important; } + .rtl .px-xxl-0 { + padding-left: auto; + padding-right: 0 !important; } + .rtl .px-xxl-1 { + padding-right: auto; + padding-left: 0.25rem !important; } + .rtl .px-xxl-1 { + padding-left: auto; + padding-right: 0.25rem !important; } + .rtl .px-xxl-2 { + padding-right: auto; + padding-left: 0.5rem !important; } + .rtl .px-xxl-2 { + padding-left: auto; + padding-right: 0.5rem !important; } + .rtl .px-xxl-3 { + padding-right: auto; + padding-left: 1rem !important; } + .rtl .px-xxl-3 { + padding-left: auto; + padding-right: 1rem !important; } + .rtl .px-xxl-4 { + padding-right: auto; + padding-left: 1.5rem !important; } + .rtl .px-xxl-4 { + padding-left: auto; + padding-right: 1.5rem !important; } + .rtl .px-xxl-5 { + padding-right: auto; + padding-left: 3rem !important; } + .rtl .px-xxl-5 { + padding-left: auto; + padding-right: 3rem !important; } + .rtl .mr-xxl-auto { + margin-right: 0 !important; + margin-left: auto !important; } + .rtl .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; } + .rtl .ml-xxl-auto { + margin-right: auto !important; + margin-left: 0 !important; } + .rtl .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; } } +.rtl .float-left { + float: right !important; } +.rtl .float-right { + float: left !important; } +.rtl .float-none { + float: none !important; } +@media (min-width: 576px) { + .rtl .float-sm-left { + float: right !important; } + .rtl .float-sm-right { + float: left !important; } + .rtl .float-sm-none { + float: none !important; } } +@media (min-width: 768px) { + .rtl .float-md-left { + float: right !important; } + .rtl .float-md-right { + float: left !important; } + .rtl .float-md-none { + float: none !important; } } +@media (min-width: 992px) { + .rtl .float-lg-left { + float: right !important; } + .rtl .float-lg-right { + float: left !important; } + .rtl .float-lg-none { + float: none !important; } } +@media (min-width: 1200px) { + .rtl .float-xl-left { + float: right !important; } + .rtl .float-xl-right { + float: left !important; } + .rtl .float-xl-none { + float: none !important; } } +@media (min-width: 1440) { + .rtl .float-xxl-left { + float: right !important; } + .rtl .float-xxl-right { + float: left !important; } + .rtl .float-xxl-none { + float: none !important; } } + +[direction="rtl"][data-theme-version="dark"] .border, [direction="rtl"][data-theme-version="dark"] .border-left, [direction="rtl"][data-theme-version="dark"] .border-right { + border-color: #2e2e42 !important; } +[direction="rtl"] .text-right { + text-align: left !important; } +[direction="rtl"] .text-left { + text-align: right !important; } +[direction="rtl"] .border-right { + border-left: 0.0625rem solid #f5f5f5 !important; + border-right: 0 !important; } +[direction="rtl"] .border-left { + border-right: 0.0625rem solid #f5f5f5 !important; + border-left: 0 !important; } +[direction="rtl"] .dropdown-menu { + left: auto; } +[direction="rtl"] .dropdown-menu-right { + left: 0; + right: auto; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .dropdown-menu-right { + left: 0.9375rem; } } +[direction="rtl"] .notification_dropdown .dropdown-menu-right .media > span { + margin-left: 0.625rem; + margin-right: 0; } + +[direction="rtl"]:not([data-container="boxed"]) .nav-header { + left: auto; + right: 0; } +[direction="rtl"][data-container="wide-boxed"] .nav-header { + left: auto; + right: auto; } +[direction="rtl"] .nav-header { + text-align: right; + right: auto; } + [direction="rtl"] .nav-header .brand-title { + margin-left: 0; + margin-right: 0.9375rem; } + [direction="rtl"] .nav-header .brand-logo { + padding-left: 0; + padding-right: 1.75rem; } + [data-sidebar-style="compact"][direction="rtl"] .nav-header .brand-logo { + padding-right: 0; } + [data-sidebar-style="compact"][direction="rtl"] .nav-header .brand-logo[data-layout="horizontal"] { + padding-right: 1.875rem; } + [data-sidebar-style="mini"][direction="rtl"] .nav-header .brand-logo { + padding-right: 0; } + [data-sidebar-style="modern"][direction="rtl"] .nav-header .brand-logo { + padding-right: 0; } + [data-layout="horizontal"][data-sidebar-style="modern"][direction="rtl"] .nav-header .brand-logo { + padding-right: 1.875rem; } + @media (max-width: 767.98px) { + [direction="rtl"] .nav-header .brand-logo { + padding-right: 0; } } +[direction="rtl"] .nav-control { + right: auto; + left: -4.0625rem; } + @media (max-width: 767.98px) { + [direction="rtl"] .nav-control { + left: -4.0625rem; } } + @media (max-width: 575.98px) { + [direction="rtl"] .nav-control { + left: -2.0625rem; } } +[direction="rtl"][data-sidebar-style="overlay"] .nav-header .hamburger.is-active { + right: 0; } + +[direction="rtl"][data-sidebar-style="compact"][data-layout="horizontal"] .nav-header .brand-logo { + padding-right: 2.5rem; } + +[direction="rtl"][data-sidebar-style="modern"][data-layout="horizontal"] .nav-header { + width: 16rem; } + +[direction="rtl"] .header { + padding: 0; + padding-right: 21.563rem; } + @media (max-width: 767.98px) { + [direction="rtl"] .header { + padding-right: 5rem; + padding-left: 0; } } + [direction="rtl"] .header .header-content { + padding-left: 1.875rem; + padding-right: 5.3125rem; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .header .header-content { + padding-right: 3.5rem; + padding-left: 0.938rem; } } + [data-sidebar-style="compact"][direction="rtl"] .header .header-content { + padding-right: 1.875rem; } + [data-sidebar-style="modern"][direction="rtl"] .header .header-content { + padding-right: 5.3125rem; } + [data-sidebar-style="overlay"][direction="rtl"] .header .header-content { + padding-right: 5.3125rem; } + @media only screen and (max-width: 35.9375rem) { + [data-sidebar-style="overlay"][direction="rtl"] .header .header-content { + padding-right: 0.5rem; } } + [direction="rtl"] .header .nav-control { + right: 0.4375rem; + left: auto; } +[direction="rtl"] .header-right > li:not(:first-child) { + padding-left: 0; + padding-right: 1.25rem; + margin-right: 0 !important; } + @media only screen and (max-width: 47.9375rem) { + [direction="rtl"] .header-right > li:not(:first-child) { + padding-right: 0.5rem; } } +[direction="rtl"] .header-right .search-area .input-group-append .input-group-text { + padding-right: auto; + padding-left: 1.25rem; } +[direction="rtl"] .header-right .search-area .form-control { + padding-left: auto; + padding-right: 1.25rem; } +[direction="rtl"] .header-right .header-profile > a.nav-link { + margin-left: auto; + padding-left: auto; + margin-right: 0.9375rem; + padding-right: 1.875rem; + border-right: 0.0625rem solid #EEEEEE; + border-left: 0; } + [direction="rtl"] .header-right .header-profile > a.nav-link .header-info { + padding-right: 1.25rem; + padding-left: auto; + text-align: right; } + @media only screen and (max-width: 87.5rem) { + [direction="rtl"] .header-right .header-profile > a.nav-link .header-info { + padding-right: 0.625rem; } } + @media only screen and (max-width: 87.5rem) { + [direction="rtl"] .header-right .header-profile > a.nav-link { + margin-right: 0.625rem; + padding-right: 1.25rem; } } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .header-right .header-profile > a.nav-link { + margin-right: 0rem; + padding-right: 0rem; + border-right: 0; } } +[direction="rtl"] .header-left .search_bar .dropdown-menu, +[direction="rtl"] .header-left .search_bar .dropdown-menu.show { + right: 2.5rem !important; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .header-left .search_bar .dropdown-menu, + [direction="rtl"] .header-left .search_bar .dropdown-menu.show { + right: -6.25rem !important; } } +[direction="rtl"] .header-left .search_bar .search_icon { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .header-left .search_bar .search_icon { + border-radius: 5rem; } } +[direction="rtl"][data-layout="horizontal"] .header { + padding: 0; + padding-right: 21.563rem; } + [direction="rtl"][data-layout="horizontal"] .header .header-content { + padding-right: 2.5rem; + padding-left: 2.5rem; } +[direction="rtl"][data-layout="horizontal"][data-sidebar-style="full"] .nav-header .brand-logo { + padding-right: 2.5rem; } +[direction="rtl"][data-layout="horizontal"][data-sidebar-style="mini"] .header { + padding-right: 7.75rem; } +[direction="rtl"][data-sidebar-style="mini"] .header { + padding-right: 6.25rem; } +[direction="rtl"][data-sidebar-style="compact"] .header { + padding: 0 0.9375rem; + padding-right: 11.25rem; } +[direction="rtl"][data-sidebar-style="compact"][data-layout="horizontal"] .header { + padding: 0; + padding-right: 21.563rem; } +[direction="rtl"][data-sidebar-style="modern"] .header { + padding: 0 0.9375rem; + padding-right: 10.625rem; } +[direction="rtl"][data-sidebar-style="modern"][data-layout="horizontal"] .header { + padding: 0; + padding-right: 16rem; } + +[direction="rtl"] { + text-align: right; } + [direction="rtl"] .dlabnav { + text-align: right; } + [direction="rtl"] .dlabnav .metismenu ul:after { + left: auto; + right: 1.5625rem; } + [direction="rtl"] .dlabnav .metismenu ul a:before { + left: auto; + right: 2.625rem; } + [data-sidebar-style="full"][direction="rtl"] .dlabnav .metismenu li > a i { + padding: 0 0 0 0; + margin-right: 0; + margin-left: 0.625rem; } + [direction="rtl"] .dlabnav .metismenu li > a svg { + margin-left: 0.3125rem; + margin-right: 0; } + [data-sidebar-style="compact"][direction="rtl"] .dlabnav .metismenu li > a svg { + left: auto; + margin-left: auto; + margin-right: auto; } + [data-sidebar-style="icon-hover"][direction="rtl"] .dlabnav .metismenu li > a svg { + margin-left: 0; } + [direction="rtl"] .dlabnav .metismenu li ul a { + padding-right: 6rem; + padding-left: 0.625rem; } + [direction="rtl"] .dlabnav .metismenu li.active > .has-arrow:after { + transform: rotate(45deg) translateY(-50%); } + [direction="rtl"] .dlabnav .metismenu .has-arrow:after { + left: 1.5625rem; + right: auto; } + [data-layout="horizontal"][direction="rtl"] .dlabnav .metismenu .has-arrow:after { + left: 1.125rem; } + [data-sidebar-style="modern"][direction="rtl"] .dlabnav .metismenu .has-arrow:after { + -webkit-transform: rotate(-45deg) translateY(-50%); + transform: rotate(-45deg) translateY(-50%); } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu > li .has-arrow:after { + left: 1.5rem; + right: auto; } + [direction="rtl"][data-sidebar-style="mini"] .dlabnav .metismenu > li > a > i { + padding: 0; } + [direction="rtl"][data-sidebar-style="mini"][data-layout="vertical"] .dlabnav .metismenu > li > ul a.has-arrow:after { + left: 1.5625rem; + right: auto; } + [direction="rtl"][data-sidebar-style="compact"] .dlabnav .metismenu li > a i { + padding: 0; + margin-left: auto; + margin-right: auto; } + [direction="rtl"][data-sidebar-style="compact"] .dlabnav .metismenu li ul a { + padding-right: 0.625rem; + padding-left: 0.625rem; } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .dlabnav .metismenu li > ul li:hover ul { + right: 11.8125rem; + left: 0; } + +[direction="rtl"] { + /* ===== Light gallery ===== */ } + [direction="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow { + left: 15px; + right: auto; } + [direction="rtl"] .input-group > .bootstrap-select:not(:first-child) .dropdown-toggle { + border-radius: 0.75rem 0 0 0.75rem; } + [direction="rtl"] .list-group { + padding-left: 0; } + [direction="rtl"] .form-check-input { + margin-left: -1.25rem; + margin-right: inherit; } + [direction="rtl"] .form-check-inline .form-check-input { + margin-right: 0; + margin-left: 10px; } + [direction="rtl"] .radio input, + [direction="rtl"] .radio-inline, + [direction="rtl"] .checkbox input, + [direction="rtl"] .checkbox-inline input { + margin-left: 0; + margin-right: 0; } + [direction="rtl"] .content-body { + margin-right: 21.563rem; + margin-left: auto; } + [data-sidebar-style="modern"][direction="rtl"] .content-body { + margin-right: 9.375rem; } + [direction="rtl"] .content-body .page-titles { + text-align: right; } + [direction="rtl"] .doctor-info-details .media-body span i, + [direction="rtl"] .recovered-chart-deta .col [class*="bg-"] { + margin-right: 0; + margin-left: 10px; } + [direction="rtl"] .patients-chart-deta .col, + [direction="rtl"] .patients-chart-deta .col [class*="bg-"], + [direction="rtl"] .recovered-chart-deta .col { + margin-right: 0; + margin-left: 15px; } + [direction="rtl"] .best-doctor .timeline .timeline-panel .media .number { + left: auto; + right: -13px; } + [direction="rtl"] .doctor-info-details .media i { + right: 0; + left: -15px; } + [direction="rtl"] .review-table .disease { + border-left: 0; + border-right: 1px solid #eee; + padding-left: 0; + padding-right: 20px; } + [direction="rtl"] .apexcharts-legend-text { + margin: 4px; } + [direction="rtl"] .doctor-info-details .media-body { + padding-left: 0; + padding-right: 40px; } + [direction="rtl"] .custom-control { + margin-left: 0; } + [direction="rtl"] .review-tab.nav-pills li:first-child a.nav-link { + border-radius: 0 0.75rem 0 0; } + [direction="rtl"] .review-tab.nav-pills li:last-child a.nav-link { + border-radius: 0.75rem 0 0 0; } + [direction="rtl"] .form-head .btn i { + margin-left: 5px; + margin-right: 0; } + [direction="rtl"] .iconbox { + padding-left: 0; + padding-right: 70px; } + [direction="rtl"] .iconbox i { + left: auto; + right: 0; } + [direction="rtl"] .table.tr-rounded tr td:first-child, [direction="rtl"] .table.tr-rounded tr th:first-child { + border-radius: 0 1.25rem 1.25rem 0; } + [direction="rtl"] .table.tr-rounded tr td:last-child, [direction="rtl"] .table.tr-rounded tr th:last-child { + border-radius: 1.25rem 0 0 1.25rem; } + [direction="rtl"] .custom-switch.toggle-switch.text-right { + padding-left: 48px; + padding-right: 0; } + [direction="rtl"] .toggle-switch.text-right .custom-control-label:before { + right: auto !important; + left: -47px; } + [direction="rtl"] .toggle-switch.text-right .custom-control-label:after { + right: auto !important; + left: -28px; } + [direction="rtl"] .toggle-switch.text-right .custom-control-input:checked ~ .custom-control-label:after { + left: -62px; + right: auto !important; } + [direction="rtl"] .check-switch { + padding-right: 40px; } + [direction="rtl"] .check-switch .custom-control-label:after, [direction="rtl"] .check-switch .custom-control-label:before { + right: -35px !important; } + [direction="rtl"] .bar-chart .apexcharts-yaxis { + transform: translatex(101%); } + [direction="rtl"] .detault-daterange .input-group-text { + padding: 0.532rem 0.75rem; + padding-right: auto; + padding-left: 0; } + [direction="rtl"] .form-wrapper .input-group .form-control { + text-align: left; } + [direction="rtl"] .timeline-chart .apexcharts-yaxis { + transform: translateX(0); } + [direction="rtl"] .card-table td:first-child { + padding-right: 30px; + padding-left: 10px; } + [direction="rtl"] .card-table td:last-child { + padding-left: 30px; + padding-right: 10px; } + [direction="rtl"] .chatbox .img_cont { + margin-right: 0px; + margin-left: 10px; } + [direction="rtl"] .profile-tab .nav-item .nav-link { + margin-right: 0; + margin-left: 30px; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .profile-tab .nav-item .nav-link { + margin-left: 0px; } } + [direction="rtl"] .widget-timeline .timeline > li > .timeline-panel { + margin-left: 0px; + margin-right: 40px; } + [direction="rtl"] .widget-timeline.style-1 .timeline .timeline-badge.timeline-badge + .timeline-panel { + padding: 5px 15px 5px 10px; + border-width: 0px 5px 0px 0px; } + [direction="rtl"] .widget-timeline.style-1 .timeline .timeline-badge.timeline-badge + .timeline-panel:after { + border: 0; + right: -9px; + width: 7px; + left: auto; + height: 7px; } + [direction="rtl"] .widget-timeline .timeline > li > .timeline-badge { + left: auto; + right: 0px; } + [direction="rtl"] .widget-timeline .timeline > li > .timeline-panel:after { + left: auto; + right: -5px; } + [direction="rtl"] .chatbox .msg_cotainer { + margin-left: 0; + margin-right: 10px; } + [direction="rtl"] .new-arrival-content .price { + float: left; } + [direction="rtl"] .input-group > .bootstrap-select:not(:first-child) .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; } + [direction="rtl"] .input-group > .bootstrap-select:not(:last-child) .dropdown-toggle { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + [direction="rtl"] .breadcrumb-item + .breadcrumb-item { + padding-right: 0.5rem; + padding-left: 0; } + [direction="rtl"] .breadcrumb-item + .breadcrumb-item::before { + padding-right: 0; + padding-left: 0.5rem; } + [direction="rtl"] .chatbox .chatbox-close { + left: 340px; + right: auto; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .chatbox .chatbox-close { + left: 280px; } } + [direction="rtl"] .separator { + margin-right: 0; + margin-left: 9px; } + [direction="rtl"] .card-tabs .nav-tabs { + padding-right: 5px; } + [direction="rtl"] .chatbox .msg_cotainer { + margin-left: 0; + margin-right: 10px; + border-radius: 1.375rem 0 1.375rem 1.375rem; } + [direction="rtl"] .chatbox .msg_cotainer:after { + left: auto; + right: -10px; + transform: rotate(-90deg); } + [direction="rtl"] .chatbox .type_msg .input-group .input-group-append .btn { + border-top-right-radius: 38px !important; + border-bottom-right-radius: 38px !important; } + [direction="rtl"] .chatbox .msg_cotainer_send { + margin-right: 0px; + margin-left: 10px; + border-radius: 0 6px 6px 6px; } + [direction="rtl"] .chatbox .msg_cotainer_send:after { + right: auto; + left: -10px; + transform: rotate(90deg); } + [direction="rtl"] .new-arrival-content .price { + float: left; } + [direction="rtl"] .trending-menus .tr-row .num { + margin-right: 0; + margin-left: 15px; } + [direction="rtl"] .default-select.style-2 .btn:after { + margin-left: 0; + margin-right: 0.5em; } + [direction="rtl"] .widget-timeline-icon li .icon { + left: auto; + right: -2px; } + [direction="rtl"] .widget-timeline-icon li a { + padding: 25px 0px 0px 50px; } + @media only screen and (max-width: 35.9375rem) { + [direction="rtl"] .widget-timeline-icon .timeline { + margin-left: 0; + margin-right: 10px; } + [direction="rtl"] .widget-timeline-icon li { + border-left: 0; + border-right: 6px solid #F93A0B; } + [direction="rtl"] .widget-timeline-icon li a { + padding: 0 30px 30px 0; } + [direction="rtl"] .widget-timeline-icon li .icon { + right: -12px; } + [direction="rtl"] .widget-timeline-icon li:last-child { + border-color: transparent; } } + [direction="rtl"] #revenueMap .apexcharts-yaxis, [direction="rtl"] #customerMapkm .apexcharts-yaxis { + transform: translateX(0px); } + [direction="rtl"] .mail-list .list-group-item i { + padding-right: 0; + padding-left: 0.625rem; } + [direction="rtl"] .dlab-demo-panel { + right: auto; + left: -380px; } + [direction="rtl"] .dlab-demo-panel.show { + right: unset; + left: 0; } + [direction="rtl"] .dlab-demo-panel .dlab-demo-trigger { + left: 100%; + right: auto; + border-radius: 0 5px 5px 0; + box-shadow: 5px 3px 5px 0px rgba(119, 119, 119, 0.15); } + [direction="rtl"][data-layout="horizontal"] .content-body { + margin-right: 0; } + [direction="rtl"][data-layout="horizontal"] .dlabnav .metismenu li li .has-arrow:after { + -webkit-transform: rotate(-4deg) translateY(-50%); + transform: rotate(-45deg) translateY(-50%); } + [direction="rtl"][data-sidebar-style="mini"]:not([data-layout="horizontal"]) .content-body { + margin-right: 6.25rem; } + [direction="rtl"][data-sidebar-style="compact"]:not([data-layout="horizontal"]) .content-body { + margin-right: 11.25rem; } + [direction="rtl"][data-sidebar-style="overlay"] .content-body { + margin-right: 0; } + [direction="rtl"] #external-events .external-event:before { + margin-right: 0; + margin-left: .9rem; } + [direction="rtl"] .post-input a i { + margin-left: 15px; + margin-right: 0; } + [direction="rtl"][data-sidebar-style="compact"] .dlabnav .metismenu .has-arrow:after { + -webkit-transform: rotate(-45deg) translateY(-50%); + transform: rotate(-45deg) translateY(-50%); } + [direction="rtl"] .dlabnav .metismenu .has-arrow:after { + -webkit-transform: rotate(-135deg) translateY(-50%); + transform: rotate(-135deg) translateY(-50%); } + [direction="rtl"] .dlabnav .metismenu .has-arrow[aria-expanded=true]:after, + [direction="rtl"] .dlabnav .metismenu .mm-active > .has-arrow:after { + -webkit-transform: rotate(-135deg) translateY(-50%); + transform: rotate(-135deg); } + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu .has-arrow[aria-expanded=true]:after, + [direction="rtl"][data-sidebar-style="full"][data-layout="vertical"] .dlabnav .metismenu .mm-active > .has-arrow:after { + -webkit-transform: rotate(-45deg) translateY(-50%); + transform: rotate(-45deg); } + [direction="rtl"] .chatbox { + left: -500px; + right: auto; } + [direction="rtl"] .chatbox.active { + left: 0; + right: auto; } + @media only screen and (max-width: 575px) { + [direction="rtl"] .best-doctor .timeline .timeline-panel .media { + float: right; + margin-right: 0 !important; + margin-left: 15px !important; } } + [direction="rtl"] .default-select.style-1 .btn:after { + margin-left: 0; + margin-right: 0.5em; } + [direction="rtl"] .pagination .page-indicator { + transform: rotate(180deg); + -moz-transform: rotate(180deg); + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); } + [direction="rtl"] .lg-outer.lg-visible { + direction: ltr; } + [direction="rtl"] .chart-point .chart-point-list { + margin: 0; + padding-right: 20px; } + [direction="rtl"] .noUi-target { + direction: rtl; } + [direction="rtl"] .noUi-vertical .noUi-pips-vertical { + left: -20px; } + [direction="rtl"] .noUi-vertical .noUi-value-vertical { + padding-left: 0; + padding-right: 25px; } + [direction="rtl"] .sidebar-right .ps--active-x > .ps__rail-x { + display: none; } + [direction="rtl"] .form-wizard .nav-wizard li .nav-link:after { + right: 50%; + left: auto; } + [direction="rtl"] .dtp > .dtp-content { + right: 50%; + left: auto; } + [direction="rtl"] .modal-header .close { + margin: 0; + left: 0; + top: 0px; + right: auto; } + [direction="rtl"] .input-group-prepend .btn + .btn { + border-radius: 0 !important; } + [direction="rtl"] .form-control + .input-group-append .btn:first-child { + border-top-right-radius: 0 !important; + border-bottom-right-radius: 0 !important; } + [direction="rtl"] .input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0.75rem; + border-top-left-radius: 0.75rem; } + [direction="rtl"] .custom-file-label::after { + border-radius: .75rem 0 0 .75rem; } + [direction="rtl"] .input-group > .custom-file:not(:last-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } + [direction="rtl"] .input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-radius: 0; } + +@media only screen and (max-width: 1350px) and (min-width: 1200px) { + [direction="rtl"] .content-body { + margin-right: 17rem; } } +[direction="rtl"] .sidebar-right { + right: auto; + left: -50rem; } + [direction="rtl"] .sidebar-right.show { + left: 5.25rem; + right: unset; } + [direction="rtl"] .sidebar-right .sidebar-right-trigger { + left: 100%; + right: auto; + border-radius: 0 5px 5px 0; + box-shadow: 5px 3px 5px 0px rgba(119, 119, 119, 0.15); } + [direction="rtl"] .sidebar-right .sidebar-close-trigger { + right: auto; + left: -48px; } +[direction="rtl"] .bootstrap-select .dropdown-toggle .filter-option { + text-align: right; } + +html[dir="rtl"] [direction="rtl"] .footer { + padding-right: 17.1875rem; + padding-left: 0; } + @media (max-width: 767.98px) { + html[dir="rtl"] [direction="rtl"] .footer { + padding-right: 0; } } +html[dir="rtl"] [direction="rtl"][data-sidebar-style="overlay"] .footer { + padding-right: 0; } +html[dir="rtl"] [direction="rtl"] .menu-toggle .footer { + padding-right: 3.75rem; } +html[dir="rtl"] [direction="rtl"][data-container="boxed"] .footer { + padding-right: 0; } +html[dir="rtl"] [direction="rtl"][data-sidebar-style="mini"]:not([data-layout="horizontal"]) .footer { + padding-right: 3.75rem; } +html[dir="rtl"] [direction="rtl"][data-sidebar-style="compact"]:not([data-layout="horizontal"]) .footer { + padding-right: 9.375rem; } + +:root { + --primary: #F93A0B; + --secondary: #145650; + --primary-hover: #cc2c05; + --primary-dark: #681703; + --rgba-primary-1: rgba(249, 58, 11, 0.1); + --rgba-primary-2: rgba(249, 58, 11, 0.2); + --rgba-primary-3: rgba(249, 58, 11, 0.3); + --rgba-primary-4: rgba(249, 58, 11, 0.4); + --rgba-primary-5: rgba(249, 58, 11, 0.5); + --rgba-primary-6: rgba(249, 58, 11, 0.6); + --rgba-primary-7: rgba(249, 58, 11, 0.7); + --rgba-primary-8: rgba(249, 58, 11, 0.8); + --rgba-primary-9: rgba(249, 58, 11, 0.9); + --font-family-base: Roboto, sans-serif; + --font-family-title: Roboto, sans-serif; + --title: #000; } + +[data-theme-version="dark"] { + background: #17171E; + color: #828690; + --nav-headbg: #212130; + --sidebar-bg: #212130; + --headerbg: #212130; } + [data-theme-version="dark"] h1, [data-theme-version="dark"] .h1, + [data-theme-version="dark"] h2, + [data-theme-version="dark"] .h2, + [data-theme-version="dark"] h3, + [data-theme-version="dark"] .h3, + [data-theme-version="dark"] h4, + [data-theme-version="dark"] .h4, + [data-theme-version="dark"] h5, + [data-theme-version="dark"] .h5, + [data-theme-version="dark"] h6, + [data-theme-version="dark"] .h6 { + color: #fff !important; } + [data-theme-version="dark"] a.link { + color: #ddd; } + [data-theme-version="dark"] a.link:focus, + [data-theme-version="dark"] a.link:hover { + color: #D653C1; } + [data-theme-version="dark"] a:hover { + color: #fff; } + [data-theme-version="dark"] .border-right { + border-right: 0.0625rem solid #2e2e42 !important; } + [data-theme-version="dark"] .border-left { + border-left: 0.0625rem solid #2e2e42 !important; } + [data-theme-version="dark"] .border-top { + border-top: 0.0625rem solid #2e2e42 !important; } + [data-theme-version="dark"] .border-bottom { + border-bottom: 0.0625rem solid #2e2e42 !important; } + [data-theme-version="dark"] .border { + border: 0.0625rem solid #2e2e42 !important; } + +[data-theme-version="dark"] .card { + background-color: #212130; + box-shadow: none; } +[data-theme-version="dark"] .dropdown-menu { + background-color: #212130; + box-shadow: 0rem 0rem 0rem 0.0625rem rgba(255, 255, 255, 0.1); } + [data-theme-version="dark"] .dropdown-menu .dropdown-item { + color: #777777; } + [data-theme-version="dark"] .dropdown-menu .dropdown-item.selected, [data-theme-version="dark"] .dropdown-menu .dropdown-item.selected.active, [data-theme-version="dark"] .dropdown-menu .dropdown-item.active, [data-theme-version="dark"] .dropdown-menu .dropdown-item:hover, [data-theme-version="dark"] .dropdown-menu .dropdown-item:focus { + background-color: #212130; + color: #fff; } +[data-theme-version="dark"] a { + color: #fff !important; } +[data-theme-version="dark"] .btn-link g [fill] { + fill: #fff; } +[data-theme-version="dark"] .btn-light:active, +[data-theme-version="dark"] .btn-light:focus, +[data-theme-version="dark"] .btn-light:hover { + color: #000; } +[data-theme-version="dark"] .form-control { + background-color: #2E2E40; + border-color: #2e2e42; + color: #fff; } +[data-theme-version="dark"] .modal-content { + background: #212130; } +[data-theme-version="dark"] .modal-footer, +[data-theme-version="dark"] .modal-header { + border-color: #2e2e42; } +[data-theme-version="dark"] .close { + font-weight: 400; + color: #fff; + text-shadow: none; } + [data-theme-version="dark"] .close:hover { + color: #fff; } +[data-theme-version="dark"] .star-rating .product-review, +[data-theme-version="dark"] .new-arrival-content .item { + color: #fff; } +[data-theme-version="dark"] .custom-dropdown .dropdown-menu { + border-color: #2e2e42; } +[data-theme-version="dark"] .widget-stat .media > span { + background: #2e2e42; + border-color: #2e2e42; + color: #fff; } +[data-theme-version="dark"] .plus-minus-input .custom-btn { + background: #17171E; + border-color: #2e2e42; } +[data-theme-version="dark"] .dropdown-divider, +[data-theme-version="dark"] .size-filter ul li { + border-color: #2e2e42; } +[data-theme-version="dark"] .custom-select { + border-color: #2e2e42; + color: #828690; + background: #17171E; } +[data-theme-version="dark"] .nav-tabs { + border-color: #2e2e42 !important; } +[data-theme-version="dark"] .mail-list .list-group-item.active i { + color: #fff; } +[data-theme-version="dark"] hr { + border-color: #2e2e42; } +[data-theme-version="dark"] .grid-col { + background: #17171E; } +[data-theme-version="dark"] .noUi-target { + border-color: #2e2e42; + border-radius: 0.5rem; + box-shadow: none; } + [data-theme-version="dark"] .noUi-target .noUi-connects { + background: #2e2e42; } +[data-theme-version="dark"] .noUi-marker-large, +[data-theme-version="dark"] .noUi-marker { + background: #2e2e42; } +[data-theme-version="dark"] .input-group-text { + background: #212130; + color: #fff; + border-color: #2e2e42; } +[data-theme-version="dark"] .note-editor.note-frame { + border-color: #2e2e42; } + [data-theme-version="dark"] .note-editor.note-frame .btn { + color: #fff; } + [data-theme-version="dark"] .note-editor.note-frame .note-editing-area .note-editable { + color: #fff; } +[data-theme-version="dark"] .widget-media .timeline .timeline-panel { + border-color: #2e2e42; } +[data-theme-version="dark"] .notification_dropdown .dropdown-menu-right .all-notification { + border-color: #2e2e42; } +[data-theme-version="dark"] #user-activity .nav-tabs .nav-link { + border-color: #2e2e42; } + [data-theme-version="dark"] #user-activity .nav-tabs .nav-link.active { + background: #17171E; + color: #fff; } +[data-theme-version="dark"] .list-group-item-action { + color: #393939; } +[data-theme-version="dark"] .list-group-item-action:focus, +[data-theme-version="dark"] .list-group-item-action:hover, +[data-theme-version="dark"] .list-group-item-action:focus { + background-color: #17171E; + border-color: #17171E; } +[data-theme-version="dark"] .list-group-item.active { + color: #fff; + border-color: var(--primary); } + [data-theme-version="dark"] .list-group-item.active:focus, [data-theme-version="dark"] .list-group-item.active:hover, [data-theme-version="dark"] .list-group-item.active:focus { + background-color: var(--primary); + border-color: var(--primary); + color: #fff; } +[data-theme-version="dark"] .swal2-popup { + background: #212130; } +[data-theme-version="dark"] .form-head .btn-outline-primary { + border-color: #2e2e42; } +[data-theme-version="dark"] .form-head .btn-outline-primary:hover { + border-color: var(--primary); } +[data-theme-version="dark"] .review-tab.nav-pills li a.nav-link.active { + background: transparent; } +[data-theme-version="dark"] .new-arrival-content h4 a, [data-theme-version="dark"] .new-arrival-content .h4 a { + color: #fff; } +[data-theme-version="dark"] .text-black { + color: #fff !important; } +[data-theme-version="dark"] .abilities-chart .ct-chart .ct-label { + fill: #fff; } +[data-theme-version="dark"] .morris_chart_height text tspan { + fill: #fff; } +[data-theme-version="dark"] .btn-link { + color: #fff; } +[data-theme-version="dark"] .order-bg { + background: #17171E; } +[data-theme-version="dark"] .detault-daterange { + background: #17171E; + color: #fff; } + [data-theme-version="dark"] .detault-daterange .input-group-text { + background: #212130; + border: 0; } +[data-theme-version="dark"] .dataTablesCard { + background-color: #212130; } +[data-theme-version="dark"] .compose-content .dropzone { + background: #17171E !important; } + [data-theme-version="dark"] .compose-content .dropzone .dlab-message .dlab-button { + color: #fff; } +[data-theme-version="dark"] .daterangepicker { + background: #17171E; + border-color: var(--primary); } + [data-theme-version="dark"] .daterangepicker .calendar-table { + border-color: var(--primary); + background: #17171E; } + [data-theme-version="dark"] .daterangepicker .calendar-table .table-condensed td:hover { + background-color: var(--primary); + color: #fff; } + [data-theme-version="dark"] .daterangepicker:after { + border-bottom: 0.375rem solid #17171E; } +[data-theme-version="dark"] .daterangepicker select.hourselect +, [data-theme-version="dark"] .daterangepicker select.minuteselect +, [data-theme-version="dark"] .daterangepicker select.secondselect +, [data-theme-version="dark"] .daterangepicker select.ampmselect { + background: #17171E; + border: 0.0625rem solid #2e2e42; + color: #fff; } +[data-theme-version="dark"] .daterangepicker td.off, +[data-theme-version="dark"] .daterangepicker td.off.in-range, +[data-theme-version="dark"] .daterangepicker td.off.start-date, +[data-theme-version="dark"] .daterangepicker td.off.end-date { + background-color: #212130; } + [data-theme-version="dark"] .daterangepicker td.off:hover, + [data-theme-version="dark"] .daterangepicker td.off.in-range:hover, + [data-theme-version="dark"] .daterangepicker td.off.start-date:hover, + [data-theme-version="dark"] .daterangepicker td.off.end-date:hover { + background-color: var(--primary); + color: #fff; } +[data-theme-version="dark"] .app-fullcalendar .fc-button { + background-color: #17171E; + border-color: var(--primary); + color: #fff; + text-shadow: none; } + [data-theme-version="dark"] .app-fullcalendar .fc-button:hover, [data-theme-version="dark"] .app-fullcalendar .fc-button.fc-stat-hover { + background-color: var(--primary); } +[data-theme-version="dark"] .swal2-popup .swal2-styled:focus { + outline: 0; + box-shadow: 0 0 0 0.125rem #2e2e42, 0 0 0 0.25rem var(--rgba-primary-1); } +[data-theme-version="dark"] .dd-handle { + border-color: #2e2e42; } +[data-theme-version="dark"] .menu-toggle .dlabnav .metismenu li > ul { + background: #212130; } +[data-theme-version="dark"] .header-right .notification_dropdown .nav-link { + border-color: #2e2e42; } +[data-theme-version="dark"] .nav-tabs .nav-link:hover, [data-theme-version="dark"] .nav-tabs .nav-link.active { + border-color: var(--primary); + background: transparent; + color: white !important; } +[data-theme-version="dark"] .clockpicker-popover .popover-content { + background-color: #212130; } +[data-theme-version="dark"] .clockpicker-plate { + background-color: #17171E; } +[data-theme-version="dark"] .clockpicker-popover .popover-title { + background-color: #17171E; + color: #fff; } +[data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link span { + background-color: #17171E; } +[data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link:after { + background: #17171E; } +[data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link.active:after, [data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link.done:after { + background: var(--primary); } +[data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link.active span +, [data-theme-version="dark"] .form-wizard .nav-wizard li .nav-link.done span { + background: var(--primary); } +[data-theme-version="dark"] .check-switch .custom-control-label:after +, [data-theme-version="dark"] .check-switch .custom-control-label:before { + border-color: var(--primary); } +[data-theme-version="dark"] .fc-unthemed .fc-today { + background: #17171E; } +[data-theme-version="dark"] .fc-unthemed .fc-divider, [data-theme-version="dark"] .fc-unthemed .fc-list-heading td, [data-theme-version="dark"] .fc-unthemed .fc-popover .fc-header { + background: #2e2e42; } +[data-theme-version="dark"] .picker__box { + background: #17171E; } + [data-theme-version="dark"] .picker__box .picker__button--clear + , [data-theme-version="dark"] .picker__box .picker__button--close + , [data-theme-version="dark"] .picker__box .picker__button--today { + background: #212130; + color: #fff; } + [data-theme-version="dark"] .picker__box .picker__button--clear:hover:before + , [data-theme-version="dark"] .picker__box .picker__button--close:hover:before + , [data-theme-version="dark"] .picker__box .picker__button--today:hover:before { + color: #fff; } +[data-theme-version="dark"] .picker { + color: #999; } +[data-theme-version="dark"] .dtp > .dtp-content { + background: #17171E; } +[data-theme-version="dark"] .dtp table.dtp-picker-days tr > td > a { + color: #68686a; } + [data-theme-version="dark"] .dtp table.dtp-picker-days tr > td > a.selected { + color: #fff; } +[data-theme-version="dark"] .order-request tbody tr { + border-color: #2e2e42; } +[data-theme-version="dark"] .card-list li { + color: #fff; } +[data-theme-version="dark"] .card-bx .change-btn:hover { + color: var(--primary); } +[data-theme-version="dark"] .invoice-card.bg-warning { + background-color: #5b3c1f !important; } +[data-theme-version="dark"] .invoice-card.bg-success { + background-color: #2a6729 !important; } +[data-theme-version="dark"] .invoice-card.bg-info { + background-color: #4c276a !important; } +[data-theme-version="dark"] .invoice-card.bg-secondary { + background-color: #1c3e52 !important; } +[data-theme-version="dark"] .user-list li { + border-color: #212130; } +[data-theme-version="dark"] .toggle-switch { + color: #fff; } +[data-theme-version="dark"] .bar-chart .apexcharts-text tspan { + fill: #969ba0; } +[data-theme-version="dark"] .bar-chart line { + stroke: #2e2e42; } +[data-theme-version="dark"] .coin-card { + background: #0f6a62; + background: -moz-linear-gradient(left, #0f6a62 0%, #084355 100%); + background: -webkit-linear-gradient(left, #0f6a62 0%, #084355 100%); + background: linear-gradient(to right, #0f6a62 0%, #084355 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f6a62', endColorstr='#084355',GradientType=1 ); } + [data-theme-version="dark"] .coin-card .coin-icon { + background: rgba(0, 0, 0, 0.2); } +[data-theme-version="dark"] .accordion.style-1 .accordion-item, [data-theme-version="dark"] .invoice-list { + border-color: #2e2e42; } +[data-theme-version="dark"] .accordion.style-1 .accordion-header.collapsed .user-info a, [data-theme-version="dark"] .accordion.style-1 .accordion-header.collapsed .user-info, [data-theme-version="dark"] .accordion.style-1 .accordion-header.collapsed > span { + color: #fff; } +[data-theme-version="dark"] .ic-card > a { + background: #25479f; } + [data-theme-version="dark"] .ic-card > a:first-child { + border-color: #25479f; } +[data-theme-version="dark"] .ic-card span { + color: #fff; } +[data-theme-version="dark"] table.dataTable thead th, [data-theme-version="dark"] table.dataTable thead td { + border-color: #2e2e42 !important; } +[data-theme-version="dark"] .form-check .form-check-input { + background: transparent; } + [data-theme-version="dark"] .form-check .form-check-input:checked { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); } +[data-theme-version="dark"] .paging_simple_numbers.dataTables_paginate { + background: #17171E; } +[data-theme-version="dark"] .dataTables_info { + color: #fff; } +[data-theme-version="dark"] .dataTables_wrapper .dataTables_paginate span .paginate_button.current, +[data-theme-version="dark"] .dataTables_wrapper .dataTables_paginate span .paginate_button:hover { + background: var(--primary); + color: #fff !important; } +[data-theme-version="dark"] .dashboard-select { + background: var(--rgba-primary-1); } +[data-theme-version="dark"] .dashboard-select .list { + background: #212130; } +[data-theme-version="dark"] .dashboard-select .option:hover, [data-theme-version="dark"] .dashboard-select .option.focus, [data-theme-version="dark"] .dashboard-select .option.selected.focus { + background: #17171E; } +[data-theme-version="dark"] .card-tabs.style-1 .nav-tabs { + background: #212130; } +[data-theme-version="dark"] .transaction-details { + border-color: #2e2e42; } +[data-theme-version="dark"] .description { + color: #fff; } +[data-theme-version="dark"] .transaction-details .amount-bx { + background: #3f250d; } + [data-theme-version="dark"] .transaction-details .amount-bx i { + background: #8d3b0c; } +[data-theme-version="dark"] .nice-select .option { + background: #212130; } +[data-theme-version="dark"] .nice-select .option:hover, [data-theme-version="dark"] .nice-select .option.focus, [data-theme-version="dark"] .nice-select .option.selected.focus { + background: #212130; } +[data-theme-version="dark"] .card-tabs.style-1 { + border-color: #2e2e42; } +[data-theme-version="dark"] .nice-select .list { + background: #17171E; } +[data-theme-version="dark"] .table-search .input-group .input-group-text { + background: #212130; } +[data-theme-version="dark"] .dark-btn svg path { + stroke: #fff; } +[data-theme-version="dark"] .bar-chart .apexcharts-legend-text { + color: #fff !important; } +[data-theme-version="dark"] .Sales tspan { + fill: #fff; } +[data-theme-version="dark"] .timeline-chart rect { + fill: #17171E; } +[data-theme-version="dark"] .header-info span { + color: #fff !important; } +[data-theme-version="dark"] .smallipop-instance.blue { + color: #fff; } +[data-theme-version="dark"] .property-map .smallipop.smallimap-mapicon .circle-marker { + border-color: #2e2e42; } +[data-theme-version="dark"] .property-features li { + color: #fff; } +[data-theme-version="dark"] .review-tabs-1 { + background: #212130; } +[data-theme-version="dark"] .coin-tabs { + background: #2E2E40; } + [data-theme-version="dark"] .coin-tabs .nav-link.active { + background: var(--primary) !important; + color: #fff; } +[data-theme-version="dark"] .separate-row > div { + border-color: #2e2e42; } +[data-theme-version="dark"] .bg-white { + background: #2E2E40 !important; } +[data-theme-version="dark"] .dlabnav .header-info2 span { + color: #fff; } +[data-theme-version="dark"] .brand-title path { + fill: #fff; } +[data-theme-version="dark"] .brand-title tspan { + fill: #fff; } +[data-theme-version="dark"] .shapreter-row > div { + border-color: #2e2e42; } +[data-theme-version="dark"] .chartBar line { + stroke: #2e2e42; } +[data-theme-version="dark"] .search-job .search-dropdown:after { + background: #2e2e42; } +[data-theme-version="dark"] .chartjs line { + stroke: #2e2e42; } +[data-theme-version="dark"] .form-label { + color: #fff; } +[data-theme-version="dark"] .datepicker-switch { + color: #fff; } +[data-theme-version="dark"] .datepicker.datepicker-dropdown td.day, [data-theme-version="dark"] .datepicker.datepicker-dropdown th.next, [data-theme-version="dark"] .datepicker.datepicker-dropdown th.prev { + color: #fff; } +[data-theme-version="dark"] .datepicker.datepicker-dropdown th.dow { + color: #fff; } +[data-theme-version="dark"] .datepicker.datepicker-dropdown th.datepicker-switch, [data-theme-version="dark"] .datepicker.datepicker-dropdown th.next, [data-theme-version="dark"] .datepicker.datepicker-dropdown th.prev { + color: #fff; } +[data-theme-version="dark"] .btn-close { + color: #fff !important; } +[data-theme-version="dark"] .bgl-secondary { + color: #fff; } +[data-theme-version="dark"] .application tr td .btn { + color: #fff; } +[data-theme-version="dark"] .btn-link svg path { + stroke: #fff; } +[data-theme-version="dark"] .alert.alert-outline-secondary, +[data-theme-version="dark"] .alert.alert-outline-dark { + color: #fff; } +[data-theme-version="dark"] .form-control-plaintext { + color: #fff; } +[data-theme-version="dark"] .timeline-panel .media-body small, [data-theme-version="dark"] .timeline-panel .media-body .small { + color: #fff; } +[data-theme-version="dark"] .jobs { + border-color: #2e2e42; } + +[data-theme-version="dark"][data-layout="vertical"][data-sidebar-position="fixed"] .header { + border-color: #2e2e42; } +[data-theme-version="dark"] .header { + border-color: #2e2e42; } +[data-theme-version="dark"] .header-left .dashboard_bar { + color: #fff; } +[data-theme-version="dark"] .header-left .search-area .form-control { + background: #17171E; } +[data-theme-version="dark"] .header-left .search-area .input-group-text { + border: 0; + background: #17171E; } + [data-theme-version="dark"] .header-left .search-area .input-group-text a { + color: #4f7086; } +[data-theme-version="dark"] .header-right .notification_dropdown .nav-link { + /* background: $d-bg!important; */ } + [data-theme-version="dark"] .header-right .notification_dropdown .nav-link .badge { + border-color: #212130; } + [data-theme-version="dark"] .header-right .notification_dropdown .nav-link svg path { + fill: #fff; } +[data-theme-version="dark"] .header-right .dropdown .nav-link { + color: #fff; } + [data-theme-version="dark"] .header-right .dropdown .nav-link:hover { + color: #fff; } +[data-theme-version="dark"] .nav-header .hamburger .line { + background: #fff !important; } +[data-theme-version="dark"] .menu-toggle .nav-header .nav-control .hamburger .line { + background-color: #fff !important; } + +[data-theme-version="dark"] .nav-header { + border-color: #2e2e42; } +[data-theme-version="dark"] .nav-control { + color: #fff; } +[data-theme-version="dark"] .brand-logo { + color: #fff; } + [data-theme-version="dark"] .brand-logo:hover { + color: #fff; } +[data-theme-version="dark"] .svg-title-path { + fill: #fff; } + +[data-theme-version="dark"] .nav-header { + border-color: #2e2e42; } +[data-theme-version="dark"] .nav-control { + color: #fff; } +[data-theme-version="dark"] .brand-logo { + color: #fff; } + [data-theme-version="dark"] .brand-logo:hover { + color: #fff; } +[data-theme-version="dark"] .svg-title-path { + fill: #fff; } + +[data-theme-version="dark"][data-sidebar-style="mini"] .dlabnav .metismenu li > ul { + background-color: #212130; } +[data-theme-version="dark"] .fixed-content-box { + background-color: #212130; } + [data-theme-version="dark"] .fixed-content-box .head-name { + background: #212130; + color: #fff; + border-color: #2e2e42; } + [data-theme-version="dark"] .fixed-content-box + .header + .dlabnav { + background-color: #17171E; } +[data-theme-version="dark"][data-layout="vertical"][data-sidebar-position="fixed"] .dlabnav { + border-color: #2e2e42; } +[data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a, [data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a { + background: transparent; } + [data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li.mm-active > a i, [data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li:hover > a i { + color: var(--primary); + background: var(--rgba-primary-1); } +[data-theme-version="dark"][data-layout="vertical"][data-sidebar-style="compact"] .dlabnav .metismenu > li a > i { + color: rgba(255, 255, 255, 0.3); } +[data-theme-version="dark"] .dlabnav .header-profile > a.nav-link { + border-color: #2e2e42; } + [data-theme-version="dark"] .dlabnav .header-profile > a.nav-link .header-info span { + color: #fff; } +[data-theme-version="dark"] .dlabnav .metismenu > li > a { + color: #b3b3b3; } +[data-theme-version="dark"] .dlabnav .metismenu > li:hover > a, [data-theme-version="dark"] .dlabnav .metismenu > li:focus > a, [data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a { + color: #fff; + /* background:var(--rgba-primary-1); */ } + [data-theme-version="dark"] .dlabnav .metismenu > li:hover > a::after, [data-theme-version="dark"] .dlabnav .metismenu > li:focus > a::after, [data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a::after { + border-top: 0.3125rem solid #b3b3b3; + border-left: 0.3125rem solid #b3b3b3; + border-bottom: 0.3125rem solid transparent; + border-right: 0.3125rem solid transparent; } + [data-theme-version="dark"] .dlabnav .metismenu > li:hover > a i, [data-theme-version="dark"] .dlabnav .metismenu > li:focus > a i, [data-theme-version="dark"] .dlabnav .metismenu > li.mm-active > a i { + color: #fff; } +[data-theme-version="dark"] .dlabnav .metismenu > li.mm-active ul ul { + background-color: transparent; } +[data-theme-version="dark"] .dlabnav .metismenu ul:after { + background-color: #2e2e42; } +[data-theme-version="dark"] .dlabnav .metismenu ul a:hover, [data-theme-version="dark"] .dlabnav .metismenu ul a:focus, [data-theme-version="dark"] .dlabnav .metismenu ul a.mm-active { + color: #fff !important; } +[data-theme-version="dark"] .dlabnav .metismenu ul a:before { + background-color: #fff; } +[data-theme-version="dark"] .dlabnav .metismenu a { + color: #b3b3b3 !important; } +[data-theme-version="dark"] .dlabnav .metismenu .has-arrow:after { + border-top: 0.3125rem solid #b3b3b3; + border-left: 0.3125rem solid #b3b3b3; + border-bottom: 0.3125rem solid transparent; + border-right: 0.3125rem solid transparent; } + +[data-theme-version="dark"] .sidebar-right .card-tabs .nav-tabs { + border-color: var(--rgba-primary-1) !important; } + [data-theme-version="dark"] .sidebar-right .card-tabs .nav-tabs .nav-item .nav-link { + color: #000 !important; } +[data-theme-version="dark"] .sidebar-right .form-control { + background: #fff; + color: #000; + border-color: #EEEEEE; } +[data-theme-version="dark"] .sidebar-right .default-select .list { + background: #fff; } + [data-theme-version="dark"] .sidebar-right .default-select .list .option.selected, [data-theme-version="dark"] .sidebar-right .default-select .list .option.focus, [data-theme-version="dark"] .sidebar-right .default-select .list .option:hover { + background: rgba(0, 0, 0, 0.05) !important; } +[data-theme-version="dark"] .sidebar-right .sidebar-right-inner > h4, [data-theme-version="dark"] .sidebar-right .sidebar-right-inner > .h4 { + color: #000 !important; } +[data-theme-version="dark"] .sidebar-right .nice-select .option { + background: #fff; } + +[data-theme-version="dark"] .footer { + background-color: transparent; } + [data-theme-version="dark"] .footer .copyright { + background-color: transparent; } + [data-theme-version="dark"] .footer .copyright p { + color: #fff; } + +/*# sourceMappingURL=style.css.map */ diff --git a/src/main/resources/static/css/style1.css b/src/main/resources/static/css/style1.css new file mode 100644 index 0000000..49a89d1 --- /dev/null +++ b/src/main/resources/static/css/style1.css @@ -0,0 +1,548 @@ +/*-------------------------------- + +avasta Web Font +Generated using nucleoapp.com + +-------------------------------- */ +@font-face { + font-family: 'avasta'; + src: url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/avasta/fonts/avasta.eot'); + src: url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/avasta/fonts/avasta.eot') format('embedded-opentype'), url('../font/avasta.woff2') format('woff2'), url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/avasta/fonts/avasta.woff') format('woff'), url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/avasta/fonts/avasta.ttf') format('truetype'), url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/avasta/fonts/avasta.svg') format('svg'); + font-weight: normal; + font-style: normal; +} +/*------------------------ + base class definition +-------------------------*/ +.icon { + display: inline-block; + font: normal normal normal 1em/1 'avasta'; + speak: none; + text-transform: none; + /* Better Font Rendering */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +/*------------------------ + change icon size +-------------------------*/ +/* relative units */ +.icon-sm { + font-size: 0.8em; +} +.icon-lg { + font-size: 1.2em; +} +/* absolute units */ +.icon-16 { + font-size: 16px; +} +.icon-32 { + font-size: 32px; +} +/*---------------------------------- + add a square/circle background +-----------------------------------*/ +.icon-bg-square, +.icon-bg-circle { + padding: 0.35em; + background-color: #eee; +} +.icon-bg-circle { + border-radius: 50%; +} +/*------------------------------------ + use icons as list item markers +-------------------------------------*/ +.icon-ul { + padding-left: 0; + list-style-type: none; +} +.icon-ul > li { + display: flex; + align-items: flex-start; + line-height: 1.4; +} +.icon-ul > li > .icon { + margin-right: 0.4em; + line-height: inherit; +} +/*------------------------ + spinning icons +-------------------------*/ +.icon-is-spinning { + -webkit-animation: icon-spin 2s infinite linear; + -moz-animation: icon-spin 2s infinite linear; + animation: icon-spin 2s infinite linear; +} +@-webkit-keyframes icon-spin { + 0% { + -webkit-transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + } +} +@-moz-keyframes icon-spin { + 0% { + -moz-transform: rotate(0deg); + } + 100% { + -moz-transform: rotate(360deg); + } +} +@keyframes icon-spin { + 0% { + -webkit-transform: rotate(0deg); + -moz-transform: rotate(0deg); + -ms-transform: rotate(0deg); + -o-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + -moz-transform: rotate(360deg); + -ms-transform: rotate(360deg); + -o-transform: rotate(360deg); + transform: rotate(360deg); + } +} +/*------------------------ + rotated/flipped icons +-------------------------*/ +.icon-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); +} +.icon-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -moz-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); + transform: rotate(180deg); +} +.icon-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -moz-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg); +} +.icon-flip-y { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0); + -webkit-transform: scale(-1, 1); + -moz-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + -o-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.icon-flip-x { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: scale(1, -1); + -moz-transform: scale(1, -1); + -ms-transform: scale(1, -1); + -o-transform: scale(1, -1); + transform: scale(1, -1); +} +/*------------------------ + icons +-------------------------*/ + +.icon-cloud-download-95::before { + content: "\ea02"; +} + +.icon-home-minimal::before { + content: "\ea03"; +} + +.icon-single-04::before { + content: "\ea04"; +} + +.icon-users-mm::before { + content: "\ea05"; +} + +.icon-webpage::before { + content: "\ea06"; +} + +.icon-layout-25::before { + content: "\ea07"; +} + +.icon-analytics::before { + content: "\ea08"; +} + +.icon-chart-pie-36::before { + content: "\ea09"; +} + +.icon-chart-bar-33::before { + content: "\ea0a"; +} + +.icon-single-copy-06::before { + content: "\ea0b"; +} + +.icon-home::before { + content: "\ea0c"; +} + +.icon-single-content-03::before { + content: "\ea0d"; +} + +.icon-bell-53::before { + content: "\ea0e"; +} + +.icon-email-84::before { + content: "\ea0f"; +} + +.icon-send::before { + content: "\ea10"; +} + +.icon-at-sign::before { + content: "\ea11"; +} + +.icon-attach-87::before { + content: "\ea12"; +} + +.icon-edit-72::before { + content: "\ea13"; +} + +.icon-tail-right::before { + content: "\ea14"; +} + +.icon-minimal-right::before { + content: "\ea15"; +} + +.icon-tail-left::before { + content: "\ea16"; +} + +.icon-minimal-left::before { + content: "\ea17"; +} + +.icon-tail-up::before { + content: "\ea18"; +} + +.icon-minimal-up::before { + content: "\ea19"; +} + +.icon-minimal-down::before { + content: "\ea1a"; +} + +.icon-tail-down::before { + content: "\ea1b"; +} + +.icon-settings-gear-64::before { + content: "\ea1c"; +} + +.icon-settings::before { + content: "\ea1d"; +} + +.icon-menu-dots::before { + content: "\ea1e"; +} + +.icon-menu-left::before { + content: "\ea1f"; +} + +.icon-funnel-40::before { + content: "\ea20"; +} + +.icon-filter::before { + content: "\ea21"; +} + +.icon-preferences-circle::before { + content: "\ea22"; +} + +.icon-check-2::before { + content: "\ea23"; +} + +.icon-cart-simple::before { + content: "\ea24"; +} + +.icon-cart-9::before { + content: "\ea25"; +} + +.icon-card-update::before { + content: "\ea26"; +} + +.icon-basket::before { + content: "\ea27"; +} + +.icon-check-circle-07::before { + content: "\ea28"; +} + +.icon-simple-remove::before { + content: "\ea29"; +} + +.icon-circle-remove::before { + content: "\ea2a"; +} + +.icon-alert-circle-exc::before { + content: "\ea2b"; +} + +.icon-bug::before { + content: "\ea2c"; +} + +.icon-share-66::before { + content: "\ea2d"; +} + +.icon-time-3::before { + content: "\ea2e"; +} + +.icon-time::before { + content: "\ea2f"; +} + +.icon-coffee::before { + content: "\ea30"; +} + +.icon-smile::before { + content: "\ea31"; +} + +.icon-sad::before { + content: "\ea32"; +} + +.icon-broken-heart::before { + content: "\ea33"; +} + +.icon-heart-2::before { + content: "\ea34"; +} + +.icon-pin-3::before { + content: "\ea35"; +} + +.icon-marker-3::before { + content: "\ea36"; +} + +.icon-globe-2::before { + content: "\ea37"; +} + +.icon-world-2::before { + content: "\ea38"; +} + +.icon-phone-2::before { + content: "\ea39"; +} + +.icon-check-square-11::before { + content: "\ea3a"; +} + +.icon-wallet-90::before { + content: "\ea3b"; +} + +.icon-credit-card::before { + content: "\ea3c"; +} + +.icon-payment::before { + content: "\ea3d"; +} + +.icon-tag::before { + content: "\ea3e"; +} + +.icon-tag-cut::before { + content: "\ea3f"; +} + +.icon-tag-content::before { + content: "\ea40"; +} + +.icon-flag-diagonal-33::before { + content: "\ea41"; +} + +.icon-triangle-right-17::before { + content: "\ea47"; +} + +.icon-puzzle-10::before { + content: "\ea48"; +} + +.icon-triangle-right-17-2::before { + content: "\ea49"; +} + +.icon-btn-play::before { + content: "\ea4a"; +} + +.icon-btn-play-2::before { + content: "\ea4b"; +} + +.icon-menu-34::before { + content: "\ea4c"; +} + +.icon-menu-left-2::before { + content: "\ea4d"; +} + +.icon-heart-2-2::before { + content: "\ea4e"; +} + +.icon-single-04-2::before { + content: "\ea4f"; +} + +.icon-users-mm-2::before { + content: "\ea50"; +} + +.icon-l-settings::before { + content: "\ea51"; +} + +.icon-book-open-2::before { + content: "\ea52"; +} + +.icon-layers-3::before { + content: "\ea53"; +} + +.icon-logo-fb-simple::before { + content: "\ea55"; +} + +.icon-logo-twitter::before { + content: "\ea56"; +} + +.icon-google::before { + content: "\ea57"; +} + +.icon-logo-pinterest::before { + content: "\ea58"; +} + +.icon-logo-instagram::before { + content: "\ea59"; +} + +.icon-logo-dribbble::before { + content: "\ea5a"; +} + +.icon-tablet-mobile::before { + content: "\ea5b"; +} + +.icon-house-search-engine::before { + content: "\ea5c"; +} + +.icon-house-pricing::before { + content: "\ea5d"; +} + +.icon-pulse-chart::before { + content: "\ea5e"; +} + +.icon-plug::before { + content: "\ea5f"; +} + +.icon-app-store::before { + content: "\ea60"; +} + +.icon-power-level::before { + content: "\ea61"; +} + +.icon-window-add::before { + content: "\ea62"; +} + +.icon-form::before { + content: "\ea63"; +} + +.icon-folder-15::before { + content: "\ea64"; +} + +.icon-lock::before { + content: "\ea65"; +} + +.icon-unlocked::before { + content: "\ea66"; +} + +.icon-e-reader::before { + content: "\ea67"; +} + +.icon-layout-grid::before { + content: "\ea68"; +} + +.icon-single-copies::before { + content: "\ea69"; +} + diff --git a/src/main/resources/static/css/themify-icons.css b/src/main/resources/static/css/themify-icons.css new file mode 100644 index 0000000..0d3e4f8 --- /dev/null +++ b/src/main/resources/static/css/themify-icons.css @@ -0,0 +1,1081 @@ +@font-face { + font-family: 'themify'; + src:url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/themify-icons/fonts/themify9f24.eot?-fvbane'); + src:url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/themify-icons/fonts/themifyd41d.eot?#iefix-fvbane') format('embedded-opentype'), + url('../font/themify.woff') format('woff'), + url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/themify-icons/fonts/themify.ttf') format('truetype'), + url('http://view.jqueryfuns.com/2021/8/26/e73ec354e91f5ab06a7c2f4ae0b80a6f/icons/themify-icons/fonts/themify9f24.svg?-fvbane#themify') format('svg'); + font-weight: normal; + font-style: normal; +} + +[class^="ti-"], [class*=" ti-"] { + font-family: 'themify'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ti-wand:before { + content: "\e600"; +} +.ti-volume:before { + content: "\e601"; +} +.ti-user:before { + content: "\e602"; +} +.ti-unlock:before { + content: "\e603"; +} +.ti-unlink:before { + content: "\e604"; +} +.ti-trash:before { + content: "\e605"; +} +.ti-thought:before { + content: "\e606"; +} +.ti-target:before { + content: "\e607"; +} +.ti-tag:before { + content: "\e608"; +} +.ti-tablet:before { + content: "\e609"; +} +.ti-star:before { + content: "\e60a"; +} +.ti-spray:before { + content: "\e60b"; +} +.ti-signal:before { + content: "\e60c"; +} +.ti-shopping-cart:before { + content: "\e60d"; +} +.ti-shopping-cart-full:before { + content: "\e60e"; +} +.ti-settings:before { + content: "\e60f"; +} +.ti-search:before { + content: "\e610"; +} +.ti-zoom-in:before { + content: "\e611"; +} +.ti-zoom-out:before { + content: "\e612"; +} +.ti-cut:before { + content: "\e613"; +} +.ti-ruler:before { + content: "\e614"; +} +.ti-ruler-pencil:before { + content: "\e615"; +} +.ti-ruler-alt:before { + content: "\e616"; +} +.ti-bookmark:before { + content: "\e617"; +} +.ti-bookmark-alt:before { + content: "\e618"; +} +.ti-reload:before { + content: "\e619"; +} +.ti-plus:before { + content: "\e61a"; +} +.ti-pin:before { + content: "\e61b"; +} +.ti-pencil:before { + content: "\e61c"; +} +.ti-pencil-alt:before { + content: "\e61d"; +} +.ti-paint-roller:before { + content: "\e61e"; +} +.ti-paint-bucket:before { + content: "\e61f"; +} +.ti-na:before { + content: "\e620"; +} +.ti-mobile:before { + content: "\e621"; +} +.ti-minus:before { + content: "\e622"; +} +.ti-medall:before { + content: "\e623"; +} +.ti-medall-alt:before { + content: "\e624"; +} +.ti-marker:before { + content: "\e625"; +} +.ti-marker-alt:before { + content: "\e626"; +} +.ti-arrow-up:before { + content: "\e627"; +} +.ti-arrow-right:before { + content: "\e628"; +} +.ti-arrow-left:before { + content: "\e629"; +} +.ti-arrow-down:before { + content: "\e62a"; +} +.ti-lock:before { + content: "\e62b"; +} +.ti-location-arrow:before { + content: "\e62c"; +} +.ti-link:before { + content: "\e62d"; +} +.ti-layout:before { + content: "\e62e"; +} +.ti-layers:before { + content: "\e62f"; +} +.ti-layers-alt:before { + content: "\e630"; +} +.ti-key:before { + content: "\e631"; +} +.ti-import:before { + content: "\e632"; +} +.ti-image:before { + content: "\e633"; +} +.ti-heart:before { + content: "\e634"; +} +.ti-heart-broken:before { + content: "\e635"; +} +.ti-hand-stop:before { + content: "\e636"; +} +.ti-hand-open:before { + content: "\e637"; +} +.ti-hand-drag:before { + content: "\e638"; +} +.ti-folder:before { + content: "\e639"; +} +.ti-flag:before { + content: "\e63a"; +} +.ti-flag-alt:before { + content: "\e63b"; +} +.ti-flag-alt-2:before { + content: "\e63c"; +} +.ti-eye:before { + content: "\e63d"; +} +.ti-export:before { + content: "\e63e"; +} +.ti-exchange-vertical:before { + content: "\e63f"; +} +.ti-desktop:before { + content: "\e640"; +} +.ti-cup:before { + content: "\e641"; +} +.ti-crown:before { + content: "\e642"; +} +.ti-comments:before { + content: "\e643"; +} +.ti-comment:before { + content: "\e644"; +} +.ti-comment-alt:before { + content: "\e645"; +} +.ti-close:before { + content: "\e646"; +} +.ti-clip:before { + content: "\e647"; +} +.ti-angle-up:before { + content: "\e648"; +} +.ti-angle-right:before { + content: "\e649"; +} +.ti-angle-left:before { + content: "\e64a"; +} +.ti-angle-down:before { + content: "\e64b"; +} +.ti-check:before { + content: "\e64c"; +} +.ti-check-box:before { + content: "\e64d"; +} +.ti-camera:before { + content: "\e64e"; +} +.ti-announcement:before { + content: "\e64f"; +} +.ti-brush:before { + content: "\e650"; +} +.ti-briefcase:before { + content: "\e651"; +} +.ti-bolt:before { + content: "\e652"; +} +.ti-bolt-alt:before { + content: "\e653"; +} +.ti-blackboard:before { + content: "\e654"; +} +.ti-bag:before { + content: "\e655"; +} +.ti-move:before { + content: "\e656"; +} +.ti-arrows-vertical:before { + content: "\e657"; +} +.ti-arrows-horizontal:before { + content: "\e658"; +} +.ti-fullscreen:before { + content: "\e659"; +} +.ti-arrow-top-right:before { + content: "\e65a"; +} +.ti-arrow-top-left:before { + content: "\e65b"; +} +.ti-arrow-circle-up:before { + content: "\e65c"; +} +.ti-arrow-circle-right:before { + content: "\e65d"; +} +.ti-arrow-circle-left:before { + content: "\e65e"; +} +.ti-arrow-circle-down:before { + content: "\e65f"; +} +.ti-angle-double-up:before { + content: "\e660"; +} +.ti-angle-double-right:before { + content: "\e661"; +} +.ti-angle-double-left:before { + content: "\e662"; +} +.ti-angle-double-down:before { + content: "\e663"; +} +.ti-zip:before { + content: "\e664"; +} +.ti-world:before { + content: "\e665"; +} +.ti-wheelchair:before { + content: "\e666"; +} +.ti-view-list:before { + content: "\e667"; +} +.ti-view-list-alt:before { + content: "\e668"; +} +.ti-view-grid:before { + content: "\e669"; +} +.ti-uppercase:before { + content: "\e66a"; +} +.ti-upload:before { + content: "\e66b"; +} +.ti-underline:before { + content: "\e66c"; +} +.ti-truck:before { + content: "\e66d"; +} +.ti-timer:before { + content: "\e66e"; +} +.ti-ticket:before { + content: "\e66f"; +} +.ti-thumb-up:before { + content: "\e670"; +} +.ti-thumb-down:before { + content: "\e671"; +} +.ti-text:before { + content: "\e672"; +} +.ti-stats-up:before { + content: "\e673"; +} +.ti-stats-down:before { + content: "\e674"; +} +.ti-split-v:before { + content: "\e675"; +} +.ti-split-h:before { + content: "\e676"; +} +.ti-smallcap:before { + content: "\e677"; +} +.ti-shine:before { + content: "\e678"; +} +.ti-shift-right:before { + content: "\e679"; +} +.ti-shift-left:before { + content: "\e67a"; +} +.ti-shield:before { + content: "\e67b"; +} +.ti-notepad:before { + content: "\e67c"; +} +.ti-server:before { + content: "\e67d"; +} +.ti-quote-right:before { + content: "\e67e"; +} +.ti-quote-left:before { + content: "\e67f"; +} +.ti-pulse:before { + content: "\e680"; +} +.ti-printer:before { + content: "\e681"; +} +.ti-power-off:before { + content: "\e682"; +} +.ti-plug:before { + content: "\e683"; +} +.ti-pie-chart:before { + content: "\e684"; +} +.ti-paragraph:before { + content: "\e685"; +} +.ti-panel:before { + content: "\e686"; +} +.ti-package:before { + content: "\e687"; +} +.ti-music:before { + content: "\e688"; +} +.ti-music-alt:before { + content: "\e689"; +} +.ti-mouse:before { + content: "\e68a"; +} +.ti-mouse-alt:before { + content: "\e68b"; +} +.ti-money:before { + content: "\e68c"; +} +.ti-microphone:before { + content: "\e68d"; +} +.ti-menu:before { + content: "\e68e"; +} +.ti-menu-alt:before { + content: "\e68f"; +} +.ti-map:before { + content: "\e690"; +} +.ti-map-alt:before { + content: "\e691"; +} +.ti-loop:before { + content: "\e692"; +} +.ti-location-pin:before { + content: "\e693"; +} +.ti-list:before { + content: "\e694"; +} +.ti-light-bulb:before { + content: "\e695"; +} +.ti-Italic:before { + content: "\e696"; +} +.ti-info:before { + content: "\e697"; +} +.ti-infinite:before { + content: "\e698"; +} +.ti-id-badge:before { + content: "\e699"; +} +.ti-hummer:before { + content: "\e69a"; +} +.ti-home:before { + content: "\e69b"; +} +.ti-help:before { + content: "\e69c"; +} +.ti-headphone:before { + content: "\e69d"; +} +.ti-harddrives:before { + content: "\e69e"; +} +.ti-harddrive:before { + content: "\e69f"; +} +.ti-gift:before { + content: "\e6a0"; +} +.ti-game:before { + content: "\e6a1"; +} +.ti-filter:before { + content: "\e6a2"; +} +.ti-files:before { + content: "\e6a3"; +} +.ti-file:before { + content: "\e6a4"; +} +.ti-eraser:before { + content: "\e6a5"; +} +.ti-envelope:before { + content: "\e6a6"; +} +.ti-download:before { + content: "\e6a7"; +} +.ti-direction:before { + content: "\e6a8"; +} +.ti-direction-alt:before { + content: "\e6a9"; +} +.ti-dashboard:before { + content: "\e6aa"; +} +.ti-control-stop:before { + content: "\e6ab"; +} +.ti-control-shuffle:before { + content: "\e6ac"; +} +.ti-control-play:before { + content: "\e6ad"; +} +.ti-control-pause:before { + content: "\e6ae"; +} +.ti-control-forward:before { + content: "\e6af"; +} +.ti-control-backward:before { + content: "\e6b0"; +} +.ti-cloud:before { + content: "\e6b1"; +} +.ti-cloud-up:before { + content: "\e6b2"; +} +.ti-cloud-down:before { + content: "\e6b3"; +} +.ti-clipboard:before { + content: "\e6b4"; +} +.ti-car:before { + content: "\e6b5"; +} +.ti-calendar:before { + content: "\e6b6"; +} +.ti-book:before { + content: "\e6b7"; +} +.ti-bell:before { + content: "\e6b8"; +} +.ti-basketball:before { + content: "\e6b9"; +} +.ti-bar-chart:before { + content: "\e6ba"; +} +.ti-bar-chart-alt:before { + content: "\e6bb"; +} +.ti-back-right:before { + content: "\e6bc"; +} +.ti-back-left:before { + content: "\e6bd"; +} +.ti-arrows-corner:before { + content: "\e6be"; +} +.ti-archive:before { + content: "\e6bf"; +} +.ti-anchor:before { + content: "\e6c0"; +} +.ti-align-right:before { + content: "\e6c1"; +} +.ti-align-left:before { + content: "\e6c2"; +} +.ti-align-justify:before { + content: "\e6c3"; +} +.ti-align-center:before { + content: "\e6c4"; +} +.ti-alert:before { + content: "\e6c5"; +} +.ti-alarm-clock:before { + content: "\e6c6"; +} +.ti-agenda:before { + content: "\e6c7"; +} +.ti-write:before { + content: "\e6c8"; +} +.ti-window:before { + content: "\e6c9"; +} +.ti-widgetized:before { + content: "\e6ca"; +} +.ti-widget:before { + content: "\e6cb"; +} +.ti-widget-alt:before { + content: "\e6cc"; +} +.ti-wallet:before { + content: "\e6cd"; +} +.ti-video-clapper:before { + content: "\e6ce"; +} +.ti-video-camera:before { + content: "\e6cf"; +} +.ti-vector:before { + content: "\e6d0"; +} +.ti-themify-logo:before { + content: "\e6d1"; +} +.ti-themify-favicon:before { + content: "\e6d2"; +} +.ti-themify-favicon-alt:before { + content: "\e6d3"; +} +.ti-support:before { + content: "\e6d4"; +} +.ti-stamp:before { + content: "\e6d5"; +} +.ti-split-v-alt:before { + content: "\e6d6"; +} +.ti-slice:before { + content: "\e6d7"; +} +.ti-shortcode:before { + content: "\e6d8"; +} +.ti-shift-right-alt:before { + content: "\e6d9"; +} +.ti-shift-left-alt:before { + content: "\e6da"; +} +.ti-ruler-alt-2:before { + content: "\e6db"; +} +.ti-receipt:before { + content: "\e6dc"; +} +.ti-pin2:before { + content: "\e6dd"; +} +.ti-pin-alt:before { + content: "\e6de"; +} +.ti-pencil-alt2:before { + content: "\e6df"; +} +.ti-palette:before { + content: "\e6e0"; +} +.ti-more:before { + content: "\e6e1"; +} +.ti-more-alt:before { + content: "\e6e2"; +} +.ti-microphone-alt:before { + content: "\e6e3"; +} +.ti-magnet:before { + content: "\e6e4"; +} +.ti-line-double:before { + content: "\e6e5"; +} +.ti-line-dotted:before { + content: "\e6e6"; +} +.ti-line-dashed:before { + content: "\e6e7"; +} +.ti-layout-width-full:before { + content: "\e6e8"; +} +.ti-layout-width-default:before { + content: "\e6e9"; +} +.ti-layout-width-default-alt:before { + content: "\e6ea"; +} +.ti-layout-tab:before { + content: "\e6eb"; +} +.ti-layout-tab-window:before { + content: "\e6ec"; +} +.ti-layout-tab-v:before { + content: "\e6ed"; +} +.ti-layout-tab-min:before { + content: "\e6ee"; +} +.ti-layout-slider:before { + content: "\e6ef"; +} +.ti-layout-slider-alt:before { + content: "\e6f0"; +} +.ti-layout-sidebar-right:before { + content: "\e6f1"; +} +.ti-layout-sidebar-none:before { + content: "\e6f2"; +} +.ti-layout-sidebar-left:before { + content: "\e6f3"; +} +.ti-layout-placeholder:before { + content: "\e6f4"; +} +.ti-layout-menu:before { + content: "\e6f5"; +} +.ti-layout-menu-v:before { + content: "\e6f6"; +} +.ti-layout-menu-separated:before { + content: "\e6f7"; +} +.ti-layout-menu-full:before { + content: "\e6f8"; +} +.ti-layout-media-right-alt:before { + content: "\e6f9"; +} +.ti-layout-media-right:before { + content: "\e6fa"; +} +.ti-layout-media-overlay:before { + content: "\e6fb"; +} +.ti-layout-media-overlay-alt:before { + content: "\e6fc"; +} +.ti-layout-media-overlay-alt-2:before { + content: "\e6fd"; +} +.ti-layout-media-left-alt:before { + content: "\e6fe"; +} +.ti-layout-media-left:before { + content: "\e6ff"; +} +.ti-layout-media-center-alt:before { + content: "\e700"; +} +.ti-layout-media-center:before { + content: "\e701"; +} +.ti-layout-list-thumb:before { + content: "\e702"; +} +.ti-layout-list-thumb-alt:before { + content: "\e703"; +} +.ti-layout-list-post:before { + content: "\e704"; +} +.ti-layout-list-large-image:before { + content: "\e705"; +} +.ti-layout-line-solid:before { + content: "\e706"; +} +.ti-layout-grid4:before { + content: "\e707"; +} +.ti-layout-grid3:before { + content: "\e708"; +} +.ti-layout-grid2:before { + content: "\e709"; +} +.ti-layout-grid2-thumb:before { + content: "\e70a"; +} +.ti-layout-cta-right:before { + content: "\e70b"; +} +.ti-layout-cta-left:before { + content: "\e70c"; +} +.ti-layout-cta-center:before { + content: "\e70d"; +} +.ti-layout-cta-btn-right:before { + content: "\e70e"; +} +.ti-layout-cta-btn-left:before { + content: "\e70f"; +} +.ti-layout-column4:before { + content: "\e710"; +} +.ti-layout-column3:before { + content: "\e711"; +} +.ti-layout-column2:before { + content: "\e712"; +} +.ti-layout-accordion-separated:before { + content: "\e713"; +} +.ti-layout-accordion-merged:before { + content: "\e714"; +} +.ti-layout-accordion-list:before { + content: "\e715"; +} +.ti-ink-pen:before { + content: "\e716"; +} +.ti-info-alt:before { + content: "\e717"; +} +.ti-help-alt:before { + content: "\e718"; +} +.ti-headphone-alt:before { + content: "\e719"; +} +.ti-hand-point-up:before { + content: "\e71a"; +} +.ti-hand-point-right:before { + content: "\e71b"; +} +.ti-hand-point-left:before { + content: "\e71c"; +} +.ti-hand-point-down:before { + content: "\e71d"; +} +.ti-gallery:before { + content: "\e71e"; +} +.ti-face-smile:before { + content: "\e71f"; +} +.ti-face-sad:before { + content: "\e720"; +} +.ti-credit-card:before { + content: "\e721"; +} +.ti-control-skip-forward:before { + content: "\e722"; +} +.ti-control-skip-backward:before { + content: "\e723"; +} +.ti-control-record:before { + content: "\e724"; +} +.ti-control-eject:before { + content: "\e725"; +} +.ti-comments-smiley:before { + content: "\e726"; +} +.ti-brush-alt:before { + content: "\e727"; +} +.ti-youtube:before { + content: "\e728"; +} +.ti-vimeo:before { + content: "\e729"; +} +.ti-twitter:before { + content: "\e72a"; +} +.ti-time:before { + content: "\e72b"; +} +.ti-tumblr:before { + content: "\e72c"; +} +.ti-skype:before { + content: "\e72d"; +} +.ti-share:before { + content: "\e72e"; +} +.ti-share-alt:before { + content: "\e72f"; +} +.ti-rocket:before { + content: "\e730"; +} +.ti-pinterest:before { + content: "\e731"; +} +.ti-new-window:before { + content: "\e732"; +} +.ti-microsoft:before { + content: "\e733"; +} +.ti-list-ol:before { + content: "\e734"; +} +.ti-linkedin:before { + content: "\e735"; +} +.ti-layout-sidebar-2:before { + content: "\e736"; +} +.ti-layout-grid4-alt:before { + content: "\e737"; +} +.ti-layout-grid3-alt:before { + content: "\e738"; +} +.ti-layout-grid2-alt:before { + content: "\e739"; +} +.ti-layout-column4-alt:before { + content: "\e73a"; +} +.ti-layout-column3-alt:before { + content: "\e73b"; +} +.ti-layout-column2-alt:before { + content: "\e73c"; +} +.ti-instagram:before { + content: "\e73d"; +} +.ti-google:before { + content: "\e73e"; +} +.ti-github:before { + content: "\e73f"; +} +.ti-flickr:before { + content: "\e740"; +} +.ti-facebook:before { + content: "\e741"; +} +.ti-dropbox:before { + content: "\e742"; +} +.ti-dribbble:before { + content: "\e743"; +} +.ti-apple:before { + content: "\e744"; +} +.ti-android:before { + content: "\e745"; +} +.ti-save:before { + content: "\e746"; +} +.ti-save-alt:before { + content: "\e747"; +} +.ti-yahoo:before { + content: "\e748"; +} +.ti-wordpress:before { + content: "\e749"; +} +.ti-vimeo-alt:before { + content: "\e74a"; +} +.ti-twitter-alt:before { + content: "\e74b"; +} +.ti-tumblr-alt:before { + content: "\e74c"; +} +.ti-trello:before { + content: "\e74d"; +} +.ti-stack-overflow:before { + content: "\e74e"; +} +.ti-soundcloud:before { + content: "\e74f"; +} +.ti-sharethis:before { + content: "\e750"; +} +.ti-sharethis-alt:before { + content: "\e751"; +} +.ti-reddit:before { + content: "\e752"; +} +.ti-pinterest-alt:before { + content: "\e753"; +} +.ti-microsoft-alt:before { + content: "\e754"; +} +.ti-linux:before { + content: "\e755"; +} +.ti-jsfiddle:before { + content: "\e756"; +} +.ti-joomla:before { + content: "\e757"; +} +.ti-html5:before { + content: "\e758"; +} +.ti-flickr-alt:before { + content: "\e759"; +} +.ti-email:before { + content: "\e75a"; +} +.ti-drupal:before { + content: "\e75b"; +} +.ti-dropbox-alt:before { + content: "\e75c"; +} +.ti-css3:before { + content: "\e75d"; +} +.ti-rss:before { + content: "\e75e"; +} +.ti-rss-alt:before { + content: "\e75f"; +} diff --git a/src/main/resources/static/error/400.html b/src/main/resources/static/error/400.html new file mode 100644 index 0000000..bf65cba --- /dev/null +++ b/src/main/resources/static/error/400.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + Error + + + + + + + +
+
+
+
+
+

400

+

Bad Request

+

Your Request resulted in an error

+ +
+
+
+
+
+ + + + + + + \ No newline at end of file diff --git a/src/main/resources/static/error/403.html b/src/main/resources/static/error/403.html new file mode 100644 index 0000000..0b64bdd --- /dev/null +++ b/src/main/resources/static/error/403.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + Error + + + + + + +
+
+
+
+
+

403

+

Forbidden Error!

+

You do not have permission to view this resource.

+ +
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/src/main/resources/static/error/404.html b/src/main/resources/static/error/404.html new file mode 100644 index 0000000..9bcf3cb --- /dev/null +++ b/src/main/resources/static/error/404.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + Error + + + + + + +
+
+
+
+
+

404

+

The page you were looking for is not found!

+

You may have mistyped the address or the page may have moved.

+ +
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/src/main/resources/static/error/500.html b/src/main/resources/static/error/500.html new file mode 100644 index 0000000..c4c9f5d --- /dev/null +++ b/src/main/resources/static/error/500.html @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + Error + + + + + + + +
+
+
+
+
+

500

+

Internal Server Error

+

You do not have permission to view this resource

+ +
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/src/main/resources/static/error/503.html b/src/main/resources/static/error/503.html new file mode 100644 index 0000000..915f41b --- /dev/null +++ b/src/main/resources/static/error/503.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + Error + + + + + + +
+
+
+
+
+

503

+

Service Unavailable

+

Sorry, we are under maintenance!

+ +
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/src/main/resources/static/font/Flaticon.woff b/src/main/resources/static/font/Flaticon.woff new file mode 100644 index 0000000..8945bae Binary files /dev/null and b/src/main/resources/static/font/Flaticon.woff differ diff --git a/src/main/resources/static/font/Flaticon_1.woff2 b/src/main/resources/static/font/Flaticon_1.woff2 new file mode 100644 index 0000000..f5e584c Binary files /dev/null and b/src/main/resources/static/font/Flaticon_1.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3g3D_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3g3D_u50.woff2 new file mode 100644 index 0000000..ab63d2b Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3g3D_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gTD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gTD_u50.woff2 new file mode 100644 index 0000000..4d91b4a Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gTD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gbD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gbD_u50.woff2 new file mode 100644 index 0000000..5973df5 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gbD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gfD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gfD_u50.woff2 new file mode 100644 index 0000000..3e0ca95 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gfD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gnD_g.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gnD_g.woff2 new file mode 100644 index 0000000..51a33e8 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_ZpC3gnD_g.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3g3D_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3g3D_u50.woff2 new file mode 100644 index 0000000..c8fda3f Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3g3D_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gTD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gTD_u50.woff2 new file mode 100644 index 0000000..ac3de80 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gTD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gbD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gbD_u50.woff2 new file mode 100644 index 0000000..9333457 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gbD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gfD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gfD_u50.woff2 new file mode 100644 index 0000000..7d8585b Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gfD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gnD_g.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gnD_g.woff2 new file mode 100644 index 0000000..f3ce798 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_bZF3gnD_g.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3g3D_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3g3D_u50.woff2 new file mode 100644 index 0000000..2d74500 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3g3D_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gTD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gTD_u50.woff2 new file mode 100644 index 0000000..313d139 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gTD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gbD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gbD_u50.woff2 new file mode 100644 index 0000000..2236be0 Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gbD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gfD_u50.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gfD_u50.woff2 new file mode 100644 index 0000000..3fa894a Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gfD_u50.woff2 differ diff --git a/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2 b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2 new file mode 100644 index 0000000..51ea61a Binary files /dev/null and b/src/main/resources/static/font/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2 differ diff --git a/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 new file mode 100644 index 0000000..aa8048f Binary files /dev/null and b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2 differ diff --git a/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 new file mode 100644 index 0000000..4e30f9a Binary files /dev/null and b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2 differ diff --git a/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 new file mode 100644 index 0000000..7a103af Binary files /dev/null and b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2 differ diff --git a/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 new file mode 100644 index 0000000..ace7e23 Binary files /dev/null and b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2 differ diff --git a/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 new file mode 100644 index 0000000..c9f3817 Binary files /dev/null and b/src/main/resources/static/font/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2 new file mode 100644 index 0000000..f1bfb05 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fBBc4.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fBBc4.woff2 new file mode 100644 index 0000000..ce795fa Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fBBc4.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2 new file mode 100644 index 0000000..ccd9633 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2 new file mode 100644 index 0000000..67e5402 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2 new file mode 100644 index 0000000..e6f9427 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2 new file mode 100644 index 0000000..7ef9a92 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2 new file mode 100644 index 0000000..01c0cc8 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 new file mode 100644 index 0000000..302573d Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfBBc4.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfBBc4.woff2 new file mode 100644 index 0000000..01d05fa Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfBBc4.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 new file mode 100644 index 0000000..c60e39e Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 new file mode 100644 index 0000000..cffab73 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 new file mode 100644 index 0000000..c22fa9b Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 new file mode 100644 index 0000000..9ae3035 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 new file mode 100644 index 0000000..6e0da69 Binary files /dev/null and b/src/main/resources/static/font/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 differ diff --git a/src/main/resources/static/font/KFOmCnqEu92Fr1Mu4WxKOzY.woff2 b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu4WxKOzY.woff2 new file mode 100644 index 0000000..fa0d664 Binary files /dev/null and b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu4WxKOzY.woff2 differ diff --git a/src/main/resources/static/font/KFOmCnqEu92Fr1Mu4mxK.woff2 b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu4mxK.woff2 new file mode 100644 index 0000000..ebe1795 Binary files /dev/null and b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu4mxK.woff2 differ diff --git a/src/main/resources/static/font/KFOmCnqEu92Fr1Mu5mxKOzY.woff2 b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu5mxKOzY.woff2 new file mode 100644 index 0000000..f1b8ed7 Binary files /dev/null and b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu5mxKOzY.woff2 differ diff --git a/src/main/resources/static/font/KFOmCnqEu92Fr1Mu72xKOzY.woff2 b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu72xKOzY.woff2 new file mode 100644 index 0000000..c6d7d06 Binary files /dev/null and b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu72xKOzY.woff2 differ diff --git a/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 new file mode 100644 index 0000000..e2f7d27 Binary files /dev/null and b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 differ diff --git a/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7WxKOzY.woff2 b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7WxKOzY.woff2 new file mode 100644 index 0000000..d5ca3ce Binary files /dev/null and b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7WxKOzY.woff2 differ diff --git a/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7mxKOzY.woff2 b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7mxKOzY.woff2 new file mode 100644 index 0000000..84fcce1 Binary files /dev/null and b/src/main/resources/static/font/KFOmCnqEu92Fr1Mu7mxKOzY.woff2 differ diff --git a/src/main/resources/static/font/SLXGc1nY6HkvalIhTps.woff2 b/src/main/resources/static/font/SLXGc1nY6HkvalIhTps.woff2 new file mode 100644 index 0000000..1d96815 Binary files /dev/null and b/src/main/resources/static/font/SLXGc1nY6HkvalIhTps.woff2 differ diff --git a/src/main/resources/static/font/SLXGc1nY6HkvalIkTpu0xg.woff2 b/src/main/resources/static/font/SLXGc1nY6HkvalIkTpu0xg.woff2 new file mode 100644 index 0000000..8de1f6e Binary files /dev/null and b/src/main/resources/static/font/SLXGc1nY6HkvalIkTpu0xg.woff2 differ diff --git a/src/main/resources/static/font/SLXGc1nY6HkvalIvTpu0xg.woff2 b/src/main/resources/static/font/SLXGc1nY6HkvalIvTpu0xg.woff2 new file mode 100644 index 0000000..790d06c Binary files /dev/null and b/src/main/resources/static/font/SLXGc1nY6HkvalIvTpu0xg.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6F59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6F59ZMaA.woff2 new file mode 100644 index 0000000..ef2b529 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6F59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6L59Y.woff2 b/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6L59Y.woff2 new file mode 100644 index 0000000..50f0ee0 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6L59Y.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6O59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6O59ZMaA.woff2 new file mode 100644 index 0000000..b548071 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6HkvalqKbI6O59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46F59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46F59ZMaA.woff2 new file mode 100644 index 0000000..7fe8899 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46F59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46L59Y.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46L59Y.woff2 new file mode 100644 index 0000000..14db0cf Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46L59Y.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46O59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46O59ZMaA.woff2 new file mode 100644 index 0000000..550fc55 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalqaa46O59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6F59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6F59ZMaA.woff2 new file mode 100644 index 0000000..be5a72b Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6F59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6L59Y.woff2 b/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6L59Y.woff2 new file mode 100644 index 0000000..66f72ca Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6L59Y.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6O59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6O59ZMaA.woff2 new file mode 100644 index 0000000..2e43718 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6HkvalqiaY6O59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6F59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6F59ZMaA.woff2 new file mode 100644 index 0000000..6faed16 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6F59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6L59Y.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6L59Y.woff2 new file mode 100644 index 0000000..c20db7c Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6L59Y.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6O59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6O59ZMaA.woff2 new file mode 100644 index 0000000..fc9869a Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalr-ao6O59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalrub46F59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalrub46F59ZMaA.woff2 new file mode 100644 index 0000000..f56fe41 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalrub46F59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalrub46L59Y.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalrub46L59Y.woff2 new file mode 100644 index 0000000..65cae4b Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalrub46L59Y.woff2 differ diff --git a/src/main/resources/static/font/SLXLc1nY6Hkvalrub46O59ZMaA.woff2 b/src/main/resources/static/font/SLXLc1nY6Hkvalrub46O59ZMaA.woff2 new file mode 100644 index 0000000..0b375d1 Binary files /dev/null and b/src/main/resources/static/font/SLXLc1nY6Hkvalrub46O59ZMaA.woff2 differ diff --git a/src/main/resources/static/font/Simple-Line-Icons4c82.ttf b/src/main/resources/static/font/Simple-Line-Icons4c82.ttf new file mode 100644 index 0000000..ecf85a4 Binary files /dev/null and b/src/main/resources/static/font/Simple-Line-Icons4c82.ttf differ diff --git a/src/main/resources/static/font/XRXV3I6Li01BKofIMeaBXso.woff2 b/src/main/resources/static/font/XRXV3I6Li01BKofIMeaBXso.woff2 new file mode 100644 index 0000000..cadafd3 Binary files /dev/null and b/src/main/resources/static/font/XRXV3I6Li01BKofIMeaBXso.woff2 differ diff --git a/src/main/resources/static/font/XRXV3I6Li01BKofINeaB.woff2 b/src/main/resources/static/font/XRXV3I6Li01BKofINeaB.woff2 new file mode 100644 index 0000000..2f9cc59 Binary files /dev/null and b/src/main/resources/static/font/XRXV3I6Li01BKofINeaB.woff2 differ diff --git a/src/main/resources/static/font/XRXV3I6Li01BKofIO-aBXso.woff2 b/src/main/resources/static/font/XRXV3I6Li01BKofIO-aBXso.woff2 new file mode 100644 index 0000000..d859e4d Binary files /dev/null and b/src/main/resources/static/font/XRXV3I6Li01BKofIO-aBXso.woff2 differ diff --git a/src/main/resources/static/font/XRXV3I6Li01BKofIOOaBXso.woff2 b/src/main/resources/static/font/XRXV3I6Li01BKofIOOaBXso.woff2 new file mode 100644 index 0000000..5539f2e Binary files /dev/null and b/src/main/resources/static/font/XRXV3I6Li01BKofIOOaBXso.woff2 differ diff --git a/src/main/resources/static/font/XRXV3I6Li01BKofIOuaBXso.woff2 b/src/main/resources/static/font/XRXV3I6Li01BKofIOuaBXso.woff2 new file mode 100644 index 0000000..29df398 Binary files /dev/null and b/src/main/resources/static/font/XRXV3I6Li01BKofIOuaBXso.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUYevI.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUYevI.woff2 new file mode 100644 index 0000000..1b7b39b Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUYevI.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUZevISTs.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUZevISTs.woff2 new file mode 100644 index 0000000..da51240 Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUZevISTs.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUb-vISTs.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUb-vISTs.woff2 new file mode 100644 index 0000000..4644424 Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUb-vISTs.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUbOvISTs.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUbOvISTs.woff2 new file mode 100644 index 0000000..76cbb29 Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUbOvISTs.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUbuvISTs.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUbuvISTs.woff2 new file mode 100644 index 0000000..8dce110 Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofA6sKUbuvISTs.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUYevI.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUYevI.woff2 new file mode 100644 index 0000000..243810e Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUYevI.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUZevISTs.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUZevISTs.woff2 new file mode 100644 index 0000000..2b4950f Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUZevISTs.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUb-vISTs.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUb-vISTs.woff2 new file mode 100644 index 0000000..0f95acb Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUb-vISTs.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUbOvISTs.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUbOvISTs.woff2 new file mode 100644 index 0000000..9f49fc1 Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUbOvISTs.woff2 differ diff --git a/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUbuvISTs.woff2 b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUbuvISTs.woff2 new file mode 100644 index 0000000..efcc26d Binary files /dev/null and b/src/main/resources/static/font/XRXW3I6Li01BKofAjsOUbuvISTs.woff2 differ diff --git a/src/main/resources/static/font/avasta.woff2 b/src/main/resources/static/font/avasta.woff2 new file mode 100644 index 0000000..c1693f2 Binary files /dev/null and b/src/main/resources/static/font/avasta.woff2 differ diff --git a/src/main/resources/static/font/fa-brands-400.woff2 b/src/main/resources/static/font/fa-brands-400.woff2 new file mode 100644 index 0000000..b8a8f65 Binary files /dev/null and b/src/main/resources/static/font/fa-brands-400.woff2 differ diff --git a/src/main/resources/static/font/fa-regular-400.woff2 b/src/main/resources/static/font/fa-regular-400.woff2 new file mode 100644 index 0000000..9df490e Binary files /dev/null and b/src/main/resources/static/font/fa-regular-400.woff2 differ diff --git a/src/main/resources/static/font/fa-solid-900.woff2 b/src/main/resources/static/font/fa-solid-900.woff2 new file mode 100644 index 0000000..dc52d95 Binary files /dev/null and b/src/main/resources/static/font/fa-solid-900.woff2 differ diff --git a/src/main/resources/static/font/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 b/src/main/resources/static/font/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 new file mode 100644 index 0000000..28fc9e4 Binary files /dev/null and b/src/main/resources/static/font/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 differ diff --git a/src/main/resources/static/font/la-solid-900.woff2 b/src/main/resources/static/font/la-solid-900.woff2 new file mode 100644 index 0000000..22e909c Binary files /dev/null and b/src/main/resources/static/font/la-solid-900.woff2 differ diff --git a/src/main/resources/static/font/lg.woff b/src/main/resources/static/font/lg.woff new file mode 100644 index 0000000..d98ff60 Binary files /dev/null and b/src/main/resources/static/font/lg.woff differ diff --git a/src/main/resources/static/font/materialdesignicons-webfont.woff2 b/src/main/resources/static/font/materialdesignicons-webfont.woff2 new file mode 100644 index 0000000..e6be581 Binary files /dev/null and b/src/main/resources/static/font/materialdesignicons-webfont.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOUehpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOUehpOqc.woff2 new file mode 100644 index 0000000..eff71c0 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOUehpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOUuhp.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOUuhp.woff2 new file mode 100644 index 0000000..b251084 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOUuhp.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOVuhpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOVuhpOqc.woff2 new file mode 100644 index 0000000..43d5a7c Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOVuhpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOX-hpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOX-hpOqc.woff2 new file mode 100644 index 0000000..f1ae685 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOX-hpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXOhpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXOhpOqc.woff2 new file mode 100644 index 0000000..c805bc0 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXOhpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXehpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXehpOqc.woff2 new file mode 100644 index 0000000..f1b2ddb Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXehpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXuhpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXuhpOqc.woff2 new file mode 100644 index 0000000..1302cd5 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UN7rgOXuhpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOUehpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOUehpOqc.woff2 new file mode 100644 index 0000000..59855dc Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOUehpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOUuhp.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOUuhp.woff2 new file mode 100644 index 0000000..301f31d Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOUuhp.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOVuhpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOVuhpOqc.woff2 new file mode 100644 index 0000000..f8a4ea3 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOVuhpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOX-hpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOX-hpOqc.woff2 new file mode 100644 index 0000000..4587c68 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOX-hpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXOhpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXOhpOqc.woff2 new file mode 100644 index 0000000..83b1803 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXOhpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXehpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXehpOqc.woff2 new file mode 100644 index 0000000..85ea2fa Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXehpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXuhpOqc.woff2 b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXuhpOqc.woff2 new file mode 100644 index 0000000..9a9a5c6 Binary files /dev/null and b/src/main/resources/static/font/mem5YaGs126MiZpBA-UNirkOXuhpOqc.woff2 differ diff --git a/src/main/resources/static/font/mem8YaGs126MiZpBA-UFUZ0bbck.woff2 b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFUZ0bbck.woff2 new file mode 100644 index 0000000..4c5a6f0 Binary files /dev/null and b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFUZ0bbck.woff2 differ diff --git a/src/main/resources/static/font/mem8YaGs126MiZpBA-UFVZ0b.woff2 b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFVZ0b.woff2 new file mode 100644 index 0000000..c813f9c Binary files /dev/null and b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFVZ0b.woff2 differ diff --git a/src/main/resources/static/font/mem8YaGs126MiZpBA-UFVp0bbck.woff2 b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFVp0bbck.woff2 new file mode 100644 index 0000000..3770a39 Binary files /dev/null and b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFVp0bbck.woff2 differ diff --git a/src/main/resources/static/font/mem8YaGs126MiZpBA-UFW50bbck.woff2 b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFW50bbck.woff2 new file mode 100644 index 0000000..4e74089 Binary files /dev/null and b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFW50bbck.woff2 differ diff --git a/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWJ0bbck.woff2 b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWJ0bbck.woff2 new file mode 100644 index 0000000..1f2f588 Binary files /dev/null and b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWJ0bbck.woff2 differ diff --git a/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWZ0bbck.woff2 b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWZ0bbck.woff2 new file mode 100644 index 0000000..1675bab Binary files /dev/null and b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWZ0bbck.woff2 differ diff --git a/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWp0bbck.woff2 b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWp0bbck.woff2 new file mode 100644 index 0000000..156e746 Binary files /dev/null and b/src/main/resources/static/font/mem8YaGs126MiZpBA-UFWp0bbck.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2 new file mode 100644 index 0000000..b97a331 Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2 new file mode 100644 index 0000000..d65ff93 Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2 new file mode 100644 index 0000000..52cbd3a Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2 new file mode 100644 index 0000000..2a9dd5f Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2 new file mode 100644 index 0000000..e4a8193 Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2 new file mode 100644 index 0000000..e1fcb14 Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2 new file mode 100644 index 0000000..5fbd3aa Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2 new file mode 100644 index 0000000..1d33e14 Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2 new file mode 100644 index 0000000..025dca3 Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2 new file mode 100644 index 0000000..92eb63a Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2 new file mode 100644 index 0000000..b35b9f7 Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2 new file mode 100644 index 0000000..53e8d4d Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2 new file mode 100644 index 0000000..f8ab873 Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2 new file mode 100644 index 0000000..4130d6d Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2 differ diff --git a/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2 b/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2 new file mode 100644 index 0000000..bb0923b Binary files /dev/null and b/src/main/resources/static/font/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2 differ diff --git a/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJbecmNE.woff2 b/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJbecmNE.woff2 new file mode 100644 index 0000000..bb8c300 Binary files /dev/null and b/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJbecmNE.woff2 differ diff --git a/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJfecg.woff2 b/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJfecg.woff2 new file mode 100644 index 0000000..36195bd Binary files /dev/null and b/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJfecg.woff2 differ diff --git a/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJnecmNE.woff2 b/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJnecmNE.woff2 new file mode 100644 index 0000000..25e6e4e Binary files /dev/null and b/src/main/resources/static/font/pxiEyp8kv8JHgFVrJJnecmNE.woff2 differ diff --git a/src/main/resources/static/font/themify.woff b/src/main/resources/static/font/themify.woff new file mode 100644 index 0000000..847ebd1 Binary files /dev/null and b/src/main/resources/static/font/themify.woff differ diff --git a/src/main/resources/static/image/cover.jpg b/src/main/resources/static/image/cover.jpg new file mode 100644 index 0000000..43d3a4b Binary files /dev/null and b/src/main/resources/static/image/cover.jpg differ diff --git a/src/main/resources/static/image/dots1.png b/src/main/resources/static/image/dots1.png new file mode 100644 index 0000000..66e51bf Binary files /dev/null and b/src/main/resources/static/image/dots1.png differ diff --git a/src/main/resources/static/image/like.png b/src/main/resources/static/image/like.png new file mode 100644 index 0000000..c226cc8 Binary files /dev/null and b/src/main/resources/static/image/like.png differ diff --git a/src/main/resources/static/image/loading.gif b/src/main/resources/static/image/loading.gif new file mode 100644 index 0000000..4744c45 Binary files /dev/null and b/src/main/resources/static/image/loading.gif differ diff --git a/src/main/resources/static/image/pattern5.png b/src/main/resources/static/image/pattern5.png new file mode 100644 index 0000000..3a35116 Binary files /dev/null and b/src/main/resources/static/image/pattern5.png differ diff --git a/src/main/resources/static/js/bootstrap-select.min.js b/src/main/resources/static/js/bootstrap-select.min.js new file mode 100644 index 0000000..c6a8117 --- /dev/null +++ b/src/main/resources/static/js/bootstrap-select.min.js @@ -0,0 +1,9 @@ +/*! + * Bootstrap-select v1.13.15 (https://developer.snapappointments.com/bootstrap-select) + * + * Copyright 2012-2020 SnapAppointments, LLC + * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) + */ + +!function(e,t){void 0===e&&void 0!==window&&(e=window),"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery")):t(e.jQuery)}(this,function(e){!function(z){"use strict";var d=["sanitize","whiteList","sanitizeFn"],r=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],e={"*":["class","dir","id","lang","role","tabindex","style",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},l=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,a=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function v(e,t){var i=e.nodeName.toLowerCase();if(-1!==z.inArray(i,t))return-1===z.inArray(i,r)||Boolean(e.nodeValue.match(l)||e.nodeValue.match(a));for(var s=z(t).filter(function(e,t){return t instanceof RegExp}),n=0,o=s.length;n]+>/g,"")),s&&(a=w(a)),a=a.toUpperCase(),o="contains"===i?0<=a.indexOf(t):a.startsWith(t)))break}return o}function L(e){return parseInt(e,10)||0}z.fn.triggerNative=function(e){var t,i=this[0];i.dispatchEvent?(u?t=new Event(e,{bubbles:!0}):(t=document.createEvent("Event")).initEvent(e,!0,!1),i.dispatchEvent(t)):i.fireEvent?((t=document.createEventObject()).eventType=e,i.fireEvent("on"+e,t)):this.trigger(e)};var f={"\xc0":"A","\xc1":"A","\xc2":"A","\xc3":"A","\xc4":"A","\xc5":"A","\xe0":"a","\xe1":"a","\xe2":"a","\xe3":"a","\xe4":"a","\xe5":"a","\xc7":"C","\xe7":"c","\xd0":"D","\xf0":"d","\xc8":"E","\xc9":"E","\xca":"E","\xcb":"E","\xe8":"e","\xe9":"e","\xea":"e","\xeb":"e","\xcc":"I","\xcd":"I","\xce":"I","\xcf":"I","\xec":"i","\xed":"i","\xee":"i","\xef":"i","\xd1":"N","\xf1":"n","\xd2":"O","\xd3":"O","\xd4":"O","\xd5":"O","\xd6":"O","\xd8":"O","\xf2":"o","\xf3":"o","\xf4":"o","\xf5":"o","\xf6":"o","\xf8":"o","\xd9":"U","\xda":"U","\xdb":"U","\xdc":"U","\xf9":"u","\xfa":"u","\xfb":"u","\xfc":"u","\xdd":"Y","\xfd":"y","\xff":"y","\xc6":"Ae","\xe6":"ae","\xde":"Th","\xfe":"th","\xdf":"ss","\u0100":"A","\u0102":"A","\u0104":"A","\u0101":"a","\u0103":"a","\u0105":"a","\u0106":"C","\u0108":"C","\u010a":"C","\u010c":"C","\u0107":"c","\u0109":"c","\u010b":"c","\u010d":"c","\u010e":"D","\u0110":"D","\u010f":"d","\u0111":"d","\u0112":"E","\u0114":"E","\u0116":"E","\u0118":"E","\u011a":"E","\u0113":"e","\u0115":"e","\u0117":"e","\u0119":"e","\u011b":"e","\u011c":"G","\u011e":"G","\u0120":"G","\u0122":"G","\u011d":"g","\u011f":"g","\u0121":"g","\u0123":"g","\u0124":"H","\u0126":"H","\u0125":"h","\u0127":"h","\u0128":"I","\u012a":"I","\u012c":"I","\u012e":"I","\u0130":"I","\u0129":"i","\u012b":"i","\u012d":"i","\u012f":"i","\u0131":"i","\u0134":"J","\u0135":"j","\u0136":"K","\u0137":"k","\u0138":"k","\u0139":"L","\u013b":"L","\u013d":"L","\u013f":"L","\u0141":"L","\u013a":"l","\u013c":"l","\u013e":"l","\u0140":"l","\u0142":"l","\u0143":"N","\u0145":"N","\u0147":"N","\u014a":"N","\u0144":"n","\u0146":"n","\u0148":"n","\u014b":"n","\u014c":"O","\u014e":"O","\u0150":"O","\u014d":"o","\u014f":"o","\u0151":"o","\u0154":"R","\u0156":"R","\u0158":"R","\u0155":"r","\u0157":"r","\u0159":"r","\u015a":"S","\u015c":"S","\u015e":"S","\u0160":"S","\u015b":"s","\u015d":"s","\u015f":"s","\u0161":"s","\u0162":"T","\u0164":"T","\u0166":"T","\u0163":"t","\u0165":"t","\u0167":"t","\u0168":"U","\u016a":"U","\u016c":"U","\u016e":"U","\u0170":"U","\u0172":"U","\u0169":"u","\u016b":"u","\u016d":"u","\u016f":"u","\u0171":"u","\u0173":"u","\u0174":"W","\u0175":"w","\u0176":"Y","\u0177":"y","\u0178":"Y","\u0179":"Z","\u017b":"Z","\u017d":"Z","\u017a":"z","\u017c":"z","\u017e":"z","\u0132":"IJ","\u0133":"ij","\u0152":"Oe","\u0153":"oe","\u0149":"'n","\u017f":"s"},m=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,g=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\u1ab0-\\u1aff\\u1dc0-\\u1dff]","g");function b(e){return f[e]}function w(e){return(e=e.toString())&&e.replace(m,b).replace(g,"")}var I,x,y,$,S=(I={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},x="(?:"+Object.keys(I).join("|")+")",y=RegExp(x),$=RegExp(x,"g"),function(e){return e=null==e?"":""+e,y.test(e)?e.replace($,E):e});function E(e){return I[e]}var C={32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",65:"A",66:"B",67:"C",68:"D",69:"E",70:"F",71:"G",72:"H",73:"I",74:"J",75:"K",76:"L",77:"M",78:"N",79:"O",80:"P",81:"Q",82:"R",83:"S",84:"T",85:"U",86:"V",87:"W",88:"X",89:"Y",90:"Z",96:"0",97:"1",98:"2",99:"3",100:"4",101:"5",102:"6",103:"7",104:"8",105:"9"},N=27,D=13,H=32,W=9,B=38,M=40,R={success:!1,major:"3"};try{R.full=(z.fn.dropdown.Constructor.VERSION||"").split(" ")[0].split("."),R.major=R.full[0],R.success=!0}catch(e){}var U=0,j=".bs.select",V={DISABLED:"disabled",DIVIDER:"divider",SHOW:"open",DROPUP:"dropup",MENU:"dropdown-menu",MENURIGHT:"dropdown-menu-right",MENULEFT:"dropdown-menu-left",BUTTONCLASS:"btn-default",POPOVERHEADER:"popover-title",ICONBASE:"glyphicon",TICKICON:"glyphicon-ok"},F={MENU:"."+V.MENU},_={span:document.createElement("span"),i:document.createElement("i"),subtext:document.createElement("small"),a:document.createElement("a"),li:document.createElement("li"),whitespace:document.createTextNode("\xa0"),fragment:document.createDocumentFragment()};_.a.setAttribute("role","option"),"4"===R.major&&(_.a.className="dropdown-item"),_.subtext.className="text-muted",_.text=_.span.cloneNode(!1),_.text.className="text",_.checkMark=_.span.cloneNode(!1);var G=new RegExp(B+"|"+M),q=new RegExp("^"+W+"$|"+N),K={li:function(e,t,i){var s=_.li.cloneNode(!1);return e&&(1===e.nodeType||11===e.nodeType?s.appendChild(e):s.innerHTML=e),void 0!==t&&""!==t&&(s.className=t),null!=i&&s.classList.add("optgroup-"+i),s},a:function(e,t,i){var s=_.a.cloneNode(!0);return e&&(11===e.nodeType?s.appendChild(e):s.insertAdjacentHTML("beforeend",e)),void 0!==t&&""!==t&&s.classList.add.apply(s.classList,t.split(" ")),i&&s.setAttribute("style",i),s},text:function(e,t){var i,s,n=_.text.cloneNode(!1);if(e.content)n.innerHTML=e.content;else{if(n.textContent=e.text,e.icon){var o=_.whitespace.cloneNode(!1);(s=(!0===t?_.i:_.span).cloneNode(!1)).className=this.options.iconBase+" "+e.icon,_.fragment.appendChild(s),_.fragment.appendChild(o)}e.subtext&&((i=_.subtext.cloneNode(!1)).textContent=e.subtext,n.appendChild(i))}if(!0===t)for(;0'},maxOptions:!1,mobile:!1,selectOnTab:!1,dropdownAlignRight:!1,windowPadding:0,virtualScroll:600,display:!1,sanitize:!0,sanitizeFn:null,whiteList:e},Y.prototype={constructor:Y,init:function(){var i=this,e=this.$element.attr("id");U++,this.selectId="bs-select-"+U,this.$element[0].classList.add("bs-select-hidden"),this.multiple=this.$element.prop("multiple"),this.autofocus=this.$element.prop("autofocus"),this.$element[0].classList.contains("show-tick")&&(this.options.showTick=!0),this.$newElement=this.createDropdown(),this.buildData(),this.$element.after(this.$newElement).prependTo(this.$newElement),this.$button=this.$newElement.children("button"),this.$menu=this.$newElement.children(F.MENU),this.$menuInner=this.$menu.children(".inner"),this.$searchbox=this.$menu.find("input"),this.$element[0].classList.remove("bs-select-hidden"),!0===this.options.dropdownAlignRight&&this.$menu[0].classList.add(V.MENURIGHT),void 0!==e&&this.$button.attr("data-id",e),this.checkDisabled(),this.clickListener(),this.options.liveSearch?(this.liveSearchListener(),this.focusedParent=this.$searchbox[0]):this.focusedParent=this.$menuInner[0],this.setStyle(),this.render(),this.setWidth(),this.options.container?this.selectPosition():this.$element.on("hide"+j,function(){if(i.isVirtual()){var e=i.$menuInner[0],t=e.firstChild.cloneNode(!1);e.replaceChild(t,e.firstChild),e.scrollTop=0}}),this.$menu.data("this",this),this.$newElement.data("this",this),this.options.mobile&&this.mobile(),this.$newElement.on({"hide.bs.dropdown":function(e){i.$element.trigger("hide"+j,e)},"hidden.bs.dropdown":function(e){i.$element.trigger("hidden"+j,e)},"show.bs.dropdown":function(e){i.$element.trigger("show"+j,e)},"shown.bs.dropdown":function(e){i.$element.trigger("shown"+j,e)}}),i.$element[0].hasAttribute("required")&&this.$element.on("invalid"+j,function(){i.$button[0].classList.add("bs-invalid"),i.$element.on("shown"+j+".invalid",function(){i.$element.val(i.$element.val()).off("shown"+j+".invalid")}).on("rendered"+j,function(){this.validity.valid&&i.$button[0].classList.remove("bs-invalid"),i.$element.off("rendered"+j)}),i.$button.on("blur"+j,function(){i.$element.trigger("focus").trigger("blur"),i.$button.off("blur"+j)})}),setTimeout(function(){i.buildList(),i.$element.trigger("loaded"+j)})},createDropdown:function(){var e=this.multiple||this.options.showTick?" show-tick":"",t=this.multiple?' aria-multiselectable="true"':"",i="",s=this.autofocus?" autofocus":"";R.major<4&&this.$element.parent().hasClass("input-group")&&(i=" input-group-btn");var n,o="",r="",l="",a="";return this.options.header&&(o='
'+this.options.header+"
"),this.options.liveSearch&&(r=''),this.multiple&&this.options.actionsBox&&(l='
"),this.multiple&&this.options.doneButton&&(a='
"),n='",z(n)},setPositionData:function(){this.selectpicker.view.canHighlight=[];for(var e=this.selectpicker.view.size=0;e=this.options.virtualScroll||!0===this.options.virtualScroll},createView:function(A,e,t){var L,N,D=this,i=0,H=[];if(this.selectpicker.isSearching=A,this.selectpicker.current=A?this.selectpicker.search:this.selectpicker.main,this.setPositionData(),e)if(t)i=this.$menuInner[0].scrollTop;else if(!D.multiple){var s=D.$element[0],n=(s.options[s.selectedIndex]||{}).liIndex;if("number"==typeof n&&!1!==D.options.size){var o=D.selectpicker.main.data[n],r=o&&o.position;r&&(i=r-(D.sizeInfo.menuInnerHeight+D.sizeInfo.liHeight)/2)}}function l(e,t){var i,s,n,o,r,l,a,c,d=D.selectpicker.current.elements.length,h=[],p=!0,u=D.isVirtual();D.selectpicker.view.scrollTop=e,i=Math.ceil(D.sizeInfo.menuInnerHeight/D.sizeInfo.liHeight*1.5),s=Math.round(d/i)||1;for(var f=0;fd-1?0:D.selectpicker.current.data[d-1].position-D.selectpicker.current.data[D.selectpicker.view.position1-1].position,b.firstChild.style.marginTop=v+"px",b.firstChild.style.marginBottom=g+"px"):(b.firstChild.style.marginTop=0,b.firstChild.style.marginBottom=0),b.firstChild.appendChild(w),!0===u&&D.sizeInfo.hasScrollBar){var C=b.firstChild.offsetWidth;if(t&&CD.sizeInfo.selectWidth)b.firstChild.style.minWidth=D.sizeInfo.menuInnerInnerWidth+"px";else if(C>D.sizeInfo.menuInnerInnerWidth){D.$menu[0].style.minWidth=0;var O=b.firstChild.offsetWidth;O>D.sizeInfo.menuInnerInnerWidth&&(D.sizeInfo.menuInnerInnerWidth=O,b.firstChild.style.minWidth=D.sizeInfo.menuInnerInnerWidth+"px"),D.$menu[0].style.minWidth=""}}}if(D.prevActiveIndex=D.activeIndex,D.options.liveSearch){if(A&&t){var z,T=0;D.selectpicker.view.canHighlight[T]||(T=1+D.selectpicker.view.canHighlight.slice(1).indexOf(!0)),z=D.selectpicker.view.visibleElements[T],D.defocusItem(D.selectpicker.view.currentActive),D.activeIndex=(D.selectpicker.current.data[T]||{}).index,D.focusItem(z)}}else D.$menuInner.trigger("focus")}l(i,!0),this.$menuInner.off("scroll.createView").on("scroll.createView",function(e,t){D.noScroll||l(this.scrollTop,t),D.noScroll=!1}),z(window).off("resize"+j+"."+this.selectId+".createView").on("resize"+j+"."+this.selectId+".createView",function(){D.$newElement.hasClass(V.SHOW)&&l(D.$menuInner[0].scrollTop)})},focusItem:function(e,t,i){if(e){t=t||this.selectpicker.main.data[this.activeIndex];var s=e.firstChild;s&&(s.setAttribute("aria-setsize",this.selectpicker.view.size),s.setAttribute("aria-posinset",t.posinset),!0!==i&&(this.focusedParent.setAttribute("aria-activedescendant",s.id),e.classList.add("active"),s.classList.add("active")))}},defocusItem:function(e){e&&(e.classList.remove("active"),e.firstChild&&e.firstChild.classList.remove("active"))},setPlaceholder:function(){var e=!1;if(this.options.title&&!this.multiple){this.selectpicker.view.titleOption||(this.selectpicker.view.titleOption=document.createElement("option")),e=!0;var t=this.$element[0],i=!1,s=!this.selectpicker.view.titleOption.parentNode;if(s)this.selectpicker.view.titleOption.className="bs-title-option",this.selectpicker.view.titleOption.value="",i=void 0===z(t.options[t.selectedIndex]).attr("selected")&&void 0===this.$element.data("selected");!s&&0===this.selectpicker.view.titleOption.index||t.insertBefore(this.selectpicker.view.titleOption,t.firstChild),i&&(t.selectedIndex=0)}return e},buildData:function(){var p=':not([hidden]):not([data-hidden="true"])',u=[],f=0,e=this.setPlaceholder()?1:0;this.options.hideDisabled&&(p+=":not(:disabled)");var t=this.$element[0].querySelectorAll("select > *"+p);function m(e){var t=u[u.length-1];t&&"divider"===t.type&&(t.optID||e.optID)||((e=e||{}).type="divider",u.push(e))}function v(e,t){if((t=t||{}).divider="true"===e.getAttribute("data-divider"),t.divider)m({optID:t.optID});else{var i=u.length,s=e.style.cssText,n=s?S(s):"",o=(e.className||"")+(t.optgroupClass||"");t.optID&&(o="opt "+o),t.optionClass=o.trim(),t.inlineStyle=n,t.text=e.textContent,t.content=e.getAttribute("data-content"),t.tokens=e.getAttribute("data-tokens"),t.subtext=e.getAttribute("data-subtext"),t.icon=e.getAttribute("data-icon"),e.liIndex=i,t.display=t.content||t.text,t.type="option",t.index=i,t.option=e,t.selected=!!e.selected,t.disabled=t.disabled||!!e.disabled,u.push(t)}}function i(e,t){var i=t[e],s=t[e-1],n=t[e+1],o=i.querySelectorAll("option"+p);if(o.length){var r,l,a={display:S(i.label),subtext:i.getAttribute("data-subtext"),icon:i.getAttribute("data-icon"),type:"optgroup-label",optgroupClass:" "+(i.className||"")};f++,s&&m({optID:f}),a.optID=f,u.push(a);for(var c=0,d=o.length;c li")},render:function(){var e,t=this,i=this.$element[0],s=this.setPlaceholder()&&0===i.selectedIndex,n=O(i,this.options.hideDisabled),o=n.length,r=this.$button[0],l=r.querySelector(".filter-option-inner-inner"),a=document.createTextNode(this.options.multipleSeparator),c=_.fragment.cloneNode(!1),d=!1;if(r.classList.toggle("bs-placeholder",t.multiple?!o:!T(i,n)),this.tabIndex(),"static"===this.options.selectedTextFormat)c=K.text.call(this,{text:this.options.title},!0);else if(!1===(this.multiple&&-1!==this.options.selectedTextFormat.indexOf("count")&&1")).length&&o>e[1]||1===e.length&&2<=o))){if(!s){for(var h=0;h option"+m+", optgroup"+m+" option"+m).length,g="function"==typeof this.options.countSelectedText?this.options.countSelectedText(o,v):this.options.countSelectedText;c=K.text.call(this,{text:g.replace("{0}",o.toString()).replace("{1}",v.toString())},!0)}if(null==this.options.title&&(this.options.title=this.$element.attr("title")),c.childNodes.length||(c=K.text.call(this,{text:void 0!==this.options.title?this.options.title:this.options.noneSelectedText},!0)),r.title=c.textContent.replace(/<[^>]*>?/g,"").trim(),this.options.sanitize&&d&&P([c],t.options.whiteList,t.options.sanitizeFn),l.innerHTML="",l.appendChild(c),R.major<4&&this.$newElement[0].classList.contains("bs3-has-addon")){var b=r.querySelector(".filter-expand"),w=l.cloneNode(!0);w.className="filter-expand",b?r.replaceChild(w,b):r.appendChild(w)}this.$element.trigger("rendered"+j)},setStyle:function(e,t){var i,s=this.$button[0],n=this.$newElement[0],o=this.options.style.trim();this.$element.attr("class")&&this.$newElement.addClass(this.$element.attr("class").replace(/selectpicker|mobile-device|bs-select-hidden|validate\[.*\]/gi,"")),R.major<4&&(n.classList.add("bs3"),n.parentNode.classList.contains("input-group")&&(n.previousElementSibling||n.nextElementSibling)&&(n.previousElementSibling||n.nextElementSibling).classList.contains("input-group-addon")&&n.classList.add("bs3-has-addon")),i=e?e.trim():o,"add"==t?i&&s.classList.add.apply(s.classList,i.split(" ")):"remove"==t?i&&s.classList.remove.apply(s.classList,i.split(" ")):(o&&s.classList.remove.apply(s.classList,o.split(" ")),i&&s.classList.add.apply(s.classList,i.split(" ")))},liHeight:function(e){if(e||!1!==this.options.size&&!Object.keys(this.sizeInfo).length){var t=document.createElement("div"),i=document.createElement("div"),s=document.createElement("div"),n=document.createElement("ul"),o=document.createElement("li"),r=document.createElement("li"),l=document.createElement("li"),a=document.createElement("a"),c=document.createElement("span"),d=this.options.header&&0this.sizeInfo.menuExtras.vert&&l+this.sizeInfo.menuExtras.vert+50>this.sizeInfo.selectOffsetBot,!0===this.selectpicker.isSearching&&(a=this.selectpicker.dropup),this.$newElement.toggleClass(V.DROPUP,a),this.selectpicker.dropup=a),"auto"===this.options.size)n=3this.options.size){for(var b=0;bthis.sizeInfo.menuInnerHeight&&(this.sizeInfo.hasScrollBar=!0,this.sizeInfo.totalMenuWidth=this.sizeInfo.menuWidth+this.sizeInfo.scrollBarWidth),"auto"===this.options.dropdownAlignRight&&this.$menu.toggleClass(V.MENURIGHT,this.sizeInfo.selectOffsetLeft>this.sizeInfo.selectOffsetRight&&this.sizeInfo.selectOffsetRightthis.options.size&&i.off("resize"+j+"."+this.selectId+".setMenuSize scroll"+j+"."+this.selectId+".setMenuSize")}this.createView(!1,!0,e)},setWidth:function(){var i=this;"auto"===this.options.width?requestAnimationFrame(function(){i.$menu.css("min-width","0"),i.$element.on("loaded"+j,function(){i.liHeight(),i.setMenuSize();var e=i.$newElement.clone().appendTo("body"),t=e.css("width","auto").children("button").outerWidth();e.remove(),i.sizeInfo.selectWidth=Math.max(i.sizeInfo.totalMenuWidth,t),i.$newElement.css("width",i.sizeInfo.selectWidth+"px")})}):"fit"===this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width","").addClass("fit-width")):this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width",this.options.width)):(this.$menu.css("min-width",""),this.$newElement.css("width","")),this.$newElement.hasClass("fit-width")&&"fit"!==this.options.width&&this.$newElement[0].classList.remove("fit-width")},selectPosition:function(){this.$bsContainer=z('
');function e(e){var t={},i=r.options.display||!!z.fn.dropdown.Constructor.Default&&z.fn.dropdown.Constructor.Default.display;r.$bsContainer.addClass(e.attr("class").replace(/form-control|fit-width/gi,"")).toggleClass(V.DROPUP,e.hasClass(V.DROPUP)),s=e.offset(),l.is("body")?n={top:0,left:0}:((n=l.offset()).top+=parseInt(l.css("borderTopWidth"))-l.scrollTop(),n.left+=parseInt(l.css("borderLeftWidth"))-l.scrollLeft()),o=e.hasClass(V.DROPUP)?0:e[0].offsetHeight,(R.major<4||"static"===i)&&(t.top=s.top-n.top+o,t.left=s.left-n.left),t.width=e[0].offsetWidth,r.$bsContainer.css(t)}var s,n,o,r=this,l=z(this.options.container);this.$button.on("click.bs.dropdown.data-api",function(){r.isDisabled()||(e(r.$newElement),r.$bsContainer.appendTo(r.options.container).toggleClass(V.SHOW,!r.$button.hasClass(V.SHOW)).append(r.$menu))}),z(window).off("resize"+j+"."+this.selectId+" scroll"+j+"."+this.selectId).on("resize"+j+"."+this.selectId+" scroll"+j+"."+this.selectId,function(){r.$newElement.hasClass(V.SHOW)&&e(r.$newElement)}),this.$element.on("hide"+j,function(){r.$menu.data("height",r.$menu.height()),r.$bsContainer.detach()})},setOptionStatus:function(e){var t=this;if(t.noScroll=!1,t.selectpicker.view.visibleElements&&t.selectpicker.view.visibleElements.length)for(var i=0;i
');y[2]&&($=$.replace("{var}",y[2][1"+$+"")),d=!1,C.$element.trigger("maxReached"+j)),g&&w&&(E.append(z("
"+S+"
")),d=!1,C.$element.trigger("maxReachedGrp"+j)),setTimeout(function(){C.setSelected(r,!1)},10),E[0].classList.add("fadeOut"),setTimeout(function(){E.remove()},1050)}}}else c&&(c.selected=!1),h.selected=!0,C.setSelected(r,!0);!C.multiple||C.multiple&&1===C.options.maxOptions?C.$button.trigger("focus"):C.options.liveSearch&&C.$searchbox.trigger("focus"),d&&(!C.multiple&&a===s.selectedIndex||(A=[h.index,p.prop("selected"),l],C.$element.triggerNative("change")))}}),this.$menu.on("click","li."+V.DISABLED+" a, ."+V.POPOVERHEADER+", ."+V.POPOVERHEADER+" :not(.close)",function(e){e.currentTarget==this&&(e.preventDefault(),e.stopPropagation(),C.options.liveSearch&&!z(e.target).hasClass("close")?C.$searchbox.trigger("focus"):C.$button.trigger("focus"))}),this.$menuInner.on("click",".divider, .dropdown-header",function(e){e.preventDefault(),e.stopPropagation(),C.options.liveSearch?C.$searchbox.trigger("focus"):C.$button.trigger("focus")}),this.$menu.on("click","."+V.POPOVERHEADER+" .close",function(){C.$button.trigger("click")}),this.$searchbox.on("click",function(e){e.stopPropagation()}),this.$menu.on("click",".actions-btn",function(e){C.options.liveSearch?C.$searchbox.trigger("focus"):C.$button.trigger("focus"),e.preventDefault(),e.stopPropagation(),z(this).hasClass("bs-select-all")?C.selectAll():C.deselectAll()}),this.$element.on("change"+j,function(){C.render(),C.$element.trigger("changed"+j,A),A=null}).on("focus"+j,function(){C.options.mobile||C.$button.trigger("focus")})},liveSearchListener:function(){var u=this,f=document.createElement("li");this.$button.on("click.bs.dropdown.data-api",function(){u.$searchbox.val()&&u.$searchbox.val("")}),this.$searchbox.on("click.bs.dropdown.data-api focus.bs.dropdown.data-api touchend.bs.dropdown.data-api",function(e){e.stopPropagation()}),this.$searchbox.on("input propertychange",function(){var e=u.$searchbox.val();if(u.selectpicker.search.elements=[],u.selectpicker.search.data=[],e){var t=[],i=e.toUpperCase(),s={},n=[],o=u._searchStyle(),r=u.options.liveSearchNormalize;r&&(i=w(i));for(var l=0;l=a.selectpicker.view.canHighlight.length&&(t=0),a.selectpicker.view.canHighlight[t+f]||(t=t+1+a.selectpicker.view.canHighlight.slice(t+f+1).indexOf(!0))),e.preventDefault();var m=f+t;e.which===B?0===f&&t===c.length-1?(a.$menuInner[0].scrollTop=a.$menuInner[0].scrollHeight,m=a.selectpicker.current.elements.length-1):d=(o=(n=a.selectpicker.current.data[m]).position-n.height)u+a.sizeInfo.menuInnerHeight),s=a.selectpicker.main.elements[v],a.activeIndex=b[x],a.focusItem(s),s&&s.firstChild.focus(),d&&(a.$menuInner[0].scrollTop=o),r.trigger("focus")}}i&&(e.which===H&&!a.selectpicker.keydown.keyHistory||e.which===D||e.which===W&&a.options.selectOnTab)&&(e.which!==H&&e.preventDefault(),a.options.liveSearch&&e.which===H||(a.$menuInner.find(".active a").trigger("click",!0),r.trigger("focus"),a.options.liveSearch||(e.preventDefault(),z(document).data("spaceSelect",!0))))}},mobile:function(){this.$element[0].classList.add("mobile-device")},refresh:function(){var e=z.extend({},this.options,this.$element.data());this.options=e,this.checkDisabled(),this.setStyle(),this.render(),this.buildData(),this.buildList(),this.setWidth(),this.setSize(!0),this.$element.trigger("refreshed"+j)},hide:function(){this.$newElement.hide()},show:function(){this.$newElement.show()},remove:function(){this.$newElement.remove(),this.$element.remove()},destroy:function(){this.$newElement.before(this.$element).remove(),this.$bsContainer?this.$bsContainer.remove():this.$menu.remove(),this.$element.off(j).removeData("selectpicker").removeClass("bs-select-hidden selectpicker"),z(window).off(j+"."+this.selectId)}};var J=z.fn.selectpicker;z.fn.selectpicker=Z,z.fn.selectpicker.Constructor=Y,z.fn.selectpicker.noConflict=function(){return z.fn.selectpicker=J,this};var Q=function(){};z(document).off("keydown.bs.dropdown.data-api").on("keydown.bs.dropdown.data-api",':not(.bootstrap-select) > [data-toggle="dropdown"]',Q).on("keydown.bs.dropdown.data-api",":not(.bootstrap-select) > .dropdown-menu",Q).on("keydown"+j,'.bootstrap-select [data-toggle="dropdown"], .bootstrap-select [role="listbox"], .bootstrap-select .bs-searchbox input',Y.prototype.keydown).on("focusin.modal",'.bootstrap-select [data-toggle="dropdown"], .bootstrap-select [role="listbox"], .bootstrap-select .bs-searchbox input',function(e){e.stopPropagation()}),z(window).on("load"+j+".data-api",function(){Q=z.fn.dropdown.Constructor._dataApiKeydownHandler||z.fn.dropdown.Constructor.prototype.keydown,z(".selectpicker").each(function(){var e=z(this);Z.call(e,e.data())})})}(e)}); +//# sourceMappingURL=bootstrap-select.min.js.map \ No newline at end of file diff --git a/src/main/resources/static/js/custom.min.js b/src/main/resources/static/js/custom.min.js new file mode 100644 index 0000000..4fb5244 --- /dev/null +++ b/src/main/resources/static/js/custom.min.js @@ -0,0 +1 @@ +var Jobick=function(){"use strict";var e=$(window).width(),t=($(window).height(),function(){var e=$(window).height()-206;$(".chatbox .msg_card_body").css("height",e)});return{init:function(){var n;jQuery("#menu").length>0&&$("#menu").metisMenu(),jQuery(".metismenu > .mm-active ").each(function(){!jQuery(this).children("ul").length>0&&jQuery(this).addClass("active-no-child")}),$("#checkAll").on("change",function(){$("td input, .email-list .custom-checkbox input").prop("checked",$(this).prop("checked"))}),$(".nav-control").on("click",function(){$("#main-wrapper").toggleClass("menu-toggle"),$(".hamburger").toggleClass("is-active")}),function(){for(var e=window.location,t=$("ul#menu a").filter(function(){return this.href==e}).addClass("mm-active").parent().addClass("mm-active");t.is("li");)t=t.parent().addClass("mm-show").parent().addClass("mm-active")}(),$("ul#menu>li").on("click",function(){"mini"===$("body").attr("data-sidebar-style")&&(console.log($(this).find("ul")),$(this).find("ul").stop())}),n=window.outerHeight,((n=window.outerHeight)>0?n:screen.height)&&$(".content-body").css("min-height",n+60+"px"),$('a[data-action="collapse"]').on("click",function(e){e.preventDefault(),$(this).closest(".card").find('[data-action="collapse"] i').toggleClass("mdi-arrow-down mdi-arrow-up"),$(this).closest(".card").children(".card-body").collapse("toggle")}),$('a[data-action="expand"]').on("click",function(e){e.preventDefault(),$(this).closest(".card").find('[data-action="expand"] i').toggleClass("icon-size-actual icon-size-fullscreen"),$(this).closest(".card").toggleClass("card-fullscreen")}),$('[data-action="close"]').on("click",function(){$(this).closest(".card").removeClass().slideUp("fast")}),$('[data-action="reload"]').on("click",function(){var e=$(this);e.parents(".card").addClass("card-load"),e.parents(".card").append('
'),setTimeout(function(){e.parents(".card").children(".card-loader").remove(),e.parents(".card").removeClass("card-load")},2e3)}),function(){const e=$(".header").innerHeight();$(window).scroll(function(){"horizontal"===$("body").attr("data-layout")&&"static"===$("body").attr("data-header-position")&&"fixed"===$("body").attr("data-sidebar-position")&&($(this.window).scrollTop()>=e?$(".dlabnav").addClass("fixed"):$(".dlabnav").removeClass("fixed"))})}(),jQuery(".dlab-scroll").each(function(){var e=jQuery(this).attr("id");new PerfectScrollbar("#"+e,{wheelSpeed:2,wheelPropagation:!0,minScrollbarLength:20}).isRtl=!1}),e<=991&&(jQuery(".menu-tabs .nav-link").on("click",function(){jQuery(this).hasClass("open")?(jQuery(this).removeClass("open"),jQuery(".fixed-content-box").removeClass("active"),jQuery(".hamburger").show()):(jQuery(".menu-tabs .nav-link").removeClass("open"),jQuery(this).addClass("open"),jQuery(".fixed-content-box").addClass("active"),jQuery(".hamburger").hide())}),jQuery(".close-fixed-content").on("click",function(){jQuery(".fixed-content-box").removeClass("active"),jQuery(".hamburger").removeClass("is-active"),jQuery("#main-wrapper").removeClass("menu-toggle"),jQuery(".hamburger").show()})),jQuery(".bell-link").on("click",function(){jQuery(".chatbox").addClass("active")}),jQuery(".chatbox-close").on("click",function(){jQuery(".chatbox").removeClass("active")}),jQuery(".dlabnav-scroll").length>0&&(new PerfectScrollbar(".dlabnav-scroll").isRtl=!1),$(".btn-number").on("click",function(e){e.preventDefault(),fieldName=$(this).attr("data-field"),type=$(this).attr("data-type");var t=$("input[name='"+fieldName+"']"),n=parseInt(t.val());isNaN(n)?t.val(0):"minus"==type?t.val(n-1):"plus"==type&&t.val(n+1)}),jQuery(".dlab-chat-user-box .dlab-chat-user").on("click",function(){jQuery(".dlab-chat-user-box").addClass("d-none"),jQuery(".dlab-chat-history-box").removeClass("d-none")}),jQuery(".dlab-chat-history-back").on("click",function(){jQuery(".dlab-chat-user-box").removeClass("d-none"),jQuery(".dlab-chat-history-box").addClass("d-none")}),jQuery(".dlab-fullscreen").on("click",function(){jQuery(".dlab-fullscreen").toggleClass("active")}),jQuery(".dlab-fullscreen").on("click",function(e){document.fullscreenElement||document.webkitFullscreenElement||document.mozFullScreenElement||document.msFullscreenElement?document.exitFullscreen?document.exitFullscreen():document.msExitFullscreen?document.msExitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitExitFullscreen&&document.webkitExitFullscreen():document.documentElement.requestFullscreen?document.documentElement.requestFullscreen():document.documentElement.webkitRequestFullscreen?document.documentElement.webkitRequestFullscreen():document.documentElement.mozRequestFullScreen?document.documentElement.mozRequestFullScreen():document.documentElement.msRequestFullscreen&&document.documentElement.msRequestFullscreen()}),jQuery(".show-pass").on("click",function(){jQuery(this).toggleClass("active"),"password"==jQuery("#dlab-password").attr("type")?jQuery("#dlab-password").attr("type","text"):"text"==jQuery("#dlab-password").attr("type")&&jQuery("#dlab-password").attr("type","password")}),$(".heart").on("click",function(){$(this).toggleClass("heart-blast")}),$(".dlab-load-more").on("click",function(e){e.preventDefault(),$(this).append(' ');var t=$(this).attr("rel"),n=$(this).attr("id");$.ajax({method:"POST",url:t,dataType:"html",success:function(e){$("#"+n+"Content").append(e),$(".dlab-load-more i").remove()}})}),jQuery("#lightgallery").length>0&&$("#lightgallery").lightGallery({loop:!0,thumbnail:!0,exThumbImage:"data-exthumbimage"}),$(".custom-file-input").on("change",function(){var e=$(this).val().split("\\").pop();$(this).siblings(".custom-file-label").addClass("selected").html(e)}),t(),function(){new PerfectScrollbar(".dlab-demo-content");$(".dlab-demo-trigger").on("click",function(){$(".dlab-demo-panel").addClass("show")}),$(".dlab-demo-close, .bg-close").on("click",function(){$(".dlab-demo-panel").removeClass("show")}),$(".dlab-demo-bx").on("click",function(){$(".dlab-demo-bx").removeClass("demo-active"),$(this).addClass("demo-active")})}(),jQuery("#datetimepicker1").length>0&&$("#datetimepicker1").datetimepicker({inline:!0}),jQuery("#ckeditor").length>0&&ClassicEditor.create(document.querySelector("#ckeditor"),{}).then(e=>{window.editor=e}).catch(e=>{console.error(e.stack)})},load:function(){setTimeout(function(){jQuery("#preloader").remove(),$("#main-wrapper").addClass("show")},800),jQuery(".default-select").length>0&&jQuery(".default-select").niceSelect()},resize:function(){t()},handleMenuPosition:function(){e>1024&&$(".metismenu li").unbind().each(function(e){if($("ul",this).length>0){var t=(a=$("ul:first",this).css("display","block")).offset().left,n=a.width(),a=$("ul:first",this).removeAttr("style"),l=($("body").height(),$("body").width());if(jQuery("html").hasClass("rtl"))var o=t+n<=l;else o=t>0;o?$(this).find("ul:first").removeClass("left"):$(this).find("ul:first").addClass("left")}})}}}();jQuery(document).ready(function(){$('[data-bs-toggle="popover"]').popover(),Jobick.init()}),jQuery(window).on("load",function(){"use strict";Jobick.load(),setTimeout(function(){Jobick.handleMenuPosition()},1e3)}),jQuery(window).on("resize",function(){"use strict";Jobick.resize(),setTimeout(function(){Jobick.handleMenuPosition()},1e3)}); \ No newline at end of file diff --git a/src/main/resources/static/js/global.min.js b/src/main/resources/static/js/global.min.js new file mode 100644 index 0000000..d10a2eb --- /dev/null +++ b/src/main/resources/static/js/global.min.js @@ -0,0 +1,6862 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function (e, t) { + "use strict"; + "object" == typeof module && "object" == typeof module.exports ? module.exports = e.document ? t(e, !0) : function (e) { + if (!e.document) throw new Error("jQuery requires a window with a document"); + return t(e) + } : t(e) +}("undefined" != typeof window ? window : this, function (C, e) { + "use strict"; + var t = [], r = Object.getPrototypeOf, s = t.slice, g = t.flat ? function (e) { + return t.flat.call(e) + } : function (e) { + return t.concat.apply([], e) + }, u = t.push, i = t.indexOf, n = {}, o = n.toString, v = n.hasOwnProperty, a = v.toString, l = a.call(Object), + y = {}, m = function (e) { + return "function" == typeof e && "number" != typeof e.nodeType && "function" != typeof e.item + }, x = function (e) { + return null != e && e === e.window + }, E = C.document, c = {type: !0, src: !0, nonce: !0, noModule: !0}; + + function b(e, t, n) { + var r, i, o = (n = n || E).createElement("script"); + if (o.text = e, t) for (r in c) (i = t[r] || t.getAttribute && t.getAttribute(r)) && o.setAttribute(r, i); + n.head.appendChild(o).parentNode.removeChild(o) + } + + function w(e) { + return null == e ? e + "" : "object" == typeof e || "function" == typeof e ? n[o.call(e)] || "object" : typeof e + } + + var f = "3.6.0", S = function (e, t) { + return new S.fn.init(e, t) + }; + + function p(e) { + var t = !!e && "length" in e && e.length, n = w(e); + return !m(e) && !x(e) && ("array" === n || 0 === t || "number" == typeof t && 0 < t && t - 1 in e) + } + + S.fn = S.prototype = { + jquery: f, constructor: S, length: 0, toArray: function () { + return s.call(this) + }, get: function (e) { + return null == e ? s.call(this) : e < 0 ? this[e + this.length] : this[e] + }, pushStack: function (e) { + var t = S.merge(this.constructor(), e); + return t.prevObject = this, t + }, each: function (e) { + return S.each(this, e) + }, map: function (n) { + return this.pushStack(S.map(this, function (e, t) { + return n.call(e, t, e) + })) + }, slice: function () { + return this.pushStack(s.apply(this, arguments)) + }, first: function () { + return this.eq(0) + }, last: function () { + return this.eq(-1) + }, even: function () { + return this.pushStack(S.grep(this, function (e, t) { + return (t + 1) % 2 + })) + }, odd: function () { + return this.pushStack(S.grep(this, function (e, t) { + return t % 2 + })) + }, eq: function (e) { + var t = this.length, n = +e + (e < 0 ? t : 0); + return this.pushStack(0 <= n && n < t ? [this[n]] : []) + }, end: function () { + return this.prevObject || this.constructor() + }, push: u, sort: t.sort, splice: t.splice + }, S.extend = S.fn.extend = function () { + var e, t, n, r, i, o, a = arguments[0] || {}, s = 1, u = arguments.length, l = !1; + for ("boolean" == typeof a && (l = a, a = arguments[s] || {}, s++), "object" == typeof a || m(a) || (a = {}), s === u && (a = this, s--); s < u; s++) if (null != (e = arguments[s])) for (t in e) r = e[t], "__proto__" !== t && a !== r && (l && r && (S.isPlainObject(r) || (i = Array.isArray(r))) ? (n = a[t], o = i && !Array.isArray(n) ? [] : i || S.isPlainObject(n) ? n : {}, i = !1, a[t] = S.extend(l, o, r)) : void 0 !== r && (a[t] = r)); + return a + }, S.extend({ + expando: "jQuery" + (f + Math.random()).replace(/\D/g, ""), isReady: !0, error: function (e) { + throw new Error(e) + }, noop: function () { + }, isPlainObject: function (e) { + var t, n; + return !(!e || "[object Object]" !== o.call(e)) && (!(t = r(e)) || "function" == typeof (n = v.call(t, "constructor") && t.constructor) && a.call(n) === l) + }, isEmptyObject: function (e) { + var t; + for (t in e) return !1; + return !0 + }, globalEval: function (e, t, n) { + b(e, {nonce: t && t.nonce}, n) + }, each: function (e, t) { + var n, r = 0; + if (p(e)) { + for (n = e.length; r < n; r++) if (!1 === t.call(e[r], r, e[r])) break + } else for (r in e) if (!1 === t.call(e[r], r, e[r])) break; + return e + }, makeArray: function (e, t) { + var n = t || []; + return null != e && (p(Object(e)) ? S.merge(n, "string" == typeof e ? [e] : e) : u.call(n, e)), n + }, inArray: function (e, t, n) { + return null == t ? -1 : i.call(t, e, n) + }, merge: function (e, t) { + for (var n = +t.length, r = 0, i = e.length; r < n; r++) e[i++] = t[r]; + return e.length = i, e + }, grep: function (e, t, n) { + for (var r = [], i = 0, o = e.length, a = !n; i < o; i++) !t(e[i], i) !== a && r.push(e[i]); + return r + }, map: function (e, t, n) { + var r, i, o = 0, a = []; + if (p(e)) for (r = e.length; o < r; o++) null != (i = t(e[o], o, n)) && a.push(i); else for (o in e) null != (i = t(e[o], o, n)) && a.push(i); + return g(a) + }, guid: 1, support: y + }), "function" == typeof Symbol && (S.fn[Symbol.iterator] = t[Symbol.iterator]), S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "), function (e, t) { + n["[object " + t + "]"] = t.toLowerCase() + }); + var d = function (n) { + var e, d, b, o, i, h, f, g, w, u, l, T, C, a, E, v, s, c, y, S = "sizzle" + 1 * new Date, p = n.document, k = 0, + r = 0, m = ue(), x = ue(), A = ue(), N = ue(), j = function (e, t) { + return e === t && (l = !0), 0 + }, D = {}.hasOwnProperty, t = [], q = t.pop, L = t.push, H = t.push, O = t.slice, P = function (e, t) { + for (var n = 0, r = e.length; n < r; n++) if (e[n] === t) return n; + return -1 + }, + R = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + M = "[\\x20\\t\\r\\n\\f]", I = "(?:\\\\[\\da-fA-F]{1,6}" + M + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + W = "\\[" + M + "*(" + I + ")(?:" + M + "*([*^$|!~]?=)" + M + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + I + "))|)" + M + "*\\]", + F = ":(" + I + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + W + ")*)|.*)\\)|)", + B = new RegExp(M + "+", "g"), $ = new RegExp("^" + M + "+|((?:^|[^\\\\])(?:\\\\.)*)" + M + "+$", "g"), + _ = new RegExp("^" + M + "*," + M + "*"), z = new RegExp("^" + M + "*([>+~]|" + M + ")" + M + "*"), + U = new RegExp(M + "|>"), X = new RegExp(F), V = new RegExp("^" + I + "$"), G = { + ID: new RegExp("^#(" + I + ")"), + CLASS: new RegExp("^\\.(" + I + ")"), + TAG: new RegExp("^(" + I + "|[*])"), + ATTR: new RegExp("^" + W), + PSEUDO: new RegExp("^" + F), + CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + M + "*(even|odd|(([+-]|)(\\d*)n|)" + M + "*(?:([+-]|)" + M + "*(\\d+)|))" + M + "*\\)|)", "i"), + bool: new RegExp("^(?:" + R + ")$", "i"), + needsContext: new RegExp("^" + M + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + M + "*((?:-\\d)?\\d*)" + M + "*\\)|)(?=[^-]|$)", "i") + }, Y = /HTML$/i, Q = /^(?:input|select|textarea|button)$/i, J = /^h\d$/i, K = /^[^{]+\{\s*\[native \w/, + Z = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, ee = /[+~]/, + te = new RegExp("\\\\[\\da-fA-F]{1,6}" + M + "?|\\\\([^\\r\\n\\f])", "g"), ne = function (e, t) { + var n = "0x" + e.slice(1) - 65536; + return t || (n < 0 ? String.fromCharCode(n + 65536) : String.fromCharCode(n >> 10 | 55296, 1023 & n | 56320)) + }, re = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, ie = function (e, t) { + return t ? "\0" === e ? "\ufffd" : e.slice(0, -1) + "\\" + e.charCodeAt(e.length - 1).toString(16) + " " : "\\" + e + }, oe = function () { + T() + }, ae = be(function (e) { + return !0 === e.disabled && "fieldset" === e.nodeName.toLowerCase() + }, {dir: "parentNode", next: "legend"}); + try { + H.apply(t = O.call(p.childNodes), p.childNodes), t[p.childNodes.length].nodeType + } catch (e) { + H = { + apply: t.length ? function (e, t) { + L.apply(e, O.call(t)) + } : function (e, t) { + var n = e.length, r = 0; + while (e[n++] = t[r++]) ; + e.length = n - 1 + } + } + } + + function se(t, e, n, r) { + var i, o, a, s, u, l, c, f = e && e.ownerDocument, p = e ? e.nodeType : 9; + if (n = n || [], "string" != typeof t || !t || 1 !== p && 9 !== p && 11 !== p) return n; + if (!r && (T(e), e = e || C, E)) { + if (11 !== p && (u = Z.exec(t))) if (i = u[1]) { + if (9 === p) { + if (!(a = e.getElementById(i))) return n; + if (a.id === i) return n.push(a), n + } else if (f && (a = f.getElementById(i)) && y(e, a) && a.id === i) return n.push(a), n + } else { + if (u[2]) return H.apply(n, e.getElementsByTagName(t)), n; + if ((i = u[3]) && d.getElementsByClassName && e.getElementsByClassName) return H.apply(n, e.getElementsByClassName(i)), n + } + if (d.qsa && !N[t + " "] && (!v || !v.test(t)) && (1 !== p || "object" !== e.nodeName.toLowerCase())) { + if (c = t, f = e, 1 === p && (U.test(t) || z.test(t))) { + (f = ee.test(t) && ye(e.parentNode) || e) === e && d.scope || ((s = e.getAttribute("id")) ? s = s.replace(re, ie) : e.setAttribute("id", s = S)), o = (l = h(t)).length; + while (o--) l[o] = (s ? "#" + s : ":scope") + " " + xe(l[o]); + c = l.join(",") + } + try { + return H.apply(n, f.querySelectorAll(c)), n + } catch (e) { + N(t, !0) + } finally { + s === S && e.removeAttribute("id") + } + } + } + return g(t.replace($, "$1"), e, n, r) + } + + function ue() { + var r = []; + return function e(t, n) { + return r.push(t + " ") > b.cacheLength && delete e[r.shift()], e[t + " "] = n + } + } + + function le(e) { + return e[S] = !0, e + } + + function ce(e) { + var t = C.createElement("fieldset"); + try { + return !!e(t) + } catch (e) { + return !1 + } finally { + t.parentNode && t.parentNode.removeChild(t), t = null + } + } + + function fe(e, t) { + var n = e.split("|"), r = n.length; + while (r--) b.attrHandle[n[r]] = t + } + + function pe(e, t) { + var n = t && e, r = n && 1 === e.nodeType && 1 === t.nodeType && e.sourceIndex - t.sourceIndex; + if (r) return r; + if (n) while (n = n.nextSibling) if (n === t) return -1; + return e ? 1 : -1 + } + + function de(t) { + return function (e) { + return "input" === e.nodeName.toLowerCase() && e.type === t + } + } + + function he(n) { + return function (e) { + var t = e.nodeName.toLowerCase(); + return ("input" === t || "button" === t) && e.type === n + } + } + + function ge(t) { + return function (e) { + return "form" in e ? e.parentNode && !1 === e.disabled ? "label" in e ? "label" in e.parentNode ? e.parentNode.disabled === t : e.disabled === t : e.isDisabled === t || e.isDisabled !== !t && ae(e) === t : e.disabled === t : "label" in e && e.disabled === t + } + } + + function ve(a) { + return le(function (o) { + return o = +o, le(function (e, t) { + var n, r = a([], e.length, o), i = r.length; + while (i--) e[n = r[i]] && (e[n] = !(t[n] = e[n])) + }) + }) + } + + function ye(e) { + return e && "undefined" != typeof e.getElementsByTagName && e + } + + for (e in d = se.support = {}, i = se.isXML = function (e) { + var t = e && e.namespaceURI, n = e && (e.ownerDocument || e).documentElement; + return !Y.test(t || n && n.nodeName || "HTML") + }, T = se.setDocument = function (e) { + var t, n, r = e ? e.ownerDocument || e : p; + return r != C && 9 === r.nodeType && r.documentElement && (a = (C = r).documentElement, E = !i(C), p != C && (n = C.defaultView) && n.top !== n && (n.addEventListener ? n.addEventListener("unload", oe, !1) : n.attachEvent && n.attachEvent("onunload", oe)), d.scope = ce(function (e) { + return a.appendChild(e).appendChild(C.createElement("div")), "undefined" != typeof e.querySelectorAll && !e.querySelectorAll(":scope fieldset div").length + }), d.attributes = ce(function (e) { + return e.className = "i", !e.getAttribute("className") + }), d.getElementsByTagName = ce(function (e) { + return e.appendChild(C.createComment("")), !e.getElementsByTagName("*").length + }), d.getElementsByClassName = K.test(C.getElementsByClassName), d.getById = ce(function (e) { + return a.appendChild(e).id = S, !C.getElementsByName || !C.getElementsByName(S).length + }), d.getById ? (b.filter.ID = function (e) { + var t = e.replace(te, ne); + return function (e) { + return e.getAttribute("id") === t + } + }, b.find.ID = function (e, t) { + if ("undefined" != typeof t.getElementById && E) { + var n = t.getElementById(e); + return n ? [n] : [] + } + }) : (b.filter.ID = function (e) { + var n = e.replace(te, ne); + return function (e) { + var t = "undefined" != typeof e.getAttributeNode && e.getAttributeNode("id"); + return t && t.value === n + } + }, b.find.ID = function (e, t) { + if ("undefined" != typeof t.getElementById && E) { + var n, r, i, o = t.getElementById(e); + if (o) { + if ((n = o.getAttributeNode("id")) && n.value === e) return [o]; + i = t.getElementsByName(e), r = 0; + while (o = i[r++]) if ((n = o.getAttributeNode("id")) && n.value === e) return [o] + } + return [] + } + }), b.find.TAG = d.getElementsByTagName ? function (e, t) { + return "undefined" != typeof t.getElementsByTagName ? t.getElementsByTagName(e) : d.qsa ? t.querySelectorAll(e) : void 0 + } : function (e, t) { + var n, r = [], i = 0, o = t.getElementsByTagName(e); + if ("*" === e) { + while (n = o[i++]) 1 === n.nodeType && r.push(n); + return r + } + return o + }, b.find.CLASS = d.getElementsByClassName && function (e, t) { + if ("undefined" != typeof t.getElementsByClassName && E) return t.getElementsByClassName(e) + }, s = [], v = [], (d.qsa = K.test(C.querySelectorAll)) && (ce(function (e) { + var t; + a.appendChild(e).innerHTML = "", e.querySelectorAll("[msallowcapture^='']").length && v.push("[*^$]=" + M + "*(?:''|\"\")"), e.querySelectorAll("[selected]").length || v.push("\\[" + M + "*(?:value|" + R + ")"), e.querySelectorAll("[id~=" + S + "-]").length || v.push("~="), (t = C.createElement("input")).setAttribute("name", ""), e.appendChild(t), e.querySelectorAll("[name='']").length || v.push("\\[" + M + "*name" + M + "*=" + M + "*(?:''|\"\")"), e.querySelectorAll(":checked").length || v.push(":checked"), e.querySelectorAll("a#" + S + "+*").length || v.push(".#.+[+~]"), e.querySelectorAll(), v.push("[\\r\\n\\f]") + }), ce(function (e) { + e.innerHTML = ""; + var t = C.createElement("input"); + t.setAttribute("type", "hidden"), e.appendChild(t).setAttribute("name", "D"), e.querySelectorAll("[name=d]").length && v.push("name" + M + "*[*^$|!~]?="), 2 !== e.querySelectorAll(":enabled").length && v.push(":enabled", ":disabled"), a.appendChild(e).disabled = !0, 2 !== e.querySelectorAll(":disabled").length && v.push(":enabled", ":disabled"), e.querySelectorAll("*"), v.push(",.*:") + })), (d.matchesSelector = K.test(c = a.matches || a.webkitMatchesSelector || a.mozMatchesSelector || a.oMatchesSelector || a.msMatchesSelector)) && ce(function (e) { + d.disconnectedMatch = c.call(e, "*"), c.call(e, "[s!='']:x"), s.push("!=", F) + }), v = v.length && new RegExp(v.join("|")), s = s.length && new RegExp(s.join("|")), t = K.test(a.compareDocumentPosition), y = t || K.test(a.contains) ? function (e, t) { + var n = 9 === e.nodeType ? e.documentElement : e, r = t && t.parentNode; + return e === r || !(!r || 1 !== r.nodeType || !(n.contains ? n.contains(r) : e.compareDocumentPosition && 16 & e.compareDocumentPosition(r))) + } : function (e, t) { + if (t) while (t = t.parentNode) if (t === e) return !0; + return !1 + }, j = t ? function (e, t) { + if (e === t) return l = !0, 0; + var n = !e.compareDocumentPosition - !t.compareDocumentPosition; + return n || (1 & (n = (e.ownerDocument || e) == (t.ownerDocument || t) ? e.compareDocumentPosition(t) : 1) || !d.sortDetached && t.compareDocumentPosition(e) === n ? e == C || e.ownerDocument == p && y(p, e) ? -1 : t == C || t.ownerDocument == p && y(p, t) ? 1 : u ? P(u, e) - P(u, t) : 0 : 4 & n ? -1 : 1) + } : function (e, t) { + if (e === t) return l = !0, 0; + var n, r = 0, i = e.parentNode, o = t.parentNode, a = [e], s = [t]; + if (!i || !o) return e == C ? -1 : t == C ? 1 : i ? -1 : o ? 1 : u ? P(u, e) - P(u, t) : 0; + if (i === o) return pe(e, t); + n = e; + while (n = n.parentNode) a.unshift(n); + n = t; + while (n = n.parentNode) s.unshift(n); + while (a[r] === s[r]) r++; + return r ? pe(a[r], s[r]) : a[r] == p ? -1 : s[r] == p ? 1 : 0 + }), C + }, se.matches = function (e, t) { + return se(e, null, null, t) + }, se.matchesSelector = function (e, t) { + if (T(e), d.matchesSelector && E && !N[t + " "] && (!s || !s.test(t)) && (!v || !v.test(t))) try { + var n = c.call(e, t); + if (n || d.disconnectedMatch || e.document && 11 !== e.document.nodeType) return n + } catch (e) { + N(t, !0) + } + return 0 < se(t, C, null, [e]).length + }, se.contains = function (e, t) { + return (e.ownerDocument || e) != C && T(e), y(e, t) + }, se.attr = function (e, t) { + (e.ownerDocument || e) != C && T(e); + var n = b.attrHandle[t.toLowerCase()], + r = n && D.call(b.attrHandle, t.toLowerCase()) ? n(e, t, !E) : void 0; + return void 0 !== r ? r : d.attributes || !E ? e.getAttribute(t) : (r = e.getAttributeNode(t)) && r.specified ? r.value : null + }, se.escape = function (e) { + return (e + "").replace(re, ie) + }, se.error = function (e) { + throw new Error("Syntax error, unrecognized expression: " + e) + }, se.uniqueSort = function (e) { + var t, n = [], r = 0, i = 0; + if (l = !d.detectDuplicates, u = !d.sortStable && e.slice(0), e.sort(j), l) { + while (t = e[i++]) t === e[i] && (r = n.push(i)); + while (r--) e.splice(n[r], 1) + } + return u = null, e + }, o = se.getText = function (e) { + var t, n = "", r = 0, i = e.nodeType; + if (i) { + if (1 === i || 9 === i || 11 === i) { + if ("string" == typeof e.textContent) return e.textContent; + for (e = e.firstChild; e; e = e.nextSibling) n += o(e) + } else if (3 === i || 4 === i) return e.nodeValue + } else while (t = e[r++]) n += o(t); + return n + }, (b = se.selectors = { + cacheLength: 50, + createPseudo: le, + match: G, + attrHandle: {}, + find: {}, + relative: { + ">": {dir: "parentNode", first: !0}, + " ": {dir: "parentNode"}, + "+": {dir: "previousSibling", first: !0}, + "~": {dir: "previousSibling"} + }, + preFilter: { + ATTR: function (e) { + return e[1] = e[1].replace(te, ne), e[3] = (e[3] || e[4] || e[5] || "").replace(te, ne), "~=" === e[2] && (e[3] = " " + e[3] + " "), e.slice(0, 4) + }, CHILD: function (e) { + return e[1] = e[1].toLowerCase(), "nth" === e[1].slice(0, 3) ? (e[3] || se.error(e[0]), e[4] = +(e[4] ? e[5] + (e[6] || 1) : 2 * ("even" === e[3] || "odd" === e[3])), e[5] = +(e[7] + e[8] || "odd" === e[3])) : e[3] && se.error(e[0]), e + }, PSEUDO: function (e) { + var t, n = !e[6] && e[2]; + return G.CHILD.test(e[0]) ? null : (e[3] ? e[2] = e[4] || e[5] || "" : n && X.test(n) && (t = h(n, !0)) && (t = n.indexOf(")", n.length - t) - n.length) && (e[0] = e[0].slice(0, t), e[2] = n.slice(0, t)), e.slice(0, 3)) + } + }, + filter: { + TAG: function (e) { + var t = e.replace(te, ne).toLowerCase(); + return "*" === e ? function () { + return !0 + } : function (e) { + return e.nodeName && e.nodeName.toLowerCase() === t + } + }, CLASS: function (e) { + var t = m[e + " "]; + return t || (t = new RegExp("(^|" + M + ")" + e + "(" + M + "|$)")) && m(e, function (e) { + return t.test("string" == typeof e.className && e.className || "undefined" != typeof e.getAttribute && e.getAttribute("class") || "") + }) + }, ATTR: function (n, r, i) { + return function (e) { + var t = se.attr(e, n); + return null == t ? "!=" === r : !r || (t += "", "=" === r ? t === i : "!=" === r ? t !== i : "^=" === r ? i && 0 === t.indexOf(i) : "*=" === r ? i && -1 < t.indexOf(i) : "$=" === r ? i && t.slice(-i.length) === i : "~=" === r ? -1 < (" " + t.replace(B, " ") + " ").indexOf(i) : "|=" === r && (t === i || t.slice(0, i.length + 1) === i + "-")) + } + }, CHILD: function (h, e, t, g, v) { + var y = "nth" !== h.slice(0, 3), m = "last" !== h.slice(-4), x = "of-type" === e; + return 1 === g && 0 === v ? function (e) { + return !!e.parentNode + } : function (e, t, n) { + var r, i, o, a, s, u, l = y !== m ? "nextSibling" : "previousSibling", c = e.parentNode, + f = x && e.nodeName.toLowerCase(), p = !n && !x, d = !1; + if (c) { + if (y) { + while (l) { + a = e; + while (a = a[l]) if (x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) return !1; + u = l = "only" === h && !u && "nextSibling" + } + return !0 + } + if (u = [m ? c.firstChild : c.lastChild], m && p) { + d = (s = (r = (i = (o = (a = c)[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]) && r[2], a = s && c.childNodes[s]; + while (a = ++s && a && a[l] || (d = s = 0) || u.pop()) if (1 === a.nodeType && ++d && a === e) { + i[h] = [k, s, d]; + break + } + } else if (p && (d = s = (r = (i = (o = (a = e)[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]), !1 === d) while (a = ++s && a && a[l] || (d = s = 0) || u.pop()) if ((x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) && ++d && (p && ((i = (o = a[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] = [k, d]), a === e)) break; + return (d -= v) === g || d % g == 0 && 0 <= d / g + } + } + }, PSEUDO: function (e, o) { + var t, a = b.pseudos[e] || b.setFilters[e.toLowerCase()] || se.error("unsupported pseudo: " + e); + return a[S] ? a(o) : 1 < a.length ? (t = [e, e, "", o], b.setFilters.hasOwnProperty(e.toLowerCase()) ? le(function (e, t) { + var n, r = a(e, o), i = r.length; + while (i--) e[n = P(e, r[i])] = !(t[n] = r[i]) + }) : function (e) { + return a(e, 0, t) + }) : a + } + }, + pseudos: { + not: le(function (e) { + var r = [], i = [], s = f(e.replace($, "$1")); + return s[S] ? le(function (e, t, n, r) { + var i, o = s(e, null, r, []), a = e.length; + while (a--) (i = o[a]) && (e[a] = !(t[a] = i)) + }) : function (e, t, n) { + return r[0] = e, s(r, null, n, i), r[0] = null, !i.pop() + } + }), has: le(function (t) { + return function (e) { + return 0 < se(t, e).length + } + }), contains: le(function (t) { + return t = t.replace(te, ne), function (e) { + return -1 < (e.textContent || o(e)).indexOf(t) + } + }), lang: le(function (n) { + return V.test(n || "") || se.error("unsupported lang: " + n), n = n.replace(te, ne).toLowerCase(), function (e) { + var t; + do { + if (t = E ? e.lang : e.getAttribute("xml:lang") || e.getAttribute("lang")) return (t = t.toLowerCase()) === n || 0 === t.indexOf(n + "-") + } while ((e = e.parentNode) && 1 === e.nodeType); + return !1 + } + }), target: function (e) { + var t = n.location && n.location.hash; + return t && t.slice(1) === e.id + }, root: function (e) { + return e === a + }, focus: function (e) { + return e === C.activeElement && (!C.hasFocus || C.hasFocus()) && !!(e.type || e.href || ~e.tabIndex) + }, enabled: ge(!1), disabled: ge(!0), checked: function (e) { + var t = e.nodeName.toLowerCase(); + return "input" === t && !!e.checked || "option" === t && !!e.selected + }, selected: function (e) { + return e.parentNode && e.parentNode.selectedIndex, !0 === e.selected + }, empty: function (e) { + for (e = e.firstChild; e; e = e.nextSibling) if (e.nodeType < 6) return !1; + return !0 + }, parent: function (e) { + return !b.pseudos.empty(e) + }, header: function (e) { + return J.test(e.nodeName) + }, input: function (e) { + return Q.test(e.nodeName) + }, button: function (e) { + var t = e.nodeName.toLowerCase(); + return "input" === t && "button" === e.type || "button" === t + }, text: function (e) { + var t; + return "input" === e.nodeName.toLowerCase() && "text" === e.type && (null == (t = e.getAttribute("type")) || "text" === t.toLowerCase()) + }, first: ve(function () { + return [0] + }), last: ve(function (e, t) { + return [t - 1] + }), eq: ve(function (e, t, n) { + return [n < 0 ? n + t : n] + }), even: ve(function (e, t) { + for (var n = 0; n < t; n += 2) e.push(n); + return e + }), odd: ve(function (e, t) { + for (var n = 1; n < t; n += 2) e.push(n); + return e + }), lt: ve(function (e, t, n) { + for (var r = n < 0 ? n + t : t < n ? t : n; 0 <= --r;) e.push(r); + return e + }), gt: ve(function (e, t, n) { + for (var r = n < 0 ? n + t : n; ++r < t;) e.push(r); + return e + }) + } + }).pseudos.nth = b.pseudos.eq, { + radio: !0, + checkbox: !0, + file: !0, + password: !0, + image: !0 + }) b.pseudos[e] = de(e); + for (e in {submit: !0, reset: !0}) b.pseudos[e] = he(e); + + function me() { + } + + function xe(e) { + for (var t = 0, n = e.length, r = ""; t < n; t++) r += e[t].value; + return r + } + + function be(s, e, t) { + var u = e.dir, l = e.next, c = l || u, f = t && "parentNode" === c, p = r++; + return e.first ? function (e, t, n) { + while (e = e[u]) if (1 === e.nodeType || f) return s(e, t, n); + return !1 + } : function (e, t, n) { + var r, i, o, a = [k, p]; + if (n) { + while (e = e[u]) if ((1 === e.nodeType || f) && s(e, t, n)) return !0 + } else while (e = e[u]) if (1 === e.nodeType || f) if (i = (o = e[S] || (e[S] = {}))[e.uniqueID] || (o[e.uniqueID] = {}), l && l === e.nodeName.toLowerCase()) e = e[u] || e; else { + if ((r = i[c]) && r[0] === k && r[1] === p) return a[2] = r[2]; + if ((i[c] = a)[2] = s(e, t, n)) return !0 + } + return !1 + } + } + + function we(i) { + return 1 < i.length ? function (e, t, n) { + var r = i.length; + while (r--) if (!i[r](e, t, n)) return !1; + return !0 + } : i[0] + } + + function Te(e, t, n, r, i) { + for (var o, a = [], s = 0, u = e.length, l = null != t; s < u; s++) (o = e[s]) && (n && !n(o, r, i) || (a.push(o), l && t.push(s))); + return a + } + + function Ce(d, h, g, v, y, e) { + return v && !v[S] && (v = Ce(v)), y && !y[S] && (y = Ce(y, e)), le(function (e, t, n, r) { + var i, o, a, s = [], u = [], l = t.length, c = e || function (e, t, n) { + for (var r = 0, i = t.length; r < i; r++) se(e, t[r], n); + return n + }(h || "*", n.nodeType ? [n] : n, []), f = !d || !e && h ? c : Te(c, s, d, n, r), + p = g ? y || (e ? d : l || v) ? [] : t : f; + if (g && g(f, p, n, r), v) { + i = Te(p, u), v(i, [], n, r), o = i.length; + while (o--) (a = i[o]) && (p[u[o]] = !(f[u[o]] = a)) + } + if (e) { + if (y || d) { + if (y) { + i = [], o = p.length; + while (o--) (a = p[o]) && i.push(f[o] = a); + y(null, p = [], i, r) + } + o = p.length; + while (o--) (a = p[o]) && -1 < (i = y ? P(e, a) : s[o]) && (e[i] = !(t[i] = a)) + } + } else p = Te(p === t ? p.splice(l, p.length) : p), y ? y(null, t, p, r) : H.apply(t, p) + }) + } + + function Ee(e) { + for (var i, t, n, r = e.length, o = b.relative[e[0].type], a = o || b.relative[" "], s = o ? 1 : 0, u = be(function (e) { + return e === i + }, a, !0), l = be(function (e) { + return -1 < P(i, e) + }, a, !0), c = [function (e, t, n) { + var r = !o && (n || t !== w) || ((i = t).nodeType ? u(e, t, n) : l(e, t, n)); + return i = null, r + }]; s < r; s++) if (t = b.relative[e[s].type]) c = [be(we(c), t)]; else { + if ((t = b.filter[e[s].type].apply(null, e[s].matches))[S]) { + for (n = ++s; n < r; n++) if (b.relative[e[n].type]) break; + return Ce(1 < s && we(c), 1 < s && xe(e.slice(0, s - 1).concat({value: " " === e[s - 2].type ? "*" : ""})).replace($, "$1"), t, s < n && Ee(e.slice(s, n)), n < r && Ee(e = e.slice(n)), n < r && xe(e)) + } + c.push(t) + } + return we(c) + } + + return me.prototype = b.filters = b.pseudos, b.setFilters = new me, h = se.tokenize = function (e, t) { + var n, r, i, o, a, s, u, l = x[e + " "]; + if (l) return t ? 0 : l.slice(0); + a = e, s = [], u = b.preFilter; + while (a) { + for (o in n && !(r = _.exec(a)) || (r && (a = a.slice(r[0].length) || a), s.push(i = [])), n = !1, (r = z.exec(a)) && (n = r.shift(), i.push({ + value: n, + type: r[0].replace($, " ") + }), a = a.slice(n.length)), b.filter) !(r = G[o].exec(a)) || u[o] && !(r = u[o](r)) || (n = r.shift(), i.push({ + value: n, + type: o, + matches: r + }), a = a.slice(n.length)); + if (!n) break + } + return t ? a.length : a ? se.error(e) : x(e, s).slice(0) + }, f = se.compile = function (e, t) { + var n, v, y, m, x, r, i = [], o = [], a = A[e + " "]; + if (!a) { + t || (t = h(e)), n = t.length; + while (n--) (a = Ee(t[n]))[S] ? i.push(a) : o.push(a); + (a = A(e, (v = o, m = 0 < (y = i).length, x = 0 < v.length, r = function (e, t, n, r, i) { + var o, a, s, u = 0, l = "0", c = e && [], f = [], p = w, d = e || x && b.find.TAG("*", i), + h = k += null == p ? 1 : Math.random() || .1, g = d.length; + for (i && (w = t == C || t || i); l !== g && null != (o = d[l]); l++) { + if (x && o) { + a = 0, t || o.ownerDocument == C || (T(o), n = !E); + while (s = v[a++]) if (s(o, t || C, n)) { + r.push(o); + break + } + i && (k = h) + } + m && ((o = !s && o) && u--, e && c.push(o)) + } + if (u += l, m && l !== u) { + a = 0; + while (s = y[a++]) s(c, f, t, n); + if (e) { + if (0 < u) while (l--) c[l] || f[l] || (f[l] = q.call(r)); + f = Te(f) + } + H.apply(r, f), i && !e && 0 < f.length && 1 < u + y.length && se.uniqueSort(r) + } + return i && (k = h, w = p), c + }, m ? le(r) : r))).selector = e + } + return a + }, g = se.select = function (e, t, n, r) { + var i, o, a, s, u, l = "function" == typeof e && e, c = !r && h(e = l.selector || e); + if (n = n || [], 1 === c.length) { + if (2 < (o = c[0] = c[0].slice(0)).length && "ID" === (a = o[0]).type && 9 === t.nodeType && E && b.relative[o[1].type]) { + if (!(t = (b.find.ID(a.matches[0].replace(te, ne), t) || [])[0])) return n; + l && (t = t.parentNode), e = e.slice(o.shift().value.length) + } + i = G.needsContext.test(e) ? 0 : o.length; + while (i--) { + if (a = o[i], b.relative[s = a.type]) break; + if ((u = b.find[s]) && (r = u(a.matches[0].replace(te, ne), ee.test(o[0].type) && ye(t.parentNode) || t))) { + if (o.splice(i, 1), !(e = r.length && xe(o))) return H.apply(n, r), n; + break + } + } + } + return (l || f(e, c))(r, t, !E, n, !t || ee.test(e) && ye(t.parentNode) || t), n + }, d.sortStable = S.split("").sort(j).join("") === S, d.detectDuplicates = !!l, T(), d.sortDetached = ce(function (e) { + return 1 & e.compareDocumentPosition(C.createElement("fieldset")) + }), ce(function (e) { + return e.innerHTML = "", "#" === e.firstChild.getAttribute("href") + }) || fe("type|href|height|width", function (e, t, n) { + if (!n) return e.getAttribute(t, "type" === t.toLowerCase() ? 1 : 2) + }), d.attributes && ce(function (e) { + return e.innerHTML = "", e.firstChild.setAttribute("value", ""), "" === e.firstChild.getAttribute("value") + }) || fe("value", function (e, t, n) { + if (!n && "input" === e.nodeName.toLowerCase()) return e.defaultValue + }), ce(function (e) { + return null == e.getAttribute("disabled") + }) || fe(R, function (e, t, n) { + var r; + if (!n) return !0 === e[t] ? t.toLowerCase() : (r = e.getAttributeNode(t)) && r.specified ? r.value : null + }), se + }(C); + S.find = d, S.expr = d.selectors, S.expr[":"] = S.expr.pseudos, S.uniqueSort = S.unique = d.uniqueSort, S.text = d.getText, S.isXMLDoc = d.isXML, S.contains = d.contains, S.escapeSelector = d.escape; + var h = function (e, t, n) { + var r = [], i = void 0 !== n; + while ((e = e[t]) && 9 !== e.nodeType) if (1 === e.nodeType) { + if (i && S(e).is(n)) break; + r.push(e) + } + return r + }, T = function (e, t) { + for (var n = []; e; e = e.nextSibling) 1 === e.nodeType && e !== t && n.push(e); + return n + }, k = S.expr.match.needsContext; + + function A(e, t) { + return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase() + } + + var N = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i; + + function j(e, n, r) { + return m(n) ? S.grep(e, function (e, t) { + return !!n.call(e, t, e) !== r + }) : n.nodeType ? S.grep(e, function (e) { + return e === n !== r + }) : "string" != typeof n ? S.grep(e, function (e) { + return -1 < i.call(n, e) !== r + }) : S.filter(n, e, r) + } + + S.filter = function (e, t, n) { + var r = t[0]; + return n && (e = ":not(" + e + ")"), 1 === t.length && 1 === r.nodeType ? S.find.matchesSelector(r, e) ? [r] : [] : S.find.matches(e, S.grep(t, function (e) { + return 1 === e.nodeType + })) + }, S.fn.extend({ + find: function (e) { + var t, n, r = this.length, i = this; + if ("string" != typeof e) return this.pushStack(S(e).filter(function () { + for (t = 0; t < r; t++) if (S.contains(i[t], this)) return !0 + })); + for (n = this.pushStack([]), t = 0; t < r; t++) S.find(e, i[t], n); + return 1 < r ? S.uniqueSort(n) : n + }, filter: function (e) { + return this.pushStack(j(this, e || [], !1)) + }, not: function (e) { + return this.pushStack(j(this, e || [], !0)) + }, is: function (e) { + return !!j(this, "string" == typeof e && k.test(e) ? S(e) : e || [], !1).length + } + }); + var D, q = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/; + (S.fn.init = function (e, t, n) { + var r, i; + if (!e) return this; + if (n = n || D, "string" == typeof e) { + if (!(r = "<" === e[0] && ">" === e[e.length - 1] && 3 <= e.length ? [null, e, null] : q.exec(e)) || !r[1] && t) return !t || t.jquery ? (t || n).find(e) : this.constructor(t).find(e); + if (r[1]) { + if (t = t instanceof S ? t[0] : t, S.merge(this, S.parseHTML(r[1], t && t.nodeType ? t.ownerDocument || t : E, !0)), N.test(r[1]) && S.isPlainObject(t)) for (r in t) m(this[r]) ? this[r](t[r]) : this.attr(r, t[r]); + return this + } + return (i = E.getElementById(r[2])) && (this[0] = i, this.length = 1), this + } + return e.nodeType ? (this[0] = e, this.length = 1, this) : m(e) ? void 0 !== n.ready ? n.ready(e) : e(S) : S.makeArray(e, this) + }).prototype = S.fn, D = S(E); + var L = /^(?:parents|prev(?:Until|All))/, H = {children: !0, contents: !0, next: !0, prev: !0}; + + function O(e, t) { + while ((e = e[t]) && 1 !== e.nodeType) ; + return e + } + + S.fn.extend({ + has: function (e) { + var t = S(e, this), n = t.length; + return this.filter(function () { + for (var e = 0; e < n; e++) if (S.contains(this, t[e])) return !0 + }) + }, closest: function (e, t) { + var n, r = 0, i = this.length, o = [], a = "string" != typeof e && S(e); + if (!k.test(e)) for (; r < i; r++) for (n = this[r]; n && n !== t; n = n.parentNode) if (n.nodeType < 11 && (a ? -1 < a.index(n) : 1 === n.nodeType && S.find.matchesSelector(n, e))) { + o.push(n); + break + } + return this.pushStack(1 < o.length ? S.uniqueSort(o) : o) + }, index: function (e) { + return e ? "string" == typeof e ? i.call(S(e), this[0]) : i.call(this, e.jquery ? e[0] : e) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1 + }, add: function (e, t) { + return this.pushStack(S.uniqueSort(S.merge(this.get(), S(e, t)))) + }, addBack: function (e) { + return this.add(null == e ? this.prevObject : this.prevObject.filter(e)) + } + }), S.each({ + parent: function (e) { + var t = e.parentNode; + return t && 11 !== t.nodeType ? t : null + }, parents: function (e) { + return h(e, "parentNode") + }, parentsUntil: function (e, t, n) { + return h(e, "parentNode", n) + }, next: function (e) { + return O(e, "nextSibling") + }, prev: function (e) { + return O(e, "previousSibling") + }, nextAll: function (e) { + return h(e, "nextSibling") + }, prevAll: function (e) { + return h(e, "previousSibling") + }, nextUntil: function (e, t, n) { + return h(e, "nextSibling", n) + }, prevUntil: function (e, t, n) { + return h(e, "previousSibling", n) + }, siblings: function (e) { + return T((e.parentNode || {}).firstChild, e) + }, children: function (e) { + return T(e.firstChild) + }, contents: function (e) { + return null != e.contentDocument && r(e.contentDocument) ? e.contentDocument : (A(e, "template") && (e = e.content || e), S.merge([], e.childNodes)) + } + }, function (r, i) { + S.fn[r] = function (e, t) { + var n = S.map(this, i, e); + return "Until" !== r.slice(-5) && (t = e), t && "string" == typeof t && (n = S.filter(t, n)), 1 < this.length && (H[r] || S.uniqueSort(n), L.test(r) && n.reverse()), this.pushStack(n) + } + }); + var P = /[^\x20\t\r\n\f]+/g; + + function R(e) { + return e + } + + function M(e) { + throw e + } + + function I(e, t, n, r) { + var i; + try { + e && m(i = e.promise) ? i.call(e).done(t).fail(n) : e && m(i = e.then) ? i.call(e, t, n) : t.apply(void 0, [e].slice(r)) + } catch (e) { + n.apply(void 0, [e]) + } + } + + S.Callbacks = function (r) { + var e, n; + r = "string" == typeof r ? (e = r, n = {}, S.each(e.match(P) || [], function (e, t) { + n[t] = !0 + }), n) : S.extend({}, r); + var i, t, o, a, s = [], u = [], l = -1, c = function () { + for (a = a || r.once, o = i = !0; u.length; l = -1) { + t = u.shift(); + while (++l < s.length) !1 === s[l].apply(t[0], t[1]) && r.stopOnFalse && (l = s.length, t = !1) + } + r.memory || (t = !1), i = !1, a && (s = t ? [] : "") + }, f = { + add: function () { + return s && (t && !i && (l = s.length - 1, u.push(t)), function n(e) { + S.each(e, function (e, t) { + m(t) ? r.unique && f.has(t) || s.push(t) : t && t.length && "string" !== w(t) && n(t) + }) + }(arguments), t && !i && c()), this + }, remove: function () { + return S.each(arguments, function (e, t) { + var n; + while (-1 < (n = S.inArray(t, s, n))) s.splice(n, 1), n <= l && l-- + }), this + }, has: function (e) { + return e ? -1 < S.inArray(e, s) : 0 < s.length + }, empty: function () { + return s && (s = []), this + }, disable: function () { + return a = u = [], s = t = "", this + }, disabled: function () { + return !s + }, lock: function () { + return a = u = [], t || i || (s = t = ""), this + }, locked: function () { + return !!a + }, fireWith: function (e, t) { + return a || (t = [e, (t = t || []).slice ? t.slice() : t], u.push(t), i || c()), this + }, fire: function () { + return f.fireWith(this, arguments), this + }, fired: function () { + return !!o + } + }; + return f + }, S.extend({ + Deferred: function (e) { + var o = [["notify", "progress", S.Callbacks("memory"), S.Callbacks("memory"), 2], ["resolve", "done", S.Callbacks("once memory"), S.Callbacks("once memory"), 0, "resolved"], ["reject", "fail", S.Callbacks("once memory"), S.Callbacks("once memory"), 1, "rejected"]], + i = "pending", a = { + state: function () { + return i + }, always: function () { + return s.done(arguments).fail(arguments), this + }, "catch": function (e) { + return a.then(null, e) + }, pipe: function () { + var i = arguments; + return S.Deferred(function (r) { + S.each(o, function (e, t) { + var n = m(i[t[4]]) && i[t[4]]; + s[t[1]](function () { + var e = n && n.apply(this, arguments); + e && m(e.promise) ? e.promise().progress(r.notify).done(r.resolve).fail(r.reject) : r[t[0] + "With"](this, n ? [e] : arguments) + }) + }), i = null + }).promise() + }, then: function (t, n, r) { + var u = 0; + + function l(i, o, a, s) { + return function () { + var n = this, r = arguments, e = function () { + var e, t; + if (!(i < u)) { + if ((e = a.apply(n, r)) === o.promise()) throw new TypeError("Thenable self-resolution"); + t = e && ("object" == typeof e || "function" == typeof e) && e.then, m(t) ? s ? t.call(e, l(u, o, R, s), l(u, o, M, s)) : (u++, t.call(e, l(u, o, R, s), l(u, o, M, s), l(u, o, R, o.notifyWith))) : (a !== R && (n = void 0, r = [e]), (s || o.resolveWith)(n, r)) + } + }, t = s ? e : function () { + try { + e() + } catch (e) { + S.Deferred.exceptionHook && S.Deferred.exceptionHook(e, t.stackTrace), u <= i + 1 && (a !== M && (n = void 0, r = [e]), o.rejectWith(n, r)) + } + }; + i ? t() : (S.Deferred.getStackHook && (t.stackTrace = S.Deferred.getStackHook()), C.setTimeout(t)) + } + } + + return S.Deferred(function (e) { + o[0][3].add(l(0, e, m(r) ? r : R, e.notifyWith)), o[1][3].add(l(0, e, m(t) ? t : R)), o[2][3].add(l(0, e, m(n) ? n : M)) + }).promise() + }, promise: function (e) { + return null != e ? S.extend(e, a) : a + } + }, s = {}; + return S.each(o, function (e, t) { + var n = t[2], r = t[5]; + a[t[1]] = n.add, r && n.add(function () { + i = r + }, o[3 - e][2].disable, o[3 - e][3].disable, o[0][2].lock, o[0][3].lock), n.add(t[3].fire), s[t[0]] = function () { + return s[t[0] + "With"](this === s ? void 0 : this, arguments), this + }, s[t[0] + "With"] = n.fireWith + }), a.promise(s), e && e.call(s, s), s + }, when: function (e) { + var n = arguments.length, t = n, r = Array(t), i = s.call(arguments), o = S.Deferred(), a = function (t) { + return function (e) { + r[t] = this, i[t] = 1 < arguments.length ? s.call(arguments) : e, --n || o.resolveWith(r, i) + } + }; + if (n <= 1 && (I(e, o.done(a(t)).resolve, o.reject, !n), "pending" === o.state() || m(i[t] && i[t].then))) return o.then(); + while (t--) I(i[t], a(t), o.reject); + return o.promise() + } + }); + var W = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + S.Deferred.exceptionHook = function (e, t) { + C.console && C.console.warn && e && W.test(e.name) && C.console.warn("jQuery.Deferred exception: " + e.message, e.stack, t) + }, S.readyException = function (e) { + C.setTimeout(function () { + throw e + }) + }; + var F = S.Deferred(); + + function B() { + E.removeEventListener("DOMContentLoaded", B), C.removeEventListener("load", B), S.ready() + } + + S.fn.ready = function (e) { + return F.then(e)["catch"](function (e) { + S.readyException(e) + }), this + }, S.extend({ + isReady: !1, readyWait: 1, ready: function (e) { + (!0 === e ? --S.readyWait : S.isReady) || (S.isReady = !0) !== e && 0 < --S.readyWait || F.resolveWith(E, [S]) + } + }), S.ready.then = F.then, "complete" === E.readyState || "loading" !== E.readyState && !E.documentElement.doScroll ? C.setTimeout(S.ready) : (E.addEventListener("DOMContentLoaded", B), C.addEventListener("load", B)); + var $ = function (e, t, n, r, i, o, a) { + var s = 0, u = e.length, l = null == n; + if ("object" === w(n)) for (s in i = !0, n) $(e, t, s, n[s], !0, o, a); else if (void 0 !== r && (i = !0, m(r) || (a = !0), l && (a ? (t.call(e, r), t = null) : (l = t, t = function (e, t, n) { + return l.call(S(e), n) + })), t)) for (; s < u; s++) t(e[s], n, a ? r : r.call(e[s], s, t(e[s], n))); + return i ? e : l ? t.call(e) : u ? t(e[0], n) : o + }, _ = /^-ms-/, z = /-([a-z])/g; + + function U(e, t) { + return t.toUpperCase() + } + + function X(e) { + return e.replace(_, "ms-").replace(z, U) + } + + var V = function (e) { + return 1 === e.nodeType || 9 === e.nodeType || !+e.nodeType + }; + + function G() { + this.expando = S.expando + G.uid++ + } + + G.uid = 1, G.prototype = { + cache: function (e) { + var t = e[this.expando]; + return t || (t = {}, V(e) && (e.nodeType ? e[this.expando] = t : Object.defineProperty(e, this.expando, { + value: t, + configurable: !0 + }))), t + }, set: function (e, t, n) { + var r, i = this.cache(e); + if ("string" == typeof t) i[X(t)] = n; else for (r in t) i[X(r)] = t[r]; + return i + }, get: function (e, t) { + return void 0 === t ? this.cache(e) : e[this.expando] && e[this.expando][X(t)] + }, access: function (e, t, n) { + return void 0 === t || t && "string" == typeof t && void 0 === n ? this.get(e, t) : (this.set(e, t, n), void 0 !== n ? n : t) + }, remove: function (e, t) { + var n, r = e[this.expando]; + if (void 0 !== r) { + if (void 0 !== t) { + n = (t = Array.isArray(t) ? t.map(X) : (t = X(t)) in r ? [t] : t.match(P) || []).length; + while (n--) delete r[t[n]] + } + (void 0 === t || S.isEmptyObject(r)) && (e.nodeType ? e[this.expando] = void 0 : delete e[this.expando]) + } + }, hasData: function (e) { + var t = e[this.expando]; + return void 0 !== t && !S.isEmptyObject(t) + } + }; + var Y = new G, Q = new G, J = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, K = /[A-Z]/g; + + function Z(e, t, n) { + var r, i; + if (void 0 === n && 1 === e.nodeType) if (r = "data-" + t.replace(K, "-$&").toLowerCase(), "string" == typeof (n = e.getAttribute(r))) { + try { + n = "true" === (i = n) || "false" !== i && ("null" === i ? null : i === +i + "" ? +i : J.test(i) ? JSON.parse(i) : i) + } catch (e) { + } + Q.set(e, t, n) + } else n = void 0; + return n + } + + S.extend({ + hasData: function (e) { + return Q.hasData(e) || Y.hasData(e) + }, data: function (e, t, n) { + return Q.access(e, t, n) + }, removeData: function (e, t) { + Q.remove(e, t) + }, _data: function (e, t, n) { + return Y.access(e, t, n) + }, _removeData: function (e, t) { + Y.remove(e, t) + } + }), S.fn.extend({ + data: function (n, e) { + var t, r, i, o = this[0], a = o && o.attributes; + if (void 0 === n) { + if (this.length && (i = Q.get(o), 1 === o.nodeType && !Y.get(o, "hasDataAttrs"))) { + t = a.length; + while (t--) a[t] && 0 === (r = a[t].name).indexOf("data-") && (r = X(r.slice(5)), Z(o, r, i[r])); + Y.set(o, "hasDataAttrs", !0) + } + return i + } + return "object" == typeof n ? this.each(function () { + Q.set(this, n) + }) : $(this, function (e) { + var t; + if (o && void 0 === e) return void 0 !== (t = Q.get(o, n)) ? t : void 0 !== (t = Z(o, n)) ? t : void 0; + this.each(function () { + Q.set(this, n, e) + }) + }, null, e, 1 < arguments.length, null, !0) + }, removeData: function (e) { + return this.each(function () { + Q.remove(this, e) + }) + } + }), S.extend({ + queue: function (e, t, n) { + var r; + if (e) return t = (t || "fx") + "queue", r = Y.get(e, t), n && (!r || Array.isArray(n) ? r = Y.access(e, t, S.makeArray(n)) : r.push(n)), r || [] + }, dequeue: function (e, t) { + t = t || "fx"; + var n = S.queue(e, t), r = n.length, i = n.shift(), o = S._queueHooks(e, t); + "inprogress" === i && (i = n.shift(), r--), i && ("fx" === t && n.unshift("inprogress"), delete o.stop, i.call(e, function () { + S.dequeue(e, t) + }, o)), !r && o && o.empty.fire() + }, _queueHooks: function (e, t) { + var n = t + "queueHooks"; + return Y.get(e, n) || Y.access(e, n, { + empty: S.Callbacks("once memory").add(function () { + Y.remove(e, [t + "queue", n]) + }) + }) + } + }), S.fn.extend({ + queue: function (t, n) { + var e = 2; + return "string" != typeof t && (n = t, t = "fx", e--), arguments.length < e ? S.queue(this[0], t) : void 0 === n ? this : this.each(function () { + var e = S.queue(this, t, n); + S._queueHooks(this, t), "fx" === t && "inprogress" !== e[0] && S.dequeue(this, t) + }) + }, dequeue: function (e) { + return this.each(function () { + S.dequeue(this, e) + }) + }, clearQueue: function (e) { + return this.queue(e || "fx", []) + }, promise: function (e, t) { + var n, r = 1, i = S.Deferred(), o = this, a = this.length, s = function () { + --r || i.resolveWith(o, [o]) + }; + "string" != typeof e && (t = e, e = void 0), e = e || "fx"; + while (a--) (n = Y.get(o[a], e + "queueHooks")) && n.empty && (r++, n.empty.add(s)); + return s(), i.promise(t) + } + }); + var ee = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, te = new RegExp("^(?:([+-])=|)(" + ee + ")([a-z%]*)$", "i"), + ne = ["Top", "Right", "Bottom", "Left"], re = E.documentElement, ie = function (e) { + return S.contains(e.ownerDocument, e) + }, oe = {composed: !0}; + re.getRootNode && (ie = function (e) { + return S.contains(e.ownerDocument, e) || e.getRootNode(oe) === e.ownerDocument + }); + var ae = function (e, t) { + return "none" === (e = t || e).style.display || "" === e.style.display && ie(e) && "none" === S.css(e, "display") + }; + + function se(e, t, n, r) { + var i, o, a = 20, s = r ? function () { + return r.cur() + } : function () { + return S.css(e, t, "") + }, u = s(), l = n && n[3] || (S.cssNumber[t] ? "" : "px"), + c = e.nodeType && (S.cssNumber[t] || "px" !== l && +u) && te.exec(S.css(e, t)); + if (c && c[3] !== l) { + u /= 2, l = l || c[3], c = +u || 1; + while (a--) S.style(e, t, c + l), (1 - o) * (1 - (o = s() / u || .5)) <= 0 && (a = 0), c /= o; + c *= 2, S.style(e, t, c + l), n = n || [] + } + return n && (c = +c || +u || 0, i = n[1] ? c + (n[1] + 1) * n[2] : +n[2], r && (r.unit = l, r.start = c, r.end = i)), i + } + + var ue = {}; + + function le(e, t) { + for (var n, r, i, o, a, s, u, l = [], c = 0, f = e.length; c < f; c++) (r = e[c]).style && (n = r.style.display, t ? ("none" === n && (l[c] = Y.get(r, "display") || null, l[c] || (r.style.display = "")), "" === r.style.display && ae(r) && (l[c] = (u = a = o = void 0, a = (i = r).ownerDocument, s = i.nodeName, (u = ue[s]) || (o = a.body.appendChild(a.createElement(s)), u = S.css(o, "display"), o.parentNode.removeChild(o), "none" === u && (u = "block"), ue[s] = u)))) : "none" !== n && (l[c] = "none", Y.set(r, "display", n))); + for (c = 0; c < f; c++) null != l[c] && (e[c].style.display = l[c]); + return e + } + + S.fn.extend({ + show: function () { + return le(this, !0) + }, hide: function () { + return le(this) + }, toggle: function (e) { + return "boolean" == typeof e ? e ? this.show() : this.hide() : this.each(function () { + ae(this) ? S(this).show() : S(this).hide() + }) + } + }); + var ce, fe, pe = /^(?:checkbox|radio)$/i, de = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i, + he = /^$|^module$|\/(?:java|ecma)script/i; + ce = E.createDocumentFragment().appendChild(E.createElement("div")), (fe = E.createElement("input")).setAttribute("type", "radio"), fe.setAttribute("checked", "checked"), fe.setAttribute("name", "t"), ce.appendChild(fe), y.checkClone = ce.cloneNode(!0).cloneNode(!0).lastChild.checked, ce.innerHTML = "", y.noCloneChecked = !!ce.cloneNode(!0).lastChild.defaultValue, ce.innerHTML = "", y.option = !!ce.lastChild; + var ge = { + thead: [1, "", "
"], + col: [2, "", "
"], + tr: [2, "", "
"], + td: [3, "", "
"], + _default: [0, "", ""] + }; + + function ve(e, t) { + var n; + return n = "undefined" != typeof e.getElementsByTagName ? e.getElementsByTagName(t || "*") : "undefined" != typeof e.querySelectorAll ? e.querySelectorAll(t || "*") : [], void 0 === t || t && A(e, t) ? S.merge([e], n) : n + } + + function ye(e, t) { + for (var n = 0, r = e.length; n < r; n++) Y.set(e[n], "globalEval", !t || Y.get(t[n], "globalEval")) + } + + ge.tbody = ge.tfoot = ge.colgroup = ge.caption = ge.thead, ge.th = ge.td, y.option || (ge.optgroup = ge.option = [1, ""]); + var me = /<|&#?\w+;/; + + function xe(e, t, n, r, i) { + for (var o, a, s, u, l, c, f = t.createDocumentFragment(), p = [], d = 0, h = e.length; d < h; d++) if ((o = e[d]) || 0 === o) if ("object" === w(o)) S.merge(p, o.nodeType ? [o] : o); else if (me.test(o)) { + a = a || f.appendChild(t.createElement("div")), s = (de.exec(o) || ["", ""])[1].toLowerCase(), u = ge[s] || ge._default, a.innerHTML = u[1] + S.htmlPrefilter(o) + u[2], c = u[0]; + while (c--) a = a.lastChild; + S.merge(p, a.childNodes), (a = f.firstChild).textContent = "" + } else p.push(t.createTextNode(o)); + f.textContent = "", d = 0; + while (o = p[d++]) if (r && -1 < S.inArray(o, r)) i && i.push(o); else if (l = ie(o), a = ve(f.appendChild(o), "script"), l && ye(a), n) { + c = 0; + while (o = a[c++]) he.test(o.type || "") && n.push(o) + } + return f + } + + var be = /^([^.]*)(?:\.(.+)|)/; + + function we() { + return !0 + } + + function Te() { + return !1 + } + + function Ce(e, t) { + return e === function () { + try { + return E.activeElement + } catch (e) { + } + }() == ("focus" === t) + } + + function Ee(e, t, n, r, i, o) { + var a, s; + if ("object" == typeof t) { + for (s in "string" != typeof n && (r = r || n, n = void 0), t) Ee(e, s, n, r, t[s], o); + return e + } + if (null == r && null == i ? (i = n, r = n = void 0) : null == i && ("string" == typeof n ? (i = r, r = void 0) : (i = r, r = n, n = void 0)), !1 === i) i = Te; else if (!i) return e; + return 1 === o && (a = i, (i = function (e) { + return S().off(e), a.apply(this, arguments) + }).guid = a.guid || (a.guid = S.guid++)), e.each(function () { + S.event.add(this, t, i, r, n) + }) + } + + function Se(e, i, o) { + o ? (Y.set(e, i, !1), S.event.add(e, i, { + namespace: !1, handler: function (e) { + var t, n, r = Y.get(this, i); + if (1 & e.isTrigger && this[i]) { + if (r.length) (S.event.special[i] || {}).delegateType && e.stopPropagation(); else if (r = s.call(arguments), Y.set(this, i, r), t = o(this, i), this[i](), r !== (n = Y.get(this, i)) || t ? Y.set(this, i, !1) : n = {}, r !== n) return e.stopImmediatePropagation(), e.preventDefault(), n && n.value + } else r.length && (Y.set(this, i, {value: S.event.trigger(S.extend(r[0], S.Event.prototype), r.slice(1), this)}), e.stopImmediatePropagation()) + } + })) : void 0 === Y.get(e, i) && S.event.add(e, i, we) + } + + S.event = { + global: {}, add: function (t, e, n, r, i) { + var o, a, s, u, l, c, f, p, d, h, g, v = Y.get(t); + if (V(t)) { + n.handler && (n = (o = n).handler, i = o.selector), i && S.find.matchesSelector(re, i), n.guid || (n.guid = S.guid++), (u = v.events) || (u = v.events = Object.create(null)), (a = v.handle) || (a = v.handle = function (e) { + return "undefined" != typeof S && S.event.triggered !== e.type ? S.event.dispatch.apply(t, arguments) : void 0 + }), l = (e = (e || "").match(P) || [""]).length; + while (l--) d = g = (s = be.exec(e[l]) || [])[1], h = (s[2] || "").split(".").sort(), d && (f = S.event.special[d] || {}, d = (i ? f.delegateType : f.bindType) || d, f = S.event.special[d] || {}, c = S.extend({ + type: d, + origType: g, + data: r, + handler: n, + guid: n.guid, + selector: i, + needsContext: i && S.expr.match.needsContext.test(i), + namespace: h.join(".") + }, o), (p = u[d]) || ((p = u[d] = []).delegateCount = 0, f.setup && !1 !== f.setup.call(t, r, h, a) || t.addEventListener && t.addEventListener(d, a)), f.add && (f.add.call(t, c), c.handler.guid || (c.handler.guid = n.guid)), i ? p.splice(p.delegateCount++, 0, c) : p.push(c), S.event.global[d] = !0) + } + }, remove: function (e, t, n, r, i) { + var o, a, s, u, l, c, f, p, d, h, g, v = Y.hasData(e) && Y.get(e); + if (v && (u = v.events)) { + l = (t = (t || "").match(P) || [""]).length; + while (l--) if (d = g = (s = be.exec(t[l]) || [])[1], h = (s[2] || "").split(".").sort(), d) { + f = S.event.special[d] || {}, p = u[d = (r ? f.delegateType : f.bindType) || d] || [], s = s[2] && new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)"), a = o = p.length; + while (o--) c = p[o], !i && g !== c.origType || n && n.guid !== c.guid || s && !s.test(c.namespace) || r && r !== c.selector && ("**" !== r || !c.selector) || (p.splice(o, 1), c.selector && p.delegateCount--, f.remove && f.remove.call(e, c)); + a && !p.length && (f.teardown && !1 !== f.teardown.call(e, h, v.handle) || S.removeEvent(e, d, v.handle), delete u[d]) + } else for (d in u) S.event.remove(e, d + t[l], n, r, !0); + S.isEmptyObject(u) && Y.remove(e, "handle events") + } + }, dispatch: function (e) { + var t, n, r, i, o, a, s = new Array(arguments.length), u = S.event.fix(e), + l = (Y.get(this, "events") || Object.create(null))[u.type] || [], c = S.event.special[u.type] || {}; + for (s[0] = u, t = 1; t < arguments.length; t++) s[t] = arguments[t]; + if (u.delegateTarget = this, !c.preDispatch || !1 !== c.preDispatch.call(this, u)) { + a = S.event.handlers.call(this, u, l), t = 0; + while ((i = a[t++]) && !u.isPropagationStopped()) { + u.currentTarget = i.elem, n = 0; + while ((o = i.handlers[n++]) && !u.isImmediatePropagationStopped()) u.rnamespace && !1 !== o.namespace && !u.rnamespace.test(o.namespace) || (u.handleObj = o, u.data = o.data, void 0 !== (r = ((S.event.special[o.origType] || {}).handle || o.handler).apply(i.elem, s)) && !1 === (u.result = r) && (u.preventDefault(), u.stopPropagation())) + } + return c.postDispatch && c.postDispatch.call(this, u), u.result + } + }, handlers: function (e, t) { + var n, r, i, o, a, s = [], u = t.delegateCount, l = e.target; + if (u && l.nodeType && !("click" === e.type && 1 <= e.button)) for (; l !== this; l = l.parentNode || this) if (1 === l.nodeType && ("click" !== e.type || !0 !== l.disabled)) { + for (o = [], a = {}, n = 0; n < u; n++) void 0 === a[i = (r = t[n]).selector + " "] && (a[i] = r.needsContext ? -1 < S(i, this).index(l) : S.find(i, this, null, [l]).length), a[i] && o.push(r); + o.length && s.push({elem: l, handlers: o}) + } + return l = this, u < t.length && s.push({elem: l, handlers: t.slice(u)}), s + }, addProp: function (t, e) { + Object.defineProperty(S.Event.prototype, t, { + enumerable: !0, configurable: !0, get: m(e) ? function () { + if (this.originalEvent) return e(this.originalEvent) + } : function () { + if (this.originalEvent) return this.originalEvent[t] + }, set: function (e) { + Object.defineProperty(this, t, {enumerable: !0, configurable: !0, writable: !0, value: e}) + } + }) + }, fix: function (e) { + return e[S.expando] ? e : new S.Event(e) + }, special: { + load: {noBubble: !0}, click: { + setup: function (e) { + var t = this || e; + return pe.test(t.type) && t.click && A(t, "input") && Se(t, "click", we), !1 + }, trigger: function (e) { + var t = this || e; + return pe.test(t.type) && t.click && A(t, "input") && Se(t, "click"), !0 + }, _default: function (e) { + var t = e.target; + return pe.test(t.type) && t.click && A(t, "input") && Y.get(t, "click") || A(t, "a") + } + }, beforeunload: { + postDispatch: function (e) { + void 0 !== e.result && e.originalEvent && (e.originalEvent.returnValue = e.result) + } + } + } + }, S.removeEvent = function (e, t, n) { + e.removeEventListener && e.removeEventListener(t, n) + }, S.Event = function (e, t) { + if (!(this instanceof S.Event)) return new S.Event(e, t); + e && e.type ? (this.originalEvent = e, this.type = e.type, this.isDefaultPrevented = e.defaultPrevented || void 0 === e.defaultPrevented && !1 === e.returnValue ? we : Te, this.target = e.target && 3 === e.target.nodeType ? e.target.parentNode : e.target, this.currentTarget = e.currentTarget, this.relatedTarget = e.relatedTarget) : this.type = e, t && S.extend(this, t), this.timeStamp = e && e.timeStamp || Date.now(), this[S.expando] = !0 + }, S.Event.prototype = { + constructor: S.Event, + isDefaultPrevented: Te, + isPropagationStopped: Te, + isImmediatePropagationStopped: Te, + isSimulated: !1, + preventDefault: function () { + var e = this.originalEvent; + this.isDefaultPrevented = we, e && !this.isSimulated && e.preventDefault() + }, + stopPropagation: function () { + var e = this.originalEvent; + this.isPropagationStopped = we, e && !this.isSimulated && e.stopPropagation() + }, + stopImmediatePropagation: function () { + var e = this.originalEvent; + this.isImmediatePropagationStopped = we, e && !this.isSimulated && e.stopImmediatePropagation(), this.stopPropagation() + } + }, S.each({ + altKey: !0, + bubbles: !0, + cancelable: !0, + changedTouches: !0, + ctrlKey: !0, + detail: !0, + eventPhase: !0, + metaKey: !0, + pageX: !0, + pageY: !0, + shiftKey: !0, + view: !0, + "char": !0, + code: !0, + charCode: !0, + key: !0, + keyCode: !0, + button: !0, + buttons: !0, + clientX: !0, + clientY: !0, + offsetX: !0, + offsetY: !0, + pointerId: !0, + pointerType: !0, + screenX: !0, + screenY: !0, + targetTouches: !0, + toElement: !0, + touches: !0, + which: !0 + }, S.event.addProp), S.each({focus: "focusin", blur: "focusout"}, function (e, t) { + S.event.special[e] = { + setup: function () { + return Se(this, e, Ce), !1 + }, trigger: function () { + return Se(this, e), !0 + }, _default: function () { + return !0 + }, delegateType: t + } + }), S.each({ + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" + }, function (e, i) { + S.event.special[e] = { + delegateType: i, bindType: i, handle: function (e) { + var t, n = e.relatedTarget, r = e.handleObj; + return n && (n === this || S.contains(this, n)) || (e.type = r.origType, t = r.handler.apply(this, arguments), e.type = i), t + } + } + }), S.fn.extend({ + on: function (e, t, n, r) { + return Ee(this, e, t, n, r) + }, one: function (e, t, n, r) { + return Ee(this, e, t, n, r, 1) + }, off: function (e, t, n) { + var r, i; + if (e && e.preventDefault && e.handleObj) return r = e.handleObj, S(e.delegateTarget).off(r.namespace ? r.origType + "." + r.namespace : r.origType, r.selector, r.handler), this; + if ("object" == typeof e) { + for (i in e) this.off(i, t, e[i]); + return this + } + return !1 !== t && "function" != typeof t || (n = t, t = void 0), !1 === n && (n = Te), this.each(function () { + S.event.remove(this, e, n, t) + }) + } + }); + var ke = /\s*$/g; + + function je(e, t) { + return A(e, "table") && A(11 !== t.nodeType ? t : t.firstChild, "tr") && S(e).children("tbody")[0] || e + } + + function De(e) { + return e.type = (null !== e.getAttribute("type")) + "/" + e.type, e + } + + function qe(e) { + return "true/" === (e.type || "").slice(0, 5) ? e.type = e.type.slice(5) : e.removeAttribute("type"), e + } + + function Le(e, t) { + var n, r, i, o, a, s; + if (1 === t.nodeType) { + if (Y.hasData(e) && (s = Y.get(e).events)) for (i in Y.remove(t, "handle events"), s) for (n = 0, r = s[i].length; n < r; n++) S.event.add(t, i, s[i][n]); + Q.hasData(e) && (o = Q.access(e), a = S.extend({}, o), Q.set(t, a)) + } + } + + function He(n, r, i, o) { + r = g(r); + var e, t, a, s, u, l, c = 0, f = n.length, p = f - 1, d = r[0], h = m(d); + if (h || 1 < f && "string" == typeof d && !y.checkClone && Ae.test(d)) return n.each(function (e) { + var t = n.eq(e); + h && (r[0] = d.call(this, e, t.html())), He(t, r, i, o) + }); + if (f && (t = (e = xe(r, n[0].ownerDocument, !1, n, o)).firstChild, 1 === e.childNodes.length && (e = t), t || o)) { + for (s = (a = S.map(ve(e, "script"), De)).length; c < f; c++) u = e, c !== p && (u = S.clone(u, !0, !0), s && S.merge(a, ve(u, "script"))), i.call(n[c], u, c); + if (s) for (l = a[a.length - 1].ownerDocument, S.map(a, qe), c = 0; c < s; c++) u = a[c], he.test(u.type || "") && !Y.access(u, "globalEval") && S.contains(l, u) && (u.src && "module" !== (u.type || "").toLowerCase() ? S._evalUrl && !u.noModule && S._evalUrl(u.src, {nonce: u.nonce || u.getAttribute("nonce")}, l) : b(u.textContent.replace(Ne, ""), u, l)) + } + return n + } + + function Oe(e, t, n) { + for (var r, i = t ? S.filter(t, e) : e, o = 0; null != (r = i[o]); o++) n || 1 !== r.nodeType || S.cleanData(ve(r)), r.parentNode && (n && ie(r) && ye(ve(r, "script")), r.parentNode.removeChild(r)); + return e + } + + S.extend({ + htmlPrefilter: function (e) { + return e + }, clone: function (e, t, n) { + var r, i, o, a, s, u, l, c = e.cloneNode(!0), f = ie(e); + if (!(y.noCloneChecked || 1 !== e.nodeType && 11 !== e.nodeType || S.isXMLDoc(e))) for (a = ve(c), r = 0, i = (o = ve(e)).length; r < i; r++) s = o[r], u = a[r], void 0, "input" === (l = u.nodeName.toLowerCase()) && pe.test(s.type) ? u.checked = s.checked : "input" !== l && "textarea" !== l || (u.defaultValue = s.defaultValue); + if (t) if (n) for (o = o || ve(e), a = a || ve(c), r = 0, i = o.length; r < i; r++) Le(o[r], a[r]); else Le(e, c); + return 0 < (a = ve(c, "script")).length && ye(a, !f && ve(e, "script")), c + }, cleanData: function (e) { + for (var t, n, r, i = S.event.special, o = 0; void 0 !== (n = e[o]); o++) if (V(n)) { + if (t = n[Y.expando]) { + if (t.events) for (r in t.events) i[r] ? S.event.remove(n, r) : S.removeEvent(n, r, t.handle); + n[Y.expando] = void 0 + } + n[Q.expando] && (n[Q.expando] = void 0) + } + } + }), S.fn.extend({ + detach: function (e) { + return Oe(this, e, !0) + }, remove: function (e) { + return Oe(this, e) + }, text: function (e) { + return $(this, function (e) { + return void 0 === e ? S.text(this) : this.empty().each(function () { + 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || (this.textContent = e) + }) + }, null, e, arguments.length) + }, append: function () { + return He(this, arguments, function (e) { + 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || je(this, e).appendChild(e) + }) + }, prepend: function () { + return He(this, arguments, function (e) { + if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) { + var t = je(this, e); + t.insertBefore(e, t.firstChild) + } + }) + }, before: function () { + return He(this, arguments, function (e) { + this.parentNode && this.parentNode.insertBefore(e, this) + }) + }, after: function () { + return He(this, arguments, function (e) { + this.parentNode && this.parentNode.insertBefore(e, this.nextSibling) + }) + }, empty: function () { + for (var e, t = 0; null != (e = this[t]); t++) 1 === e.nodeType && (S.cleanData(ve(e, !1)), e.textContent = ""); + return this + }, clone: function (e, t) { + return e = null != e && e, t = null == t ? e : t, this.map(function () { + return S.clone(this, e, t) + }) + }, html: function (e) { + return $(this, function (e) { + var t = this[0] || {}, n = 0, r = this.length; + if (void 0 === e && 1 === t.nodeType) return t.innerHTML; + if ("string" == typeof e && !ke.test(e) && !ge[(de.exec(e) || ["", ""])[1].toLowerCase()]) { + e = S.htmlPrefilter(e); + try { + for (; n < r; n++) 1 === (t = this[n] || {}).nodeType && (S.cleanData(ve(t, !1)), t.innerHTML = e); + t = 0 + } catch (e) { + } + } + t && this.empty().append(e) + }, null, e, arguments.length) + }, replaceWith: function () { + var n = []; + return He(this, arguments, function (e) { + var t = this.parentNode; + S.inArray(this, n) < 0 && (S.cleanData(ve(this)), t && t.replaceChild(e, this)) + }, n) + } + }), S.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" + }, function (e, a) { + S.fn[e] = function (e) { + for (var t, n = [], r = S(e), i = r.length - 1, o = 0; o <= i; o++) t = o === i ? this : this.clone(!0), S(r[o])[a](t), u.apply(n, t.get()); + return this.pushStack(n) + } + }); + var Pe = new RegExp("^(" + ee + ")(?!px)[a-z%]+$", "i"), Re = function (e) { + var t = e.ownerDocument.defaultView; + return t && t.opener || (t = C), t.getComputedStyle(e) + }, Me = function (e, t, n) { + var r, i, o = {}; + for (i in t) o[i] = e.style[i], e.style[i] = t[i]; + for (i in r = n.call(e), t) e.style[i] = o[i]; + return r + }, Ie = new RegExp(ne.join("|"), "i"); + + function We(e, t, n) { + var r, i, o, a, s = e.style; + return (n = n || Re(e)) && ("" !== (a = n.getPropertyValue(t) || n[t]) || ie(e) || (a = S.style(e, t)), !y.pixelBoxStyles() && Pe.test(a) && Ie.test(t) && (r = s.width, i = s.minWidth, o = s.maxWidth, s.minWidth = s.maxWidth = s.width = a, a = n.width, s.width = r, s.minWidth = i, s.maxWidth = o)), void 0 !== a ? a + "" : a + } + + function Fe(e, t) { + return { + get: function () { + if (!e()) return (this.get = t).apply(this, arguments); + delete this.get + } + } + } + + !function () { + function e() { + if (l) { + u.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", l.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", re.appendChild(u).appendChild(l); + var e = C.getComputedStyle(l); + n = "1%" !== e.top, s = 12 === t(e.marginLeft), l.style.right = "60%", o = 36 === t(e.right), r = 36 === t(e.width), l.style.position = "absolute", i = 12 === t(l.offsetWidth / 3), re.removeChild(u), l = null + } + } + + function t(e) { + return Math.round(parseFloat(e)) + } + + var n, r, i, o, a, s, u = E.createElement("div"), l = E.createElement("div"); + l.style && (l.style.backgroundClip = "content-box", l.cloneNode(!0).style.backgroundClip = "", y.clearCloneStyle = "content-box" === l.style.backgroundClip, S.extend(y, { + boxSizingReliable: function () { + return e(), r + }, pixelBoxStyles: function () { + return e(), o + }, pixelPosition: function () { + return e(), n + }, reliableMarginLeft: function () { + return e(), s + }, scrollboxSize: function () { + return e(), i + }, reliableTrDimensions: function () { + var e, t, n, r; + return null == a && (e = E.createElement("table"), t = E.createElement("tr"), n = E.createElement("div"), e.style.cssText = "position:absolute;left:-11111px;border-collapse:separate", t.style.cssText = "border:1px solid", t.style.height = "1px", n.style.height = "9px", n.style.display = "block", re.appendChild(e).appendChild(t).appendChild(n), r = C.getComputedStyle(t), a = parseInt(r.height, 10) + parseInt(r.borderTopWidth, 10) + parseInt(r.borderBottomWidth, 10) === t.offsetHeight, re.removeChild(e)), a + } + })) + }(); + var Be = ["Webkit", "Moz", "ms"], $e = E.createElement("div").style, _e = {}; + + function ze(e) { + var t = S.cssProps[e] || _e[e]; + return t || (e in $e ? e : _e[e] = function (e) { + var t = e[0].toUpperCase() + e.slice(1), n = Be.length; + while (n--) if ((e = Be[n] + t) in $e) return e + }(e) || e) + } + + var Ue = /^(none|table(?!-c[ea]).+)/, Xe = /^--/, + Ve = {position: "absolute", visibility: "hidden", display: "block"}, + Ge = {letterSpacing: "0", fontWeight: "400"}; + + function Ye(e, t, n) { + var r = te.exec(t); + return r ? Math.max(0, r[2] - (n || 0)) + (r[3] || "px") : t + } + + function Qe(e, t, n, r, i, o) { + var a = "width" === t ? 1 : 0, s = 0, u = 0; + if (n === (r ? "border" : "content")) return 0; + for (; a < 4; a += 2) "margin" === n && (u += S.css(e, n + ne[a], !0, i)), r ? ("content" === n && (u -= S.css(e, "padding" + ne[a], !0, i)), "margin" !== n && (u -= S.css(e, "border" + ne[a] + "Width", !0, i))) : (u += S.css(e, "padding" + ne[a], !0, i), "padding" !== n ? u += S.css(e, "border" + ne[a] + "Width", !0, i) : s += S.css(e, "border" + ne[a] + "Width", !0, i)); + return !r && 0 <= o && (u += Math.max(0, Math.ceil(e["offset" + t[0].toUpperCase() + t.slice(1)] - o - u - s - .5)) || 0), u + } + + function Je(e, t, n) { + var r = Re(e), i = (!y.boxSizingReliable() || n) && "border-box" === S.css(e, "boxSizing", !1, r), o = i, + a = We(e, t, r), s = "offset" + t[0].toUpperCase() + t.slice(1); + if (Pe.test(a)) { + if (!n) return a; + a = "auto" + } + return (!y.boxSizingReliable() && i || !y.reliableTrDimensions() && A(e, "tr") || "auto" === a || !parseFloat(a) && "inline" === S.css(e, "display", !1, r)) && e.getClientRects().length && (i = "border-box" === S.css(e, "boxSizing", !1, r), (o = s in e) && (a = e[s])), (a = parseFloat(a) || 0) + Qe(e, t, n || (i ? "border" : "content"), o, r, a) + "px" + } + + function Ke(e, t, n, r, i) { + return new Ke.prototype.init(e, t, n, r, i) + } + + S.extend({ + cssHooks: { + opacity: { + get: function (e, t) { + if (t) { + var n = We(e, "opacity"); + return "" === n ? "1" : n + } + } + } + }, + cssNumber: { + animationIterationCount: !0, + columnCount: !0, + fillOpacity: !0, + flexGrow: !0, + flexShrink: !0, + fontWeight: !0, + gridArea: !0, + gridColumn: !0, + gridColumnEnd: !0, + gridColumnStart: !0, + gridRow: !0, + gridRowEnd: !0, + gridRowStart: !0, + lineHeight: !0, + opacity: !0, + order: !0, + orphans: !0, + widows: !0, + zIndex: !0, + zoom: !0 + }, + cssProps: {}, + style: function (e, t, n, r) { + if (e && 3 !== e.nodeType && 8 !== e.nodeType && e.style) { + var i, o, a, s = X(t), u = Xe.test(t), l = e.style; + if (u || (t = ze(s)), a = S.cssHooks[t] || S.cssHooks[s], void 0 === n) return a && "get" in a && void 0 !== (i = a.get(e, !1, r)) ? i : l[t]; + "string" === (o = typeof n) && (i = te.exec(n)) && i[1] && (n = se(e, t, i), o = "number"), null != n && n == n && ("number" !== o || u || (n += i && i[3] || (S.cssNumber[s] ? "" : "px")), y.clearCloneStyle || "" !== n || 0 !== t.indexOf("background") || (l[t] = "inherit"), a && "set" in a && void 0 === (n = a.set(e, n, r)) || (u ? l.setProperty(t, n) : l[t] = n)) + } + }, + css: function (e, t, n, r) { + var i, o, a, s = X(t); + return Xe.test(t) || (t = ze(s)), (a = S.cssHooks[t] || S.cssHooks[s]) && "get" in a && (i = a.get(e, !0, n)), void 0 === i && (i = We(e, t, r)), "normal" === i && t in Ge && (i = Ge[t]), "" === n || n ? (o = parseFloat(i), !0 === n || isFinite(o) ? o || 0 : i) : i + } + }), S.each(["height", "width"], function (e, u) { + S.cssHooks[u] = { + get: function (e, t, n) { + if (t) return !Ue.test(S.css(e, "display")) || e.getClientRects().length && e.getBoundingClientRect().width ? Je(e, u, n) : Me(e, Ve, function () { + return Je(e, u, n) + }) + }, set: function (e, t, n) { + var r, i = Re(e), o = !y.scrollboxSize() && "absolute" === i.position, + a = (o || n) && "border-box" === S.css(e, "boxSizing", !1, i), s = n ? Qe(e, u, n, a, i) : 0; + return a && o && (s -= Math.ceil(e["offset" + u[0].toUpperCase() + u.slice(1)] - parseFloat(i[u]) - Qe(e, u, "border", !1, i) - .5)), s && (r = te.exec(t)) && "px" !== (r[3] || "px") && (e.style[u] = t, t = S.css(e, u)), Ye(0, t, s) + } + } + }), S.cssHooks.marginLeft = Fe(y.reliableMarginLeft, function (e, t) { + if (t) return (parseFloat(We(e, "marginLeft")) || e.getBoundingClientRect().left - Me(e, {marginLeft: 0}, function () { + return e.getBoundingClientRect().left + })) + "px" + }), S.each({margin: "", padding: "", border: "Width"}, function (i, o) { + S.cssHooks[i + o] = { + expand: function (e) { + for (var t = 0, n = {}, r = "string" == typeof e ? e.split(" ") : [e]; t < 4; t++) n[i + ne[t] + o] = r[t] || r[t - 2] || r[0]; + return n + } + }, "margin" !== i && (S.cssHooks[i + o].set = Ye) + }), S.fn.extend({ + css: function (e, t) { + return $(this, function (e, t, n) { + var r, i, o = {}, a = 0; + if (Array.isArray(t)) { + for (r = Re(e), i = t.length; a < i; a++) o[t[a]] = S.css(e, t[a], !1, r); + return o + } + return void 0 !== n ? S.style(e, t, n) : S.css(e, t) + }, e, t, 1 < arguments.length) + } + }), ((S.Tween = Ke).prototype = { + constructor: Ke, init: function (e, t, n, r, i, o) { + this.elem = e, this.prop = n, this.easing = i || S.easing._default, this.options = t, this.start = this.now = this.cur(), this.end = r, this.unit = o || (S.cssNumber[n] ? "" : "px") + }, cur: function () { + var e = Ke.propHooks[this.prop]; + return e && e.get ? e.get(this) : Ke.propHooks._default.get(this) + }, run: function (e) { + var t, n = Ke.propHooks[this.prop]; + return this.options.duration ? this.pos = t = S.easing[this.easing](e, this.options.duration * e, 0, 1, this.options.duration) : this.pos = t = e, this.now = (this.end - this.start) * t + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), n && n.set ? n.set(this) : Ke.propHooks._default.set(this), this + } + }).init.prototype = Ke.prototype, (Ke.propHooks = { + _default: { + get: function (e) { + var t; + return 1 !== e.elem.nodeType || null != e.elem[e.prop] && null == e.elem.style[e.prop] ? e.elem[e.prop] : (t = S.css(e.elem, e.prop, "")) && "auto" !== t ? t : 0 + }, set: function (e) { + S.fx.step[e.prop] ? S.fx.step[e.prop](e) : 1 !== e.elem.nodeType || !S.cssHooks[e.prop] && null == e.elem.style[ze(e.prop)] ? e.elem[e.prop] = e.now : S.style(e.elem, e.prop, e.now + e.unit) + } + } + }).scrollTop = Ke.propHooks.scrollLeft = { + set: function (e) { + e.elem.nodeType && e.elem.parentNode && (e.elem[e.prop] = e.now) + } + }, S.easing = { + linear: function (e) { + return e + }, swing: function (e) { + return .5 - Math.cos(e * Math.PI) / 2 + }, _default: "swing" + }, S.fx = Ke.prototype.init, S.fx.step = {}; + var Ze, et, tt, nt, rt = /^(?:toggle|show|hide)$/, it = /queueHooks$/; + + function ot() { + et && (!1 === E.hidden && C.requestAnimationFrame ? C.requestAnimationFrame(ot) : C.setTimeout(ot, S.fx.interval), S.fx.tick()) + } + + function at() { + return C.setTimeout(function () { + Ze = void 0 + }), Ze = Date.now() + } + + function st(e, t) { + var n, r = 0, i = {height: e}; + for (t = t ? 1 : 0; r < 4; r += 2 - t) i["margin" + (n = ne[r])] = i["padding" + n] = e; + return t && (i.opacity = i.width = e), i + } + + function ut(e, t, n) { + for (var r, i = (lt.tweeners[t] || []).concat(lt.tweeners["*"]), o = 0, a = i.length; o < a; o++) if (r = i[o].call(n, t, e)) return r + } + + function lt(o, e, t) { + var n, a, r = 0, i = lt.prefilters.length, s = S.Deferred().always(function () { + delete u.elem + }), u = function () { + if (a) return !1; + for (var e = Ze || at(), t = Math.max(0, l.startTime + l.duration - e), n = 1 - (t / l.duration || 0), r = 0, i = l.tweens.length; r < i; r++) l.tweens[r].run(n); + return s.notifyWith(o, [l, n, t]), n < 1 && i ? t : (i || s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l]), !1) + }, l = s.promise({ + elem: o, + props: S.extend({}, e), + opts: S.extend(!0, {specialEasing: {}, easing: S.easing._default}, t), + originalProperties: e, + originalOptions: t, + startTime: Ze || at(), + duration: t.duration, + tweens: [], + createTween: function (e, t) { + var n = S.Tween(o, l.opts, e, t, l.opts.specialEasing[e] || l.opts.easing); + return l.tweens.push(n), n + }, + stop: function (e) { + var t = 0, n = e ? l.tweens.length : 0; + if (a) return this; + for (a = !0; t < n; t++) l.tweens[t].run(1); + return e ? (s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l, e])) : s.rejectWith(o, [l, e]), this + } + }), c = l.props; + for (!function (e, t) { + var n, r, i, o, a; + for (n in e) if (i = t[r = X(n)], o = e[n], Array.isArray(o) && (i = o[1], o = e[n] = o[0]), n !== r && (e[r] = o, delete e[n]), (a = S.cssHooks[r]) && "expand" in a) for (n in o = a.expand(o), delete e[r], o) n in e || (e[n] = o[n], t[n] = i); else t[r] = i + }(c, l.opts.specialEasing); r < i; r++) if (n = lt.prefilters[r].call(l, o, c, l.opts)) return m(n.stop) && (S._queueHooks(l.elem, l.opts.queue).stop = n.stop.bind(n)), n; + return S.map(c, ut, l), m(l.opts.start) && l.opts.start.call(o, l), l.progress(l.opts.progress).done(l.opts.done, l.opts.complete).fail(l.opts.fail).always(l.opts.always), S.fx.timer(S.extend(u, { + elem: o, + anim: l, + queue: l.opts.queue + })), l + } + + S.Animation = S.extend(lt, { + tweeners: { + "*": [function (e, t) { + var n = this.createTween(e, t); + return se(n.elem, e, te.exec(t), n), n + }] + }, tweener: function (e, t) { + m(e) ? (t = e, e = ["*"]) : e = e.match(P); + for (var n, r = 0, i = e.length; r < i; r++) n = e[r], lt.tweeners[n] = lt.tweeners[n] || [], lt.tweeners[n].unshift(t) + }, prefilters: [function (e, t, n) { + var r, i, o, a, s, u, l, c, f = "width" in t || "height" in t, p = this, d = {}, h = e.style, + g = e.nodeType && ae(e), v = Y.get(e, "fxshow"); + for (r in n.queue || (null == (a = S._queueHooks(e, "fx")).unqueued && (a.unqueued = 0, s = a.empty.fire, a.empty.fire = function () { + a.unqueued || s() + }), a.unqueued++, p.always(function () { + p.always(function () { + a.unqueued--, S.queue(e, "fx").length || a.empty.fire() + }) + })), t) if (i = t[r], rt.test(i)) { + if (delete t[r], o = o || "toggle" === i, i === (g ? "hide" : "show")) { + if ("show" !== i || !v || void 0 === v[r]) continue; + g = !0 + } + d[r] = v && v[r] || S.style(e, r) + } + if ((u = !S.isEmptyObject(t)) || !S.isEmptyObject(d)) for (r in f && 1 === e.nodeType && (n.overflow = [h.overflow, h.overflowX, h.overflowY], null == (l = v && v.display) && (l = Y.get(e, "display")), "none" === (c = S.css(e, "display")) && (l ? c = l : (le([e], !0), l = e.style.display || l, c = S.css(e, "display"), le([e]))), ("inline" === c || "inline-block" === c && null != l) && "none" === S.css(e, "float") && (u || (p.done(function () { + h.display = l + }), null == l && (c = h.display, l = "none" === c ? "" : c)), h.display = "inline-block")), n.overflow && (h.overflow = "hidden", p.always(function () { + h.overflow = n.overflow[0], h.overflowX = n.overflow[1], h.overflowY = n.overflow[2] + })), u = !1, d) u || (v ? "hidden" in v && (g = v.hidden) : v = Y.access(e, "fxshow", {display: l}), o && (v.hidden = !g), g && le([e], !0), p.done(function () { + for (r in g || le([e]), Y.remove(e, "fxshow"), d) S.style(e, r, d[r]) + })), u = ut(g ? v[r] : 0, r, p), r in v || (v[r] = u.start, g && (u.end = u.start, u.start = 0)) + }], prefilter: function (e, t) { + t ? lt.prefilters.unshift(e) : lt.prefilters.push(e) + } + }), S.speed = function (e, t, n) { + var r = e && "object" == typeof e ? S.extend({}, e) : { + complete: n || !n && t || m(e) && e, + duration: e, + easing: n && t || t && !m(t) && t + }; + return S.fx.off ? r.duration = 0 : "number" != typeof r.duration && (r.duration in S.fx.speeds ? r.duration = S.fx.speeds[r.duration] : r.duration = S.fx.speeds._default), null != r.queue && !0 !== r.queue || (r.queue = "fx"), r.old = r.complete, r.complete = function () { + m(r.old) && r.old.call(this), r.queue && S.dequeue(this, r.queue) + }, r + }, S.fn.extend({ + fadeTo: function (e, t, n, r) { + return this.filter(ae).css("opacity", 0).show().end().animate({opacity: t}, e, n, r) + }, animate: function (t, e, n, r) { + var i = S.isEmptyObject(t), o = S.speed(e, n, r), a = function () { + var e = lt(this, S.extend({}, t), o); + (i || Y.get(this, "finish")) && e.stop(!0) + }; + return a.finish = a, i || !1 === o.queue ? this.each(a) : this.queue(o.queue, a) + }, stop: function (i, e, o) { + var a = function (e) { + var t = e.stop; + delete e.stop, t(o) + }; + return "string" != typeof i && (o = e, e = i, i = void 0), e && this.queue(i || "fx", []), this.each(function () { + var e = !0, t = null != i && i + "queueHooks", n = S.timers, r = Y.get(this); + if (t) r[t] && r[t].stop && a(r[t]); else for (t in r) r[t] && r[t].stop && it.test(t) && a(r[t]); + for (t = n.length; t--;) n[t].elem !== this || null != i && n[t].queue !== i || (n[t].anim.stop(o), e = !1, n.splice(t, 1)); + !e && o || S.dequeue(this, i) + }) + }, finish: function (a) { + return !1 !== a && (a = a || "fx"), this.each(function () { + var e, t = Y.get(this), n = t[a + "queue"], r = t[a + "queueHooks"], i = S.timers, o = n ? n.length : 0; + for (t.finish = !0, S.queue(this, a, []), r && r.stop && r.stop.call(this, !0), e = i.length; e--;) i[e].elem === this && i[e].queue === a && (i[e].anim.stop(!0), i.splice(e, 1)); + for (e = 0; e < o; e++) n[e] && n[e].finish && n[e].finish.call(this); + delete t.finish + }) + } + }), S.each(["toggle", "show", "hide"], function (e, r) { + var i = S.fn[r]; + S.fn[r] = function (e, t, n) { + return null == e || "boolean" == typeof e ? i.apply(this, arguments) : this.animate(st(r, !0), e, t, n) + } + }), S.each({ + slideDown: st("show"), + slideUp: st("hide"), + slideToggle: st("toggle"), + fadeIn: {opacity: "show"}, + fadeOut: {opacity: "hide"}, + fadeToggle: {opacity: "toggle"} + }, function (e, r) { + S.fn[e] = function (e, t, n) { + return this.animate(r, e, t, n) + } + }), S.timers = [], S.fx.tick = function () { + var e, t = 0, n = S.timers; + for (Ze = Date.now(); t < n.length; t++) (e = n[t])() || n[t] !== e || n.splice(t--, 1); + n.length || S.fx.stop(), Ze = void 0 + }, S.fx.timer = function (e) { + S.timers.push(e), S.fx.start() + }, S.fx.interval = 13, S.fx.start = function () { + et || (et = !0, ot()) + }, S.fx.stop = function () { + et = null + }, S.fx.speeds = {slow: 600, fast: 200, _default: 400}, S.fn.delay = function (r, e) { + return r = S.fx && S.fx.speeds[r] || r, e = e || "fx", this.queue(e, function (e, t) { + var n = C.setTimeout(e, r); + t.stop = function () { + C.clearTimeout(n) + } + }) + }, tt = E.createElement("input"), nt = E.createElement("select").appendChild(E.createElement("option")), tt.type = "checkbox", y.checkOn = "" !== tt.value, y.optSelected = nt.selected, (tt = E.createElement("input")).value = "t", tt.type = "radio", y.radioValue = "t" === tt.value; + var ct, ft = S.expr.attrHandle; + S.fn.extend({ + attr: function (e, t) { + return $(this, S.attr, e, t, 1 < arguments.length) + }, removeAttr: function (e) { + return this.each(function () { + S.removeAttr(this, e) + }) + } + }), S.extend({ + attr: function (e, t, n) { + var r, i, o = e.nodeType; + if (3 !== o && 8 !== o && 2 !== o) return "undefined" == typeof e.getAttribute ? S.prop(e, t, n) : (1 === o && S.isXMLDoc(e) || (i = S.attrHooks[t.toLowerCase()] || (S.expr.match.bool.test(t) ? ct : void 0)), void 0 !== n ? null === n ? void S.removeAttr(e, t) : i && "set" in i && void 0 !== (r = i.set(e, n, t)) ? r : (e.setAttribute(t, n + ""), n) : i && "get" in i && null !== (r = i.get(e, t)) ? r : null == (r = S.find.attr(e, t)) ? void 0 : r) + }, attrHooks: { + type: { + set: function (e, t) { + if (!y.radioValue && "radio" === t && A(e, "input")) { + var n = e.value; + return e.setAttribute("type", t), n && (e.value = n), t + } + } + } + }, removeAttr: function (e, t) { + var n, r = 0, i = t && t.match(P); + if (i && 1 === e.nodeType) while (n = i[r++]) e.removeAttribute(n) + } + }), ct = { + set: function (e, t, n) { + return !1 === t ? S.removeAttr(e, n) : e.setAttribute(n, n), n + } + }, S.each(S.expr.match.bool.source.match(/\w+/g), function (e, t) { + var a = ft[t] || S.find.attr; + ft[t] = function (e, t, n) { + var r, i, o = t.toLowerCase(); + return n || (i = ft[o], ft[o] = r, r = null != a(e, t, n) ? o : null, ft[o] = i), r + } + }); + var pt = /^(?:input|select|textarea|button)$/i, dt = /^(?:a|area)$/i; + + function ht(e) { + return (e.match(P) || []).join(" ") + } + + function gt(e) { + return e.getAttribute && e.getAttribute("class") || "" + } + + function vt(e) { + return Array.isArray(e) ? e : "string" == typeof e && e.match(P) || [] + } + + S.fn.extend({ + prop: function (e, t) { + return $(this, S.prop, e, t, 1 < arguments.length) + }, removeProp: function (e) { + return this.each(function () { + delete this[S.propFix[e] || e] + }) + } + }), S.extend({ + prop: function (e, t, n) { + var r, i, o = e.nodeType; + if (3 !== o && 8 !== o && 2 !== o) return 1 === o && S.isXMLDoc(e) || (t = S.propFix[t] || t, i = S.propHooks[t]), void 0 !== n ? i && "set" in i && void 0 !== (r = i.set(e, n, t)) ? r : e[t] = n : i && "get" in i && null !== (r = i.get(e, t)) ? r : e[t] + }, propHooks: { + tabIndex: { + get: function (e) { + var t = S.find.attr(e, "tabindex"); + return t ? parseInt(t, 10) : pt.test(e.nodeName) || dt.test(e.nodeName) && e.href ? 0 : -1 + } + } + }, propFix: {"for": "htmlFor", "class": "className"} + }), y.optSelected || (S.propHooks.selected = { + get: function (e) { + var t = e.parentNode; + return t && t.parentNode && t.parentNode.selectedIndex, null + }, set: function (e) { + var t = e.parentNode; + t && (t.selectedIndex, t.parentNode && t.parentNode.selectedIndex) + } + }), S.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function () { + S.propFix[this.toLowerCase()] = this + }), S.fn.extend({ + addClass: function (t) { + var e, n, r, i, o, a, s, u = 0; + if (m(t)) return this.each(function (e) { + S(this).addClass(t.call(this, e, gt(this))) + }); + if ((e = vt(t)).length) while (n = this[u++]) if (i = gt(n), r = 1 === n.nodeType && " " + ht(i) + " ") { + a = 0; + while (o = e[a++]) r.indexOf(" " + o + " ") < 0 && (r += o + " "); + i !== (s = ht(r)) && n.setAttribute("class", s) + } + return this + }, removeClass: function (t) { + var e, n, r, i, o, a, s, u = 0; + if (m(t)) return this.each(function (e) { + S(this).removeClass(t.call(this, e, gt(this))) + }); + if (!arguments.length) return this.attr("class", ""); + if ((e = vt(t)).length) while (n = this[u++]) if (i = gt(n), r = 1 === n.nodeType && " " + ht(i) + " ") { + a = 0; + while (o = e[a++]) while (-1 < r.indexOf(" " + o + " ")) r = r.replace(" " + o + " ", " "); + i !== (s = ht(r)) && n.setAttribute("class", s) + } + return this + }, toggleClass: function (i, t) { + var o = typeof i, a = "string" === o || Array.isArray(i); + return "boolean" == typeof t && a ? t ? this.addClass(i) : this.removeClass(i) : m(i) ? this.each(function (e) { + S(this).toggleClass(i.call(this, e, gt(this), t), t) + }) : this.each(function () { + var e, t, n, r; + if (a) { + t = 0, n = S(this), r = vt(i); + while (e = r[t++]) n.hasClass(e) ? n.removeClass(e) : n.addClass(e) + } else void 0 !== i && "boolean" !== o || ((e = gt(this)) && Y.set(this, "__className__", e), this.setAttribute && this.setAttribute("class", e || !1 === i ? "" : Y.get(this, "__className__") || "")) + }) + }, hasClass: function (e) { + var t, n, r = 0; + t = " " + e + " "; + while (n = this[r++]) if (1 === n.nodeType && -1 < (" " + ht(gt(n)) + " ").indexOf(t)) return !0; + return !1 + } + }); + var yt = /\r/g; + S.fn.extend({ + val: function (n) { + var r, e, i, t = this[0]; + return arguments.length ? (i = m(n), this.each(function (e) { + var t; + 1 === this.nodeType && (null == (t = i ? n.call(this, e, S(this).val()) : n) ? t = "" : "number" == typeof t ? t += "" : Array.isArray(t) && (t = S.map(t, function (e) { + return null == e ? "" : e + "" + })), (r = S.valHooks[this.type] || S.valHooks[this.nodeName.toLowerCase()]) && "set" in r && void 0 !== r.set(this, t, "value") || (this.value = t)) + })) : t ? (r = S.valHooks[t.type] || S.valHooks[t.nodeName.toLowerCase()]) && "get" in r && void 0 !== (e = r.get(t, "value")) ? e : "string" == typeof (e = t.value) ? e.replace(yt, "") : null == e ? "" : e : void 0 + } + }), S.extend({ + valHooks: { + option: { + get: function (e) { + var t = S.find.attr(e, "value"); + return null != t ? t : ht(S.text(e)) + } + }, select: { + get: function (e) { + var t, n, r, i = e.options, o = e.selectedIndex, a = "select-one" === e.type, s = a ? null : [], + u = a ? o + 1 : i.length; + for (r = o < 0 ? u : a ? o : 0; r < u; r++) if (((n = i[r]).selected || r === o) && !n.disabled && (!n.parentNode.disabled || !A(n.parentNode, "optgroup"))) { + if (t = S(n).val(), a) return t; + s.push(t) + } + return s + }, set: function (e, t) { + var n, r, i = e.options, o = S.makeArray(t), a = i.length; + while (a--) ((r = i[a]).selected = -1 < S.inArray(S.valHooks.option.get(r), o)) && (n = !0); + return n || (e.selectedIndex = -1), o + } + } + } + }), S.each(["radio", "checkbox"], function () { + S.valHooks[this] = { + set: function (e, t) { + if (Array.isArray(t)) return e.checked = -1 < S.inArray(S(e).val(), t) + } + }, y.checkOn || (S.valHooks[this].get = function (e) { + return null === e.getAttribute("value") ? "on" : e.value + }) + }), y.focusin = "onfocusin" in C; + var mt = /^(?:focusinfocus|focusoutblur)$/, xt = function (e) { + e.stopPropagation() + }; + S.extend(S.event, { + trigger: function (e, t, n, r) { + var i, o, a, s, u, l, c, f, p = [n || E], d = v.call(e, "type") ? e.type : e, + h = v.call(e, "namespace") ? e.namespace.split(".") : []; + if (o = f = a = n = n || E, 3 !== n.nodeType && 8 !== n.nodeType && !mt.test(d + S.event.triggered) && (-1 < d.indexOf(".") && (d = (h = d.split(".")).shift(), h.sort()), u = d.indexOf(":") < 0 && "on" + d, (e = e[S.expando] ? e : new S.Event(d, "object" == typeof e && e)).isTrigger = r ? 2 : 3, e.namespace = h.join("."), e.rnamespace = e.namespace ? new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, e.result = void 0, e.target || (e.target = n), t = null == t ? [e] : S.makeArray(t, [e]), c = S.event.special[d] || {}, r || !c.trigger || !1 !== c.trigger.apply(n, t))) { + if (!r && !c.noBubble && !x(n)) { + for (s = c.delegateType || d, mt.test(s + d) || (o = o.parentNode); o; o = o.parentNode) p.push(o), a = o; + a === (n.ownerDocument || E) && p.push(a.defaultView || a.parentWindow || C) + } + i = 0; + while ((o = p[i++]) && !e.isPropagationStopped()) f = o, e.type = 1 < i ? s : c.bindType || d, (l = (Y.get(o, "events") || Object.create(null))[e.type] && Y.get(o, "handle")) && l.apply(o, t), (l = u && o[u]) && l.apply && V(o) && (e.result = l.apply(o, t), !1 === e.result && e.preventDefault()); + return e.type = d, r || e.isDefaultPrevented() || c._default && !1 !== c._default.apply(p.pop(), t) || !V(n) || u && m(n[d]) && !x(n) && ((a = n[u]) && (n[u] = null), S.event.triggered = d, e.isPropagationStopped() && f.addEventListener(d, xt), n[d](), e.isPropagationStopped() && f.removeEventListener(d, xt), S.event.triggered = void 0, a && (n[u] = a)), e.result + } + }, simulate: function (e, t, n) { + var r = S.extend(new S.Event, n, {type: e, isSimulated: !0}); + S.event.trigger(r, null, t) + } + }), S.fn.extend({ + trigger: function (e, t) { + return this.each(function () { + S.event.trigger(e, t, this) + }) + }, triggerHandler: function (e, t) { + var n = this[0]; + if (n) return S.event.trigger(e, t, n, !0) + } + }), y.focusin || S.each({focus: "focusin", blur: "focusout"}, function (n, r) { + var i = function (e) { + S.event.simulate(r, e.target, S.event.fix(e)) + }; + S.event.special[r] = { + setup: function () { + var e = this.ownerDocument || this.document || this, t = Y.access(e, r); + t || e.addEventListener(n, i, !0), Y.access(e, r, (t || 0) + 1) + }, teardown: function () { + var e = this.ownerDocument || this.document || this, t = Y.access(e, r) - 1; + t ? Y.access(e, r, t) : (e.removeEventListener(n, i, !0), Y.remove(e, r)) + } + } + }); + var bt = C.location, wt = {guid: Date.now()}, Tt = /\?/; + S.parseXML = function (e) { + var t, n; + if (!e || "string" != typeof e) return null; + try { + t = (new C.DOMParser).parseFromString(e, "text/xml") + } catch (e) { + } + return n = t && t.getElementsByTagName("parsererror")[0], t && !n || S.error("Invalid XML: " + (n ? S.map(n.childNodes, function (e) { + return e.textContent + }).join("\n") : e)), t + }; + var Ct = /\[\]$/, Et = /\r?\n/g, St = /^(?:submit|button|image|reset|file)$/i, + kt = /^(?:input|select|textarea|keygen)/i; + + function At(n, e, r, i) { + var t; + if (Array.isArray(e)) S.each(e, function (e, t) { + r || Ct.test(n) ? i(n, t) : At(n + "[" + ("object" == typeof t && null != t ? e : "") + "]", t, r, i) + }); else if (r || "object" !== w(e)) i(n, e); else for (t in e) At(n + "[" + t + "]", e[t], r, i) + } + + S.param = function (e, t) { + var n, r = [], i = function (e, t) { + var n = m(t) ? t() : t; + r[r.length] = encodeURIComponent(e) + "=" + encodeURIComponent(null == n ? "" : n) + }; + if (null == e) return ""; + if (Array.isArray(e) || e.jquery && !S.isPlainObject(e)) S.each(e, function () { + i(this.name, this.value) + }); else for (n in e) At(n, e[n], t, i); + return r.join("&") + }, S.fn.extend({ + serialize: function () { + return S.param(this.serializeArray()) + }, serializeArray: function () { + return this.map(function () { + var e = S.prop(this, "elements"); + return e ? S.makeArray(e) : this + }).filter(function () { + var e = this.type; + return this.name && !S(this).is(":disabled") && kt.test(this.nodeName) && !St.test(e) && (this.checked || !pe.test(e)) + }).map(function (e, t) { + var n = S(this).val(); + return null == n ? null : Array.isArray(n) ? S.map(n, function (e) { + return {name: t.name, value: e.replace(Et, "\r\n")} + }) : {name: t.name, value: n.replace(Et, "\r\n")} + }).get() + } + }); + var Nt = /%20/g, jt = /#.*$/, Dt = /([?&])_=[^&]*/, qt = /^(.*?):[ \t]*([^\r\n]*)$/gm, Lt = /^(?:GET|HEAD)$/, + Ht = /^\/\//, Ot = {}, Pt = {}, Rt = "*/".concat("*"), Mt = E.createElement("a"); + + function It(o) { + return function (e, t) { + "string" != typeof e && (t = e, e = "*"); + var n, r = 0, i = e.toLowerCase().match(P) || []; + if (m(t)) while (n = i[r++]) "+" === n[0] ? (n = n.slice(1) || "*", (o[n] = o[n] || []).unshift(t)) : (o[n] = o[n] || []).push(t) + } + } + + function Wt(t, i, o, a) { + var s = {}, u = t === Pt; + + function l(e) { + var r; + return s[e] = !0, S.each(t[e] || [], function (e, t) { + var n = t(i, o, a); + return "string" != typeof n || u || s[n] ? u ? !(r = n) : void 0 : (i.dataTypes.unshift(n), l(n), !1) + }), r + } + + return l(i.dataTypes[0]) || !s["*"] && l("*") + } + + function Ft(e, t) { + var n, r, i = S.ajaxSettings.flatOptions || {}; + for (n in t) void 0 !== t[n] && ((i[n] ? e : r || (r = {}))[n] = t[n]); + return r && S.extend(!0, e, r), e + } + + Mt.href = bt.href, S.extend({ + active: 0, + lastModified: {}, + etag: {}, + ajaxSettings: { + url: bt.href, + type: "GET", + isLocal: /^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol), + global: !0, + processData: !0, + async: !0, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + accepts: { + "*": Rt, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + contents: {xml: /\bxml\b/, html: /\bhtml/, json: /\bjson\b/}, + responseFields: {xml: "responseXML", text: "responseText", json: "responseJSON"}, + converters: {"* text": String, "text html": !0, "text json": JSON.parse, "text xml": S.parseXML}, + flatOptions: {url: !0, context: !0} + }, + ajaxSetup: function (e, t) { + return t ? Ft(Ft(e, S.ajaxSettings), t) : Ft(S.ajaxSettings, e) + }, + ajaxPrefilter: It(Ot), + ajaxTransport: It(Pt), + ajax: function (e, t) { + "object" == typeof e && (t = e, e = void 0), t = t || {}; + var c, f, p, n, d, r, h, g, i, o, v = S.ajaxSetup({}, t), y = v.context || v, + m = v.context && (y.nodeType || y.jquery) ? S(y) : S.event, x = S.Deferred(), + b = S.Callbacks("once memory"), w = v.statusCode || {}, a = {}, s = {}, u = "canceled", T = { + readyState: 0, getResponseHeader: function (e) { + var t; + if (h) { + if (!n) { + n = {}; + while (t = qt.exec(p)) n[t[1].toLowerCase() + " "] = (n[t[1].toLowerCase() + " "] || []).concat(t[2]) + } + t = n[e.toLowerCase() + " "] + } + return null == t ? null : t.join(", ") + }, getAllResponseHeaders: function () { + return h ? p : null + }, setRequestHeader: function (e, t) { + return null == h && (e = s[e.toLowerCase()] = s[e.toLowerCase()] || e, a[e] = t), this + }, overrideMimeType: function (e) { + return null == h && (v.mimeType = e), this + }, statusCode: function (e) { + var t; + if (e) if (h) T.always(e[T.status]); else for (t in e) w[t] = [w[t], e[t]]; + return this + }, abort: function (e) { + var t = e || u; + return c && c.abort(t), l(0, t), this + } + }; + if (x.promise(T), v.url = ((e || v.url || bt.href) + "").replace(Ht, bt.protocol + "//"), v.type = t.method || t.type || v.method || v.type, v.dataTypes = (v.dataType || "*").toLowerCase().match(P) || [""], null == v.crossDomain) { + r = E.createElement("a"); + try { + r.href = v.url, r.href = r.href, v.crossDomain = Mt.protocol + "//" + Mt.host != r.protocol + "//" + r.host + } catch (e) { + v.crossDomain = !0 + } + } + if (v.data && v.processData && "string" != typeof v.data && (v.data = S.param(v.data, v.traditional)), Wt(Ot, v, t, T), h) return T; + for (i in (g = S.event && v.global) && 0 == S.active++ && S.event.trigger("ajaxStart"), v.type = v.type.toUpperCase(), v.hasContent = !Lt.test(v.type), f = v.url.replace(jt, ""), v.hasContent ? v.data && v.processData && 0 === (v.contentType || "").indexOf("application/x-www-form-urlencoded") && (v.data = v.data.replace(Nt, "+")) : (o = v.url.slice(f.length), v.data && (v.processData || "string" == typeof v.data) && (f += (Tt.test(f) ? "&" : "?") + v.data, delete v.data), !1 === v.cache && (f = f.replace(Dt, "$1"), o = (Tt.test(f) ? "&" : "?") + "_=" + wt.guid++ + o), v.url = f + o), v.ifModified && (S.lastModified[f] && T.setRequestHeader("If-Modified-Since", S.lastModified[f]), S.etag[f] && T.setRequestHeader("If-None-Match", S.etag[f])), (v.data && v.hasContent && !1 !== v.contentType || t.contentType) && T.setRequestHeader("Content-Type", v.contentType), T.setRequestHeader("Accept", v.dataTypes[0] && v.accepts[v.dataTypes[0]] ? v.accepts[v.dataTypes[0]] + ("*" !== v.dataTypes[0] ? ", " + Rt + "; q=0.01" : "") : v.accepts["*"]), v.headers) T.setRequestHeader(i, v.headers[i]); + if (v.beforeSend && (!1 === v.beforeSend.call(y, T, v) || h)) return T.abort(); + if (u = "abort", b.add(v.complete), T.done(v.success), T.fail(v.error), c = Wt(Pt, v, t, T)) { + if (T.readyState = 1, g && m.trigger("ajaxSend", [T, v]), h) return T; + v.async && 0 < v.timeout && (d = C.setTimeout(function () { + T.abort("timeout") + }, v.timeout)); + try { + h = !1, c.send(a, l) + } catch (e) { + if (h) throw e; + l(-1, e) + } + } else l(-1, "No Transport"); + + function l(e, t, n, r) { + var i, o, a, s, u, l = t; + h || (h = !0, d && C.clearTimeout(d), c = void 0, p = r || "", T.readyState = 0 < e ? 4 : 0, i = 200 <= e && e < 300 || 304 === e, n && (s = function (e, t, n) { + var r, i, o, a, s = e.contents, u = e.dataTypes; + while ("*" === u[0]) u.shift(), void 0 === r && (r = e.mimeType || t.getResponseHeader("Content-Type")); + if (r) for (i in s) if (s[i] && s[i].test(r)) { + u.unshift(i); + break + } + if (u[0] in n) o = u[0]; else { + for (i in n) { + if (!u[0] || e.converters[i + " " + u[0]]) { + o = i; + break + } + a || (a = i) + } + o = o || a + } + if (o) return o !== u[0] && u.unshift(o), n[o] + }(v, T, n)), !i && -1 < S.inArray("script", v.dataTypes) && S.inArray("json", v.dataTypes) < 0 && (v.converters["text script"] = function () { + }), s = function (e, t, n, r) { + var i, o, a, s, u, l = {}, c = e.dataTypes.slice(); + if (c[1]) for (a in e.converters) l[a.toLowerCase()] = e.converters[a]; + o = c.shift(); + while (o) if (e.responseFields[o] && (n[e.responseFields[o]] = t), !u && r && e.dataFilter && (t = e.dataFilter(t, e.dataType)), u = o, o = c.shift()) if ("*" === o) o = u; else if ("*" !== u && u !== o) { + if (!(a = l[u + " " + o] || l["* " + o])) for (i in l) if ((s = i.split(" "))[1] === o && (a = l[u + " " + s[0]] || l["* " + s[0]])) { + !0 === a ? a = l[i] : !0 !== l[i] && (o = s[0], c.unshift(s[1])); + break + } + if (!0 !== a) if (a && e["throws"]) t = a(t); else try { + t = a(t) + } catch (e) { + return {state: "parsererror", error: a ? e : "No conversion from " + u + " to " + o} + } + } + return {state: "success", data: t} + }(v, s, T, i), i ? (v.ifModified && ((u = T.getResponseHeader("Last-Modified")) && (S.lastModified[f] = u), (u = T.getResponseHeader("etag")) && (S.etag[f] = u)), 204 === e || "HEAD" === v.type ? l = "nocontent" : 304 === e ? l = "notmodified" : (l = s.state, o = s.data, i = !(a = s.error))) : (a = l, !e && l || (l = "error", e < 0 && (e = 0))), T.status = e, T.statusText = (t || l) + "", i ? x.resolveWith(y, [o, l, T]) : x.rejectWith(y, [T, l, a]), T.statusCode(w), w = void 0, g && m.trigger(i ? "ajaxSuccess" : "ajaxError", [T, v, i ? o : a]), b.fireWith(y, [T, l]), g && (m.trigger("ajaxComplete", [T, v]), --S.active || S.event.trigger("ajaxStop"))) + } + + return T + }, + getJSON: function (e, t, n) { + return S.get(e, t, n, "json") + }, + getScript: function (e, t) { + return S.get(e, void 0, t, "script") + } + }), S.each(["get", "post"], function (e, i) { + S[i] = function (e, t, n, r) { + return m(t) && (r = r || n, n = t, t = void 0), S.ajax(S.extend({ + url: e, + type: i, + dataType: r, + data: t, + success: n + }, S.isPlainObject(e) && e)) + } + }), S.ajaxPrefilter(function (e) { + var t; + for (t in e.headers) "content-type" === t.toLowerCase() && (e.contentType = e.headers[t] || "") + }), S._evalUrl = function (e, t, n) { + return S.ajax({ + url: e, + type: "GET", + dataType: "script", + cache: !0, + async: !1, + global: !1, + converters: { + "text script": function () { + } + }, + dataFilter: function (e) { + S.globalEval(e, t, n) + } + }) + }, S.fn.extend({ + wrapAll: function (e) { + var t; + return this[0] && (m(e) && (e = e.call(this[0])), t = S(e, this[0].ownerDocument).eq(0).clone(!0), this[0].parentNode && t.insertBefore(this[0]), t.map(function () { + var e = this; + while (e.firstElementChild) e = e.firstElementChild; + return e + }).append(this)), this + }, wrapInner: function (n) { + return m(n) ? this.each(function (e) { + S(this).wrapInner(n.call(this, e)) + }) : this.each(function () { + var e = S(this), t = e.contents(); + t.length ? t.wrapAll(n) : e.append(n) + }) + }, wrap: function (t) { + var n = m(t); + return this.each(function (e) { + S(this).wrapAll(n ? t.call(this, e) : t) + }) + }, unwrap: function (e) { + return this.parent(e).not("body").each(function () { + S(this).replaceWith(this.childNodes) + }), this + } + }), S.expr.pseudos.hidden = function (e) { + return !S.expr.pseudos.visible(e) + }, S.expr.pseudos.visible = function (e) { + return !!(e.offsetWidth || e.offsetHeight || e.getClientRects().length) + }, S.ajaxSettings.xhr = function () { + try { + return new C.XMLHttpRequest + } catch (e) { + } + }; + var Bt = {0: 200, 1223: 204}, $t = S.ajaxSettings.xhr(); + y.cors = !!$t && "withCredentials" in $t, y.ajax = $t = !!$t, S.ajaxTransport(function (i) { + var o, a; + if (y.cors || $t && !i.crossDomain) return { + send: function (e, t) { + var n, r = i.xhr(); + if (r.open(i.type, i.url, i.async, i.username, i.password), i.xhrFields) for (n in i.xhrFields) r[n] = i.xhrFields[n]; + for (n in i.mimeType && r.overrideMimeType && r.overrideMimeType(i.mimeType), i.crossDomain || e["X-Requested-With"] || (e["X-Requested-With"] = "XMLHttpRequest"), e) r.setRequestHeader(n, e[n]); + o = function (e) { + return function () { + o && (o = a = r.onload = r.onerror = r.onabort = r.ontimeout = r.onreadystatechange = null, "abort" === e ? r.abort() : "error" === e ? "number" != typeof r.status ? t(0, "error") : t(r.status, r.statusText) : t(Bt[r.status] || r.status, r.statusText, "text" !== (r.responseType || "text") || "string" != typeof r.responseText ? {binary: r.response} : {text: r.responseText}, r.getAllResponseHeaders())) + } + }, r.onload = o(), a = r.onerror = r.ontimeout = o("error"), void 0 !== r.onabort ? r.onabort = a : r.onreadystatechange = function () { + 4 === r.readyState && C.setTimeout(function () { + o && a() + }) + }, o = o("abort"); + try { + r.send(i.hasContent && i.data || null) + } catch (e) { + if (o) throw e + } + }, abort: function () { + o && o() + } + } + }), S.ajaxPrefilter(function (e) { + e.crossDomain && (e.contents.script = !1) + }), S.ajaxSetup({ + accepts: {script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"}, + contents: {script: /\b(?:java|ecma)script\b/}, + converters: { + "text script": function (e) { + return S.globalEval(e), e + } + } + }), S.ajaxPrefilter("script", function (e) { + void 0 === e.cache && (e.cache = !1), e.crossDomain && (e.type = "GET") + }), S.ajaxTransport("script", function (n) { + var r, i; + if (n.crossDomain || n.scriptAttrs) return { + send: function (e, t) { + r = S(" + + + + \ No newline at end of file diff --git a/src/main/resources/templates/admin/answer-manager.html b/src/main/resources/templates/admin/answer-manager.html new file mode 100644 index 0000000..4a9655d --- /dev/null +++ b/src/main/resources/templates/admin/answer-manager.html @@ -0,0 +1,642 @@ + + + + + 答题详情 + + + + +
+
+
答题详情
+
+ +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
-
+
+ +
+
+
+ + +
+
+
+
+ + +
+ + + +
+ + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/templates/admin/apply-manager.html b/src/main/resources/templates/admin/apply-manager.html new file mode 100644 index 0000000..db7629e --- /dev/null +++ b/src/main/resources/templates/admin/apply-manager.html @@ -0,0 +1,675 @@ + + + + + 申请管理 + + + + +
+
+
申请管理
+
+ +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
-
+
+ +
+
+
+ + +
+
+
+
+ + +
+ + + + +
+ + +
+
+
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/templates/admin/index.html b/src/main/resources/templates/admin/index.html new file mode 100644 index 0000000..6390dc0 --- /dev/null +++ b/src/main/resources/templates/admin/index.html @@ -0,0 +1,253 @@ + + + + + 白名单管理系统 + + + + + + +
+ +
+ +
    +
  • + +
  • +
  • + +
  • +
+ +
+ +
+
+ + +
+
+ +
+
+
    +
  • 欢迎页面
  • +
+
+
+ +
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/main/resources/templates/admin/login.html b/src/main/resources/templates/admin/login.html new file mode 100644 index 0000000..5afd6e3 --- /dev/null +++ b/src/main/resources/templates/admin/login.html @@ -0,0 +1,54 @@ + + + + + + + + + + + + + LTD白名单管理登录 + + + + + +
+
+
+
+
+
+
+
+

管理员登录

+
+
+
+ + +
+
+ + +
+
+ +
+
+
+
+
+
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/main/resources/templates/admin/question-manager.html b/src/main/resources/templates/admin/question-manager.html new file mode 100644 index 0000000..04aca57 --- /dev/null +++ b/src/main/resources/templates/admin/question-manager.html @@ -0,0 +1,537 @@ + + + + + 问卷题目管理 + + + + +
+
+ +
已有题目
+
+
+ + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/templates/admin/welcome-page.html b/src/main/resources/templates/admin/welcome-page.html new file mode 100644 index 0000000..3109f76 --- /dev/null +++ b/src/main/resources/templates/admin/welcome-page.html @@ -0,0 +1,110 @@ + + + + + 欢迎界面 + + + + + + +
+ +
+ +
+
+ +
已通过白名单玩家数量
+
1,234
+
+
+ +
+
+ +
未审核玩家数量
+
56
+
+
+
+
+ +
拒绝玩家数量
+
56
+
+
+
+ + +
+
+ 欢迎使用闲趣时坞白名单系统 +
+
    +
  • +
  • 前端框架:Layui
  • +
  • 模板引擎:Thymeleaf
  • +
  • 后端框架:Spring Boot
  • +
  • 持久层:Spring Data JPA
  • +
  • 数据库:MySQL
  • +
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/main/resources/templates/files/2.jpg b/src/main/resources/templates/files/2.jpg new file mode 100644 index 0000000..005a814 Binary files /dev/null and b/src/main/resources/templates/files/2.jpg differ diff --git a/src/main/resources/templates/files/3.jpg b/src/main/resources/templates/files/3.jpg new file mode 100644 index 0000000..0c13683 Binary files /dev/null and b/src/main/resources/templates/files/3.jpg differ diff --git a/src/main/resources/templates/files/4.jpg b/src/main/resources/templates/files/4.jpg new file mode 100644 index 0000000..a2ddea5 Binary files /dev/null and b/src/main/resources/templates/files/4.jpg differ diff --git a/src/main/resources/templates/files/img1.jpg b/src/main/resources/templates/files/img1.jpg new file mode 100644 index 0000000..c9a8af1 Binary files /dev/null and b/src/main/resources/templates/files/img1.jpg differ diff --git a/src/main/resources/templates/files/img2.jpg b/src/main/resources/templates/files/img2.jpg new file mode 100644 index 0000000..d1679d7 Binary files /dev/null and b/src/main/resources/templates/files/img2.jpg differ diff --git a/src/main/resources/templates/files/img3.jpg b/src/main/resources/templates/files/img3.jpg new file mode 100644 index 0000000..525208c Binary files /dev/null and b/src/main/resources/templates/files/img3.jpg differ diff --git a/src/main/resources/templates/files/img4.jpg b/src/main/resources/templates/files/img4.jpg new file mode 100644 index 0000000..f948aff Binary files /dev/null and b/src/main/resources/templates/files/img4.jpg differ diff --git a/src/main/resources/templates/files/img5.jpg b/src/main/resources/templates/files/img5.jpg new file mode 100644 index 0000000..4c7674d Binary files /dev/null and b/src/main/resources/templates/files/img5.jpg differ diff --git a/src/main/resources/templates/files/img6.jpg b/src/main/resources/templates/files/img6.jpg new file mode 100644 index 0000000..e4ec1b6 Binary files /dev/null and b/src/main/resources/templates/files/img6.jpg differ diff --git a/src/main/resources/templates/files/img7.jpg b/src/main/resources/templates/files/img7.jpg new file mode 100644 index 0000000..819d838 Binary files /dev/null and b/src/main/resources/templates/files/img7.jpg differ diff --git a/src/main/resources/templates/files/img8.jpg b/src/main/resources/templates/files/img8.jpg new file mode 100644 index 0000000..736beb9 Binary files /dev/null and b/src/main/resources/templates/files/img8.jpg differ diff --git a/src/main/resources/templates/player/apply.html b/src/main/resources/templates/player/apply.html new file mode 100644 index 0000000..2614ed3 --- /dev/null +++ b/src/main/resources/templates/player/apply.html @@ -0,0 +1,653 @@ + + + + + + + + + + + + + 白名单申请 + + + + + + + + + + + +
+
+
+
+
+
+ +
+
+
+ + +
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+
+

关于我们

+

+ 这是一个普普通通,爱好涩涩(划掉)和平的正版服务器。在这里,你可以看到许多你未曾见闻的东西……

+

+ 你可以在闲趣时坞简单地发展发展科技,打造属于自己的全自动生产线(造成卡服的时候还能体验到被管理破门而入的快感);

+

+ 也可以拿起你的鱼竿,建造一个简单温馨的小房子,然后开始养老(虽然你每次挂机回来大概率都会发现自己被绑着);

+

+ 当然也可以拿起你的绳子到处去绑人(虽然但是,还是小心别把人惹恼了比较好……);

+

+ 当然!你也可以去找几个可爱的宠物,亦或者是……去当宠物……❤

+
+
+
+

服务器标签

+ 养老 + 生存 + 轻科技 + 捆绑 + 涩涩 + 正版 + 长期 +
+
+

服务器文档

+ 请加群获取 +
+
+

服务器目前状态

+
+
+
正版验证 : +
+
+
开启 +
+
+
+
+
白名单系统 : +
+
+
开启 +
+
+
+
+
服务器群 : +
+
+
776306754 +
+
+
+
+
+
+
+
+ +
+

+ +

+
+ +
+
+ +
+
+ +
+

+ +

+
+ +
+
+ +
+ +
+ +
+
+
+

你已经通过申请了

+

申请正在处理中

+

你的申请被拒绝了

+

申请状态出错,请联系管理

+

+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/templates/player/email-success.html b/src/main/resources/templates/player/email-success.html new file mode 100644 index 0000000..4f52e2c --- /dev/null +++ b/src/main/resources/templates/player/email-success.html @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + 验证成功 + + + + + + + +
+
+
+
+
+

验证成功

+

你现在可以重新登录白名单系统

+

请等待管理通过申请

+ +
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/src/main/resources/templates/player/login.html b/src/main/resources/templates/player/login.html new file mode 100644 index 0000000..fbf96ce --- /dev/null +++ b/src/main/resources/templates/player/login.html @@ -0,0 +1,54 @@ + + + + + + + + + + + + + LTD白名单申请登录 + + + + + +
+
+
+
+
+
+
+
+

输入你的qq号和游戏id

+
+
+
+ + +
+
+ + +
+
+ +
+
+
+
+
+
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/test/java/com/linearpast/minecraftmanager/MinecraftManagerApplicationTests.java b/src/test/java/com/linearpast/minecraftmanager/MinecraftManagerApplicationTests.java new file mode 100644 index 0000000..b9782b8 --- /dev/null +++ b/src/test/java/com/linearpast/minecraftmanager/MinecraftManagerApplicationTests.java @@ -0,0 +1,13 @@ +package com.linearpast.minecraftmanager; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class MinecraftManagerApplicationTests { + + @Test + void contextLoads() { + } + +}