@charset "UTF-8";
.textEditor .btnBox .btn.animation::after, .textEditor .btnBox .btn {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/**********文字編輯器樣式start**********/
.textEditor {
  clear: both;
  color: #666666;
  font-size: 15px;
  line-height: 1.8;
  margin: initial;
  image-rendering: -webkit-optimize-contrast;
  /*預設樣式*/
}
@media (max-width: 1180px) {
  .textEditor {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .textEditor {
    font-size: 14px;
  }
}
.textEditor::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.textEditor a {
  color: #1169aa;
}
.textEditor em {
  font-style: italic;
}
.textEditor img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}
.textEditor ul:not(.df) {
  list-style: disc outside;
  padding-left: 30px;
}
.textEditor ol {
  list-style: decimal outside;
  padding-left: 30px;
}
.textEditor table {
  border-collapse: collapse;
}
.textEditor th {
  padding: 5px;
  border: 1px solid #e1e1e1;
  color: #fff;
  text-align: center;
  background-color: #1169aa;
}
.textEditor td {
  padding: 5px;
  border: 1px solid #e1e1e1;
}
.textEditor hr {
  height: 1px;
  border: none;
  background: #e9e9e9;
}
.textEditor blockquote {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  padding: 2px 0;
  border-width: 0;
  border-style: solid;
  border-color: #ccc;
}
@media (max-width: 1180px) {
  .textEditor iframe.rwdHelper {
    width: 100% !important;
  }
}
.textEditor .myTitle {
  color: #1169aa;
  font-weight: 700;
  font-size: 20px;
}
.textEditor .decoTitle {
  color: #3b8dca;
  font-size: 16px;
  line-height: normal;
  padding-bottom: 4px;
}
@media (max-width: 1180px) {
  .textEditor .decoTitle {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .textEditor .decoTitle {
    font-size: 12px;
    padding-bottom: 0;
  }
}
.textEditor .title {
  color: #1169aa;
  font-size: 36px;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1180px) {
  .textEditor .title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .textEditor .title {
    font-size: 30px;
  }
}
.textEditor .subtitle {
  color: #3b8dca;
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
  padding-top: 4px;
}
@media (max-width: 1180px) {
  .textEditor .subtitle {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .textEditor .subtitle {
    font-size: 20px;
    padding-top: 0;
  }
}
.textEditor .h2Title {
  font-size: 36px;
  font-weight: 400;
}
@media (max-width: 1180px) {
  .textEditor .h2Title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .textEditor .h2Title {
    font-size: 30px;
  }
}
.textEditor .h3Title {
  font-size: 28px;
  font-weight: 400;
}
@media (max-width: 1180px) {
  .textEditor .h3Title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .textEditor .h3Title {
    font-size: 20px;
  }
}
.textEditor .h4Title {
  font-size: 18px;
}
@media (max-width: 1180px) {
  .textEditor .h4Title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .textEditor .h4Title {
    font-size: 16px;
  }
}
.textEditor .h5Title {
  font-size: 16px;
}
@media (max-width: 1180px) {
  .textEditor .h5Title {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .textEditor .h5Title {
    font-size: 14px;
  }
}
.textEditor .h6Title {
  font-size: 15px;
}
@media (max-width: 1180px) {
  .textEditor .h6Title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .textEditor .h6Title {
    font-size: 12px;
  }
}
.textEditor .center {
  text-align: center;
}
.textEditor .center:before {
  left: 50%;
  margin-left: -30px;
}
.textEditor .left {
  text-align: left;
}
.textEditor .left:before {
  left: 0;
}
.textEditor .right {
  text-align: right;
}
.textEditor .right:before {
  right: 0;
}
.textEditor .title.line:before, .textEditor .subtitle.line:before, .textEditor .decoTitle.line:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: #1169aa;
}
.textEditor .btnBox {
  margin-top: 20px;
}
.textEditor .btnBox.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -6px;
}
.textEditor .btnBox.flex.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.textEditor .btnBox.flex.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.textEditor .btnBox.flex .btn {
  min-width: auto;
  max-width: 200px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 6px;
}
.textEditor .btnBox.single.center {
  text-align: center;
}
.textEditor .btnBox.single .btn {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 480px) {
  .textEditor .btnBox.single .btn {
    max-width: 100%;
  }
}
.textEditor .btnBox.full .btn {
  width: 100%;
}
.textEditor .btnBox .btn {
  min-width: 200px;
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  padding: 13px 20px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.textEditor .btnBox .btn .btnText {
  display: inline-block;
}
@media (max-width: 768px) {
  .textEditor .btnBox .btn {
    padding: 13px;
  }
}
@media (min-width: 1201px) {
  .textEditor .btnBox .btn:hover {
    background-color: #fff;
    border-color: #1169aa;
    color: #1169aa;
  }
}
.textEditor .btnBox .btn.animation {
  overflow: hidden;
}
.textEditor .btnBox .btn.animation::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: #fff;
}
@media (min-width: 1201px) {
  .textEditor .btnBox .btn.animation:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
}
.textEditor .btnBox .btn.bgMain {
  background-color: #1169aa;
  border: 1px solid #1169aa;
  color: #fff;
}
@media (min-width: 1201px) {
  .textEditor .btnBox .btn.bgMain:hover {
    color: #1169aa;
  }
  .textEditor .btnBox .btn.bgMain:hover:not(.animation) {
    background-color: #fff;
  }
}
.textEditor .btnBox .btn.bgSecond {
  background-color: #3b8dca;
  border: 1px solid #3b8dca;
  color: #fff;
}
@media (min-width: 1201px) {
  .textEditor .btnBox .btn.bgSecond:hover {
    color: #3b8dca;
  }
  .textEditor .btnBox .btn.bgSecond:hover:not(.animation) {
    background-color: #fff;
  }
}
.textEditor .btnBox .btn.colorMain {
  background-color: #fff;
  border: 1px solid #1169aa;
  color: #1169aa;
}
.textEditor .btnBox .btn.colorMain.animation::after {
  background-color: #1169aa;
}
@media (min-width: 1201px) {
  .textEditor .btnBox .btn.colorMain:hover {
    color: #fff;
  }
  .textEditor .btnBox .btn.colorMain:hover:not(.animation) {
    background-color: #1169aa;
  }
}
.textEditor .btnBox .btn.colorSecond {
  background-color: #fff;
  border: 1px solid #3b8dca;
  color: #3b8dca;
}
.textEditor .btnBox .btn.colorSecond.animation::after {
  background-color: #3b8dca;
}
@media (min-width: 1201px) {
  .textEditor .btnBox .btn.colorSecond:hover {
    color: #fff;
  }
  .textEditor .btnBox .btn.colorSecond:hover:not(.animation) {
    background-color: #3b8dca;
  }
}
.textEditor .btnBox .btn.rounded {
  border-radius: 24.5px;
}
.textEditor .btnBox .btn.roundedSlightly {
  border-radius: 4px;
}
.textEditor .tableBox {
  overflow-x: auto;
  position: relative;
}
.textEditor .tableBox::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #f1f1f1;
}
.textEditor .tableBox::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #f1f1f1;
}
.textEditor .tableBox::-webkit-scrollbar-thumb {
  background: #1169aa;
}
.textEditor .tableBox.dragscroll table {
  cursor: move;
}
.textEditor .tableBox.stickyLeft table {
  table-layout: fixed;
}
.textEditor .tableBox.stickyLeft tr th, .textEditor .tableBox.stickyLeft tr td {
  z-index: 1;
}
.textEditor .tableBox.stickyLeft tr th:first-child, .textEditor .tableBox.stickyLeft tr td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}
.textEditor .tableBox.stickyLeft tr td {
  background-color: #fff;
}

/**********文字編輯器樣式end**********/
.highlight1 {
  position: relative;
}
.highlight1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-color: rgba(0, 255, 255, 0.35);
  z-index: -1;
}

.highlight2 {
  position: relative;
}
.highlight2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-color: rgba(255, 255, 55, 0.35);
  z-index: -1;
}

.highlight3 {
  position: relative;
}
.highlight3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-color: rgba(255, 151, 151, 0.35);
  z-index: -1;
}

/*前台 如果前台背景色為深色start*/
body.darkBg .textEditor {
  color: #fff;
}
body.darkBg .textEditor .contentBuilder .shelfWrap.bg {
  background-color: #888;
}
body.darkBg .textEditor .contentBuilder .shelfWrap .item.videoLeft .Txt, body.darkBg .textEditor .contentBuilder .shelfWrap .item.videoRight .Txt {
  background-color: #888;
}
body.darkBg .textEditor .contentBuilder .shelfWrap .item .quoteContent .quoteIcon {
  color: #fff;
}
body.darkBg .textEditor .contentBuilder .shelfWrap .item.iconContent.innerLine .iconBox:not(:last-child)::before {
  background-color: rgba(255, 255, 255, 0.2);
}
body.darkBg .textEditor .contentBuilder .shelfWrap .item.iconContent .icon img {
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
}
body.darkBg .textEditor .contentBuilder .shelfWrap .shelfList:not(.circle) .Txt, body.darkBg .textEditor .contentBuilder .shelfWrap .shelfList:not(.circle) .item {
  background-color: #888;
}
body.darkBg .textEditor .contentBuilder .shelfWrap .btnBox a {
  background-color: #fff;
  border: 1px solid #fff;
  color: #1169aa;
}
body.darkBg .textEditor .contentBuilder .shelfWrap .btnBox a:hover {
  border-color: #3b8dca;
  background-color: #3b8dca;
  color: #fff;
}
body.darkBg .textEditor .contentBuilder .contentBuilderTable table tbody tr {
  border-bottom: rgba(255, 255, 255, 0.1);
}
body.darkBg .textEditor .contentBuilder .contentBuilderTable table tbody tr td, body.darkBg .textEditor .contentBuilder .contentBuilderTable table tbody tr th {
  color: #444;
}
body.darkBg .textEditor .contentBuilder .contentBuilderTable table tbody tr:nth-child(odd) td, body.darkBg .textEditor .contentBuilder .contentBuilderTable table tbody tr:nth-child(odd) th {
  background-color: #888;
}

/*前台 如果前台背景色為深色end*/
/**********套件預設樣式start**********/
.textEditor .contentBuilder {
  /* FIX: Preventing Chrome from wrapping text with span-style (during editing) */
}
.textEditor .contentBuilder .imgFull img {
  width: 100%;
}
.textEditor .contentBuilder table td {
  padding: 12px;
}
.textEditor .contentBuilder h1 span {
  font-size: inherit;
  line-height: inherit;
}
.textEditor .contentBuilder h2 span {
  font-size: inherit;
  line-height: inherit;
}
.textEditor .contentBuilder h3 span {
  font-size: inherit;
  line-height: inherit;
}
.textEditor .contentBuilder h4 span {
  font-size: inherit;
  line-height: inherit;
}
.textEditor .contentBuilder h5 span {
  font-size: inherit;
  line-height: inherit;
}
.textEditor .contentBuilder h6 span {
  font-size: inherit;
  line-height: inherit;
}
.textEditor .contentBuilder p span {
  font-size: inherit;
  line-height: inherit;
}
.textEditor .contentBuilder li span {
  font-size: inherit;
  line-height: inherit;
}
.textEditor .contentBuilder hr {
  position: relative;
  padding: 10px 0;
  height: auto;
  border: none;
  background: none;
}
.textEditor .contentBuilder hr:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5px;
  width: 100%;
  height: 1px;
  background-color: #dadada;
}
.textEditor .contentBuilder img {
  max-width: 100%;
}
.textEditor .contentBuilder figure {
  margin: 0;
}
.textEditor .contentBuilder ol,
.textEditor .contentBuilder ul {
  line-height: inherit;
  font-weight: inherit;
}
.textEditor .contentBuilder .embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.textEditor .contentBuilder .embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.textEditor .contentBuilder .embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.textEditor .contentBuilder .embed-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/**********套件預設樣式end**********/
/**********上架神器模板樣式start**********/
.textEditor .contentBuilder .shelfWrap {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.textEditor .contentBuilder .shelfWrap.full {
  max-width: none;
  overflow: hidden;
  padding: 0;
  width: calc(100vw - 17px);
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1341px) {
  .textEditor .contentBuilder .shelfWrap.full .item.picLeft .Txt.thin {
    padding-right: 0;
    width: calc((100% - (100% - 1300px)) / 2);
  }
  .textEditor .contentBuilder .shelfWrap.full .item.picRight .Txt.thin {
    padding-left: 0;
    width: calc((100% - (100% - 1300px)) / 2);
  }
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap.full {
    width: 100vw;
  }
}
.textEditor .contentBuilder .shelfWrap.bg {
  padding-top: 15%;
  padding-bottom: 15%;
  background-color: #f1f1f1;
  background-position: center center;
  background-size: cover;
}
.textEditor .contentBuilder .shelfWrap.faqStyle .toggleTitle {
  position: relative;
  background: #1169aa;
  padding: 20px;
  color: #ffffff;
  cursor: pointer;
}
.textEditor .contentBuilder .shelfWrap.faqStyle .toggleTitle::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 25px;
  height: 1px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #ffffff;
}
.textEditor .contentBuilder .shelfWrap.faqStyle .toggleTitle span {
  display: block;
  position: absolute;
  right: 32px;
  top: 50%;
  height: 25px;
  width: 1px;
  background: #ffffff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.textEditor .contentBuilder .shelfWrap.faqStyle .toggleTitle span.roate {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.textEditor .contentBuilder .shelfWrap.faqStyle .menu {
  background: #ffffff;
  padding: 25px 20px;
}
.textEditor .contentBuilder .shelfWrap.faqStyle .menu > li {
  display: inline-block;
  padding: 0 50px 20px;
  max-width: 25%;
}
@media (max-width: 768px) {
  .textEditor .contentBuilder .shelfWrap.faqStyle .menu > li {
    max-width: 50%;
    padding: 0 20px 20px;
  }
}
@media (max-width: 480px) {
  .textEditor .contentBuilder .shelfWrap.faqStyle .menu > li {
    width: 100%;
    max-width: initial;
  }
}
.textEditor .contentBuilder .shelfWrap.faqStyle .menu > li > ul {
  padding-top: 15px;
}
.textEditor .contentBuilder .shelfWrap.faqStyle .menu > li > ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.textEditor .contentBuilder .shelfWrap.faqStyle .menu > li > ul li::before {
  content: "";
  display: block;
  font-size: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bbbbbb;
  margin-right: 10px;
}
.textEditor .contentBuilder .shelfWrap .bgContent {
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.textEditor .contentBuilder .shelfWrap .bgContent.center .item,
.textEditor .contentBuilder .shelfWrap .bgContent.center .Txt {
  margin: 0 auto;
}
.textEditor .contentBuilder .shelfWrap .bgContent .item {
  max-width: 730px;
}
.textEditor .contentBuilder .shelfWrap .bgContent .Txt {
  padding-top: 0;
  max-width: 580px;
}
.textEditor .contentBuilder .shelfWrap .shelfList {
  width: calc(100% + 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin: 0 -10px;
  padding-left: 0;
}
@media (max-width: 767px) {
  .textEditor .contentBuilder .shelfWrap .shelfList {
    width: 100%;
    margin: 0;
  }
}
.textEditor .contentBuilder .shelfWrap .shelfList .shelfItem {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .textEditor .contentBuilder .shelfWrap .shelfList .shelfItem {
    padding-left: 0;
    padding-right: 0;
  }
}
.textEditor .contentBuilder .shelfWrap .shelfList .item {
  height: 100%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
  background-color: #fff;
}
.textEditor .contentBuilder .shelfWrap .shelfList .Txt {
  padding: 20px 20px 30px;
}
.textEditor .contentBuilder .shelfWrap .shelfList .h3Title:before {
  display: none;
}
.textEditor .contentBuilder .shelfWrap .shelfList img {
  max-width: none;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .textEditor .contentBuilder .shelfWrap .shelfList {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.textEditor .contentBuilder .shelfWrap .shelfList.twoColumns .shelfItem {
  width: 50%;
}
@media (max-width: 767px) {
  .textEditor .contentBuilder .shelfWrap .shelfList.twoColumns .shelfItem {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
  .textEditor .contentBuilder .shelfWrap .shelfList.twoColumns .shelfItem:not(:last-child) {
    padding-bottom: 20px;
  }
}
.textEditor .contentBuilder .shelfWrap .shelfList.threeColumns .shelfItem {
  width: 33.33%;
}
@media (max-width: 767px) {
  .textEditor .contentBuilder .shelfWrap .shelfList.threeColumns .shelfItem {
    width: 100%;
    max-width: 415px;
    margin: 0 auto;
  }
  .textEditor .contentBuilder .shelfWrap .shelfList.threeColumns .shelfItem:not(:last-child) {
    padding-bottom: 20px;
  }
}
.textEditor .contentBuilder .shelfWrap .shelfList.circle .item {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.textEditor .contentBuilder .shelfWrap .shelfList.horizontal .item {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.textEditor .contentBuilder .shelfWrap .shelfList.horizontal .Img {
  width: 190px;
}
.textEditor .contentBuilder .shelfWrap .shelfList.horizontal .Txt {
  width: calc(100% - 190px);
  padding: 5px 0 0 30px;
}
@media (max-width: 960px) {
  .textEditor .contentBuilder .shelfWrap .shelfList.horizontal .shelfItem {
    width: 100%;
    max-width: 100%;
  }
  .textEditor .contentBuilder .shelfWrap .shelfList.horizontal .shelfItem:not(:last-child) {
    padding-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .textEditor .contentBuilder .shelfWrap .shelfList.horizontal .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .textEditor .contentBuilder .shelfWrap .shelfList.horizontal .Txt {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picLeft, .textEditor .contentBuilder .shelfWrap .item.picRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.textEditor .contentBuilder .shelfWrap .item.picLeft.twoThird .Img, .textEditor .contentBuilder .shelfWrap .item.picRight.twoThird .Img {
  width: 66.5%;
}
.textEditor .contentBuilder .shelfWrap .item.picLeft.twoThird .Txt, .textEditor .contentBuilder .shelfWrap .item.picRight.twoThird .Txt {
  width: 33.5%;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeft.twoThird .Img,
  .textEditor .contentBuilder .shelfWrap .item.picLeft.twoThird .Txt, .textEditor .contentBuilder .shelfWrap .item.picRight.twoThird .Img,
  .textEditor .contentBuilder .shelfWrap .item.picRight.twoThird .Txt {
    width: 100%;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picLeft .Img, .textEditor .contentBuilder .shelfWrap .item.picRight .Img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
}
.textEditor .contentBuilder .shelfWrap .item.picLeft .Txt, .textEditor .contentBuilder .shelfWrap .item.picRight .Txt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.textEditor .contentBuilder .shelfWrap .item.picLeft .Txt.verticalCenter, .textEditor .contentBuilder .shelfWrap .item.picRight .Txt.verticalCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeft .Txt, .textEditor .contentBuilder .shelfWrap .item.picRight .Txt {
    padding: 20px;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picLeft .circleBox, .textEditor .contentBuilder .shelfWrap .item.picRight .circleBox {
  width: 50%;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeft .circleBox, .textEditor .contentBuilder .shelfWrap .item.picRight .circleBox {
    width: 100%;
    max-width: 480px;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picLeft .circleBox .circle, .textEditor .contentBuilder .shelfWrap .item.picRight .circleBox .circle {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background-color: #2495e9;
  position: relative;
  text-align: center;
}
.textEditor .contentBuilder .shelfWrap .item.picLeft .circleBox .circle .title, .textEditor .contentBuilder .shelfWrap .item.picRight .circleBox .circle .title {
  display: block;
  line-height: 154px;
  font-size: 45px;
  color: #fff;
  letter-spacing: 3px;
  font-weight: 400;
}
.textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine {
  padding: 30px 0;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine::before, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine::before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: rgba(17, 105, 170, 0.2);
  position: absolute;
  top: 0;
  left: calc(50% - 0.5px);
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine::before, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine::before {
    display: none;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine::after, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine::after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background-color: #1169aa;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine::after, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine::after {
    display: none;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine .Txt, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine .Txt {
  padding: 0 50px;
}
.textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine .circleBox, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine .circleBox {
  padding: 0 50px;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine .Txt,
  .textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine .circleBox, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine .Txt,
  .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine .circleBox {
    padding: 0 20px;
  }
  .textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine .Txt, .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine .Txt {
    padding-top: 20px;
  }
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeft, .textEditor .contentBuilder .shelfWrap .item.picRight {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .textEditor .contentBuilder .shelfWrap .item.picLeft .Img,
  .textEditor .contentBuilder .shelfWrap .item.picLeft .Txt, .textEditor .contentBuilder .shelfWrap .item.picRight .Img,
  .textEditor .contentBuilder .shelfWrap .item.picRight .Txt {
    width: 100%;
  }
}
@media (min-width: 841px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeft.circleLine .circle {
    margin-left: auto;
  }
}
@media (min-width: 841px) {
  .textEditor .contentBuilder .shelfWrap .item.picRight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picRight .circleBox .circle {
    margin-left: auto;
  }
}
@media (max-width: 640px) {
  .textEditor .contentBuilder .shelfWrap .item.picRight .circleBox .circle {
    margin-left: 0;
  }
}
@media (min-width: 641px) {
  .textEditor .contentBuilder .shelfWrap .item.picRight.circleLine {
    text-align: right;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picRightSmall, .textEditor .contentBuilder .shelfWrap .item.picLeftSmall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.textEditor .contentBuilder .shelfWrap .item.picRightSmall .Img, .textEditor .contentBuilder .shelfWrap .item.picLeftSmall .Img {
  width: 345px;
}
.textEditor .contentBuilder .shelfWrap .item.picRightSmall .Txt, .textEditor .contentBuilder .shelfWrap .item.picLeftSmall .Txt {
  width: calc(100% - 345px);
}
.textEditor .contentBuilder .shelfWrap .item.picRightSmall .Txt.verticalCenter, .textEditor .contentBuilder .shelfWrap .item.picLeftSmall .Txt.verticalCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picRightSmall, .textEditor .contentBuilder .shelfWrap .item.picLeftSmall {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .textEditor .contentBuilder .shelfWrap .item.picRightSmall .Img, .textEditor .contentBuilder .shelfWrap .item.picLeftSmall .Img {
    margin: 0 auto;
  }
  .textEditor .contentBuilder .shelfWrap .item.picRightSmall .Txt, .textEditor .contentBuilder .shelfWrap .item.picLeftSmall .Txt {
    width: 100%;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picLeftSmall .Txt {
  padding-left: 40px;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.picLeftSmall {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .textEditor .contentBuilder .shelfWrap .item.picLeftSmall .Txt {
    padding-left: 0;
  }
}
.textEditor .contentBuilder .shelfWrap .item.picRightSmall {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.textEditor .contentBuilder .shelfWrap .item.picRightSmall .Txt {
  padding-right: 40px;
}
@media (max-width: 540px) {
  .textEditor .contentBuilder .shelfWrap .item.picRightSmall {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .textEditor .contentBuilder .shelfWrap .item.picRightSmall .Txt {
    padding-right: 0;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft, .textEditor .contentBuilder .shelfWrap .item.videoRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft, .textEditor .contentBuilder .shelfWrap .item.videoRight {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft .Img, .textEditor .contentBuilder .shelfWrap .item.videoRight .Img {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64%;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft .Img, .textEditor .contentBuilder .shelfWrap .item.videoRight .Img {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft .Img, .textEditor .contentBuilder .shelfWrap .item.videoRight .Img {
    height: 230px;
    overflow: hidden;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft .Img img, .textEditor .contentBuilder .shelfWrap .item.videoRight .Img img {
  display: block;
  width: 100%;
}
@media (max-width: 420px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft .Img img, .textEditor .contentBuilder .shelfWrap .item.videoRight .Img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    max-width: none;
    height: 100%;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft .Txt, .textEditor .contentBuilder .shelfWrap .item.videoRight .Txt {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46%;
  height: 420px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1180px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft .Txt, .textEditor .contentBuilder .shelfWrap .item.videoRight .Txt {
    height: auto;
  }
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft .Txt, .textEditor .contentBuilder .shelfWrap .item.videoRight .Txt {
    width: 100%;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft .Txt {
  padding: 30px 40px 30px 70px;
  margin-left: -10%;
}
@media (max-width: 1024px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft .Txt {
    padding: 30px 40px;
  }
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft .Txt {
    padding: 20px;
    margin-left: 0;
  }
}
@media (min-width: 841px) {
  .textEditor .contentBuilder .shelfWrap .item.videoRight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoRight .Txt {
  padding: 30px 70px 30px 40px;
  margin-right: -10%;
}
@media (max-width: 1024px) {
  .textEditor .contentBuilder .shelfWrap .item.videoRight .Txt {
    padding: 30px 40px;
  }
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoRight .Txt {
    padding: 20px;
    margin-right: 0;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft2, .textEditor .contentBuilder .shelfWrap .item.videoRight2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft2 .Img, .textEditor .contentBuilder .shelfWrap .item.videoRight2 .Img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
}
@media (max-width: 960px) and (min-width: 841px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft2 .Img, .textEditor .contentBuilder .shelfWrap .item.videoRight2 .Img {
    position: relative;
    overflow: hidden;
  }
  .textEditor .contentBuilder .shelfWrap .item.videoLeft2 .Img img, .textEditor .contentBuilder .shelfWrap .item.videoRight2 .Img img {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 100%;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft2 .Txt, .textEditor .contentBuilder .shelfWrap .item.videoRight2 .Txt {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft2 .Img,
  .textEditor .contentBuilder .shelfWrap .item.videoLeft2 .Txt, .textEditor .contentBuilder .shelfWrap .item.videoRight2 .Img,
  .textEditor .contentBuilder .shelfWrap .item.videoRight2 .Txt {
    width: 100%;
  }
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoLeft2 .Txt {
  padding: 0 0 0 40px;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoLeft2 .Txt {
    padding: 20px 0 0 0;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoRight2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoRight2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoRight2 .Txt {
  padding: 0 40px 0 0;
}
@media (max-width: 840px) {
  .textEditor .contentBuilder .shelfWrap .item.videoRight2 .Txt {
    padding: 20px 0 0 0;
  }
}
.textEditor .contentBuilder .shelfWrap .item.videoPic .Img {
  position: relative;
}
@media (max-width: 640px) {
  .textEditor .contentBuilder .shelfWrap .item.videoPic .Img {
    height: 200px;
    overflow: hidden;
  }
  .textEditor .contentBuilder .shelfWrap .item.videoPic .Img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    max-width: none;
    height: 100%;
  }
}
.textEditor .contentBuilder .shelfWrap .item .videoBox.titan {
  display: block;
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -65px;
  margin-top: -65px;
  width: 130px;
  height: 130px;
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -11px;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent #1169aa;
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn .videoCircle {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  width: 110px;
  height: 110px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn .videoCircle:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px dashed #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: circleAnti3 1s linear infinite;
          animation: circleAnti3 1s linear infinite;
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn .videoCircle svg {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn .videoCircle circle {
  stroke-width: 2;
  stroke: #1169aa;
  fill: none;
  stroke-dashoffset: 345.4;
  stroke-dasharray: 345.4;
  -webkit-animation: circleAnti 5s linear infinite;
          animation: circleAnti 5s linear infinite;
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn .stroke {
  -webkit-animation: circleAnti2 1s linear infinite;
          animation: circleAnti2 1s linear infinite;
  width: 100%;
  height: 100%;
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn .stroke svg {
  width: 100%;
  height: 100%;
}
.textEditor .contentBuilder .shelfWrap .item .videoBtn .stroke circle {
  stroke-dasharray: 2, 4;
  stroke-width: 1;
  stroke: #fff;
  fill: none;
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent .iconBox {
  margin: 12px 0;
  padding: 0 16px;
  position: relative;
  text-align: center;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent .icon {
  margin-bottom: 10px;
  text-align: center;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent .icon img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent .h3title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.5;
  padding: 10px;
}
@media (max-width: 640px) {
  .textEditor .contentBuilder .shelfWrap .item.iconContent .h3title {
    padding: 10px 0px;
  }
}
@media (max-width: 540px) {
  .textEditor .contentBuilder .shelfWrap .item.iconContent .h3title {
    padding: 5px 0px 10px;
  }
}
.textEditor .contentBuilder .shelfWrap .item.iconContent.innerLine .iconBox:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent.outerLine .iconBox::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent.outerLine .iconBox:first-child::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent.thirds .iconBox {
  width: 33.3333333333%;
}
.textEditor .contentBuilder .shelfWrap .item.iconContent.quarters .iconBox {
  width: 25%;
}
@media (max-width: 768px) {
  .textEditor .contentBuilder .shelfWrap .item.iconContent.quarters .iconBox {
    width: 50%;
  }
  .textEditor .contentBuilder .shelfWrap .item.iconContent.quarters .iconBox:first-child::after {
    display: none;
  }
  .textEditor .contentBuilder .shelfWrap .item.iconContent.quarters .iconBox:nth-child(2n)::before {
    display: none;
  }
}
@media (max-width: 540px) {
  .textEditor .contentBuilder .shelfWrap .item.iconContent.thirds .iconBox, .textEditor .contentBuilder .shelfWrap .item.iconContent.quarters .iconBox {
    width: 100%;
    padding: 12px 0;
  }
  .textEditor .contentBuilder .shelfWrap .item.iconContent.innerLine .iconBox:not(:last-child)::before {
    display: none;
  }
  .textEditor .contentBuilder .shelfWrap .item.iconContent.outerLine .iconBox::before {
    display: none;
  }
  .textEditor .contentBuilder .shelfWrap .item.iconContent.outerLine .iconBox:first-child::after {
    display: none;
  }
}
.textEditor .contentBuilder .shelfWrap .item.quoteContent {
  position: relative;
}
.textEditor .contentBuilder .shelfWrap .item.quoteContent .quoteIcon {
  color: #3a3a3a;
  font-size: 22px;
  line-height: 1;
  padding: 0 5px 12px;
}
.textEditor .contentBuilder .shelfWrap .item.quoteContent .quoteIcon::before {
  content: "\f10e";
  font-family: FontAwesome;
}
.textEditor .contentBuilder .shelfWrap .item.quoteContent.center {
  text-align: center;
}
.textEditor .contentBuilder .shelfWrap .item.quoteContent.left {
  text-align: left;
}
.textEditor .contentBuilder .shelfWrap .item.quoteContent.left .quoteIcon::before {
  content: "\f10d";
  font-family: FontAwesome;
}
.textEditor .contentBuilder .shelfWrap .item.quoteContent.right {
  text-align: right;
}
.textEditor .contentBuilder .shelfWrap .Img img {
  display: block;
  width: 100%;
}
.textEditor .contentBuilder .shelfWrap .Img.center {
  text-align: center;
}
.textEditor .contentBuilder .shelfWrap .Img.center img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
.textEditor .contentBuilder .shelfWrap .Txt.center {
  text-align: center;
}
.textEditor .contentBuilder .shelfWrap .Txt.right {
  text-align: right;
}
.textEditor .contentBuilder .contentBuilderTable {
  margin-bottom: 50px;
}
.textEditor .contentBuilder .contentBuilderTable::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #f1f1f1;
}
.textEditor .contentBuilder .contentBuilderTable::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #f1f1f1;
}
.textEditor .contentBuilder .contentBuilderTable::-webkit-scrollbar-thumb {
  background: #1169aa;
}
@media (max-width: 1180px) {
  .textEditor .contentBuilder .contentBuilderTable {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .textEditor .contentBuilder .contentBuilderTable {
    margin-bottom: 20px;
  }
}
.textEditor .contentBuilder .contentBuilderTable table {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
  text-align: center;
}
.textEditor .contentBuilder .contentBuilderTable table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.textEditor .contentBuilder .contentBuilderTable table tbody tr:nth-child(odd) th, .textEditor .contentBuilder .contentBuilderTable table tbody tr:nth-child(odd) td {
  background-color: #fff;
}
.textEditor .contentBuilder .contentBuilderTable table tbody tr:nth-child(even) th, .textEditor .contentBuilder .contentBuilderTable table tbody tr:nth-child(even) td {
  background-color: #f1f1f1;
}
.textEditor .contentBuilder .contentBuilderTable table th, .textEditor .contentBuilder .contentBuilderTable table td {
  border: none;
  font-weight: 400;
  padding: 20px 10px;
  position: relative;
}
.textEditor .contentBuilder .contentBuilderTable table th::before, .textEditor .contentBuilder .contentBuilderTable table td::before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.textEditor .contentBuilder .contentBuilderTable table th:last-of-type::before, .textEditor .contentBuilder .contentBuilderTable table td:last-of-type::before {
  opacity: 0;
}
.textEditor .contentBuilder .contentBuilderTable table th {
  background-color: #1169aa;
  color: #fff;
  min-height: 65px;
}
.textEditor .contentBuilder .contentBuilderTable table th::before {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1180px) {
  .textEditor .contentBuilder .contentBuilderTable table th {
    min-height: 50px;
  }
}
.textEditor .contentBuilder .contentBuilderTable table td {
  min-height: 75px;
}
@media (max-width: 1180px) {
  .textEditor .contentBuilder .contentBuilderTable table td {
    min-height: 60px;
  }
}
@media (max-width: 400px) {
  .textEditor .contentBuilder .contentBuilderTable table td {
    font-size: 14px;
  }
}
.textEditor .contentBuilder .contentBuilderTable table.stickyLeft {
  min-width: 1280px;
  table-layout: fixed;
}
@media (max-width: 1180px) {
  .textEditor .contentBuilder .contentBuilderTable table.stickyLeft {
    min-width: 1180px;
  }
}
@media (max-width: 640px) {
  .textEditor .contentBuilder .contentBuilderTable table.stickyLeft {
    min-width: 640px;
  }
}
.textEditor .contentBuilder .pt0 {
  padding-top: 0 !important;
}
.textEditor .contentBuilder .pt10 {
  padding-top: 10px !important;
}
.textEditor .contentBuilder .pt15 {
  padding-top: 15px !important;
}
.textEditor .contentBuilder .pt20 {
  padding-top: 20px !important;
}
.textEditor .contentBuilder .pt25 {
  padding-top: 25px !important;
}
.textEditor .contentBuilder .pt30 {
  padding-top: 30px !important;
}
.textEditor .contentBuilder .pt40 {
  padding-top: 40px !important;
}
.textEditor .contentBuilder .pt50 {
  padding-top: 50px !important;
}
.textEditor .contentBuilder .pt60 {
  padding-top: 60px !important;
}
.textEditor .contentBuilder .pt70 {
  padding-top: 70px !important;
}
.textEditor .contentBuilder .pt80 {
  padding-top: 80px !important;
}
.textEditor .contentBuilder .pb0 {
  padding-bottom: 0 !important;
}
.textEditor .contentBuilder .pb10 {
  padding-bottom: 10px !important;
}
.textEditor .contentBuilder .pb15 {
  padding-bottom: 15px !important;
}
.textEditor .contentBuilder .pb20 {
  padding-bottom: 20px !important;
}
.textEditor .contentBuilder .pb25 {
  padding-bottom: 25px !important;
}
.textEditor .contentBuilder .pb30 {
  padding-bottom: 30px !important;
}
.textEditor .contentBuilder .pb40 {
  padding-bottom: 40px !important;
}
.textEditor .contentBuilder .pb50 {
  padding-bottom: 50px !important;
}
.textEditor .contentBuilder .pb60 {
  padding-bottom: 60px !important;
}
.textEditor .contentBuilder .pb70 {
  padding-bottom: 70px !important;
}
.textEditor .contentBuilder .pb80 {
  padding-bottom: 80px !important;
}
.textEditor .contentBuilder .mt0 {
  margin-top: 0 !important;
}
.textEditor .contentBuilder .mt10 {
  margin-top: 10px !important;
}
.textEditor .contentBuilder .mt15 {
  margin-top: 15px !important;
}
.textEditor .contentBuilder .mt20 {
  margin-top: 20px !important;
}
.textEditor .contentBuilder .mt25 {
  margin-top: 25px !important;
}
.textEditor .contentBuilder .mt30 {
  margin-top: 30px !important;
}
.textEditor .contentBuilder .mt40 {
  margin-top: 40px !important;
}
.textEditor .contentBuilder .mt50 {
  margin-top: 50px !important;
}
.textEditor .contentBuilder .mt60 {
  margin-top: 60px !important;
}
.textEditor .contentBuilder .mt70 {
  margin-top: 70px !important;
}
.textEditor .contentBuilder .mt80 {
  margin-top: 80px !important;
}
.textEditor .contentBuilder .mb0 {
  margin-bottom: 0 !important;
}
.textEditor .contentBuilder .mb10 {
  margin-bottom: 10px !important;
}
.textEditor .contentBuilder .mb15 {
  margin-bottom: 15px !important;
}
.textEditor .contentBuilder .mb20 {
  margin-bottom: 20px !important;
}
.textEditor .contentBuilder .mb25 {
  margin-bottom: 25px !important;
}
.textEditor .contentBuilder .mb30 {
  margin-bottom: 30px !important;
}
.textEditor .contentBuilder .mb40 {
  margin-bottom: 40px !important;
}
.textEditor .contentBuilder .mb50 {
  margin-bottom: 50px !important;
}
.textEditor .contentBuilder .mb60 {
  margin-bottom: 60px !important;
}
.textEditor .contentBuilder .mb70 {
  margin-bottom: 70px !important;
}
.textEditor .contentBuilder .mb80 {
  margin-bottom: 80px !important;
}

@-webkit-keyframes circleAnti {
  0% {
    stroke-dashoffset: 345.4;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes circleAnti {
  0% {
    stroke-dashoffset: 345.4;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes circleAnti_num {
  0% {
    stroke-dashoffset: 432;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes circleAnti_num {
  0% {
    stroke-dashoffset: 432;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes circleAnti2 {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes circleAnti2 {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes circleAnti3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circleAnti3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/**********上架神器模板樣式end**********/
#sub_title_index {
  padding: 20px;
  background: #f1f1f1;
  margin: 20px 0;
}