:root {
    --bg: #1C1C3A;
    --bg-lig: #33334E;
    --bg-drk: #191934;
    --white: #FFF;
    --gray: #E8E8EB;
    --gray-dark: #8B8C9D;
    --pri: #ADCB3F;
    --pri-hvr: #9CB739;
    --pri-txt: #212121;
    --sec: #FFF;
    --sec-hvr: #EDEDED;
    --sec-txt: #212121;
    --success: #28A745;
    --info: #17A2B8;
    --warning: #FFC107;
    --danger: #DC3545;
    --light: #F8F9FA;
    --light-hvr: #F8F9FA;
    --dark: #212121;
    --dark-hvr: #121212;
    --gold: #FFD700;
    --silver: #DBE4EB;
    --bronze: #Cd7F32;
    --norm: 300;
    --bold: 500;
}

/**
 * Minimal Reset
 */
html {
    box-sizing: border-box;
    font-size: 100%;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    color: var(--gray-dark);
    background-color: var(--bg);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: var(--norm);
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
}

h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0 0 1.5rem;
    padding: 0;
}

p, ol, ul {
    font-weight: var(--norm);
}

a {
    color: inherit;
    text-decoration: currentColor solid underline;
    text-underline-position: under;
}

a[class] {
    text-decoration: none;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

a:hover,
a:focus,
a:active {
    color: inherit;
    text-decoration-color: var(--pri);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    width: 100%;
    max-width: 100%;
    line-height: 1.25;
    font-weight: var(--bold);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    font-weight: inherit;
}

h1 { font-size: 1.25rem }

h2 { font-size: 1.125rem }

h3, h4, h5, h6 {
    font-size: 1rem;
}

@media screen and (min-width:768px) {
    h1 { font-size: 2rem }

    h2 { font-size: 1.5rem }

    h3 { font-size: 1.25rem }

    h4, h5, h6 {
        font-size: 1rem;
    }
}

p { font-size: 1rem }

p, ul, ol {
    line-height: 1.75;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style-position: inside;
}

ul[class],
ol[class] {
    padding: 0;
    list-style: none;
}

input,
button,
textarea,
select {
    font: inherit;
}

table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
    border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.screen-reader-text, .screen-reader-text span, .screen-reader-shortcut {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus {
    clip: auto !important;
    height: auto;
    width: auto;
    display: block;
    font-size: 1em;
    font-weight: 700;
    padding: 15px 23px 14px;
    color: #333;
    background: #FFF;
    z-index: 100000;
    text-decoration: none;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6)
}

/**
 * Header
 */
.site-header {
    height: 4.5rem;
    will-change: height;
    color: var(--light);
    background-color: var(--bg);
}

.site-header__wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: height .4s ease-in-out;
    color: inherit;
    background-color: inherit;
    will-change: height;
    z-index: 10;
    box-shadow: 0 0 3px 4px rgba(0, 0, 0, .05);
}

.site-header.is-fixed {
    height: 4.5rem;
}

.admin-bar .site-header__wrap {
    top: 2.875rem;
}

@media screen and (min-width: 782px) {
    .admin-bar .site-header__wrap {
        top: 2rem;
    }
}

.site-header.on-scroll {
    background-color: var(--bg);
    height: 4rem;
}

.site-header__inr {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.site-header__wrap,
.site-header__inr {
    margin: auto;
    height: inherit;
    background-color: inherit;
}

.site-header__menu,
.menu-pri {
    background-color: inherit;
}

.js-menu-open {
    overflow: hidden;
}

@media screen and (max-width: 959px) {
    .site-header__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        transition: transform .4s ease, opacity .4s ease;
        transform: translate3d(0, 100%, 0);
        opacity: 0;
        visibility: hidden;
        z-index: 10;
        height: 100vh;
    }

    .js-menu-open .site-header__menu {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0);
    }

    .menu-btn {
        order: 1;
        justify-content: center;
    }

    .menu-btn a {
        margin: .5rem 0;
    }
}

@media screen and (min-width: 960px) {
    .site-header__menu {
        position: relative;
        height: 100%;
    }
}

/**
 * Site logo.
 */
.site-logo {
    width: 50%;
    flex-basis: 50%;
}

.site-logo a {
    display: flex;
}

@media screen and (min-width: 960px) {
    .menu-toggle-btn,
    .menu-toggle-input {
        display: none;
    }

    .site-header {
        height: 6rem;
    }

    .site-header .site-logo {
        width: 25%;
        flex-basis: 25%;
    }

    .site-header .site-header__menu {
        width: calc(100% - 25%);
        flex-basis: calc(100% - 25%);
    }
}

/**
 * Footer
 */

.site-info {
    display: block;
    position: relative;
    padding: 1rem 0;
    background-color: var(--bg);
}

/**
 * Site Main
 */

.site-main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    color: var(--gray-dark);
    background-color: var(--light);
    word-wrap: break-word;
}

.inside-content {

    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
  
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
  }

  .entry-content iframe{
    width: 100% !important;
    height: 450px !important;
  }
.no-sidebar .page,
.no-sidebar .post,
.no-sidebar .reviews {
    flex-basis: 100%;
}

/**
 * Sticky Menu
 */

.menu-bar {
    width: 100%;
    max-width: 100%;
    height: 4rem;
    border: 1px solid rgba(134,157,172,.16);
    background-color: #f3f7f8;
}

.menu-bar--sticky {
    position: sticky;
    top: 4.5rem;
    z-index: 5;
}

.menu-bar__inr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

@media screen and (min-width: 960px) {
    .menu-bar--sticky {
        top: 4.5rem;
    }

    .admin-bar .menu-bar--sticky {
        top: calc( 4.5rem + 2rem );
    }
}

/**
 * Reviews Menu
 */

.menu-review,
.menu-review-li {
    height: 100%;
}

.menu-review-li {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.menu-review-li-a {
    display: block;
    padding: .25rem .75rem;
    font-size: .75rem;
    text-decoration: none;
    font-weight: var(--bold);
}

@media screen and (min-width: 960px) {
    .menu-review-li-a {
        padding: .5rem 1rem;
        font-size: .875rem;
    }
}

/**
 * Review Social
 */

.social-li {
    display: block;
}

.social-li-a {
    display: flex;
    align-items: center;
    padding: .25rem 1rem;
}

.social-li-a .i-ico {
    margin-right: 1rem;
}

.details-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    border-radius: .25em;
    border: 1px solid rgba(0,0,0,.05);
}

.details-item + .details-item {
    margin-top: .25rem;
}

.details-item__value,
.details-item__lbl {
    font-size: .75rem;
    line-height: 1.5rem;
    padding: .25rem 1rem;
}

.details-item__value {
    width: 66.666%;
    flex-basis: 66.666%;
}

.details-item__lbl {
    width: 33.333%;
    flex-basis: 33.333%;
    background-color: rgba( 0, 0, 0, .05);
    align-self: stretch;
}

/**
 * Entry Content
 */

.entry-content {
    padding: 2rem 0;
    background-image: linear-gradient( 180deg, var(--light), white );
}

.entry-content .bnr {
    position: relative;
    top: -2rem;
}

.entry-highlights {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.entry-highlights__el {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    border-top: 1px dashed rgba(0,0,0,.05);
    padding: 1.5rem 0;
}

.entry-highlights__el li {
    font-size: .875rem;
}

.entry-highlights__el--full ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.entry-highlights__el--full li {
    width: 50%;
    flex-basis: 50%;
}

.entry-subtitle {
    position: relative;
}

.entry-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 1rem;
    height: .125rem;
    background-color: var(--pri);
}

@media screen and (min-width: 600px) {
    .entry-highlights__el--half {
        max-width: 50%;
        flex-basis: 50%;
    }
}

/**
 * Section
 */

.section {
    padding: .75rem 0;
}

@media screen and (min-width:960px) {
    .section {
        padding: 2rem 0;
    }
}

.section--nabulas {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 2rem 0;
}

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

.container {
    max-width: 1100px;
    padding: 0 .5rem;
    margin: auto;
}

.inside-site-info {
    padding: 1.5rem;
}

.copyright-bar {
    font-size: .875rem;
    line-height: 1rem;
    text-align: center;
}

.footer-widgets {
    padding: 10vh 0 1.5rem 0;
}

.footer-widget-1,
.footer-widget-2,
.footer-widget-3 {
    padding: 0 .75rem;
    flex-basis: 100%;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
    .footer-widget-2,
    .footer-widget-3 {
        flex-basis: 50%;
    }
}

@media screen and (min-width: 960px) {
    .footer-widget-1 {
        flex-basis: 50%;
    }

    .footer-widget-2,
    .footer-widget-3 {
        flex-basis: 25%;
    }
}

.footer-widget-2,
.footer-widget-3 {
    flex-basis: 25%;
}

.inside-footer-widgets {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.site-footer .widget-title {
    color: var(--light);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: var(--bold);
    line-height: 1.375rem;
}

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget li {
    display: block;
    margin-bottom: .75rem;
}

.widget li a {
    display: inline-block;
    color: #A5A7B6;
    font-weight: var(--norm);
    font-size: 16px;
    line-height: 20px;
    transition: all 0.5s;
    position: relative;
}

.widget li a::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    background: #FFF;
    width: 0;
    height: 1px;
    transition: all 0.5s;
}

.widget li a:hover::before {
    right: auto;
    left: 0;
    width: 100%;
}

/**
 * Banners
 */

.bnr {
    position: relative;
    height: 50vh;
    background-size: cover;
    color: var(--white);
    background-image: linear-gradient(180deg, var(--bg) 50%, #0E0F11 100%);
}

.bnr\:sm {
    height: calc( 20vh + 4.5rem );
}

.bnr\:md {
    height: calc( 33.333vh + 4.5rem );
}

.bnr\:lg {
    height: calc( 50vh + 4.5rem );
}

.bnr\:fs {
    height: calc( 100vh - 4.5rem );
}

.bnr--img {
    background-position: center;
    text-shadow: 0 0 1px rgba(0, 0, 0, .25);
}

.bnr--img::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: linear-gradient(180deg, transparent 25%, #0E0F11 100%);
}

.bnr__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
    padding: 2rem 0;
}

.bnr-box {
    padding: 1.5rem;
    display: block;
    text-align: center;
    max-width: 720px;
    margin: auto;
}

.bnr__title {
    font-size: 1.5rem;
}

@media screen and (min-width:960px) {
    .bnr__title {
        font-size: 3rem;
    }

    .bnr\:sm {
        height: calc( 20vh + 6rem );
    }

    .bnr\:md {
        height: calc( 33.333vh + 6rem );
    }

    .bnr\:lg {
        height: calc( 50vh + 6rem );
    }

    .bnr\:fs {
        height: calc( 100vh - 6rem );
    }
}

.bnr__caption {
    font-size: .75rem;
    line-height: .875rem;
}

.menu-pri-li {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-pri ul {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-pri-li__el {
    position: relative;
}

.menu-pri-li-a {
    position: relative;
    text-decoration: none;
    font-weight: var(--bold);
    font-size: .875rem;
    line-height: 1rem;
}

.menu-pri-li-a--lvl-x0 {
    display: flex;
    align-items: center;
}

.menu-pri-li-a--lvl-x1 {
    display: block;
    font-size: .75rem;
}

.menu-pri-li .i-ico {
    fill: var(--pri);
}

.menu-pri-li__el.menu-btn {
    padding: .75rem 1rem;
}

.menu-pri-li__el:not(.menu-btn) .menu-pri-li-a--lvl-x0 {
    padding: 1rem 1.25rem;
}

.menu-pri-li__el:not(.menu-btn) .menu-pri-li-a--lvl-x1 {
    padding: .65rem 1.25rem;
}

.menu-pri-li-smu-wr {
    color: var(--gray-dark);
    background-color: var(--light);
    transition: transform .4s ease-in-out, opacity .6s ease;
}

.menu-pri-li-a:hover,
.menu-pri-li-a:focus {
    outline: 0 none;
}

.menu-pri-li-a--lvl-x0:hover,
.menu-pri-li-a--lvl-x0:focus {
    background-color: rgba(0, 0, 0, .1);
}

.menu-pri-li-a-txt {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size .3s;
}

.menu-pri-li__el--act .menu-pri-li-a-txt {
    background-image: linear-gradient(var(--pri), var(--pri));
    background-size: 100% 1px;
}

.menu-pri-li-a:hover .menu-pri-li-a-txt,
.menu-pri-li-a:focus .menu-pri-li-a-txt {
    background-size: 100% 1px;
}

@media screen and (max-width: 767px) {
    .menu-pri-li__el:not(.menu-btn) {
        border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .menu-pri-li-smu-wr {
        transform: perspective(1000px) rotateX(90deg);
        max-height: 0;
    }

    .menu-pri-li-smu {
        opacity: 0;
    }

    .is-active .menu-pri-li-smu-wr {
        max-height: 100vh;
        transform: rotateX(0);
    }

    .is-active .menu-pri-li-smu {
        opacity: 1;
    }
}

@media screen and (min-width: 768px) {

    .menu-pri-li {
        padding: 0;
    }

    .site-header__menu,
    .menu-pri,
    .menu-pri-li,
    .menu-pri-li__el:not(.menu-btn),
    .menu-pri-li-a--lvl-x0 {
        height: 100%;
    }

    .menu-pri-li {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
    }

    .menu-pri-li-smu-wr {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 12rem;
        z-index: 8;
        visibility: hidden;
        opacity: 0;
        padding: .5rem 0;
        transform: translate3d(0, 25%, 0);
        box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),
                    0 2px 6px 2px rgba(60,64,67,.15),
                    inset 0 4px 6px -4px rgba(154,160,166,.5);
        pointer-events: none;
        border-radius: 0 0 .375em .375em;
    }

    .menu-pri-li-a--lvl-x1:hover,
    .menu-pri-li-a--lvl-x1:focus {
        color: var(--pri);
    }

    .is-active .menu-pri-li-smu-wr {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: all;
    }

    .menu-pri-li-a--lvl-x1 {
        padding: 1rem 1.25rem;
    }
}

.menu-pri .menu-btn {
    padding: 0 .5rem;
    display: flex;
    align-items: center;
}

.menu-pri .menu-btn > a {
    border: 2px solid var(--pri);
    text-shadow: 0 0 1px rgba(0, 0, 0, .25);
    position: relative;
    box-sizing: border-box;
    padding: .75rem 1.5rem;
    border-radius: .25rem;
    font-weight: var(--bold);
    text-align: center;
    text-decoration: none;
    transition: background-color .3s ease, border .3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    font-size: .75rem;
    color: var(--pri-txt);
    background-color: var(--pri);
    opacity: 1;
    user-select: none;
}

.menu-pri .menu-btn > a:hover,
.menu-pri .menu-btn > a:focus {
    color: var(--pri-txt);
    background-color: var(--pri-hvr);
}

.menu-toggle-btn {
    position: absolute;
    top: 50%;
    right: .5rem;
    color: var(--white);
    border: 0 none;
    text-align: center;
    padding: .25rem 1.5rem;
    background-color: transparent;
    width: 40px;
    height: 40px;
    transform: translate3d(0, -50%, 0);
}

.menu-toggle-btn:hover,
.menu-toggle-btn:focus {
    color: var(--pri);
    outline: none;
}

.menu-toggle-btn svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1.5rem;
    height: 1.5rem;
}

.menu-toggle-btn:target {
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

.icon-menu-bars,
.icon-menu-bars svg {
    color: inherit;
}

.icon-menu-bars svg {
    height: 1em;
    width: 1em;
    top: .125em;
    position: relative;
    fill: currentColor;
}

.icon-menu-bars svg:nth-child(2),
.toggled .icon-menu-bars svg:nth-child(1),
.icon-search svg:nth-child(2),
.close-search .icon-search svg:nth-child(1) {
    display: none;
}

.toggled .icon-menu-bars svg:nth-child(2),
.close-search .icon-search svg:nth-child(2) {
    display: block;
}


.lbl {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: .65rem;
    line-height: 2em;
    padding: 0 .75em;
    border-radius: .25em;
    color: var(--light);
    background-color: var(--bg-lig);
    font-weight: var(--bold);
    margin: .25rem 0;
    user-select: none;
    text-transform: uppercase;
}

.lbl .i-ico {
    display: inline-block;
    vertical-align: middle;
    margin-top: -.0165em;
    margin-right: .25em;
    width: 1.25em;
    height: 1.25em;
}

.lbl ~ .lbl {
    margin-left: .5rem;
}

.lbl--spons {
    color: var(--gray-dark);
    background-color: rgba(0,0,0,.05);
    box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}

.lbl--verified {
    color: var(--dark);
    background-color: var(--pri);
}

.lbl--bronze {
    color: var(--light);
    background-color: var(--bronze);
}

.lbl--silver {
    color: var(--dark);
    background-color: var(--silver);
}

.lbl--gold {
    color: var(--dark);
    background-color: var(--gold);
}

.button,
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    opacity: 1;
    border-radius: .25rem;
    text-transform: capitalize;
    font-weight: var(--bold);
    text-align: center;
    text-decoration: none;
    transition: background-color .3s ease, border .3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    text-shadow: 0 0 1px rgba(0, 0, 0, .25);
    width: auto;
    margin: .25rem;
    -webkit-box-shadow: 0 2px 3px hsla(0, 0%, 4%, .05), 0 0 0 1px hsla(0, 0%, 4%, .05);
    box-shadow: 0 2px 3px hsla(0, 0%, 4%, .05), 0 0 0 1px hsla(0, 0%, 4%, .05);
}

.btn {
    padding: .5rem 1.25rem;
    min-width: 5em;
    font-size: .875rem;
    line-height: 1.25rem;
    height: 48px;
}

.btn\:sm {
    font-size: .75rem;
    line-height: 1rem;
    padding: .375rem 1.25rem;
    height: 40px;
}

.btn\:lg {
    padding: .75rem 1.5rem;
    min-width: 5em;
    font-size: 1rem;
    line-height: 1.5rem;
    height: 56px;
}

.button {
    color: var(--light);
    background-color: var(--bg);
    border: 1px solid var(--bg);
    padding: .5rem 1.5rem;
    min-width: 5em;
    font-size: .875rem;
    line-height: 1.5rem;
}

.button:hover,
.button:focus {
    outline: 0;
    background-color: var(--bg-lig);
}

.btn__lbl + svg,
svg + .btn__lbl {
    margin-left: .5rem;
}

.btn svg {
    vertical-align: middle;
    fill: currentColor;
    width: 18px;
    height: 18px;
}

.btn--pri {
    color: var(--pri-txt);
    background-color: var(--pri);
    border: 2px solid var(--pri);
}

.btn--pri:hover,
.btn--pri:focus {
    color: var(--pri-txt);
    background-color: var(--pri-hvr);
}

.btn--sec {
    color: var(--sec-txt);
    background-color: var(--sec);
    border: 2px solid var(--sec);
}

.btn--sec:hover,
.btn--sec:focus {
    color: var(--sec-txt);
    background-color: var(--sec-hvr);
    border: 2px solid var(--sec);
}

.btn--light {
    color: var(--dark);
    background-color: var(--light);
    border: 2px solid var(--light);
}

.btn--light:hover,
.btn--light:focus {
    color: var(--dark);
    background-color: var(--light-hvr);
    border: 2px solid var(--light);
}

.btn--dark {
    color: var(--light);
    background-color: var(--dark);
    border: 2px solid var(--dark);
}

.btn--dark:hover,
.btn--dark:focus {
    color: var(--light);
    background-color: var(--dark-hvr);
    border: 2px solid var(--dark);
}

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

.main-nav {
    display: block;
}

.main-nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nabula-wrap {
    padding: 0 .25rem;
    justify-self: stretch;
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

@media screen and (min-width: 600px) {
    .nabula-wrap {
        padding: 0 .25rem;
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media screen and (min-width: 960px) {
    .nabula-wrap {
        padding: 0 .5rem;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }
}

.nabula {
    margin: 0;
    height: 100%;
    border-radius: .25em;
}

.nabula-media {
    position: relative;
    padding: 56.25% 0 0;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: .375em;
    overflow: hidden;
    background-image: linear-gradient(90deg, var(--light), white);
    box-shadow: 0 2px 3px hsla(0, 0%, 4%, .1), 0 0 0 1px hsla(0, 0%, 4%, .1);
}

.nabula-media::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent, rgba(0,0,0,.56));
}

.nabula-media__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: auto;
}

.nabula__content {
    position: relative;
    top: -2.5rem;
    width: 100%;
    background-color: transparent;
    max-width: calc(100% - 1.5rem);
    margin: auto;
    border-radius: .375em;
    box-shadow: 0 2px 3px hsla(0, 0%, 4%, .1), 0 0 0 1px hsla(0, 0%, 4%, .1);
    overflow: hidden;
}

.nabula-title {
    position: relative;
    display: block;
    margin: 0;
    color: var(--gray-dark);
    font-weight: var(--bold);
    background-color: var(--bg);
}

.nabula-title a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: var(--light);
    font-size: .875rem;
    line-height: 1.5rem;
    padding: .5rem 1rem;
    transition: color .2s ease;
}

.nabula-title a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate3d(0, -50%, 0);
    width: 25%;
    height: .125rem;
    background: linear-gradient( 90deg, var(--bg) 25%, var(--pri) 100% );
    transition: background .2s ease;
}

.nabula-title a:hover,
.nabula-title a:focus {
    color: var(--pri);
}

.nabula-title a:hover::after,
.nabula-title a:focus::after {
    background: linear-gradient( 90deg, var(--bg), var(--pri));
}

.nabula-list {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    height: 100%;
    min-height: 10rem;
    max-height: 10rem;
    overflow: auto;
    background-color: transparent;
}

.nabula-list::-webkit-scrollbar {
    width: .375rem; /* width of the entire scrollbar */
}

.nabula-list::-webkit-scrollbar-track {
    background: transparent; /* color of the tracking area */
}

.nabula-list::-webkit-scrollbar-thumb {
    background-color: lightgrey; /* color of the scroll thumb */
    border-radius: 1em; /* roundness of the scroll thumb */
}

.nabula-list:hover {
    overflow-x: hidden;
    overflow-y: auto;
}

.nabula-list-lnk {
    position: relative;
    display: block;
    padding: .75rem 1rem;
    transition: opacity 300ms ease-in-out;
    text-decoration: none;
    background-color: transparent;
    z-index: 0;
    line-height: 1;
}

.nabula-list-lnk:visited::before {
    color: var(--pri);
}

.nabula-list-lnk span {
    position: relative;
    opacity: .87;
    z-index: 1;
    font-size: .75rem;
    line-height: 1rem;
}

.nabula-list-lnk::before,
.nabula-list-lnk::after {
    content: '';
}

.nabula-list-lnk::before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: .5em;
    height: .5em;
    border: 2px solid currentColor;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 1;
    opacity: .56;
    margin-right: .5rem;
    border-radius: .5em;
}

.nabula-list-lnk::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.05);
    transform: translate3d(-100%, 0, 0);
    transition: transform .4s ease;
    z-index: 0;
}

.nabula-list-lnk:hover span,
.nabula-list-lnk:focus span {
    opacity: 1;
}

.nabula-list-lnk:hover::before,
.nabula-list-lnk:focus::before {
    transform: rotate(45deg) scale(.8);
    border-width: 2px 2px 0 0;
    border-radius: 0;
    opacity: 1;
}

.nabula-list-lnk:hover::after,
.nabula-list-lnk:focus::after {
    transform: translate3d(0,0,0);
}

.nabula:hover .nabula-list {
    overflow-y: scroll;
}

.entry-header {
    position: relative;
    color: var(--light);
    background-color: var(--bg-drk);
    padding: 1.5rem 0;
}

.entry-header--review {
    padding: 0;
}

.entry-header--review,
.entry-header--review .entry-header__inr {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.entry-header--review .entry-header__inr {
    height: 100%;
}



.entry-info {
    padding: .75rem;
}

.entry-logo {
    padding: .75rem 0;
    flex-basis: 30%;
}

.entry-info {
    flex-basis: 70%;
}

.entry-caption {
    display: inline-block;
    vertical-align: top;
    font-size: .75rem;
    line-height: 1rem;
    padding: .25rem 0;
    font-weight: var(--bold);
}

.entry-status {
    flex-basis: 100%;
}

@media screen and (min-width:720px) {
    .entry-logo {
        flex-basis: 8.333%;
    }

    .entry-info {
        flex-basis: 71.667%;
    }

    .entry-status {
        flex-basis: 20%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-end;
    }
}

.entry-logo img {
    border-radius: .375em;
    box-shadow: 0 0 1px 3px rgba(0,0,0,.1);
}

.entry-info .entry-title {
    display: inline-block;
    vertical-align: top;
    width: auto;
}

.entry-info .entry-title::after {
    content: '';
    display: inline-block;
    vertical-align: top;
    color: var(--pri);
    width: .25rem;
    height: .25rem;
    margin: .65rem .5rem .65rem .75rem;
    border-radius: .25rem;
    background-color: currentColor;
}

.entry-header .entry-title {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0;
}

.entry-header__inr {
    width: 100%;
}

@media screen and (min-width: 600px ) {
    .entry-header .entry-title {
        font-size: 1.25rem;
    }
}

.entry-content--review {
    padding: 0;
}

.entry-content--review .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.notice {
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,.1);
}

.notice--info {
    color: rgba(0,0,0,.87);
    background-color: lightgoldenrodyellow;
}

.notice__inf {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.notice-txt {
    font-size: .875rem;
    max-width: 800px;
    padding: 0 .75rem;
}

.entry-content__art,
.entry-content__sde,
.entry-content__bot {
    flex-basis: 100%;
    padding: .75rem;
}

@media screen and (min-width:960px) {
    .entry-content__art {
        flex-basis: 75%;
        padding: 1.5rem 1.5rem 1.5rem 0;
    }

    .entry-content__sde {
        flex-basis: 25%;
        padding: 1.5rem 0 1.5rem 1.5rem;
        border-left: 1px solid rgba(0,0,0,.1);
    }
}

.entry-box {
    margin-bottom: 1.5rem;
}

.entry-box__title {
    position: relative;
}

.entry-box__title::after {
    content: '';
    display: block;
    width: 1rem;
    height: .125rem;
    background-color: var(--pri);
}

.entry-content--review .review-rating {
    flex-basis: 30%;
}

.js-modal-open .modal {
    visibility: visible;
    opacity: 1;
}

.js-modal-open .modal-content {
    transform: translate3d( 0, 0, 0 );
}

.js-client-container {
    display: none;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background-color: rgba( 0, 0, 0, .87);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}

.modal-content {
    background-color: white;
    transform: translate3d( 0, 100%, 0 );
    transition: transform .4s ease;
    border-radius: .375em;
    max-width: 100%;
    max-height: 100vh;
}

.modal-body {
    overflow-y: hidden;
    overflow-x: auto;
}

@media screen and (min-width: 960px) {
    .modal-content {
        min-width: 40vw;
        max-width: calc( 100% - 1.5rem);
        max-height: 100vh;
    }
}

.modal-close {
    border: 0 none;
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: transparent;
    opacity: .56;
    transform: translate3d( 0, -50%, 0);
    transition: opacity .3s ease;
}

.modal-close:hover,
.modal-close:focus {
    opacity: 1;
    outline: none;
}

.modal-header {
    position: relative;
    padding: 1rem 1.5rem;
    background-color: #f3f7f8;
}

.modal-title {
    font-size: .875rem;
    font-weight: var(--bold);
    line-height: 1.25;
}

.modal-title__highlight {
    font-size: 1.25rem;
    color: var(--dark);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
}

.bdg {
    display: block;
    color: var(--light);
    background-color: var(--bg);
    text-align: center;
    font-size: .75rem;
    font-weight: var(--bold);
}

.bdg--24x24 {
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    border-radius: 1.5rem;
}

/**
 * Review Output
 */

.r-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.r-row--tbl {
    border-radius: .375em;
    overflow: hidden;
}

.r-row--lst {
    max-width: 768px;
    margin: auto !important;
}

.r-row--lst .bdg--count,
.r-row--crds .bdg--count {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(-100%,0,0);
}

.r-row--crds .bdg--count {
    transform: translate3d(-50%,50%,0);
}

.r-col {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 100%;
    padding: 0 .75rem;
    margin: 0 0 1rem
}

@media screen and (min-width: 480px) and (max-width: 799px) {

    .r-row--crds-3 .r-col,
    .r-row--crds-4 .r-col,
    .r-row--crds-5 .r-col {
        max-width: 50%;
        flex-basis: 50%;
    }

    .r-row--crds-3 .r-crd-acts .btn,
    .r-row--crds-4 .r-crd-acts .btn,
    .r-row--crds-5 .r-crd-acts .btn {
        flex-basis: 100%;
    }
}

@media screen and (min-width: 800px) {

    .r-row--crds-3 .r-col,
    .r-row--crds-4 .r-col,
    .r-row--crds-5 .r-col {
        max-width: 33.3333%;
        flex-basis: 33.3333%;
    }

    .r-row--crds-4 .r-crd-acts .btn,
    .r-row--crds-5 .r-crd-acts .btn {
        flex-basis: 100%;
    }

    .r-row--crds-3 .r-crd-acts .btn {
        flex-basis: 50%;
    }
}

@media screen and (min-width: 1024px) {

    .r-row--crds-4 .r-col {
        max-width: 25%;
        flex-basis: 25%;
    }

    .r-row--crds-5 .r-col {
        max-width: 20%;
        flex-basis: 20%;
    }
}

.r-crd {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    border-radius: .375em;
    height: 100%;
    color: var(--dark);
    background-color: #FFF;
    -webkit-box-shadow: 0 2px 3px hsla(0, 0%, 4%, .05), 0 0 0 1px hsla(0, 0%, 4%, .05);
    box-shadow: 0 2px 3px hsla(0, 0%, 4%, .05), 0 0 0 1px hsla(0, 0%, 4%, .05);
}

.r-crd--sponsored .lbl--spons {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translate3d(-50%,0,0);
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}

.r-crd-title {
    display: block;
    font-weight: var(--bold);
    margin: 0;
    font-size: 1rem;
    width: 100%;
}

.r-crd-cap {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: .75rem;
    font-weight: var(--bold);
    opacity: .56;
}

.r-crd-lnk {
    font-size: .75rem;
    line-height: 1rem;
    font-weight: var(--bold);
    padding: .25rem .5rem;
    opacity: .56;
    transition: opacity .4s ease;
}

.r-crd-lnk:hover,
.r-crd-lnk:focus {
    opacity: 1;
}

.r-crd__hd {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    order: 2;
    padding: 1rem;
}

.r-crd-ratings {
    margin-bottom: .5rem;
}

.r-crd-acts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: .75rem 0;
    border-top: 1px solid rgba( 0,0,0,.05);
    flex-basis: 100%;
}

.r-crds-acts .btn {
    flex-basis: 100%;
}

.r-crd__md {
    position: relative;
    width: 100%;
    height: auto;
    order: 1;
    padding-top: 75%;
    background-color: rgba(0,0,0,.05);
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.r-crd__md img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.r-row--lst .r-crd {
    flex-direction: row;
}

.r-crd-blk {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
}

.r-crd-blk--inf {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: .75rem;
}

.r-crd-blk--acts {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: .75rem 0;
}

.r-crd-blk__el {
    padding: 0 .5rem;
    flex-basis: 50%;
}

@media screen and (min-width:768px) {

    .r-crd-blk__el {
        padding: 0 .75rem;
        flex-basis: 100%;
    }
}

.r-crd-blk__el .btn {
    width: 100%;
}

.r-crd-blk__com,
.r-crd-blk__inf {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.r-crd-blk__inf {
    padding: .75rem;
    border-top: 1px solid rgba(0,0,0,.05);
}

.r-crd-blk__inf p {
    font-size: .875rem;
    opacity: .56;
}

.r-crd-blk__com {
    position: relative;
    padding-bottom: .75rem;
    align-items: stretch;
    justify-content: stretch;
}

.r-crd-blk__com .inf {
    order: 2;
    width: calc( 100% - 80px );
    max-width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.inf .lbl {
    position: absolute;
    top: 100%;
    right: 0;
}

@media screen and (max-width:767px) {
    .inf .lbl {
        transform: rotate(90deg) translate3d(-50%,0,0);
        transform-origin: top right;
    }
}

@media screen and (min-width:768px) {
    .inf .lbl {
        top: 0;
    }
}

.r-crd-blk__com .lgo {
    order: 1;
    background-color: var(--light);
    border-radius: .25em;
}

@media screen and (min-width: 768px) {
    .r-crd-blk--inf {
        max-width: 75%;
        flex-basis: 75%;
    }

    .r-crd-blk--acts {
        max-width: 25%;
        flex-basis: 25%;
        border-left: 1px solid rgba(0,0,0,.05);
    }
}

.tbl thead {
    display: none;
}

.tbl tbody {
    display: block;
}

.tbl th {
    padding: 1rem;
    font-size: .875rem;
    border-color: var(--bg);
}

.tbl td {
    padding: .5rem 1rem;
}

.tbl th,
.tbl td {
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
}

@media screen and (max-width:767px) {

    .tbl tr {
        display: block;
        border: 1px solid #e0e0e0;
        margin-bottom: 1.5rem;
        border-radius: .375em;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12),
                    0 1px 2px 0 rgba(0, 0, 0, 0.24);
    }

    .tbl td[data-title]::before {
        content: attr(data-title);
        float: left;
        font-size: inherit;
        font-weight: 400;
        color: #757575;
    }

    .tbl td {
        background-color: #FFF;
        display: block;
        vertical-align: middle;
        text-align: right;
    }
}

@media screen and (min-width:768px) {

    .tbl {
        border: 1px solid rgba(0,0,0,.1);
    }

    .tbl thead {
        color: var(--light);
        background-color: var(--bg);
    }

    .tbl thead,
    .tbl tbody {
        vertical-align: middle;
        border-color: inherit;
    }

    .tbl thead {
        display: table-header-group;
    }

    .tbl tbody {
        display: table-row-group;
    }

    .tbl tr {
        transition: all 0.3s ease;
    }
}

/**
 * Ninja Forms
 */
.nf-error-msg {
    display: block;
    font-size: .875rem;
    line-height: 1rem;
    padding: .5rem 1rem;
    border-radius: .25rem;
}

.nf-error-field-errors {
    color: #FFF;
    background-color: #e80000;
}

.ninja-forms-req-symbol {
    color: #e80000;
}

.nf-field-label {
    font-size: .875rem;
    line-height: 1rem;
    font-weight: var(--bold);
}

.nf-form-content .list-select-wrap .nf-field-element>div,
.nf-form-content input:not([type=button]), .nf-form-content textarea {
    background: #FFF;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: .25rem;
    box-shadow: none;
    color: var(--gray-dark);
    transition: all .5s;
}

.nf-form-content .listselect-wrap .nf-field-element div,
.nf-form-content input.ninja-forms-field,
.nf-form-content select.ninja-forms-field:not([multiple]) {
    height: 2.5rem;
}

.nf-pass.field-wrap .nf-field-element:after {
    color: green;
    font-family: FontAwesome;
    font-size: 30px;
    content: "\f058";
    position: absolute;
    top: 0;
    right: 16px;
    height: 50px;
    line-height: 50px;
    transition: all .5s;
}

.nf-response-msg {
    background-color: rgba(0,0,0,.1);
    font-size: .875rem;
    border-radius: .25rem;
    padding: .75rem;
}

.nf-error.field-wrap .nf-field-element:after {
    background: #e80000;
    color: #fff;
    font-family: FontAwesome;
    font-size: 20px;
    content: "\f12a";
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    height: 48px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .5s;
}

.field-wrap {
    display: -ms-flexbox;
    display: flex;
}

.label-above .field-wrap,
.label-below .field-wrap {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.i-ico {
    width: 18px;
    height: 18px;
}

.u-txt-c {
    text-align: center;
}
.cta{
  border: 2px solid var(--pri);
    text-shadow: 0 0 1px rgba(0, 0, 0, .25);
    position: relative;
    box-sizing: border-box;
    padding: .75rem 1.5rem;
    border-radius: .25rem;
    font-weight: var(--bold);
    text-align: center;
    text-decoration: none;
    transition: background-color .3s ease, border .3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    font-size: .75rem;
    color: var(--pri-txt);
    background-color: var(--pri);
    opacity: 1;
    user-select: none;
    margin-bottom:15px;
}

.big_cta p.text {
    border: 2px solid var(--pri);
    text-align: center;
    padding: 30px 20px 30px 20px !important;
    border-radius: 5px;
    font-size: 1.4em !important;
    text-transform: uppercase;
    margin-bottom:-20px;
}
.big_cta a {
    width: 60%;
    text-align: center;
    display: block;
    padding: 15px 10px;
    border-radius: 6px;
    background-color: var(--pri);
    color: #FFF !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    margin-bottom: 10px;
    box-shadow: 0px 1px 2px #DDD;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 20px;
}
.big_cta_orange p.text {
    border: 2px solid #e0911a;
    text-align: center;
    padding: 30px 20px 30px 20px !important;
    border-radius: 5px;
    font-size: 1.4em !important;
    text-transform: uppercase;
    margin-bottom:-20px;
}
.big_cta_orange a {
    width: 60%;
    text-align: center;
    display: block;
    padding: 15px 10px;
    border-radius: 6px;
    background-color: #e0911a;
    color: #FFF !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    margin-bottom: 10px;
    box-shadow: 0px 1px 2px #DDD;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 20px;
}
.big_cta_blue p.text {
    border: 2px solid #1a8ee0;
    text-align: center;
    padding: 30px 20px 30px 20px !important;
    border-radius: 5px;
    font-size: 1.4em !important;
    text-transform: uppercase;
    margin-bottom:-20px;
}
.big_cta_blue a {
    width: 60%;
    text-align: center;
    display: block;
    padding: 15px 10px;
    border-radius: 6px;
    background-color: #1a8ee0;
    color: #FFF !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    margin-bottom: 10px;
    box-shadow: 0px 1px 2px #DDD;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 20px;
}
/*
.iframe-container {
  overflow: hidden;
  padding-top: 56.25%;
  height: 1000px;
}

.iframe-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

sidebar css*/

#flex{
    display: -webkit-box;
  }
  
  @media screen and (max-width: 600px) {
    #flex{
    display: block;
  }
  }
  @media screen and (max-width: 600px) {
    .inside-content{
        min-width: 100%;
        padding: 20px;
  }}
  @media screen and (max-width: 600px) {
    .sidebar{
        min-width: 100%;
      }}
  
  
  .inside-content{
    width: 75%;
    word-wrap: break-word;
  }
  .sidebar {
    padding: 20px;
    width: 25%;
  }
  .sidebar-block{
    display: block;
  }
  
  .inside-sidebar{
    top: 110px;
    position: sticky;
  }
  .sidebar-title{
      margin-bottom: 15px;
      text-transform: uppercase;
      font-size: 20px;
      font-weight: bold;
  }
  
  .sidebar-block{
    background-color:#1C1C3A;
    color:#ADCB3F;
    padding-top:20px;
    padding-bottom: 20px;
    margin-top: 15px;
    text-align: center;
    min-width: 100%;
  }
  #company-ad{
    padding-top:40px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }
  #block-title-2{
      margin-top:20px;
  }
  /*Indice Styling*/
.indice-toc {
    position: relative;
    -webkit-order: -1;
    order: -1;
    width: 100%;
    margin: auto;
}

.indice-toc__title {
    display: inline-block;
    font-size: 0.875rem;
    height: 40px;
    line-height: 40px;
    margin: 0;
    border-radius: 0.375em;
    overflow: hidden;
    padding: 0 0.5rem;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.indice-toc__title::after {
    content: "+";
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 1em;
    margin-left: 0.5rem;
    opacity: 0.56;
    transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
}

.indice-toc__trg {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

.indice-toc__trg:checked ~ .indice-toc__list {
    visibility: visible;
    opacity: 1;
    max-height: 100em;
}

.indice-toc__trg:checked ~ .indice-toc__title {
}

.indice-toc__trg:checked ~ .indice-toc__title::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 1;
}

.indice-toc__list {
    list-style: none;
    border-radius: 0.375em;
    margin: 0.5rem 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transition: max-height 300ms linear, opacity 300ms ease-in-out;
}

.indice-toc__list li {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.indice-toc__list li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    line-height: 1rem;
}

.indice-toc__list li a:hover, .indice-toc__list li a:focus {
    background-color: rgba(0, 0, 0, 0.05);
}

.pc-container ul{
    margin:0px 0px 0px 20px;
  }
  .pc-container{
    background-color: #f1f1f1;
    border-radius: .375rem;
    padding: 20px;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .pros .box-header{
    color:#04BF10;
  }
  .cons .box-header{
    color:#F21313;
  }
  .pros:before{
      top:15px;
      right: 15px;
      border-color: rgba(0, 0, 0, 0.1) transparent;
      content: url(../generatepress_child/icons/thumb-up.svg);
      position: absolute;
  }
  .pros ul li:before {
    content: "+";
    color: #04BF10;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
  }
  .cons ul li:before {
    content: "-";
    color: #F21313;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
  }
  
  .pros:after .pros:before{
    position: absolute;
    width: 10px;
    height: 10px;
  }
  
  .cons:before{
    top:15px;
    right: 15px;
    border-color: rgba(0, 0, 0, 0.1) transparent;
    content: url(../generatepress_child/icons/thumb-down.svg);
    position: absolute;
}

.cons:after .pros:before{
  position: absolute;
  width: 10px;
  height: 10px;
}

.h3q::after{
  content: '';
    display: block;
    border-top: solid 4px #03BEFC;
    margin-top: 5px;
}
blockquote{
    background-color: #1C1C3A;
    padding: 15px;
    border-radius: 25px;
    color: white;
    border:3px solid #ADCB3F;
    margin-bottom: 10px;
  }
  blockquote p {
    margin:0px
  }
  
  blockquote:before {
    content: "“";
      color: #ADCB3F;
      font-size: 4em;
      line-height: 0px;
      top: -25px;
      right: 10px;
      display: block;
  }
  blockquote::after{
    content: "“";
      color: #ADCB3F;
      font-size: 4em;
      line-height: 0px;
      display: block;
      float: right;
      margin-top:30px
  }
  .debt-embed{
    margin-top: 200px !important;
    position: fixed !important;
    height: 100% !important;
    width: 100% !important;
    border:none !important;
  }

  .sticky-footer{
    color:white;
    background-color: var(--bg);
    text-align: center;
    padding: 15px 40px;
    bottom: 0;
    position: sticky;
    border-top: 3px var(--pri) solid;
    box-shadow: 0 -4px 10px rgb(0 0 0 / 25%);
  }
  
  .sticky-btn{
      order: 2px solid var(--pri);
      text-shadow: 0 0 1px rgb(0 0 0 / 25%);
      position: relative;
      box-sizing: border-box;
      padding: .75rem 1.5rem;
      border-radius: .25rem;
      font-weight: var(--bold);
      text-align: center;
      text-decoration: none;
      transition: background-color .3s ease, border .3s ease;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      font-size: .75rem;
      color: var(--pri-txt);
      background-color: var(--pri);
      opacity: 1;
      user-select: none;
  }
  
  .sticky-text{
    margin-bottom: 10px;
  }
  
  .sticky-btn-txt{
    margin: 0 auto;
  }

  .aligncenter{
    margin: 0 auto;
    display: block;
  }