diff --git a/README.md b/README.md index e084f4e..289b2cb 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ service iptables restart ### Method one Download the latest release of the binary application directly at: ``` -wget https://github.com/CESSProject/DeOSS/releases/download/v0.3.5/DeOSS0.3.5.linux-amd64.tar.gz +wget https://github.com/CESSProject/DeOSS/releases/download/v0.3.6/DeOSS0.3.6.linux-amd64.tar.gz ``` ### Method two diff --git a/cmd/cmd/run.go b/cmd/cmd/run.go index c5a9cb3..97075d4 100644 --- a/cmd/cmd/run.go +++ b/cmd/cmd/run.go @@ -110,7 +110,7 @@ func cmd_run_func(cmd *cobra.Command, args []string) { p2pgo.Workspace(filepath.Join(n.GetWorkspace(), n.GetSignatureAcc(), n.GetSDKName())), p2pgo.BootPeers(n.GetBootNodes()), p2pgo.ProtocolPrefix(protocolPrefix), - p2pgo.EnableBitswap(), + //p2pgo.EnableBitswap(), ) if err != nil { out.Err(err.Error()) diff --git a/configs/system.go b/configs/system.go index b478de1..676c6cb 100644 --- a/configs/system.go +++ b/configs/system.go @@ -14,7 +14,7 @@ const ( // Name space NameSpace = Name // version - Version = Name + " " + "v0.3.5" + Version = Name + " " + "v0.3.6" // description Description = "Object storage service based on CESS network" ) diff --git a/example/run.go b/example/run.go new file mode 100644 index 0000000..a356aaf --- /dev/null +++ b/example/run.go @@ -0,0 +1,18 @@ +package main + +import ( + "fmt" + + "github.com/CESSProject/DeOSS/node" +) + +func main() { + n := node.New() + pk, err := n.VerifyAccountSignature("cXh5StobuVP4B7mGH9xn8dSsDtXks4qLAou8ZdkZ6DbB6zzxe", "timestemp1708566687367", "fe98b9f492ee94c0fdf5b3fef5b72555683a9747b744c360863e2a2b22560418b2c1b9d9d158553afd3005c07291484b59d1c72ee70cfbb8440106de5fd8b18b") + if err != nil { + fmt.Println(err) + } else { + fmt.Println("ok: ", pk) + } + //n.Run2(8080, "") +} diff --git a/go.mod b/go.mod index c40594f..798fab0 100644 --- a/go.mod +++ b/go.mod @@ -10,6 +10,7 @@ require ( github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce github.com/cbergoon/merkletree v0.2.0 github.com/centrifuge/go-substrate-rpc-client/v4 v4.2.1 + github.com/ethereum/go-ethereum v1.10.20 github.com/gin-contrib/cors v1.5.0 github.com/gin-gonic/gin v1.9.1 github.com/google/uuid v1.5.0 @@ -40,6 +41,8 @@ require ( github.com/ChainSafe/go-schnorrkel v1.0.0 // indirect github.com/benbjohnson/clock v1.3.5 // indirect github.com/beorn7/perks v1.0.1 // indirect + github.com/btcsuite/btcd v0.22.0-beta // indirect + github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect github.com/bytedance/sonic v1.10.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect @@ -56,7 +59,6 @@ require ( github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect github.com/docker/go-units v0.5.0 // indirect github.com/elastic/gosigar v0.14.2 // indirect - github.com/ethereum/go-ethereum v1.10.20 // indirect github.com/flynn/noise v1.0.0 // indirect github.com/francoispqt/gojay v1.2.13 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect diff --git a/go.sum b/go.sum index 82767d2..d4c774b 100644 --- a/go.sum +++ b/go.sum @@ -41,14 +41,18 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g= github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ= github.com/btcsuite/btcd v0.22.0-beta h1:LTDpDKUM5EeOFBPM8IXpinEcmZ6FWfNZbE3lfrfdnWo= +github.com/btcsuite/btcd v0.22.0-beta/go.mod h1:9n5ntfhhHQBIhUvlhDvD3Qg6fRUj4jkN0VB8L8svzOA= github.com/btcsuite/btcd/btcec/v2 v2.2.0 h1:fzn1qaOt32TuLjFlkzYSsBC35Q3KUjT1SwPxiMSCF5k= +github.com/btcsuite/btcd/btcec/v2 v2.2.0/go.mod h1:U7MHm051Al6XmscBQ0BoNydpOTsFAn707034b5nY8zU= github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA= github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce h1:YtWJF7RHm2pYCvA5t0RPmAaLUhREsKuKd+SLhxFbFeQ= github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce/go.mod h1:0DVlHczLPewLcPGEIeUEzfOJhqGPQ0mJJRDBtD307+o= github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg= github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod h1:F+uVaaLLH7j4eDXPRvw78tMflu7Ie2bzYOH4Y8rRKBY= +github.com/btcsuite/goleveldb v1.0.0/go.mod h1:QiK9vBlgftBg6rWQIj6wFzbPfRjiykIEhBH4obrXJ/I= github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= +github.com/btcsuite/snappy-go v1.0.0/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod h1:bbYlZJ7hK1yFx9hf58LP0zeX7UjIGs20ufpu3evjr+s= @@ -106,6 +110,7 @@ github.com/decred/dcrd/crypto/blake256 v1.0.1 h1:7PltbUIQB7u/FfZ39+DGa/ShuMyJ5il github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= +github.com/decred/dcrd/lru v1.0.0/go.mod h1:mxKOwFd7lFjN2GZYsiz/ecgqR6kkYAl+0pz0tEMk218= github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= @@ -310,6 +315,7 @@ github.com/jedib0t/go-pretty/v6 v6.5.0 h1:FI0L5PktzbafnZKuPae/D3150x3XfYbFe2hxMT github.com/jedib0t/go-pretty/v6 v6.5.0/go.mod h1:Ndk3ase2CkQbXLLNf5QDHoYb6J9WtVfmHZu9n8rk2xs= github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1/go.mod h1:E0B/fFc00Y+Rasa88328GlI/XbtyysCtTHZS8h7IrBU= github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= @@ -453,6 +459,7 @@ github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042 github.com/onsi/ginkgo/v2 v2.1.3/go.mod h1:vw5CSIxN1JObi/U8gcbwft7ZxR2dgaR70JSE3/PpL4c= github.com/onsi/ginkgo/v2 v2.11.0 h1:WgqUCUt/lT6yXoQ8Wef0fsNn5cAuMK7+KT9UFRz2tcU= github.com/onsi/ginkgo/v2 v2.11.0/go.mod h1:ZhrRA5XmEE3x3rhlzamx/JJvujdZoJ2uvgI7kR0iZvM= +github.com/onsi/gomega v1.4.1/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= @@ -656,6 +663,7 @@ golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200602180216-279210d13fed/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= @@ -678,6 +686,7 @@ golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= diff --git a/node/404.go b/node/404.go new file mode 100644 index 0000000..16c4ddd --- /dev/null +++ b/node/404.go @@ -0,0 +1,20 @@ +package node + +import ( + "log" + + "github.com/gin-gonic/gin" +) + +func (n *Node) notFoundHandler(c *gin.Context) { + clientIp := c.ClientIP() + log.Printf("[%s] %s", clientIp, c.Request.URL.Path) + + // b := bytes.NewBuffer(make([]byte, 0)) + // bw := bufio.NewWriter(b) + // tpl := template.Must(template.New("tplName").Parse(tmpl.Notfound)) + // tpl.Execute(bw, nil) + // bw.Flush() + + c.HTML(200, "notfound.html", nil) +} diff --git a/node/common.go b/node/common.go index 5ad81d2..6b785bc 100644 --- a/node/common.go +++ b/node/common.go @@ -10,19 +10,23 @@ package node import ( "encoding/hex" "fmt" + "strconv" "strings" "github.com/CESSProject/DeOSS/configs" sutils "github.com/CESSProject/cess-go-sdk/utils" "github.com/CESSProject/go-keyring" + "github.com/ethereum/go-ethereum/common/hexutil" + "github.com/ethereum/go-ethereum/crypto" "github.com/mr-tron/base58" "github.com/pkg/errors" "github.com/vedhavyas/go-subkey/v2/sr25519" ) -func (n *Node) verifyAccountSignature(account, msg, signature string) ([]byte, error) { +func (n *Node) VerifyAccountSignature(account, msg, signature string) ([]byte, error) { var err error var publicKey []byte + if account == "" { return nil, errors.New("Account is missing in request header") } @@ -51,6 +55,34 @@ func (n *Node) verifyAccountSignature(account, msg, signature string) ([]byte, e return publicKey, nil } +func VerifyEthSign(message string, sign string) (string, error) { + // Hash the unsigned message using EIP-191 + hashedMessage := []byte("\x19Ethereum Signed Message:\n" + strconv.Itoa(len(message)) + message) + hash := crypto.Keccak256Hash(hashedMessage) + + // Get the bytes of the signed message + decodedMessage, err := hexutil.Decode(sign) + if err != nil { + return "", err + } + + // Handles cases where EIP-115 is not implemented (most wallets don't implement it) + if decodedMessage[64] == 27 || decodedMessage[64] == 28 { + decodedMessage[64] -= 27 + } + + // Recover a public key from the signed message + sigPublicKeyECDSA, err := crypto.SigToPub(hash.Bytes(), decodedMessage) + if sigPublicKeyECDSA == nil { + err = errors.New("Could not get a public get from the message signature") + } + if err != nil { + return "", err + } + + return crypto.PubkeyToAddress(*sigPublicKeyECDSA).String(), nil +} + // VerifyToken is used to parse and verify token func (n *Node) verifySignature(account, message, signature string) ([]byte, error) { pkey, err := sutils.ParsingPublickey(account) @@ -132,6 +164,13 @@ func (n *Node) verifyJsSignatureBase58(account, message, signature string) ([]by sign_array[i] = sign_bytes[i] } + if strings.HasPrefix(message, "") && strings.HasSuffix(message, "") { + ok := verkr.Verify(verkr.SigningContext([]byte(message)), sign_array) + if ok { + return pkey, nil + } + } + // Verify signature ok := verkr.Verify(verkr.SigningContext([]byte(""+message+"")), sign_array) if ok { @@ -172,6 +211,13 @@ func (n *Node) verifyJsSignatureHex(account, message, signature string) ([]byte, } // Verify signature + if strings.HasPrefix(message, "") && strings.HasSuffix(message, "") { + ok := verkr.Verify(verkr.SigningContext([]byte(message)), sign_array) + if ok { + return pkey, nil + } + } + ok := verkr.Verify(verkr.SigningContext([]byte(""+message+"")), sign_array) if ok { return pkey, nil diff --git a/node/delHandle.go b/node/delHandle.go index 8e91f0a..acdfcd3 100644 --- a/node/delHandle.go +++ b/node/delHandle.go @@ -36,7 +36,7 @@ func (n *Node) delHandle(c *gin.Context) { account := c.Request.Header.Get(HTTPHeader_Account) message := c.Request.Header.Get(HTTPHeader_Message) signature := c.Request.Header.Get(HTTPHeader_Signature) - pkey, err := n.verifyAccountSignature(account, message, signature) + pkey, err := n.VerifyAccountSignature(account, message, signature) if err != nil { n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) c.JSON(http.StatusBadRequest, err.Error()) @@ -91,14 +91,9 @@ func (n *Node) delFilesHandle(c *gin.Context) { n.Del("info", fmt.Sprintf("[%v] %v", clientIp, INFO_DelRequest)) account := c.Request.Header.Get(HTTPHeader_Account) + ethAccount := c.Request.Header.Get(HTTPHeader_EthAccount) message := c.Request.Header.Get(HTTPHeader_Message) signature := c.Request.Header.Get(HTTPHeader_Signature) - _, err = n.verifyAccountSignature(account, message, signature) - if err != nil { - n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) - c.JSON(http.StatusBadRequest, err.Error()) - return - } if err = n.AccessControl(account); err != nil { n.Upfile("info", fmt.Sprintf("[%v] %v", clientIp, err)) @@ -106,6 +101,33 @@ func (n *Node) delFilesHandle(c *gin.Context) { return } + if ethAccount != "" { + ethAccInSian, err := VerifyEthSign(message, signature) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, err.Error()) + return + } + if ethAccInSian != ethAccount { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, "ETH signature verification failed")) + c.JSON(http.StatusBadRequest, "ETH signature verification failed") + return + } + pkey, err = sutils.ParsingPublickey(account) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, fmt.Sprintf("invalid cess account: %s", account)) + return + } + } else { + pkey, err = n.VerifyAccountSignature(account, message, signature) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, err.Error()) + return + } + } + n.Del("info", fmt.Sprintf("[%v] %v", clientIp, account)) var delList DelList diff --git a/node/getRestore.go b/node/getRestore.go index 4c80624..c9fc51f 100644 --- a/node/getRestore.go +++ b/node/getRestore.go @@ -7,12 +7,14 @@ import ( "os" "path/filepath" + sutils "github.com/CESSProject/cess-go-sdk/utils" "github.com/gin-gonic/gin" ) // getHandle func (n *Node) getRestoreHandle(c *gin.Context) { var ( + err error clientIp string repeat bool ) @@ -21,14 +23,9 @@ func (n *Node) getRestoreHandle(c *gin.Context) { n.Query("info", fmt.Sprintf("[%s] %s", clientIp, INFO_GetRestoreRequest)) account := c.Request.Header.Get(HTTPHeader_Account) + ethAccount := c.Request.Header.Get(HTTPHeader_EthAccount) message := c.Request.Header.Get(HTTPHeader_Message) signature := c.Request.Header.Get(HTTPHeader_Signature) - _, err := n.verifyAccountSignature(account, message, signature) - if err != nil { - n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) - c.JSON(http.StatusBadRequest, err.Error()) - return - } if err = n.AccessControl(account); err != nil { n.Upfile("info", fmt.Sprintf("[%v] %v", clientIp, err)) @@ -36,6 +33,33 @@ func (n *Node) getRestoreHandle(c *gin.Context) { return } + if ethAccount != "" { + ethAccInSian, err := VerifyEthSign(message, signature) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, err.Error()) + return + } + if ethAccInSian != ethAccount { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, "ETH signature verification failed")) + c.JSON(http.StatusBadRequest, "ETH signature verification failed") + return + } + _, err = sutils.ParsingPublickey(account) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, fmt.Sprintf("invalid cess account: %s", account)) + return + } + } else { + _, err = n.VerifyAccountSignature(account, message, signature) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, err.Error()) + return + } + } + var userfils_cache userFiles data, err := n.Get([]byte(Cache_UserFiles + account)) if err == nil { diff --git a/node/node.go b/node/node.go index d304d89..10dbb0c 100644 --- a/node/node.go +++ b/node/node.go @@ -110,6 +110,42 @@ func (n *Node) Run() { } } +func (n *Node) Run2(port int, workspace string) { + var err error + if workspace == "" { + workspace, err = os.Getwd() + if err != nil { + log.Fatal(err) + } + } + gin.SetMode(gin.DebugMode) + n.Engine = gin.Default() + n.Engine.LoadHTMLGlob("templates/*") + n.Engine.Static("/static", "./static") + n.peersPath = filepath.Join(workspace, "peers") + config := cors.DefaultConfig() + config.AllowAllOrigins = true + config.AllowMethods = []string{"HEAD", "GET", "POST", "PUT", "DELETE", "OPTIONS"} + config.AddAllowHeaders( + configs.Header_Auth, + configs.Header_Account, + configs.Header_BucketName, + "*", + ) + n.Engine.MaxMultipartMemory = MaxMemUsed + n.Engine.Use(cors.New(config)) + // Add route + n.addRoute() + // Task management + // go n.TaskMgt() + out.Tip(fmt.Sprintf("Listening on port: %d", port)) + // Run + err = n.Engine.Run(fmt.Sprintf(":%d", port)) + if err != nil { + log.Fatalf("err: %v", err) + } +} + func (n *Node) SavePeer(peerid string, addr peer.AddrInfo) { if n.lock.TryLock() { n.peers[peerid] = addr diff --git a/node/postRestore.go b/node/postRestore.go index 9fcf224..70a44e7 100644 --- a/node/postRestore.go +++ b/node/postRestore.go @@ -22,16 +22,12 @@ type RestoreList struct { func (n *Node) postRestoreHandle(c *gin.Context) { clientIp := c.Request.Header.Get("X-Forwarded-For") n.Query("info", fmt.Sprintf("[%s] %s", clientIp, INFO_PostRestoreRequest)) - + var err error + var pkey []byte account := c.Request.Header.Get(HTTPHeader_Account) + ethAccount := c.Request.Header.Get(HTTPHeader_EthAccount) message := c.Request.Header.Get(HTTPHeader_Message) signature := c.Request.Header.Get(HTTPHeader_Signature) - pkey, err := n.verifyAccountSignature(account, message, signature) - if err != nil { - n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) - c.JSON(http.StatusBadRequest, err.Error()) - return - } if err = n.AccessControl(account); err != nil { n.Upfile("info", fmt.Sprintf("[%v] %v", clientIp, err)) @@ -39,6 +35,33 @@ func (n *Node) postRestoreHandle(c *gin.Context) { return } + if ethAccount != "" { + ethAccInSian, err := VerifyEthSign(message, signature) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, err.Error()) + return + } + if ethAccInSian != ethAccount { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, "ETH signature verification failed")) + c.JSON(http.StatusBadRequest, "ETH signature verification failed") + return + } + pkey, err = sutils.ParsingPublickey(account) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, fmt.Sprintf("invalid cess account: %s", account)) + return + } + } else { + pkey, err = n.VerifyAccountSignature(account, message, signature) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, err.Error()) + return + } + } + var restoreList RestoreList err = c.ShouldBind(&restoreList) if err != nil { diff --git a/node/putHandle.go b/node/putHandle.go index 8b04249..9598955 100644 --- a/node/putHandle.go +++ b/node/putHandle.go @@ -38,6 +38,7 @@ func (n *Node) putHandle(c *gin.Context) { roothash string savedir string filename string + pkey []byte ) // record client ip @@ -46,8 +47,18 @@ func (n *Node) putHandle(c *gin.Context) { // verify the authorization account := c.Request.Header.Get(HTTPHeader_Account) + ethAccount := c.Request.Header.Get(HTTPHeader_EthAccount) message := c.Request.Header.Get(HTTPHeader_Message) signature := c.Request.Header.Get(HTTPHeader_Signature) + bucketName := c.Request.Header.Get(HTTPHeader_BucketName) + cipher := c.Request.Header.Get(HTTPHeader_Cipher) + contentLength := c.Request.ContentLength + n.Upfile("info", fmt.Sprintf("[%v] Acc: %s", clientIp, account)) + n.Upfile("info", fmt.Sprintf("[%v] EthAcc: %s", clientIp, ethAccount)) + n.Upfile("info", fmt.Sprintf("[%v] Message: %s", clientIp, message)) + n.Upfile("info", fmt.Sprintf("[%v] Signature: %s", clientIp, signature)) + n.Upfile("info", fmt.Sprintf("[%v] BucketName: %s", clientIp, bucketName)) + n.Upfile("info", fmt.Sprintf("[%v] ContentLength: %d", clientIp, contentLength)) if err = n.AccessControl(account); err != nil { n.Upfile("info", fmt.Sprintf("[%v] %v", clientIp, err)) @@ -55,40 +66,49 @@ func (n *Node) putHandle(c *gin.Context) { return } - pkey, err := n.verifyAccountSignature(account, message, signature) - if err != nil { - n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) - c.JSON(http.StatusBadRequest, err.Error()) - return + if ethAccount != "" { + ethAccInSian, err := VerifyEthSign(message, signature) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, err.Error()) + return + } + if ethAccInSian != ethAccount { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, "ETH signature verification failed")) + c.JSON(http.StatusBadRequest, "ETH signature verification failed") + return + } + pkey, err = sutils.ParsingPublickey(account) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, fmt.Sprintf("invalid cess account: %s", account)) + return + } + } else { + pkey, err = n.VerifyAccountSignature(account, message, signature) + if err != nil { + n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, err.Error())) + c.JSON(http.StatusBadRequest, err.Error()) + return + } } - cipher := c.Request.Header.Get(HTTPHeader_Cipher) - if account == "" { - n.Upfile("err", fmt.Sprintf("[%v] %s", clientIp, ERR_MissingAccount)) - c.JSON(http.StatusBadRequest, ERR_MissingAccount) + if !sutils.CheckBucketName(bucketName) { + n.Upfile("info", fmt.Sprintf("[%v] %v", clientIp, ERR_HeaderFieldBucketName)) + c.JSON(http.StatusBadRequest, ERR_HeaderFieldBucketName) return } // verify mem availability - contentLength := c.Request.ContentLength if len(cipher) > 32 { n.Upfile("err", fmt.Sprintf("[%v] The length of cipher cannot exceed 32", clientIp)) c.JSON(http.StatusBadRequest, "The length of cipher cannot exceed 32") return } - n.Upfile("info", fmt.Sprintf("[%v] Acc: %s", clientIp, account)) - n.Upfile("info", fmt.Sprintf("[%v] Message: %s", clientIp, message)) - n.Upfile("info", fmt.Sprintf("[%v] Signature: %s", clientIp, signature)) // verify the bucket name - bucketName := c.Request.Header.Get(HTTPHeader_BucketName) - if strings.Contains(bucketName, " ") { - n.Upfile("info", fmt.Sprintf("[%v] %v", clientIp, ERR_HeaderFieldBucketName)) - c.JSON(http.StatusBadRequest, ERR_HeaderFieldBucketName) - return - } - if !sutils.CheckBucketName(bucketName) { + if strings.Contains(bucketName, " ") { n.Upfile("info", fmt.Sprintf("[%v] %v", clientIp, ERR_HeaderFieldBucketName)) c.JSON(http.StatusBadRequest, ERR_HeaderFieldBucketName) return @@ -116,7 +136,7 @@ func (n *Node) putHandle(c *gin.Context) { } if !flag { n.Upfile("info", fmt.Sprintf("[%v] %v", clientIp, ERR_SpaceNotAuth)) - c.JSON(http.StatusForbidden, ERR_SpaceNotAuth) + c.JSON(http.StatusForbidden, fmt.Sprintf("please authorize your space usage to %s", n.GetSignatureAcc())) return } @@ -300,22 +320,22 @@ func (n *Node) putHandle(c *gin.Context) { return } - for i := 0; i < len(segmentInfo); i++ { - for j := 0; j < len(segmentInfo[i].FragmentHash); j++ { - mycid, err := n.FidToCid(filepath.Base(segmentInfo[i].FragmentHash[j])) - n.Upfile("info", fmt.Sprintf("[%v] my cid from hash-1: %v ,%v", clientIp, mycid, err)) - } - } + // for i := 0; i < len(segmentInfo); i++ { + // for j := 0; j < len(segmentInfo[i].FragmentHash); j++ { + // mycid, err := n.FidToCid(filepath.Base(segmentInfo[i].FragmentHash[j])) + // n.Upfile("info", fmt.Sprintf("[%v] my cid from hash-1: %v ,%v", clientIp, mycid, err)) + // } + // } n.Upfile("info", fmt.Sprintf("[%v] segmentInfo: %v", clientIp, segmentInfo)) - savedCid, err := n.saveToBlockStore(segmentInfo) - if err != nil { - n.Upfile("err", fmt.Sprintf("[%v] %v", clientIp, err)) - c.JSON(http.StatusInternalServerError, err.Error()) - return - } + // savedCid, err := n.saveToBlockStore(segmentInfo) + // if err != nil { + // n.Upfile("err", fmt.Sprintf("[%v] %v", clientIp, err)) + // c.JSON(http.StatusInternalServerError, err.Error()) + // return + // } - n.Upfile("info", fmt.Sprintf("[%v] save successed cids: %v", clientIp, savedCid)) + // n.Upfile("info", fmt.Sprintf("[%v] save successed cids: %v", clientIp, savedCid)) // for i := 0; i < len(savedCid); i++ { // buf, err := n.GetDataFromBlock(n.GetCtxQueryFromCtxCancel(), savedCid[i]) diff --git a/node/route.go b/node/route.go index a88d3b1..39a7a7c 100644 --- a/node/route.go +++ b/node/route.go @@ -23,4 +23,6 @@ func (n *Node) addRoute() { n.Engine.DELETE(fmt.Sprintf("/:%s", HTTP_ParameterName), n.delHandle) n.Engine.DELETE("/", n.delFilesHandle) + + n.Engine.GET("/404", n.notFoundHandler) } diff --git a/node/taskMgt.go b/node/taskMgt.go index e656c23..440bf8d 100644 --- a/node/taskMgt.go +++ b/node/taskMgt.go @@ -32,12 +32,12 @@ func (n *Node) TaskMgt() { go n.refreshMiner() - go n.findPeers(ch_findPeers) + // go n.findPeers(ch_findPeers) go n.recvPeers(ch_recvPeers) // go n.noticeBlocks(ch_notifyBlocks) - go n.syncBlock(ch_syncBlock) - go n.syncFiles(ch_syncFile) + // go n.syncBlock(ch_syncBlock) + // go n.syncFiles(ch_syncFile) go n.tracker(ch_trackFile) go n.sdkMgt(ch_sdkMgt) @@ -55,16 +55,16 @@ func (n *Node) TaskMgt() { } case <-ch_findPeers: - go n.findPeers(ch_findPeers) + // go n.findPeers(ch_findPeers) case <-ch_recvPeers: go n.recvPeers(ch_recvPeers) case <-ch_syncBlock: - go n.syncBlock(ch_syncBlock) + // go n.syncBlock(ch_syncBlock) case <-ch_syncFile: - go n.syncFiles(ch_syncFile) + // go n.syncFiles(ch_syncFile) case <-ch_trackFile: go n.tracker(ch_trackFile) diff --git a/node/tracker.go b/node/tracker.go index 8d0d88b..a57eafd 100644 --- a/node/tracker.go +++ b/node/tracker.go @@ -76,7 +76,7 @@ func (n *Node) tracker(ch chan<- bool) { continue } n.Track("info", fmt.Sprintf("start track file: %s", filepath.Base(v))) - go n.trackFileThread(v) + go func(file string) { n.trackFileThread(file) }(v) time.Sleep(pattern.BlockInterval) } } @@ -119,7 +119,8 @@ func (n *Node) trackFile(trackfile string) error { n.Track("info", fmt.Sprintf("[%s] storage successful", roothash)) if len(recordFile.SegmentInfo) > 0 { baseDir := filepath.Dir(recordFile.SegmentInfo[0].SegmentHash) - os.Rename(filepath.Join(baseDir, roothash), filepath.Join(n.GetDirs().FileDir, roothash)) + //os.Rename(filepath.Join(baseDir, roothash), filepath.Join(n.GetDirs().FileDir, roothash)) + os.RemoveAll(filepath.Join(n.GetDirs().FileDir, roothash)) os.RemoveAll(baseDir) } n.DeleteTrackFile(roothash) diff --git a/node/types.go b/node/types.go index 4f5fcbf..61ac2d8 100644 --- a/node/types.go +++ b/node/types.go @@ -12,6 +12,7 @@ const ( HTTPHeader_Authorization = "Authorization" HTTPHeader_BucketName = "BucketName" HTTPHeader_Account = "Account" + HTTPHeader_EthAccount = "EthAcc" HTTPHeader_Digest = "Digest" HTTPHeader_Operation = "Operation" HTTPHeader_Message = "Message" diff --git a/static/css/google.css b/static/css/google.css new file mode 100644 index 0000000..0be750c --- /dev/null +++ b/static/css/google.css @@ -0,0 +1,96 @@ +/* vietnamese */ +@font-face { + font-family: 'Quicksand'; + font-style: normal; + font-weight: 300; + src: local('Quicksand Light'), local('Quicksand-Light'), url(../fonts/google/6xKodSZaM9iE8KbpRA_pgHYYQML_B48.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Quicksand'; + font-style: normal; + font-weight: 300; + src: local('Quicksand Light'), local('Quicksand-Light'), url(../fonts/google/6xKodSZaM9iE8KbpRA_pgHYYQcL_B48.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: 'Quicksand'; + font-style: normal; + font-weight: 300; + src: local('Quicksand Light'), local('Quicksand-Light'), url(../fonts/google/6xKodSZaM9iE8KbpRA_pgHYYT8L_.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; +} +/* vietnamese */ +@font-face { + font-family: 'Quicksand'; + font-style: normal; + font-weight: 400; + src: local('Quicksand Regular'), local('Quicksand-Regular'), url(../fonts/google/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Quicksand'; + font-style: normal; + font-weight: 400; + src: local('Quicksand Regular'), local('Quicksand-Regular'), url(../fonts/google/6xKtdSZaM9iE8KbpRA_hJVQNcOM.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: 'Quicksand'; + font-style: normal; + font-weight: 400; + src: local('Quicksand Regular'), local('Quicksand-Regular'), url(../fonts/google/6xKtdSZaM9iE8KbpRA_hK1QN.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; +} +/* vietnamese */ +@font-face { + font-family: 'Quicksand'; + font-style: normal; + font-weight: 500; + src: local('Quicksand Medium'), local('Quicksand-Medium'), url(../fonts/google/6xKodSZaM9iE8KbpRA_p2HcYQML_B48.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Quicksand'; + font-style: normal; + font-weight: 500; + src: local('Quicksand Medium'), local('Quicksand-Medium'), url(../fonts/google/6xKodSZaM9iE8KbpRA_p2HcYQcL_B48.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: 'Quicksand'; + font-style: normal; + font-weight: 500; + src: local('Quicksand Medium'), local('Quicksand-Medium'), url(../fonts/google/6xKodSZaM9iE8KbpRA_p2HcYT8L_.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; +} +/* vietnamese */ +@font-face { + font-family: 'Quicksand'; + font-style: normal; + font-weight: 700; + src: local('Quicksand Bold'), local('Quicksand-Bold'), url(../fonts/google/6xKodSZaM9iE8KbpRA_pkHEYQML_B48.woff2) format('woff2'); + unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; +} +/* latin-ext */ +@font-face { + font-family: 'Quicksand'; + font-style: normal; + font-weight: 700; + src: local('Quicksand Bold'), local('Quicksand-Bold'), url(../fonts/google/6xKodSZaM9iE8KbpRA_pkHEYQcL_B48.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: 'Quicksand'; + font-style: normal; + font-weight: 700; + src: local('Quicksand Bold'), local('Quicksand-Bold'), url(../fonts/google/6xKodSZaM9iE8KbpRA_pkHEYT8L_.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/static/css/library.css b/static/css/library.css new file mode 100644 index 0000000..c12ba30 --- /dev/null +++ b/static/css/library.css @@ -0,0 +1,17941 @@ +/*! + * Bootstrap v4.1.0 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.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:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.zurb-contents{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.zurb-contents{max-width:540px}}@media (min-width:768px){.zurb-contents{max-width:720px}}@media (min-width:992px){.zurb-contents{max-width:960px}}@media (min-width:1200px){.zurb-contents{max-width:1140px}}.zurb-full{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=zurb-div-]{padding-right:0;padding-left:0}.col,.zurb-div-1,.zurb-div-10,.zurb-div-11,.zurb-div-12,.zurb-div-2,.zurb-div-3,.zurb-div-4,.zurb-div-5,.zurb-div-6,.zurb-div-7,.zurb-div-8,.zurb-div-9,.zurb-div-auto,.zurb-div-lg,.zurb-div-lg-1,.zurb-div-lg-10,.zurb-div-lg-11,.zurb-div-lg-12,.zurb-div-lg-2,.zurb-div-lg-3,.zurb-div-lg-4,.zurb-div-lg-5,.zurb-div-lg-6,.zurb-div-lg-7,.zurb-div-lg-8,.zurb-div-lg-9,.zurb-div-lg-auto,.zurb-div-md,.zurb-div-md-1,.zurb-div-md-10,.zurb-div-md-11,.zurb-div-md-12,.zurb-div-md-2,.zurb-div-md-3,.zurb-div-md-4,.zurb-div-md-5,.zurb-div-md-6,.zurb-div-md-7,.zurb-div-md-8,.zurb-div-md-9,.zurb-div-md-auto,.zurb-div-sm,.zurb-div-sm-1,.zurb-div-sm-10,.zurb-div-sm-11,.zurb-div-sm-12,.zurb-div-sm-2,.zurb-div-sm-3,.zurb-div-sm-4,.zurb-div-sm-5,.zurb-div-sm-6,.zurb-div-sm-7,.zurb-div-sm-8,.zurb-div-sm-9,.zurb-div-sm-auto,.zurb-div-xl,.zurb-div-xl-1,.zurb-div-xl-10,.zurb-div-xl-11,.zurb-div-xl-12,.zurb-div-xl-2,.zurb-div-xl-3,.zurb-div-xl-4,.zurb-div-xl-5,.zurb-div-xl-6,.zurb-div-xl-7,.zurb-div-xl-8,.zurb-div-xl-9,.zurb-div-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.zurb-div-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.zurb-div-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.zurb-div-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.zurb-div-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.zurb-div-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.zurb-div-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.zurb-div-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.zurb-div-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.zurb-div-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.zurb-div-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.zurb-div-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.zurb-div-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.zurb-div-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.zurb-div-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.zurb-div-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.zurb-div-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.zurb-div-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.zurb-div-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.zurb-div-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.zurb-div-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.zurb-div-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.zurb-div-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.zurb-div-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.zurb-div-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.zurb-div-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.zurb-div-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.zurb-div-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.zurb-div-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.zurb-div-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.zurb-div-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.zurb-div-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.zurb-div-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.zurb-div-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.zurb-div-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.zurb-div-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.zurb-div-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.zurb-div-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.zurb-div-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.zurb-div-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.zurb-div-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.zurb-div-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.zurb-div-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.zurb-div-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.zurb-div-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.zurb-div-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.zurb-div-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.zurb-div-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.zurb-div-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.zurb-div-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.zurb-div-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.zurb-div-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.zurb-div-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.zurb-div-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.zurb-div-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.zurb-div-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.zurb-div-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.zurb-div-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.zurb-div-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.zurb-div-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.zurb-div-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.zurb-div-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.zurb-div-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.zurb-div-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.zurb-div-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.zurb-div-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.zurb-div-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.zurb-div-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.zurb-div-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.zurb-div-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.zurb-div-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.zurb-div-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.zurb-div-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-append>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=zurb-div-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::before,.was-validated .custom-file-input:valid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::before,.was-validated .custom-file-input:invalid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file:focus,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label::after{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;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 right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-label::after{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;padding-left:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-appearance:none;appearance:none}.custom-range::-webkit-slider-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-appearance:none;appearance:none}.custom-range::-moz-range-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;appearance:none}.custom-range::-ms-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.zurb-contents,.navbar>.zurb-full{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;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;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.zurb-contents,.navbar-expand-sm>.zurb-full{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.zurb-contents,.navbar-expand-sm>.zurb-full{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.zurb-contents,.navbar-expand-md>.zurb-full{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.zurb-contents,.navbar-expand-md>.zurb-full{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.zurb-contents,.navbar-expand-lg>.zurb-full{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.zurb-contents,.navbar-expand-lg>.zurb-full{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.zurb-contents,.navbar-expand-xl>.zurb-full{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.zurb-contents,.navbar-expand-xl>.zurb-full{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.zurb-contents,.navbar-expand>.zurb-full{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.zurb-contents,.navbar-expand>.zurb-full{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-right-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-left-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion .card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion .card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media screen and (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.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-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";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:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";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:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-ms-flex-align:center;align-items:center;width:100%;transition:-webkit-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}@media screen and (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;transition-duration:.6s;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.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}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!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:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float: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:-webkit-sticky!important;position:sticky!important}.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}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!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}.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}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.zurb-contents{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ + + +@charset "UTF-8"; + +/*! + * 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 { + from, + 20%, + 53%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 40%, + 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); + } + + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -4px, 0); + transform: translate3d(0, -4px, 0); + } +} + +@keyframes bounce { + from, + 20%, + 53%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 40%, + 43% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); + } + + 70% { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -4px, 0); + transform: translate3d(0, -4px, 0); + } +} + +.bounce { + -webkit-animation-name: bounce; + animation-name: bounce; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; +} + +@-webkit-keyframes flash { + from, + 50%, + to { + opacity: 1; + } + + 25%, + 75% { + opacity: 0; + } +} + +@keyframes flash { + from, + 50%, + to { + opacity: 1; + } + + 25%, + 75% { + opacity: 0; + } +} + +.flash { + -webkit-animation-name: flash; + animation-name: flash; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes pulse { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.pulse { + -webkit-animation-name: pulse; + animation-name: pulse; +} + +@-webkit-keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes rubberBand { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.rubberBand { + -webkit-animation-name: rubberBand; + animation-name: rubberBand; +} + +@-webkit-keyframes shake { + from, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 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 { + from, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 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-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + -webkit-animation-name: headShake; + animation-name: headShake; +} + +@-webkit-keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} + +@keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + to { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} + +.swing { + -webkit-transform-origin: top center; + transform-origin: top center; + -webkit-animation-name: swing; + animation-name: swing; +} + +@-webkit-keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + } + + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, + 60%, + 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes tada { + from { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); + } + + 30%, + 50%, + 70%, + 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, + 60%, + 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + to { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.tada { + -webkit-animation-name: tada; + animation-name: tada; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes wobble { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes wobble { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.wobble { + -webkit-animation-name: wobble; + animation-name: wobble; +} + +@-webkit-keyframes jello { + from, + 11.1%, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 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(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); + } + + 77.7% { + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); + transform: skewX(0.390625deg) skewY(0.390625deg); + } + + 88.8% { + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + } +} + +@keyframes jello { + from, + 11.1%, + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 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(-0.78125deg) skewY(-0.78125deg); + transform: skewX(-0.78125deg) skewY(-0.78125deg); + } + + 77.7% { + -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); + transform: skewX(0.390625deg) skewY(0.390625deg); + } + + 88.8% { + -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + transform: skewX(-0.1953125deg) skewY(-0.1953125deg); + } +} + +.jello { + -webkit-animation-name: jello; + animation-name: jello; + -webkit-transform-origin: center; + 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-name: heartBeat; + animation-name: heartBeat; + -webkit-animation-duration: 1.3s; + animation-duration: 1.3s; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; +} + +@-webkit-keyframes bounceIn { + from, + 20%, + 40%, + 60%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(0.97, 0.97, 0.97); + transform: scale3d(0.97, 0.97, 0.97); + } + + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes bounceIn { + from, + 20%, + 40%, + 60%, + 80%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(0.97, 0.97, 0.97); + transform: scale3d(0.97, 0.97, 0.97); + } + + to { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.bounceIn { + -webkit-animation-duration: 0.75s; + animation-duration: 0.75s; + -webkit-animation-name: bounceIn; + animation-name: bounceIn; +} + +@-webkit-keyframes bounceInDown { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + 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: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInDown { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + 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: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInDown { + -webkit-animation-name: bounceInDown; + animation-name: bounceInDown; +} + +@-webkit-keyframes bounceInLeft { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + 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: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInLeft { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + 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: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInLeft { + -webkit-animation-name: bounceInLeft; + animation-name: bounceInLeft; +} + +@-webkit-keyframes bounceInRight { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + 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: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInRight { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + 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: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInRight { + -webkit-animation-name: bounceInRight; + animation-name: bounceInRight; +} + +@-webkit-keyframes bounceInUp { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + 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: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInUp { + from, + 60%, + 75%, + 90%, + to { + -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + from { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + 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: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInUp { + -webkit-animation-name: bounceInUp; + animation-name: bounceInUp; +} + +@-webkit-keyframes bounceOut { + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 50%, + 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} + +@keyframes bounceOut { + 20% { + -webkit-transform: scale3d(0.9, 0.9, 0.9); + transform: scale3d(0.9, 0.9, 0.9); + } + + 50%, + 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} + +.bounceOut { + -webkit-animation-duration: 0.75s; + animation-duration: 0.75s; + -webkit-animation-name: bounceOut; + animation-name: bounceOut; +} + +@-webkit-keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +.bounceOutDown { + -webkit-animation-name: bounceOutDown; + animation-name: bounceOutDown; +} + +@-webkit-keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +.bounceOutLeft { + -webkit-animation-name: bounceOutLeft; + animation-name: bounceOutLeft; +} + +@-webkit-keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 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% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 40%, + 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +.bounceOutUp { + -webkit-animation-name: bounceOutUp; + animation-name: bounceOutUp; +} + +@-webkit-keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +@keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +.fadeIn { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; +} + +@-webkit-keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInDown { + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown; +} + +@-webkit-keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInDownBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInDownBig { + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig; +} + +@-webkit-keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInLeft { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInLeft { + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft; +} + +@-webkit-keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInLeftBig { + from { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInLeftBig { + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; +} + +@-webkit-keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInRight { + from { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInRight { + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight; +} + +@-webkit-keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInRightBig { + from { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInRightBig { + -webkit-animation-name: fadeInRightBig; + animation-name: fadeInRightBig; +} + +@-webkit-keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; +} + +@-webkit-keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes fadeInUpBig { + from { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.fadeInUpBig { + -webkit-animation-name: fadeInUpBig; + animation-name: fadeInUpBig; +} + +@-webkit-keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} + +@keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} + +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; +} + +@-webkit-keyframes fadeOutDown { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes fadeOutDown { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +.fadeOutDown { + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown; +} + +@-webkit-keyframes fadeOutDownBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes fadeOutDownBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +.fadeOutDownBig { + -webkit-animation-name: fadeOutDownBig; + animation-name: fadeOutDownBig; +} + +@-webkit-keyframes fadeOutLeft { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes fadeOutLeft { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.fadeOutLeft { + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft; +} + +@-webkit-keyframes fadeOutLeftBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes fadeOutLeftBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +.fadeOutLeftBig { + -webkit-animation-name: fadeOutLeftBig; + animation-name: fadeOutLeftBig; +} + +@-webkit-keyframes fadeOutRight { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes fadeOutRight { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.fadeOutRight { + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight; +} + +@-webkit-keyframes fadeOutRightBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes fadeOutRightBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +.fadeOutRightBig { + -webkit-animation-name: fadeOutRightBig; + animation-name: fadeOutRightBig; +} + +@-webkit-keyframes fadeOutUp { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes fadeOutUp { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +.fadeOutUp { + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp; +} + +@-webkit-keyframes fadeOutUpBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes fadeOutUpBig { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +.fadeOutUpBig { + -webkit-animation-name: fadeOutUpBig; + animation-name: fadeOutUpBig; +} + +@-webkit-keyframes flip { + from { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) + rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +@keyframes flip { + from { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) + rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) + rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) + rotate3d(0, 1, 0, 0deg); + transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +.animated.flip { + -webkit-backface-visibility: visible; + backface-visibility: visible; + -webkit-animation-name: flip; + animation-name: flip; +} + +@-webkit-keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes flipInX { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.flipInX { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInX; + animation-name: flipInX; +} + +@-webkit-keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes flipInY { + from { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.flipInY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInY; + animation-name: flipInY; +} + +@-webkit-keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +@keyframes flipOutX { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +.flipOutX { + -webkit-animation-duration: 0.75s; + animation-duration: 0.75s; + -webkit-animation-name: flipOutX; + animation-name: flipOutX; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; +} + +@-webkit-keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +@keyframes flipOutY { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + to { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +.flipOutY { + -webkit-animation-duration: 0.75s; + animation-duration: 0.75s; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipOutY; + animation-name: flipOutY; +} + +@-webkit-keyframes lightSpeedIn { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes lightSpeedIn { + from { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.lightSpeedIn { + -webkit-animation-name: lightSpeedIn; + animation-name: lightSpeedIn; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; +} + +@-webkit-keyframes lightSpeedOut { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +@keyframes lightSpeedOut { + from { + opacity: 1; + } + + to { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +.lightSpeedOut { + -webkit-animation-name: lightSpeedOut; + animation-name: lightSpeedOut; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; +} + +@-webkit-keyframes rotateIn { + from { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateIn { + from { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateIn { + -webkit-animation-name: rotateIn; + animation-name: rotateIn; +} + +@-webkit-keyframes rotateInDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateInDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateInDownLeft { + -webkit-animation-name: rotateInDownLeft; + animation-name: rotateInDownLeft; +} + +@-webkit-keyframes rotateInDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateInDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateInDownRight { + -webkit-animation-name: rotateInDownRight; + animation-name: rotateInDownRight; +} + +@-webkit-keyframes rotateInUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateInUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateInUpLeft { + -webkit-animation-name: rotateInUpLeft; + animation-name: rotateInUpLeft; +} + +@-webkit-keyframes rotateInUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +@keyframes rotateInUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } +} + +.rotateInUpRight { + -webkit-animation-name: rotateInUpRight; + animation-name: rotateInUpRight; +} + +@-webkit-keyframes rotateOut { + from { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +@keyframes rotateOut { + from { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; + } + + to { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +.rotateOut { + -webkit-animation-name: rotateOut; + animation-name: rotateOut; +} + +@-webkit-keyframes rotateOutDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +@keyframes rotateOutDownLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +.rotateOutDownLeft { + -webkit-animation-name: rotateOutDownLeft; + animation-name: rotateOutDownLeft; +} + +@-webkit-keyframes rotateOutDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +@keyframes rotateOutDownRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutDownRight { + -webkit-animation-name: rotateOutDownRight; + animation-name: rotateOutDownRight; +} + +@-webkit-keyframes rotateOutUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +@keyframes rotateOutUpLeft { + from { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutUpLeft { + -webkit-animation-name: rotateOutUpLeft; + animation-name: rotateOutUpLeft; +} + +@-webkit-keyframes rotateOutUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +@keyframes rotateOutUpRight { + from { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + to { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +.rotateOutUpRight { + -webkit-animation-name: rotateOutUpRight; + animation-name: rotateOutUpRight; +} + +@-webkit-keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, + 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, + 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +@keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, + 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, + 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + to { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +.hinge { + -webkit-animation-duration: 2s; + animation-duration: 2s; + -webkit-animation-name: hinge; + animation-name: hinge; +} + +@-webkit-keyframes jackInTheBox { + from { + opacity: 0; + -webkit-transform: scale(0.1) rotate(30deg); + transform: scale(0.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + } + + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg); + } + + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} + +@keyframes jackInTheBox { + from { + opacity: 0; + -webkit-transform: scale(0.1) rotate(30deg); + transform: scale(0.1) rotate(30deg); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + } + + 50% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 70% { + -webkit-transform: rotate(3deg); + transform: rotate(3deg); + } + + to { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); + } +} + +.jackInTheBox { + -webkit-animation-name: jackInTheBox; + animation-name: jackInTheBox; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes rollIn { + from { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.rollIn { + -webkit-animation-name: rollIn; + animation-name: rollIn; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes rollOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +@keyframes rollOut { + from { + opacity: 1; + } + + to { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +.rollOut { + -webkit-animation-name: rollOut; + animation-name: rollOut; +} + +@-webkit-keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 50% { + opacity: 1; + } +} + +@keyframes zoomIn { + from { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + 50% { + opacity: 1; + } +} + +.zoomIn { + -webkit-animation-name: zoomIn; + animation-name: zoomIn; +} + +@-webkit-keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomInDown { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomInDown { + -webkit-animation-name: zoomInDown; + animation-name: zoomInDown; +} + +@-webkit-keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomInLeft { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomInLeft { + -webkit-animation-name: zoomInLeft; + animation-name: zoomInLeft; +} + +@-webkit-keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomInRight { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomInRight { + -webkit-animation-name: zoomInRight; + animation-name: zoomInRight; +} + +@-webkit-keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomInUp { + from { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomInUp { + -webkit-animation-name: zoomInUp; + animation-name: zoomInUp; +} + +@-webkit-keyframes zoomOut { + from { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + to { + opacity: 0; + } +} + +@keyframes zoomOut { + from { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } + + to { + opacity: 0; + } +} + +.zoomOut { + -webkit-animation-name: zoomOut; + animation-name: zoomOut; +} + +@-webkit-keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomOutDown { + -webkit-animation-name: zoomOutDown; + animation-name: zoomOutDown; +} + +@-webkit-keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); + transform: scale(0.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; + } +} + +@keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); + transform: scale(0.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; + } +} + +.zoomOutLeft { + -webkit-animation-name: zoomOutLeft; + animation-name: zoomOutLeft; +} + +@-webkit-keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); + transform: scale(0.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; + } +} + +@keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); + } + + to { + opacity: 0; + -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); + transform: scale(0.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; + } +} + +.zoomOutRight { + -webkit-animation-name: zoomOutRight; + animation-name: zoomOutRight; +} + +@-webkit-keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +@keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); + } + + to { + opacity: 0; + -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); + } +} + +.zoomOutUp { + -webkit-animation-name: zoomOutUp; + animation-name: zoomOutUp; +} + +@-webkit-keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown; +} + +@-webkit-keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInLeft { + from { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInLeft { + -webkit-animation-name: slideInLeft; + animation-name: slideInLeft; +} + +@-webkit-keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInRight { + from { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInRight { + -webkit-animation-name: slideInRight; + animation-name: slideInRight; +} + +@-webkit-keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInUp { + from { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInUp { + -webkit-animation-name: slideInUp; + animation-name: slideInUp; +} + +@-webkit-keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes slideOutDown { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +.slideOutDown { + -webkit-animation-name: slideOutDown; + animation-name: slideOutDown; +} + +@-webkit-keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes slideOutLeft { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + animation-name: slideOutLeft; +} + +@-webkit-keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes slideOutRight { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.slideOutRight { + -webkit-animation-name: slideOutRight; + animation-name: slideOutRight; +} + +@-webkit-keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes slideOutUp { + from { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + to { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +.slideOutUp { + -webkit-animation-name: slideOutUp; + animation-name: slideOutUp; +} + +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + 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: 800ms; + animation-duration: 800ms; +} + +.animated.faster { + -webkit-animation-duration: 500ms; + animation-duration: 500ms; +} + +.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; + animation: unset !important; + -webkit-transition: none !important; + transition: none !important; + } +} + + + +.sk-rotating-plane { + width: 50px; + height: 50px; + background-color: #6c2bd4; + margin: 40px auto; + -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out; + animation: sk-rotatePlane 1.2s infinite ease-in-out; } + +@-webkit-keyframes sk-rotatePlane { + 0% { + -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); + transform: perspective(120px) rotateX(0deg) rotateY(0deg); } + 50% { + -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); + transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); } + 100% { + -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); + transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } } + +@keyframes sk-rotatePlane { + 0% { + -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); + transform: perspective(120px) rotateX(0deg) rotateY(0deg); } + 50% { + -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); + transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); } + 100% { + -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); + transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } } + + +.sk-double-bounce { + width: 50px; + height: 50px; + position: relative; + margin: 40px auto; } + .sk-double-bounce .sk-child { + width: 100%; + height: 100%; + border-radius: 50%; + background-color: #6c2bd4; + opacity: 0.6; + position: absolute; + top: 0; + left: 0; + -webkit-animation: sk-doubleBounce 2s infinite ease-in-out; + animation: sk-doubleBounce 2s infinite ease-in-out; } + .sk-double-bounce .sk-double-bounce2 { + -webkit-animation-delay: -1.0s; + animation-delay: -1.0s; } + +@-webkit-keyframes sk-doubleBounce { + 0%, 100% { + -webkit-transform: scale(0); + transform: scale(0); } + 50% { + -webkit-transform: scale(1); + transform: scale(1); } } + +@keyframes sk-doubleBounce { + 0%, 100% { + -webkit-transform: scale(0); + transform: scale(0); } + 50% { + -webkit-transform: scale(1); + transform: scale(1); } } + + +.sk-wave { + margin: 50px auto; + width: 60px; + height: 40px; + text-align: center; + font-size: 10px; } + .sk-wave .sk-rect { + background-color: #6c2bd4; + height: 100%; + width: 6px; + display: inline-block; + -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out; + animation: sk-waveStretchDelay 1.2s infinite ease-in-out; } + .sk-wave .sk-rect1 { + -webkit-animation-delay: -1.2s; + animation-delay: -1.2s; } + .sk-wave .sk-rect2 { + -webkit-animation-delay: -1.1s; + animation-delay: -1.1s; } + .sk-wave .sk-rect3 { + -webkit-animation-delay: -1s; + animation-delay: -1s; } + .sk-wave .sk-rect4 { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; } + .sk-wave .sk-rect5 { + -webkit-animation-delay: -0.8s; + animation-delay: -0.8s; } + +@-webkit-keyframes sk-waveStretchDelay { + 0%, 40%, 100% { + -webkit-transform: scaleY(0.4); + transform: scaleY(0.4); } + 20% { + -webkit-transform: scaleY(1); + transform: scaleY(1); } } + +@keyframes sk-waveStretchDelay { + 0%, 40%, 100% { + -webkit-transform: scaleY(0.4); + transform: scaleY(0.4); } + 20% { + -webkit-transform: scaleY(1); + transform: scaleY(1); } } + + +.sk-wandering-cubes { + margin: 50px auto; + width: 50px; + height: 50px; + position: relative; } + .sk-wandering-cubes .sk-cube { + background-color: #6c2bd4; + width: 10px; + height: 10px; + position: absolute; + top: 0; + left: 0; + -webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both; + animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both; } + .sk-wandering-cubes .sk-cube2 { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; } + +@-webkit-keyframes sk-wanderingCube { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 25% { + -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5); + transform: translateX(30px) rotate(-90deg) scale(0.5); } + 50% { + + -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg); + transform: translateX(30px) translateY(30px) rotate(-179deg); } + 50.1% { + -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg); + transform: translateX(30px) translateY(30px) rotate(-180deg); } + 75% { + -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5); + transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5); } + 100% { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg); } } + +@keyframes sk-wanderingCube { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 25% { + -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5); + transform: translateX(30px) rotate(-90deg) scale(0.5); } + 50% { + + -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg); + transform: translateX(30px) translateY(30px) rotate(-179deg); } + 50.1% { + -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg); + transform: translateX(30px) translateY(30px) rotate(-180deg); } + 75% { + -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5); + transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5); } + 100% { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg); } } + + +.sk-spinner-pulse { + width: 50px; + height: 50px; + margin: 40px auto; + background-color: #6c2bd4; + border-radius: 100%; + -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out; + animation: sk-pulseScaleOut 1s infinite ease-in-out; } + +@-webkit-keyframes sk-pulseScaleOut { + 0% { + -webkit-transform: scale(0); + transform: scale(0); } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0; } } + +@keyframes sk-pulseScaleOut { + 0% { + -webkit-transform: scale(0); + transform: scale(0); } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0; } } + + +.sk-chasing-dots { + margin: 40px auto; + width: 50px; + height: 50px; + position: relative; + text-align: center; + -webkit-animation: sk-chasingDotsRotate 2s infinite linear; + animation: sk-chasingDotsRotate 2s infinite linear; } + .sk-chasing-dots .sk-child { + width: 60%; + height: 60%; + display: inline-block; + position: absolute; + top: 0; + background-color: #6c2bd4; + border-radius: 100%; + -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out; + animation: sk-chasingDotsBounce 2s infinite ease-in-out; } + .sk-chasing-dots .sk-dot2 { + top: auto; + bottom: 0; + -webkit-animation-delay: -1s; + animation-delay: -1s; } + +@-webkit-keyframes sk-chasingDotsRotate { + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes sk-chasingDotsRotate { + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@-webkit-keyframes sk-chasingDotsBounce { + 0%, 100% { + -webkit-transform: scale(0); + transform: scale(0); } + 50% { + -webkit-transform: scale(1); + transform: scale(1); } } + +@keyframes sk-chasingDotsBounce { + 0%, 100% { + -webkit-transform: scale(0); + transform: scale(0); } + 50% { + -webkit-transform: scale(1); + transform: scale(1); } } + + +.sk-three-bounce { + margin: 40px auto; + width: 90px; + text-align: center; } + .sk-three-bounce .sk-child { + width: 20px; + height: 20px; + background-color: #6c2bd4; + border-radius: 100%; + display: inline-block; + -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both; + animation: sk-three-bounce 1.4s ease-in-out 0s infinite both; } + .sk-three-bounce .sk-bounce1 { + -webkit-animation-delay: -0.32s; + animation-delay: -0.32s; } + .sk-three-bounce .sk-bounce2 { + -webkit-animation-delay: -0.16s; + animation-delay: -0.16s; } + +@-webkit-keyframes sk-three-bounce { + 0%, 80%, 100% { + -webkit-transform: scale(0); + transform: scale(0); } + 40% { + -webkit-transform: scale(1); + transform: scale(1); } } + +@keyframes sk-three-bounce { + 0%, 80%, 100% { + -webkit-transform: scale(0); + transform: scale(0); } + 40% { + -webkit-transform: scale(1); + transform: scale(1); } } + + +.sk-circle { + margin: 40px auto; + width: 50px; + height: 50px; + position: relative; } + .sk-circle .sk-child { + width: 100%; + height: 100%; + position: absolute; + left: 0; + top: 0; } + .sk-circle .sk-child:before { + content: ''; + display: block; + margin: 0 auto; + width: 15%; + height: 15%; + background-color: #6c2bd4; + border-radius: 100%; + -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; + animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; } + .sk-circle .sk-circle2 { + -webkit-transform: rotate(30deg); + -ms-transform: rotate(30deg); + transform: rotate(30deg); } + .sk-circle .sk-circle3 { + -webkit-transform: rotate(60deg); + -ms-transform: rotate(60deg); + transform: rotate(60deg); } + .sk-circle .sk-circle4 { + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); } + .sk-circle .sk-circle5 { + -webkit-transform: rotate(120deg); + -ms-transform: rotate(120deg); + transform: rotate(120deg); } + .sk-circle .sk-circle6 { + -webkit-transform: rotate(150deg); + -ms-transform: rotate(150deg); + transform: rotate(150deg); } + .sk-circle .sk-circle7 { + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); } + .sk-circle .sk-circle8 { + -webkit-transform: rotate(210deg); + -ms-transform: rotate(210deg); + transform: rotate(210deg); } + .sk-circle .sk-circle9 { + -webkit-transform: rotate(240deg); + -ms-transform: rotate(240deg); + transform: rotate(240deg); } + .sk-circle .sk-circle10 { + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); } + .sk-circle .sk-circle11 { + -webkit-transform: rotate(300deg); + -ms-transform: rotate(300deg); + transform: rotate(300deg); } + .sk-circle .sk-circle12 { + -webkit-transform: rotate(330deg); + -ms-transform: rotate(330deg); + transform: rotate(330deg); } + .sk-circle .sk-circle2:before { + -webkit-animation-delay: -1.1s; + animation-delay: -1.1s; } + .sk-circle .sk-circle3:before { + -webkit-animation-delay: -1s; + animation-delay: -1s; } + .sk-circle .sk-circle4:before { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; } + .sk-circle .sk-circle5:before { + -webkit-animation-delay: -0.8s; + animation-delay: -0.8s; } + .sk-circle .sk-circle6:before { + -webkit-animation-delay: -0.7s; + animation-delay: -0.7s; } + .sk-circle .sk-circle7:before { + -webkit-animation-delay: -0.6s; + animation-delay: -0.6s; } + .sk-circle .sk-circle8:before { + -webkit-animation-delay: -0.5s; + animation-delay: -0.5s; } + .sk-circle .sk-circle9:before { + -webkit-animation-delay: -0.4s; + animation-delay: -0.4s; } + .sk-circle .sk-circle10:before { + -webkit-animation-delay: -0.3s; + animation-delay: -0.3s; } + .sk-circle .sk-circle11:before { + -webkit-animation-delay: -0.2s; + animation-delay: -0.2s; } + .sk-circle .sk-circle12:before { + -webkit-animation-delay: -0.1s; + animation-delay: -0.1s; } + +@-webkit-keyframes sk-circleBounceDelay { + 0%, 80%, 100% { + -webkit-transform: scale(0); + transform: scale(0); } + 40% { + -webkit-transform: scale(1); + transform: scale(1); } } + +@keyframes sk-circleBounceDelay { + 0%, 80%, 100% { + -webkit-transform: scale(0); + transform: scale(0); } + 40% { + -webkit-transform: scale(1); + transform: scale(1); } } + + +.sk-cube-grid { + width: 50px; + height: 50px; + margin: 40px auto; + } + .sk-cube-grid .sk-cube { + width: 33.33%; + height: 33.33%; + background-color: #6c2bd4; + float: left; + -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; + animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; } + .sk-cube-grid .sk-cube1 { + -webkit-animation-delay: 0.2s; + animation-delay: 0.2s; } + .sk-cube-grid .sk-cube2 { + -webkit-animation-delay: 0.3s; + animation-delay: 0.3s; } + .sk-cube-grid .sk-cube3 { + -webkit-animation-delay: 0.4s; + animation-delay: 0.4s; } + .sk-cube-grid .sk-cube4 { + -webkit-animation-delay: 0.1s; + animation-delay: 0.1s; } + .sk-cube-grid .sk-cube5 { + -webkit-animation-delay: 0.2s; + animation-delay: 0.2s; } + .sk-cube-grid .sk-cube6 { + -webkit-animation-delay: 0.3s; + animation-delay: 0.3s; } + .sk-cube-grid .sk-cube7 { + -webkit-animation-delay: 0.0s; + animation-delay: 0.0s; } + .sk-cube-grid .sk-cube8 { + -webkit-animation-delay: 0.1s; + animation-delay: 0.1s; } + .sk-cube-grid .sk-cube9 { + -webkit-animation-delay: 0.2s; + animation-delay: 0.2s; } + +@-webkit-keyframes sk-cubeGridScaleDelay { + 0%, 70%, 100% { + -webkit-transform: scale3D(1, 1, 1); + transform: scale3D(1, 1, 1); } + 35% { + -webkit-transform: scale3D(0, 0, 1); + transform: scale3D(0, 0, 1); } } + +@keyframes sk-cubeGridScaleDelay { + 0%, 70%, 100% { + -webkit-transform: scale3D(1, 1, 1); + transform: scale3D(1, 1, 1); } + 35% { + -webkit-transform: scale3D(0, 0, 1); + transform: scale3D(0, 0, 1); } } + + +.sk-fading-circle { + margin: 40px auto; + width: 50px; + height: 50px; + position: relative; } + .sk-fading-circle .sk-circle { + width: 100%; + height: 100%; + position: absolute; + left: 0; + top: 0; + margin:0; + } + .sk-fading-circle .sk-circle:before { + content: ''; + display: block; + margin: 0 auto; + width: 15%; + height: 15%; + background-color: #6c2bd4; + border-radius: 100%; + -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both; + animation: sk-circleFadeDelay 1.2s infinite ease-in-out both; } + .sk-fading-circle .sk-circle2 { + -webkit-transform: rotate(30deg); + -ms-transform: rotate(30deg); + transform: rotate(30deg); } + .sk-fading-circle .sk-circle3 { + -webkit-transform: rotate(60deg); + -ms-transform: rotate(60deg); + transform: rotate(60deg); } + .sk-fading-circle .sk-circle4 { + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); } + .sk-fading-circle .sk-circle5 { + -webkit-transform: rotate(120deg); + -ms-transform: rotate(120deg); + transform: rotate(120deg); } + .sk-fading-circle .sk-circle6 { + -webkit-transform: rotate(150deg); + -ms-transform: rotate(150deg); + transform: rotate(150deg); } + .sk-fading-circle .sk-circle7 { + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); } + .sk-fading-circle .sk-circle8 { + -webkit-transform: rotate(210deg); + -ms-transform: rotate(210deg); + transform: rotate(210deg); } + .sk-fading-circle .sk-circle9 { + -webkit-transform: rotate(240deg); + -ms-transform: rotate(240deg); + transform: rotate(240deg); } + .sk-fading-circle .sk-circle10 { + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); } + .sk-fading-circle .sk-circle11 { + -webkit-transform: rotate(300deg); + -ms-transform: rotate(300deg); + transform: rotate(300deg); } + .sk-fading-circle .sk-circle12 { + -webkit-transform: rotate(330deg); + -ms-transform: rotate(330deg); + transform: rotate(330deg); } + .sk-fading-circle .sk-circle2:before { + -webkit-animation-delay: -1.1s; + animation-delay: -1.1s; } + .sk-fading-circle .sk-circle3:before { + -webkit-animation-delay: -1s; + animation-delay: -1s; } + .sk-fading-circle .sk-circle4:before { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; } + .sk-fading-circle .sk-circle5:before { + -webkit-animation-delay: -0.8s; + animation-delay: -0.8s; } + .sk-fading-circle .sk-circle6:before { + -webkit-animation-delay: -0.7s; + animation-delay: -0.7s; } + .sk-fading-circle .sk-circle7:before { + -webkit-animation-delay: -0.6s; + animation-delay: -0.6s; } + .sk-fading-circle .sk-circle8:before { + -webkit-animation-delay: -0.5s; + animation-delay: -0.5s; } + .sk-fading-circle .sk-circle9:before { + -webkit-animation-delay: -0.4s; + animation-delay: -0.4s; } + .sk-fading-circle .sk-circle10:before { + -webkit-animation-delay: -0.3s; + animation-delay: -0.3s; } + .sk-fading-circle .sk-circle11:before { + -webkit-animation-delay: -0.2s; + animation-delay: -0.2s; } + .sk-fading-circle .sk-circle12:before { + -webkit-animation-delay: -0.1s; + animation-delay: -0.1s; } + +@-webkit-keyframes sk-circleFadeDelay { + 0%, 39%, 100% { + opacity: 0; } + 40% { + opacity: 1; } } + +@keyframes sk-circleFadeDelay { + 0%, 39%, 100% { + opacity: 0; } + 40% { + opacity: 1; } } + + +.sk-folding-cube { + margin: 40px auto; + width: 50px; + height: 50px; + position: relative; + -webkit-transform: rotateZ(45deg); + transform: rotateZ(45deg); } + .sk-folding-cube .sk-cube { + float: left; + width: 50%; + height: 50%; + position: relative; + -webkit-transform: scale(1.1); + -ms-transform: scale(1.1); + transform: scale(1.1); } + .sk-folding-cube .sk-cube:before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: #6c2bd4; + -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both; + animation: sk-foldCubeAngle 2.4s infinite linear both; + -webkit-transform-origin: 100% 100%; + -ms-transform-origin: 100% 100%; + transform-origin: 100% 100%; } + .sk-folding-cube .sk-cube2 { + -webkit-transform: scale(1.1) rotateZ(90deg); + transform: scale(1.1) rotateZ(90deg); } + .sk-folding-cube .sk-cube3 { + -webkit-transform: scale(1.1) rotateZ(180deg); + transform: scale(1.1) rotateZ(180deg); } + .sk-folding-cube .sk-cube4 { + -webkit-transform: scale(1.1) rotateZ(270deg); + transform: scale(1.1) rotateZ(270deg); } + .sk-folding-cube .sk-cube2:before { + -webkit-animation-delay: 0.3s; + animation-delay: 0.3s; } + .sk-folding-cube .sk-cube3:before { + -webkit-animation-delay: 0.6s; + animation-delay: 0.6s; } + .sk-folding-cube .sk-cube4:before { + -webkit-animation-delay: 0.9s; + animation-delay: 0.9s; } + +@-webkit-keyframes sk-foldCubeAngle { + 0%, 10% { + -webkit-transform: perspective(140px) rotateX(-180deg); + transform: perspective(140px) rotateX(-180deg); + opacity: 0; } + 25%, 75% { + -webkit-transform: perspective(140px) rotateX(0deg); + transform: perspective(140px) rotateX(0deg); + opacity: 1; } + 90%, 100% { + -webkit-transform: perspective(140px) rotateY(180deg); + transform: perspective(140px) rotateY(180deg); + opacity: 0; } } + +@keyframes sk-foldCubeAngle { + 0%, 10% { + -webkit-transform: perspective(140px) rotateX(-180deg); + transform: perspective(140px) rotateX(-180deg); + opacity: 0; } + 25%, 75% { + -webkit-transform: perspective(140px) rotateX(0deg); + transform: perspective(140px) rotateX(0deg); + opacity: 1; } + 90%, 100% { + -webkit-transform: perspective(140px) rotateY(180deg); + transform: perspective(140px) rotateY(180deg); + opacity: 0; } } + + @charset "UTF-8"; + @font-face { + font-family: 'FontAwesome'; + src: url("../fonts/fontawesome-webfont.eot?v=4.7.0"); + src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg"); + font-weight: normal; + font-style: normal; + } + + .fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + + .fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -15%; + } + + .fa-2x { + font-size: 2em; + } + + .fa-3x { + font-size: 3em; + } + + .fa-4x { + font-size: 4em; + } + + .fa-5x { + font-size: 5em; + } + + .fa-fw { + width: 1.28571em; + text-align: center; + } + + .fa-ul { + padding-left: 0; + margin-left: 2.14286em; + list-style-type: none; + } + + .fa-ul > li { + position: relative; + } + + .fa-li { + position: absolute; + left: -2.14286em; + width: 2.14286em; + top: 0.14286em; + text-align: center; + } + + .fa-li.fa-lg { + left: -1.85714em; + } + + .fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eee; + border-radius: .1em; + } + + .fa-pull-left { + float: left; + } + + .fa-pull-right { + float: right; + } + + .fa.fa-pull-left { + margin-right: .3em; + } + + .fa.fa-pull-right { + margin-left: .3em; + } + + + .pull-right { + float: right; + } + + .pull-left { + float: left; + } + + .fa.pull-left { + margin-right: .3em; + } + + .fa.pull-right { + margin-left: .3em; + } + + .fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; + } + + .fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); + } + + @-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } + } + + @keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } + } + + .fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); + } + + .fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); + } + + .fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); + } + + .fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); + } + + .fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); + } + + :root .fa-rotate-90, + :root .fa-rotate-180, + :root .fa-rotate-270, + :root .fa-flip-horizontal, + :root .fa-flip-vertical { + filter: none; + } + + .fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; + } + + .fa-stack-1x, .fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; + } + + .fa-stack-1x { + line-height: inherit; + } + + .fa-stack-2x { + font-size: 2em; + } + + .fa-inverse { + color: #fff; + } + + + .fa-glass:before { + content: ""; + } + + .fa-music:before { + content: ""; + } + + .fa-search:before { + content: ""; + } + + .fa-envelope-o:before { + content: ""; + } + + .fa-heart:before { + content: ""; + } + + .fa-star:before { + content: ""; + } + + .fa-star-o:before { + content: ""; + } + + .fa-user:before { + content: ""; + } + + .fa-film:before { + content: ""; + } + + .fa-th-large:before { + content: ""; + } + + .fa-th:before { + content: ""; + } + + .fa-th-list:before { + content: ""; + } + + .fa-check:before { + content: ""; + } + + .fa-remove:before, + .fa-close:before, + .fa-times:before { + content: ""; + } + + .fa-search-plus:before { + content: ""; + } + + .fa-search-minus:before { + content: ""; + } + + .fa-power-off:before { + content: ""; + } + + .fa-signal:before { + content: ""; + } + + .fa-gear:before, + .fa-cog:before { + content: ""; + } + + .fa-trash-o:before { + content: ""; + } + + .fa-home:before { + content: ""; + } + + .fa-file-o:before { + content: ""; + } + + .fa-clock-o:before { + content: ""; + } + + .fa-road:before { + content: ""; + } + + .fa-download:before { + content: ""; + } + + .fa-arrow-circle-o-down:before { + content: ""; + } + + .fa-arrow-circle-o-up:before { + content: ""; + } + + .fa-inbox:before { + content: ""; + } + + .fa-play-circle-o:before { + content: ""; + } + + .fa-rotate-right:before, + .fa-repeat:before { + content: ""; + } + + .fa-refresh:before { + content: ""; + } + + .fa-list-alt:before { + content: ""; + } + + .fa-lock:before { + content: ""; + } + + .fa-flag:before { + content: ""; + } + + .fa-headphones:before { + content: ""; + } + + .fa-volume-off:before { + content: ""; + } + + .fa-volume-down:before { + content: ""; + } + + .fa-volume-up:before { + content: ""; + } + + .fa-qrcode:before { + content: ""; + } + + .fa-barcode:before { + content: ""; + } + + .fa-tag:before { + content: ""; + } + + .fa-tags:before { + content: ""; + } + + .fa-book:before { + content: ""; + } + + .fa-bookmark:before { + content: ""; + } + + .fa-print:before { + content: ""; + } + + .fa-camera:before { + content: ""; + } + + .fa-font:before { + content: ""; + } + + .fa-bold:before { + content: ""; + } + + .fa-italic:before { + content: ""; + } + + .fa-text-height:before { + content: ""; + } + + .fa-text-width:before { + content: ""; + } + + .fa-align-left:before { + content: ""; + } + + .fa-align-center:before { + content: ""; + } + + .fa-align-right:before { + content: ""; + } + + .fa-align-justify:before { + content: ""; + } + + .fa-list:before { + content: ""; + } + + .fa-dedent:before, + .fa-outdent:before { + content: ""; + } + + .fa-indent:before { + content: ""; + } + + .fa-video-camera:before { + content: ""; + } + + .fa-photo:before, + .fa-image:before, + .fa-picture-o:before { + content: ""; + } + + .fa-pencil:before { + content: ""; + } + + .fa-map-marker:before { + content: ""; + } + + .fa-adjust:before { + content: ""; + } + + .fa-tint:before { + content: ""; + } + + .fa-edit:before, + .fa-pencil-square-o:before { + content: ""; + } + + .fa-share-square-o:before { + content: ""; + } + + .fa-check-square-o:before { + content: ""; + } + + .fa-arrows:before { + content: ""; + } + + .fa-step-backward:before { + content: ""; + } + + .fa-fast-backward:before { + content: ""; + } + + .fa-backward:before { + content: ""; + } + + .fa-play:before { + content: ""; + } + + .fa-pause:before { + content: ""; + } + + .fa-stop:before { + content: ""; + } + + .fa-forward:before { + content: ""; + } + + .fa-fast-forward:before { + content: ""; + } + + .fa-step-forward:before { + content: ""; + } + + .fa-eject:before { + content: ""; + } + + .fa-chevron-left:before { + content: ""; + } + + .fa-chevron-right:before { + content: ""; + } + + .fa-plus-circle:before { + content: ""; + } + + .fa-minus-circle:before { + content: ""; + } + + .fa-times-circle:before { + content: ""; + } + + .fa-check-circle:before { + content: ""; + } + + .fa-question-circle:before { + content: ""; + } + + .fa-info-circle:before { + content: ""; + } + + .fa-crosshairs:before { + content: ""; + } + + .fa-times-circle-o:before { + content: ""; + } + + .fa-check-circle-o:before { + content: ""; + } + + .fa-ban:before { + content: ""; + } + + .fa-arrow-left:before { + content: ""; + } + + .fa-arrow-right:before { + content: ""; + } + + .fa-arrow-up:before { + content: ""; + } + + .fa-arrow-down:before { + content: ""; + } + + .fa-mail-forward:before, + .fa-share:before { + content: ""; + } + + .fa-expand:before { + content: ""; + } + + .fa-compress:before { + content: ""; + } + + .fa-plus:before { + content: ""; + } + + .fa-minus:before { + content: ""; + } + + .fa-asterisk:before { + content: ""; + } + + .fa-exclamation-circle:before { + content: ""; + } + + .fa-gift:before { + content: ""; + } + + .fa-leaf:before { + content: ""; + } + + .fa-fire:before { + content: ""; + } + + .fa-eye:before { + content: ""; + } + + .fa-eye-slash:before { + content: ""; + } + + .fa-warning:before, + .fa-exclamation-triangle:before { + content: ""; + } + + .fa-plane:before { + content: ""; + } + + .fa-calendar:before { + content: ""; + } + + .fa-random:before { + content: ""; + } + + .fa-comment:before { + content: ""; + } + + .fa-magnet:before { + content: ""; + } + + .fa-chevron-up:before { + content: ""; + } + + .fa-chevron-down:before { + content: ""; + } + + .fa-retweet:before { + content: ""; + } + + .fa-shopping-cart:before { + content: ""; + } + + .fa-folder:before { + content: ""; + } + + .fa-folder-open:before { + content: ""; + } + + .fa-arrows-v:before { + content: ""; + } + + .fa-arrows-h:before { + content: ""; + } + + .fa-bar-chart-o:before, + .fa-bar-chart:before { + content: ""; + } + + .fa-twitter-square:before { + content: ""; + } + + .fa-facebook-square:before { + content: ""; + } + + .fa-camera-retro:before { + content: ""; + } + + .fa-key:before { + content: ""; + } + + .fa-gears:before, + .fa-cogs:before { + content: ""; + } + + .fa-comments:before { + content: ""; + } + + .fa-thumbs-o-up:before { + content: ""; + } + + .fa-thumbs-o-down:before { + content: ""; + } + + .fa-star-half:before { + content: ""; + } + + .fa-heart-o:before { + content: ""; + } + + .fa-sign-out:before { + content: ""; + } + + .fa-linkedin-square:before { + content: ""; + } + + .fa-thumb-tack:before { + content: ""; + } + + .fa-external-link:before { + content: ""; + } + + .fa-sign-in:before { + content: ""; + } + + .fa-trophy:before { + content: ""; + } + + .fa-github-square:before { + content: ""; + } + + .fa-upload:before { + content: ""; + } + + .fa-lemon-o:before { + content: ""; + } + + .fa-phone:before { + content: ""; + } + + .fa-square-o:before { + content: ""; + } + + .fa-bookmark-o:before { + content: ""; + } + + .fa-phone-square:before { + content: ""; + } + + .fa-twitter:before { + content: ""; + } + + .fa-facebook-f:before, + .fa-facebook:before { + content: ""; + } + + .fa-github:before { + content: ""; + } + + .fa-unlock:before { + content: ""; + } + + .fa-credit-card:before { + content: ""; + } + + .fa-feed:before, + .fa-rss:before { + content: ""; + } + + .fa-hdd-o:before { + content: ""; + } + + .fa-bullhorn:before { + content: ""; + } + + .fa-bell:before { + content: ""; + } + + .fa-certificate:before { + content: ""; + } + + .fa-hand-o-right:before { + content: ""; + } + + .fa-hand-o-left:before { + content: ""; + } + + .fa-hand-o-up:before { + content: ""; + } + + .fa-hand-o-down:before { + content: ""; + } + + .fa-arrow-circle-left:before { + content: ""; + } + + .fa-arrow-circle-right:before { + content: ""; + } + + .fa-arrow-circle-up:before { + content: ""; + } + + .fa-arrow-circle-down:before { + content: ""; + } + + .fa-globe:before { + content: ""; + } + + .fa-wrench:before { + content: ""; + } + + .fa-tasks:before { + content: ""; + } + + .fa-filter:before { + content: ""; + } + + .fa-briefcase:before { + content: ""; + } + + .fa-arrows-alt:before { + content: ""; + } + + .fa-group:before, + .fa-users:before { + content: ""; + } + + .fa-chain:before, + .fa-link:before { + content: ""; + } + + .fa-cloud:before { + content: ""; + } + + .fa-flask:before { + content: ""; + } + + .fa-cut:before, + .fa-scissors:before { + content: ""; + } + + .fa-copy:before, + .fa-files-o:before { + content: ""; + } + + .fa-paperclip:before { + content: ""; + } + + .fa-save:before, + .fa-floppy-o:before { + content: ""; + } + + .fa-square:before { + content: ""; + } + + .fa-navicon:before, + .fa-reorder:before, + .fa-bars:before { + content: ""; + } + + .fa-list-ul:before { + content: ""; + } + + .fa-list-ol:before { + content: ""; + } + + .fa-strikethrough:before { + content: ""; + } + + .fa-underline:before { + content: ""; + } + + .fa-table:before { + content: ""; + } + + .fa-magic:before { + content: ""; + } + + .fa-truck:before { + content: ""; + } + + .fa-pinterest:before { + content: ""; + } + + .fa-pinterest-square:before { + content: ""; + } + + .fa-google-plus-square:before { + content: ""; + } + + .fa-google-plus:before { + content: ""; + } + + .fa-money:before { + content: ""; + } + + .fa-caret-down:before { + content: ""; + } + + .fa-caret-up:before { + content: ""; + } + + .fa-caret-left:before { + content: ""; + } + + .fa-caret-right:before { + content: ""; + } + + .fa-columns:before { + content: ""; + } + + .fa-unsorted:before, + .fa-sort:before { + content: ""; + } + + .fa-sort-down:before, + .fa-sort-desc:before { + content: ""; + } + + .fa-sort-up:before, + .fa-sort-asc:before { + content: ""; + } + + .fa-envelope:before { + content: ""; + } + + .fa-linkedin:before { + content: ""; + } + + .fa-rotate-left:before, + .fa-undo:before { + content: ""; + } + + .fa-legal:before, + .fa-gavel:before { + content: ""; + } + + .fa-dashboard:before, + .fa-tachometer:before { + content: ""; + } + + .fa-comment-o:before { + content: ""; + } + + .fa-comments-o:before { + content: ""; + } + + .fa-flash:before, + .fa-bolt:before { + content: ""; + } + + .fa-sitemap:before { + content: ""; + } + + .fa-umbrella:before { + content: ""; + } + + .fa-paste:before, + .fa-clipboard:before { + content: ""; + } + + .fa-lightbulb-o:before { + content: ""; + } + + .fa-exchange:before { + content: ""; + } + + .fa-cloud-download:before { + content: ""; + } + + .fa-cloud-upload:before { + content: ""; + } + + .fa-user-md:before { + content: ""; + } + + .fa-stethoscope:before { + content: ""; + } + + .fa-suitcase:before { + content: ""; + } + + .fa-bell-o:before { + content: ""; + } + + .fa-coffee:before { + content: ""; + } + + .fa-cutlery:before { + content: ""; + } + + .fa-file-text-o:before { + content: ""; + } + + .fa-building-o:before { + content: ""; + } + + .fa-hospital-o:before { + content: ""; + } + + .fa-ambulance:before { + content: ""; + } + + .fa-medkit:before { + content: ""; + } + + .fa-fighter-jet:before { + content: ""; + } + + .fa-beer:before { + content: ""; + } + + .fa-h-square:before { + content: ""; + } + + .fa-plus-square:before { + content: ""; + } + + .fa-angle-double-left:before { + content: ""; + } + + .fa-angle-double-right:before { + content: ""; + } + + .fa-angle-double-up:before { + content: ""; + } + + .fa-angle-double-down:before { + content: ""; + } + + .fa-angle-left:before { + content: ""; + } + + .fa-angle-right:before { + content: ""; + } + + .fa-angle-up:before { + content: ""; + } + + .fa-angle-down:before { + content: ""; + } + + .fa-desktop:before { + content: ""; + } + + .fa-laptop:before { + content: ""; + } + + .fa-tablet:before { + content: ""; + } + + .fa-mobile-phone:before, + .fa-mobile:before { + content: ""; + } + + .fa-circle-o:before { + content: ""; + } + + .fa-quote-left:before { + content: ""; + } + + .fa-quote-right:before { + content: ""; + } + + .fa-spinner:before { + content: ""; + } + + .fa-circle:before { + content: ""; + } + + .fa-mail-reply:before, + .fa-reply:before { + content: ""; + } + + .fa-github-alt:before { + content: ""; + } + + .fa-folder-o:before { + content: ""; + } + + .fa-folder-open-o:before { + content: ""; + } + + .fa-smile-o:before { + content: ""; + } + + .fa-frown-o:before { + content: ""; + } + + .fa-meh-o:before { + content: ""; + } + + .fa-gamepad:before { + content: ""; + } + + .fa-keyboard-o:before { + content: ""; + } + + .fa-flag-o:before { + content: ""; + } + + .fa-flag-checkered:before { + content: ""; + } + + .fa-terminal:before { + content: ""; + } + + .fa-code:before { + content: ""; + } + + .fa-mail-reply-all:before, + .fa-reply-all:before { + content: ""; + } + + .fa-star-half-empty:before, + .fa-star-half-full:before, + .fa-star-half-o:before { + content: ""; + } + + .fa-location-arrow:before { + content: ""; + } + + .fa-crop:before { + content: ""; + } + + .fa-code-fork:before { + content: ""; + } + + .fa-unlink:before, + .fa-chain-broken:before { + content: ""; + } + + .fa-question:before { + content: ""; + } + + .fa-info:before { + content: ""; + } + + .fa-exclamation:before { + content: ""; + } + + .fa-superscript:before { + content: ""; + } + + .fa-subscript:before { + content: ""; + } + + .fa-eraser:before { + content: ""; + } + + .fa-puzzle-piece:before { + content: ""; + } + + .fa-microphone:before { + content: ""; + } + + .fa-microphone-slash:before { + content: ""; + } + + .fa-shield:before { + content: ""; + } + + .fa-calendar-o:before { + content: ""; + } + + .fa-fire-extinguisher:before { + content: ""; + } + + .fa-rocket:before { + content: ""; + } + + .fa-maxcdn:before { + content: ""; + } + + .fa-chevron-circle-left:before { + content: ""; + } + + .fa-chevron-circle-right:before { + content: ""; + } + + .fa-chevron-circle-up:before { + content: ""; + } + + .fa-chevron-circle-down:before { + content: ""; + } + + .fa-html5:before { + content: ""; + } + + .fa-css3:before { + content: ""; + } + + .fa-anchor:before { + content: ""; + } + + .fa-unlock-alt:before { + content: ""; + } + + .fa-bullseye:before { + content: ""; + } + + .fa-ellipsis-h:before { + content: ""; + } + + .fa-ellipsis-v:before { + content: ""; + } + + .fa-rss-square:before { + content: ""; + } + + .fa-play-circle:before { + content: ""; + } + + .fa-ticket:before { + content: ""; + } + + .fa-minus-square:before { + content: ""; + } + + .fa-minus-square-o:before { + content: ""; + } + + .fa-level-up:before { + content: ""; + } + + .fa-level-down:before { + content: ""; + } + + .fa-check-square:before { + content: ""; + } + + .fa-pencil-square:before { + content: ""; + } + + .fa-external-link-square:before { + content: ""; + } + + .fa-share-square:before { + content: ""; + } + + .fa-compass:before { + content: ""; + } + + .fa-toggle-down:before, + .fa-caret-square-o-down:before { + content: ""; + } + + .fa-toggle-up:before, + .fa-caret-square-o-up:before { + content: ""; + } + + .fa-toggle-right:before, + .fa-caret-square-o-right:before { + content: ""; + } + + .fa-euro:before, + .fa-eur:before { + content: ""; + } + + .fa-gbp:before { + content: ""; + } + + .fa-dollar:before, + .fa-usd:before { + content: ""; + } + + .fa-rupee:before, + .fa-inr:before { + content: ""; + } + + .fa-cny:before, + .fa-rmb:before, + .fa-yen:before, + .fa-jpy:before { + content: ""; + } + + .fa-ruble:before, + .fa-rouble:before, + .fa-rub:before { + content: ""; + } + + .fa-won:before, + .fa-krw:before { + content: ""; + } + + .fa-bitcoin:before, + .fa-btc:before { + content: ""; + } + + .fa-file:before { + content: ""; + } + + .fa-file-text:before { + content: ""; + } + + .fa-sort-alpha-asc:before { + content: ""; + } + + .fa-sort-alpha-desc:before { + content: ""; + } + + .fa-sort-amount-asc:before { + content: ""; + } + + .fa-sort-amount-desc:before { + content: ""; + } + + .fa-sort-numeric-asc:before { + content: ""; + } + + .fa-sort-numeric-desc:before { + content: ""; + } + + .fa-thumbs-up:before { + content: ""; + } + + .fa-thumbs-down:before { + content: ""; + } + + .fa-youtube-square:before { + content: ""; + } + + .fa-youtube:before { + content: ""; + } + + .fa-xing:before { + content: ""; + } + + .fa-xing-square:before { + content: ""; + } + + .fa-youtube-play:before { + content: ""; + } + + .fa-dropbox:before { + content: ""; + } + + .fa-stack-overflow:before { + content: ""; + } + + .fa-instagram:before { + content: ""; + } + + .fa-flickr:before { + content: ""; + } + + .fa-adn:before { + content: ""; + } + + .fa-bitbucket:before { + content: ""; + } + + .fa-bitbucket-square:before { + content: ""; + } + + .fa-tumblr:before { + content: ""; + } + + .fa-tumblr-square:before { + content: ""; + } + + .fa-long-arrow-down:before { + content: ""; + } + + .fa-long-arrow-up:before { + content: ""; + } + + .fa-long-arrow-left:before { + content: ""; + } + + .fa-long-arrow-right:before { + content: ""; + } + + .fa-apple:before { + content: ""; + } + + .fa-windows:before { + content: ""; + } + + .fa-android:before { + content: ""; + } + + .fa-linux:before { + content: ""; + } + + .fa-dribbble:before { + content: ""; + } + + .fa-skype:before { + content: ""; + } + + .fa-foursquare:before { + content: ""; + } + + .fa-trello:before { + content: ""; + } + + .fa-female:before { + content: ""; + } + + .fa-male:before { + content: ""; + } + + .fa-gittip:before, + .fa-gratipay:before { + content: ""; + } + + .fa-sun-o:before { + content: ""; + } + + .fa-moon-o:before { + content: ""; + } + + .fa-archive:before { + content: ""; + } + + .fa-bug:before { + content: ""; + } + + .fa-vk:before { + content: ""; + } + + .fa-weibo:before { + content: ""; + } + + .fa-renren:before { + content: ""; + } + + .fa-pagelines:before { + content: ""; + } + + .fa-stack-exchange:before { + content: ""; + } + + .fa-arrow-circle-o-right:before { + content: ""; + } + + .fa-arrow-circle-o-left:before { + content: ""; + } + + .fa-toggle-left:before, + .fa-caret-square-o-left:before { + content: ""; + } + + .fa-dot-circle-o:before { + content: ""; + } + + .fa-wheelchair:before { + content: ""; + } + + .fa-vimeo-square:before { + content: ""; + } + + .fa-turkish-lira:before, + .fa-try:before { + content: ""; + } + + .fa-plus-square-o:before { + content: ""; + } + + .fa-space-shuttle:before { + content: ""; + } + + .fa-slack:before { + content: ""; + } + + .fa-envelope-square:before { + content: ""; + } + + .fa-wordpress:before { + content: ""; + } + + .fa-openid:before { + content: ""; + } + + .fa-institution:before, + .fa-bank:before, + .fa-university:before { + content: ""; + } + + .fa-mortar-board:before, + .fa-graduation-cap:before { + content: ""; + } + + .fa-yahoo:before { + content: ""; + } + + .fa-google:before { + content: ""; + } + + .fa-reddit:before { + content: ""; + } + + .fa-reddit-square:before { + content: ""; + } + + .fa-stumbleupon-circle:before { + content: ""; + } + + .fa-stumbleupon:before { + content: ""; + } + + .fa-delicious:before { + content: ""; + } + + .fa-digg:before { + content: ""; + } + + .fa-pied-piper-pp:before { + content: ""; + } + + .fa-pied-piper-alt:before { + content: ""; + } + + .fa-drupal:before { + content: ""; + } + + .fa-joomla:before { + content: ""; + } + + .fa-language:before { + content: ""; + } + + .fa-fax:before { + content: ""; + } + + .fa-building:before { + content: ""; + } + + .fa-child:before { + content: ""; + } + + .fa-paw:before { + content: ""; + } + + .fa-spoon:before { + content: ""; + } + + .fa-cube:before { + content: ""; + } + + .fa-cubes:before { + content: ""; + } + + .fa-behance:before { + content: ""; + } + + .fa-behance-square:before { + content: ""; + } + + .fa-steam:before { + content: ""; + } + + .fa-steam-square:before { + content: ""; + } + + .fa-recycle:before { + content: ""; + } + + .fa-automobile:before, + .fa-car:before { + content: ""; + } + + .fa-cab:before, + .fa-taxi:before { + content: ""; + } + + .fa-tree:before { + content: ""; + } + + .fa-spotify:before { + content: ""; + } + + .fa-deviantart:before { + content: ""; + } + + .fa-soundcloud:before { + content: ""; + } + + .fa-database:before { + content: ""; + } + + .fa-file-pdf-o:before { + content: ""; + } + + .fa-file-word-o:before { + content: ""; + } + + .fa-file-excel-o:before { + content: ""; + } + + .fa-file-powerpoint-o:before { + content: ""; + } + + .fa-file-photo-o:before, + .fa-file-picture-o:before, + .fa-file-image-o:before { + content: ""; + } + + .fa-file-zip-o:before, + .fa-file-archive-o:before { + content: ""; + } + + .fa-file-sound-o:before, + .fa-file-audio-o:before { + content: ""; + } + + .fa-file-movie-o:before, + .fa-file-video-o:before { + content: ""; + } + + .fa-file-code-o:before { + content: ""; + } + + .fa-vine:before { + content: ""; + } + + .fa-codepen:before { + content: ""; + } + + .fa-jsfiddle:before { + content: ""; + } + + .fa-life-bouy:before, + .fa-life-buoy:before, + .fa-life-saver:before, + .fa-support:before, + .fa-life-ring:before { + content: ""; + } + + .fa-circle-o-notch:before { + content: ""; + } + + .fa-ra:before, + .fa-resistance:before, + .fa-rebel:before { + content: ""; + } + + .fa-ge:before, + .fa-empire:before { + content: ""; + } + + .fa-git-square:before { + content: ""; + } + + .fa-git:before { + content: ""; + } + + .fa-y-combinator-square:before, + .fa-yc-square:before, + .fa-hacker-news:before { + content: ""; + } + + .fa-tencent-weibo:before { + content: ""; + } + + .fa-qq:before { + content: ""; + } + + .fa-wechat:before, + .fa-weixin:before { + content: ""; + } + + .fa-send:before, + .fa-paper-plane:before { + content: ""; + } + + .fa-send-o:before, + .fa-paper-plane-o:before { + content: ""; + } + + .fa-history:before { + content: ""; + } + + .fa-circle-thin:before { + content: ""; + } + + .fa-header:before { + content: ""; + } + + .fa-paragraph:before { + content: ""; + } + + .fa-sliders:before { + content: ""; + } + + .fa-share-alt:before { + content: ""; + } + + .fa-share-alt-square:before { + content: ""; + } + + .fa-bomb:before { + content: ""; + } + + .fa-soccer-ball-o:before, + .fa-futbol-o:before { + content: ""; + } + + .fa-tty:before { + content: ""; + } + + .fa-binoculars:before { + content: ""; + } + + .fa-plug:before { + content: ""; + } + + .fa-slideshare:before { + content: ""; + } + + .fa-twitch:before { + content: ""; + } + + .fa-yelp:before { + content: ""; + } + + .fa-newspaper-o:before { + content: ""; + } + + .fa-wifi:before { + content: ""; + } + + .fa-calculator:before { + content: ""; + } + + .fa-paypal:before { + content: ""; + } + + .fa-google-wallet:before { + content: ""; + } + + .fa-cc-visa:before { + content: ""; + } + + .fa-cc-mastercard:before { + content: ""; + } + + .fa-cc-discover:before { + content: ""; + } + + .fa-cc-amex:before { + content: ""; + } + + .fa-cc-paypal:before { + content: ""; + } + + .fa-cc-stripe:before { + content: ""; + } + + .fa-bell-slash:before { + content: ""; + } + + .fa-bell-slash-o:before { + content: ""; + } + + .fa-trash:before { + content: ""; + } + + .fa-copyright:before { + content: ""; + } + + .fa-at:before { + content: ""; + } + + .fa-eyedropper:before { + content: ""; + } + + .fa-paint-brush:before { + content: ""; + } + + .fa-birthday-cake:before { + content: ""; + } + + .fa-area-chart:before { + content: ""; + } + + .fa-pie-chart:before { + content: ""; + } + + .fa-line-chart:before { + content: ""; + } + + .fa-lastfm:before { + content: ""; + } + + .fa-lastfm-square:before { + content: ""; + } + + .fa-toggle-off:before { + content: ""; + } + + .fa-toggle-on:before { + content: ""; + } + + .fa-bicycle:before { + content: ""; + } + + .fa-bus:before { + content: ""; + } + + .fa-ioxhost:before { + content: ""; + } + + .fa-angellist:before { + content: ""; + } + + .fa-cc:before { + content: ""; + } + + .fa-shekel:before, + .fa-sheqel:before, + .fa-ils:before { + content: ""; + } + + .fa-meanpath:before { + content: ""; + } + + .fa-buysellads:before { + content: ""; + } + + .fa-connectdevelop:before { + content: ""; + } + + .fa-dashcube:before { + content: ""; + } + + .fa-forumbee:before { + content: ""; + } + + .fa-leanpub:before { + content: ""; + } + + .fa-sellsy:before { + content: ""; + } + + .fa-shirtsinbulk:before { + content: ""; + } + + .fa-simplybuilt:before { + content: ""; + } + + .fa-skyatlas:before { + content: ""; + } + + .fa-cart-plus:before { + content: ""; + } + + .fa-cart-arrow-down:before { + content: ""; + } + + .fa-diamond:before { + content: ""; + } + + .fa-ship:before { + content: ""; + } + + .fa-user-secret:before { + content: ""; + } + + .fa-motorcycle:before { + content: ""; + } + + .fa-street-view:before { + content: ""; + } + + .fa-heartbeat:before { + content: ""; + } + + .fa-venus:before { + content: ""; + } + + .fa-mars:before { + content: ""; + } + + .fa-mercury:before { + content: ""; + } + + .fa-intersex:before, + .fa-transgender:before { + content: ""; + } + + .fa-transgender-alt:before { + content: ""; + } + + .fa-venus-double:before { + content: ""; + } + + .fa-mars-double:before { + content: ""; + } + + .fa-venus-mars:before { + content: ""; + } + + .fa-mars-stroke:before { + content: ""; + } + + .fa-mars-stroke-v:before { + content: ""; + } + + .fa-mars-stroke-h:before { + content: ""; + } + + .fa-neuter:before { + content: ""; + } + + .fa-genderless:before { + content: ""; + } + + .fa-facebook-official:before { + content: ""; + } + + .fa-pinterest-p:before { + content: ""; + } + + .fa-whatsapp:before { + content: ""; + } + + .fa-server:before { + content: ""; + } + + .fa-user-plus:before { + content: ""; + } + + .fa-user-times:before { + content: ""; + } + + .fa-hotel:before, + .fa-bed:before { + content: ""; + } + + .fa-viacoin:before { + content: ""; + } + + .fa-train:before { + content: ""; + } + + .fa-subway:before { + content: ""; + } + + .fa-medium:before { + content: ""; + } + + .fa-yc:before, + .fa-y-combinator:before { + content: ""; + } + + .fa-optin-monster:before { + content: ""; + } + + .fa-opencart:before { + content: ""; + } + + .fa-expeditedssl:before { + content: ""; + } + + .fa-battery-4:before, + .fa-battery:before, + .fa-battery-full:before { + content: ""; + } + + .fa-battery-3:before, + .fa-battery-three-quarters:before { + content: ""; + } + + .fa-battery-2:before, + .fa-battery-half:before { + content: ""; + } + + .fa-battery-1:before, + .fa-battery-quarter:before { + content: ""; + } + + .fa-battery-0:before, + .fa-battery-empty:before { + content: ""; + } + + .fa-mouse-pointer:before { + content: ""; + } + + .fa-i-cursor:before { + content: ""; + } + + .fa-object-group:before { + content: ""; + } + + .fa-object-ungroup:before { + content: ""; + } + + .fa-sticky-note:before { + content: ""; + } + + .fa-sticky-note-o:before { + content: ""; + } + + .fa-cc-jcb:before { + content: ""; + } + + .fa-cc-diners-club:before { + content: ""; + } + + .fa-clone:before { + content: ""; + } + + .fa-balance-scale:before { + content: ""; + } + + .fa-hourglass-o:before { + content: ""; + } + + .fa-hourglass-1:before, + .fa-hourglass-start:before { + content: ""; + } + + .fa-hourglass-2:before, + .fa-hourglass-half:before { + content: ""; + } + + .fa-hourglass-3:before, + .fa-hourglass-end:before { + content: ""; + } + + .fa-hourglass:before { + content: ""; + } + + .fa-hand-grab-o:before, + .fa-hand-rock-o:before { + content: ""; + } + + .fa-hand-stop-o:before, + .fa-hand-paper-o:before { + content: ""; + } + + .fa-hand-scissors-o:before { + content: ""; + } + + .fa-hand-lizard-o:before { + content: ""; + } + + .fa-hand-spock-o:before { + content: ""; + } + + .fa-hand-pointer-o:before { + content: ""; + } + + .fa-hand-peace-o:before { + content: ""; + } + + .fa-trademark:before { + content: ""; + } + + .fa-registered:before { + content: ""; + } + + .fa-creative-commons:before { + content: ""; + } + + .fa-gg:before { + content: ""; + } + + .fa-gg-circle:before { + content: ""; + } + + .fa-tripadvisor:before { + content: ""; + } + + .fa-odnoklassniki:before { + content: ""; + } + + .fa-odnoklassniki-square:before { + content: ""; + } + + .fa-get-pocket:before { + content: ""; + } + + .fa-wikipedia-w:before { + content: ""; + } + + .fa-safari:before { + content: ""; + } + + .fa-chrome:before { + content: ""; + } + + .fa-firefox:before { + content: ""; + } + + .fa-opera:before { + content: ""; + } + + .fa-internet-explorer:before { + content: ""; + } + + .fa-tv:before, + .fa-television:before { + content: ""; + } + + .fa-contao:before { + content: ""; + } + + .fa-500px:before { + content: ""; + } + + .fa-amazon:before { + content: ""; + } + + .fa-calendar-plus-o:before { + content: ""; + } + + .fa-calendar-minus-o:before { + content: ""; + } + + .fa-calendar-times-o:before { + content: ""; + } + + .fa-calendar-check-o:before { + content: ""; + } + + .fa-industry:before { + content: ""; + } + + .fa-map-pin:before { + content: ""; + } + + .fa-map-signs:before { + content: ""; + } + + .fa-map-o:before { + content: ""; + } + + .fa-map:before { + content: ""; + } + + .fa-commenting:before { + content: ""; + } + + .fa-commenting-o:before { + content: ""; + } + + .fa-houzz:before { + content: ""; + } + + .fa-vimeo:before { + content: ""; + } + + .fa-black-tie:before { + content: ""; + } + + .fa-fonticons:before { + content: ""; + } + + .fa-reddit-alien:before { + content: ""; + } + + .fa-edge:before { + content: ""; + } + + .fa-credit-card-alt:before { + content: ""; + } + + .fa-codiepie:before { + content: ""; + } + + .fa-modx:before { + content: ""; + } + + .fa-fort-awesome:before { + content: ""; + } + + .fa-usb:before { + content: ""; + } + + .fa-product-hunt:before { + content: ""; + } + + .fa-mixcloud:before { + content: ""; + } + + .fa-scribd:before { + content: ""; + } + + .fa-pause-circle:before { + content: ""; + } + + .fa-pause-circle-o:before { + content: ""; + } + + .fa-stop-circle:before { + content: ""; + } + + .fa-stop-circle-o:before { + content: ""; + } + + .fa-shopping-bag:before { + content: ""; + } + + .fa-shopping-basket:before { + content: ""; + } + + .fa-hashtag:before { + content: ""; + } + + .fa-bluetooth:before { + content: ""; + } + + .fa-bluetooth-b:before { + content: ""; + } + + .fa-percent:before { + content: ""; + } + + .fa-gitlab:before { + content: ""; + } + + .fa-wpbeginner:before { + content: ""; + } + + .fa-wpforms:before { + content: ""; + } + + .fa-envira:before { + content: ""; + } + + .fa-universal-access:before { + content: ""; + } + + .fa-wheelchair-alt:before { + content: ""; + } + + .fa-question-circle-o:before { + content: ""; + } + + .fa-blind:before { + content: ""; + } + + .fa-audio-description:before { + content: ""; + } + + .fa-volume-control-phone:before { + content: ""; + } + + .fa-braille:before { + content: ""; + } + + .fa-assistive-listening-systems:before { + content: ""; + } + + .fa-asl-interpreting:before, + .fa-american-sign-language-interpreting:before { + content: ""; + } + + .fa-deafness:before, + .fa-hard-of-hearing:before, + .fa-deaf:before { + content: ""; + } + + .fa-glide:before { + content: ""; + } + + .fa-glide-g:before { + content: ""; + } + + .fa-signing:before, + .fa-sign-language:before { + content: ""; + } + + .fa-low-vision:before { + content: ""; + } + + .fa-viadeo:before { + content: ""; + } + + .fa-viadeo-square:before { + content: ""; + } + + .fa-snapchat:before { + content: ""; + } + + .fa-snapchat-ghost:before { + content: ""; + } + + .fa-snapchat-square:before { + content: ""; + } + + .fa-pied-piper:before { + content: ""; + } + + .fa-first-order:before { + content: ""; + } + + .fa-yoast:before { + content: ""; + } + + .fa-themeisle:before { + content: ""; + } + + .fa-google-plus-circle:before, + .fa-google-plus-official:before { + content: ""; + } + + .fa-fa:before, + .fa-font-awesome:before { + content: ""; + } + + .fa-handshake-o:before { + content: ""; + } + + .fa-envelope-open:before { + content: ""; + } + + .fa-envelope-open-o:before { + content: ""; + } + + .fa-linode:before { + content: ""; + } + + .fa-address-book:before { + content: ""; + } + + .fa-address-book-o:before { + content: ""; + } + + .fa-vcard:before, + .fa-address-card:before { + content: ""; + } + + .fa-vcard-o:before, + .fa-address-card-o:before { + content: ""; + } + + .fa-user-circle:before { + content: ""; + } + + .fa-user-circle-o:before { + content: ""; + } + + .fa-user-o:before { + content: ""; + } + + .fa-id-badge:before { + content: ""; + } + + .fa-drivers-license:before, + .fa-id-card:before { + content: ""; + } + + .fa-drivers-license-o:before, + .fa-id-card-o:before { + content: ""; + } + + .fa-quora:before { + content: ""; + } + + .fa-free-code-camp:before { + content: ""; + } + + .fa-telegram:before { + content: ""; + } + + .fa-thermometer-4:before, + .fa-thermometer:before, + .fa-thermometer-full:before { + content: ""; + } + + .fa-thermometer-3:before, + .fa-thermometer-three-quarters:before { + content: ""; + } + + .fa-thermometer-2:before, + .fa-thermometer-half:before { + content: ""; + } + + .fa-thermometer-1:before, + .fa-thermometer-quarter:before { + content: ""; + } + + .fa-thermometer-0:before, + .fa-thermometer-empty:before { + content: ""; + } + + .fa-shower:before { + content: ""; + } + + .fa-bathtub:before, + .fa-s15:before, + .fa-bath:before { + content: ""; + } + + .fa-podcast:before { + content: ""; + } + + .fa-window-maximize:before { + content: ""; + } + + .fa-window-minimize:before { + content: ""; + } + + .fa-window-restore:before { + content: ""; + } + + .fa-times-rectangle:before, + .fa-window-close:before { + content: ""; + } + + .fa-times-rectangle-o:before, + .fa-window-close-o:before { + content: ""; + } + + .fa-bandcamp:before { + content: ""; + } + + .fa-grav:before { + content: ""; + } + + .fa-etsy:before { + content: ""; + } + + .fa-imdb:before { + content: ""; + } + + .fa-ravelry:before { + content: ""; + } + + .fa-eercast:before { + content: ""; + } + + .fa-microchip:before { + content: ""; + } + + .fa-snowflake-o:before { + content: ""; + } + + .fa-superpowers:before { + content: ""; + } + + .fa-wpexplorer:before { + content: ""; + } + + .fa-meetup:before { + content: ""; + } + + .sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; + } + + .sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; + } + + @font-face { + font-family: 'themify'; + src: url("../fonts/themify.eot?-fvbane"); + src: url("../fonts/themify.eot?#iefix-fvbane") format("embedded-opentype"), url("../fonts/themify.woff?-fvbane") format("woff"), url("../fonts/themify.ttf?-fvbane") format("truetype"), url("../fonts/themify.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; + + -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"; + } + + + @font-face { + font-family: "Material Design Icons"; + src: url("../fonts/materialdesignicons-webfont.eot?v=2.0.46"); + src: url("../fonts/materialdesignicons-webfont.eot?#iefix&v=2.0.46") format("embedded-opentype"), url("../fonts/materialdesignicons-webfont.woff2?v=2.0.46") format("woff2"), url("../fonts/materialdesignicons-webfont.woff?v=2.0.46") format("woff"), url("../fonts/materialdesignicons-webfont.ttf?v=2.0.46") format("truetype"), url("../fonts/materialdesignicons-webfont.svg?v=2.0.46#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-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-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-minus:before { + content: "\F5D3"; + } + + .mdi-account-multiple-outline:before { + content: "\F00F"; + } + + .mdi-account-multiple-plus:before { + content: "\F010"; + } + + .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-remove:before { + content: "\F015"; + } + + .mdi-account-search:before { + content: "\F016"; + } + + .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-adjust:before { + content: "\F01A"; + } + + .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-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-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-clouddrive: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-angular:before { + content: "\F6B1"; + } + + .mdi-angularjs:before { + content: "\F6BE"; + } + + .mdi-animation:before { + content: "\F5D8"; + } + + .mdi-apple:before { + content: "\F035"; + } + + .mdi-apple-finder:before { + content: "\F036"; + } + + .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-mobileme:before { + content: "\F038"; + } + + .mdi-apple-safari:before { + content: "\F039"; + } + + .mdi-application:before { + content: "\F614"; + } + + .mdi-approval:before { + content: "\F790"; + } + + .mdi-apps:before { + content: "\F03B"; + } + + .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-left:before { + content: "\F792"; + } + + .mdi-arrow-collapse-right:before { + content: "\F793"; + } + + .mdi-arrow-collapse-up:before { + content: "\F794"; + } + + .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-left:before { + content: "\F796"; + } + + .mdi-arrow-expand-right:before { + content: "\F797"; + } + + .mdi-arrow-expand-up:before { + content: "\F798"; + } + + .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-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-assistant:before { + content: "\F064"; + } + + .mdi-asterisk:before { + content: "\F6C3"; + } + + .mdi-at:before { + content: "\F065"; + } + + .mdi-atom:before { + content: "\F767"; + } + + .mdi-attachment:before { + content: "\F066"; + } + + .mdi-audiobook:before { + content: "\F067"; + } + + .mdi-auto-fix:before { + content: "\F068"; + } + + .mdi-auto-upload:before { + content: "\F069"; + } + + .mdi-autorenew:before { + content: "\F06A"; + } + + .mdi-av-timer:before { + content: "\F06B"; + } + + .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-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-basecamp:before { + content: "\F075"; + } + + .mdi-basket:before { + content: "\F076"; + } + + .mdi-basket-fill:before { + content: "\F077"; + } + + .mdi-basket-unfill:before { + content: "\F078"; + } + + .mdi-battery:before { + content: "\F079"; + } + + .mdi-battery-10:before { + content: "\F07A"; + } + + .mdi-battery-20:before { + content: "\F07B"; + } + + .mdi-battery-30:before { + content: "\F07C"; + } + + .mdi-battery-40:before { + content: "\F07D"; + } + + .mdi-battery-50:before { + content: "\F07E"; + } + + .mdi-battery-60:before { + content: "\F07F"; + } + + .mdi-battery-70:before { + content: "\F080"; + } + + .mdi-battery-80:before { + content: "\F081"; + } + + .mdi-battery-90:before { + content: "\F082"; + } + + .mdi-battery-alert:before { + content: "\F083"; + } + + .mdi-battery-charging:before { + content: "\F084"; + } + + .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-60:before { + content: "\F089"; + } + + .mdi-battery-charging-80:before { + content: "\F08A"; + } + + .mdi-battery-charging-90:before { + content: "\F08B"; + } + + .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-beach:before { + content: "\F092"; + } + + .mdi-beaker:before { + content: "\F68F"; + } + + .mdi-beats:before { + content: "\F097"; + } + + .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-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-bottom:before { + content: "\F0C8"; + } + + .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-none:before { + content: "\F0CD"; + } + + .mdi-border-outside:before { + content: "\F0CE"; + } + + .mdi-border-right:before { + content: "\F0CF"; + } + + .mdi-border-style:before { + content: "\F0D0"; + } + + .mdi-border-top:before { + content: "\F0D1"; + } + + .mdi-border-vertical:before { + content: "\F0D2"; + } + + .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-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-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-burst-mode:before { + content: "\F5DE"; + } + + .mdi-bus:before { + content: "\F0E7"; + } + + .mdi-bus-articulated-end:before { + content: "\F79B"; + } + + .mdi-bus-articulated-front:before { + content: "\F79C"; + } + + .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-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-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-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-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-convertable:before { + content: "\F7A6"; + } + + .mdi-car-estate:before { + content: "\F7A7"; + } + + .mdi-car-hatchback:before { + content: "\F7A8"; + } + + .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-outline:before { + content: "\F639"; + } + + .mdi-cards-playing-outline:before { + content: "\F63A"; + } + + .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-iphone:before { + content: "\F120"; + } + + .mdi-cellphone-link:before { + content: "\F121"; + } + + .mdi-cellphone-link-off:before { + content: "\F122"; + } + + .mdi-cellphone-settings:before { + content: "\F123"; + } + + .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-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-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-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-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-church:before { + content: "\F144"; + } + + .mdi-circle:before { + content: "\F764"; + } + + .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-flow:before { + content: "\F6C7"; + } + + .mdi-clipboard-outline:before { + content: "\F14D"; + } + + .mdi-clipboard-plus:before { + content: "\F750"; + } + + .mdi-clipboard-text:before { + content: "\F14E"; + } + + .mdi-clippy:before { + content: "\F14F"; + } + + .mdi-clock:before { + content: "\F150"; + } + + .mdi-clock-alert: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-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-sync:before { + content: "\F63F"; + } + + .mdi-cloud-tags:before { + content: "\F7B5"; + } + + .mdi-cloud-upload:before { + content: "\F167"; + } + + .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-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-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-outline:before { + content: "\F186"; + } + + .mdi-comment-remove-outline:before { + content: "\F187"; + } + + .mdi-comment-text:before { + content: "\F188"; + } + + .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-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-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-corn:before { + content: "\F7B7"; + } + + .mdi-counter:before { + content: "\F199"; + } + + .mdi-cow:before { + content: "\F19A"; + } + + .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-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-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-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-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-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-minus:before { + content: "\F1B9"; + } + + .mdi-database-plus:before { + content: "\F1BA"; + } + + .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-sweep:before { + content: "\F5E9"; + } + + .mdi-delete-variant:before { + content: "\F1C1"; + } + + .mdi-delta:before { + content: "\F1C2"; + } + + .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-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-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-dolby:before { + content: "\F6B2"; + } + + .mdi-domain:before { + content: "\F1D7"; + } + + .mdi-donkey:before { + content: "\F7C1"; + } + + .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-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-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-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-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-fast-forward:before { + content: "\F211"; + } + + .mdi-fast-forward-outline:before { + content: "\F6D1"; + } + + .mdi-fax:before { + content: "\F212"; + } + + .mdi-feather:before { + content: "\F6D2"; + } + + .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-delimited:before { + content: "\F218"; + } + + .mdi-file-document:before { + content: "\F219"; + } + + .mdi-file-document-box:before { + content: "\F21A"; + } + + .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-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-restore:before { + content: "\F670"; + } + + .mdi-file-send:before { + content: "\F22A"; + } + + .mdi-file-tree:before { + content: "\F645"; + } + + .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-find-replace:before { + content: "\F6D3"; + } + + .mdi-fingerprint:before { + content: "\F237"; + } + + .mdi-fire:before { + content: "\F238"; + } + + .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-outline-variant:before { + content: "\F23E"; + } + + .mdi-flag-triangle:before { + content: "\F23F"; + } + + .mdi-flag-variant:before { + content: "\F240"; + } + + .mdi-flash:before { + content: "\F241"; + } + + .mdi-flash-auto:before { + content: "\F242"; + } + + .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-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-google-drive:before { + content: "\F24E"; + } + + .mdi-folder-image:before { + content: "\F24F"; + } + + .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-open:before { + content: "\F76F"; + } + + .mdi-folder-outline:before { + content: "\F256"; + } + + .mdi-folder-plus:before { + content: "\F257"; + } + + .mdi-folder-remove:before { + content: "\F258"; + } + + .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-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-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-forward:before { + content: "\F28D"; + } + + .mdi-foursquare:before { + content: "\F28E"; + } + + .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-gamepad:before { + content: "\F296"; + } + + .mdi-gamepad-variant:before { + content: "\F297"; + } + + .mdi-garage:before { + content: "\F6D8"; + } + + .mdi-garage-open:before { + content: "\F6D9"; + } + + .mdi-gas-cylinder:before { + content: "\F647"; + } + + .mdi-gas-station:before { + content: "\F298"; + } + + .mdi-gate:before { + content: "\F299"; + } + + .mdi-gauge:before { + content: "\F29A"; + } + + .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-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-flute:before { + content: "\F2A5"; + } + + .mdi-glass-mug:before { + content: "\F2A6"; + } + + .mdi-glass-stange:before { + content: "\F2A7"; + } + + .mdi-glass-tulip:before { + content: "\F2A8"; + } + + .mdi-glassdoor:before { + content: "\F2A9"; + } + + .mdi-glasses:before { + content: "\F2AA"; + } + + .mdi-gmail:before { + content: "\F2AB"; + } + + .mdi-gnome:before { + content: "\F2AC"; + } + + .mdi-gondola:before { + content: "\F685"; + } + + .mdi-google:before { + content: "\F2AD"; + } + + .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-glass:before { + content: "\F2B8"; + } + + .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-gradient:before { + content: "\F69F"; + } + + .mdi-grease-pencil:before { + content: "\F648"; + } + + .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-hackernews:before { + content: "\F624"; + } + + .mdi-hamburger:before { + content: "\F684"; + } + + .mdi-hand-pointing-right:before { + content: "\F2C7"; + } + + .mdi-hanger:before { + content: "\F2C8"; + } + + .mdi-hangouts:before { + content: "\F2C9"; + } + + .mdi-harddisk:before { + content: "\F2CA"; + } + + .mdi-headphones:before { + content: "\F2CB"; + } + + .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-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-highway:before { + content: "\F5F7"; + } + + .mdi-history:before { + content: "\F2DA"; + } + + .mdi-hololens:before { + content: "\F2DB"; + } + + .mdi-home:before { + content: "\F2DC"; + } + + .mdi-home-assistant:before { + content: "\F7CF"; + } + + .mdi-home-automation:before { + content: "\F7D0"; + } + + .mdi-home-circle:before { + content: "\F7D1"; + } + + .mdi-home-map-marker:before { + content: "\F5F8"; + } + + .mdi-home-modern:before { + content: "\F2DD"; + } + + .mdi-home-outline:before { + content: "\F6A0"; + } + + .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-hotel:before { + content: "\F2E3"; + } + + .mdi-houzz:before { + content: "\F2E4"; + } + + .mdi-houzz-box:before { + content: "\F2E5"; + } + + .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-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-import:before { + content: "\F2FA"; + } + + .mdi-inbox:before { + content: "\F686"; + } + + .mdi-inbox-arrow-down:before { + content: "\F2FB"; + } + + .mdi-inbox-arrow-up:before { + content: "\F3D1"; + } + + .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-itunes:before { + content: "\F676"; + } + + .mdi-jeepney:before { + content: "\F302"; + } + + .mdi-jira:before { + content: "\F303"; + } + + .mdi-jsfiddle:before { + content: "\F304"; + } + + .mdi-json:before { + content: "\F626"; + } + + .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-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-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-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-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-library:before { + content: "\F331"; + } + + .mdi-library-books:before { + content: "\F332"; + } + + .mdi-library-music:before { + content: "\F333"; + } + + .mdi-library-plus:before { + content: "\F334"; + } + + .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-loading:before { + content: "\F771"; + } + + .mdi-lock:before { + content: "\F33E"; + } + + .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-reset:before { + content: "\F772"; + } + + .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-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-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-margin:before { + content: "\F353"; + } + + .mdi-markdown:before { + content: "\F354"; + } + + .mdi-marker:before { + content: "\F652"; + } + + .mdi-marker-check:before { + content: "\F355"; + } + + .mdi-martini:before { + content: "\F356"; + } + + .mdi-material-ui:before { + content: "\F357"; + } + + .mdi-math-compass:before { + content: "\F358"; + } + + .mdi-matrix:before { + content: "\F628"; + } + + .mdi-maxcdn:before { + content: "\F359"; + } + + .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-off:before { + content: "\F36D"; + } + + .mdi-microphone-outline:before { + content: "\F36E"; + } + + .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-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-mixer:before { + content: "\F7DC"; + } + + .mdi-monitor:before { + content: "\F379"; + } + + .mdi-monitor-multiple:before { + content: "\F37A"; + } + + .mdi-more:before { + content: "\F37B"; + } + + .mdi-motorbike:before { + content: "\F37C"; + } + + .mdi-mouse:before { + content: "\F37D"; + } + + .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-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-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-nest-protect:before { + content: "\F392"; + } + + .mdi-nest-thermostat:before { + content: "\F393"; + } + + .mdi-netflix:before { + content: "\F745"; + } + + .mdi-network:before { + content: "\F6F2"; + } + + .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-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-notification-clear-all:before { + content: "\F39F"; + } + + .mdi-npm:before { + content: "\F6F6"; + } + + .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-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-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-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-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-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-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-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-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-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-pistol:before { + content: "\F702"; + } + + .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-pause:before { + content: "\F40E"; + } + + .mdi-play-protected-content:before { + content: "\F40F"; + } + + .mdi-playlist-check:before { + content: "\F5C7"; + } + + .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-network:before { + content: "\F41A"; + } + + .mdi-plus-one:before { + content: "\F41B"; + } + + .mdi-plus-outline:before { + content: "\F704"; + } + + .mdi-pocket:before { + content: "\F41C"; + } + + .mdi-pokeball:before { + content: "\F41D"; + } + + .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-plug:before { + content: "\F6A4"; + } + + .mdi-power-plug-off:before { + content: "\F6A5"; + } + + .mdi-power-settings:before { + content: "\F426"; + } + + .mdi-power-socket:before { + content: "\F427"; + } + + .mdi-power-socket-eu:before { + content: "\F7E6"; + } + + .mdi-power-socket-uk:before { + content: "\F7E7"; + } + + .mdi-power-socket-us:before { + content: "\F7E8"; + } + + .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-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-qqchat:before { + content: "\F605"; + } + + .mdi-qrcode:before { + content: "\F432"; + } + + .mdi-qrcode-scan:before { + content: "\F433"; + } + + .mdi-quadcopter:before { + content: "\F434"; + } + + .mdi-quality-high:before { + content: "\F435"; + } + + .mdi-quicktime:before { + content: "\F436"; + } + + .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-rdio:before { + content: "\F446"; + } + + .mdi-react:before { + content: "\F707"; + } + + .mdi-read:before { + content: "\F447"; + } + + .mdi-readability:before { + content: "\F448"; + } + + .mdi-receipt:before { + content: "\F449"; + } + + .mdi-record:before { + content: "\F44A"; + } + + .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-remote:before { + content: "\F454"; + } + + .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: "\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-rocket:before { + content: "\F463"; + } + + .mdi-roomba:before { + content: "\F70C"; + } + + .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-sass:before { + content: "\F7EB"; + } + + .mdi-satellite:before { + content: "\F470"; + } + + .mdi-satellite-variant:before { + content: "\F471"; + } + + .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-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-home:before { + content: "\F689"; + } + + .mdi-security-network:before { + content: "\F484"; + } + + .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-settings:before { + content: "\F493"; + } + + .mdi-settings-box:before { + content: "\F494"; + } + + .mdi-shape-circle-plus:before { + content: "\F65D"; + } + + .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-variant:before { + content: "\F497"; + } + + .mdi-shield:before { + content: "\F498"; + } + + .mdi-shield-half-full:before { + content: "\F77F"; + } + + .mdi-shield-outline:before { + content: "\F499"; + } + + .mdi-shopping:before { + content: "\F49A"; + } + + .mdi-shopping-music:before { + content: "\F49B"; + } + + .mdi-shovel:before { + content: "\F70F"; + } + + .mdi-shovel-off:before { + content: "\F710"; + } + + .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-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-sleep:before { + content: "\F4B2"; + } + + .mdi-sleep-off:before { + content: "\F4B3"; + } + + .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-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-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-inc:before { + content: "\F4CA"; + } + + .mdi-square-inc-cash:before { + content: "\F4CB"; + } + + .mdi-square-outline:before { + content: "\F762"; + } + + .mdi-square-root:before { + content: "\F783"; + } + + .mdi-stackexchange:before { + content: "\F60B"; + } + + .mdi-stackoverflow: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-half:before { + content: "\F4D0"; + } + + .mdi-star-off:before { + content: "\F4D1"; + } + + .mdi-star-outline:before { + content: "\F4D2"; + } + + .mdi-steam:before { + content: "\F4D3"; + } + + .mdi-steering:before { + content: "\F4D4"; + } + + .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-vertical:before { + content: "\F4E2"; + } + + .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-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-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-tablet:before { + content: "\F4F6"; + } + + .mdi-tablet-android:before { + content: "\F4F7"; + } + + .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-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-teamviewer:before { + content: "\F500"; + } + + .mdi-telegram:before { + content: "\F501"; + } + + .mdi-television:before { + content: "\F502"; + } + + .mdi-television-classic:before { + content: "\F7F3"; + } + + .mdi-television-guide:before { + content: "\F503"; + } + + .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-text-shadow:before { + content: "\F669"; + } + + .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-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-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-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: "\F529"; + } + + .mdi-tor:before { + content: "\F52A"; + } + + .mdi-tower-beach:before { + content: "\F680"; + } + + .mdi-tower-fire:before { + content: "\F681"; + } + + .mdi-trackpad:before { + content: "\F7F7"; + } + + .mdi-traffic-light:before { + content: "\F52B"; + } + + .mdi-train:before { + content: "\F52C"; + } + + .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-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-tumblr:before { + content: "\F541"; + } + + .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-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-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-untappd:before { + content: "\F551"; + } + + .mdi-update:before { + content: "\F6AF"; + } + + .mdi-upload:before { + content: "\F552"; + } + + .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-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-verified:before { + content: "\F565"; + } + + .mdi-vibrate:before { + content: "\F566"; + } + + .mdi-video:before { + content: "\F567"; + } + + .mdi-video-3d:before { + content: "\F7FC"; + } + + .mdi-video-off:before { + content: "\F568"; + } + + .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-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-vine:before { + content: "\F578"; + } + + .mdi-violin:before { + content: "\F60F"; + } + + .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-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-walk:before { + content: "\F583"; + } + + .mdi-wall:before { + content: "\F7FD"; + } + + .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-import:before { + content: "\F58B"; + } + + .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-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-whatsapp:before { + content: "\F5A3"; + } + + .mdi-wheelchair-accessibility:before { + content: "\F5A4"; + } + + .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-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-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-play:before { + content: "\F5C3"; + } + + .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 { + + } + + .mdi-rotate-45:before { + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + } + + .mdi-rotate-90 { + + } + + .mdi-rotate-90:before { + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); + } + + .mdi-rotate-135 { + + } + + .mdi-rotate-135:before { + -webkit-transform: rotate(135deg); + -ms-transform: rotate(135deg); + transform: rotate(135deg); + } + + .mdi-rotate-180 { + + } + + .mdi-rotate-180:before { + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); + } + + .mdi-rotate-225 { + + } + + .mdi-rotate-225:before { + -webkit-transform: rotate(225deg); + -ms-transform: rotate(225deg); + transform: rotate(225deg); + } + + .mdi-rotate-270 { + + } + + .mdi-rotate-270:before { + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); + } + + .mdi-rotate-315 { + + } + + .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); + } + } + + @font-face { + font-family: "dripicons-v2"; + src: url("../fonts/dripicons-v2.eot"); + src: url("../fonts/dripicons-v2.eot?#iefix") format("embedded-opentype"), url("../fonts/dripicons-v2.woff") format("woff"), url("../fonts/dripicons-v2.ttf") format("truetype"), url("../fonts/dripicons-v2.svg#dripicons-v2") format("svg"); + font-weight: normal; + font-style: normal; + } + + [data-icon]:before { + font-family: "dripicons-v2" !important; + content: attr(data-icon); + font-style: normal !important; + font-weight: normal !important; + font-variant: normal !important; + text-transform: none !important; + speak: none; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + [class^="dripicons-"]:before, + [class*=" dripicons-"]:before { + font-family: "dripicons-v2" !important; + font-style: normal !important; + font-weight: normal !important; + font-variant: normal !important; + text-transform: none !important; + speak: none; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .dripicons-alarm:before { + content: "\61"; + } + + .dripicons-align-center:before { + content: "\62"; + } + + .dripicons-align-justify:before { + content: "\63"; + } + + .dripicons-align-left:before { + content: "\64"; + } + + .dripicons-align-right:before { + content: "\65"; + } + + .dripicons-anchor:before { + content: "\66"; + } + + .dripicons-archive:before { + content: "\67"; + } + + .dripicons-arrow-down:before { + content: "\68"; + } + + .dripicons-arrow-left:before { + content: "\69"; + } + + .dripicons-arrow-right:before { + content: "\6a"; + } + + .dripicons-arrow-thin-down:before { + content: "\6b"; + } + + .dripicons-arrow-thin-left:before { + content: "\6c"; + } + + .dripicons-arrow-thin-right:before { + content: "\6d"; + } + + .dripicons-arrow-thin-up:before { + content: "\6e"; + } + + .dripicons-arrow-up:before { + content: "\6f"; + } + + .dripicons-article:before { + content: "\70"; + } + + .dripicons-backspace:before { + content: "\71"; + } + + .dripicons-basket:before { + content: "\72"; + } + + .dripicons-basketball:before { + content: "\73"; + } + + .dripicons-battery-empty:before { + content: "\74"; + } + + .dripicons-battery-full:before { + content: "\75"; + } + + .dripicons-battery-low:before { + content: "\76"; + } + + .dripicons-battery-medium:before { + content: "\77"; + } + + .dripicons-bell:before { + content: "\78"; + } + + .dripicons-blog:before { + content: "\79"; + } + + .dripicons-bluetooth:before { + content: "\7a"; + } + + .dripicons-bold:before { + content: "\41"; + } + + .dripicons-bookmark:before { + content: "\42"; + } + + .dripicons-bookmarks:before { + content: "\43"; + } + + .dripicons-box:before { + content: "\44"; + } + + .dripicons-briefcase:before { + content: "\45"; + } + + .dripicons-brightness-low:before { + content: "\46"; + } + + .dripicons-brightness-max:before { + content: "\47"; + } + + .dripicons-brightness-medium:before { + content: "\48"; + } + + .dripicons-broadcast:before { + content: "\49"; + } + + .dripicons-browser:before { + content: "\4a"; + } + + .dripicons-browser-upload:before { + content: "\4b"; + } + + .dripicons-brush:before { + content: "\4c"; + } + + .dripicons-calendar:before { + content: "\4d"; + } + + .dripicons-camcorder:before { + content: "\4e"; + } + + .dripicons-camera:before { + content: "\4f"; + } + + .dripicons-card:before { + content: "\50"; + } + + .dripicons-cart:before { + content: "\51"; + } + + .dripicons-checklist:before { + content: "\52"; + } + + .dripicons-checkmark:before { + content: "\53"; + } + + .dripicons-chevron-down:before { + content: "\54"; + } + + .dripicons-chevron-left:before { + content: "\55"; + } + + .dripicons-chevron-right:before { + content: "\56"; + } + + .dripicons-chevron-up:before { + content: "\57"; + } + + .dripicons-clipboard:before { + content: "\58"; + } + + .dripicons-clock:before { + content: "\59"; + } + + .dripicons-clockwise:before { + content: "\5a"; + } + + .dripicons-cloud:before { + content: "\30"; + } + + .dripicons-cloud-download:before { + content: "\31"; + } + + .dripicons-cloud-upload:before { + content: "\32"; + } + + .dripicons-code:before { + content: "\33"; + } + + .dripicons-contract:before { + content: "\34"; + } + + .dripicons-contract-2:before { + content: "\35"; + } + + .dripicons-conversation:before { + content: "\36"; + } + + .dripicons-copy:before { + content: "\37"; + } + + .dripicons-crop:before { + content: "\38"; + } + + .dripicons-cross:before { + content: "\39"; + } + + .dripicons-crosshair:before { + content: "\21"; + } + + .dripicons-cutlery:before { + content: "\22"; + } + + .dripicons-device-desktop:before { + content: "\23"; + } + + .dripicons-device-mobile:before { + content: "\24"; + } + + .dripicons-device-tablet:before { + content: "\25"; + } + + .dripicons-direction:before { + content: "\26"; + } + + .dripicons-disc:before { + content: "\27"; + } + + .dripicons-document:before { + content: "\28"; + } + + .dripicons-document-delete:before { + content: "\29"; + } + + .dripicons-document-edit:before { + content: "\2a"; + } + + .dripicons-document-new:before { + content: "\2b"; + } + + .dripicons-document-remove:before { + content: "\2c"; + } + + .dripicons-dot:before { + content: "\2d"; + } + + .dripicons-dots-2:before { + content: "\2e"; + } + + .dripicons-dots-3:before { + content: "\2f"; + } + + .dripicons-download:before { + content: "\3a"; + } + + .dripicons-duplicate:before { + content: "\3b"; + } + + .dripicons-enter:before { + content: "\3c"; + } + + .dripicons-exit:before { + content: "\3d"; + } + + .dripicons-expand:before { + content: "\3e"; + } + + .dripicons-expand-2:before { + content: "\3f"; + } + + .dripicons-experiment:before { + content: "\40"; + } + + .dripicons-export:before { + content: "\5b"; + } + + .dripicons-feed:before { + content: "\5d"; + } + + .dripicons-flag:before { + content: "\5e"; + } + + .dripicons-flashlight:before { + content: "\5f"; + } + + .dripicons-folder:before { + content: "\60"; + } + + .dripicons-folder-open:before { + content: "\7b"; + } + + .dripicons-forward:before { + content: "\7c"; + } + + .dripicons-gaming:before { + content: "\7d"; + } + + .dripicons-gear:before { + content: "\7e"; + } + + .dripicons-graduation:before { + content: "\5c"; + } + + .dripicons-graph-bar:before { + content: "\e000"; + } + + .dripicons-graph-line:before { + content: "\e001"; + } + + .dripicons-graph-pie:before { + content: "\e002"; + } + + .dripicons-headset:before { + content: "\e003"; + } + + .dripicons-heart:before { + content: "\e004"; + } + + .dripicons-help:before { + content: "\e005"; + } + + .dripicons-home:before { + content: "\e006"; + } + + .dripicons-hourglass:before { + content: "\e007"; + } + + .dripicons-inbox:before { + content: "\e008"; + } + + .dripicons-information:before { + content: "\e009"; + } + + .dripicons-italic:before { + content: "\e00a"; + } + + .dripicons-jewel:before { + content: "\e00b"; + } + + .dripicons-lifting:before { + content: "\e00c"; + } + + .dripicons-lightbulb:before { + content: "\e00d"; + } + + .dripicons-link:before { + content: "\e00e"; + } + + .dripicons-link-broken:before { + content: "\e00f"; + } + + .dripicons-list:before { + content: "\e010"; + } + + .dripicons-loading:before { + content: "\e011"; + } + + .dripicons-location:before { + content: "\e012"; + } + + .dripicons-lock:before { + content: "\e013"; + } + + .dripicons-lock-open:before { + content: "\e014"; + } + + .dripicons-mail:before { + content: "\e015"; + } + + .dripicons-map:before { + content: "\e016"; + } + + .dripicons-media-loop:before { + content: "\e017"; + } + + .dripicons-media-next:before { + content: "\e018"; + } + + .dripicons-media-pause:before { + content: "\e019"; + } + + .dripicons-media-play:before { + content: "\e01a"; + } + + .dripicons-media-previous:before { + content: "\e01b"; + } + + .dripicons-media-record:before { + content: "\e01c"; + } + + .dripicons-media-shuffle:before { + content: "\e01d"; + } + + .dripicons-media-stop:before { + content: "\e01e"; + } + + .dripicons-medical:before { + content: "\e01f"; + } + + .dripicons-menu:before { + content: "\e020"; + } + + .dripicons-message:before { + content: "\e021"; + } + + .dripicons-meter:before { + content: "\e022"; + } + + .dripicons-microphone:before { + content: "\e023"; + } + + .dripicons-minus:before { + content: "\e024"; + } + + .dripicons-monitor:before { + content: "\e025"; + } + + .dripicons-move:before { + content: "\e026"; + } + + .dripicons-music:before { + content: "\e027"; + } + + .dripicons-network-1:before { + content: "\e028"; + } + + .dripicons-network-2:before { + content: "\e029"; + } + + .dripicons-network-3:before { + content: "\e02a"; + } + + .dripicons-network-4:before { + content: "\e02b"; + } + + .dripicons-network-5:before { + content: "\e02c"; + } + + .dripicons-pamphlet:before { + content: "\e02d"; + } + + .dripicons-paperclip:before { + content: "\e02e"; + } + + .dripicons-pencil:before { + content: "\e02f"; + } + + .dripicons-phone:before { + content: "\e030"; + } + + .dripicons-photo:before { + content: "\e031"; + } + + .dripicons-photo-group:before { + content: "\e032"; + } + + .dripicons-pill:before { + content: "\e033"; + } + + .dripicons-pin:before { + content: "\e034"; + } + + .dripicons-plus:before { + content: "\e035"; + } + + .dripicons-power:before { + content: "\e036"; + } + + .dripicons-preview:before { + content: "\e037"; + } + + .dripicons-print:before { + content: "\e038"; + } + + .dripicons-pulse:before { + content: "\e039"; + } + + .dripicons-question:before { + content: "\e03a"; + } + + .dripicons-reply:before { + content: "\e03b"; + } + + .dripicons-reply-all:before { + content: "\e03c"; + } + + .dripicons-return:before { + content: "\e03d"; + } + + .dripicons-retweet:before { + content: "\e03e"; + } + + .dripicons-rocket:before { + content: "\e03f"; + } + + .dripicons-scale:before { + content: "\e040"; + } + + .dripicons-search:before { + content: "\e041"; + } + + .dripicons-shopping-bag:before { + content: "\e042"; + } + + .dripicons-skip:before { + content: "\e043"; + } + + .dripicons-stack:before { + content: "\e044"; + } + + .dripicons-star:before { + content: "\e045"; + } + + .dripicons-stopwatch:before { + content: "\e046"; + } + + .dripicons-store:before { + content: "\e047"; + } + + .dripicons-suitcase:before { + content: "\e048"; + } + + .dripicons-swap:before { + content: "\e049"; + } + + .dripicons-tag:before { + content: "\e04a"; + } + + .dripicons-tag-delete:before { + content: "\e04b"; + } + + .dripicons-tags:before { + content: "\e04c"; + } + + .dripicons-thumbs-down:before { + content: "\e04d"; + } + + .dripicons-thumbs-up:before { + content: "\e04e"; + } + + .dripicons-ticket:before { + content: "\e04f"; + } + + .dripicons-time-reverse:before { + content: "\e050"; + } + + .dripicons-to-do:before { + content: "\e051"; + } + + .dripicons-toggles:before { + content: "\e052"; + } + + .dripicons-trash:before { + content: "\e053"; + } + + .dripicons-trophy:before { + content: "\e054"; + } + + .dripicons-upload:before { + content: "\e055"; + } + + .dripicons-user:before { + content: "\e056"; + } + + .dripicons-user-group:before { + content: "\e057"; + } + + .dripicons-user-id:before { + content: "\e058"; + } + + .dripicons-vibrate:before { + content: "\e059"; + } + + .dripicons-view-apps:before { + content: "\e05a"; + } + + .dripicons-view-list:before { + content: "\e05b"; + } + + .dripicons-view-list-large:before { + content: "\e05c"; + } + + .dripicons-view-thumb:before { + content: "\e05d"; + } + + .dripicons-volume-full:before { + content: "\e05e"; + } + + .dripicons-volume-low:before { + content: "\e05f"; + } + + .dripicons-volume-medium:before { + content: "\e060"; + } + + .dripicons-volume-off:before { + content: "\e061"; + } + + .dripicons-wallet:before { + content: "\e062"; + } + + .dripicons-warning:before { + content: "\e063"; + } + + .dripicons-web:before { + content: "\e064"; + } + + .dripicons-weight:before { + content: "\e065"; + } + + .dripicons-wifi:before { + content: "\e066"; + } + + .dripicons-wrong:before { + content: "\e067"; + } + + .dripicons-zoom-in:before { + content: "\e068"; + } + + .dripicons-zoom-out:before { + content: "\e069"; + } diff --git a/static/css/main.css b/static/css/main.css new file mode 100644 index 0000000..aa809bb --- /dev/null +++ b/static/css/main.css @@ -0,0 +1 @@ +@import url(library.css);@import url(google.css);a:active,a:focus,a:hover{outline:0;text-decoration:none}a,a:active,a:focus,a:hover{text-decoration:none}#particles-js,.footer,.page{left:0;right:0;bottom:0}.header-title,.heading,body,h1,h2,h3,h4,h5,h6{font-family:Quicksand,sans-serif}#wrapper,.info-box-text{overflow:hidden}.icon-list-demo div,.info-box-text,.project-box h4,.user-list .user-list-item .user-desc span.desc,.user-list .user-list-item .user-desc span.name{text-overflow:ellipsis;white-space:nowrap}.equalize-child,.vertical-middle{vertical-align:middle}.img-thumbnail,.info-box-icon>img{max-width:100%}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}body{background:#eceef9;margin:0;font-weight:400;overflow-x:hidden;font-size:14px;padding-bottom:60px;color:#5e7cac}.page-title,b{font-weight:600}html{position:relative;min-height:100%}h1,h2,h3,h4,h5,h6{margin:10px 0}h1{line-height:43px;font-size:36px}h2{line-height:35px;font-size:30px}h3{line-height:30px;font-size:24px}h3 small,h4 small,h5 small{color:#444}h4{line-height:22px;font-size:18px}h5{font-size:15px}h6{font-size:12px}p{line-height:1.6}*{outline:0!important}a{color:#6c2bd4;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#9567e0}.product_price .old_price,.todo-item input:checked+label span{text-decoration:line-through}.display-5{font-size:3rem}.display-5 img{width:6rem;height:6rem}.center-box{margin:0 auto;float:none}.flex-grow{flex-grow:1}.zurb-contents{width:auto}.zurb-contents-alt{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.crpto{height:1rem;width:1rem}#particles-js,#wrapper{height:100%;width:100%}.footer{box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24);text-align:left!important;padding:20px 0;background-color:#fff;position:absolute}#particles-js{position:absolute;top:0}.relative{position:relative!important}.zindex1{z-index:1!important}.zindex2{z-index:2!important}.hidden{display:none!important}.widgetb{background-image:url(../images/big/weather.jpg);background-size:cover}.page{top:0}.display-table{display:table!important}.equalize-child{display:table-cell;float:none}.icon{width:3rem;height:3rem}.icon i,.icon svg{font-size:2.25rem}.icon+.icon-text{width:calc(100% - $icon-size - 1);padding-left:1rem}.icon-xl{width:5rem;height:5rem}.icon-xl i,.icon-xl svg{font-size:4.25rem}.icon-xl+.icon-text{width:calc(100% - $icon-size-xl - 1)}.icon-lg{width:4rem;height:4rem}.icon-lg i,.icon-lg svg{font-size:3.25rem}.icon-shape i,.icon-shape svg,.icon-sm i,.icon-sm svg{font-size:1.25rem}.icon-lg+.icon-text{width:calc(100% - $icon-size-lg - 1)}.icon-sm{width:2rem;height:2rem}.icon-sm+.icon-text{width:calc(100% - $icon-size-sm - 1)}.icon-shape{display:inline-flex;padding:12px;text-align:center;border-radius:50%;align-items:center;justify-content:center}.info-box,.info-box-icon,.info-box-more,.info-box-text{display:block}.icon-shape.icon-lg i,.icon-shape.icon-lg svg{font-size:1.625rem}.icon-shape.icon-sm i,.icon-shape.icon-sm svg{font-size:.875rem}.icon-shape svg{width:30px;height:30px}.icon-shape-primary{color:#2643e9;background-color:rgba(138,152,235,.5)}.icon-shape-secondary{color:#d3d9e5;background-color:rgba(255,255,255,.5)}.icon-shape-success{color:#1aae6f;background-color:rgba(84,218,161,.5)}.icon-shape-info{color:#03acca;background-color:rgba(65,215,242,.5)}.icon-shape-warning{color:#ff3709;background-color:rgba(252,140,114,.5)}.icon-shape-danger{color:#f80031;background-color:rgba(247,103,131,.5)}.icon-shape-light{color:#879cb0;background-color:rgba(201,207,212,.5)}.icon-shape-dark{color:#090c0e;background-color:rgba(56,63,69,.5)}.icon-shape-default{color:#091428;background-color:rgba(35,65,116,.5)}.icon-shape-neutral,.icon-shape-white{color:#e8e3e3;background-color:rgba(255,255,255,.5)}.icon-shape-darker{color:#000;background-color:rgba(26,26,26,.5)}a.bg-purple:focus,a.bg-purple:hover,button.bg-purple:focus,button.bg-purple:hover{background-color:#683bd7!important}a.bg-pink:focus,a.bg-pink:hover,button.bg-pink:focus,button.bg-pink:hover{background-color:#ed7790!important}.bg-red{background-color:#f5365c!important}a.bg-red:focus,a.bg-red:hover,button.bg-red:focus,button.bg-red:hover{background-color:#ec0c38!important}.bg-orange{background-color:#fb6340!important}a.bg-orange:focus,a.bg-orange:hover,button.bg-orange:focus,button.bg-orange:hover{background-color:#fa3a0e!important}.bg-yellow{background-color:#ffd600!important}a.bg-yellow:focus,a.bg-yellow:hover,button.bg-yellow:focus,button.bg-yellow:hover{background-color:#ccab00!important}.bg-green{background-color:#2dce89!important}a.bg-green:focus,a.bg-green:hover,button.bg-green:focus,button.bg-green:hover{background-color:#24a46d!important}.bg-teal{background-color:#11cdef!important}a.bg-teal:focus,a.bg-teal:hover,button.bg-teal:focus,button.bg-teal:hover{background-color:#0da5c0!important}.bg-cyan{background-color:#2bffc6!important}a.bg-cyan:focus,a.bg-cyan:hover,button.bg-cyan:focus,button.bg-cyan:hover{background-color:#00f7b5!important}a.bg-white:focus,a.bg-white:hover,button.bg-white:focus,button.bg-white:hover{background-color:#e6e6e6!important}.bg-gray{background-color:#8898aa!important}a.bg-gray:focus,a.bg-gray:hover,button.bg-gray:focus,button.bg-gray:hover{background-color:#6a7e95!important}.bg-gray-dark{background-color:#32325d!important}a.bg-gray-dark:focus,a.bg-gray-dark:hover,button.bg-gray-dark:focus,button.bg-gray-dark:hover{background-color:#20203c!important}.bg-light{background-color:#ced4da!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#b1bbc4!important}.bg-lighter{background-color:#e9ecef!important}a.bg-lighter:focus,a.bg-lighter:hover,button.bg-lighter:focus,button.bg-lighter:hover{background-color:#cbd3da!important}.bg-gradient-primary{background:linear-gradient(87deg,#5e72e4 0,#825ee4 100%)!important}.bg-gradient-secondary{background:linear-gradient(87deg,#f4f5f7 0,#f4f4f7 100%)!important}.bg-gradient-success{background:linear-gradient(87deg,#2dce89 0,#2dcecc 100%)!important}.bg-gradient-info{background:linear-gradient(87deg,#11cdef 0,#1171ef 100%)!important}.bg-gradient-warning{background:linear-gradient(87deg,#fb6340 0,#fbb140 100%)!important}.bg-gradient-danger{background:linear-gradient(87deg,#f5365c 0,#f56036 100%)!important}.bg-gradient-dark{background:linear-gradient(87deg,#212529 0,#212229 100%)!important}.bg-gradient-default{background:linear-gradient(87deg,#172b4d 0,#1a174d 100%)!important}.bg-gradient-neutral{background:linear-gradient(87deg,#fff 0,#fff 100%)!important}.bg-gradient-darker{background:linear-gradient(87deg,#000 0,#000 100%)!important}.bg-gradient-blue{background:linear-gradient(87deg,#5e72e4 0,#825ee4 100%)!important}.bg-gradient-indigo{background:linear-gradient(87deg,#5603ad 0,#9d03ad 100%)!important}.bg-gradient-purple{background:linear-gradient(87deg,#8965e0 0,#bc65e0 100%)!important}.bg-gradient-pink{background:linear-gradient(87deg,#f3a4b5 0,#f3b4a4 100%)!important}.bg-gradient-red{background:linear-gradient(87deg,#f5365c 0,#f56036 100%)!important}.bg-gradient-orange{background:linear-gradient(87deg,#fb6340 0,#fbb140 100%)!important}.bg-gradient-yellow{background:linear-gradient(87deg,#ffd600 0,#beff00 100%)!important}.bg-gradient-green{background:linear-gradient(87deg,#2dce89 0,#2dcecc 100%)!important}.bg-gradient-teal{background:linear-gradient(87deg,#11cdef 0,#1171ef 100%)!important}.bg-gradient-cyan{background:linear-gradient(87deg,#2bffc6 0,#2be0ff 100%)!important}.bg-gradient-white{background:linear-gradient(87deg,#fff 0,#fff 100%)!important}.bg-gradient-gray{background:linear-gradient(87deg,#8898aa 0,#888aaa 100%)!important}.bg-gradient-gray-dark{background:linear-gradient(87deg,#32325d 0,#44325d 100%)!important}.bg-gradient-light{background:linear-gradient(87deg,#ced4da 0,#cecfda 100%)!important}.bg-gradient-lighter{background:linear-gradient(87deg,#e9ecef 0,#e9eaef 100%)!important}.section-primary{background-color:#fff!important}.page-title{font-size:20px;margin-bottom:0;margin-top:0;line-height:70px}.header-title,.heading{font-size:16px;font-weight:600;line-height:16px;margin-bottom:8px;margin-top:0}.display-1,.display-2,.display-3,.display-4{font-weight:300;line-height:1.2}.display-1{font-size:3rem}.display-2{font-size:2.5rem}.display-3{font-size:2.1rem}.display-4{font-size:1.9rem}.desc-list li{border-bottom:1px solid #ccc}.br{border-radius:5px 5px 0 0}.info-box{min-height:90px;background:#fff;width:100%;margin-bottom:15px;box-shadow:0 0 8px 0 rgba(0,0,0,.06),0 1px 0 0 rgba(0,0,0,.02)}.user-status{position:absolute;right:15px;top:0}.info-box small{font-size:14px}.info-box-icon{float:left;height:90px;width:90px;text-align:center;font-size:45px;line-height:90px;background:rgba(0,0,0,.2)}.info-box-content{padding:20px 30px;margin-left:90px}.info-box-number{display:block;font-weight:700;font-size:18px}.font-600,.footer-menu h6{font-weight:600}.info-box-text{font-size:14px;text-transform:uppercase}.desc-list li:hover{background:#f8f9fa}.todo-list{margin-top:2px}.todo-item+.todo-item{margin-top:8px}.todo-item .checkbox{margin-bottom:0}.task-thumb-details{display:inline-block;margin-left:25px}.task-progress p,.task-thumb-details p{padding-top:5px;color:#a4aaba}.accor h5 a{padding:.75rem 1.25rem;display:block;background:#f7f9fc}.ds,a.top{display:none}.data-cercle{position:relative}.data-cercle input{font-size:34px!important;position:absolute!important;right:0;top:0;width:100%!important}.loader,.spinner{position:fixed;left:0}.border{border:1px solid #e0e8f5!important}.spinner{background-color:#fff;z-index:50000;height:100%;width:100%;top:0}.loader{margin:0 auto;width:50px;height:50px;top:45%;right:0;bottom:0}.loader .bounce{width:100%;height:100%;border-radius:50%;background-color:#6c2bd4;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-doubleBounce 2s infinite ease-in-out;animation:sk-doubleBounce 2s infinite ease-in-out}.loader .loader1{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes sk-doubleBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-doubleBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}#goTop{position:fixed;bottom:29px;float:right;right:20px;opacity:0;transition:opacity .2s ease-out}#goTop.show{opacity:1}#goTop i,a.top{color:#fff;width:2.65em;height:2.65em;position:fixed;bottom:1.65em;opacity:.8;z-index:999;line-height:2.65em;text-align:center}#goTop i{background:#9567e0;font-size:12px;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;right:.65em}a.top{-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;border-radius:50%;right:1.65em}a.top i{margin:0;color:#b20169}a.top1:focus,a.top:hover{opacity:1}.spacer10{height:10px}.spacer20{height:20px}.spacer30{height:30px}.spacer40{height:40px}.spacer50{height:50px}.p-20{padding:20px!important}.p-15{padding:15px!important}.b-b0{border-bottom:0!important}.b-t0{border-top:0!important}.p-l-0{padding-left:0!important}.p-30{padding:30px!important}.p-130{padding:130px}.p-t-10{padding-top:10px!important}.p-t-0{padding-top:0!important}.p-b-0{padding-bottom:0!important}.p-b-10{padding-bottom:10px!important}.p-l-15{padding-left:15px!important}.p-r-15{padding-right:15px!important}.p-0{padding:0!important}.p-l-r-10{padding-left:10px;padding-right:10px}.m-r-5{margin-right:5px!important}.m-r-10{margin-right:10px!important}.m-r-15{margin-right:15px!important}.m-l-5{margin-left:5px!important}.m-l-10{margin-left:10px!important}.mb-0{margin-bottom:0!important}.m-l-15{margin-left:15px!important}.m-t-0{margin-top:0!important}.m-t-5{margin-top:5px!important}.m-t-10{margin-top:10px!important}.m-t-15{margin-top:15px!important}.m-t-20{margin-top:20px!important}.m-t-30{margin-top:30px!important}.m-t-40{margin-top:40px!important}.m-t-50{margin-top:50px!important}.m-t-80{margin-top:80px!important}.m-b-5{margin-bottom:5px!important}.m-b-0{margin-bottom:0!important}.m-b-10{margin-bottom:10px!important}.m-b-15{margin-bottom:15px!important}.m-b-20{margin-bottom:20px!important}.m-b-25{margin-bottom:25px!important}.m-b-50{margin-bottom:50px!important}.m-b-40{margin-bottom:40px!important}.m-b-30{margin-bottom:30px!important}.w-20{width:20%!important}.w-25{width:25%}.w-55{width:55%}.w-66{width:66%!important}.w-85{width:85%}.w-50{width:50%!important}.w-40{width:40%!important}.w-100{width:100%!important}.w-70px{width:70px!important}.w-75{width:75%!important}.w-22{width:22%!important}.w-56{width:56%!important}.w-78{width:78%!important}.w-33{width:33%}.w-12{width:12%}.wauto{width:auto!important}.mh{height:319px}.mh-300{height:300px}.w-xs{min-width:80px}.w-sm{min-width:95px}.w-md{min-width:110px}.w-lg{min-width:140px}.m-h-40{min-height:40px}.h-30{height:30px!important}.m-h-50{min-height:50px}.ht-250{height:300px}.pos-relative{position:relative}.l-h-34{line-height:34px}.font-bold{font-weight:700!important}.font-normal{font-weight:400}.font-light{font-weight:300}.font-13{font-size:13px!important}.font-18{font-size:18px!important}.font-14{font-size:14px!important}.wrapper-md{padding:20px}.pull-in{margin-left:-20px;margin-right:-20px}.b-0{border:none!important}.bx-shadow{-moz-box-shadow:0 1px 2px 0 rgba(0,0,0,.1);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.1);box-shadow:0 1px 2px 0 rgba(0,0,0,.1)}.bx-shadow-none{box-shadow:none!important}.jumbotron{margin-bottom:0;padding:1.7rem 2rem}.mx-box{max-height:380px;min-height:380px}#topnav1,#topnav2,#topnav3,#topnav4{min-height:60px;z-index:1}.thumb-sm{height:32px;width:32px}.media-img{height:64px;width:64px}.thumb-md{height:48px;width:48px}.thumb-lg{height:88px;width:88px}.thumb-xl{height:120px;width:120px}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid;border-radius:.25rem;height:auto}.profile-bg{left:0;top:0;width:100%;height:100%;background:url(../images/big/img4.jpg) 50%;background-size:cover}.add-new-plus{height:32px;text-align:center;width:32px;display:block;line-height:32px;color:#6481ae;font-weight:700;background-color:#ebeff2;border-radius:50%}#topnav1 .topbar-main .logo,#topnav2 .topbar-main .logo,#topnav3 .topbar-main .logo,#topnav4 .topbar-main .logo{line-height:58px;text-transform:uppercase;font-weight:700}#topnav1,#topnav2,#topnav2 .topbar-main,.fixed-header{background:#fff}.floating{animation:floating 3s ease infinite;will-change:transform}.floating:hover{animation-play-state:paused}.floating-lg{animation:floating-lg 3s ease infinite}.floating-sm{animation:floating-sm 3s ease infinite}@keyframes floating-lg{0%,100%{transform:translateY(0)}50%{transform:translateY(15px)}}@keyframes floating{0%,100%{transform:translateY(0)}50%{transform:translateY(10px)}}@keyframes floating-sm{0%,100%{transform:translateY(0)}50%{transform:translateY(5px)}}.floatfix:after,.floatfix:before{display:table;content:''}.floatfix:after{clear:both}.fixed-header{position:fixed;left:0;right:0;top:0;box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24);margin:0 auto}#topnav1{right:0;left:0;top:0;width:100%;border:0;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav1 .has-submenu.active .submenu li.active>a,#topnav1 .has-submenu.active a,#topnav1 .has-submenu.active a i{color:#212537}#topnav1 .topbar-main{background:#9567e0}#topnav1 .topbar-main .logo{color:#fff!important;font-size:20px;letter-spacing:1px;float:left}#topnav1 .topbar-main .logo-small{display:none}#topnav1 .topbar-main .badge-topbar{position:absolute;top:7px;right:7px;z-index:99}#topnav1 .topbar-main .nav>li>a{height:36px;width:36px;padding:0;font-size:24px;line-height:35px;text-align:center;border-radius:50%;margin:12px 8px;color:rgba(255,255,255,.7)}#topnav1 .topbar-main .dropdown-menu-lg .list-group,#topnav1 .topbar-main .dropdown-menu-lg .media-heading{margin-bottom:0}#topnav1 .topbar-main .nav>li>a:focus,#topnav1 .topbar-main .nav>li>a:hover{background-color:rgba(67,89,102,.1);color:#435966}#topnav1 .topbar-main .dropdown-menu-lg .list-group-item{border:none;padding:10px 20px}#topnav1 .topbar-main .dropdown-menu-lg .media-body p{color:#828282}#topnav1 .topbar-main .navbar-nav{margin:0}#topnav1 .topbar-main .topbar-right-menu li{float:left}#topnav1 .navbar-toggle{border:0;position:relative;padding:0;margin:0;cursor:pointer}#topnav1 .navbar-toggle:hover{background-color:transparent}#topnav1 .navbar-toggle:hover span{background-color:#fff}#topnav1 .navbar-toggle:focus{background-color:transparent}#topnav1 .navbar-toggle:focus span{background-color:#fff}#topnav1 .navbar-toggle .lines{width:25px;display:none;position:relative;margin:10px 10px 0 0;padding-top:13px;height:44px;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav1 .navbar-toggle span{height:2px;width:100%;background-color:rgba(255,255,255,.8);display:block;margin-bottom:5px;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease}#topnav1 .navbar-toggle.open span{position:absolute}#topnav1 .navbar-toggle.open span:first-child{top:18px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#topnav1 .navbar-toggle.open span:nth-child(2){visibility:hidden}#topnav1 .navbar-toggle.open span:last-child{width:100%;top:18px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#topnav1 .navigation-menu{list-style:none;margin:0;padding:0}#topnav1 .navigation-menu>li{display:inline-block;position:relative}#topnav1 .navigation-menu>li>a{display:block;color:#000;font-size:15px;-webkit-transition:all .5s ease;transition:all .5s ease;line-height:20px;padding-left:20px;padding-right:20px}#topnav1 .navigation-menu>li>a:active,#topnav1 .navigation-menu>li>a:focus,#topnav1 .navigation-menu>li>a:hover{color:#6c2bd4}#topnav1 .navigation-menu>li>a i{font-size:16px;margin-right:5px;-webkit-transition:all .5s ease;transition:all .5s ease;vertical-align:text-top;line-height:20px}#topnav1 .navigation-menu>li>a:focus,#topnav1 .navigation-menu>li>a:hover{background-color:transparent}@media (min-width:992px){#topnav1 .navigation-menu>li>a{padding-top:20px;padding-bottom:20px}#topnav1 .navigation-menu>li:first-of-type>a{padding-left:0}#topnav1 .navigation-menu>li.last-elements .submenu{left:auto;right:0}#topnav1 .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu{left:auto;right:100%;margin-left:0;margin-right:10px}#topnav1 .navigation-menu>li:hover a,#topnav1 .navigation-menu>li:hover a i,#topnav1 .navigation-menu>li>ul>li.has-submenu:active>a,#topnav1 .navigation-menu>li>ul>li.has-submenu:hover>a{color:#6c2bd4}#topnav1 .navigation-menu>li .submenu{position:absolute;top:100%;left:0;z-index:1000;border:1px solid #e7e7e7;padding:15px 0;list-style:none;min-width:200px;text-align:left;visibility:hidden;opacity:0;margin-top:10px;-webkit-transition:all .2s ease;transition:all .2s ease;background-color:#fff}#topnav1 .navigation-menu>li .submenu.megamenu{white-space:nowrap;width:auto}#topnav1 .navigation-menu>li .submenu.megamenu>li{overflow:hidden;width:200px;display:inline-block;vertical-align:top}#topnav1 .navigation-menu>li .submenu>li.has-submenu>a:after{content:"\F142";font-family:"Material Design Icons";position:absolute;right:20px;top:5px;font-size:18px}#topnav1 .navigation-menu>li .submenu>li .submenu{left:100%;top:0;margin-left:10px;margin-top:-1px}#topnav1 .navigation-menu>li .submenu li{position:relative}#topnav1 .navigation-menu>li .submenu li ul{list-style:none;padding-left:0;margin:0}#topnav1 .navigation-menu>li .submenu li a{display:block;padding:8px 25px;clear:both;white-space:nowrap;font-size:15px;color:#212537;-webkit-transition:all .35s ease;transition:all .35s ease}#topnav1 .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav1 .navigation-menu>li .submenu li span{display:block;padding:8px 25px;clear:both;line-height:1.42857143;white-space:nowrap;font-size:10px;text-transform:uppercase;letter-spacing:2px;color:#435966}#topnav1 .navbar-toggle{display:none}#topnav1 #navigation1{display:block!important}}@media (max-width:991px){.wrapper{padding-top:60px}.zurb-contents{width:auto!important}#topnav1 .navigation-menu{float:none;max-height:400px;text-align:left}#topnav1 .navigation-menu>li{display:block}#topnav1 .navigation-menu>li>a{color:#435966;padding:15px}#topnav1 .navigation-menu>li>a i{display:inline-block;margin-right:10px;margin-bottom:0;vertical-align:inherit}#topnav1 .navigation-menu>li>a:after{position:absolute;right:15px}#topnav1 .navigation-menu>li .submenu{display:none;list-style:none;padding-left:20px;margin:0}#topnav1 .navigation-menu>li .submenu li a{display:block;position:relative;padding:7px 20px;color:#1a1a1a}#topnav1 .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav1 .navigation-menu>li .submenu li.has-submenu>a:after{content:"\F140";font-family:"Material Design Icons";position:absolute;right:30px}#topnav1 .navigation-menu>li .submenu.open{display:block}#topnav1 .navigation-menu>li .submenu .submenu{display:none;list-style:none}#topnav1 .navigation-menu>li .submenu .submenu.open{display:block}#topnav1 .navigation-menu>li .submenu.megamenu>li>ul{list-style:none;padding-left:0}#topnav1 .navigation-menu>li .submenu.megamenu>li>ul>li>span{display:block;position:relative;padding:15px;text-transform:uppercase;font-size:11px;letter-spacing:2px;color:#435966}#topnav1 .has-submenu.active a,#topnav1 .has-submenu.active a i,#topnav1 .has-submenu.active a:active,#topnav1 .has-submenu.active a:focus,#topnav1 .navigation-menu>li.has-submenu.open>a{color:#6c2bd4}#topnav1 .navbar-header{float:left}#navigation1{position:absolute;top:62px;left:0;width:100%;display:none;height:auto;padding-bottom:0;overflow:auto;border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;background-color:#fff}#navigation1.open{display:block;overflow-y:auto}}@media (min-width:768px){#topnav1 .navigation-menu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-top:0}#topnav1 .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-left:0;margin-right:0}.navbar-toggle{display:block}}#topnav2{right:0;left:0;top:0;width:100%;border:0;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav2 .has-submenu.active a,#topnav2 .has-submenu.active a i{color:#fff}#topnav2 .has-submenu.active .submenu li.active>a{color:#6c2bd4}#topnav2 .topbar-main .logo{color:#fff!important;font-size:20px;letter-spacing:1px;float:left}#topnav2 .topbar-main .logo-small{display:none}#topnav2 .topbar-main .badge-topbar{position:absolute;top:7px;right:7px;z-index:99}#topnav2 .topbar-main .nav>li>a{height:36px;width:36px;padding:0;font-size:24px;line-height:35px;text-align:center;border-radius:50%;margin:12px 8px;color:rgba(255,255,255,.7)}#topnav2 .topbar-main .dropdown-menu-lg .list-group,#topnav2 .topbar-main .dropdown-menu-lg .media-heading{margin-bottom:0}#topnav2 .topbar-main .nav>li>a:focus,#topnav2 .topbar-main .nav>li>a:hover{background-color:rgba(67,89,102,.1);color:#435966}#topnav2 .topbar-main .dropdown-menu-lg .list-group-item{border:none;padding:10px 20px}#topnav2 .topbar-main .dropdown-menu-lg .media-body p{color:#828282}#topnav2 .topbar-main .navbar-nav{margin:0}#topnav2 .topbar-main .topbar-right-menu li{float:left}#topnav2 .navbar-toggle{border:0;position:relative;padding:0;margin:0;cursor:pointer}#topnav2 .navbar-toggle:hover{background-color:transparent}#topnav2 .navbar-toggle:hover span{background-color:#fff}#topnav2 .navbar-toggle:focus{background-color:transparent}#topnav2 .navbar-toggle:focus span{background-color:#fff}#topnav2 .navbar-toggle .lines{width:25px;display:none;position:relative;margin:10px 10px 0 0;padding-top:13px;height:44px;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav2 .navbar-toggle span{height:2px;width:100%;background-color:rgba(255,255,255,.8);display:block;margin-bottom:5px;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease}#topnav2 .navbar-toggle.open span{position:absolute}#topnav2 .navbar-toggle.open span:first-child{top:18px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#topnav2 .navbar-toggle.open span:nth-child(2){visibility:hidden}#topnav2 .navbar-toggle.open span:last-child{width:100%;top:18px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#topnav2 .navbar-custom{background:#9567e0}#topnav2 .notification-box a i{color:#000}#topnav2 .navigation-menu{list-style:none;margin:0;padding:0}#topnav2 .navigation-menu>li{display:inline-block;position:relative}#topnav2 .navigation-menu>li>a{display:block;color:#fff;font-size:15px;-webkit-transition:all .5s ease;transition:all .5s ease;line-height:20px;padding-left:20px;padding-right:20px}#topnav2 .navigation-menu>li>a:hover{color:#fff!important}#topnav2 .navigation-menu>li>a:active,#topnav2 .navigation-menu>li>a:focus{color:#fff}#topnav2 .navigation-menu>li>a i{font-size:16px;margin-right:5px;-webkit-transition:all .5s ease;transition:all .5s ease;vertical-align:text-top;line-height:20px}#topnav2 .navigation-menu>li>a:focus,#topnav2 .navigation-menu>li>a:hover{background-color:transparent;color:#fff}#topnav3,#topnav4,#topnav4 .topbar-main{background:#fff}@media (min-width:992px){#topnav2 .navigation-menu>li>a{padding-top:20px;padding-bottom:20px}#topnav2 .navigation-menu>li:first-of-type>a{padding-left:0}#topnav2 .navigation-menu>li.last-elements .submenu{left:auto;right:-181px}#topnav2 .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu{left:auto;right:100%;margin-left:0;margin-right:10px}#topnav2 .navigation-menu>li:hover a,#topnav2 .navigation-menu>li:hover a i{color:#fff}#topnav2 .navigation-menu>li>ul>li.has-submenu:active>a,#topnav2 .navigation-menu>li>ul>li.has-submenu:hover>a{color:#6c2bd4}#topnav2 .navigation-menu>li .submenu{position:absolute;top:100%;left:0;z-index:1000;border:1px solid #e7e7e7;padding:15px 0;list-style:none;min-width:200px;text-align:left;visibility:hidden;opacity:0;margin-top:10px;-webkit-transition:all .2s ease;transition:all .2s ease;background-color:#fff}#topnav2 .navigation-menu>li .submenu.megamenu{white-space:nowrap;width:auto}#topnav2 .navigation-menu>li .submenu.megamenu>li{overflow:hidden;width:200px;display:inline-block;vertical-align:top}#topnav2 .navigation-menu>li .submenu>li.has-submenu>a:after{content:"\F142";font-family:"Material Design Icons";position:absolute;right:20px;top:5px;font-size:18px}#topnav2 .navigation-menu>li .submenu>li .submenu{left:100%;top:0;margin-left:10px;margin-top:-1px}#topnav2 .navigation-menu>li .submenu li{position:relative}#topnav2 .navigation-menu>li .submenu li ul{list-style:none;padding-left:0;margin:0}#topnav2 .navigation-menu>li .submenu li a{display:block;padding:8px 25px;clear:both;white-space:nowrap;font-size:15px;color:#212537;-webkit-transition:all .35s ease;transition:all .35s ease}#topnav2 .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav2 .navigation-menu>li .submenu li span{display:block;padding:8px 25px;clear:both;line-height:1.42857143;white-space:nowrap;font-size:10px;text-transform:uppercase;letter-spacing:2px;color:#435966}#topnav2 .navbar-toggle{display:none}#topnav2 #navigation2{display:block!important}}@media (max-width:991px){.wrapper{padding-top:60px}.zurb-contents{width:auto!important}#topnav2 .navigation-menu{float:none;max-height:400px;text-align:left}#topnav2 .navigation-menu>li{display:block}#topnav2 .navigation-menu>li>a{color:#435966;padding:15px}#topnav2 .navigation-menu>li>a i{display:inline-block;margin-right:10px;margin-bottom:0;vertical-align:inherit}#topnav2 .navigation-menu>li>a:after{position:absolute;right:15px}#topnav2 .navigation-menu>li .submenu{display:none;list-style:none;padding-left:20px;margin:0}#topnav2 .navigation-menu>li .submenu li a{display:block;position:relative;padding:7px 20px;color:#435966}#topnav2 .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav2 .navigation-menu>li .submenu li.has-submenu>a:after{content:"\F140";font-family:"Material Design Icons";position:absolute;right:30px}#topnav2 .navigation-menu>li .submenu.open{display:block}#topnav2 .navigation-menu>li .submenu .submenu{display:none;list-style:none}#topnav2 .navigation-menu>li .submenu .submenu.open{display:block}#topnav2 .navigation-menu>li .submenu.megamenu>li>ul{list-style:none;padding-left:0}#topnav2 .navigation-menu>li .submenu.megamenu>li>ul>li>span{display:block;position:relative;padding:15px;text-transform:uppercase;font-size:11px;letter-spacing:2px;color:#435966}#topnav2 .has-submenu.active a,#topnav2 .has-submenu.active a i,#topnav2 .has-submenu.active a:active,#topnav2 .has-submenu.active a:focus,#topnav2 .navigation-menu>li.has-submenu.open>a{color:#6c2bd4}#topnav2 .navbar-header{float:left}#navigation2{position:absolute;top:62px;left:0;width:100%;display:none;height:auto;padding-bottom:0;overflow:auto;border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;background-color:#fff}#navigation2.open{display:block;overflow-y:auto}}@media (min-width:768px){#topnav2 .navigation-menu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-top:0}#topnav2 .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-left:0;margin-right:0}.navbar-toggle{display:block}}#topnav3{right:0;left:0;top:0;width:100%;border:0;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav3 .has-submenu.active .submenu li.active>a,#topnav3 .has-submenu.active a,#topnav3 .has-submenu.active a i{color:#212537}#topnav3 .topbar-main{background:#9567e0}#topnav3 .topbar-main .logo{color:#fff!important;font-size:20px;letter-spacing:1px;float:left}#topnav3 .topbar-main .logo-small{display:none}#topnav3 .topbar-main .badge-topbar{position:absolute;top:7px;right:7px;z-index:99}#topnav3 .topbar-main .nav>li>a{height:36px;width:36px;padding:0;font-size:24px;line-height:35px;text-align:center;border-radius:50%;margin:12px 8px;color:rgba(255,255,255,.7)}#topnav3 .topbar-main .dropdown-menu-lg .list-group,#topnav3 .topbar-main .dropdown-menu-lg .media-heading{margin-bottom:0}#topnav3 .topbar-main .nav>li>a:focus,#topnav3 .topbar-main .nav>li>a:hover{background-color:rgba(67,89,102,.1);color:#435966}#topnav3 .topbar-main .dropdown-menu-lg .list-group-item{border:none;padding:10px 20px}#topnav3 .topbar-main .dropdown-menu-lg .media-body p{color:#828282}#topnav3 .topbar-main .navbar-nav{margin:0}#topnav3 .topbar-main .topbar-right-menu li{float:left}#topnav3 .navbar-toggle{border:0;position:relative;padding:0;margin:0;cursor:pointer}#topnav3 .navbar-toggle:hover{background-color:transparent}#topnav3 .navbar-toggle:hover span{background-color:#fff}#topnav3 .navbar-toggle:focus{background-color:transparent}#topnav3 .navbar-toggle:focus span{background-color:#fff}#topnav3 .navbar-toggle .lines{width:25px;display:none;position:relative;margin:10px 10px 0 0;padding-top:13px;height:44px;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav3 .navbar-toggle span{height:2px;width:100%;background-color:rgba(255,255,255,.8);display:block;margin-bottom:5px;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease}#topnav3 .navbar-toggle.open span{position:absolute}#topnav3 .navbar-toggle.open span:first-child{top:18px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#topnav3 .navbar-toggle.open span:nth-child(2){visibility:hidden}#topnav3 .navbar-toggle.open span:last-child{width:100%;top:18px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#topnav3 .navigation-menu{list-style:none;margin:0;padding:0}#topnav3 .navigation-menu>li{display:inline-block;position:relative}#topnav3 .navigation-menu>li>a{display:block;color:#000;font-size:15px;-webkit-transition:all .5s ease;transition:all .5s ease;line-height:20px;padding-left:20px;padding-right:20px}#topnav3 .navigation-menu>li>a:active,#topnav3 .navigation-menu>li>a:focus,#topnav3 .navigation-menu>li>a:hover{color:#6c2bd4}#topnav3 .navigation-menu>li>a i{font-size:16px;margin-right:5px;-webkit-transition:all .5s ease;transition:all .5s ease;vertical-align:text-top;line-height:20px}#topnav3 .navigation-menu>li>a:focus,#topnav3 .navigation-menu>li>a:hover{background-color:transparent}@media (min-width:992px){#topnav3 .navigation-menu>li>a{padding-top:20px;padding-bottom:20px}#topnav3 .navigation-menu>li:first-of-type>a{padding-left:0}#topnav3 .navigation-menu>li.last-elements .submenu{left:auto;right:0}#topnav3 .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu{left:auto;right:100%;margin-left:0;margin-right:10px}#topnav3 .navigation-menu>li:hover a,#topnav3 .navigation-menu>li:hover a i,#topnav3 .navigation-menu>li>ul>li.has-submenu:active>a,#topnav3 .navigation-menu>li>ul>li.has-submenu:hover>a{color:#6c2bd4}#topnav3 .navigation-menu>li .submenu{position:absolute;top:100%;left:0;z-index:1000;border:1px solid #e7e7e7;padding:15px 0;list-style:none;min-width:200px;text-align:left;visibility:hidden;opacity:0;margin-top:10px;-webkit-transition:all .2s ease;transition:all .2s ease;background-color:#fff}#topnav3 .navigation-menu>li .submenu.megamenu{white-space:nowrap;width:auto}#topnav3 .navigation-menu>li .submenu.megamenu>li{overflow:hidden;width:200px;display:inline-block;vertical-align:top}#topnav3 .navigation-menu>li .submenu>li.has-submenu>a:after{content:"\F142";font-family:"Material Design Icons";position:absolute;right:20px;top:5px;font-size:18px}#topnav3 .navigation-menu>li .submenu>li .submenu{left:100%;top:0;margin-left:10px;margin-top:-1px}#topnav3 .navigation-menu>li .submenu li{position:relative}#topnav3 .navigation-menu>li .submenu li ul{list-style:none;padding-left:0;margin:0}#topnav3 .navigation-menu>li .submenu li a{display:block;padding:8px 25px;clear:both;white-space:nowrap;font-size:15px;color:#212537;-webkit-transition:all .35s ease;transition:all .35s ease}#topnav3 .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav3 .navigation-menu>li .submenu li span{display:block;padding:8px 25px;clear:both;line-height:1.42857143;white-space:nowrap;font-size:10px;text-transform:uppercase;letter-spacing:2px;color:#435966}#topnav3 .navbar-toggle{display:none}#topnav3 #navigation3{display:block!important}}@media (max-width:991px){.wrapper{padding-top:60px}.zurb-contents{width:auto!important}#topnav3 .navigation-menu{float:none;max-height:400px;text-align:left}#topnav3 .navigation-menu>li{display:block}#topnav3 .navigation-menu>li>a{color:#435966;padding:15px}#topnav3 .navigation-menu>li>a i{display:inline-block;margin-right:10px;margin-bottom:0;vertical-align:inherit}#topnav3 .navigation-menu>li>a:after{position:absolute;right:15px}#topnav3 .navigation-menu>li .submenu{display:none;list-style:none;padding-left:20px;margin:0}#topnav3 .navigation-menu>li .submenu li a{display:block;position:relative;padding:7px 20px;color:#435966}#topnav3 .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav3 .navigation-menu>li .submenu li.has-submenu>a:after{content:"\F140";font-family:"Material Design Icons";position:absolute;right:30px}#topnav3 .navigation-menu>li .submenu.open{display:block}#topnav3 .navigation-menu>li .submenu .submenu{display:none;list-style:none}#topnav3 .navigation-menu>li .submenu .submenu.open{display:block}#topnav3 .navigation-menu>li .submenu.megamenu>li>ul{list-style:none;padding-left:0}#topnav3 .navigation-menu>li .submenu.megamenu>li>ul>li>span{display:block;position:relative;padding:15px;text-transform:uppercase;font-size:11px;letter-spacing:2px;color:#435966}#topnav3 .has-submenu.active a,#topnav3 .has-submenu.active a i,#topnav3 .has-submenu.active a:active,#topnav3 .has-submenu.active a:focus,#topnav3 .navigation-menu>li.has-submenu.open>a{color:#6c2bd4}#topnav3 .navbar-header{float:left}#navigation3{position:absolute;top:62px;left:0;width:100%;display:none;height:auto;padding-bottom:0;overflow:auto;border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;background-color:#fff}#navigation3.open{display:block;overflow-y:auto}}@media (min-width:768px){#topnav3 .navigation-menu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-top:0}#topnav3 .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-left:0;margin-right:0}.navbar-toggle{display:block}}#topnav4{right:0;left:0;top:0;width:100%;border:0;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav4 .has-submenu.active a,#topnav4 .has-submenu.active a i{color:#fff}#topnav4 .has-submenu.active .submenu li.active>a{color:#6c2bd4}#topnav4 .topbar-main .logo{color:#fff!important;font-size:20px;letter-spacing:1px;float:left}#topnav4 .topbar-main .logo-small{display:none}#topnav4 .topbar-main .badge-topbar{position:absolute;top:7px;right:7px;z-index:99}#topnav4 .topbar-main .nav>li>a{height:36px;width:36px;padding:0;font-size:24px;line-height:35px;text-align:center;border-radius:50%;margin:12px 8px;color:rgba(255,255,255,.7)}#topnav4 .topbar-main .dropdown-menu-lg .list-group,#topnav4 .topbar-main .dropdown-menu-lg .media-heading{margin-bottom:0}#topnav4 .topbar-main .nav>li>a:focus,#topnav4 .topbar-main .nav>li>a:hover{background-color:rgba(67,89,102,.1);color:#435966}#topnav4 .topbar-main .dropdown-menu-lg .list-group-item{border:none;padding:10px 20px}#topnav4 .topbar-main .dropdown-menu-lg .media-body p{color:#828282}#topnav4 .topbar-main .navbar-nav{margin:0}#topnav4 .topbar-main .topbar-right-menu li{float:left}#topnav4 .navbar-toggle{border:0;position:relative;padding:0;margin:0;cursor:pointer}#topnav4 .navbar-toggle:hover{background-color:transparent}#topnav4 .navbar-toggle:hover span{background-color:#fff}#topnav4 .navbar-toggle:focus{background-color:transparent}#topnav4 .navbar-toggle:focus span{background-color:#fff}#topnav4 .navbar-toggle .lines{width:25px;display:none;position:relative;margin:10px 10px 0 0;padding-top:13px;height:44px;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav4 .navbar-toggle span{height:2px;width:100%;background-color:rgba(255,255,255,.8);display:block;margin-bottom:5px;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease}#topnav4 .navbar-toggle.open span{position:absolute}#topnav4 .navbar-toggle.open span:first-child{top:18px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#topnav4 .navbar-toggle.open span:nth-child(2){visibility:hidden}#topnav4 .navbar-toggle.open span:last-child{width:100%;top:18px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#topnav4 .navbar-custom{background:#9567e0}#topnav4 .notification-box a i{color:#000!important}#topnav4 .navigation-menu{list-style:none;margin:0;padding:0}#topnav4 .navigation-menu>li{display:inline-block;position:relative}#topnav4 .navigation-menu>li>a{display:block;color:#fff;font-size:15px;-webkit-transition:all .5s ease;transition:all .5s ease;line-height:20px;padding-left:20px;padding-right:20px}#topnav4 .navigation-menu>li>a:hover{color:#fff!important}#topnav4 .navigation-menu>li>a:active,#topnav4 .navigation-menu>li>a:focus{color:#fff}#topnav4 .navigation-menu>li>a i{font-size:16px;margin-right:5px;-webkit-transition:all .5s ease;transition:all .5s ease;vertical-align:text-top;line-height:20px}#topnav4 .navigation-menu>li>a:focus,#topnav4 .navigation-menu>li>a:hover{background-color:transparent;color:#fff}@media (min-width:992px){#topnav4 .navigation-menu>li>a{padding-top:20px;padding-bottom:20px}#topnav4 .navigation-menu>li:first-of-type>a{padding-left:0}#topnav4 .navigation-menu>li.last-elements .submenu{left:auto;right:0}#topnav4 .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu{left:auto;right:100%;margin-left:0;margin-right:10px}#topnav4 .navigation-menu>li:hover a,#topnav4 .navigation-menu>li:hover a i{color:#fff}#topnav4 .navigation-menu>li>ul>li.has-submenu:active>a,#topnav4 .navigation-menu>li>ul>li.has-submenu:hover>a{color:#6c2bd4}#topnav4 .navigation-menu>li .submenu{position:absolute;top:100%;left:0;z-index:1000;border:1px solid #e7e7e7;padding:15px 0;list-style:none;min-width:200px;text-align:left;visibility:hidden;opacity:0;margin-top:10px;-webkit-transition:all .2s ease;transition:all .2s ease;background-color:#fff}#topnav4 .navigation-menu>li .submenu.megamenu{white-space:nowrap;width:auto}#topnav4 .navigation-menu>li .submenu.megamenu>li{overflow:hidden;width:200px;display:inline-block;vertical-align:top}#topnav4 .navigation-menu>li .submenu>li.has-submenu>a:after{content:"\F142";font-family:"Material Design Icons";position:absolute;right:20px;top:5px;font-size:18px}#topnav4 .navigation-menu>li .submenu>li .submenu{left:100%;top:0;margin-left:10px;margin-top:-1px}#topnav4 .navigation-menu>li .submenu li{position:relative}#topnav4 .navigation-menu>li .submenu li ul{list-style:none;padding-left:0;margin:0}#topnav4 .navigation-menu>li .submenu li a{display:block;padding:8px 25px;clear:both;white-space:nowrap;font-size:15px;color:#212537;-webkit-transition:all .35s ease;transition:all .35s ease}#topnav4 .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav4 .navigation-menu>li .submenu li span{display:block;padding:8px 25px;clear:both;line-height:1.42857143;white-space:nowrap;font-size:10px;text-transform:uppercase;letter-spacing:2px;color:#435966}#topnav4 .navbar-toggle{display:none}#topnav4 #navigation4{display:block!important}}@media (max-width:991px){.wrapper{padding-top:60px}.zurb-contents{width:auto!important}#topnav4 .navigation-menu{float:none;max-height:400px;text-align:left}#topnav4 .navigation-menu>li{display:block}#topnav4 .navigation-menu>li>a{color:#435966;padding:15px}#topnav4 .navigation-menu>li>a i{display:inline-block;margin-right:10px;margin-bottom:0;vertical-align:inherit}#topnav4 .navigation-menu>li>a:after{position:absolute;right:15px}#topnav4 .navigation-menu>li .submenu{display:none;list-style:none;padding-left:20px;margin:0}#topnav4 .navigation-menu>li .submenu li a{display:block;position:relative;padding:7px 20px;color:#435966}#topnav4 .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav4 .navigation-menu>li .submenu li.has-submenu>a:after{content:"\F140";font-family:"Material Design Icons";position:absolute;right:30px}#topnav4 .navigation-menu>li .submenu.open{display:block}#topnav4 .navigation-menu>li .submenu .submenu{display:none;list-style:none}#topnav4 .navigation-menu>li .submenu .submenu.open{display:block}#topnav4 .navigation-menu>li .submenu.megamenu>li>ul{list-style:none;padding-left:0}#topnav4 .navigation-menu>li .submenu.megamenu>li>ul>li>span{display:block;position:relative;padding:15px;text-transform:uppercase;font-size:11px;letter-spacing:2px;color:#435966}#topnav4 .has-submenu.active a,#topnav4 .has-submenu.active a i,#topnav4 .has-submenu.active a:active,#topnav4 .has-submenu.active a:focus,#topnav4 .navigation-menu>li.has-submenu.open>a{color:#6c2bd4}#topnav4 .navbar-header{float:left}#navigation4{position:absolute;top:62px;left:0;width:100%;display:none;height:auto;padding-bottom:0;overflow:auto;border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;background-color:#fff}#navigation4.open{display:block;overflow-y:auto}}@media (min-width:768px){#topnav4 .navigation-menu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-top:0}#topnav4 .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-left:0;margin-right:0}.navbar-toggle{display:block}}.app-footer{width:100%;line-height:1.25rem;padding:1.625rem 30px;opacity:1;transform:translate(0,0)}.ant-layout-footer{background:#f0f2f5;padding:24px 50px;color:#7490BD;font-size:14px;flex:0 0 auto}.footer-menu .footer-social1,.footer-social-list{padding-left:0;line-height:1.25rem;list-style:none}@media screen and (min-width:768px){.footer-inner-v1{text-align:left;display:flex;justify-content:space-between}}.footer-social-list li,.footer-social1 li{display:inline-block}.footer-inner-v1{text-align:center}.footer-copyright{font-size:14px;opacity:.9}.footer-copyright .list-item{color:#7490BD;margin-left:1rem}.footer-copyright a:hover,.footer-social-list a:hover{color:#1a1a1a;opacity:.9}.app-footer ul,.footer-social-list{margin:0}.footer-social-list li:not(:last-child){margin-right:1.5rem}.footer-social-list a{color:rgba(0,0,0,.87);opacity:.54;font-size:1rem}.footer-menu .footer-social1{margin:0}.footer-menu .footer-social1 a:hover{color:rgba(0,0,0,.87);opacity:.6}.footer-menu .footer-social1 li:not(:last-child){margin-right:1.5rem}.footer-menu .footer-social1 a{color:#1a1a1a;opacity:.9;font-size:29px}.app-footer a,.footer-menu p{color:#7490BD;opacity:.6}.footer-menu h6{font-size:16px;margin-bottom:1rem}.footer-menu p:hover{color:#1a1a1a;opacity:.9}.footer-menu a,.footer-menu a address{opacity:.6;line-height:2;transition:opacity .2s}.footer-menu a{color:#7490BD}.footer-menu a address{color:rgba(0,0,0,.87);margin-bottom:0}.footer-menu a address:hover{color:#1a1a1a;opacity:.9}.footer-menu img{width:50px}.footer-menu img:hover{color:rgba(0,0,0,.87);opacity:.6}.footer-menu a:hover{color:#1a1a1a;opacity:.9}.testimonial{padding:30px 15px 30px 30px;border-style:solid;border-width:5px 1px 1px;margin:15px 0;background:#fff;border-color:#cfb87c #ddd #ddd}.bordersecondary{border-color:#7b41d8 #ddd #ddd}.borderpink{border-color:#ff66bd #ddd #ddd}.borderprimary{border-color:#167ccb #ddd #ddd}.testimonial img{border:1px solid #ddd;margin:auto auto 15px;width:100%}.testimonial blockquote{font-size:16px!important;font-weight:300;padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}.testimonial blockquote:before{color:#ccc;content:open-quote;font-size:5em;line-height:0;margin-right:.1em;vertical-align:-.4em}.icon-list-demo i,.product-cart,.table>.tfood>tr>td.middle-align,.table>.tfood>tr>th.middle-align,.table>tbody>tr>td.middle-align,.table>tbody>tr>th.middle-align,.table>thead>tr>td.middle-align,.table>thead>tr>th.middle-align,.waves-effect{vertical-align:middle}.testimonial blockquote:after{content:close-quote;visibility:hidden}.testimonial blockquote cite{float:left;font-weight:600;margin-top:10px;width:100%}@media (max-width:1024px){.testimonial img{max-width:100px}}.testimonial-card .card-up{overflow:hidden;height:120px;-webkit-border-top-left-radius:.25rem;border-top-left-radius:.25rem;-webkit-border-top-right-radius:.25rem;border-top-right-radius:.25rem}.ribbon,.ribbon-pink,.ribbon-sec,.ribbon-war{height:75px;overflow:hidden}.testimonial-card .avatar{-webkit-border-radius:50%;border-radius:50%;width:120px;margin-top:-60px;overflow:hidden;border:5px solid #fff}.team-section .avatar img.rounded-circle{max-width:150px;-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)}.testimonial-carousel .testimonial .avatar img{-webkit-box-shadow:0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);box-shadow:0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);max-width:170px}.ribbon span,.ribbon-pink span,.ribbon-sec span,.ribbon-war span{line-height:20px;box-shadow:0 0 8px 0 rgba(0,0,0,.06),0 1px 0 0 rgba(0,0,0,.02);text-transform:uppercase;display:block}.testbgpattern1{background-color:#fff;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='100' viewBox='0 0 600 100'%3E%3Cg stroke='%23FFF' stroke-width='0' stroke-miterlimit='10' %3E%3Ccircle fill='%23037B79' cx='0' cy='0' r='50'/%3E%3Ccircle fill='%2392DEBA' cx='100' cy='0' r='50'/%3E%3Ccircle fill='%23FFFFD8' cx='200' cy='0' r='50'/%3E%3Ccircle fill='%23CAF2FF' cx='300' cy='0' r='50'/%3E%3Ccircle fill='%236FCCFF' cx='400' cy='0' r='50'/%3E%3Ccircle fill='%23006EB4' cx='500' cy='0' r='50'/%3E%3Ccircle fill='%23037B79' cx='600' cy='0' r='50'/%3E%3Ccircle cx='-50' cy='50' r='50'/%3E%3Ccircle fill='%2353ac9a' cx='50' cy='50' r='50'/%3E%3Ccircle fill='%23ceefc1' cx='150' cy='50' r='50'/%3E%3Ccircle fill='%23ffffff' cx='250' cy='50' r='50'/%3E%3Ccircle fill='%239de0fe' cx='350' cy='50' r='50'/%3E%3Ccircle fill='%233e9cda' cx='450' cy='50' r='50'/%3E%3Ccircle fill='%2300789c' cx='550' cy='50' r='50'/%3E%3Ccircle cx='650' cy='50' r='50'/%3E%3Ccircle fill='%23037B79' cx='0' cy='100' r='50'/%3E%3Ccircle fill='%2392DEBA' cx='100' cy='100' r='50'/%3E%3Ccircle fill='%23FFFFD8' cx='200' cy='100' r='50'/%3E%3Ccircle fill='%23CAF2FF' cx='300' cy='100' r='50'/%3E%3Ccircle fill='%236FCCFF' cx='400' cy='100' r='50'/%3E%3Ccircle fill='%23006EB4' cx='500' cy='100' r='50'/%3E%3Ccircle fill='%23037B79' cx='600' cy='100' r='50'/%3E%3Ccircle cx='50' cy='150' r='50'/%3E%3Ccircle cx='150' cy='150' r='50'/%3E%3Ccircle cx='250' cy='150' r='50'/%3E%3Ccircle cx='350' cy='150' r='50'/%3E%3Ccircle cx='450' cy='150' r='50'/%3E%3Ccircle cx='550' cy='150' r='50'/%3E%3C/g%3E%3C/svg%3E")}.testbgpattern2{background-color:#305;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 1000'%3E%3Cg %3E%3Ccircle fill='%23330055' cx='50' cy='0' r='50'/%3E%3Cg fill='%233a015d' %3E%3Ccircle cx='0' cy='50' r='50'/%3E%3Ccircle cx='100' cy='50' r='50'/%3E%3C/g%3E%3Ccircle fill='%23410165' cx='50' cy='100' r='50'/%3E%3Cg fill='%2348026e' %3E%3Ccircle cx='0' cy='150' r='50'/%3E%3Ccircle cx='100' cy='150' r='50'/%3E%3C/g%3E%3Ccircle fill='%23500376' cx='50' cy='200' r='50'/%3E%3Cg fill='%2357047e' %3E%3Ccircle cx='0' cy='250' r='50'/%3E%3Ccircle cx='100' cy='250' r='50'/%3E%3C/g%3E%3Ccircle fill='%235f0587' cx='50' cy='300' r='50'/%3E%3Cg fill='%2367068f' %3E%3Ccircle cx='0' cy='350' r='50'/%3E%3Ccircle cx='100' cy='350' r='50'/%3E%3C/g%3E%3Ccircle fill='%236f0798' cx='50' cy='400' r='50'/%3E%3Cg fill='%237707a0' %3E%3Ccircle cx='0' cy='450' r='50'/%3E%3Ccircle cx='100' cy='450' r='50'/%3E%3C/g%3E%3Ccircle fill='%238008a9' cx='50' cy='500' r='50'/%3E%3Cg fill='%238909b1' %3E%3Ccircle cx='0' cy='550' r='50'/%3E%3Ccircle cx='100' cy='550' r='50'/%3E%3C/g%3E%3Ccircle fill='%239109ba' cx='50' cy='600' r='50'/%3E%3Cg fill='%239a09c3' %3E%3Ccircle cx='0' cy='650' r='50'/%3E%3Ccircle cx='100' cy='650' r='50'/%3E%3C/g%3E%3Ccircle fill='%23a309cb' cx='50' cy='700' r='50'/%3E%3Cg fill='%23ad09d4' %3E%3Ccircle cx='0' cy='750' r='50'/%3E%3Ccircle cx='100' cy='750' r='50'/%3E%3C/g%3E%3Ccircle fill='%23b608dc' cx='50' cy='800' r='50'/%3E%3Cg fill='%23c007e5' %3E%3Ccircle cx='0' cy='850' r='50'/%3E%3Ccircle cx='100' cy='850' r='50'/%3E%3C/g%3E%3Ccircle fill='%23c905ee' cx='50' cy='900' r='50'/%3E%3Cg fill='%23d303f6' %3E%3Ccircle cx='0' cy='950' r='50'/%3E%3Ccircle cx='100' cy='950' r='50'/%3E%3C/g%3E%3Ccircle fill='%23D0F' cx='50' cy='1000' r='50'/%3E%3C/g%3E%3C/svg%3E");background-attachment:fixed;background-size:contain}.testbgpattern3{background-color:#7b41d8;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cg %3E%3Crect fill='%237b41d8' width='11' height='11'/%3E%3Crect fill='%23883fd4' x='10' width='11' height='11'/%3E%3Crect fill='%23933dd1' y='10' width='11' height='11'/%3E%3Crect fill='%239d3bcd' x='20' width='11' height='11'/%3E%3Crect fill='%23a739c9' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23af37c5' y='20' width='11' height='11'/%3E%3Crect fill='%23b736c1' x='30' width='11' height='11'/%3E%3Crect fill='%23bf35bd' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23c635b9' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23cc35b5' y='30' width='11' height='11'/%3E%3Crect fill='%23d236b1' x='40' width='11' height='11'/%3E%3Crect fill='%23d737ad' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23dc38a9' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23e13aa5' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23e53da1' y='40' width='11' height='11'/%3E%3Crect fill='%23e93f9d' x='50' width='11' height='11'/%3E%3Crect fill='%23ed439a' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23f04696' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23f34a93' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23f54e8f' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23f8528c' y='50' width='11' height='11'/%3E%3Crect fill='%23fa5689' x='60' width='11' height='11'/%3E%3Crect fill='%23fc5b86' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23fd5f83' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23fe6381' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%23ff687f' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23ff6d7c' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23ff717a' x='70' width='11' height='11'/%3E%3Crect fill='%23ff7679' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23ff7a77' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23ff7f76' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23ff8375' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%23ff8874' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%23ff8c74' x='80' width='11' height='11'/%3E%3Crect fill='%23ff9173' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%23ff9573' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23ff9a73' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23ff9e74' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%23ffa275' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%23fea676' x='90' width='11' height='11'/%3E%3Crect fill='%23fdaa77' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%23fcae79' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%23fbb37b' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23fab67d' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23f9ba7f' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%23f8be82' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%23f7c285' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23f6c688' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23f5c98b' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23f4cd8f' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23f3d192' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23f2d496' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%23f1d89a' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%23f1db9f' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%23f0dea3' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%23efe2a8' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23efe5ac' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23eee8b1' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23eeebb6' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23EEB' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");background-attachment:fixed;background-size:cover}.ribbon{position:absolute;left:5px;top:-5px;z-index:1;width:75px;text-align:right}.ribbon span{font-size:10px;font-weight:700;color:#fff;text-align:center;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);width:100px;position:absolute;top:19px;left:-21px}.ribbon span:after,.ribbon span:before{content:"";top:100%;z-index:-1;border-bottom:3px solid transparent;border-top:3px solid #3bafda;position:absolute}.ribbon span:before{left:0;border-left:3px solid #3bafda;border-right:3px solid transparent}.ribbon span:after{right:0;border-left:3px solid transparent;border-right:3px solid #3bafda}.ribbon-war{position:absolute;left:5px;top:-5px;z-index:1;width:75px;text-align:right}.ribbon-war span{font-size:10px;font-weight:700;color:#fff;text-align:center;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);width:100px;position:absolute;top:19px;left:-21px}.ribbon-war span:after,.ribbon-war span:before{content:"";top:100%;z-index:-1;border-bottom:3px solid transparent;border-top:3px solid #f8c23a;position:absolute}.ribbon-war span:before{left:0;border-left:3px solid #f8c23a;border-right:3px solid transparent}.ribbon-war span:after{right:0;border-left:3px solid transparent;border-right:3px solid #f8c23a}.ribbon-pink{position:absolute;left:5px;top:-5px;z-index:1;width:75px;text-align:right}.ribbon-pink span{font-size:10px;font-weight:700;color:#fff;text-align:center;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);width:100px;position:absolute;top:19px;left:-21px}.ribbon-pink span:after,.ribbon-pink span:before{content:"";top:100%;z-index:-1;border-bottom:3px solid transparent;border-top:3px solid #ff66bd;position:absolute}.ribbon-pink span:before{left:0;border-left:3px solid #ff66bd;border-right:3px solid transparent}.ribbon-pink span:after{right:0;border-left:3px solid transparent;border-right:3px solid #ff66bd}.ribbon-sec{position:absolute;left:5px;top:-5px;z-index:1;width:75px;text-align:right}.ribbon-sec span{font-size:10px;font-weight:700;color:#fff;text-align:center;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);width:100px;position:absolute;top:19px;left:-21px}.ribbon-sec span:after,.ribbon-sec span:before{position:absolute;top:100%;z-index:-1;border-bottom:3px solid transparent;border-top:3px solid #6c2bd4;content:""}.ribbon-sec span:before{left:0;border-left:3px solid #6c2bd4;border-right:3px solid transparent}.ribbon-sec span:after{right:0;border-left:3px solid transparent;border-right:3px solid #6c2bd4}.ribbone{width:100%;height:188px;position:relative;background:url(../images/big/img4.jpg);background-size:cover;text-transform:uppercase;color:#fff}@media (max-width:500px){.ribbone{width:100%}}.ribbon1{position:absolute;top:-6.1px;right:10px}.ribbon1:after{position:absolute;content:"";width:0;height:0;border-left:44px solid transparent;border-right:47px solid transparent;border-top:20px solid #F8463F}.ribbon1 span{position:relative;display:block;text-align:center;background:#F8463F;font-size:14px;line-height:1;padding:12px 8px 10px;border-top-right-radius:8px;width:90px}.ribbon1 span:after,.ribbon1 span:before{position:absolute;content:""}.ribbon1 span:before{height:6px;width:6px;left:-6px;top:0;background:#F8463F}.ribbon1 span:after{height:6px;width:8px;left:-8px;top:0;border-radius:8px 8px 0 0;background:#C02031}.ribbon2{width:60px;padding:10px 0;position:absolute;top:-6px;left:25px;text-align:center;border-top-left-radius:3px;background:#F47530}.ribbon2:before{height:0;width:0;right:-5.5px;top:.1px;border-bottom:6px solid #8D5A20;border-right:6px solid transparent}.ribbon2:after,.ribbon2:before{content:"";position:absolute}.ribbon2:after{height:0;width:0;bottom:-29.5px;left:0;border-left:30px solid #F47530;border-right:30px solid #F47530;border-bottom:30px solid transparent}.ribbon3{width:150px;height:50px;line-height:50px;padding-left:15px;position:absolute;left:-8px;top:20px;background:#59324C}.ribbon3:after,.ribbon3:before{content:"";position:absolute}.ribbon3:before{height:0;width:0;top:-8.5px;left:.1px;border-bottom:9px solid #000;border-left:9px solid transparent}.ribbon3:after{height:0;width:0;right:-14.5px;border-top:25px solid transparent;border-bottom:25px solid transparent;border-left:15px solid #59324C}.ribbon4{position:absolute;top:15px;padding:8px 10px;background:#00B3ED;box-shadow:-1px 2px 3px rgba(0,0,0,.3)}.ribbon4:after,.ribbon4:before{content:"";position:absolute}.ribbon4:before{width:7px;height:100%;top:0;left:-6.5px;padding:0 0 7px;background:inherit;border-radius:5px 0 0 5px}.ribbon4:after{width:5px;height:5px;bottom:-5px;left:-4.5px;border-radius:5px 0 0 5px}.ribbon5{display:block;width:calc(100% + 20px);height:50px;line-height:50px;text-align:center;margin-left:-10px;margin-right:-10px;background:#EDBA19;position:relative;top:20px}.ribbon5:after,.ribbon5:before{height:0;width:0;bottom:-10px;border-top:10px solid #cd8d11;content:"";position:absolute}.ribbon5:before{left:0;border-left:10px solid transparent}.ribbon5:after{right:0;border-right:10px solid transparent}.wrap{width:100%;height:188px;position:absolute;top:-8px;left:8px;overflow:hidden}.wrap:after,.wrap:before{content:"";position:absolute}.wrap:before{width:40px;height:8px;right:100px;background:#4D6530;border-radius:8px 8px 0 0}.wrap:after{width:8px;height:40px;right:0;top:100px;background:#4D6530;border-radius:0 8px 8px 0}.ribbon6{width:200px;height:40px;line-height:40px;position:absolute;top:30px;right:-50px;z-index:2;overflow:hidden;-webkit-transform:rotate(45deg);transform:rotate(45deg);border:1px dashed;box-shadow:0 0 0 3px #57DD43,0 21px 5px -18px rgba(0,0,0,.6);background:#57DD43;text-align:center}.about-bg,.about-bg:before,.servicecard:before{left:0;top:0;width:100%;height:100%}.card,.shadow,.zurb-div-box{box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24)}.about-bg{background:url(../images/big/1.jpg) 50%;background-size:cover;position:relative}.about-bg:before{position:absolute;right:0;bottom:0;z-index:1;content:"";background:rgba(0,0,0,.7)}.about-bg h1{font-size:40px;position:relative;z-index:2}.s-icon,.services h3{font-size:18px}.services:hover h5,.services:hover p{color:#fff}.services:hover{background:#7b41d8;color:#fff;border:1px solid #FFF}.services{background:#fff;border-radius:1px;border:1px solid rgba(123,65,216,.1);margin-bottom:21px;padding:17px;text-align:center;position:relative;-webkit-transition:.5s;transition:.5s}.services p{color:#767676;margin-bottom:17px;-webkit-transition:.5s;transition:.5s}.servicecard:before{content:'';background:rgba(0,0,0,.5);position:absolute;display:block;right:0;bottom:0}.s-icon{border:1px solid #7b41d8;border-radius:50%;height:40px;left:-21px;padding:7px;position:absolute;top:35%;width:40px;background:#7b41d8;color:#fff;z-index:888;-webkit-transition:.5s;transition:.5s;opacity:0}.services:hover .s-icon{border:1px solid #fff;background:#fff;color:#7b41d8;opacity:1}.service2{padding:20px}.service2 h3{font-size:17px;font-weight:500}.service2 p{font-size:13px}.service2 i{font-size:40px;color:#7b41d8}.blog p{position:relative;top:-27px;left:0;font-size:12px}.blogimg{width:100px}.blogtag a{float:left;margin-right:5px;margin-bottom:5px;padding:8px 14px;color:#1a1a1a;font-weight:600;border:1px solid rgba(123,65,216,.1)}.blogtag li a:hover{background:#7b41d8;border-color:#7b41d8;color:#fff!important}.product-appsearch a{position:absolute;background:#6c2bd4;border:none;border-top-right-radius:4px;border-bottom-right-radius:4px;top:1px;width:35px;color:#fff;padding:8px;left:190px}.product_item{font-size:14px;color:#424242;padding:20px;font-weight:400}.product_item:hover .product_img .hover{background:rgba(0,0,0,.4);display:block}.product_item .product_img img{border-radius:6px;position:relative;padding:10px}.bg_gray{background:#f8f9fa!important}.pro_img{width:100%}.product_item .product_img .hover{position:absolute;display:none;text-align:center;top:0;margin:0 auto;left:0;width:100%;height:100%;right:0}.product_item .product_img .hover a{top:40%}.product_item .product_details{padding-top:20px;text-align:center}.product_item .product_details h5{margin-bottom:5px}.product_item .product_details h5 a{font-size:16px;color:#444}.product_item .product_details .product_price{margin:0}.product_item .product_details .product_price li{display:inline-block;padding:0 10px}.product_item .product_details .product_price .new_price{font-weight:600;color:#ff4136}.productborder{border:1px solid rgba(123,65,216,.1);border-radius:2px}.productdec{padding:30px;background:#f8f9fa}.product-search button,.product-search1 button,.product-search2 button{background:#6c2bd4;color:#fff;padding:9px}.product-border{border-bottom:1px solid rgba(0,0,0,.2)}.pro_detail{margin-top:20px;margin-left:20px}.product-search button{position:absolute;border:none;border-top-right-radius:4px;border-bottom-right-radius:4px;top:19px;width:10%;right:20px}.product-search1 button{position:absolute;border-top-right-radius:4px;border-bottom-right-radius:4px;border:none;top:20px;width:8%;right:19px}.product-search2{position:relative}.product-search2 button{position:absolute;border-top-right-radius:4px;border-bottom-right-radius:4px;border:none;top:0;right:0;cursor:pointer}.product-carousel-control{display:none}.carouselproduct .product_price{margin:0}.carouselproduct .product_price li{display:inline-block;padding:0 10px}.carouselproduct{padding-top:20px;text-align:center}.carouselproduct h5{margin-bottom:5px}.carouselproduct h5 a{font-size:16px;color:#444}.carouselproduct .product_price .new_price{font-weight:600;color:#6c2bd4}.badge,label{font-weight:500}.product-cat{margin-left:-16px}.product-cat li{padding:5px;list-style:none}.product-cat i{font-size:17px}.product-cat a{color:#6c2bd4}.product-cat a:hover{color:#212529}.productimg{width:50px}.product-cart{box-sizing:content-box}.productcart{background:#fff;margin-top:10px;padding:7px;box-sizing:border-box;font-size:14px;border:1px solid #dae0e2}#custom-size-dialogBox ul{list-style:none;margin:0;padding:0}.panel-footer,.panel-leftheading{padding:10px 15px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.dialog-box-title{color:#333;border-bottom:1px solid #e0e8f5!important}.panel-footer{background-color:#f4f8fb;border-top:1px solid #e0e8f5}.panel{position:relative}.panel-default>.panel-leftheading{color:#333;background-color:#f4f8fb;border-color:#e0e8f5}.panel-primary>.panel-leftheading{color:#fff;background-color:#6c2bd4;border-color:#6c2bd4}.panel-success>.panel-leftheading{color:#fff;background-color:#0fbd66;border-color:#0fbd66}.panel-info>.panel-leftheading{color:#fff;background-color:#1f9fc7;border-color:#1f9fc7}.panel-warning>.panel-leftheading{color:#fff;background-color:#f7ba22;border-color:#f7ba22}.panel-danger>.panel-leftheading{color:#fff;background-color:#ff4d4d;border-color:#ff4d4d}.panel-leftheading{width:42px;border-right:1px solid transparent;border-bottom:1px solid transparent;border-top-right-radius:3px;float:left;height:100%;position:absolute}.panel-lefttitle{margin-top:0;margin-bottom:0;margin-left:22px;font-size:16px;color:inherit;-webkit-transform:rotate(90deg);-webkit-transform-origin:left top;-moz-transform:rotate(90deg);-moz-transform-origin:left top;-ms-transform:rotate(90deg);-ms-transform-origin:left top;-o-transform:rotate(90deg);-o-transform-origin:left top;transform:rotate(90deg);transform-origin:left top;position:absolute;white-space:nowrap}.panel-rightbody{float:left;margin-left:45px;padding:15px}.panel-default>.panel-heading{color:#333;background:#f4f8fb!important;border-color:#e0e8f5}.panel-primary>.panel-heading{color:#fff;background-color:#6c2bd4;border-color:#6c2bd4}.panel-success>.panel-heading{color:#fff;background-color:#0fbd66;border-color:#0fbd66}.panel-info>.panel-heading{color:#fff;background-color:#1f9fc7;border-color:#1f9fc7}.panel-warning>.panel-heading{color:#fff;background-color:#f7ba22;border-color:#f7ba22}.panel-danger>.panel-heading{color:#fff;background-color:#ff4d4d;border-color:#ff4d4d}.clickable{cursor:pointer}.panel-heading span{margin-top:-32px;font-size:25px}.staricon{font-size:40px}.likerating>label:before,.starrating>label:before,.v1rating>label:before{font-size:35px;font-family:FontAwesome}.starrating>input{display:none}.starrating>label:before{content:"\f005";display:inline-block}.starrating>label{color:#eceef9}.starrating>input:checked~label,.starrating>input:hover~label{color:#f7ba22}.likerating>input{display:none}.likerating>label:before{content:"\f164";display:inline-block}.likerating>label{color:#eceef9}.likerating>input:checked~label,.likerating>input:hover~label{color:#0fbd66}.v1rating>input{display:none}.v1rating>label:before{content:"\f004";display:inline-block}.v1rating>label{color:#eceef9}.v1rating>input:checked~label,.v1rating>input:hover~label{color:#f33}#demo.showcase{width:100%}.content{overflow:auto;position:relative;padding:20px;margin:10px;width:100%;max-width:97%;height:400px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.showcase .content{width:100%;height:300px}.content h2{font-size:200%;line-height:130%}.showcase .horizontal-images.content{height:140px;max-width:97%;padding:5px 5px 0}.horizontal-images.content li img,.showcase .horizontal-images.content h2{height:300px;width:100%}.showcase .horizontal-images.content h2{color:#fff;background-color:#eb3755;padding:10px 20px;margin:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-size:165%}.horizontal-images.content li img{width:auto;padding:0}.showcase .horizontal-images.content{width:100%}.horizontal-images.content ul,.vertical-images.content ul{margin:0;padding:0;list-style:none;overflow:hidden}.horizontal-images.content li{margin:0 3px;float:left}.carousel-caption{position:absolute;right:15%;bottom:100px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;opacity:1;transform:translate(0,0)}.callout{margin:20px 0;padding:20px;background-color:hsla(210,7%,56%,.08);border-left:3px solid #868e96;border-radius:0}.callout-info{background-color:rgba(31,159,199,.1)!important;border-color:#1f9fc7!important}.callout-success{background-color:rgb(15,189,102,.1)!important;border-color:#0fbd66!important}.callout-warning{background-color:rgb(248,194,58,.1)!important;border-color:#f8c23a!important}.callout-danger{background-color:rgba(255,77,77,.1)!important;border-color:#ff4d4d!important}.callout-secondary{background-color:rgba(123,65,216,.1)!important;border-color:#7b41d8!important}.callout-pink{background-color:rgba(255,77,178,.1)!important;border-color:#ff4db2!important}.callout-purple{background-color:rgba(67,81,163,.1)!important;border-color:#4351a3!important}.callout-custom{background-color:rgb(59,153,247,.1)!important;border-color:#3b99f7!important}.card,.card-header{background-color:#fff}.list-unstyled{padding-left:0;list-style:none}.list-unstyle{list-style-type:none}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;border:0;word-wrap:break-word;background-clip:border-box;border-radius:3px}.card-header{padding:.75rem 1.25rem;margin-bottom:0;font-size:16px;border-bottom:1px solid #e0e8f5}.card-footer{background:#fff!important}.list-media{margin-bottom:0;display:block;position:relative;padding-left:0;list-style:none}.list-media>.list-item{display:block;margin-left:30px}.list-media>.list-item:hover{background:#f8f9fa}.list-media>.list-item>a{display:block;position:relative;padding:12px 0}.list-media .media-img{position:relative;float:left}.list-media .media-img .icon-avatar,.list-media .media-img img{line-height:40px;height:40px;width:40px;text-align:center;font-size:17px;border-radius:50px;color:#fff}.list-media .info{padding-left:55px;min-height:40px;height:auto;position:relative}.list-media .info .title{display:block;color:#515365;line-height:1.5}.list-media .info .sub-title{display:block;font-size:12.5px;color:#adadad;color:rgba(138,138,138,.7);max-width:90%}.card-toolbar ul{float:right;list-style:none;padding-left:0;position:absolute;top:13px;right:5px}.display-6{font-size:25px}.card-toolbar ul>li{display:inline-block}.card-toolbar ul>li>.btn,.card-toolbar ul>li>a{margin-bottom:0;margin-right:10px;display:inline-block;font-size:14px;color:#000}.card-header,.card-title{margin-top:0}.card-img-overlay .card-trans{position:absolute;top:0;left:0;background:rgba(0,0,0,.3);width:100%;padding:20px}.card-draggable-placeholder{border:2px dashed rgba(67,89,102,.5);margin-bottom:16px;background-color:rgba(67,89,102,.08)}.icon-list-demo .zurb-div-md-4,.zurb-div-box{border-radius:3px}.zurb-div-box{padding:20px;margin-bottom:1.25rem;background-color:#fff}.zurb-div-box .card-drop{color:#6481ae;font-size:20px;height:20px;line-height:1px;display:inline-block}.zurb-div-box .numbers{font-size:25px;text-align:center}.zurb-div-box .icon-big{font-size:50px;min-height:64px}.zurb-div-box .numbers p{margin:0;font-weight:500}.grid-structure .grid-container{background-color:#f4f8fb;margin-bottom:10px;padding:10px 20px}.icon-list-demo div{cursor:pointer;line-height:45px;display:block;overflow:hidden}.icon-list-demo div p{margin-bottom:0;line-height:inherit}.icon-list-demo i{display:inline-block;font-size:18px;margin:0;width:40px}.icon-list-demo .zurb-div-md-4:hover{background-color:rgba(61,119,180,.1)}.button-list{margin-left:-8px;margin-bottom:-12px}.button-list .btn{margin-bottom:12px;margin-left:8px}.demo-dropdown{position:static;display:block;margin-bottom:5px;clear:left}.panel-body:after,.timelineleft>li:after{clear:both}#static-modal{position:relative;top:auto;right:auto;bottom:auto;left:auto;z-index:1;display:block}.row{margin-right:-10px;margin-left:-10px}.col,.zurb-contents,.zurb-div-1,.zurb-div-10,.zurb-div-11,.zurb-div-12,.zurb-div-2,.zurb-div-3,.zurb-div-4,.zurb-div-5,.zurb-div-6,.zurb-div-7,.zurb-div-8,.zurb-div-9,.zurb-div-auto,.zurb-div-lg,.zurb-div-lg-1,.zurb-div-lg-10,.zurb-div-lg-11,.zurb-div-lg-12,.zurb-div-lg-2,.zurb-div-lg-3,.zurb-div-lg-4,.zurb-div-lg-5,.zurb-div-lg-6,.zurb-div-lg-7,.zurb-div-lg-8,.zurb-div-lg-9,.zurb-div-lg-auto,.zurb-div-md,.zurb-div-md-1,.zurb-div-md-10,.zurb-div-md-11,.zurb-div-md-12,.zurb-div-md-2,.zurb-div-md-3,.zurb-div-md-4,.zurb-div-md-5,.zurb-div-md-6,.zurb-div-md-7,.zurb-div-md-8,.zurb-div-md-9,.zurb-div-md-auto,.zurb-div-sm,.zurb-div-sm-1,.zurb-div-sm-10,.zurb-div-sm-11,.zurb-div-sm-12,.zurb-div-sm-2,.zurb-div-sm-3,.zurb-div-sm-4,.zurb-div-sm-5,.zurb-div-sm-6,.zurb-div-sm-7,.zurb-div-sm-8,.zurb-div-sm-9,.zurb-div-sm-auto,.zurb-div-xl,.zurb-div-xl-1,.zurb-div-xl-10,.zurb-div-xl-11,.zurb-div-xl-12,.zurb-div-xl-2,.zurb-div-xl-3,.zurb-div-xl-4,.zurb-div-xl-5,.zurb-div-xl-6,.zurb-div-xl-7,.zurb-div-xl-8,.zurb-div-xl-9,.zurb-div-xl-auto,.zurb-full{padding-left:10px;padding-right:10px}.breadcrumb{background-color:transparent;margin-bottom:0;padding:0;margin-top:23px}.blockquote{font-size:16px}.dropdown-menu{padding:4px 0;font-size:14px}.dropdown-menu-animated{display:block;visibility:hidden;opacity:0;transition:all .3s ease;-moz-transition:all .3s ease;-webkit-transition:all .3s ease;-o-transition:all .3s ease;-ms-transition:all .3s ease;margin-top:20px!important}.show>.dropdown-menu{visibility:visible;opacity:1;margin-top:0!important;padding:0}.dropdown-item.active,.dropdown-item:active{color:#435966;text-decoration:none;background-color:#eee}.dropdown-item{padding:6px 1.5rem;color:#7490BD}.bg-custom,.bg-info,.bg-pink,.table-danger,.table-danger>td,.table-danger>th,.table-success,.table-success>td,.table-success>th,.table-warning,.table-warning>td,.table-warning>th{color:#fff}.dropdown-lg{width:260px}.arrow-none:after{border:none;margin:0;display:none}.bg-custom{background-color:#6481ae!important}.bg-primary{background-color:#6c2bd4!important}.bg-secondary{background-color:#3b99f7!important}.bg-success{background-color:#0fbd66!important}.bg-info{background-color:#22b1dd!important}.bg-warning{background-color:#f7ba22!important}.bg-danger{background-color:#f33!important}.bg-muted{background-color:#f4f8fb!important}.bg-dark{background-color:#3b3e47!important}.bg-purple{background-color:#4351a3!important}.bg-pink{background-color:#ff8acc!important}.bg-white{background-color:#fff!important}.bg-lightdark{background-color:#f4f8fb!important}.form-control,.form-control:focus{background-color:#fff;-webkit-box-shadow:none}.text-custom{color:#6481ae!important}.text-white{color:#fff!important}.text-danger{color:#f33!important}.text-muted{color:#7490BD!important}.text-primary{color:#9567e0!important}.border-secondary{border-color:#0572e6!important}.text-secondary{color:#0572e6!important}.text-warning{color:#f7ba22!important}.text-success{color:#0fbd66!important}.text-info{color:#22b1dd!important}.text-pink{color:#ff8acc!important}.text-purple{color:#871faf!important}.text-darkgreen{color:#57a94f!important}.text-darkpink{color:#e33a84!important}.text-thickblue{color:#6438c5!important}textarea.form-control{min-height:90px}.form-control{border:1px solid #c4d8f8;border-radius:2px;height:38px;font-size:14px;max-width:100%;box-shadow:none;-webkit-transition:all .3s linear;-moz-transition:all .3s linear;-o-transition:all .3s linear;-ms-transition:all .3s linear;transition:all .3s linear}select.form-control:not([size]):not([multiple]){height:calc(2.5em + 2px)}.form-control:focus{border:1px solid #7490BD;box-shadow:none;outline:0!important}.input-group-btn-vertical{width:0;position:relative;right:15px}.colorp{background-color:#f692ff;margin-top:2px}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.input-group-btn .btn{padding:8px 12px}.input-group-btn .btn-sm{padding:5px 10px}.input-group-btn .btn-lg{padding:10px 17px}select[multiple]{height:auto}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:2px;border-radius:0 0 4px}.step-content{padding:40px 0}.outer-container{font-family:Roboto;font-size:1.6rem;padding:60px}.nav-tabs a,.swal2-modal{font-family:Quicksand,sans-serif}.badge{padding:5px 10px;font-size:12px;margin-top:1px;color:#fff}.badge-xs{font-size:9px}.badge-sm,.badge-xs{-webkit-transform:translate(0,-2px);-ms-transform:translate(0,-2px);-o-transform:translate(0,-2px);transform:translate(0,-2px)}.badge-primary{background-color:#6c2bd4}.badge-secondary{background-color:#007bff}.badge-success{background-color:#0fbd66}.badge-info{background-color:#22b1dd}.badge-custom{background-color:#3b99f7}.badge-warning{background-color:#d39e00}.badge-danger{background-color:#f33}.badge-purple{background-color:#4351a3}.badge-pink{background-color:#ff4db2}.badge-dark{background-color:#3b3e47}.pagination>li:first-child>a,.pagination>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination>li>a,.pagination>li>span{color:#000}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#e4e7ea}.pagination-split li{margin-left:5px;display:inline-block;float:left}.pagination-split li:first-child{margin-left:0}.pagination-split li a{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.page-item.active .page-link,.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#6c2bd4;border-color:#6c2bd4}.pager li>a,.pager li>span{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#6c2bd4}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active,.nav-tabs a{color:#5e7cac}.tab-content{padding:20px;border:1px solid #eee;border-top:none}.nav-tabs>.active>a,.nav-tabs>.active>a:focus,.nav-tabs>.active>a:hover{border:1px solid #eee!important;border-bottom-color:#fff!important}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs>li{margin-bottom:-2px}.modal-content .nav.nav-tabs+.tab-content,.modal-content .panel-group,.tabs-vertical-env .tab-content{margin-bottom:0}.nav-tabs a{font-size:15px;font-weight:400}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#f4f8fb}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{border-color:#eee}.list-group-item{border:1px solid #e0e8f5;border-left:none;border-right:none}.list-group-item:hover{background-color:rgba(236,238,249,.9)}.list-group-item:first-child{border-top:none}.list-group-item:last-child{border-bottom:none}.list-no-border .list-group-item{border:none}.dropcap{font-size:3.1em}.dropcap,.dropcap-circle,.dropcap-square{display:block;float:left;font-weight:400;line-height:36px;margin-right:6px;text-shadow:none}.modal .modal-dialog .modal-content{-moz-box-shadow:none;-webkit-box-shadow:none;border-color:#DDD;border-radius:2px;box-shadow:none}.modal .modal-dialog .modal-content .modal-header{border-bottom-width:1px;margin:0;padding-bottom:15px}.modal-title{margin-top:0}.modal .modal-dialog .modal-content .modal-body{padding:20px}.modal .modal-dialog .modal-content .modal-footer{padding:15px 0 0}.modal-full{width:98%}.modal-content .panel{border-top:none}.modal-demo{background-color:#FFF;width:600px;border-radius:4px;display:none}.modal-demo .close{position:absolute;top:10px;right:20px;color:#eee}.custom-modal-title{padding:15px 25px;line-height:22px;font-size:18px;background-color:#9567e0;color:#fff;text-align:left;margin:0}.custom-modal-text{padding:20px}.custombox-modal-flash .close,.custombox-modal-rotatedown .close{top:20px;z-index:9999}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{background-color:#6c2bd4;border-color:#6c2bd4}.nav-pills>.active>a>.badge{color:#6c2bd4}.has-success .form-control{border-color:#0fbd66;box-shadow:none!important}.has-warning .form-control{border-color:#d39e00;box-shadow:none!important}.has-error .form-control{border-color:#f33;box-shadow:none!important}.input-group-addon{border-radius:2px;border:1px solid #eee}.tooltip-inner{border-radius:1px;padding:6px 10px}.jqstooltip{width:auto!important;height:auto!important}.popover{font-family:inherit;border-radius:3px}.popover .popover-header{background-color:transparent;color:##0d0d0d;font-weight:600;margin:0}code{color:#930;background-color:#fff2e6;border-radius:4px}pre{background-color:#f4f8fb;border:1px solid #D4D8DA}.carousel-control{width:10%}.carousel-control span{position:absolute;top:50%;z-index:5;display:inline-block;font-size:30px}.slider-bg{background-size:cover!important;padding:5.5% 4.5%}.media{margin-bottom:20px}.media .media-heading{font-weight:600;font-size:16px}.media:last-of-type{margin-bottom:0}.alert-primary{background-color:#f0eafb;border-color:rgba(108,43,212,.2);color:#5623a9}.alert-secondary{background-color:#e8f4fd;border-color:rgba(19,113,185,.2);color:#0f558a}.alert .close{top:8px;position:absolute!important;right:15px}.alert-success{background-color:#e7fdf2;border-color:rgba(13,165,89,.2);color:#0b8e4d}.alert-info{background-color:#e9f7fc;border-color:rgba(34,177,221,.2);color:#1c8eb0}.alert-warning{background-color:#fff9e6;border-color:rgba(211,158,0,.2);color:#c90}.alert-danger{background-color:#ffe6e6;border-color:rgba(255,51,51,.2);color:#ff1a1a}.alert-pink{background-color:#ffe6f4;border-color:rgba(255,77,178,.2);color:#ff1a9c}.alert-purple{background-color:#edeff8;border-color:rgba(74,90,181,.2);color:#3b4891}.mail-box .panel{border:none;box-shadow:none;margin-bottom:0;border-radius:0;border-left:1px solid #eee;min-height:1000px}.mail-box .inbox-search .input-group{width:100%}.mail-box .inbox-search .input-group input{height:25px;padding-right:30px;width:150px}.mail-box .inbox-search .input-group .input-group-btn{position:absolute;right:22px;top:3px;z-index:4;pointer-events:none}.dt-buttons .mail-box .inbox-search .input-group .input-group-btn .dt-button,.fixed-sidebar-left .mail-box .inbox-search .input-group .input-group-btn .side-nav>li>a.documentation-btn,.mail-box .inbox-search .input-group .input-group-btn .btn,.mail-box .inbox-search .input-group .input-group-btn .dt-buttons .dt-button,.mail-box .inbox-search .input-group .input-group-btn .fc-next-button,.mail-box .inbox-search .input-group .input-group-btn .fc-prev-button,.mail-box .inbox-search .input-group .input-group-btn .fc-today-button,.mail-box .inbox-search .input-group .input-group-btn .fixed-sidebar-left .side-nav>li>a.documentation-btn,.mail-box .inbox-search .input-group .input-group-btn .owl-theme .owl-nav [class*=owl-],.mail-box .inbox-search .input-group .input-group-btn .sweet-alert button,.mail-box .inbox-search .input-group .input-group-btn .tablesaw-sortable th.tablesaw-sortable-head button,.mail-box .inbox-search .input-group .input-group-btn .wizard>.actions a,.mail-box .inbox-search .input-group .input-group-btn button.fc-agendaDay-button.fc-state-default.fc-corner-right,.mail-box .inbox-search .input-group .input-group-btn button.fc-agendaWeek-button,.mail-box .inbox-search .input-group .input-group-btn button.fc-month-button.fc-state-default.fc-corner-left,.owl-theme .owl-nav .mail-box .inbox-search .input-group .input-group-btn [class*=owl-],.sweet-alert .mail-box .inbox-search .input-group .input-group-btn button,.tablesaw-sortable th.tablesaw-sortable-head .mail-box .inbox-search .input-group .input-group-btn button,.wizard>.actions .mail-box .inbox-search .input-group .input-group-btn a{background:0 0;border:none;padding:0}.user-head{position:relative}.user-head .user-name h5{margin-top:15px}ul.inbox-nav{display:inline-block;margin:0;padding:0;width:100%}ul.inbox-nav li{display:inline-block;width:100%}ul.inbox-nav li a{display:inline-block;padding:10px 15px;width:100%;color:#1a1a1a;text-transform:capitalize;-webkit-transition:.3s ease;-moz-transition:.3s ease;transition:.3s ease}.fc th.fc-widget-header,.fc-toolbar h2,.text-upper{text-transform:uppercase}.portfolioFilter a,.waves-effect{-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out}ul.inbox-nav li a i{font-size:16px;padding-right:10px;color:#1a1a1a}ul.inbox-nav li a:focus,ul.inbox-nav li a:hover,ul.inbox-nav li.active a{background:#f8f9fa}.inbox-pagination{float:right}.inbox-pagination li,.widget-chart-1 .widget-chart-box-1,.widget-user img{float:left}.inbox-head{color:#fff;min-height:80px}.table-inbox tr td{padding:10px 15px!important}.table-inbox tr td:hover{cursor:pointer}.table-inbox tr td .zmdi-star.inbox-started,.table-inbox tr td .zmdi-star:hover{color:#ff9528}.table-inbox tr.unread td{color:#324148;font-weight:500}.table-inbox tr.unread td i{color:#727272}.table-inbox.table-hover>tbody>tr{background:#f8f9fa!important}.table-inbox.table-hover>tbody>tr td{color:#324148}.table-inbox.table-hover>tbody>tr td i{color:#727272}.table-inbox.table-hover>tbody>tr.unread{background:0 0!important}.table-inbox.table-hover>tbody>tr.unread:hover{background-color:#f8f9fa!important}.table-inbox tr td .checkbox label{margin-bottom:0;margin-top:3px}.time-chat-history{min-width:70px}.mail-option{display:inline-block;width:100%}.dt-buttons .mail-option .chk-all .dt-button,.fixed-sidebar-left .mail-option .chk-all .side-nav>li>a.documentation-btn,.mail-option .chk-all .btn,.mail-option .chk-all .dropdown,.mail-option .chk-all .dt-buttons .dt-button,.mail-option .chk-all .fc-next-button,.mail-option .chk-all .fc-prev-button,.mail-option .chk-all .fc-today-button,.mail-option .chk-all .fixed-sidebar-left .side-nav>li>a.documentation-btn,.mail-option .chk-all .owl-theme .owl-nav [class*=owl-],.mail-option .chk-all .sweet-alert button,.mail-option .chk-all .tablesaw-sortable th.tablesaw-sortable-head button,.mail-option .chk-all .wizard>.actions a,.mail-option .chk-all button.fc-agendaDay-button.fc-state-default.fc-corner-right,.mail-option .chk-all button.fc-agendaWeek-button,.mail-option .chk-all button.fc-month-button.fc-state-default.fc-corner-left,.owl-theme .owl-nav .mail-option .chk-all [class*=owl-],.sweet-alert .mail-option .chk-all button,.tablesaw-sortable th.tablesaw-sortable-head .mail-option .chk-all button,.wizard>.actions .mail-option .chk-all a{display:inline-block;padding:0 5px;box-shadow:none;margin-right:5px;background:0 0;color:#324148}.dt-buttons .mail-option .chk-all .dt-button i,.fixed-sidebar-left .mail-option .chk-all .side-nav>li>a.documentation-btn i,.mail-option .chk-all .btn i,.mail-option .chk-all .dropdown i,.mail-option .chk-all .dt-buttons .dt-button i,.mail-option .chk-all .fc-next-button i,.mail-option .chk-all .fc-prev-button i,.mail-option .chk-all .fc-today-button i,.mail-option .chk-all .fixed-sidebar-left .side-nav>li>a.documentation-btn i,.mail-option .chk-all .owl-theme .owl-nav [class*=owl-] i,.mail-option .chk-all .sweet-alert button i,.mail-option .chk-all .tablesaw-sortable th.tablesaw-sortable-head button i,.mail-option .chk-all .wizard>.actions a i,.mail-option .chk-all button.fc-agendaDay-button.fc-state-default.fc-corner-right i,.mail-option .chk-all button.fc-agendaWeek-button i,.mail-option .chk-all button.fc-month-button.fc-state-default.fc-corner-left i,.owl-theme .owl-nav .mail-option .chk-all [class*=owl-] i,.sweet-alert .mail-option .chk-all button i,.tablesaw-sortable th.tablesaw-sortable-head .mail-option .chk-all button i,.wizard>.actions .mail-option .chk-all a i{color:#727272}.mail-option .chk-all input[type=checkbox]{margin-top:0}.mail-option .chk-all .checkbox{min-height:auto!important;padding-bottom:0!important;padding-top:0!important}.mail-option .btn-group{margin-right:5px}.dt-buttons .heading-inbox .dt-button,.fixed-sidebar-left .heading-inbox .side-nav>li>a.documentation-btn,.heading-inbox .btn,.heading-inbox .dropdown,.heading-inbox .dt-buttons .dt-button,.heading-inbox .fc-next-button,.heading-inbox .fc-prev-button,.heading-inbox .fc-today-button,.heading-inbox .fixed-sidebar-left .side-nav>li>a.documentation-btn,.heading-inbox .owl-theme .owl-nav [class*=owl-],.heading-inbox .sweet-alert button,.heading-inbox .tablesaw-sortable th.tablesaw-sortable-head button,.heading-inbox .wizard>.actions a,.heading-inbox button.fc-agendaDay-button.fc-state-default.fc-corner-right,.heading-inbox button.fc-agendaWeek-button,.heading-inbox button.fc-month-button.fc-state-default.fc-corner-left,.owl-theme .owl-nav .heading-inbox [class*=owl-],.sweet-alert .heading-inbox button,.tablesaw-sortable th.tablesaw-sortable-head .heading-inbox button,.wizard>.actions .heading-inbox a{display:inline-block;padding:0 5px;box-shadow:none;background:0 0}.dt-buttons .heading-inbox .dt-button i,.fixed-sidebar-left .heading-inbox .side-nav>li>a.documentation-btn i,.heading-inbox .btn i,.heading-inbox .dropdown i,.heading-inbox .dt-buttons .dt-button i,.heading-inbox .fc-next-button i,.heading-inbox .fc-prev-button i,.heading-inbox .fc-today-button i,.heading-inbox .fixed-sidebar-left .side-nav>li>a.documentation-btn i,.heading-inbox .owl-theme .owl-nav [class*=owl-] i,.heading-inbox .sweet-alert button i,.heading-inbox .tablesaw-sortable th.tablesaw-sortable-head button i,.heading-inbox .wizard>.actions a i,.heading-inbox button.fc-agendaDay-button.fc-state-default.fc-corner-right i,.heading-inbox button.fc-agendaWeek-button i,.heading-inbox button.fc-month-button.fc-state-default.fc-corner-left i,.owl-theme .owl-nav .heading-inbox [class*=owl-] i,.sweet-alert .heading-inbox button i,.tablesaw-sortable th.tablesaw-sortable-head .heading-inbox button i,.wizard>.actions .heading-inbox a i{font-size:17px;color:#727272}.dt-buttons .heading-inbox .dt-button i.zmdi-chevron-left,.fixed-sidebar-left .heading-inbox .side-nav>li>a.documentation-btn i.zmdi-chevron-left,.heading-inbox .btn i.zmdi-chevron-left,.heading-inbox .dropdown i.zmdi-chevron-left,.heading-inbox .dt-buttons .dt-button i.zmdi-chevron-left,.heading-inbox .fc-next-button i.zmdi-chevron-left,.heading-inbox .fc-prev-button i.zmdi-chevron-left,.heading-inbox .fc-today-button i.zmdi-chevron-left,.heading-inbox .fixed-sidebar-left .side-nav>li>a.documentation-btn i.zmdi-chevron-left,.heading-inbox .owl-theme .owl-nav [class*=owl-] i.zmdi-chevron-left,.heading-inbox .sweet-alert button i.zmdi-chevron-left,.heading-inbox .tablesaw-sortable th.tablesaw-sortable-head button i.zmdi-chevron-left,.heading-inbox .wizard>.actions a i.zmdi-chevron-left,.heading-inbox button.fc-agendaDay-button.fc-state-default.fc-corner-right i.zmdi-chevron-left,.heading-inbox button.fc-agendaWeek-button i.zmdi-chevron-left,.heading-inbox button.fc-month-button.fc-state-default.fc-corner-left i.zmdi-chevron-left,.owl-theme .owl-nav .heading-inbox [class*=owl-] i.zmdi-chevron-left,.sweet-alert .heading-inbox button i.zmdi-chevron-left,.tablesaw-sortable th.tablesaw-sortable-head .heading-inbox button i.zmdi-chevron-left,.wizard>.actions .heading-inbox a i.zmdi-chevron-left{font-size:27px}.ma-15{margin:15px!important}.panel.panel-refresh .refresh-container{background:rgba(255,255,255,.8);border-radius:6px;height:100%;left:0;position:absolute;top:0;width:100%;display:none;z-index:5;cursor:wait;overflow:hidden}.panel.panel-refresh{position:relative}.inboxsearch .form-control{border:1px solid #e0e8f5;font-size:13px;height:27px;color:#000;padding-left:20px;padding-right:40px;background:#fff;box-shadow:none;border-radius:30px;width:171px}.inboxsearch button{position:absolute;background-color:transparent;border:none;top:19px;right:20px;color:#e0e8f5}div.conv-form-wrapper div#messages div.message.to{background:#e0e8f5!important}.collapse.in{display:block}.mail-option .chk-all{display:inline-block;padding:0}.inline-block{display:inline-block!important}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.mail-option .btn-group a.all{border:none}.open>.dropdown-menu{display:block}.dropdown-menu{border-radius:2px;border:none;box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24)}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;white-space:nowrap;color:#324148}.dropdown-menu>li>a:hover{background:rgba(33,33,33,.05)}.btn-group a{margin-top:8px}@-webkit-keyframes animationProgress{from{width:0}}@keyframes animationProgress{from{width:0}}@-webkit-keyframes sk-rotateplane{0%{-webkit-transform:perspective(120px)}50%{-webkit-transform:perspective(120px) rotateY(180deg)}100%{-webkit-transform:perspective(120px) rotateY(180deg) rotateX(180deg)}}@keyframes sk-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0);-webkit-transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0);-webkit-transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg);-webkit-transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.waves-effect{position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;z-index:1;will-change:opacity,transform;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.waves-effect .waves-ripple{position:absolute;border-radius:50%;width:20px;height:20px;margin-top:-10px;margin-left:-10px;opacity:0;background:rgba(0,0,0,.2);-webkit-transition:all .7s ease-out;-moz-transition:all .7s ease-out;-o-transition:all .7s ease-out;-ms-transition:all .7s ease-out;transition:all .7s ease-out;-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;-o-transition-property:-o-transform,opacity;transition-property:transform,opacity;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);pointer-events:none}.checkbox.checkbox-inline,.radio.radio-inline{margin-top:0}.waves-notransition{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}.waves-circle{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0);text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:50%;-webkit-mask-image:none}.timeline-item.alt .timeline-date,.timeline-item.alt h4,.timeline-item.alt p,.widget-box-2 .widget-detail-2{text-align:right}.waves-input-wrapper{border-radius:.2em;vertical-align:bottom}.waves-input-wrapper .waves-button-input{position:relative;top:0;left:0;z-index:1}.waves-block{display:block}.waves-effect.waves-light .waves-ripple{background-color:rgba(255,255,255,.4)}.waves-effect.waves-custom .waves-ripple{background-color:rgba(113,182,249,.4)}.waves-effect.waves-primary .waves-ripple{background-color:rgba(24,138,226,.4)}.waves-effect.waves-success .waves-ripple{background-color:rgba(16,196,105,.4)}.waves-effect.waves-info .waves-ripple{background-color:rgba(53,184,224,.4)}.waves-effect.waves-warning .waves-ripple{background-color:rgba(249,200,81,.4)}.waves-effect.waves-danger .waves-ripple{background-color:rgba(255,91,91,.4)}.waves-effect.waves-pink .waves-ripple{background-color:rgba(255,138,204,.4)}.waves-effect.purple .waves-ripple{background-color:rgba(91,105,188,.2)}.waves-effect.waves-dark .waves-ripple{background-color:rgba(59,62,71,.4)}@media print{#topnav,.breadcrumb,.btn-custom,.footer,.hidden-print,.page-title,.page-title-box,.topbar-left{display:none;margin:0;padding:0}.left,.right-bar{display:none}.wrapper{padding-top:0!important}.content-page{margin-left:0;margin-top:0}}.btn{border-radius:2px;padding:6px 14px;font-size:14px;box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08)}.btn-group-lg>.btn,.btn-lg{padding:10px 16px!important;font-size:16px}.btn-group-sm>.btn,.btn-xs{padding:1px 5px!important;font-size:12px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px!important;font-size:12px}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:0}.btn-group.open .dropdown-toggle{-webkit-box-shadow:0 0 0 100px rgba(0,0,0,.1) inset;box-shadow:0 0 0 100px rgba(0,0,0,.1) inset}.btn-custom,.btn-danger,.btn-dark,.btn-info,.btn-pink,.btn-primary,.btn-purple,.btn-success,.btn-warning{color:#fff!important}.btn-custom{background-color:#7490BD;border-color:#7490BD}.btn-custom.active,.btn-custom.focus,.btn-custom:active,.btn-custom:focus,.btn-custom:hover,.open>.dropdown-toggle.btn-custom{background-color:#6481ae!important;border:1px solid #6481ae!important}.btn-primary{background-color:#6c2bd4!important;border:1px solid #6c2bd4!important}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{background-color:#7b41d8!important;border:1px solid #7b41d8!important}.btn-secondary{background-color:#007bff!important;border:1px solid #007bff!important}.btn-secondary.active,.btn-secondary.focus,.btn-secondary:active,.btn-secondary:focus,.btn-secondary:hover,.open>.dropdown-toggle.btn-secondary{background-color:#0572e6!important;border:1px solid #0572e6!important}.btn-success{background-color:#0da559!important;border:1px solid #0da559!important}.btn-success.active,.btn-success.focus,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success{background-color:#0fbd66!important;border:1px solid #0fbd66!important}.btn-info{background-color:#22b1dd!important;border:1px solid #22b1dd!important}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#22b1dd;border-color:#22b1dd}.btn-info.active,.btn-info.focus,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info{background-color:#1f9fc7!important;border:1px solid #1f9fc7!important}.btn-warning{background-color:#f7ba22!important;border:1px solid #f7ba22!important}.btn-warning.active,.btn-warning.focus,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{background-color:#f8c23a!important;border:1px solid #f8c23a!important}.btn-danger{background-color:#f33!important;border:1px solid #f33!important}.btn-danger.active,.btn-danger.focus,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{background-color:#ff4d4d!important;border:1px solid #ff4d4d!important}.btn-dark{background-color:#3b3e47!important;border:1px solid #3b3e47!important}.btn-dark.active,.btn-dark.focus,.btn-dark:active,.btn-dark:focus,.btn-dark:hover,.open>.dropdown-toggle.btn-dark{background-color:#2f3239!important;border:1px solid #2f3239!important}.btn-purple{background-color:#4351a3!important;border:1px solid #4351a3!important}.btn-purple:active,.btn-purple:focus,.btn-purple:hover{background-color:#4a5ab5!important;border:1px solid #4a5ab5!important}.btn-pink{background-color:#ff4db2!important;border:1px solid #ff4db2!important}.btn-pink:active,.btn-pink:focus,.btn-pink:hover{background-color:#ff66bd!important;border:1px solid #ff66bd!important}.btn-outline-danger,.btn-outline-dark,.btn-outline-info,.btn-outline-pink,.btn-outline-purple,.btn-outline-secondary,.btn-outline-success,.btn-outline-warning,.btn-rounded.btn-outline-danger,.btn-rounded.btn-outline-dark,.btn-rounded.btn-outline-default,.btn-rounded.btn-outline-info,.btn-rounded.btn-outline-pink,.btn-rounded.btn-outline-purple,.btn-rounded.btn-outline-success,.btn-rounded.btn-outline-warning{background-color:#fff!important}.btn-outline-secondary{color:#7b41d8!important;border:1px solid #7b41d8!important}.btn-outline-custom{color:#6481ae!important;background:#fff!important;border:1px solid #ced8e9!important;box-shadow:0 1px 3px rgba(50,50,93,.15),0 1px 0 rgba(0,0,0,.02)}.btn-outline-primary{background:#fff!important;color:#1576c2!important;border-bottom:1px solid #1576c2!important}.btn-outline-success{color:#0da357!important;border:1px solid #0da357!important}.btn-outline-info{color:#20a8d1!important;border:1px solid #20a8d1!important}.btn-outline-warning{color:#f7b820!important;border:1px solid #f7b820!important}.btn-outline-danger{color:#ff2828!important;border:1px solid #ff2828!important}.btn-outline-dark{color:#0d0d0f!important;border:1px solid #0d0d0f!important}.btn-outline-purple{color:#4755ad!important;border:1px!important}.btn-outline-pink{color:#ff66bc!important;border:1px solid #ff66bc!important}.btn-rounded.btn-outline-secondary{background:#fff!important;color:#1576c2!important;border-bottom:1px solid #1576c2!important}.btn-rounded.btn-outline-custom{color:#6481ae!important;background:#fff!important;border:1px solid #ced8e9!important}.btn-rounded.btn-outline-primary{color:#7b41d8!important;background-color:#fff!important;border:1px solid #7b41d8!important}.btn-rounded.btn-outline-success{color:#0da357!important;border:1px solid #0da357!important}.btn-rounded.btn-outline-info{color:#20a8d1!important;border:1px solid #20a8d1!important}.btn-rounded.btn-outline-warning{color:#f7b820!important;border:1px solid #f7b820!important}.btn-rounded.btn-outline-danger{color:#ff2828!important;border:1px solid #ff2828!important}.btn-rounded.btn-outline-dark{color:#0d0d0f!important;border:1px solid #0d0d0f!important}.btn-rounded.btn-outline-default{color:#0d0d0f!important;border:1px solid!important}.btn-rounded.btn-outline-purple{color:#4755ad!important;border:1px!important}.btn-rounded.btn-outline-pink{color:#ff66bc!important;border:1px solid #ff66bc!important}.btn-bordred{border-bottom:3px solid transparent}.btn-bordred.btn-secondary{background-color:#7b41d8;border-bottom:2px solid #7b41d8!important}.btn-bordred.btn-custom{background-color:#6481ae;border-bottom:2px solid #6481ae!important}.btn-bordred.btn-primary{border-bottom:2px solid #1576c2!important}.btn-bordred.btn-success{border-bottom:2px solid #0da357!important}.btn-bordred.btn-info{border-bottom:2px solid #20a8d1!important}.btn-bordred.btn-warning{border-bottom:2px solid #f7b820!important}.btn-bordred.btn-danger{border-bottom:2px solid #ff2828!important}.btn-bordred.btn-inverse{border-bottom:2px solid #0d0d0f!important}.btn-bordred.btn-purple{border-bottom:2px solid #4755ad!important}.btn-bordred.btn-pink{border-bottom:2px solid #ff66bc!important}.btn-rounded{border-radius:2em;padding:6px 18px}.btn-trans.btn-custom{border:1px solid rgba(152,166,173,.1)!important;background-color:rgba(152,166,173,.15)!important;color:#6481ae!important}.btn-trans.btn-secondary{border:1px solid rgba(240,234,251)!important;background-color:rgba(240,234,251)!important;color:#7b41d8!important}.btn-trans.btn-primary{border:1px solid rgba(24,138,226,.1)!important;background-color:rgba(24,138,226,.15)!important;color:#1371b9!important}.btn-trans.btn-success{border:1px solid rgba(16,196,105,.1)!important;background-color:rgba(16,196,105,.15)!important;color:#0fbd66!important}.btn-trans.btn-info{border:1px solid rgba(53,184,224,.1)!important;background-color:rgba(53,184,224,.15)!important;color:#22b1dd!important}.btn-trans.btn-warning{border:1px solid rgba(249,200,81,.1)!important;background-color:rgba(249,200,81,.15)!important;color:#f7ba22!important}.btn-trans.btn-danger{border:1px solid rgba(255,91,91,.1)!important;background-color:rgba(255,91,91,.15)!important;color:#f33!important}.btn-trans.btn-inverse{border:1px solid rgba(59,62,71,.1)!important;background-color:rgba(59,62,71,.15)!important;color:#3b3e47!important}.btn-trans.btn-purple{border:1px solid rgba(91,105,188,.1)!important;background-color:rgba(91,105,188,.15)!important;color:#4351a3!important}.btn-trans.btn-pink{border:1px solid rgba(255,138,204,.1)!important;background-color:rgba(255,138,204,.15)!important;color:#ff4db2!important}.btn-dribbble,.btn-dropbox,.btn-facebook,.btn-flickr,.btn-github,.btn-googleplus,.btn-instagram,.btn-linkedin,.btn-skype,.btn-tumblr,.btn-twitter,.btn-youtube{color:#fff!important}.btn-facebook{background-color:#3b5998!important}.btn-twitter{background-color:#00aced!important}.btn-linkedin{background-color:#007bb6!important}.btn-dribbble{background-color:#ea4c89!important}.btn-googleplus{background-color:#dd4b39!important}.btn-instagram{background-color:#517fa4!important}.btn-pinterest{color:#fff!important;background-color:#cb2027!important}.btn-dropbox{background-color:#007ee5!important}.btn-flickr{background-color:#ff0084!important}.btn-tumblr{background-color:#32506d!important}.btn-skype{background-color:#00aff0!important}.btn-youtube{background-color:#b00!important}.btn-github{background-color:#171515!important}.fileupload{overflow:hidden;position:relative}.fileupload input.upload{cursor:pointer;filter:alpha(opacity=0);font-size:20px;margin:0;opacity:0;padding:0;position:absolute;right:0;top:0}.checkbox,.checkbox label{padding-left:5px}.checkbox label{display:inline-block;position:relative;font-size:14px;font-weight:400;line-height:18px}.checkbox label::before{-o-transition:.3s ease-in-out;-webkit-transition:.3s ease-in-out;background-color:#fff;border-radius:3px;border:1px solid #6481ae;content:"";display:inline-block;height:17px;left:0;margin-left:-17px;position:absolute;transition:.3s ease-in-out;width:17px;outline:0!important}.checkbox label::after{color:#6481ae;display:inline-block;font-size:11px;height:16px;left:0;margin-left:-17px;padding-left:3px;padding-top:1px;position:absolute;top:0;width:16px}.checkbox-custom input[type=checkbox]:checked+label::after,.checkbox-danger input[type=checkbox]:checked+label::after,.checkbox-inverse input[type=checkbox]:checked+label::after,.checkbox-pink input[type=checkbox]:checked+label::after,.checkbox-primary input[type=checkbox]:checked+label::after,.checkbox-purple input[type=checkbox]:checked+label::after,.checkbox-secondary input[type=checkbox]:checked+label::after,.checkbox-success input[type=checkbox]:checked+label::after,.checkbox-warning input[type=checkbox]:checked+label::after{color:#fff}.checkbox input[type=checkbox]{cursor:pointer;opacity:0;z-index:1;outline:0!important}.checkbox input[type=checkbox]:disabled+label{opacity:.65}.checkbox input[type=checkbox]:focus+label::before{outline-offset:-2px;outline:0}.checkbox input[type=checkbox]:checked+label::after{content:"\f00c";font-family:FontAwesome}.checkbox input[type=checkbox]:disabled+label::before{background-color:#eee;cursor:not-allowed}.checkbox.checkbox-circle label::before{border-radius:50%}.checkbox.checkbox-single input{height:18px;width:18px;position:absolute}.checkbox.checkbox-single label{height:18px;width:18px}.checkbox.checkbox-single label:after,.checkbox.checkbox-single label:before{margin-left:0}.checkbox-custom input[type=checkbox]:checked+label::before{background-color:#3b99f7;border-color:#3b99f7}.checkbox-primary input[type=checkbox]:checked+label::before{background-color:#1371b9;border-color:#1371b9}.checkbox-secondary input[type=checkbox]:checked+label::before{background-color:#6c2bd4;border-color:#6c2bd4}.checkbox-danger input[type=checkbox]:checked+label::before{background-color:#f33;border-color:#f33}.checkbox-info input[type=checkbox]:checked+label::before{background-color:#22b1dd;border-color:#22b1dd}.checkbox-info input[type=checkbox]:checked+label::after{color:#fff}.checkbox-warning input[type=checkbox]:checked+label::before{background-color:#f7ba22;border-color:#f7ba22}.checkbox-success input[type=checkbox]:checked+label::before{background-color:#0fbd66;border-color:#0fbd66}.checkbox-purple input[type=checkbox]:checked+label::before{background-color:#4351a3;border-color:#4351a3}.checkbox-pink input[type=checkbox]:checked+label::before{background-color:#ff4db2;border-color:#ff4db2}.checkbox-inverse input[type=checkbox]:checked+label::before{background-color:#3b3e47;border-color:#3b3e47}.radio.radio-single{display:inline-block;position:relative}.radio.radio-single input[type=radio]{top:-11px;position:relative}.radio label{display:inline-block;padding-left:5px;position:relative;font-weight:400;font-size:13px}.radio label::before{-o-transition:border .5s ease-in-out;-webkit-transition:border .5s ease-in-out;background-color:#fff;border-radius:50%;border:1px solid #6481ae;content:"";display:inline-block;height:17px;left:0;margin-left:-20px;position:absolute;transition:border .5s ease-in-out;width:17px;outline:0!important}.panel-body:after,.panel-body:before,.radio label::after,.stepwizard-row:before{content:" "}.radio label::after{-moz-transition:-moz-transform .1s cubic-bezier(.8,-.33,.2,1.33);-ms-transform:scale(0,0);-o-transform:scale(0,0);-o-transition:-o-transform .1s cubic-bezier(.8,-.33,.2,1.33);-webkit-transform:scale(0,0);-webkit-transition:-webkit-transform .1s cubic-bezier(.8,-.33,.2,1.33);background-color:#6481ae;border-radius:50%;display:inline-block;height:11px;left:3px;margin-left:-20px;position:absolute;top:3px;transform:scale(0,0);transition:transform .1s cubic-bezier(.8,-.33,.2,1.33);width:11px}.radio-custom input[type=radio]+label::after,.radio-custom input[type=radio]:checked+label::after{background-color:#3b99f7}.radio input[type=radio]{cursor:pointer;opacity:0;z-index:1;outline:0!important}.radio input[type=radio]:disabled+label{opacity:.65}.radio input[type=radio]:focus+label::before{outline-offset:-2px;outline:-webkit-focus-ring-color auto 5px;outline:dotted thin}.radio input[type=radio]:checked+label::after{-ms-transform:scale(1,1);-o-transform:scale(1,1);-webkit-transform:scale(1,1);transform:scale(1,1)}.radio input[type=radio]:disabled+label::before{cursor:not-allowed}.radio.radio-single label{height:17px}.radio-custom input[type=radio]:checked+label::before{border-color:#3b99f7}.radio-primary input[type=radio]+label::after,.radio-primary input[type=radio]:checked+label::after{background-color:#1371b9}.radio-primary input[type=radio]:checked+label::before{border-color:#1371b9}.radio-danger input[type=radio]+label::after,.radio-danger input[type=radio]:checked+label::after{background-color:#f33}.radio-danger input[type=radio]:checked+label::before{border-color:#f33}.radio-info input[type=radio]+label::after,.radio-info input[type=radio]:checked+label::after{background-color:#22b1dd}.radio-info input[type=radio]:checked+label::before{border-color:#22b1dd}.radio-warning input[type=radio]+label::after,.radio-warning input[type=radio]:checked+label::after{background-color:#f7ba22}.radio-warning input[type=radio]:checked+label::before{border-color:#f7ba22}.radio-success input[type=radio]+label::after,.radio-success input[type=radio]:checked+label::after{background-color:#0fbd66}.radio-success input[type=radio]:checked+label::before{border-color:#0fbd66}.radio-purple input[type=radio]+label::after,.radio-purple input[type=radio]:checked+label::after{background-color:#4351a3}.radio-purple input[type=radio]:checked+label::before{border-color:#4351a3}.radio-pink input[type=radio]+label::after,.radio-pink input[type=radio]:checked+label::after{background-color:#ff4db2}.radio-pink input[type=radio]:checked+label::before{border-color:#ff4db2}.peity-bg{position:absolute;bottom:-6px;left:0;right:0}.widget-chart-1 .widget-detail-1{text-align:right;margin-left:80px;min-height:77px}.widget-box-2 .widget-detail-2 .badge{padding:5px 10px}.widget-user img{height:72px}.widget-user .wid-u-info{margin-left:90px}.widget-user .wid-u-info h4,.widget-user .wid-u-info p{white-space:nowrap;display:block;overflow:hidden;text-overflow:ellipsis}.inbox-widget .inbox-item{border-bottom:1px solid rgba(224,232,245,.5);overflow:hidden;padding:10px 0;position:relative}.inbox-widget .inbox-item .inbox-item-img{display:block;float:left;margin-right:15px;width:40px}.inbox-widget .inbox-item img{width:40px}.inbox-widget .inbox-item .inbox-item-author{color:#333;display:block;margin:0}.inbox-widget .inbox-item .inbox-item-text{color:#7490BD;display:block;font-size:12px;margin:0}.inbox-widget .inbox-item .inbox-item-date{color:#7490BD;font-size:11px;position:absolute;right:7px;top:10px}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.round,.tree li span{display:inline-block}.round.round-primary{background:#1371b9}.round.round-secondary{background:#6c2bd4}.round.round-success{background:#0fbd66}.round.round-danger{background:#f33}.round.round-warning{background:#f7ba22}.round.round-info{background:#22b1dd}.round.round-custom{background:#6c2bd4}.round.round-pink{background:#ff8acc}.round.round-purple{background:#4351a3}.round{line-height:83px;color:#fff;width:70px;height:70px;font-weight:400;text-align:center;border-radius:100%;background:#01c0c8}.fs i{font-size:30px}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.heading-border{border-bottom:1px solid #eaeaea}.rev-text h5{font-size:15px;margin-bottom:5px}.basic-gradient-alt{background:#328dff;background:-webkit-linear-gradient(bottom,#7279f7,#a37efc);background:linear-gradient(0deg,#7279f7,#a37efc)}.weather-shade img{position:absolute;top:0;right:73px;width:200px;height:auto}.tree li,sub,sup{position:relative}.f-50{font-size:50px}sup{top:-.5em}sub,sup{font-size:75%;line-height:0;vertical-align:baseline}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.text-dark{color:#343a40!important;font-weight:500}.border-pannel.follow-2 .media{border-bottom:1px solid #f1f1f1;padding:18px 30px}.tree{min-height:20px;margin-bottom:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tree li{list-style-type:none;margin:0;padding:10px 5px 0}.tree li::after,.tree li::before{content:'';left:-20px;position:absolute;right:auto}.tree li::before{border-left:1px solid #999;bottom:50px;height:100%;top:0;width:1px}.tree li::after{border-top:1px solid #999;height:20px;top:25px;width:25px}.tree li span{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;padding:3px 8px;text-decoration:none}.tree li.parent_li>span{cursor:pointer}.tree>ul>li::after,.tree>ul>li::before{border:0}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th,.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{border-color:#e0e8f5}.tree li:last-child::before{height:30px}.tree li.parent_li>span:hover,.tree li.parent_li>span:hover+ul li span{background:#eee;color:#000}.jstree-default .jstree-clicked{background:rgba(113,182,249,.4);box-shadow:none}.jstree-default .jstree-hovered{background:rgba(113,182,249,.2);box-shadow:none}.jstree-default .jstree-wholerow-clicked{background:rgba(113,182,249,.4)}.jstree-default .jstree-wholerow-hovered{background:rgba(113,182,249,.2)}.jstree-default .zmdi{font-size:16px}.progress{-webkit-box-shadow:none!important;background-color:#e9e9e9;box-shadow:none!important;height:10px;margin-bottom:18px;overflow:hidden}.progress-bar{box-shadow:none;font-size:8px;font-weight:600;line-height:12px;border-radius:50px}.progress.progress-sm{height:5px!important}.progress.progress-sm .progress-bar{font-size:8px;line-height:5px}.progress.progress-md{height:15px!important}.progress:last-child{margin-bottom:0}.progress.progress-md .progress-bar{font-size:10.8px;line-height:14.4px}.progress.progress-lg{height:20px!important}.progress-vertical,.progress-vertical-bottom{min-height:250px;height:250px;position:relative;display:inline-block;margin-bottom:0;margin-right:20px}.progress.progress-lg .progress-bar{font-size:12px;line-height:20px}.progress-bar-primary{background-color:#6c2bd4}.progress-bar-secondary{background-color:#007bff}.progress-bar-success{background-color:#0fbd66}.progress-bar-info{background-color:#22b1dd}.progress-bar-warning{background-color:#f7ba22}.progress-bar-danger{background-color:#f33}.progress-bar-inverse{background-color:#3b3e47}.progress-bar-purple{background-color:#4351a3}.progress-bar-pink{background-color:#ff4db2}.progress-bar-custom{background-color:#6481ae}.progress-bar-custom-alt{background-color:rgba(152,166,173,.2)}.progress-bar-primary-alt{background-color:rgba(108,43,212,.2)}.progress-bar-secondary-alt{background-color:rgba(0,123,255,.2)}.progress-bar-success-alt{background-color:rgba(16,196,105,.2)}.progress-bar-info-alt{background-color:rgba(53,184,224,.2)}.progress-bar-warning-alt{background-color:rgba(249,200,81,.2)}.progress-bar-danger-alt{background-color:rgba(255,91,91,.2)}.progress-bar-purple-alt{background-color:rgba(91,105,188,.2)}.progress-bar-inverse-alt{background-color:rgba(59,62,71,.2)}.progress-bar-pink-alt{background-color:rgba(255,138,204,.2)}.progress-animated{-webkit-animation-duration:5s;-webkit-animation-name:animationProgress;-webkit-transition:5s all;animation-duration:5s;animation-name:animationProgress;transition:5s all}.progress-vertical{width:10px}.progress-vertical .progress-bar{width:100%}.progress-vertical-bottom{width:10px}.progress-vertical-bottom .progress-bar{width:100%;position:absolute;bottom:0}.progress-vertical-bottom.progress-sm,.progress-vertical.progress-sm{width:5px!important}.progress-vertical-bottom.progress-sm .progress-bar,.progress-vertical.progress-sm .progress-bar{font-size:8px;line-height:5px}.progress-vertical-bottom.progress-md,.progress-vertical.progress-md{width:15px!important}.progress-vertical-bottom.progress-md .progress-bar,.progress-vertical.progress-md .progress-bar{font-size:10.8px;line-height:14.4px}.progress-vertical-bottom.progress-lg,.progress-vertical.progress-lg{width:20px!important}.progress-vertical-bottom.progress-lg .progress-bar,.progress-vertical.progress-lg .progress-bar{font-size:12px;line-height:20px}.table-box{display:table;height:100%;width:100%}.table-box .table-detail{display:table-cell;vertical-align:middle}.table{margin-bottom:10px}.table-hover>tbody>tr:hover,.table-striped>tbody>tr:nth-of-type(odd),.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f8f9fa!important}.table .thead-light th{color:#1a1a1a;background-color:#e0e8f5;border-color:#e0e8f5}.table>thead>tr>th{vertical-align:bottom}.table-borderless thead tr th{border-bottom:0!important}#datatable tr th,#datatable-buttons tr th,#key-table tr th,#selection-datatable tr th{border-bottom:0;border-top:0}.table-bordered{border-color:#e0e8f5}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e!important}.table .thead-color th{color:#fff;background-color:#7b41d8;border-color:#fff}.table-dark{color:#fff;background-color:#212529}.table-color{color:#fff;background-color:#7b41d8}.table-stripedcolor>tbody>tr:nth-of-type(even){background-color:#7b41d8!important;color:#fff}.table-stripeddark>tbody>tr:nth-of-type(odd){background-color:#212529!important;color:#fff}.table thead th{vertical-align:bottom;border-bottom:1px solid #dee2e6}table.focus-on tbody tr.focused td,table.focus-on tbody tr.focused th{background-color:#3b99f7;color:#fff}.table-hovercolor>tbody>tr:hover{background:#7b41d8;color:#fff}.table-hoverdark>tbody>tr:hover{background:#212529;color:#fff}table.dataTable td.focus,table.dataTable th.focus{background-color:#fff}table.dataTable tbody>tr.selected,table.dataTable tbody>tr>.selected{background-color:#3b99f7}.table-rep-plugin .dropdown-menu li.checkbox-row{padding:2px 15px!important}.table-rep-plugin .table-responsive{border:none!important}.table-rep-plugin tbody th{font-size:14px;font-weight:400}#tech-companies-1 tr th{border-bottom:0!important}.table-rep-plugin .checkbox-row{padding-left:40px}.table-rep-plugin .checkbox-row label{display:inline-block;padding-left:5px;position:relative}.table-rep-plugin .checkbox-row label::before{-o-transition:.3s ease-in-out;-webkit-transition:.3s ease-in-out;background-color:#fff;border-radius:3px;border:1px solid #6481ae;content:"";display:inline-block;height:17px;left:0;margin-left:-20px;position:absolute;transition:.3s ease-in-out;width:17px;outline:0!important}.table-rep-plugin .checkbox-row label::after{color:#f3f3f3;display:inline-block;font-size:11px;height:16px;left:0;margin-left:-20px;padding-left:3px;padding-top:1px;position:absolute;top:-1px;width:16px}.modal-block,.stepwizard,.table-add{position:relative}.table-rep-plugin .checkbox-row input[type=checkbox]{cursor:pointer;opacity:0;z-index:1;outline:0!important}.table-rep-plugin .checkbox-row input[type=checkbox]:disabled+label{opacity:.65}.table-rep-plugin .checkbox-row input[type=checkbox]:focus+label::before{outline-offset:-2px;outline:0}.table-rep-plugin .checkbox-row input[type=checkbox]:checked+label::after{content:"\f00c";font-family:FontAwesome;color:#7b41d8}.table-rep-plugin .checkbox-row input[type=checkbox]:disabled+label::before{background-color:#eee;cursor:not-allowed}.table-rep-plugin .checkbox-row input[type=checkbox]:checked+label::before{background-color:#fff;border-color:#7b41d8}.table-rep-plugin .sticky-table-header,.table-rep-plugin table.focus-on tbody tr.focused td,.table-rep-plugin table.focus-on tbody tr.focused th{background:#7b41d8;color:#fff;border-color:#7b41d8}.table-rep-plugin .sticky-table-header{top:58px!important}.table-rep-plugin .btn-default{background-color:#fff;border:1px solid rgba(67,89,102,.3)}.table-rep-plugin .btn-group.pull-right{float:right}.calendar,.dt-buttons,div#datatable-buttons_info{float:left}.table-rep-plugin .btn-group.pull-right .dropdown-menu{left:auto;right:0}@media (max-width:767px){.dataTables_wrapper .pagination{display:block!important}.table-rep-plugin .sticky-table-header{top:61px!important}}.table-rep-plugin .btn-toolbar{display:block}.modal-block{background:0 0;margin:40px auto;max-width:600px;padding:0;text-align:left}#datatable-editable .actions a{padding:5px}#datatable-editable .form-control{background-color:#fff;width:100%}#datatable-editable .fa-times,#datatable-editable .fa-trash-o{color:#f33}#datatable-editable .fa-pencil,#datatable-editable .fa-save{color:#0fbd66}.table-add{top:-8px}#datatable td{font-weight:400}.paginate_button{display:inline-block!important}div.dataTables_paginate ul.pagination{margin-top:30px}.dataTables_wrapper.zurb-full{max-width:100%}div.dataTables_info{padding-top:38px}table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child:before{box-shadow:0 0 3px fade(#435966,20%);background-color:#1371b9}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{background-color:#f33}table.dataTable td.focus,table.dataTable th.focus{outline:#7b41d8 solid 1px!important;outline-offset:-1px}.bootstrap-select .dropdown-toggle:focus,.ms-selectable{outline:0!important}.tablesaw thead{background:#f8f9fa;border:none}.tablesaw thead th{text-shadow:none;letter-spacing:.06em}.tablesaw thead tr:first-child th{padding-top:1.1em;padding-bottom:.9em;font-weight:600;font-family:inherit;border:none}.tablesaw tbody th,.tablesaw td{font-size:inherit;line-height:inherit;padding:10px!important}.tablesaw tbody tr,.tablesaw-stack tbody tr{border-bottom:none}.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after,.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after{font-family:FontAwesome;font-size:10px}.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after{content:"\f176"}.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after{content:"\f175"}.tablesaw-bar .btn-select.btn-micro:after,.tablesaw-bar .btn-select.btn-small:after{font-size:8px;padding-right:10px}.tablesaw-swipe .tablesaw-cell-persist{box-shadow:none}.tablesaw-enhanced .tablesaw-bar .btn{text-shadow:none;background-image:none}.tablesaw-enhanced .tablesaw-bar .btn.btn-select:hover{background:#fff}.tablesaw-enhanced .tablesaw-bar .btn:active,.tablesaw-enhanced .tablesaw-bar .btn:focus,.tablesaw-enhanced .tablesaw-bar .btn:hover{color:#1371b9!important;background-color:#e0e8f5;outline:0!important;box-shadow:none!important;background-image:none}.fc-button,.fc-day{background:#fff}.editable-checklist label{display:block}#calendar-1,#calendar1{max-width:600px;margin:auto}.calendar{margin-bottom:0}.fc-view{margin-top:30px}.none-border .modal-footer{border-top:none}.fc-button,.fc-widget-content,.fc-widget-header{border:1px solid #e0e8f5}.fc-toolbar{margin-bottom:5px;margin-top:15px}.fc-toolbar h2{font-size:18px;font-weight:600;line-height:30px}.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}.fc th.fc-widget-header{font-size:14px;line-height:20px;padding:10px 0}.fc-button{color:#555;text-transform:capitalize}.fc-text-arrow{font-family:inherit;font-size:16px}.fc-state-hover{background:#f3f3f3}.fc-cell-overlay,.fc-state-highlight{background:#f0f0f0}.fc-unthemed .fc-today{background:#fff}.fc-event{border-radius:2px;border:none;cursor:move;font-size:13px;margin:5px 7px;padding:5px;text-align:center}.external-event{color:#fff;cursor:move;margin:10px 0;padding:6px 10px}.fc-basic-view td.fc-day-number,.fc-basic-view td.fc-week-number span{padding-right:5px}.fc-content{color:#fff}.error{color:#f33;font-size:12px;font-weight:500}.dropify-wrapper{border:1px solid rgba(0,0,0,.125)}.editable-click,a.editable-click,a.editable-click:hover{border:none}.bootstrap-tagsinput{box-shadow:none;padding:3px 7px 6px;border:1px solid #c4d8f8;width:100%}.bootstrap-tagsinput .label-info{background-color:#f21f5d;display:inline-block;padding:0 8px;font-size:13px;margin:3px 1px;border-radius:3px}.ms-container{background:url(../images/multiple-arrow.png) 50% 50% no-repeat}.ms-container .ms-list{box-shadow:none;border:1px solid #c4d8f8}.ms-container .ms-list.ms-focus{border:1px solid #aaa;box-shadow:none}.ms-container .ms-selectable li.ms-elem-selectable,.ms-container .ms-selection li.ms-elem-selection{border:none;padding:5px 10px}.select2-container{width:100%!important}.select2-container .select2-selection--single{border:1px solid #ebebeb;height:38px}.select2-container .select2-selection--single .select2-selection__rendered{line-height:36px;padding-left:12px}.select2-container .select2-selection--single .select2-selection__arrow{height:34px;width:34px;right:3px}.select2-container .select2-selection--single .select2-selection__arrow b{border-color:#c8c8c8 transparent transparent;border-width:6px 6px 0}.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #c8c8c8!important;border-width:0 6px 6px!important}.select2-container--default .select2-search--dropdown .select2-search__field,.select2-dropdown{border:1px solid #e1e1e1}.select2-results__option{padding:6px 12px}.select2-container--default .select2-search--dropdown{padding:10px;background-color:#fbfbfb}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#3b99f7}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#eee;color:#435966}.select2-container--default .select2-results__option[aria-selected=true]:hover{background-color:#3b99f7;color:#fff}.select2-container .select2-selection--multiple{min-height:38px;border:1px solid #e1e1e1!important}.select2-container .select2-selection--multiple .select2-selection__rendered{padding:2px 10px}.select2-container .select2-selection--multiple .select2-search__field{margin-top:7px;border:0}.select2-container .select2-selection--multiple .select2-selection__choice{background-color:#6c2bd4;border:1px solid transparent;color:#fff;border-radius:3px;padding:0 7px}.select2-container .select2-selection--multiple .select2-selection__choice__remove{color:#fff;margin-right:5px}.select2-container .select2-selection--multiple .select2-selection__choice__remove:hover{color:#fff}.bootstrap-select:not([class*=zurb-div-]):not([class*=form-control]):not(.input-group-btn){width:100%!important}.bootstrap-select .glyphicon{padding-right:6px}.parsley-error{border-color:#f33!important}.parsley-errors-list{display:none;margin:0;padding:0}.parsley-errors-list.filled{display:block}.parsley-errors-list>li{font-size:12px;list-style:none;color:#f33}.datepicker-inline{width:0}.datepicker td,.datepicker th{border-radius:0!important}.datepicker-leftpannel,.datepicker-leftpannel .datepicker,.datepicker-leftpannel table{width:100%}.datepicker th{font-size:14px!important;padding:10px!important}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover,.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover,.datepicker table tr td.today,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today:hover{background-image:none}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active[disabled]{background-color:#3b99f7}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background-color:#3b99f7!important;background-image:none;box-shadow:none;text-shadow:none}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background-color:#fafafa}.datepicker-inline{border:0}.daterangepicker td.active,.daterangepicker td.active:hover{background-color:#1371b9;border-color:#1371b9}.daterangepicker .input-mini.active{border:1px solid #AAA}.daterangepicker .ranges li{border-radius:2px;color:#435966;font-weight:600;font-size:12px}.daterangepicker select.ampmselect,.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect{border:1px solid #c4d8f8;padding:2px;width:60px}.table-condensed th,.table-condensed tr td{border:1px solid #e0e8f5}.daterangepicker .ranges li.active,.daterangepicker .ranges li:hover{background-color:#1371b9;border:1px solid #1371b9}.search-input{margin-bottom:10px}.ms-selectable{box-shadow:none}.ms-container .ms-selectable li.ms-hover,.ms-container .ms-selection li.ms-hover{background-color:#6c2bd4}.bootstrap-timepicker-widget table td a:hover{background-color:transparent;border-color:transparent;border-radius:4px;color:#1371b9;text-decoration:none}.bootstrap-timepicker-widget table td input{border:none}.bootstrap-touchspin .input-group-addon{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.25;color:#435966;text-align:center;background-color:#eee;border:1px solid rgba(67,89,102,.15)}.bootstrap-touchspin .input-group-btn:not(:first-child)>.btn,.bootstrap-touchspin .input-group-btn:not(:first-child)>.btn-group{z-index:2;margin-left:-1px}.bootstrap-touchspin .input-group .form-control:not(:first-child),.bootstrap-touchspin .input-group-addon:not(:first-child),.bootstrap-touchspin .input-group-btn:not(:first-child)>.btn,.bootstrap-touchspin .input-group-btn:not(:first-child)>.btn-group>.btn,.bootstrap-touchspin .input-group-btn:not(:first-child)>.dropdown-toggle,.bootstrap-touchspin .input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn,.bootstrap-touchspin .input-group-btn:not(:last-child)>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.bootstrap-touchspin .input-group .form-control:not(:last-child),.bootstrap-touchspin .input-group-addon:not(:last-child),.bootstrap-touchspin .input-group-btn:not(:first-child)>.btn-group:not(:last-child)>.btn,.bootstrap-touchspin .input-group-btn:not(:first-child)>.btn:not(:last-child):not(.dropdown-toggle),.bootstrap-touchspin .input-group-btn:not(:last-child)>.btn,.bootstrap-touchspin .input-group-btn:not(:last-child)>.btn-group>.btn,.bootstrap-touchspin .input-group-btn:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.switchery-demo .switchery{margin-bottom:10px}.navtab-wizard li:first-of-type a,.navtab-wizard li:first-of-type a:active,.navtab-wizard li:first-of-type a:focus,.navtab-wizard li:first-of-type a:hover{border-left:none!important}.navtab-wizard li:last-of-type a,.navtab-wizard li:last-of-type a:active,.navtab-wizard li:last-of-type a:focus,.navtab-wizard li:last-of-type a:hover{border-right:none!important}.stepwizard-step p{margin-top:10px;color:#666;font-size:16px}.stepwizard-row{display:table-row}.stepwizard{display:table;width:100%}.stepwizard .btn.disabled,.stepwizard .btn[disabled],.stepwizard fieldset[disabled] .btn{opacity:1!important;color:#bbb}.stepwizard-row:before{top:14px;bottom:0;position:absolute;width:100%;height:1px;background-color:#ccc;z-index:0}.chart,.stepwizard-step{position:relative;text-align:center}.stepwizard-step{display:table-cell}.btn-circle{height:30px;text-align:center;padding:7px 12px;font-size:12px;line-height:1.428571429;border-radius:50%;background:#e0e8f5;color:#6666}.panel{margin-bottom:20px;background-color:#fff;border-radius:4px;box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24)}.panel-color>.panel-heading{color:#fff;background-color:#7b41d8;border-color:#7b41d8!important}.panel-heading{padding:.75rem 1.25rem;border-bottom:1px solid #e0e8f5;border-top-right-radius:3px;border-top-left-radius:3px}.panel-color{border-color:#7b41d8}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-body{padding:15px}.panel-body:after,.panel-body:before{display:table}.chart,.chartist-tooltip,.percent{display:inline-block}.mce-content-body p{color:#9398a0;font-size:14px;font-weight:300}.mce-popover .mce-arrow:after{border-bottom-color:red}.mce-popover .mce-colorbutton-grid{margin:0;border:1px solid #d7dce5!important;padding:4px}.mce-reset .mce-window-head{border-bottom:1px solid #d7dce5}.mce-reset .mce-window-head .mce-title{color:#707780;font-size:16px;font-weight:400}.mce-reset .mce-textbox{border-radius:0;box-shadow:none;outline:0;border-color:#d7dce5;height:30px;font-weight:300;line-height:30px;color:#aaa;font-size:14px}.mce-reset .mce-textbox:focus{box-shadow:none;border-color:#3b99f7}.mce-reset .mce-checkbox .mce-ico{background-image:none;background-color:#fff;border-radius:0;border:1px solid #d7dce5}.mce-reset .mce-checkbox .mce-label{color:#707780;font-size:12px;font-weight:400}.mce-container{border-radius:0!important;border-width:0!important}.mce-container .mce-menubar,.note-editor.note-frame{border:1px solid #d7dce5!important}.mce-container .mce-menubar{background-color:#f2f4f7!important;padding:2px}.mce-container .mce-menubar .mce-btn button span{color:#707780;font-size:14px;font-weight:400;text-transform:capitalize}.mce-container .mce-btn button,.mce-container .mce-primary button{color:#fff;text-shadow:none;font-weight:400;font-size:14px}.mce-container .mce-menubar .mce-btn button .mce-caret{border-top-color:#707780}.mce-container .mce-menubar .mce-btn button:hover,.mce-container .mce-menubar .mce-btn.mce-active button{background-color:#e8ebf1}.mce-container .mce-btn{background-color:#d7dce5;background-image:none;outline:0;border:0;border-radius:0}.mce-container .mce-btn:hover{background-color:#b8c1d1;background-image:none}.mce-container .mce-primary{background-color:#3b99f7;background-image:none;outline:0;border:0;border-radius:0}.mce-container .mce-primary:hover{background-color:#0c7cd5;background-image:none}.mce-container .mce-toolbar-grp{background-color:#f2f4f7!important;border:1px solid #d7dce5!important;border-top-width:0!important;padding:6px}.mce-container .mce-edit-area{border:1px solid #d7dce5!important;border-width:0 1px!important}.mce-container .mce-statusbar{background-color:#f2f4f7!important;border:1px solid #d7dce5!important}.mce-container .mce-btn-group .mce-btn,.mce-container .mce-btn-group .mce-btn:focus,.mce-container .mce-btn-group .mce-btn:hover{box-shadow:none;background-color:#fff;background-image:none}.mce-container .mce-statusbar .mce-path .mce-path-item{color:#707780;font-size:14px;font-weight:400}.mce-container .mce-widget{color:#9398a0;font-size:14px;font-weight:400;border-left:1px solid transparent}.mce-container .mce-btn-group{border:1px solid #e9ecf2!important}.mce-container .mce-btn-group .mce-btn{border-width:0;border-radius:0!important}#toast-container>:hover,#toast-container>div{box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)}.mce-container .mce-btn-group .mce-btn button span{color:#707780;font-size:14px;font-weight:300}.mce-container .mce-btn-group .mce-btn button .mce-caret,.mce-container .mce-ico{color:#707780;font-size:14px}.mce-container .mce-panel{background-image:none}.mce-container.mce-menu{border:1px solid #d7dce5!important}.mce-container.mce-menu .mce-menu-item{background-image:none}.mce-container.mce-menu .mce-menu-item .mce-ico{color:#3b99f7;font-size:14px}.mce-container.mce-menu .mce-menu-item .mce-text{color:#707780;font-size:14px;font-weight:400;text-transform:capitalize}.mce-container.mce-menu .mce-menu-item .mce-menu-shortcut{color:#aaa;font-size:12px;font-weight:300;text-transform:capitalize}.chart-detail-list li h5,.home-text,.percent{font-weight:600}.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background-color:#3b99f7}.mce-container.mce-menu .mce-menu-item-sep,.mce-container.mce-menu .mce-menu-item-sep:hover,.mce-container.mce-menu .mce-menu-item.mce-disabled.mce-selected,.mce-container.mce-menu .mce-menu-item.mce-disabled:focus,.mce-container.mce-menu .mce-menu-item.mce-disabled:hover{background-color:#d7dce5}.mce-container.mce-menu .mce-menu-item.mce-selected .mce-ico,.mce-container.mce-menu .mce-menu-item.mce-selected .mce-menu-shortcut,.mce-container.mce-menu .mce-menu-item.mce-selected .mce-text,.mce-container.mce-menu .mce-menu-item:focus .mce-ico,.mce-container.mce-menu .mce-menu-item:focus .mce-menu-shortcut,.mce-container.mce-menu .mce-menu-item:focus .mce-text,.mce-container.mce-menu .mce-menu-item:hover .mce-ico,.mce-container.mce-menu .mce-menu-item:hover .mce-menu-shortcut,.mce-container.mce-menu .mce-menu-item:hover .mce-text{color:#fff}.mce-container.mce-menu .mce-menu-item.mce-disabled .mce-ico,.mce-container.mce-menu .mce-menu-item.mce-disabled .mce-menu-shortcut,.mce-container.mce-menu .mce-menu-item.mce-disabled .mce-text{color:#aaa}.mce-container.mce-menu .mce-menu-item.mce-disabled.mce-selected .mce-ico,.mce-container.mce-menu .mce-menu-item.mce-disabled.mce-selected .mce-menu-shortcut,.mce-container.mce-menu .mce-menu-item.mce-disabled.mce-selected .mce-text,.mce-container.mce-menu .mce-menu-item.mce-disabled:focus .mce-ico,.mce-container.mce-menu .mce-menu-item.mce-disabled:focus .mce-menu-shortcut,.mce-container.mce-menu .mce-menu-item.mce-disabled:focus .mce-text,.mce-container.mce-menu .mce-menu-item.mce-disabled:hover .mce-ico,.mce-container.mce-menu .mce-menu-item.mce-disabled:hover .mce-menu-shortcut,.mce-container.mce-menu .mce-menu-item.mce-disabled:hover .mce-text{color:#fff}.mce-menubtn button{color:#435966!important}.mce-menu-item-normal.mce-active{background-color:#3b99f7!important}.mce-menu-item-normal.mce-active .mce-text{color:#fff!important}#toast-container>div{opacity:1}#toast-container>:hover{opacity:.9}.toast{background-color:#3b99f7}.toast-success{background-color:rgba(16,196,105,.8);border:2px solid #0fbd66}.toast-error{background-color:rgba(255,91,91,.8);border:2px solid #f33}.toast-info{background-color:rgba(53,184,224,.8);border:2px solid #22b1dd}.toast-warning{background-color:rgba(249,200,81,.8);border:2px solid #f7ba22}.swal2-modal{box-shadow:0 10px 33px rgba(0,0,0,.1)!important}.pricing .price .price-title,.pricing .price ul li{font-family:"Open Sans",sans-serif}.swal2-modal .swal2-title{font-size:28px}.swal2-modal .swal2-content{font-size:16px}.swal2-modal .swal2-spacer{margin:10px 0}.swal2-modal .swal2-file,.swal2-modal .swal2-input,.swal2-modal .swal2-textarea{border:2px solid #6481ae;font-size:16px;box-shadow:none!important}.swal2-icon.swal2-question{color:#3b99f7;border-color:#3b99f7}.swal2-icon.swal2-success,.swal2-icon.swal2-success .placeholder,.swal2-icon.swal2-success .swal2-success-ring{border-color:#0fbd66}.swal2-icon.swal2-success .line,.swal2-icon.swal2-success [class^=swal2-success-line],.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{background-color:#0fbd66}.swal2-icon.swal2-warning{color:#f7ba22;border-color:#f7ba22}.swal2-icon.swal2-error{border-color:#f33}.swal2-icon.swal2-error .line{background-color:#f33}.swal2-modal .swal2-file:focus,.swal2-modal .swal2-input:focus,.swal2-modal .swal2-textarea:focus{outline:0;border:2px solid #3b99f7}.morris-donut{height:282px}.morris-bar{height:310px!important}#chartdiv{width:100%;height:510px}.morris-hover.morris-default-style{border-radius:5px;padding:10px 12px;background:rgba(0,0,0,.5);border:none;color:#fff!important}.morris-hover.morris-default-style .morris-hover-point{color:#f4f8fb!important}.chart-detail-list li{margin:0 10px}.mirror-red{color:#f21f59}.mirror-pink{color:#e33a84}.mirror-orange{color:#fb5020}.mirror-blue{color:#6438c5}.mirror-green{color:#57a94f}.mirror-darkgreen{color:#105c83}.pieLabel div{font-size:14px!important}.chart{width:110px;height:110px;margin-top:20px;margin-bottom:20px}.chart canvas{position:absolute;top:0;left:0}.chart.chart-widget-pie{margin-top:5px;margin-bottom:5px}.percent{line-height:110px;z-index:2;font-size:18px;color:maroon}.percent:after{content:'%';margin-left:.1em;font-size:.8em}.timeline-item.alt:after,.timeline-item:before,.timeline:before{content:""}#flotTip{padding:8px 12px;background-color:rgba(0,0,0,.3);z-index:100;color:#fff;opacity:.9;font-size:13px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.chartheight{height:320px!important}.dh{height:260px}.legend tr{height:20px}.legendLabel{padding-left:5px!important;line-height:10px;padding-right:10px}.jqstooltip{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;background-color:#435966!important;padding:5px 10px!important;-webkit-border-radius:3px;border-radius:3px;-moz-border-radius:3px;border-color:#435966!important}.jqsfield{font-size:12px!important;line-height:18px!important}.ct-golden-section:before{float:none}.ct-chart{max-height:300px}.ct-chart1{max-height:307px}.ct-chart .ct-label{fill:#a3afb7;color:#a3afb7;font-size:12px;line-height:1}.ct-grid{stroke:rgba(67,89,102,.15)}.ct-chart.simple-pie-chart-chartist .ct-label{color:#fff;fill:#fff;font-size:16px}.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:#a185f9}.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:#f21f5d}.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:#fb5020}.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:#57a94f}.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:#105c83}.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:#ac3ba9}.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:#e33a84}.ct-series-a .ct-area,.ct-series-a .ct-slice-pie{fill:#871faf}.ct-series-b .ct-area,.ct-series-b .ct-slice-pie{fill:#e33a84}.ct-series-c .ct-area,.ct-series-c .ct-slice-pie{fill:#47dfe2}.ct-series-d .ct-area,.ct-series-d .ct-slice-pie{fill:#3b99f7}.chartist-tooltip{position:absolute;opacity:0;min-width:10px;padding:2px 10px;border-radius:3px;background:rgba(0,0,0,.6);color:#fff;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}.circliful-chart{margin:0 auto}.circle-info,.circle-info-half,.circle-text,.circle-text-half{font-size:12px;font-weight:600}.circle-info,.circle-info-half{color:#101010}.home-wrapper{margin:15% 0}.home-wrapper h1{font-size:60px}#count-down{margin-top:30px}#count-down .clock-presenter{height:140px;line-height:30px;padding:0 30px;text-align:center}#count-down .clock-presenter .digit{margin-top:20px;font-size:60px;line-height:60px;height:60px;display:inline-block;overflow:hidden;text-align:center;position:relative;cursor:default}#count-down .clock-presenter .note{position:relative;bottom:0;padding-top:5px;cursor:default;font-size:16px;opacity:.7}@media (max-width:992px){#count-down .clock-presenter .digit{font-size:42px}}@media (max-width:767px){#count-down .clock-presenter{width:50%;float:left}#count-down .clock-presenter .digit{font-size:36px}#count-down .hours_dash{border-right:none}}.timeline{border-collapse:collapse;border-spacing:0;display:table;margin-bottom:50px;position:relative;table-layout:fixed;width:100%}.timeline .time-show{margin-bottom:30px;margin-right:-75px;margin-top:30px;position:relative}.timeline .time-show a{color:#fff}.timeline:before{background-color:rgba(152,166,173,.3);bottom:0;left:50%;position:absolute;top:30px;width:2px;z-index:0}.timeline .timeline-icon{-webkit-border-radius:50%;background:#6481ae;border-radius:50%;color:#fff;display:block;height:21px;left:-54px;margin-top:-11px;position:absolute;text-align:center;top:50%;width:21px}.timeline .timeline-icon i{color:#e0e8f5}.timeline .time-icon:before{font-size:16px;margin-top:5px}h3.timeline-title{color:#6481ae;font-size:20px;font-weight:400;margin:0 0 5px;text-transform:uppercase}.timeline-item .timeline-desk .arrow,.timeline-item.alt .timeline-desk .arrow-alt{border-bottom:8px solid transparent;border-top:8px solid transparent;height:0;margin-top:-10px;position:absolute;top:50%}.timeline-item{display:table-row}.timeline-item:before{display:block;width:50%}.timeline-item .timeline-desk .arrow{border-right:8px solid #fff!important;display:block;left:-7px;width:0}.timeline-item.alt:after{display:block;width:50%}.timeline-item.alt .timeline-desk .arrow-alt{border-left:8px solid #fff!important;display:block;left:auto;right:-7px;width:0}.timeline-item.alt .timeline-desk .album{float:right;margin-top:20px}.timeline-item.alt .timeline-desk .album a{float:right;margin-left:5px}.timeline-item.alt .timeline-icon{left:auto;right:-57px}.timeline-item.alt:before{display:none}.timeline-item.alt .panel{margin-left:0;margin-right:45px}.timeline-item.alt .panel .panel-body p+p{margin-top:10px!important}.timeline-desk{display:table-cell;vertical-align:top;width:50%}.timeline-desk h4{font-size:16px;font-weight:500;margin:0}.timeline-desk .panel{background:#fff;display:block;margin-bottom:5px;margin-left:45px;position:relative;text-align:left;padding:20px}.timeline-desk h5 span{color:#797979;display:block;font-size:12px;margin-bottom:4px}.timeline-desk p{color:#101010;font-size:14px;margin-bottom:0}.timeline-desk .album{margin-top:12px}.timeline-desk .album a{float:left;margin-right:5px}.timeline-desk .album img{height:50px;width:auto;border-radius:3px}.timeline-desk .notification{background:#fff;margin-top:20px;padding:8px}.timelineleft{position:relative;margin:0 0 30px;padding:0;list-style:none}.timelineleft:before{content:'';position:absolute;top:0;bottom:0;width:2px;background:rgba(152,166,173,.3);left:31px;margin:0;border-radius:2px}.timelineleft>li{position:relative;margin-right:10px;margin-bottom:15px}.timelineleft>li:after,.timelinelft>li:before{content:" ";display:table}.timelineleft>.timeleft-label>span{font-weight:600;padding:5px;display:inline-block;background-color:#fff;color:#fff;border-radius:4px}.timelineleft>li>.timelineleft-item{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24);border-radius:3px;margin-top:0;background:#fff;color:#444;margin-left:60px;margin-right:15px;padding:0;position:relative}.timelineleft>li>.timelineleft-item>.time{color:#999;float:right;padding:10px;font-size:12px}.timelineleft>li>.timelineleft-item>.timelineleft-header{margin:0;color:#555;border-bottom:1px solid #e0e8f5;padding:.75rem 1.25rem;font-size:16px;line-height:1.1}.timelineleft>li>.timelineleft-item>.timelineleft-header>a{font-weight:500;font-size:14px}.timelineleft-body img{width:150px;height:100px}.timelineleft>li>.timelineleft-item>.timelineleft-body,.timelineleft>li>.timelineleft-item>.timelineleft-footer{padding:.75rem 1.25rem}.timelineleft-body{font-size:14px}.timelineleft>li>.fa,.timelineleft>li>.glyphicon,.timelineleft>li>.ion{width:30px;height:30px;font-size:15px;line-height:30px;position:absolute;color:#fff;background:#d2d6de;border-radius:50%;text-align:center;left:18px;top:0}.portfolioFilter a{-o-transition:all .3s ease-out;transition:all .3s ease-out;color:#333;font-weight:400;padding:5px 25px;border-radius:50px;display:inline-block;margin-bottom:5px}.portfolioFilter a.current,.portfolioFilter a:hover{color:#fff;background:#6c2bd4}.thumb{background-color:#fff;border-radius:3px;margin-top:20px;width:100%;box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24);padding:10px}.thumb-img{border-radius:2px;overflow:hidden;width:100%}.gal-detail h4{margin-top:16px;font-weight:500;padding:0 5px}.gal-detail p{padding:0 5px;font-size:13px}.icon-main{font-size:88px;margin-bottom:50px}.maintenance-page{margin:10% 0}.gmaps,.gmaps-panaroma{height:300px;background:#eee;border-radius:3px}.gmaps-overlay{display:block;text-align:center;color:#fff;font-size:16px;line-height:40px;background:#3b99f7;border-radius:4px;padding:10px 20px}.gmaps-overlay_arrow{left:50%;margin-left:-16px;width:0;height:0;position:absolute}.gmaps-overlay_arrow.above{bottom:-15px;border-left:16px solid transparent;border-right:16px solid transparent;border-top:16px solid #3b99f7}.gmaps-overlay_arrow.below{top:-15px;border-left:16px solid transparent;border-right:16px solid transparent;border-bottom:16px solid #3b99f7}.jvectormap-zoomin,.jvectormap-zoomout{width:10px;height:10px;line-height:10px}.jvectormap-zoomout{top:40px}.gmaph{height:400px}.worldh{height:500px}.stateh{height:400px}div.hopscotch-bubble{border:2px solid #e0e8f5;border-radius:5px}div.hopscotch-bubble .hopscotch-next{background-color:#0da559!important;background-image:none!important;border-color:#0da559!important;text-shadow:none!important;margin:0 0 0 5px!important}div.hopscotch-bubble .hopscotch-prev{background-color:#bd2130!important;background-image:none!important;border-color:#bd2130!important;text-shadow:none!important;color:#fff!important}div.hopscotch-bubble .hopscotch-bubble-number{background:#9567e0;padding:0;border-radius:50%}div.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow-border{border-right:19px solid #fff}div.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow{border-left:19px solid #fff;left:-3px}div.hopscotch-bubble .hopscotch-bubble-arrow-container.right{right:-37px}div.hopscotch-bubble .hopscotch-bubble-arrow-container.left{left:-19px}div.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow{border:none}div.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow-border{border-left:0 solid #117a8b}div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow{border-bottom:19px solid #fff;top:0}div.hopscotch-bubble .hopscotch-bubble-arrow-container.up{top:-19px}div.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow-border{border-bottom:0 solid rgba(0,0,0,.5)}div.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow{border-top:19px solid #fff;top:-3px}div.hopscotch-bubble .hopscotch-bubble-arrow-container.down{bottom:-37px}div.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow-border{border-top:0 solid rgba(0,0,0,.5)}.pricing .price{background-color:#fff;text-align:center;border-radius:2px}.pricing .price.active.standard:hover{box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.pricing .price.transparent{background-color:transparent;border:2px solid #fff}.pricing .price .price-title{font-size:16px;line-height:26px;letter-spacing:0;padding:10px;background:#fff}.pricing .price .price-number{font-size:35px;line-height:50px;color:#323232;font-weight:500;margin:10px}.pricing .price .price-number span{font-size:12px}.pricing .price ul li{line-height:24px;letter-spacing:.5px;font-weight:400;padding:10px 20px}.pricing .price ul.style{list-style:none}.pricing .price ul.style li{position:relative;padding-left:26px;color:#323232}.pricing .price.active{box-shadow:0 6px 30px 0 rgba(0,0,0,.2);z-index:1;top:-30px}.gu-mirror,.wrapper-page .zurb-div-box{box-shadow:0 0 24px 0 rgba(0,0,0,.06),0 1px 0 0 rgba(0,0,0,.02)}@media screen and (max-width:767px){.pricing .price.active.standard{top:0;margin-bottom:20px}}.pricing .price.active.standard{top:0}.pricing .price.active.transparent{border:2px solid transparent;background-color:#fff}.pricing .price ul{margin-bottom:0;list-style:none;padding:0}.pricing .price ul li{font-size:14px;border-bottom:1px solid rgba(0,0,0,.05)}.pricing .price ul li span{font-weight:600;color:#ab824f}.pricing .price .price-footer{padding:20px}.pricing .zurb-div-md-4:nth-child(1).price{margin-right:-15px}.pricing .zurb-div-md-4:nth-child(3).price{margin-left:-15px}.defalutborder{border:1px solid rgba(123,65,216,.3)}.pinkborder{border:1px solid rgba(255,102,188,.2)}.dangerborder{border:1px solid rgba(255,40,40,.2)}.successborder{border:1px solid rgba(13,163,87,.2)}.pt-6-header--caption{display:inline-block;margin-bottom:0;padding:0 0 5px;border-bottom:1px solid #6c2bd4;color:#303030;font-size:14px;font-weight:300;letter-spacing:.12em}.pt-6-header--price{margin:10px 0;color:#303030;font-size:50px;font-weight:400;line-height:55px}.pt-6-header--price span{font-size:24px;font-weight:500}.pt-6-header--plan,.pt-6-header--plandanger,.pt-6-header--planpink,.pt-6-header--plansuccess{padding:20px 0;background-color:#fff;font-size:22px;font-weight:700;text-transform:capitalize}.pt-6-header--plan{color:#6c2bd4}.pt-6-header--plandanger{color:#bd2130}.pt-6-header--planpink{color:#ff66bc}.pt-6-header--plansuccess{color:#0da357}.pt-6--body ul{margin:0;padding:5px 0 0;list-style:none}.pt-6--body ul li{padding:10px 20px;border-bottom:1px solid rgba(0,0,0,.05);color:#101010;font-weight:300}.pt-6--footer{padding:20px 0}.pricing-column{position:relative;margin-bottom:40px}.pricing-column .plan-price,.pricing-column .plan-title{margin-bottom:10px;font-family:Quicksand,sans-serif}.pricing-column .inner-box{position:relative;padding:0 0 50px}.pricing-column .plan-header{position:relative;padding:30px 20px 25px}.pricing-column .plan-title{font-size:16px;color:#1371b9;text-transform:uppercase;letter-spacing:1px;font-weight:400}.pricing-column .plan-price{font-size:48px;color:#435966}.pricing-column .plan-duration{font-size:13px;color:#6481ae}.pricing-column .plan-stats{position:relative;padding:30px 20px 15px}.pricing-column .plan-stats li{margin-bottom:15px;line-height:24px}.gu-mirror,.gu-mirror .zurb-div-box{margin-bottom:0!important}.taskboard-box ul.task-list{min-height:50px}.kanban-box .checkbox-wrapper{float:left}.kanban-box .checkbox-wrapper .checkbox{margin-top:3px}.kanban-box .kanban-detail h4{margin-top:0;font-size:15px;font-weight:500;font-family:Quicksand,sans-serif}.kanban-box .kanban-detail h4 a{color:#435966}.kanban-box .kanban-detail ul li a{display:inline-block}.kanban-box .kanban-detail ul li a i{font-size:16px;color:#6481ae;padding:0 5px;line-height:32px}.gu-mirror{border:1px solid rgba(67,89,102,.1)!important;opacity:1}.project-sort-item .form-group{margin-right:30px}.project-sort-item .form-group:last-of-type{margin-right:0}.project-box{position:relative}.project-box .badge{position:absolute;right:20px}.project-box h4{display:block;width:100%;overflow:hidden;font-weight:600}.project-box ul li{padding-right:30px}.project-box .project-members a{margin:3px;display:inline-block}.project-box .project-members a:first-of-type{margin-left:0}.account-pages{background-image:linear-gradient(110deg,#04A8FB 1%,#871faf 100%);position:absolute;height:100%;top:0;width:100%;background-size:cover}.wrapper-page{margin:5% auto;position:relative}.wrapper-page .logo{font-size:42px;font-family:Quicksand,sans-serif;color:#6438c5}.wrapper-page .logo span span{color:#4f94f4}.panel-pages{border-radius:6px}.panel-pages .panel-body{padding:30px}.panel-pages .panel-heading{-moz-border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;padding:40px 20px;position:relative}.panel-pages .panel-heading h3,.user-thumb{position:relative;z-index:999}.user-thumb img{height:88px;margin:0 auto;width:88px}.ex-page-content .text-error{color:#fff;font-size:10em;font-weight:700}.ex-page-content .text-error i{font-size:130px;padding:0 10px}.nano{position:relative;width:100%;height:100%;overflow:hidden;background:#fff;border-radius:12px}.nano>.nano-content{position:absolute;overflow:scroll;overflow-x:hidden;top:0;right:0;bottom:0;left:0}.nano>.nano-content:focus{outline:0}.nano>.nano-content::-webkit-scrollbar{visibility:hidden}.has-scrollbar>.nano-content::-webkit-scrollbar{visibility:visible}.nano>.nano-pane{background:rgba(152,166,173,.1);position:absolute;width:7px;right:8px;top:8px;bottom:8px;visibility:hidden\9;opacity:.01;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s}.nano>.nano-pane>.nano-slider{background:rgba(152,166,173,.35);position:relative;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-transition-property:background;-moz-transition-property:background;-o-transition-property:background;transition-property:background}.nano>.nano-pane.active>.nano-slider,.nano>.nano-pane:hover>.nano-slider{background:#A6A6A6}.nano-pane.active,.nano-pane.flashed,.nano:hover>.nano-pane{visibility:visible\9;opacity:.99}.bg-picture{padding:30px}.profile-info-name img{width:100px}.profile-info-detail{overflow:hidden}.profile-pills li a{padding:0 10px;display:block;line-height:30px!important}.profile-pills li a i{font-size:14px}.comment{padding-top:12px}.comment .comment-avatar{position:relative;-webkit-border-radius:3px;-webkit-background-clip:padding-box;-moz-border-radius:3px;-moz-background-clip:padding;border-radius:3px;background-clip:padding-box;display:block;float:left;height:40px;width:40px}.comment .comment-body{float:none;margin-left:40px;position:relative}.comment .comment-text{border-radius:2px;padding:7px 12px 8px}.comment .comment-header{font-size:12px;padding-bottom:2px}.comment .comment-header a{color:#0d0d0d;font-weight:700}.comment .comment-header span{color:#6481ae;display:inline-block;font-size:11px;margin-left:5px}.comment .comment-footer{display:block;font-size:12px;padding:4px 12px 0}.comment .comment-footer i{font-size:13px;margin-right:7px}.comment .comment-footer,.comment .comment-footer a{color:rgba(67,89,102,.5)}.comment .comment-footer a:hover,.comment .comment-footer:hover{color:#3b99f7}.comment>.comment{margin-left:32px!important}.zurb-full{max-width:1200px}.page-title-box{padding:22px 0}.page-title-box .page-title{font-size:20px;margin-bottom:0;margin-top:0;font-weight:600}#topnav{position:relative;right:0;left:0;top:0;z-index:1030;border:0;-webkit-transition:all .5s ease;transition:all .5s ease;min-height:60px;background:#fff;box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24)}#topnav .has-submenu.active .submenu li.active>a,#topnav .has-submenu.active a,#topnav .has-submenu.active a i{color:#7490BD}#topnav .topbar-main{background-image:linear-gradient(110deg,#04A8FB 1%,#871faf 100%)}#topnav .topbar-main .logo{color:#fff!important;font-size:20px;font-weight:700;letter-spacing:1px;line-height:58px;text-transform:uppercase;float:left;position:relative;z-index:5}#topnav .topbar-main .logo-small{display:none}#topnav .topbar-main .badge-topbar{position:absolute;top:7px;right:7px;z-index:99}#topnav .topbar-main .nav>li>a{height:36px;width:36px;padding:0;font-size:24px;line-height:35px;text-align:center;border-radius:50%;margin:12px 8px;color:rgba(255,255,255,.7)}#topnav .topbar-main .dropdown-menu-lg .list-group,#topnav .topbar-main .dropdown-menu-lg .media-heading{margin-bottom:0}#topnav .topbar-main .nav>li>a:focus,#topnav .topbar-main .nav>li>a:hover{background-color:rgba(67,89,102,.1);color:#7490BD}.dropdown-item:focus,.dropdown-item:hover{background-color:#f8f9fa}#topnav .topbar-main .dropdown-menu-lg .list-group-item{border:none;padding:10px 20px}#topnav .topbar-main .dropdown-menu-lg .media-body p{color:#828282}#topnav .topbar-main .navbar-nav{margin:0}#topnav .topbar-main .topbar-right-menu li{float:left;z-index:2;position:relative}#topnav .navbar-toggle{border:0;position:relative;padding:0;margin:0;color:#fff;cursor:pointer}#topnav .navbar-toggle:hover{background-color:transparent}#topnav .navbar-toggle:hover span{background-color:#fff}#topnav .navbar-toggle:focus{background-color:transparent}#topnav .navbar-toggle:focus span{background-color:#fff}#topnav .navbar-toggle .lines{width:25px;display:block;position:relative;margin:10px 10px 0 0;padding-top:13px;height:44px;-webkit-transition:all .5s ease;transition:all .5s ease}#topnav .navbar-toggle span{height:2px;width:100%;background-color:rgba(255,255,255,.8);display:block;margin-bottom:5px;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease}#topnav .navbar-toggle.open span{position:absolute}#topnav .navbar-toggle.open span:first-child{top:18px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#topnav .navbar-toggle.open span:nth-child(2){visibility:hidden}#topnav .navbar-toggle.open span:last-child{width:100%;top:18px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#topnav .navigation-menu{list-style:none;margin:0;padding:0}#topnav .navigation-menu>li{display:inline-block;position:relative}#topnav .navigation-menu>li>a{display:block;color:#7490BD;font-weight:500;font-size:15px;-webkit-transition:all .5s ease;transition:all .5s ease;line-height:20px;padding-left:20px;padding-right:20px}#topnav .navigation-menu>li>a:active,#topnav .navigation-menu>li>a:focus,#topnav .navigation-menu>li>a:hover{color:#6c2bd4}#topnav .navigation-menu>li>a i{font-size:16px;margin-right:5px;-webkit-transition:all .5s ease;transition:all .5s ease;vertical-align:text-top;line-height:20px}#topnav .navigation-menu>li>a:focus,#topnav .navigation-menu>li>a:hover{background-color:transparent}@media (max-width:1024px){.datepicker th{font-size:14px!important;padding:5px!important}.datepicker-inline{width:90%}}@media (max-width:640px){.hide-bread{display:none}.mail-box .sm-side{width:100px}}@media (min-width:992px){#topnav .navigation-menu>li>a{padding-top:20px;padding-bottom:20px}#topnav .navigation-menu>li:first-of-type>a{padding-left:0}#topnav .navigation-menu>li.last-elements .submenu{left:auto;right:-341px}#topnav .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu{left:auto;right:100%;margin-left:0;margin-right:10px}#topnav .navigation-menu>li:hover a{color:#6c2bd4}#topnav .navigation-menu>li:hover a i{color:#7490BD}#topnav .navigation-menu>li>ul>li.has-submenu:active>a,#topnav .navigation-menu>li>ul>li.has-submenu:hover>a{color:#6c2bd4}#topnav .navigation-menu>li .submenu{position:absolute;top:100%;left:0;z-index:1000;box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24);padding:15px 0;list-style:none;min-width:200px;text-align:left;visibility:hidden;opacity:0;margin-top:10px;-webkit-transition:all .2s ease;transition:all .2s ease;background-color:#fff}#topnav .navigation-menu>li .submenu.megamenu{white-space:nowrap;width:auto}#topnav .navigation-menu>li .submenu.megamenu>li{overflow:hidden;width:193.5px;display:inline-block;vertical-align:top}#topnav .navigation-menu>li .submenu>li.has-submenu>a:after{content:"\F142";font-family:"Material Design Icons";position:absolute;right:20px;top:5px;font-size:18px}#topnav .navigation-menu>li .submenu>li .submenu{left:100%;top:0;margin-left:10px;margin-top:-1px}#topnav .navigation-menu>li .submenu li{position:relative}#topnav .navigation-menu>li .submenu li ul{list-style:none;padding-left:0;margin:0}#topnav .navigation-menu>li .submenu li a{display:block;padding:8px 25px;clear:both;white-space:nowrap;font-size:15px;color:#7490BD;-webkit-transition:all .35s ease;transition:all .35s ease}#topnav .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav .navigation-menu>li .submenu li span{display:block;padding:8px 25px;clear:both;line-height:1.42857143;white-space:nowrap;font-size:10px;text-transform:uppercase;letter-spacing:2px;color:#435966}#topnav .navbar-toggle{display:none}#topnav #navigation{display:block!important}}@media (max-width:991px){.wrapper{padding-top:60px}.zurb-contents{width:auto!important}#topnav .navigation-menu{float:none;max-height:400px;text-align:left}#topnav .navigation-menu>li{display:block}#topnav .navigation-menu>li>a{color:#435966;padding:15px}#topnav .navigation-menu>li>a i{display:inline-block;margin-right:10px;margin-bottom:0;vertical-align:inherit}#topnav .navigation-menu>li>a:after{position:absolute;right:15px}#topnav .navigation-menu>li .submenu{display:none;list-style:none;padding-left:20px;margin:0}#topnav .navigation-menu>li .submenu li a{display:block;position:relative;padding:7px 20px;color:#435966}#topnav .navigation-menu>li .submenu li a:hover{color:#6c2bd4}#topnav .navigation-menu>li .submenu li.has-submenu>a:after{content:"\F140";font-family:"Material Design Icons";position:absolute;right:30px}#topnav .navigation-menu>li .submenu.open{display:block}#topnav .navigation-menu>li .submenu .submenu{display:none;list-style:none}#topnav .navigation-menu>li .submenu .submenu.open{display:block}#topnav .navigation-menu>li .submenu.megamenu>li>ul{list-style:none;padding-left:0}#topnav .navigation-menu>li .submenu.megamenu>li>ul>li>span{display:block;position:relative;padding:15px;text-transform:uppercase;font-size:11px;letter-spacing:2px;color:#435966}#topnav .navigation-menu>li.has-submenu.open>a{color:#6c2bd4}#topnav .navbar-header{float:left}#navigation{position:absolute;top:60px;left:0;width:100%;display:none;height:auto;padding-bottom:0;overflow:auto;border-bottom:1px solid #e7e7e7;background-color:#fff}#navigation.open{display:block;overflow-y:auto}#topnav .has-submenu.active a,#topnav .has-submenu.active a i,#topnav .has-submenu.active a:active,#topnav .has-submenu.active a:focus{color:#7490BD}}@media (min-width:768px){#topnav .topbar-main{padding:15px 0}#topnav .navigation-menu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-top:0;box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24)}#topnav .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu{visibility:visible;opacity:1;margin-left:0;margin-right:0}.navbar-toggle{display:block}}.topbar-custom{border-radius:0;margin-bottom:0}.topbar-custom .nav-link{padding:0;line-height:60px;color:rgba(255,255,255,.6)}.app-search .form-control,.app-searchborder .form-control{font-size:13px;height:34px;padding-left:20px;padding-right:40px;box-shadow:none;width:190px}.topbar-custom .dropdown-toggle:after{content:initial}.topbar-custom .menu-left{overflow:hidden}.app-search{position:relative}.app-searchborder .form-control{border:1px solid;color:#000;background:#fff}.app-search button{position:absolute;background-color:transparent;border:none;top:4px;right:28px;color:rgba(152,166,173,.7)}.app-search button:hover{color:#6481ae}.app-search .form-control{border:1px solid #e0e8f5;color:#000;margin:13px 15px 0!important;background:#e0e8f5;border-radius:30px}input.app-search-input::-webkit-input-placeholder{color:#7490BD;font-weight:400}input.app-search-input:-moz-placeholder{color:#7490BD;font-weight:400}input.app-search-input::-moz-placeholder{color:#7490BD;font-weight:400}input.app-search-input:-ms-input-placeholder{color:#7490BD;font-weight:400}.notification-box ul{box-shadow:0 0 0 1px rgba(61,119,180,.12),0 8px 16px 0 rgba(91,139,199,.24)}.notification-box a i{font-size:22px;color:#fff;display:block;line-height:60px;padding:0 7px}.notification-box .noti-dot{position:relative;top:-45px}.notification-box .pulse{width:2px;height:2px;border:3px solid #c4abed;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;background-color:#c4abed;z-index:10;position:absolute;right:36px}.notification-box .dot{border:4px solid #c4abed;background:0 0;-webkit-border-radius:60px;-moz-border-radius:60px;border-radius:60px;height:30px;width:30px;-webkit-animation:pulse 3s ease-out;-moz-animation:pulse 3s ease-out;animation:pulse 3s ease-out;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;animation-iteration-count:infinite;position:absolute;top:-12px;left:6px;z-index:1;opacity:0}@-moz-keyframes pulse{0%{-moz-transform:scale(0);opacity:0}25%{-moz-transform:scale(0);opacity:.1}50%{-moz-transform:scale(.1);opacity:.3}75%{-moz-transform:scale(.5);opacity:.5}100%{-moz-transform:scale(1);opacity:0}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(0);opacity:0}25%{-webkit-transform:scale(0);opacity:.1}50%{-webkit-transform:scale(.1);opacity:.3}75%{-webkit-transform:scale(.5);opacity:.5}100%{-webkit-transform:scale(1);opacity:0}}.nav-user{padding:0 12px!important}.nav-user img{height:32px;width:32px}.notification-list{height:100%}.notification-list .list-group-item{border-bottom:1px solid rgba(0,0,0,.1)!important;margin-bottom:0;background-color:#fff}.notification-list .list-group-item:hover{background-color:#f8f9fa}.notification-list .list-group-item.active{background-color:#fff}.user-list .user-list-item .avatar{float:left;margin-right:5px;width:30px;height:30px}.user-list .user-list-item .avatar img{border-radius:50%;width:100%}.user-list .user-list-item .icon{float:left;margin-right:5px;height:30px;width:30px;border-radius:50%;text-align:center}.user-list .user-list-item .icon i{color:#fff;line-height:30px;font-size:16px}.user-list .user-list-item .user-desc{margin-left:40px}.user-list .user-list-item .user-desc span.name{color:#1a1a1a;display:block;width:100%;overflow:hidden}.user-list .user-list-item .user-desc span.desc{color:#6481ae;display:block;width:100%;overflow:hidden;font-size:12px}.user-list .user-list-item .user-desc span.time{font-size:11px;color:#6c2bd4;font-style:italic}@media (min-width:768px) and (max-width:991px){body{overflow-x:hidden}.fixedHeader-floating{top:60px!important}.reset-1{text-align:center!important}}@media (max-width:768px){#topnav{position:fixed}body{overflow-x:hidden}.zurb-full{max-width:100%}.topbar-left{width:70px!important}.topbar-left span{display:none!important}.topbar-left i{display:block!important;line-height:70px!important}.topbar .topbar-left{height:70px}.navbar-nav.navbar-right{float:right}.content-page{margin-left:0!important}.enlarged .left.side-menu{margin-left:-70px}.footer{left:0!important}.reset-1{text-align:center!important}.mobile-sidebar{left:0}.mobile-content{left:250px;right:-250px}.dataTables_wrapper .zurb-div-xs-6{width:100%;text-align:left}div#datatable-buttons_info{float:none}.ms-container{width:100%}.m-t-sm-50{margin-top:50px!important}.fixedHeader-floating{top:60px!important}}@media (max-width:767px){.navbar-nav .open .dropdown-menu{background-color:#fff;box-shadow:0 2px 5px 0 rgba(0,0,0,.26);left:auto;position:absolute;right:0}.navbar-nav .open .dropdown-menu li{display:block}.navbar-nav{margin:0;display:inline-block}.navbar-nav li{display:inline-block;line-height:1px}.dropdown-lg{width:200px!important}.user-box{float:right}.dataTables_length{float:none;margin-bottom:10px}.table-auto-res{display:block;width:100%;overflow-x:auto}}@media (max-width:480px){.side-menu{z-index:10!important}.button-menu-mobile{display:block}.search-bar{display:none!important}.logo-large{display:none}.logo-small{display:inline-block!important;margin-left:10px}.dropdown-menu-lg{max-width:230px}}@media (max-width:420px){.hide-phone{display:none!important}}@media (max-width:1024px){.hide-phone{display:none!important}}@media (min-width:768px){.zurb-contents-alt{width:750px}}@media (min-width:992px){.zurb-contents-alt{width:970px}}@media (min-width:1200px){.zurb-contents-alt{width:1170px}}@media (max-width:419px){.hidden-xxs,.page-title-box .breadcrumb,.pro-user-name,.user-list .user-list-item .avatar,.user-list .user-list-item .icon{display:none}.topbar-left{width:70px!important}.page-title{font-size:15px;max-width:250px;white-space:nowrap}.editable-responsive{overflow-x:auto}.navbar-nav .open .dropdown-menu{margin-right:-20px}.user-box .dropdown-menu{margin-right:0!important}.dropdown-lg{width:200px!important}.user-list .user-list-item .user-desc{margin-left:0}}.zurb-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-10px;margin-left:-10px}.top-header-animation{height:90px;position:absolute;width:100%;pointer-events:none} diff --git a/static/fonts/FontAwesome.otf b/static/fonts/FontAwesome.otf new file mode 100644 index 0000000..401ec0f Binary files /dev/null and b/static/fonts/FontAwesome.otf differ diff --git a/static/fonts/dripicons-v2.eot b/static/fonts/dripicons-v2.eot new file mode 100644 index 0000000..8afeaaa Binary files /dev/null and b/static/fonts/dripicons-v2.eot differ diff --git a/static/fonts/dripicons-v2.svg b/static/fonts/dripicons-v2.svg new file mode 100644 index 0000000..0b50172 --- /dev/null +++ b/static/fonts/dripicons-v2.svg @@ -0,0 +1,210 @@ + + + +Generated by Fontastic.me + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/fonts/dripicons-v2.ttf b/static/fonts/dripicons-v2.ttf new file mode 100644 index 0000000..041e333 Binary files /dev/null and b/static/fonts/dripicons-v2.ttf differ diff --git a/static/fonts/dripicons-v2.woff b/static/fonts/dripicons-v2.woff new file mode 100644 index 0000000..5322e3d Binary files /dev/null and b/static/fonts/dripicons-v2.woff differ diff --git a/static/fonts/fontawesome-webfont.eot b/static/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/static/fonts/fontawesome-webfont.eot differ diff --git a/static/fonts/fontawesome-webfont.svg b/static/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/static/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/fonts/fontawesome-webfont.ttf b/static/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/static/fonts/fontawesome-webfont.ttf differ diff --git a/static/fonts/fontawesome-webfont.woff b/static/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/static/fonts/fontawesome-webfont.woff differ diff --git a/static/fonts/fontawesome-webfont.woff2 b/static/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/static/fonts/fontawesome-webfont.woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYQML_B48.woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYQML_B48.woff2 new file mode 100644 index 0000000..09e1430 Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYQML_B48.woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYQcL_B48.woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYQcL_B48.woff2 new file mode 100644 index 0000000..0393b8c Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYQcL_B48.woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYT8L_.woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYT8L_.woff2 new file mode 100644 index 0000000..f0bc6aa Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_p2HcYT8L_.woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYQML_B48.woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYQML_B48.woff2 new file mode 100644 index 0000000..810292a Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYQML_B48.woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYQcL_B48 (1).woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYQcL_B48 (1).woff2 new file mode 100644 index 0000000..7ee1893 Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYQcL_B48 (1).woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYT8L_.woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYT8L_.woff2 new file mode 100644 index 0000000..851c899 Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_pgHYYT8L_.woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYQML_B48.woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYQML_B48.woff2 new file mode 100644 index 0000000..ae7028e Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYQML_B48.woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYQcL_B48.woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYQcL_B48.woff2 new file mode 100644 index 0000000..8c09da4 Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYQcL_B48.woff2 differ diff --git a/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYT8L_.woff2 b/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYT8L_.woff2 new file mode 100644 index 0000000..f77d93f Binary files /dev/null and b/static/fonts/google/6xKodSZaM9iE8KbpRA_pkHEYT8L_.woff2 differ diff --git a/static/fonts/google/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2 b/static/fonts/google/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2 new file mode 100644 index 0000000..149b472 Binary files /dev/null and b/static/fonts/google/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2 differ diff --git a/static/fonts/google/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2 b/static/fonts/google/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2 new file mode 100644 index 0000000..79b9f29 Binary files /dev/null and b/static/fonts/google/6xKtdSZaM9iE8KbpRA_hJVQNcOM.woff2 differ diff --git a/static/fonts/google/6xKtdSZaM9iE8KbpRA_hK1QN.woff2 b/static/fonts/google/6xKtdSZaM9iE8KbpRA_hK1QN.woff2 new file mode 100644 index 0000000..99b6f8e Binary files /dev/null and b/static/fonts/google/6xKtdSZaM9iE8KbpRA_hK1QN.woff2 differ diff --git a/static/fonts/materialdesignicons-webfont.eot b/static/fonts/materialdesignicons-webfont.eot new file mode 100644 index 0000000..df4d452 Binary files /dev/null and b/static/fonts/materialdesignicons-webfont.eot differ diff --git a/static/fonts/materialdesignicons-webfont.svg b/static/fonts/materialdesignicons-webfont.svg new file mode 100644 index 0000000..41d0359 --- /dev/null +++ b/static/fonts/materialdesignicons-webfont.svg @@ -0,0 +1,6150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/fonts/materialdesignicons-webfont.ttf b/static/fonts/materialdesignicons-webfont.ttf new file mode 100644 index 0000000..69404e3 Binary files /dev/null and b/static/fonts/materialdesignicons-webfont.ttf differ diff --git a/static/fonts/materialdesignicons-webfont.woff b/static/fonts/materialdesignicons-webfont.woff new file mode 100644 index 0000000..56b9a35 Binary files /dev/null and b/static/fonts/materialdesignicons-webfont.woff differ diff --git a/static/fonts/materialdesignicons-webfont.woff2 b/static/fonts/materialdesignicons-webfont.woff2 new file mode 100644 index 0000000..9f0cc36 Binary files /dev/null and b/static/fonts/materialdesignicons-webfont.woff2 differ diff --git a/static/fonts/themify.eot b/static/fonts/themify.eot new file mode 100644 index 0000000..9ec298b Binary files /dev/null and b/static/fonts/themify.eot differ diff --git a/static/fonts/themify.svg b/static/fonts/themify.svg new file mode 100644 index 0000000..3d53854 --- /dev/null +++ b/static/fonts/themify.svg @@ -0,0 +1,362 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/fonts/themify.ttf b/static/fonts/themify.ttf new file mode 100644 index 0000000..5d627e7 Binary files /dev/null and b/static/fonts/themify.ttf differ diff --git a/static/fonts/themify.woff b/static/fonts/themify.woff new file mode 100644 index 0000000..847ebd1 Binary files /dev/null and b/static/fonts/themify.woff differ diff --git a/static/ico/favicon.ico b/static/ico/favicon.ico new file mode 100644 index 0000000..4c5b040 Binary files /dev/null and b/static/ico/favicon.ico differ diff --git a/static/js/jquery.app.js b/static/js/jquery.app.js new file mode 100644 index 0000000..a38e708 --- /dev/null +++ b/static/js/jquery.app.js @@ -0,0 +1,62 @@ + + +(function ($) { + + 'use strict'; + $(window).on('load', function () { + + //Pre Loader + if ($(".spinner").length > 0) + { + $(".spinner").fadeOut("slow"); + } + }); + function initNavbar() { + $('.navbar-toggle').on('click', function (event) { + $(this).toggleClass('open'); + $('#navigation').slideToggle(400); + }); + + $('.navigation-menu>li').slice(-2).addClass('last-elements'); + + $('.navigation-menu li.has-submenu a[href="#"]').on('click', function (e) { + if ($(window).width() < 992) { + e.preventDefault(); + $(this).parent('li').toggleClass('open').find('.submenu:first').toggleClass('open'); + } + }); + } + function initScrollbar() { + $('.slimscroll').slimscroll({ + height: 'auto', + position: 'right', + size: "8px", + color: '#9ea5ab' + }); + } + // === following js will activate the menu in left side bar based on url ==== + function initMenuItem() { + $(".navigation-menu a").each(function () { + if (this.href == window.location.href) { + $(this).parent().addClass("active"); // add active to li of the current link + $(this).parent().parent().parent().addClass("active"); // add active class to an anchor + $(this).parent().parent().parent().parent().parent().addClass("active"); // add active class to an anchor + } + }); + } + function initRightbar() { + $(".right-bar-toggle").click(function () { + $(".right-bar").toggle(); + $('.wrapper').toggleClass('right-bar-enabled'); + }); + } + function init() { + initNavbar(); + initScrollbar(); + initMenuItem(); + initRightbar(); + } + + init(); + +})(jQuery); diff --git a/static/js/jquery.min.js b/static/js/jquery.min.js new file mode 100644 index 0000000..057711b --- /dev/null +++ b/static/js/jquery.min.js @@ -0,0 +1,4 @@ +/*! jQuery v3.1.1 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.1.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext,B=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,C=/^.[^:#\[\.,]*$/;function D(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):C.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(D(this,a||[],!1))},not:function(a){return this.pushStack(D(this,a||[],!0))},is:function(a){return!!D(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var E,F=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,G=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||E,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:F.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),B.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};G.prototype=r.fn,E=r(d);var H=/^(?:parents|prev(?:Until|All))/,I={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function J(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return J(a,"nextSibling")},prev:function(a){return J(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return a.contentDocument||r.merge([],a.childNodes)}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(I[a]||r.uniqueSort(e),H.test(a)&&e.reverse()),this.pushStack(e)}});var K=/[^\x20\t\r\n\f]+/g;function L(a){var b={};return r.each(a.match(K)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?L(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function M(a){return a}function N(a){throw a}function O(a,b,c){var d;try{a&&r.isFunction(d=a.promise)?d.call(a).done(b).fail(c):a&&r.isFunction(d=a.then)?d.call(a,b,c):b.call(void 0,a)}catch(a){c.call(void 0,a)}}r.extend({red:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.red(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==N&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.red.getStackHook&&(k.stackTrace=r.red.getStackHook()),a.setTimeout(k))}}return r.red(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:M,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:M)),c[2][3].add(g(0,a,r.isFunction(d)?d:N))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.red(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(O(a,g.done(h(c)).resolve,g.reject),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)O(e[c],h(c),g.reject);return g.promise()}});var P=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.red.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&P.test(b.name)&&a.console.warn("jQuery.red exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var Q=r.red();r.fn.ready=function(a){return Q.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,holdReady:function(a){a?r.readyWait++:r.ready(!0)},ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||Q.resolveWith(d,[r]))}}),r.ready.then=Q.then;function R(){d.removeEventListener("DOMContentLoaded",R), +a.removeEventListener("load",R),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",R),a.addEventListener("load",R));var S=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)S(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){W.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=V.get(a,b),c&&(!d||r.isArray(c)?d=V.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return V.get(a,c)||V.access(a,c,{empty:r.Callbacks("once memory").add(function(){V.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,ka=/^$|\/(?:java|ecma)script/i,la={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};la.optgroup=la.option,la.tbody=la.tfoot=la.colgroup=la.caption=la.thead,la.th=la.td;function ma(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&r.nodeName(a,b)?r.merge([a],c):c}function na(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=ma(l.appendChild(f),"script"),j&&na(g),c){k=0;while(f=g[k++])ka.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var qa=d.documentElement,ra=/^key/,sa=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ta=/^([^.]*)(?:\.(.+)|)/;function ua(){return!0}function va(){return!1}function wa(){try{return d.activeElement}catch(a){}}function xa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)xa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=va;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(qa,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(K)||[""],j=b.length;while(j--)h=ta.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.hasData(a)&&V.get(a);if(q&&(i=q.events)){b=(b||"").match(K)||[""],j=b.length;while(j--)if(h=ta.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&V.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(V.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i\x20\t\r\n\f]*)[^>]*)\/>/gi,za=/\s*$/g;function Da(a,b){return r.nodeName(a,"table")&&r.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a:a}function Ea(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Fa(a){var b=Ba.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ga(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(V.hasData(a)&&(f=V.access(a),g=V.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c1&&"string"==typeof q&&!o.checkClone&&Aa.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ia(f,b,c,d)});if(m&&(e=pa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(ma(e,"script"),Ea),i=h.length;l")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=ma(h),f=ma(a),d=0,e=f.length;d0&&na(g,!i&&ma(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(T(c)){if(b=c[V.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[V.expando]=void 0}c[W.expando]&&(c[W.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ja(this,a,!0)},remove:function(a){return Ja(this,a)},text:function(a){return S(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ia(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Da(this,a);b.appendChild(a)}})},prepend:function(){return Ia(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Da(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ia(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ia(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(ma(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return S(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!za.test(a)&&!la[(ja.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c1)}});function Ya(a,b,c,d,e){return new Ya.prototype.init(a,b,c,d,e)}r.Tween=Ya,Ya.prototype={constructor:Ya,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=Ya.propHooks[this.prop];return a&&a.get?a.get(this):Ya.propHooks._default.get(this)},run:function(a){var b,c=Ya.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Ya.propHooks._default.set(this),this}},Ya.prototype.init.prototype=Ya.prototype,Ya.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},Ya.propHooks.scrollTop=Ya.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=Ya.prototype.init,r.fx.step={};var Za,$a,_a=/^(?:toggle|show|hide)$/,ab=/queueHooks$/;function bb(){$a&&(a.requestAnimationFrame(bb),r.fx.tick())}function cb(){return a.setTimeout(function(){Za=void 0}),Za=r.now()}function db(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=ba[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function eb(a,b,c){for(var d,e=(hb.tweeners[b]||[]).concat(hb.tweeners["*"]),f=0,g=e.length;f1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?ib:void 0)), +void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&r.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(K);if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),ib={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=jb[b]||r.find.attr;jb[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=jb[g],jb[g]=e,e=null!=c(a,b,d)?g:null,jb[g]=f),e}});var kb=/^(?:input|select|textarea|button)$/i,lb=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return S(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):kb.test(a.nodeName)||lb.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});function mb(a){var b=a.match(K)||[];return b.join(" ")}function nb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,nb(this)))});if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=nb(c),d=1===c.nodeType&&" "+mb(e)+" "){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=mb(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,nb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=nb(c),d=1===c.nodeType&&" "+mb(e)+" "){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=mb(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,nb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(K)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=nb(this),b&&V.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":V.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+mb(nb(c))+" ").indexOf(b)>-1)return!0;return!1}});var ob=/\r/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":r.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(ob,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:mb(r.text(a))}},select:{get:function(a){var b,c,d,e=a.options,f=a.selectedIndex,g="select-one"===a.type,h=g?null:[],i=g?f+1:e.length;for(d=f<0?i:g?f:0;d-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(r.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var pb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!pb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,pb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(V.get(h,"events")||{})[b.type]&&V.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&T(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!T(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=V.access(d,b);e||d.addEventListener(a,c,!0),V.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=V.access(d,b)-1;e?V.access(d,b,e):(d.removeEventListener(a,c,!0),V.remove(d,b))}}});var qb=a.location,rb=r.now(),sb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var tb=/\[\]$/,ub=/\r?\n/g,vb=/^(?:submit|button|image|reset|file)$/i,wb=/^(?:input|select|textarea|keygen)/i;function xb(a,b,c,d){var e;if(r.isArray(b))r.each(b,function(b,e){c||tb.test(a)?d(a,e):xb(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)xb(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(r.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)xb(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&wb.test(this.nodeName)&&!vb.test(a)&&(this.checked||!ia.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:r.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(ub,"\r\n")}}):{name:b.name,value:c.replace(ub,"\r\n")}}).get()}});var yb=/%20/g,zb=/#.*$/,Ab=/([?&])_=[^&]*/,Bb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Cb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Db=/^(?:GET|HEAD)$/,Eb=/^\/\//,Fb={},Gb={},Hb="*/".concat("*"),Ib=d.createElement("a");Ib.href=qb.href;function Jb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(K)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Kb(a,b,c,d){var e={},f=a===Gb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Lb(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Mb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Nb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:qb.href,type:"GET",isLocal:Cb.test(qb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Hb,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":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Lb(Lb(a,r.ajaxSettings),b):Lb(r.ajaxSettings,a)},ajaxPrefilter:Jb(Fb),ajaxTransport:Jb(Gb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.red(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Bb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||qb.href)+"").replace(Eb,qb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(K)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Ib.protocol+"//"+Ib.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Kb(Fb,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Db.test(o.type),f=o.url.replace(zb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(yb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(sb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Ab,"$1"),n=(sb.test(f)?"&":"?")+"_="+rb++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Hb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Kb(Gb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Mb(o,y,d)),v=Nb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Ob={0:200,1223:204},Pb=r.ajaxSettings.xhr();o.cors=!!Pb&&"withCredentials"in Pb,o.ajax=Pb=!!Pb,r.ajaxTransport(function(b){var c,d;if(o.cors||Pb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Ob[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r(" + + + + + \ No newline at end of file diff --git a/tmpl/notfound.go b/tmpl/notfound.go new file mode 100644 index 0000000..c706648 --- /dev/null +++ b/tmpl/notfound.go @@ -0,0 +1,42 @@ +package tmpl + +const Notfound = ` + + + + Not Found + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
4 0 4
+

I'm sorry! Page not found

+

Cumulus Encrypted Storage System © 2019. All Rights Reserved

+
+
+
+
+ + + + + +`