@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    line-height: 1.5em;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    counter-reset: h1;
    overflow-wrap: break-word;
    opacity: 0;
}

.content {
    min-height: calc(100vh - 120px);
}

footer {
    height: 120px;
    background-color: #fafafa !important;
    width: 100%;
}

body.ready {
    opacity: 1;
    transition: 0.25s opacity;
}

.item-desc {
    line-height: 1.5em;
    font-size: 0.95rem !important;
}

h3.item-title {
    display: inline-block;
    margin-left: 8px;
}

.overview-section .item-icon {
    display: inline-block;
}

.overview-section .item-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #DC4848;
    text-transform: uppercase;
}

.item-first-row {
    display: table;
    width: 100%;
    border-bottom: 1px solid #5D7C90;
    margin-bottom: 7px;
}

article a {
    text-decoration: underline;
}


.single-col-max-width {
    max-width: 1200px;
}


.pricing-table tbody td ul {
    text-align: left;
}



.pricing-table tbody th {
    line-height: 1.2em;
}

.faq-accordion .card-title a i {
    margin-right: 0.5em;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    color: #fff;
    transition: all 0.3s;
    width: 100%;
    line-height: 1em;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    background-color: #5D7C90;
    width: 100%;
    margin: 0px;
    text-align:center;
}
#sidebar .sidebar-header img {
    padding-top: 10px;
}

#sidebar ul.components {
    width: 100%;
    text-align: left;
    margin-bottom:0;
    margin-top:0;
    padding-top: 0.5em;
    /*background-color: #343131;*/
}

#sidebar ul.components li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    text-transform: uppercase;
}

#sidebar ul.components li a:hover {
    color: #5D7C90;
    background: #fff;
}

#sidebar ul.components li.active a {
    color: #fff;
    background: #6D8Ca0;
}

#sidebar ul.components a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebar ul.components ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

.header .navbar {
    padding: 0;
}

.header .nav-item {
    font-weight: normal;
}

.navbar-toggler {
    margin: 0.3em;
}

.social-list a {
    line-height: 1.5em;
    background-color: #ddd;
}

.wave {
    width: 100%;
    height: 300px;
    overflow:hidden;
}

.theme-bg-inv {
    background-color: #5D7C90;
}

.theme-fg-inv {
    color: #fcfcfc;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.section-title.theme-fg-inv {
    color: #fcfcfc;
}

.section-title.theme-fg-inv:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 100%;
    background: #fcfcfc;
    position: absolute;
    left: 0;
    top: 0;
}

.theme-bg-light {
    color: #3f3f3f;
}

section {
    padding-bottom: 40px;
    padding-top: 40px;
}

.blog-banner {
    text-align:center;
}

.blog-banner img {
    max-width: 940px;
}

.meta {
    line-height: 1.2em;
}

ol, ul, dl {
    margin-top: 0.1em;
    margin-bottom: 0.1em;
}

s, strike{
    text-decoration:none;
    position:relative;
    font-size: 1.1rem;
}

s::before, strike::before {
    top: 40%; /*tweak this to adjust the vertical position if it's off a bit due to your font family */
    background:rgb(200,30,30); /*this is the color of the line*/
    opacity:.95;
    content: '';
    width: 120%;
    position: absolute;
    height:.1em;
    border-radius:.1em;
    left: -10%;
    white-space:nowrap;
    display: block;
    transform: rotate(-15deg);  
}

s.straight::before, strike.straight::before{
    transform: rotate(0deg);
    left:-1%;
    width:102%;
}

.roboto {
    font-family: Roboto, sans-serif;
}

.sale {
    color: rgb(200,30,30); 
}

.smaller {
    font-size: 1.1rem;
}

a.under {
    text-decoration: underline
}

figure.blog-banner a img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display:block;
}

figure {
    margin-top: 1em;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display:block;
    text-align:center;
}

figure img {
    max-width: 100%;
    box-shadow: 0 5px 8px 0 rgb(0 0 0 / 20%), 0 3px 10px 0 rgb(0 0 0 / 19%) !important;
    border-radius: 3px;
    display: block;
    position: relative;
    margin: auto;
    z-index: 10;
}

figure img.gif {
    z-index: 1;
}

figure img.logo {
    display: none;
}

/*
figure::before {
    content: "\f04b";
    font-family: "Font Awesome 5 Free";
    display: block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    float: right;
    position: relative;
    padding: .2em;
    top: 2em;
    right: 50%;
    font-weight: 900;
    z-index: 5;
    color: #6d7fcc;
    border-radius: 50%;
    border: 2px solid #6d7fcc;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
*/

figure figcaption {
    margin-top: .5em;
    font-size: .9rem;
    font-style: italic;
    color: #666;
}


.card-img, .card-img-top {
    padding: 10px 10px 0px 10px;
    border-bottom: 1px solid rgba(93,124,144,.1);
}

.card-img-top {
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    max-height: 220px;
}


.card-text {
    line-height: 1.4em;
    text-align: justify;
}

p {
    text-align: justify;
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-top: .4em;
    padding-bottom: .4em;
}

.p-md-5 {
    padding: 1rem !important;
}

.blog-post  .title {
    font-size: 3rem;
    color: #5D7C90;
    text-align: center;
    font-weight: 600;
    padding-top: .5em;
    padding-bottom: .5em;
}

h1.title {
    font-size: 5em !important;
    color: #5D7C90;
    font-weight: 600;
}

h1 {
    font-size: 3em;
    color: #5D7C90;
    font-weight: 600;
}

h2 {
    color: #5D7C90;
    margin-top: 1em;
    font-weight: 500;
}

h3 {
    margin-top: .5em;
    font-weight: 500;
    color: #777;
}

em {
    font-style: unset;
    font-weight: 600;
}

.blog-post-body {
    counter-reset: h1;
}

.blog-post .blog-post-body h1:before {
    content: counter(h1) ".\0000a0\0000a0";
    counter-increment: h1;
}

.blog-post .blog-post-body h1 {
    font-size: 2em;
    color: #5D7C90;
    margin-top: 1em;
    font-weight: 500;
    counter-reset: h2;
}

.blog-post .blog-post-body h2:before {
    content: counter(h1) "." counter(h2) "\0000a0\0000a0";
    counter-increment: h2;
}

.blog-post .blog-post-body h2 {
    color: #777;
    padding-left: 1.5em;
    margin-top: 1em;
    font-size: 1.5rem;
    font-weight: 500;
    counter-reset: h3;
}

.blog-post .blog-post-body h3:before {
    content: counter(h1) "." counter(h2) "." counter(h3) "\0000a0\0000a0";
    counter-increment: h3;
}

.blog-post .blog-post-body h3 {
    color: #777;
    padding-left: 3em;
    margin-top: .5em;
    font-size: 1.3rem;
    font-weight: 400;
    counter-reset: h4;
}


.blog-post pre {
    margin-bottom: 0;
    line-height: 1.3em;
    width: 100%;
    background-color: #fafafa;
    padding: .5em;
}

.blog-post pre code {
    color: unset;
}

.highlighttable {
    border-left: 5px #5D7C90 solid;
    padding-left: 1em;
    background-color: #fafafa;
} 

.highlighttable td {
    border: 0px;
    padding: 0px 0px 0px .3em;
}

.highlighttable .linenos {
    background-color: #fafafa;
    border-right: 1px #5D7C90 solid;
}

.highlighttable .code {
    background-color: #fafafa;
    width: 100%;
}


.blog-post code {
    font-size: 100%;
    color: #DC4848;
}


strong {
    color: inherit;
    font-size: 80%;
    background-color: #fff;
    border: 1px solid #a6a6a6;
    border-radius: 4px;
    box-shadow: 0 2px grey;
    padding: 2.4px 6px;
    margin: auto 0;
    font-weight: 600;
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;
}

.blog-post ul {
    list-style-type:square;
}

.date i {
    font-size: 1.2em;
    margin-right: .3em;
}

.categories-list span i {
    margin-right: 3px;
    color: #666;
}

.categories-list span a {
}

.categories-list span em {
    color: #777;
    font-size: .7rem;
    font-style: normal;
    vertical-align: middle;
    margin-right: 16px;
}

.intro i {
    margin-left: 16px;
    margin-right: 0px;
    color: #666;
}


.is-active-link::before {
    background-color: #DC4848;
    width: 3px;
}

.toc-link::before {
    width: 3px;
}

.is-active-link {
    font-weight: 400;
}



.toc-container span {
    display:block;
    margin-bottom: .5em;
    font-size: 1.15rem;  
}

.triangle-down {
   border-top:21px solid #5D7C90;
   border-left:140px solid #fafafa;
   border-right:140px solid #fafafa;
   width:0;
   content:"";
   display:block;
   overflow:hidden;
   left:0;
   right:0;
   margin:auto;
}

.triangle-up {
   border-bottom:21px solid #5D7C90;
   border-left:140px solid #fafafa;
   border-right:140px solid #fafafa;
   width:0;
   content:"";
   display:block;
   overflow:hidden;
   left:0;
   right:0;
   margin:auto;
}

.toc-container {
    width:100%;
    padding: 0px 5px 1em 10px;
    color: rgba(255,255,255,0.8);
    text-align: left;
    line-height: 2em;
    background: #fff;
    color: #5D7C90;
}


.toc-container nav {
    text-align:left;
    width: 100%;
    font-size: 1.1rem;  
}


.table {
    margin-top: 1rem;
    font-size: .9rem;
}

img.tns-lazy-img {
    max-width: 100%;
    min-width: 100%;
    opacity: unset;
}

.screenshot-carousel {
    display: inline-block;
    max-width: 768px;
}


.btn-full {
    width: 100%;
    margin-left: 1em;
    margin-right: 1em;
}

ul.features {
    list-style-type: none;
    padding-inline-start: 1em;
}

blockquote {
    border-left: 3px solid #5D7C90;
    margin: 10px;
    padding: 0.1em 10px .1em 10px;
    quotes: "\201C""\201D""\2018""\2019";
    line-height: 1em;
}

.blog-list .item .post-thumb {
    max-width: 350px;
}

.blog-post-list {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.025);
    height: 100%;
    padding: 1em;
    border-radius: 5px;
}

.blog-list .item .title a {
    color: #5D7C90;
    font-size: 1.3em;
}


.blog-post-card .card-title {
    text-align: left;
    font-size: 1.35rem;
}

.blog-post-card {
    border-radius: 5px;
}

.blog-post-card:hover {
    background: #f6f6f6;
}


.profile-section .profile-image {
    max-width: 224px;
}

.header {
    /*width: 300px;*/
    /*background-color: #343131;*/
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(93,124,144,0.3) !important;
}

.project-card {
    border-radius: 5px;
    padding: 16px;
}

.blog-post-card {
    background: #fafafa !important;
}

.theme-bg-dark {
    background: #5D7C90 !important;
}

h5 {
    margin-top: 1em;
    margin-bottom: 0 !important;
}

.sl-card-header [slot='header'] {
    align-items: center;
    justify-content: space-between;
}

.sl-card-header h3 {
    margin: 0;
}

.sl-card-header sl-icon-button {
    font-size: var(--sl-font-size-medium);
}

.sl-tree-with-lines {
    --indent-guide-width: 1px;
}

sl-icon {
    vertical-align: middle;
    margin-left: 2px;
    margin-right: 2px;
}


sl-input {
    margin-bottom: 1em;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.raw {
    font-family: Consolas, monospace;
    white-space:nowrap;
}

.nowrap {
    white-space:nowrap;
}

#navigation {
    padding: 1em;
}

sl-select {
    margin-bottom:1em;
}

.trsep td {
    border-bottom: 2px solid !important;
}
