@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
    ## Fonts
    ## Font icons
# Layout
    ## Grid
    ## Elements
    ## Header
        ### Navigation
        ### Hero section
    ## About section
    ## Wallets section
    ## P2P Section
    ## Roadmap
    ## Exchanges
    ## Footer
    ## Content

    ## Swap page
    ## Businesses page



--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Fonts
--------------------------------------------------------------*/

/* Raleway */

@font-face {
    font-family: 'raleway';
    src: url('fonts/raleway/raleway-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'raleway';
    src: url('fonts/raleway/raleway-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}



/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, fieldset, legend, label, table, header, footer, nav, section, button {
    border: 0 none;
    outline: 0 none;
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    color: #2a343d;
    font-family: "raleway", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

::-moz-selection {
    background: #01619b;
    color: #ffffff;
}

::selection {
    background: #01619b;
    color: #ffffff;
}

::-moz-selection {
    background: #01619b;
    color: #ffffff;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

ol, ul {
    list-style: none outside none;
}

h1, h2, h3, h4 {
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin: 15px 0 20px;
    line-height: 1.25;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}


@media only screen and (min-width: 768px) {
      h1 {
          font-size: 38px;
      }

      h2 {
          font-size: 32px;
      }

      h3 {
          font-size: 24px;
      }

      h4 {
          font-size: 21px;
      }
}

a {
    color: #01619b;
}
a:hover {
    color: #2a343d;
}

p {
    margin-bottom: 16px;
}

strong {
    font-weight: 700;
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
}

.default-content-width {
    max-width: 1180px;
    margin: auto;
    position: relative;
    padding: 0 20px;
}

@media only screen and (min-width: 768px) {
    .default-content-width {
        padding: 0 40px;
    }
}


/* Helper classes */
.marg-t-0 {
    margin-top: 0 !important;
}

.marg-b-0 {
    margin-bottom: 0 !important;
}

.marg-t-50 {
    margin-top: 50px;
}

.marg-b-50 {
    margin-bottom: 50px;
}

.marg-t-100 {
    margin-top: 100px;
}

.marg-b-100 {
    margin-bottom: 100px;
}

.padd-t-0 {
    padding-top: 0 !important;
}

.padd-b-0 {
    padding-bottom: 0 !important;
}

.padd-t-50 {
    padding-top: 50px;
}

.padd-b-50 {
    padding-bottom: 50px;
}

.padd-t-100 {
    padding-top: 100px;
}

.padd-b-100 {
    padding-bottom: 100px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.maxw680 {
    max-width: 680px !important;
    margin: auto;
    }
.maxw720 {
    max-width: 720px !important;
    margin: auto;
    }
.maxw860 {
    max-width: 860px !important;
    margin: auto;
    }
.maxw960 {
    max-width: 960px !important;
    margin: auto;
    }


/*--------------------------------------------------------------
## Grid
--------------------------------------------------------------*/

@media (max-width: 979px) {
    .flex-grid,
    .section.group {
        display: block;
    }
}

.col {
    padding: 30px 10px;
}


@media screen and (min-width: 768px) and (max-width: 979px) {
  .flex-grid-md {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
  }
}



@media only screen and (min-width: 980px) {
    .flex-grid {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
    }
    .flex-va-middle {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .flex-jc-center {
        justify-content: center;
    }
    .col {
        -ms-flex: 1;
        -webkit-box-flex: 1;
        flex: 1;
        padding: 20px 30px;
    }
    .flex-grid .col .col {
        padding: 20px 30px 20px 0;
    }
    .col-1-2 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
    .col-1-3 {
        -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
        max-width: 33.33%;
    }
    .col-2-3 {
        -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%;
	      max-width: 66.66%;
  	}
    .col-1-4 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }
    .col-3-4 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }
    .col-1-5 {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }
    .col-2-5 {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }
    .col-3-5 {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }
    .col-4-5 {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }
    .col-order-last {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
    .col-1-6 {
        -ms-flex-preferred-size: 16.66%;
        flex-basis: 16.66%;
        max-width: 16.66%;
    }
}

/*--------------------------------------------------------------
## Elements
--------------------------------------------------------------*/

.notice {
    display: inline-block;
    padding: 10px 30px 10px 55px;
    background: #ffffff;
    border: 2px solid #01619b;
    border-radius: 4px;
    position: relative;
    margin-bottom: 20px;
}
.notice:before {
    background-image: url('../img/icon-notice.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    height: 26px;
    width: 26px;
    position: absolute;
    left: 15px;
    top: 10px;
}

/*--------------------------------------------------------------
### Buttons
--------------------------------------------------------------*/

.btn {
    background: #01619b;
    border-radius: 30px;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px 28px;
    text-decoration: none;
    -webkit-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #2a343d;
    color: #ffffff;
}

.btn.white {
    background: #ffffff;
    color: #2a343d;
}

.btn.white:hover {
    background: #2a343d;
    color: #ffffff;
}


/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

.header {
    background-color: rgba(255, 255, 255, 0);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 94px;
    z-index: 10010;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.header.sticky {
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid #e2e2e2;
}

.header-content {
    max-width: 1200px;
    margin: auto;
}

/*--------------------------------------------------------------
### Navigation
--------------------------------------------------------------*/

@media only screen and (max-width: 979px) {

    .main-navigation {
        background-color: #2a343d;
        background-image: url(../img/menu-bg.svg);
        background-repeat: no-repeat;
        background-size: 260px;
        background-position: bottom 25px right;
        border-left: 7px solid #01619b;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        padding: 40px;
        z-index: 1000;
        -webkit-transform: translateX(-110%);
            -ms-transform: translateX(-110%);
                transform: translateX(-110%);
        -webkit-transition: -webkit-transform 0.2s ease;
        transition: -webkit-transform 0.2s ease;
        -o-transition: transform 0.2s ease;
        transition: transform 0.2s ease;
        transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    }

    .main-navigation.active {
        -webkit-transform: translateX(0%);
            -ms-transform: translateX(0%);
                transform: translateX(0%);
    }

    .main-navigation ul {
        margin-bottom: 2vh;
    }

    .main-navigation a {
        color: #ffffff;
        display: inline-block;
        font-size: 18px;
        text-decoration: none;
        padding: 5px 0;
        margin-bottom: 2vh;
    }

    .main-menu-btn {
        background: none;
        height: 40px;
        width: 40px;
        position: fixed;
        top: 30px;
        right: 20px;
        z-index: 1010;
    }

    .main-menu-btn .bar {
        -webkit-transition: 0.2s ease;
        -o-transition: 0.2s ease;
        transition: 0.2s ease;
        background: #01619b;
        height: 2px;
        width: 20px;
        position: absolute;
        margin: auto;
        left: 10px;
    }

    .header.sticky .main-menu-btn .bar,
    .main-menu-btn.active .bar {
        background: #01619b;
    }

    .main-menu-btn .bar1 {
        top: 12px;
        width: 14px;
    }

    .main-menu-btn .bar2 {
        top: 18px;
    }

    .main-menu-btn .bar3 {
        top: 24px;
    }

    .main-menu-btn.active .bar1 {
        width: 20px;
    }

}


@media only screen and (min-width: 980px) {


    .main-navigation {
        float: right;
        margin: 16px 0 0 0;
    }

    .main-navigation ul li {
        display: inline-block;
    }

    .main-navigation a {
        color: #000000;
        text-decoration: none;
        margin-left: 30px;
        position: relative;
    }

    .header.sticky .main-navigation a {
        color: #2a343d;
    }

    .main-navigation a:after {
        content: '';
        display: block;
        background: #000000;
        position: absolute;
        border-width: inherit;
        border-color: inherit;
        border-style: inherit;
        left: 0;
        width: 0;
        opacity: 1;
        height: 1px;
        margin-top: -1px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
      }
      .header.sticky .main-navigation a:after {
            background: #2a343d;
        }

      .main-navigation a:hover:after {
          width: 100%;
      }

      .main-menu-btn {
          display: none;
      }


}


/*--------------------------------------------------------------
### Hero section
--------------------------------------------------------------*/

.hero-section {
    min-height: 620px;
    background-image: url('../img/hero_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    border-bottom: 1px solid #dadada;
    padding-top: 140px;
}

.hero-section-content {
    text-align: center;
}

.hero-section-content h1 {
    margin-bottom: 30px;
}

.hero-section-content .tagline {
    margin-bottom: 40px;
    font-size: 20px;
}

.hero-section-content .btn {
    margin-left: 5px;
    margin-right: 5px;
}



/*--------------------------------------------------------------
## About section
--------------------------------------------------------------*/

.about-section {
    background: #2a343d;
    color: #bcccd3;
    min-height: 400px;
    margin-top: -120px;
    padding: 40px 20px;
}

@media only screen and (min-width: 980px) {
    .about-section {
        padding: 40px 0;
    }

    .about-section-left {
        text-align: right;
        padding-left: 40px;
        padding-right: 0;
    }

    .about-section-right {
        padding-left: 50px;
    }
}

.about-section-left .btn {
    margin-top: 30px;
}

.about-section-left .btn:hover {
    background: #ffffff;
    color: #2a343d;
}

.about-section h2 {
    color: #ffffff;
    font-size: 28px;
    margin-top: 10px;
}

.about-section h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.about-box {
    padding-top: 0 !important;
    padding-left: 50px !important;
    padding-bottom: 5px !important;
    margin-bottom: 5px;
}

.about-box-icon {
    position: relative;
}

.about-box-icon:before {
    content: "";
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: block;
    height: 44px;
    width: 44px;
    position: absolute;
    left: -55px;
    margin-top: -8px;
}

.about-box-icon.icon-zerofees:before {
    background-image: url('../img/icon-zerofees.svg');
}

.about-box-icon.icon-ecofriendly:before {
    background-image: url('../img/icon-ecofriendly.svg');
}

.about-box-icon.icon-private:before {
    background-image: url('../img/icon-private.svg');
}

.about-box-icon.icon-instant:before {
    background-image: url('../img/icon-instant.svg');
}

.about-box-icon.icon-secure:before {
    background-image: url('../img/icon-secure.svg');
}



/*--------------------------------------------------------------
## Wallets section
--------------------------------------------------------------*/

.wallets-links {
    max-width: 920px;
    margin: auto;
}

.wallets-links a {
    border: 2px solid #01619b;
    font-weight: 700;
    font-size: 15px;
    color: #2a343d;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    padding: 50px 20px;
    min-height: 120px;
    width: 100%;
}

.wallets-links a:hover {
    background-color: #01619b;
    color: #ffffff;
}

.wallet-icon {
    display: inline-block;
    height: 46px;
    width: 46px;
}

.wallets-links a .wallet-icon .svg-path {
    fill: #01619b;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}
.wallets-links a:hover .wallet-icon .svg-path {
    fill: #ffffff;
}

.wallet-os {
    position: relative;
}

.wallet-os-name {
    display: inline-block;
    position: relative;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.wallets-links a:hover .wallet-os-name {
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px);
}

.wallet-arrow-right {
    background-image: url('../img/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    height: 10px;
    width: 12px;
    position: absolute;
    -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.wallets-links a:hover .wallet-arrow-right {
    -webkit-transform: translateY(7px);
        -ms-transform: translateY(7px);
            transform: translateY(7px);
}

@media only screen and (min-width: 980px) {

    .wallets-links .col {
        padding-left: 0;
        padding-right: 0;
        margin: 0 -1px;
    }
}


/*--------------------------------------------------------------
## P2P Section
--------------------------------------------------------------*/

.p2p-image-block {
    background-image: url('../img/p2p-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    min-height: 250px;
}

.p2p-image-block p {
    font-size: 22px;
    margin-top: 30px;
    text-align: right;
    margin-right: 20px;
    position: relative;
}

.p2p-image-block p:before {
    content: "";
    display: inline-block;
    width: 130px;
    border-bottom: 1px solid #01619b;
    position: absolute;
    margin-top: -12px;
    right: 0;
}


@media only screen and (min-width: 980px) {

      .p2p-image-block {
          margin-right: 30px;
      }

      .p2p-image-block p {
          font-size: 25px;
          margin-top: 80px;
          margin-right: 40px;
          padding-left: 80px;
      }

}

.masternodes-info {
    background: #01619b;
    padding: 5px 15px;
    color: #ffffff;
    font-size: 13px;
    border-radius: 20px;
    margin-top: 30px;
    display: inline-block;
}



/*--------------------------------------------------------------
## Roadmap
--------------------------------------------------------------*/
.roadmap-holder {
    padding-left: 30px;
    margin-top: 40px;
    position: relative;
}

.roadmap-holder:before {
    border-left: 1px solid #e2e2e2;
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    position: absolute;
    left: 15px;
}

.roadmap-time {
    color: #01619b;
    font-size: 23px;
    font-family: "Poppins";
    margin-bottom: 10px;
    position: relative;
}

.roadmap-time:after {
    background: #01619b;
    border-radius: 12px;
    border: 2px solid #ffffff;
    content: "";
    display: block;
    position: absolute;
    height: 12px;
    width: 12px;
    left: -30px;
    top: 13px;
}

.roadmap-list {
    border: 1px solid #e2e2e2;
    padding: 40px 20px;
    position: relative;
    font-size: 14px;
}

.roadmap-list:before {
    content: "";
    display: inline-block;
    background: #01619b;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
}

.roadmap-list li {
    margin-bottom: 12px;
    margin-left: 18px;
    position: relative;
}

@media only screen and (min-width: 980px) {

      .roadmap-holder {
          padding-left: 0;
      }

      .roadmap-holder > .col {
          padding-right: 10px;
      }

      .roadmap-holder:before {
          border-bottom: 1px solid #e2e2e2;
          height: 1px;
          width: 100%;
          left: 5px;
          top: 71px;
      }

      .roadmap-list {
          padding: 40px 0 20px 20px;
      }

      .roadmap-time {
          margin-bottom: 50px;
      }

      .roadmap-time:after {
          left: 8px;
          top: 46px;
      }

      .roadmap-list {
          min-height: 280px;
      }

}

.roadmap-list .in-progress {
    background: #b3b3b3;
    color: #ffffff;
    display: inline-block;
    border-radius: 10px;
    padding: 2px 10px 1px;
    font-size: 9px;
    margin: 0 0 0 5px;
    text-transform: uppercase;
}

.roadmap-list .completed:before {
    background-image: url('../img/completed-icon.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    height: 18px;
    width: 18px;
    position: absolute;
    left: -25px;
    top: 2px;
}


/*--------------------------------------------------------------
## Exchanges
--------------------------------------------------------------*/

.exchanges-section {
    background-image: url('../img/exchanges-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 50%;
    color: #ffffff;
    min-height: 500px;
    padding: 20px;
}

.exchanges-links {
    margin-top: 50px;
}

.exchange-link {
    padding: 40px 10px 40px;
    margin: 0 auto 20px;
    border: 1px solid transparent;
    vertical-align: middle;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    max-width: 260px;
    width: 100%;
    display: inline-block;
}

.exchange-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #ffffff;
}

.exchange-logo {
    max-width: 180px;
    display: inline-block;
    vertical-align: middle;
}

.donation-section .currency-logo {
    display: inline-block;
    vertical-align: middle;
    margin: -7px 7px 0 0;
}

.donation-section .donation-address {
    margin-bottom: 5px;
}



/*--------------------------------------------------------------
## Featured on
--------------------------------------------------------------*/
.featured-section .col-1-6 {
    margin: auto;
}

.featured-link {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 0;
}

.featured-link img {
    -webkit-filter: grayscale(1) opacity(.4);
            filter: grayscale(1) opacity(.4);
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    display: inline-block;
    vertical-align: middle;
}

.featured-link:hover img {
    -webkit-filter: grayscale(0) opacity(1);
            filter: grayscale(0) opacity(1);
}



/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/

.footer {
    background: #2a343d;
    color: #bcccd3;
    padding: 30px 20px 10px;
}

.footer-link {
    text-decoration: none;
    margin-left: 10px;
}

.footer-link img {
    opacity: 1;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.footer-link:hover img {
    opacity: 0.8;
}


/*--------------------------------------------------------------
## Swap page
--------------------------------------------------------------*/
.hero-section.swap-page {
    min-height: 670px;
    background-image: url('../img/downloads_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    border-bottom: 1px solid #dadada;
    padding-top: 160px;
}

.swap-holder {
    display: block;
    max-width: 700px;
    margin: -200px auto 0;
    text-align: center;
}


/*--------------------------------------------------------------
## Businesses page
--------------------------------------------------------------*/

.hero-section.businesses-page {
    background-image: url('../img/businesses_bg.jpg');
    padding-top: 160px;
}

/* Demo transaction */
.dt-boxes-wrapper {
    position: relative;
    max-width: 340px;
    margin: auto;
}
.dt-main-box {
    background: #ffffff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    display: block;
    position: relative;
    text-align: center;
    padding: 60px 30px 30px;
    margin: auto;
    max-width: 340px;
    min-height: 450px;
    z-index: 20;
}
.dt-qr-holder {
    margin-bottom: 25px;
    position: relative;
    min-height: 188px;
}
.dt-timer {
    background: #01619b;
    border-radius: 5px;
    display: inline-block;
    color: #ffffff;
    padding: 7px 25px;
    min-width: 94px;
    margin-top: 15px;
}
.dt-timer.success {
    background: #5bb563;
    border-radius: 5px;
    display: inline-block;
    color: #ffffff;
    padding: 7px 25px;
    min-width: 94px;
    margin-top: 15px;
}
.dt-left-box {
    background: #ffffff;
    border-top-left-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    position: absolute;
    width: 70px;
    min-height: 380px;
    bottom: 0;
    left: -70px;
    z-index: 10;
}
.dt-right-box {
    background: #ffffff;
    border-top-left-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    position: absolute;
    width: 70px;
    min-height: 380px;
    bottom: 0;
    right: -70px;
    z-index: 10;
}

.dark-section {
    background: #2a343d;
    color: #bcccd3;
}


/* Scanner line */
.dt-scanner-line {
    position: absolute;
    opacity: 0;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(0);
    transition: transform 3s ease;
}

.dt-scanner-line.active {
    opacity: 1;
    transform: translateY(175px);
}




/* Animated checkmark */
.dt-checkmark {
    display: none;
}
.dt-checkmark.active {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 1.5;
    stroke: #5bb563;
    stroke-miterlimit: 10;
    margin: auto;
    box-shadow: inset 0px 0px 0px #5bb563;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
.dt-checkmark.active .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 1.5;
    stroke-miterlimit: 10;
    stroke: #5bb563;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.dt-checkmark.active .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #fff;
  }
}


/* Plugin links */
.plugin-link {
    display: inline-block;
    border: 2px solid #e2e2e2;
    padding: 20px 25px 20px 90px;
    text-decoration: none;
    color: #2a343d;
    position: relative;
    transition: 0.2s ease;
    margin-bottom: 5px;
}
.plugin-link:hover {
    border: 2px solid #01619b;
}
.plugin-link img {
    position: absolute;
    left: 20px;
}
.plugin-guide-link {
    text-decoration: none;
    color: #2a343d;
}
.plugin-guide-link:hover {
    text-decoration: underline;
    color: #01619b;
}

@media only screen and (min-width: 980px) {
    .innova-checkout {
        max-width: 600px;
        margin: -70px 0 0 -50px;
    }
}


/* Businesses links */
.featured-link.business-link {
    display: block;
    border: 2px solid #e2e2e2;
    padding: 20px;
    text-decoration: none;
    color: #2a343d;
    padding-left: 100px;
    position: relative;
    transition: 0.2s ease;
}
.featured-link.business-link:hover {
    border: 2px solid #01619b;
}
.featured-link.business-link img {
    position: absolute;
    left: 20px;
}
.business-link-title {
    font-size: 17px;
}
.business-link-text {
    font-size: 14px;
}






/* */
