﻿@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

body {
    font-family: 'Noto Sans', 'Segoe UI Light', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding-bottom: 20px;
}

footer {
    background-image: url('/images/footer.svg');
    background-size: cover;
    margin-bottom: 0;
    padding-bottom: 30px;
}

footer a {
    color: #ffffff;
}

.container {
    position: relative;
    max-width: 967px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.body-content {
    min-height: 560px;
}

.center-text {
    text-align: center;
    margin-bottom: 30px;
}

.feature-text {
    border-top: 7px solid #3639d8;
    border-bottom: 7px solid #009b9b;
    margin: 70px 0;
    padding: 30px;
}

.em {
    background-color: #494cdd;
    border-radius: 7px;
    padding: 4px;
    color: white;
}

a {
    color: black;
}

    a:hover {
        color: #494cdd
    }

    a:active {
        color: #2e31c9;
    }

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
#card-element {
    max-width: 280px;
    font-size: 14px;
    border: 1px solid #777;
    padding: 5px;
}

select {
    padding: 2px;
}

textarea {
    max-width: 960px;
    font-family: 'Noto Sans', 'Segoe UI Light', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    border: 1px solid #777;
    padding: 5px;
}

.checkbox {
    display: grid;
    grid-template-columns: -webkit-min-content 1fr;
    grid-template-columns: min-content 1fr;
    gap: 0.6rem;
    align-items: center;
}

@supports (-webkit-appearance: none) {
    /* 	AKA, only do this if `-webkit-appearance: none` is supported. 
  	Which means IE11 and Opera Mini will get the old browser-styled checkbox. 
  	Which works just fine. Old browsers can get old looking things. */
    input[type="checkbox"] {
        /*  Remove the default styling.
        `-webkit-appearance` is not an official CSS property 
    	& likely never will be. But it's also in 95% of browsers, 
    	non-webkit included, yes, as a `-webkit` property. 
    	Firefox, Edge, Chrome, Opera all implemented `-webkit-appearance`.  
    	Plus it *will* stick around. Browsers can't remove it. 
    	So use it like this...                                 */
        -webkit-appearance: none;
        /* Style the box. */
        width: 1.6rem;
        height: 1.6rem;
        border: 1px solid #808080;
    }

        input[type="checkbox"]:focus {
            /* Style the box when it's focused. */
            border: 1px solid teal;
        }

        input[type="checkbox"]:checked {
            /* Prepare for placing the new checkmark. */
            position: relative;
            /* Do a bug fix to keep iOS from adding dark background. */
            background: none;
        }

    input[type="checkbox"]:checked::after {
        /* Place (position) the new checkmark. */
        position: absolute;
        top: 0.36rem;
        left: 0.12rem;
        /*  Create a checkmark in CSS. 
    	Could use an SVG or `content: "✓";` instead. 
    	This is a box, turned 45 degs, with a 
    	left and bottom border to make the checkmark.
    	Created using an empty pseudo-element.*/
        content: "";
        width: 1.0rem;
        height: 0.3rem;
        border: 4px solid black;
        border-right: none;
        border-top: none;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

button,
input[type=button],
input[type=submit] {
    background-color: #494cdd;
    border: none;
    color: white;
    padding: 13px 27px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin-top: 7px;
}

    button:hover,
    input[type=button]:hover,
    input[type=submit]:hover {
        background-color: #686bff;
    }

    button:active,
    input[type=button]:active,
    input[type=submit]:active {
        background-color: #3639d8;
    }

    button:disabled,
    input[type=button]:disabled,
    input[type=submit]:disabled {
        background-color: #cccccc;
    }

input[type=color] {
    -webkit-appearance: none;
    outline: none;
    background: none;
    border: none;
    width: 128px;
    height: 32px;
    margin-top: -10px !important;
}

div.form {
    margin: 10px 30px;
    min-width: 100px;
    display: inline-block;
}

    div.form li {
        width: 100%;
        display: block;
        position: relative;
        margin-bottom: 5px;
        min-height: 34px;
    }

    div.form label {
        margin-right: 10px;
        position: relative;
    }

        div.form label:after {
            position: absolute;
            right: -0.2em;
        }

    div.form input,
    div.form div.StripeElement {
    }

div.StripeElement {
    position: relative;
    top: 8px;
    display: inline-block;
    width: 280px;
}

table {
}

    table thead th {
        text-align: left;
    }

    table thead th, td {
        padding: 3px 7px;
    }

    table tr {
        height: 4px;
    }

.hidden {
    display: none !important;
}

.error {
    padding: 13px;
    border: 2px #eb4d4b solid;
    border-radius: 13px;
    background-color: #ff7979;
    color: #ffffff;
    font-weight: 500;
}

.error-link {
    color: #ff7979;
    font-weight: 500;
}

.navbar {
    background-color: #494cdd;
}

.navbar-logo {
    font-size: 46px;
    display: inline-block;
    margin-right: 32px;
    margin-top: 7px;
}

    .navbar-logo a {
        color: white;
        text-decoration: none;
    }

.navbar-links {
    display: inline-block;
}

    .navbar-links div {
        display: inline-block;
        padding: 16px 26px 16px 26px;
        text-align: center;
    }

        .navbar-links div:hover {
            background-color: #2e31c9;
        }

        .navbar-links div a {
            text-decoration: none;
            color: white;
        }

.navbar-links-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.mobile-nav-button {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 20px;
    display: none;
}

.mobile-nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: #494cdd;
    color: #ffffff;
    z-index: 9999;
}

.mobile-nav-header {
    margin: 0 0 20px 0;
    background-color: #2e31c9;
    padding: 16px;
}

.mobile-nav-item {
    font-size: 24px;
    padding: 16px 32px;
}

    .mobile-nav-item a {
        color: #ffffff;
        text-decoration: none;
    }

.hero-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 70px 20px 40px 20px;
    border-bottom: 7px solid #3639d8;
}

.hero-image {
    display: inline-block;
    width: 100%;
    max-width: 340px;
    min-height: 340px;
}

.hero-content {
    display: inline-block;
    max-width: 550px;
    text-align: right;
}

    .hero-content h1 {
        font-size: 58px;
        margin-top: 0;
    }

div.loading-indicator {
    position: fixed;
    top: 30%;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.bullet {
    display: inline-block;
    max-width: 234px;
    align-self: flex-start;
    margin: 15px;
    text-align: center;
}

h2.inline {
    display: inline-block;
}

.badge {
    display: inline-block;
    border: 1px solid black;
    border-radius: 7px;
    margin: 5px;
    padding: 1px 7px;
    color: black;
    font-weight: 700;
}

    .badge.trial {
        border: 1px solid #494cdd;
        background: #d7d8ff;
        color: #494cdd;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    padding-top: 34px;
    width: 100%;
    height: 100%;
    background-color: white;
}

.account-display {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

    .account-display .item {
        order: 1;
        flex-grow: 1;
        text-align: center;
        min-width: 280px;
        min-height: 198px;
        background-color: #494cdd;
        padding: 13px;
        color: white;
        border-radius: 2px;
        margin: 7px;
    }

        .account-display .item:hover {
            background-color: #2e31c9;
        }

        .account-display .item p {
            font-size: 46px;
        }

        .account-display .item p.svg {
            font-size: 32px;
        }

.generate-token-button {
    padding: 3px 11px;
    border: 1px solid #cecece;
    border-radius: 7px;
    margin-right: 8px;
    background: #ececec;
}

#txtAreaCode {
    width: 48px;
}

#selPhoneNumber {
    width: 144px;
}

.invoice {
    margin: 30px;
    background: #eee;
    border: 1px solid #ccc;
}

.invoice-header {
    background-color: #494cdd;
    color: white;
    padding: 13px;
    font-weight: 700;
}

.invoice-content {
    padding: 17px 0px 17px 17px;
}

.invoice-paid {
    margin: 0px 17px;
    padding: 1px 11px;
    background-color: green;
    border: 1px solid darkgreen;
    font-weight: normal;
}

.pricing {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.pricing-col {
    display: inline-block;
    max-width: 420px;
    padding: 0px 34px;
    border: 1px solid #cccccc;
    border-radius: 1px;
}

    .pricing-col:hover {
        box-shadow: #3639d8 0px 0px 4px
    }

    .pricing-col.pricing-intro {
        max-width: 330px;
    }

.pricing-range {
    display: block;
}

    .pricing-range input[type=range] {
        -webkit-appearance: none;
        background-color: #cecece;
        outline: none;
        width: 100%;
        height: 1px;
        border: 0px solid black;
        margin: 17px 0px;
    }

        .pricing-range input[type=range]::-webkit-slider-thumb {
            background-color: #ffffff;
            box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
            height: 46px;
            width: 46px;
            border-radius: 50%;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none
        }

.team {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

    .team .team-member {
        display: inline-block;
        border: 1px solid #cccccc;
        border-radius: 1px;
        max-width: 280px;
    }

        .team .team-member img {
            width: 214px;
            padding: 32px;
        }

.large-input, .live-demo-phone-number {
    position: relative;
    top: 4px;
    font-size: 25px;
}

.instruction-step svg {
    height: 128px;
    width: 128px;
}

.instruction-step h2 {
    display: inline-block;
    position: relative;
    top: -60px;
    margin-left: 17px;
}

.info-text {
    font-size: 13px;
    color: #999999;
}

.faq-page h3 {
    color: #494cdd;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category {
    display: inline-block;
    min-width: 170px;
    text-align: center;
    padding: 42px;
    color: #494cdd;
    border: 1px solid #494cdd;
    border-radius: 3px;
    margin: 10px;
}

    .faq-category:hover {
        background-color: #ececec;
    }

.support-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.support-category {
    display: inline-block;
    min-width: 170px;
    text-align: center;
    padding: 34px;
    margin: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

    .support-category:hover {
        background-color: #ececec;
    }

.feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    border-bottom: 1px solid #cccccc;
    padding: 16px;
}

.feature-content {
    display: inline-block;
    min-width: 320px;
    max-width: 440px;
}

    .feature-content h3 {
        color: #3e3e3e;
    }

.feature-circle {
    width: 202px;
    height: 202px;
    border-radius: 121px;
    border: 1px solid #999999;
    margin: 0 auto;
}

.feature-circle:hover {
    background-color: #ececec;
}

.feature-circle img {
    position: relative;
    top: 41px;
    left: 41px;
    height: 120px;
    width: 120px;
    margin: 0;
}

.feature-circle .full {
    position: relative;
    top: 0px;
    left: 0px;
    border-radius: 121px;
    height: 100%;
    width: 100%
}

.admin-indicator {
    width: 9px;
    height: 9px;
    background: #af2424;
    border-radius: 6px;
}

.admin-indicator .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    margin-top: 20px;
    margin-left: -56px;
}

.admin-indicator .tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.admin-indicator:hover .tooltip {
    visibility: visible;
}

.overview-charts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.overview-chart {
    display: inline-block;
    min-width: 480px;
}

#questions-summary {
    display: flex;
}

.question-summary {
    min-width: 174px;
    background: #ececec;
    text-align: center;
    padding: 8px;
    margin: 8px;
}

.demo-video {
    width: 100%;
    margin-bottom: 36px;
}

.screenshot-container {
    text-align: center;
    border: 1px solid #cccccc;
    margin: 0 0 32px 0;
    background: #ececec;
}

.screenshot {
    width: 100%;
}

@media (max-width: 610px) {
    .hero-content {
        text-align: center;
    }

        .hero-content h1 {
            font-size: 36px;
        }

        .hero-content h2 {
            font-size: 22px;
        }

    .team .team-member {
        margin-bottom: 16px;
    }

    .pricing-col {
        margin-bottom: 16px;
    }
}

@media (max-width: 816px) {
    .navbar-links {
        display: none;
    }

    .mobile-nav-button {
        display: block;
    }
}


/* Key Frame Animations */

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}