.sample-layout {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-bottom: 60px;
    padding-top: 40px;
    /* border-top: 1px solid #ddd; */
}

.integration-type-container {
    width: 100%;
    display: flex;

    button {
        flex-grow: 1;
        background: none;
        color: #ddd;
        border: none;
        border-bottom: 2px solid #ddd;
        padding: 10px 15px 10px 15px;
        font-size: 1.2rem;
    }

    button.selected {
        color: #0478BA;
        border-bottom: 2px solid #0478BA;
    }
}

.sample-layout {
    .iframe-code {
        display: block;
    }

    .javascript-code {
        display: none;
    }
}

.sample-layout .image-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    order: 3;
}

.sample-layout .image-container img {
    width: 95%;
    border: 1px solid #ddd;
    padding: 2.5%;
    border-radius: 5px;
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, .1);
}

.sample-layout .content-container {
    width: 100%;
    order: 2;
    margin-bottom: 25px;
}

.sample-layout .content-container h2 {
    margin-top: 0;
}

.sample-layout pre {
    padding: 0;
}

.sample-layout pre code {
    font-size: .9em;
    padding: 15px;
}

.sample-layout .content-container .help p {
    font-size: .9em;
    color: #999;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {
    .sample-layout {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }

    .sample-layout .image-container {
        width: 45%;
        margin: 0;
        max-width: none;
        order: 1;
    }

    .sample-layout .content-container {
        width: 52%;
        margin-bottom: 0px;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

@media screen {}