@charset "UTF-8";

:root {
  --font-family: "Montserrat", sans-serif;
  --white-color: #ffffff;
  --black-color: #000000;
  --primary-color: #111827;
  --secondary-color: #333333;
  --border-color: #e5e7eb;
  --light-color: #333333;
  --parrot-color: #15803d;
  --dark-green-color: #00748e;
  --green-color: #dcfce7;
  --body-color: #f9fafb;
  --dark-blue-color: #004987;
  --light-green-color: #11b4af;
  --screenshot-bg-color: #f0f0f0;
  --table-row-color: #f5f5f5;
  --grey-medium-color: #686868;
  --email-pro-color: #fb3c3c;
  --pre-code-color: #222222;
  --grey-text-color: #5f5f5f;
  --light-bg-color: #f9f9f9;
  --red-color: #c90700;
  --dark-blue-color: #004987;
  --code-language-color: #263238;
  --light-orange-color: #eb8457;
  --light-blue-color: #76a2d6;
  --blue-box-color: #288cff;
  --blue-300: #3553a5;
}

html {
  -webkit-text-size-adjust: none;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-color: var(--secondary) var(--white-color);
  scroll-behavior: inherit !important;
  scrollbar-width: thin;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  background: var(--body-color);
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  /* overflow-x: hidden; */
}

a {
  outline: none;
  text-decoration: none;
  color: var(--primary-color);
  display: inline-block;
}

p+p {
  margin-top: 10px;
  margin-bottom: 10px;
}

svg {
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  color: var(--primary-color);
}

.btn:focus {
  box-shadow: none;
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

input,
textarea,
select {
  outline: none;
  resize: none;
  font-family: var(--primary-font-family);
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  line-height: 1.3;
  color: var(--primary-color);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slick-slide {
  outline: none !important;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

.h2,
h2 {
  font-size: 36px;
  line-height: 1.11;
  font-family: var(--font-family);
  font-weight: 600;
  margin: 0px;
  color: var(--primary-color);
  letter-spacing: 0;
}

.h5,
h5 {
  font-size: 24px;
  line-height: 1.6;
  font-family: var(--font-family);
  font-weight: 600;
  margin: 0px;
  color: var(--primary-color);
  letter-spacing: 0;
}

h6,
.h6 {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 0;
}

.p,
p {
  font-size: 20px;
  line-height: 1.4;
  font-family: var(--font-family);
  font-weight: 400;
  margin: 0px;
  color: var(--secondary-color);
}

.container {
  max-width: 1202px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.section-content {
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  max-width: 729px;
  margin: 0 auto;
}

.section-content p,
.section-content h2 {
  text-align: center;
}

.section-content p a {
  font-weight: 600;
}

.btn.btn-arrow {
  color: var(--light-color) !important;
  background-color: transparent;
  text-decoration: underline;
  border: 0;
  text-transform: capitalize;
  font-size: 18px;
}

.section-content p a:hover {
  color: var(--secondary);
}

.btn {
  background-color: var(--secondary);
  color: var(--white-color) !important;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: transparent;
  color: var(--secondary) !important;
  border-color: var(--secondary);
}

.nav-cta-btn .btn:hover {
  color: var(--secondary) !important;
  background-color: transparent;
  border: 1px solid var(--secondary);
}

.btn-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.doc-img {
  padding: 20px 0;
}

.doc-img img {
  display: block;
}

.doc-nav-content pre {
  white-space: break-spaces;
  word-break: break-all;
}

/* docs-index page */
.docs-index-wrap {
  padding: 113px 0;
}

.docs-index-box {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
  padding: 25px;
  border: 1px solid var(--border-color);
  background: var(--white-color);
  border-radius: 12px;
}

.docs-index .row {
  row-gap: 32px;
  justify-content: center;
  --bs-gutter-x: 32px;
}

.docs-index-area {
  display: flex;
}

.docs-icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.docs-index .icon-text {
  display: inline-block;
  color: var(--parrot-color);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  padding: 5px 8px;
  border: 1px solid var(--border-color);
  background-color: var(--green-color);
  border-radius: 50px;
}

.doc-sub-menu {
  flex-direction: column;
}

.doc-section-content .doc-nav-content:first-child {
  border-top: 0;
}

.doc-nav-content pre code {
  white-space: break-spaces;
  word-break: break-all;
}

.docs-index-content p {
  font-size: 14px;
  padding: 16px 0;
}

.docs-index-box .icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--dark-green-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.docs-index-content {
  padding-top: 16px;
}

.docs-index-content .download-docs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.docs-index-box .download {
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  padding: 5px 8px;
  color: var(--dark-green-color);
  background: rgba(0, 116, 142, 0.15);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.docs-index-box.related-post .icon-img {
  background-color: var(--blue-300);
}

.docs-index-box.related-post .download {
  color: var(--blue-300);
  background: rgba(53, 83, 165, 0.15);
}

.docs-index-box.dark-blue .icon-img {
  background-color: var(--dark-blue-color);
}

.docs-index-box.dark-blue .download {
  color: var(--dark-blue-color);
  background: rgba(0, 73, 135, 0.15);
}

.docs-index-box.light-orange .icon-img {
  background-color: var(--light-orange-color);
}

.docs-index-box.light-orange .download {
  color: var(--light-orange-color);
  background: rgba(235, 132, 87, 0.15);
}

.docs-index-box.light-blue .icon-img {
  background-color: var(--light-blue-color);
}

.docs-index-box.light-blue .download {
  color: var(--light-blue-color);
  background: rgba(118, 162, 214, 0.15);
}

.docs-index-box.blue-box .icon-img {
  background-color: var(--blue-box-color);
}

.docs-index-box.blue-box .download {
  color: var(--blue-box-color);
  background: rgba(40, 140, 255, 0.15);
}

.docs-index-box.light-green .icon-img {
  background: var(--light-green-color);
}

.docs-index-box.light-green .download {
  color: var(--light-green-color);
  background: rgba(17, 180, 175, 0.15);
}

.docs-index-content .download-docs .docs-updated {
  font-size: 12px;
  color: var(--light-color);
}

.docs-index-box:hover {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.01);
}

.f-column p {
  font-size: 16px;
  font-weight: 600;
}

.badge {
  border-radius: 100%;
}

header .header-warp-right .header-cart>a {
  padding: 25px 17px 28px;
}

.doc-wrapper {
  padding: 114px 0;
}

.doc-wrapper .h5 {
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid #002147;
}

.doc-wrapper .h6 {
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid #002147;
}

.doc-wrapper h4.h6 {
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 0;
  padding-bottom: 10px;
}

/* .doc-section {
  padding-bottom: 15px;
} */
.doc-section p {
  font-size: 16px;
}

.doc-section-content {
  padding: 15px 0;
}

.doc-section-content .doc-list {
  padding: 10px 0;
}

.doc-feature {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
  padding: 14px 0 4px;
}

.doc-section-content li {
  font-size: 18px;
  font-weight: 600;
  padding-left: 0;
  padding-bottom: 10px;
}

.doc-section-content li p {
  padding-bottom: 10px;
}

.doc-nav-content .doc-img {
  padding: 10px 0;
}

.doc-list li {
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--secondary-color);
  padding-left: 30px;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.doc-list li:before {
  position: absolute;
  content: "";
  margin: auto 0;
  background-color: var(--black-color);
  width: 6px;
  height: 6px;
  left: 6px;
  top: 6px;
  border-radius: 100%;
}

#topcontrol {
  background: var(--secondary);
  color: var(--white-color);
  text-align: center;
  display: inline-block;
  width: 35px;
  height: 35px;
  border: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  z-index: 30;
}

#topcontrol:hover {
  background: var(--secondary-300);
}

#topcontrol .fa {
  position: relative;
  top: 3px;
  font-size: 25px;
}

.video-container iframe {
  max-width: 100%;
}

.doc-body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  gap: 30px;
}

.doc-content {
  font-size: 18px;
  flex: 1;
}

.doc-section-content li:last-child p {
  padding-bottom: 0;
}

.doc-section-content li:last-child {
  padding-bottom: 0;
}

.doc-nav-content .h6 {
  font-size: 20px;
  font-weight: 600;
}

.doc-nav-content {
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.doc-section-content .doc-nav-content:last-child {
  padding-bottom: 0;
}

.doc-section p a {
  font-weight: 600;
  color: var(--secondary);
}

.doc-video {
  margin-bottom: 20px;
}

.doc-section p a:hover {
  color: var(--secondary);
}

.question .fa {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}

.question .label {
  font-size: 11px;
  vertical-align: middle;
}

.code-block {
  margin-top: 30px;
  margin-bottom: 30px;
}

.table>thead>tr>th {
  border-bottom-color: var(--secondary-200);
}

.table-bordered>thead>tr>th {
  border-bottom-color: inherit;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  background-color: var(--table-row-color);
}

.doc-sidebar {
  width: 300px;
}

.nav>li>a:focus,
.nav>li>a:hover {
  background-color: transparent;
}

#doc-nav {
  position: sticky;
  top: 80px;
}

.doc-menu {
  list-style: none;
  background: var(--white-color);
  padding: 20px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
  border-radius: 12px;
}

.doc-menu li.branding-nav, .doc-menu li:first-child {
  display: block;
  width: 100%;
}

.doc-menu li a {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-color);
  padding: 12px;
}

.doc-menu li a:hover {
  color: var(--secondary);
}

.doc-menu li.active a {
  color: var(--secondary);
}

.doc-sub-menu {
  list-style: none;
  padding-left: 0;
}

.doc-sub-menu>li {
  margin-bottom: 10px;
  font-size: 16px;
}

.doc-sub-menu>li:first-child {
  padding-top: 5px;
}

.doc-sub-menu>li>a {
  display: block;
  color: var(--light-color);
  font-weight: 400;
  padding: 0;
  padding-left: 28px;
  font-size: 14px;
  background: none;
  position: relative;
}

.doc-sub-menu>li>a:before {
  content: "";
  width: 5px;
  height: 1px;
  position: absolute;
  left: 16px;
  top: 50%;
}

.img-full {
  width: 100%;
}

:not(pre)>code[class*="language-"],
pre[class*="language-"] {
  background: var(--code-language-color);
  border: 0;
  tab-size: 0;
}

.close-btn {
  display: none;
  text-align: right;
  padding: 0px;
}

.close-btn a {
  display: inline-block;
  max-width: 40px;
  padding: 10px 10px;
}

.back_to_top {
  z-index: 999;
  /* display: none; */
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 20px;
  bottom: 50px;
  background: var(--white-color);
  width: 45px;
  height: 45px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(48, 48, 48, 0.2);
  -moz-box-shadow: 0px 2px 6px 0px rgba(48, 48, 48, 0.2);
  box-shadow: 0px 2px 6px 0px rgba(48, 48, 48, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.back_to_top.visible {
  opacity: 1;
  visibility: visible;
}

.table-content {
  display: none;
}

.btn-wrap a {
  font-size: 14px;
  padding: 4px 14px;
  font-weight: 600;
}

.pricing-box-wrap {
  padding: 20px;
}

.pricing-box-wrap ul {
  margin: 0;
  padding: 0;
}

.pricing-box-wrap ul li {
  padding-bottom: 0;
}

.pricing-box {
  background: var(--white-color);
  border: 1px solid var(--grey-light-500);
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.03);
}

.pricing-box .cta-btn .cta-link {
  border-color: var(--secondary);
  color: var(--secondary);
}

.pricing-box .cta-btn .cta-link.fill {
  color: var(--white-color);
  background: var(--secondary);
}

.pricing-box-header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--grey-light-500);
}

.pricing-box-header>div {
  font-size: 18px;
  color: var(--black-color);
  font-weight: 500;
  padding: 20px 30px;
}

.fe-column {
  width: calc(100% - 360px);
  color: var(--light-color);
  font-size: 16px;
}

.fr-column {
  width: 180px;
  text-align: center;
}

.pr-column,
.fr-column {
  width: 180px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.pricing-box-middle ul li {
  background: var(--light-bg-color);
  font-size: 18px;
  color: var(--grey-text-color);
  border-bottom: 1px solid var(--grey-light-500);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pricing-box-middle ul li:nth-child(2n) {
  background: var(--white-color);
}

.pricing-box-middle ul li>div {
  font-size: 16px;
  padding: 10px 30px;
  border-right: 1px solid var(--grey-light-500);
}

.pricing-box-middle ul li>div:last-child {
  border: 0;
}

.pricing-box-middle ul li .fa-times {
  color: var(--red-color);
  font-size: 24px;
  width: 24px;
  height: 24px;
  background: url(../images/close.svg) no-repeat;
  background-size: 24px 25px;
  display: block;
  margin: 0 auto;
}

.pricing-box-middle ul li .fa-check {
  font-size: 24px;
  width: 29px;
  height: 29px;
  background: url(../images/check.svg) no-repeat;
  background-size: 29px 29px;
  display: block;
  margin: 0 auto;
}

.pricing-box-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--grey-light-500);
}

.pricing-box-footer>div {
  font-size: 22px;
  color: var(--grey-medium-color);
  font-weight: 500;
  padding: 20px 5px;
}

.doc-menu li.branding-nav .branding {
  padding: 0 15px;
}

.branding-nav {
  margin: 0 auto;
}

header .header-warp-right .nav-warp>ul>li>a {
  color: var(--primary-color);
}

/* 19-03-2020 */
.cta-btn {
  margin: 10px 0;
}

.branding .logo img {
  width: 100%;
}

/* 23-03-2020 */
span.mupr-pro .rectangle,
span.email-addon-pro .rectangle {
  border-radius: 3px;
  background-color: var(--green-color);
  width: 40px;
  height: 21px;
  z-index: 4;
  padding: 3px;
  margin-left: 5px;
}

span.mupr-pro,
span.email-addon-pro {
  font-size: 10px;
  color: var(--white-color);
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  border-radius: 3px;
  background-color: var(--light-green-color);
  width: 40px;
  height: 21px;
  z-index: 4;
  padding: 3px;
  margin-left: 5px;
}

.header .branding .logo {
  display: none;
}

.page-wrapper {
  min-height: 100%;
}

.page-wrapper:after {
  content: "";
  display: block;
}

code {
  background: var(--pre-code-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: bold;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  padding: 2px 8px;
  padding-top: 4px;
  display: inline-block;
}

.leftmenu.open .dropdown-toggle:empty::after {
  display: none;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.fr-column i:before {
  display: none;
}

.pr-column i:before {
  display: none;
}

header .header-warp-right .header-login {
  padding: 27px 15px;
}

.doc-list li ul {
  padding-top: 8px;
}

/* .doc-sub-menu > li > a:hover {
  color: rgba(0, 33, 71, 1);
  text-decoration: none;
  background: none;
}
.doc-sub-menu > li > a:focus {
  background: none;
}
.doc-sub-menu > li.active > a {
  background: none;
  color: #002147;
} */
/* .affix-top {
  position: absolute;
  top: 15px;
}
.affix {
  top: 15px;
}
.affix,
.affix-bottom,
.affix-top {
  width: 300px;
}
.affix-bottom {
  position: absolute;
} */
/* ===== Promo block ===== */
/* .promo-block {
  background: #3aa7aa;
}
.promo-block a {
  color: rgba(0, 0, 0, 0.5);
}
.promo-block a:hover {
  color: rgba(0, 0, 0, 0.6);
}
.promo-block .promo-block-inner {
  padding: 45px;
  color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.promo-block .promo-title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 45px;
}
.promo-block .promo-title .fa {
  color: rgba(0, 0, 0, 0.5);
}
.promo-block .figure-holder-inner {
  background: #fff;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.promo-block .figure-holder-inner img {
  border: 5px solid #fff;
}
.promo-block .figure-holder-inner .mask {
  display: block;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  text-decoration: none;
}
.promo-block .figure-holder-inner .mask .icon {
  color: #fff;
  font-size: 42px;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  margin-top: -21px;
}
.promo-block .figure-holder-inner .mask .icon.pink {
  color: #ea5395;
}
.promo-block .figure-holder-inner:hover .mask {
  visibility: visible;
}
.promo-block .content-holder-inner {
  padding-left: 15px;
  padding-right: 15px;
}
.promo-block .content-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
}
.promo-block .highlight {
  color: rgba(0, 0, 0, 0.4);
}
.promo-block .btn-cta {
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff !important;
  margin-bottom: 15px;
}
.promo-block .btn-cta:hover {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff !important;
} */

/* Small devices (tablets, 768px and up) */
/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
/* ======= Landing Page ======= */
/* .landing-page .header {
  background: #494d55;
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0;
}
.landing-page .header a {
  color: #fff;
}
.landing-page .branding {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.landing-page .branding .logo {
  font-size: 38px;
  margin-top: 0;
  margin-bottom: 0;
}
.landing-page .branding .text-bold {
  font-weight: 800;
  color: #fff;
}
.landing-page .branding .icon {
  font-size: 32px;
  color: #40babd;
}
.landing-page .tagline {
  font-weight: 600;
  font-size: 20px;
}
.landing-page .tagline p {
  margin-bottom: 5px;
}
.landing-page .tagline .text-highlight {
  color: #266f71;
}
.landing-page .fa-heart {
  color: #ea5395;
}
.landing-page .cta-container {
  margin-top: 30px;
}
.landing-page .social-container {
  margin-top: 30px;
}
.landing-page .social-container .twitter-tweet {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 5px;
}
.landing-page .social-container .fab-like {
  display: inline-block;
} */
/* .cards-section {
  padding: 60px 0;
  background: #f9f9fb;
}
.cards-section .title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}
.cards-section .intro {
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 60px;
  color: #616670;
}
.cards-section .cards-wrapper {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.cards-section .item {
  margin-bottom: 30px;
}
.cards-section .item .icon-holder {
  margin-bottom: 15px;
}
.cards-section .item .icon {
  font-size: 36px;
}
.cards-section .item .title {
  font-size: 16px;
  font-weight: 600;
}
.cards-section .item .intro {
  margin-bottom: 15px;
}
.cards-section .item-inner {
  padding: 45px 30px;
  background: #fff;
  position: relative;
  border: 1px solid var(--screenshot-bg-color);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.cards-section .item-inner .link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../images/empty.gif");
  /* for IE8 */
/* .callout-block {
  padding: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  margin-bottom: 30px;
}
  /* .answer {
  color: #616670;
} */
/* .callout-block a {
  color: rgba(0, 0, 0, 0.55) !important;
}
.callout-block a:hover {
  color: rgba(0, 0, 0, 0.65) !important;
}
.callout-block .icon-holder {
  font-size: 30px;
  position: absolute;
  left: 30px;
  top: 30px;
  color: rgba(0, 0, 0, 0.25);
}
.callout-block .content {
  margin-left: 60px;
}
.callout-block .content p:last-child {
  margin-bottom: 0;
}
.callout-block .callout-title {
  margin-top: 0;
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.65);
}
.callout-info {
  background: var(--secondary);
  color: var(--white-color);
}
.callout-success {
  background: var(--secondary);
  color: var(--white-color);
}
.callout-warning {
  background: var(--secondary);
  color: var(--white-color);
}
.callout-danger {
  background: var(--secondary);
  color: var(--white-color);
} */

/* .doc-header {
  margin-bottom: 30px;
}
.doc-header .doc-title {
  color: #40babd;
  margin-top: 0;
  font-size: 36px;
}

.doc-header .meta {
  color: #a2a6af;
} */
/* .question {
  font-weight: 400 !important;
  color: #3aa7aa;
}
.question .body-green {
  color: #63b971;
} */
/* .screenshot-holder {
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}
.screenshot-holder img {
  border: 1px solid var(--screenshot-bg-color);
}
.screenshot-holder .mask {
  display: block;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  text-decoration: none;
}
.screenshot-holder .mask .icon {
  color: #fff;
  font-size: 42px;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  margin-top: -21px;
}
.screenshot-holder:hover .mask {
  visibility: visible;
}
.jumbotron h1 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 30px;
}
.author-profile {
  margin-top: 30px;
}
.author-profile img {
  width: 100px;
  height: 100px;
}
.speech-bubble {
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
}
.speech-bubble .speech-title {
  font-size: 16px;
}
.jumbotron .speech-bubble p {
  font-size: 14px;
  font-weight: normal;
  color: #616670;
}
.speech-bubble:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.card {
  text-align: center;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom: 30px;
  position: relative;
}
.card .card-block {
  padding: 15px;
}
.card .mask {
  display: block;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  text-decoration: none;
}
.card .mask .icon {
  color: #fff;
  font-size: 42px;
  margin-top: 25%;
}
.card:hover .mask {
  visibility: visible;
} */
/* .cards-section .item-inner:hover {
  background: var(--table-row-color);
}
.cards-section .item-primary .item-inner {
  border-top: 3px solid #40babd;
}
.cards-section .item-primary .item-inner:hover .title {
  color: #2d8284;
}
.cards-section .item-primary .icon {
  color: #40babd;
}
.cards-section .item-green .item-inner {
  border-top: 3px solid #00bcd5;
}
.cards-section .item-green .item-inner:hover .title {
  color: var(--green-color);
}
.cards-section .item-green .icon {
  color: #00bcd5;
}
.cards-section .item-blue .item-inner {
  border-top: 3px solid #58bbee;
}
.cards-section .item-blue .item-inner:hover .title {
  color: #179de2;
}
.cards-section .item-blue .icon {
  color: #58bbee;
}
.cards-section .item-orange .item-inner {
  border-top: 3px solid #f88c30;
}
.cards-section .item-orange .item-inner:hover .title {
  color: #d46607;
}
.cards-section .item-orange .icon {
  color: #f88c30;
}
.cards-section .item-red .item-inner {
  border-top: 3px solid #f77b6b;
}
.cards-section .item-red .item-inner:hover .title {
  color: #f33a22;
}
.cards-section .item-red .icon {
  color: #f77b6b;
}
.cards-section .item-pink .item-inner {
  border-top: 3px solid #ea5395;
}
.cards-section .item-pink .item-inner:hover .title {
  color: #d61a6c;
}
.cards-section .item-pink .icon {
  color: #ea5395;
}
.cards-section .item-purple .item-inner {
  border-top: 3px solid #8a40a7;
}
.cards-section .item-purple .item-inner:hover .title {
  color: #5c2b70;
}
.cards-section .item-purple .icon {
  color: #8a40a7;
} */