@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: #fff;
  color: #333;
  font-family:
      "Hiragino Sans",
      "Helvetica Neue",
      "Arial",
      "Meiryo",
      sans-serif;
}

.lang-cn {
  font-family: Arial, Helvetica, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2 {
  color: #000;
  font-weight: 600;
}

h4 {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 2;
}

h5 {
  color: #626262;
  font-size: 14px;
  font-weight: 500;
}

a {
  letter-spacing: 2px;
  text-decoration: none;
  color: #1461A0;
}

a:hover {
  color: #1461A0;
}

ul {
  letter-spacing: 1px;
}

li {
  color: #626262;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 30px;
}

p {
  color: #505050;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 2;
  margin-bottom: 20px;
}

span {
  letter-spacing: 1px;
}

.container-full {
  padding-left: 0;
  padding-right: 0;
}

.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 15px 40px;
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  text-decoration: none;
  font-size: 13px;
}

#main {
  margin-top: 40px;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1461A0;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0C3A60;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  z-index: 997;
  transition: all 0.5s ease;
  padding: 20px 0;
}

#header #logo h1 {
  color: #505050;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

#header #logo h1 a {
  color: #555;
  display: inline-block;
  text-decoration: none;
}

#header #logo h1 a span {
  color: #1461A0;
}

#header #logo img {
  padding: 0;
  margin: 0;
  width: 48px;
  height: 48px;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #222;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #1461A0;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1461A0;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle,
.mobile-sub-nav-toggle
{
  color: #222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x,
.mobile-sub-nav-toggle.bi-x
{
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle,
  .mobile-sub-nav-toggle
  {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .sub-navbar ul {
    display: none;
  }
}

.navbar-mobile,
.sub-navbar-mobile
{
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle,
.sub-navbar-mobile .mobile-sub-nav-toggle
{
  position: absolute;
  top: 15px;
  right: 15px;
}

.sub-navbar-mobile ul {
  display: block;
}

.sub-navbar-mobile .list-unstyled {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0 0 30px;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.sub-navbar-mobile a
{
  padding: 10px 20px;
  font-size: 15px;
  color: #222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a
{
  color: #1461A0;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #1461A0;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  text-align: center;
  height: 100vh;
  background: url(../img/background.png) center bottom no-repeat;
  background-size: 100%;
  position: relative;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #1461A0;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #777;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 300;
}

#hero .hero-link {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-link {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

#hero img {
  max-width: 95%;
  margin-bottom: 30px;
}

.btn {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #1461A0;
  background: #fff;
  color: #1461A0;
  text-decoration: none;
}

.btn:hover {
  background: #1461A0;
  color: #fff;
}

#hero .btn a {
  color: #555;
  font-size: 11px;
  font-weight: 600;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #hero .btn a {
    margin: 4px 8px;
  }
}

#hero .btn a:hover {
  color: #1461A0;
}

#hero .btn {
  width: 140px;
  margin-left: 10px;
  margin-bottom: 10px;
}

#next2d {
  width: 768px;
  height: 398px;
  margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.padd-section {
  padding-bottom: 80px;
  padding-top: 80px;
}

.reference-section {
  padding-bottom: 80px;
  padding-top: 20px;
}

@media (max-width: 992px) {
  .padd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .reference-section {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

.section-title {
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title h2 {
  font-size: 45px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title .separator {
  margin: 0;
}

.separator {
  color: #626262;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li {
  letter-spacing: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Get Started Section
--------------------------------*/
#get-started {
  margin-top: 10px;
  display: inline-block;
  height: 100%;
  width: 100%;
}

#usage,
#docs,
#references
{
  display: inline-block;
  height: 100%;
  width: 100%;
}

#get-started .feature-block,
#docs .feature-block,
#usage .feature-block
{
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  transition: all 0.5s ease-in-out 0s;
}

.feature-block pre {
  text-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  margin: 10px 0;
  padding: 10px 20px;
  color: white;
}

#case-example
{
  background: #fff none repeat scroll 0 0;
  padding-top: 30px;
  transition: all 0.5s ease-in-out 0s;
  min-height: 380px;
  color: #505050;
  margin-bottom: 60px;
  font-weight: 240;
  letter-spacing: 2px;
}

#case-example img,
#case-example video
{
  width: 85%;
  margin-bottom: 40px;
}

#case-example h3
{
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 100;
  letter-spacing: 2px;
}

#case-example .case-example-text
{
  margin-bottom: 60px;
  font-size: 14px;
}

#casestudy .feature-block
{
  background: #fff none repeat scroll 0 0;
  padding-top: 30px;
  transition: all 0.5s ease-in-out 0s;
  min-height: 380px;
  color: #505050;
  margin-bottom: 30px;
}

#casestudy .casestudy-tool-block
{
  height: 100px;
}

#casestudy .casestudy-creator-block
{
  text-align: right;
  padding: 12px;
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

#casestudy .casestudy-tool
{
  padding-top: 5px;
  padding-left: 30px;
  font-size: 12px;
}

#casestudy .casestudy-tool i
{
  padding-right: 6px;
}

#casestudy .casestudy-tool i img
{
  width: 20px;
}

#get-started .top-image {
  margin-bottom: 20px;
}

#get-started .feature-block img,
#usage .feature-block img,
#docs .feature-block img
{
  height: 90px;
  width: 90px;
  margin-bottom: 20px;
}

#casestudy .casestudy-img
{
  height: 170px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  #get-started .feature-block,
  #usage .feature-block,
  #docs .feature-block,
  #casestudy .feature-block
  {
    margin-bottom: 30px;
  }
}

#get-started .feature-block:hover,
#docs .feature-block:hover,
#usage .feature-block:hover,
#casestudy .feature-block:hover
{
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block h4,
#docs .feature-block h4,
#usage .feature-block h4,
#casestudy .feature-block h4
{
  margin-bottom: 20px;
}

#get-started .feature-block p,
#examples .feature-block p,
#docs .feature-block p,
#usage .feature-block p,
#casestudy .feature-block p
{
  margin-bottom: 20px;
}

#get-started .feature-block a,
#examples .feature-block a,
#docs .feature-block a,
#usage .feature-block a,
#casestudy .feature-block a
{
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

#get-started .feature-block a:hover,
#examples .feature-block a:hover,
#docs .feature-block a:hover,
#usage .feature-block a:hover,
#casestudy .feature-block a:hover
{
  color: #1461A0;
}

/* About Us Section
--------------------------------*/
#about-us img {
  max-width: 100%;
}

#about-us .about-content {
  padding-top: 60px;
}

#about-us .about-content h2 {
  color: #252525;
  font-size: 39px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

#about-us .about-content span {
  font-weight: 700;
  padding-right: 10px;
}

#about-us .about-content ul li {
  line-height: 36px;
}

#about-us .about-content ul li .fa {
  padding-right: 20px;
}

/* Features Section
--------------------------------*/
#player,
#tool,
#framework
{
  display: inline-block;
  height: 100%;
  width: 100%;
}

.feature-nav {
  margin-top: 20px;
}

.feature-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.feature-nav li {
  position: relative;
  margin: 0 10px 0 10px;
}

#player .feature-block,
#tool .feature-block,
#framework .feature-block
{
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
}

#player .feature-block img,
#tool .feature-block img,
#framework .feature-block img
{
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}

#player .feature-block:hover,
#tool .feature-block:hover,
#framework .feature-block:hover
{
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#player .feature-block h4,
#tool .feature-block h4,
#framework .feature-block h4
{
  margin-bottom: 20px;
}

#player .feature-block p,
#tool .feature-block p,
#framework .feature-block p
{
  margin-bottom: 0;
}

/* Tutorial List Section
--------------------------------*/
#references .container,
#docs .container,
#usage .container
{
  padding-top: 20px;
}

#references .docs,
#docs .docs,
#usage .docs
{
  margin-bottom: 30px;
}

#references .block-list .content-list,
#docs .block-list .content-list,
#usage .block-list .content-list
{
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  min-height: 125px;
  padding: 20px 10px;
  width: 100%;
  margin-bottom: 30px;
}

#references .block-list .content-list p,
#docs .block-list .content-list p,
#usage .block-list .content-list p
{
  line-height: 24px;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
  margin: 0;
}

#references .block-list .content-list h4,
#docs .block-list .content-list h4,
#usage .block-list .content-list h4
{
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
}

#references .block-list .content-list h4 a,
#docs .block-list .content-list h4 a,
#usage .block-list .content-list h4 a
{
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

#references .block-list .content-list h4 a:hover,
#docs .block-list .content-list h4 a:hover,
#usage .block-list .content-list h4 a:hover
{
  color: #1461A0;
}

#references .block-list .content-list > span,
#docs .block-list .content-list > span,
#usage .block-list .content-list > span
{
  float: left;
  font-size: 12px;
}

#references .block-list .content-list a.read-more,
#docs .block-list .content-list a.read-more,
#usage .block-list .content-list a.read-more
{
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0;
}

#references .block-list .content-list a.read-more:hover,
#docs .block-list .content-list a.read-more:hover,
#usage .block-list .content-list a.read-more:hover
{
  color: #1461A0;
}

#references .list-menu ul li a,
#docs .list-menu ul li a,
#usage .list-menu ul li a
{
  color: #222;
  font-size: 14px;
  padding-left: 5px;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
  transition: 0.3s;
}

#references .list-menu ul li a:hover,
#docs .list-menu ul li a:hover,
#usage .list-menu ul li a:hover
{
  color: #1461A0;
}

#references .tutorial-image
{
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

#references .tutorial-image img
{
  max-width: 90%;
}

#references h2
{
  margin-bottom: 20px;
}

#references h3
{
  margin-bottom: 10px;
}

#references pre
{
  max-width: 100%;
  background-color: #2a2c30;
  color: #f8f9fa;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 10px;
  text-align: left;
}

#references .next-chapter
{
  margin-top: 30px;
}

#references .example
{
  margin-top: 10px;
  margin-bottom: 30px;
}

#example-preview
{
  max-width: 90%;
  height: 240px;
  text-align: center;
}



#usage .workspace-image
{
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

#usage .workspace-image img
{
  max-width: 85%;
}

#usage iframe
{
  margin-top: 20px;
}

#usage h4
{
  padding-top: 30px;
  display: flex;
  align-items: center;
}

#usage a
{
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

#usage a:hover
{
  color: #1461A0;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #fff;
}

#contact .info {
  color: #222;
}

#contact .info i {
  font-size: 32px;
  color: #1461A0;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding: 20px 0;
}

#contact .social-links a {
  display: inline-block;
  background: #1461A0;
  color: #fff;
  line-height: 1;
  padding: 9px 0 8px 2px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #1461A0;
  color: #fff;
}

/*--------------------------------------------------------------
# Contributors
--------------------------------------------------------------*/
#contributors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 20px;
}

#contributors div {
  width: 60px;
  height: 60px;
}

#contributors img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #2a2c30;
  padding-top: 50px;
}

.footer .footer-logo .navbar-brand {
  color: #fff;
  display: inline-block;
  float: none;
  font-size: 24px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.2em;
  padding-left: 0;
  padding-top: 0;
}

.footer .footer-logo p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer .list-menu > h4 {
  color: #fff;
  padding-bottom: 20px;
}

.footer .list-menu p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer .list-menu ul li a {
  color: #fff;
  font-size: 12px;
  padding-left: 5px;
  text-decoration: none;
  letter-spacing: 0;
}

.list-sns-menu ul
{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 992px) {
  .list-sns-menu ul {
    margin-bottom: 20px;
  }
}

.list-sns-menu ul li a {
  color: #fff;
  font-size: 22px;
  margin: 12px;
  text-decoration: none;
  letter-spacing: 0;
}

.footer .copyrights {
  background: #fff;
  margin-top: 50px;
  text-align: center;
  padding: 25px;
}

.footer .copyrights p, .footer .copyrights .credits {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0;
}

.footer .copyrights p a, .footer .copyrights .credits a {
  letter-spacing: 0;
  color: #1461A0;
}

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
#usage h4 i
{
  width  : 34px;
  height : 34px;
}

#transform-tool
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M4 0l16 12.279-6.78 1.138 4.256 8.676-3.902 1.907-4.281-8.758-5.293 4.581z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#shape-transform-tool
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M12.849 24l-3.96-7.853-4.889 4.142v-20.289l16 12.875-6.192 1.038 3.901 7.696-4.86 2.391zm-3.299-10.979l4.194 8.3 1.264-.617-4.213-8.313 4.632-.749-9.427-7.559v11.984l3.55-3.046z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#text-tool
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M24 20v1h-4v-1h.835c.258 0 .405-.178.321-.422l-.473-1.371h-2.231l-.575-1.59h2.295l-1.362-4.077-1.154 3.451-.879-2.498.921-2.493h2.222l3.033 8.516c.111.315.244.484.578.484h.469zm-6-1h1v2h-7v-2h.532c.459 0 .782-.453.633-.887l-.816-2.113h-6.232l-.815 2.113c-.149.434.174.887.633.887h1.065v2h-7v-2h.43c.593 0 1.123-.375 1.32-.935l5.507-15.065h3.952l5.507 15.065c.197.56.69.935 1.284.935zm-10.886-6h4.238l-2.259-6.199-1.979 6.199z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#rectangle-tool
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M24 0h-24v24h24v-24z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#ellipse-tool
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><circle cx="12" cy="12" r="12"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#rounded-rectangle-tool
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M24 5c0-2.761-2.238-5-5-5h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#loading-project-data
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M16 16h-3v5h-2v-5h-3l4-4 4 4zm3.479-5.908c-.212-3.951-3.473-7.092-7.479-7.092s-7.267 3.141-7.479 7.092c-2.57.463-4.521 2.706-4.521 5.408 0 3.037 2.463 5.5 5.5 5.5h3.5v-2h-3.5c-1.93 0-3.5-1.57-3.5-3.5 0-2.797 2.479-3.833 4.433-3.72-.167-4.218 2.208-6.78 5.567-6.78 3.453 0 5.891 2.797 5.567 6.78 1.745-.046 4.433.751 4.433 3.72 0 1.93-1.57 3.5-3.5 3.5h-3.5v2h3.5c3.037 0 5.5-2.463 5.5-5.5 0-2.702-1.951-4.945-4.521-5.408z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#save-project-data
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M8 20h3v-5h2v5h3l-4 4-4-4zm11.479-12.908c-.212-3.951-3.473-7.092-7.479-7.092s-7.267 3.141-7.479 7.092c-2.57.463-4.521 2.706-4.521 5.408 0 3.037 2.463 5.5 5.5 5.5h3.5v-2h-3.5c-1.93 0-3.5-1.57-3.5-3.5 0-2.797 2.479-3.833 4.433-3.72-.167-4.218 2.208-6.78 5.567-6.78 3.453 0 5.891 2.797 5.567 6.78 1.745-.046 4.433.751 4.433 3.72 0 1.93-1.57 3.5-3.5 3.5h-3.5v2h3.5c3.037 0 5.5-2.463 5.5-5.5 0-2.702-1.951-4.945-4.521-5.408z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#export-tool
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24" fill-rule="evenodd" clip-rule="evenodd"><path d="M16 2v7h-2v-5h-12v16h12v-5h2v7h-16v-20h16zm2 9v-4l6 5-6 5v-4h-10v-2h10z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}

#setting-tool
{
  background-image    : url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M24 13.616v-3.232c-1.651-.587-2.694-.752-3.219-2.019v-.001c-.527-1.271.1-2.134.847-3.707l-2.285-2.285c-1.561.742-2.433 1.375-3.707.847h-.001c-1.269-.526-1.435-1.576-2.019-3.219h-3.232c-.582 1.635-.749 2.692-2.019 3.219h-.001c-1.271.528-2.132-.098-3.707-.847l-2.285 2.285c.745 1.568 1.375 2.434.847 3.707-.527 1.271-1.584 1.438-3.219 2.02v3.232c1.632.58 2.692.749 3.219 2.019.53 1.282-.114 2.166-.847 3.707l2.285 2.286c1.562-.743 2.434-1.375 3.707-.847h.001c1.27.526 1.436 1.579 2.019 3.219h3.232c.582-1.636.75-2.69 2.027-3.222h.001c1.262-.524 2.12.101 3.698.851l2.285-2.286c-.744-1.563-1.375-2.433-.848-3.706.527-1.271 1.588-1.44 3.221-2.021zm-12 2.384c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4z"/></svg>');
  background-repeat   : no-repeat;
  background-position : center center;
}
