﻿/* Variables */
:root {
    --blue: #0078D4;
    --blueTertiary: #71afe5;
    --blueLighterAlt: #EFF6FC;
    --white: #ffffff;
    --black: #212121;
    --layout: #F5F5F5;
    --neutralLight: #faf9f8;
  }

html {
    scroll-behavior: smooth;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ol,
ul,
li,
form,
table,
tr,
th,
td,
blockquote,
input,
button {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: var(--layout);
    font-size: 14px;
    line-height: 1.5;
    color: var(--white);
    font-family: "Segoe UI", SegoeUI, "Segoe WP", Tahoma, Arial, sans-serif;
}

#navbar {
    overflow: hidden;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 100;
}

.startBuild {
    text-align: center;
    background: transparent linear-gradient(275deg, #007BC0 0%, #003F9B 100%) 0% 0% no-repeat padding-box;
    margin-top: 60px;
    padding: 44px;
}

.startBuild h2 {
    padding-left: 20px;
}

.startBuild .startBtn {
    margin-left: 16px;
}

.btn:hover {
    background-color: #74922e;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--white);
}

ul#navLinks {
    width: 70%;
}

li {
    float: left;
}

li a {
    display: block;
    color: var(--black);
    text-align: center;
    padding: 14px 12px;
    font-size: 16px;
    text-decoration: none;
}

li a:hover {
    border-bottom: 3px solid var(--blue);
}

.featureColumns {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.featureItem {
    width: 33%;
    padding: 16px;
    background: var(--white);
    margin-right: 16px;
}

.featureItem:last-child {
    margin-right: 0;
}

.featureItemDesc {
    display: block;
    margin-top: 8px
}

.verticalTabs {
    margin-top: 20px;
    display: flex;
    flex-flow: column;
}


.leftApiContainer {
    margin: 10px 0 30px;
}

#apiContentSubmission,
#urlCurl,
#urlXML,
#contentCurl,
#contentXML {
    display: none;
}

.vertical {
    float: none;
}

.faqContainer {
    margin-top: 0px;
}

.faqColumn {
    height: auto;
    float: left;
}

.leftColumnApi {
    float: left;
    width: 25%;
}

.leftColumnApi .apiList1 {
    background: transparent;
}

.rightColumnApi {
    float: right;
    width: 70%;
    margin-left: 30px;
}

.apiList1 a {
    text-align: left;
    border-bottom: 0;
    padding: 10px;
    margin-right: 10px;
}

.apiList1 a:hover, .verticalAnchor.active {
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
}

.apiList1 .vertical a:first-child {
    padding-top: 0
}

.apiUrlTitle {
    margin-bottom: 20px;
    font-size: 16px;
}

#decision h2 {
    top: 0;
}

#apiContentSubmission .tableView {
    min-height: 200px;
    border: 1px solid grey;
    padding: 12px;
    font-size: 16px;
}

.innerContentData {
    overflow: auto;
    border: 1px solid grey;
}

.innerTabItems li {
    width: 50%;
}

.innerTabItems {
    background: var(--neutralLight);
}

.innerContentData .tabsDescription {
    padding: 16px;
    font-size: 16px;
    word-break: break-word;
    background: var(--white);
}

pre {
    padding-left: 12px;
    white-space: normal;
}

#decision {
    display: block;
}

.customerItem {
    float: left;
    cursor: pointer;
    align-items: center;
    margin-right: 40px;
}

.customerItem>a {
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.customerItem>a.active {
    border-color: var(--blue);
}

.customerItem:first-child {
    margin-left: 0;
    text-align: left;
}

.customersContainer {
    margin: 30px 0 20px
}

.carouselContainer {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.customerContent {
    transition: all 0.5s ease-in-out;
}

.customerContentItem {
    flex: 0 0 100%;
    height: 400px;
}

.annrow #anchorRow1 {
    display: inline-block;
}

.annrow {
    padding-top: 30px;
}


/* .customerPosterImg {
    display: flex;
} */

.anchorImg {
    display: flex;
}

.customerContentColumn {
    background-color: var(--white);
    color: var(--black);
    flex: 1;
}

.documentationItems {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.documentCol {
    width: 31%;
    margin-right: 20px;
    margin-bottom: 20px;
}

#Overview h2,
#Documentation h2 {
    margin-top: 0;
    position: relative;
    top: 0
}

.documentCol:last-child {
    margin-right: 0;
}

.documentColItem {
    background: var(--white);
    padding: 12px;
    min-height: 272px;
}

.documentColItem h3 {
    background: var(--white);
    font-weight: 600;
    padding: 12px;
    margin: -12px;
    margin-bottom: 12px;
}

.doccol a {
    color: var(--blue);
}

.btn1 {
    color: #505055;
}

.customerContentColumn img {
    height: 400px;
    width: 100%;
    max-width: 100%;
}

.customerTextAlign {
    padding: 30px 30px 0 30px;
    white-space: initial;
    text-align: left
}

.customerTextAlign p {
    text-align: justify;
    margin-bottom: 16px;
}

.customerTextAlign a {
    color: var(--blue);
}

.profilePhoto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.redditProfile {
    background-image: url("./img/philipGoffinet.jpeg");
}

.love2devProfile {
    background-image: url("./img/chrisLove.jpeg");
}

.profileName {
    float: left;
    margin-left: 20px;
}

.faqCollapsible {
    position: relative;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    margin-bottom: 1px;
    background: var(--white);
}

.faqCollapsible::after {
    content: '';
    float: right;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.faqCollapsible.active::after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

#faqColl a {
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--blue);
    cursor: pointer;
}


#faqRightCol #contentSubmission {
    display: none;
}

#navbar .active:after {
    content: none;
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
    border-top: 0;
}

.documentation {
    display: flex;
}

.documentation {
    height: auto;
}

.faq {
    height: auto;
    padding-bottom: 25px;
}

.signInContainer {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.signInCol {
    width: 33%;
    margin-right: 16px;
    background-color: var(--white);
    padding: 28px 0;
    position: relative;
}

.signInCol:last-child {
    margin-right: 0;
}

.signInCol .number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 140px;
    opacity: .1;
}

.signInCol img {
    width: 80px;
    margin-bottom: 10px;
}

.anchorTop {
    margin: 30px 0 20px;
}

.anchorCol {
    height: 400px;
    width: 50%;
    float: left;
    color: white;
    background-color: #505055;
}

.anchorColText {
    margin: 125px 40px 0 40px;
    text-align: justify;
}

.anchorCol img {
    height: 400px;
    width: 655px;
    max-width: 100%;
}

.announcementTab {
    padding: 12px 30px;
    display: inline-block;
}

.customerItems {
    transition: all 0.5s ease-in-out;
}

.customerItemsReset {
    transition-duration: 0s;
}

.partnersContainer {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.annrowtop {
    display: flex;
    padding-left: 530px;
}

.anncoltop img {
    height: 48px;
    width: 93px;
}

.ft img {
    height: 30px;
    width: 30px;
}

.ft a svg {
    width: 28px;
    height: 28px;
    margin-right: 16px;
}

.ft a.label {
    line-height: 28px;
}

#apiActive .active:after {
    content: none;
}

#faqActive .active:after {
    content: none;
}

#faqActive .active {
    font-weight: 600;
    border-bottom: 2px solid var(--blue);
}

#navbar .active {
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
}

#CustomerStories .active {
    border-bottom: 5px solid var(--blue);
}

#CustomerStories .active:after {
    content: none;
}

#Announcements .active {
    border-bottom: 5px solid var(--blue);
}

#Announcements .active:after {
    content: none;
}

#decision a {
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
}

#decision a.active {
    border-bottom: 2px solid var(--blue);
    font-weight: 600;
    background: var(--blueLighterAlt);
    padding-bottom: 8px;
}

#decision a.link {
    text-decoration: underline;
    color: var(--blue);
    overflow-wrap: break-word;
}

#decision .active:after {
    content: none;
}

.border img {
    height: 24px;
    width: auto;
}

.anchorBorder img {
    height: 32px;
    width: auto;
}

.announcementTab>a {
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.announcementTab.active {
    font-weight: 600;
    border-bottom: 2px solid var(--blue);
}

/* .customerStories .border.love2devLogo img {
        height: 50px;
        width: 200px;
    } */

.footer {
    font-size: 14px;
    display: flex;
    padding-bottom: 32px;
}

.footerCols {
    width: 25%;
    flex: 1;
}

.footerCols ul {
    background: transparent;
}

.ft {
    margin-bottom: 6px;
}

.ft a {
    color: #969696;
}

.footerCols .social a {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--blueTertiary);
}


/* new styles */

.mainContainer {
    margin: auto;
    position: relative;
    max-width: 1170px;
    color: var(--black);
}

.clearfix::after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    padding: 20px 0 0;
}

.subHeader .subText {
    font-size: 18px;
    color: white;
    margin-bottom: 16px;
}

#navBarButton.startBtn {
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 2px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    animation: slideInDown 0.5s ease-out;
}

.hide {
    display: none;
}

.navHeader {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 12px;
    justify-content: space-between;
    box-shadow: rgb(0 0 0 / 13%) 0px 1.6px 3.6px 0px, rgb(0 0 0 / 11%) 0px 0.3px 0.9px 0px;
}

.MarketIndexNow {
    align-items: center;
    background: linear-gradient(to right,#D6F2FB, #DAF6E1);
    padding: 5px 5px;
    text-align: center;
    color: black;
}

.overviewContainer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.overviewLeftContent {
    width: 40%;
    height: auto;
    color: white;
}

.overviewRightContent {
    max-width: 600px;
    margin: auto;
}

.separator {
    margin: 60px auto;
    border: 1px solid transparent;
    text-align: center;
    width: 40%;
}

.videoStyles {
    width: 100%;
}

#navbarMobile {
    display: none;
}

.customerItems {
    display: flex;
}

.mainContainer h2 {
    font-size: 32px;
    font-weight: 600;
}

#Overview h2,
.startBuild h2 {
    position: initial;
    top: 0;
    color: var(--white);
}

#Overview h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--white);
}

#Overview p {
    color: var(--white);
}

.headerLogo {
    display: flex;
    align-items: center;
}

.headerTitle {
    padding-left: 12px;
    margin-left: 12px;
    border-left: 1px solid var(--black);
    color: var(--black);
}

.navAction {
    margin-left: 8px;
}

.getStartedContainer {
    background: url("./img/windmill.png");
    background-size: cover;
    padding: 32px;
}

#getStartedButton.startBtn {
    font-size: 16px;
    display: inline-block;
    padding: 14px 12px;
    background: var(--white);
    border-radius: 2px;
    color: var(--black);
    margin-top: 20px;
}

#getStartedButton.startBtn:hover {
    background: var(--blue);
    color: var(--white);
    transition: all .2s ease-in-out;
}

.footerContainer {
    background: var(--black);
    padding: 32px;
}

.footer.mainContainer {
    color: var(--white);
}

.footerTitle {
    margin-bottom: 8px;
}

@media all and (max-width: 374px) {
    li {
        width: 100%;
    }

    li a {
        border-bottom: 1px solid #f1f2f3;
    }

    .overviewLeftContent {
        width: 100%;
        height: auto;
        color: white;
    }

    .overviewRightContent {
        width: 100%;
        height: auto;
    }
}

@media all and (max-width: 767px) {
    .sticky {
        position: relative;
    }

    #navbar {
        display: none;
    }

    #navbarMobile {
        display: block;
    }

    /* mobile menu styles */
    .mobile-container {
        height: auto;
        color: white;
        margin: -24px;
    }

    .headerTopNav {
        background-color: #333;
        position: relative;
    }

    .headerTopNav #myLinks {
        display: none;
    }

    .headerTopNav .headerNav {
        color: white;
        padding: 16px;
        text-decoration: none;
        font-size: 20px;
        display: flex;
        height: 60px;
        background-color: #000;
    }

    .headerNav svg {
        margin-top: 8px
    }

    .headerNav .title {
        margin-left: 16px;
    }

    .headerTopNav a {
        color: white;
        padding: 16px;
        text-decoration: none;
        font-size: 18px;
        display: block;
        margin: 0;
    }

    .headerTopNav .navAction {
        border-bottom: 1px solid;
    }

    .headerTopNav a.icon {
        background: black;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        height: 30px;
    }

    .headerTopNav a.icon:hover {
        background: transparent;
        color: var(--white)
    }

    /*  */
    #hamburgerIcon {
        font-size: 20px;
    }

    .nav-icon {
        margin: 0;
        width: 30px;
    }

    .nav-icon:after,
    .nav-icon:before,
    .nav-icon div {
        background-color: var(--white);
        border-radius: 3px;
        content: '';
        display: block;
        height: 5px;
        margin: 7px 0;
        transition: all .2s ease-in-out;
    }

    .nav-icon.active:before {
        transform: translateY(12px) rotate(135deg);
    }

    .nav-icon.active:after {
        transform: translateY(-12px) rotate(-135deg);
    }

    .nav-icon.active div {
        transform: scale(0);
    }

    /*  */
    .headerTopNav a:hover {
        background-color: #ddd;
        color: black;
    }

    /* ends here */
    .mainContainer {
        width: calc(100% - 16px);
        padding: 16px;
    }

    .appHeader h1 {
        font-size: 20px;
        font-weight: 500;
    }

    .subHeader .subText {
        font-size: 14px;
    }

    .navHeader {
        margin: 0 -24px;
    }

    .overviewLeftContent {
        width: 100%;
        height: auto;
        color: white;
    }

    .overviewRightContent {
        width: 100%;
        height: auto;
    }

    li {
        width: 100%;
    }

    li a {
        border-bottom: 1px solid #f1f2f3;
    }

    .videoStyles {
        display: block;
        width: 100%;
        margin-top: 12px
    }

    .featureItem {
        width: 100%;
        text-align: center;
        margin-bottom: 16px;
        margin-right: 0;
    }

    .featureColumns,
    .overviewContainer {
        flex-flow: column;
    }

    .featureItemIcon {
        display: inline-block;
        width: 30%;
    }

    .featureItemDesc {
        float: right;
        text-align: left;
        width: 65%;
    }

    .documentationItems {
        flex-direction: column;
    }

    .documentCol {
        width: 100%;
        height: auto;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .documentColItem {
        min-height: 100px;
    }

    .separator {
        margin: 20px auto;
    }

    .customersContainer {
        display: flex;
        overflow: scroll;
        height: 48px;
    }

    .customerItem {
        width: 50%;
        /* margin-right: 0;
        margin-bottom: 12px; */
    }

    /* .customerItem .border img {
        width: 116px;
    } */

    .customerContentItem {
        height: auto;
    }

    .customerContentColumn {
        width: 100%;
        height: auto;
    }

    .customerContentColumn img {
        width: 100%;
        height: auto
    }

    .customerContentColumn .customerTextAlign {
        padding: 16px;
        /* max-width: 360px; */
    }

    .signInContainer {
        flex-direction: column;
    }

    .signInCol {
        width: 100%;
        margin-bottom: 20px;
    }

    .signInCol img {
        width: 40px;
    }

    .signInCol .number {
        top: 10px;
        left: 10px;
        font-size: 26px;
        opacity: 1;
    }

    .cusstor {
        padding-left: 20px;
        padding-bottom: 2px;
        display: flex;
    }

    .leftColumnApi {
        width: 100%;
    }

    .rightColumnApi {
        width: 100%;
        float: left;
        margin: 0;
    }

    .anchorCol {
        width: 100%;
        height: auto;
        float: none;
    }

    .anchorColText {
        margin: 24px;
        padding: 8px;
    }

    .anchorCol img {
        width: 100%;
        height: 100%;
    }

    .startBuild h2 {
        font-size: 16px;
    }

    .startBuild a {
        display: inline-block;
        margin-top: 16px;
    }

    /* footer styles */
    .footer {
        font-size: 14px;
        display: inline-table;
    }

    .footerCols {
        width: 50%;
        float: left;
    }

    #navBarButton {
        display: none;
    }

    .leftApiContainer .apiList1 {
        border-right: none;
        display: flex;
    }

    .apiList1 a {
        text-align: left;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: bold;
    }

    .vertical {
        float: left;
    }

    .faqCollapsible:after {
        right: 4px;
    }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
    .mainContainer {
        padding: 16px;
    }

    .sticky {
        margin: 0 -16px;
    }

    .navHeader li a {
        padding: 12px 9px;
    }

    .videoStyles {
        width: 356px;
    }

    .documentCol {
        width: 44%;
    }

    .vertical {
        float: left;
    }

    .leftApiContainer,
    .leftColumnApi {
        width: 100%;
    }

    .leftApiContainer .apiList1 {
        display: inline-flex;
        border: 0;
    }


    .rightApiContainer,
    .rightColumnApi {
        margin-left: 0;
        width: calc(100% - 32px);
        float: left;
    }

    .annColContainer {
        width: calc(100% - 32px);
    }
}

@media only screen and (min-width: 1024px) {
    .customerContentItem {
        display: flex;
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}