#outerWrapper {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
    justify-items: center;
    align-items: start;
    padding: 40px 20px;
    width: calc(100vw - 40px);
}

#outerWrapper p,
#outerWrapper h1,
#outerWrapper h2,
#outerWrapper h3 {
    padding: 0;
    margin: 0;
    max-width: 650px;
}

#leftPanel,
#rightPanel {
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px #5e5e5e;
    border-radius: 4px;
}

#rightPanel {
    max-width: 500px;
}

#leftPanelTitle {
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
}

#rightPanelTitle {
    font-size: 1.4rem;
}

.factSnippet {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    border: solid 1px lightgray;
    border-left: solid 3px purple;
    display: grid;
    grid-template-columns: min-content auto;
    column-gap: 12px;
}

.factSnippetContentSection {
    max-width: 586px;
}

.factIconWrapper {
    background: #f0e0ef;
    width: min-content;
    margin-bottom: 12px;
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: grid;
    justify-content: center;
    align-content: center;
}

.sourceLink,
.sourceLink:hover,
.sourceLink:active,
.sourceLink:focus {
    font-style: italic;
    color: #757575;
    font-size: 0.8rem;
}

.sourceLink:hover {
    color: purple;
}

#planBubblesWrapper {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    row-gap: 10px;
    margin-top: 20px;
}

.planBubble {
    border-radius: 4px;
    font-size: 0.9rem;
}

.planBubbleTitle {
    font-size: 1.2rem;
    border-bottom: solid 1px lightgray;
}

#proBubbleTitleWrapper {
    display: grid;
    align-content: center;
    align-items: center;
    grid-template-columns: min-content auto;
    background: #80008021;
    border-bottom: solid 1px purple;
}

.planBubble ul {
    padding: 10px;
    margin: 0 20px;
}

#freeBubble {
    border: solid 1px lightgray;
}

#proBubble {
    border: solid 2px purple;
}

#getProButton,
#getProButton2 {
    padding: 10px 0;
    width: calc(100%);
    background: purple;
    font-weight: bold;
    color: white;
    border-radius: 100px;
    margin-top: 20px;
    border: solid 1px purple;
    cursor: pointer;
    display: block;
    text-align: center;
}

#getProButton:hover,
#getProButton2:hover {
    color: purple;
    background: transparent;
    border: solid 1px purple;
}

#getProButton2 {
    display: none;
}


#priceIncreasingBox {
    background: linear-gradient(180deg, rgba(239,68,68,.12), rgba(239,68,68,.04));
    border: solid 1px red;
    padding: 12px;
    border-radius: 4px;
    margin-top: 20px;
}

#priceIncreasingTitle {
    display: grid;
    grid-template-columns: min-content auto;
    column-gap: 5px;
    color: black;
}

@media screen and (max-width: 1170px) {
    #outerWrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1100px) {
    #outerWrapper {
        grid-template-columns: 1fr;
    }

    .factSnippet {
        grid-template-columns: auto;
    }

    .factSnippetContentSection {
        max-width: unset;
    }

    #rightPanel {
        max-width: unset;
    }

    #getProButton2 {
        display: block;
    }
}

@media screen and (max-width: 560px) {
    #planBubblesWrapper {
        grid-template-columns: auto;
    }
}