.saved-results-header
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
    height: 52px;
    align-items: center;
    max-width: 1364px;
}

.saved-results-header h3
{
    text-transform: uppercase;
    font-size: 22px;
    color: #363636;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
}

.saved-results-header h3:nth-child(2)
{
    color: #04AA52;
    cursor: pointer;
}

.saved-results-container
{
    max-width: 1364px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-saved-result
{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    min-height: 80px;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.results-list-icon-container
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.results-list-calculator-name
{
    margin: 0;
    font-size: 22px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.single-saved-result div
{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.single-saved-result div:nth-child(2)
{
    gap: 10px;
}

.single-saved-result-container
{
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
}

.calculator-result-preview
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.calculator-result-preview h3
{
    color: #363636;
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 37px;
    margin-bottom: 20px;
}

.calculator-result-preview h3:nth-of-type(2)
{
    margin-top: 20px;
}

.calculator-preview-row
{
    width: 82%;
    display: flex;
    flex-direction: row;
}
.calculator-preview-row div
{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    text-align: center;
}

.preview-row--gray
{
    margin-bottom: 50px;
}

.preview-row--gray div:first-child
{
    background-color: #F2F2F2;
}

.preview-row--gray div:nth-child(2)
{
    background-color: #E3E3E3;
}

.preview-row--green, .preview-row--blue
{
    margin-bottom: 10px;
}

.preview-row--green div:first-child
{
    background-color: #D1F4E2;
}

.preview-row--green div:nth-child(2)
{
    background-color: #A3E6C3;
}

.preview-row--blue div:first-child
{
    background-color: #E5F4FF;
}

.preview-row--blue div:nth-child(2)
{
    background-color: #BCE3FF;
}

.loading-preview-text
{
    color: #363636;
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 37px;
    text-align: center;
}

.download-all-pdf-button
{
    align-self: flex-start;
    background-color: #363636;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #FFF;
    font-size: 19px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    border-radius: 0;
    gap: 6px;
    width: 90%;
    max-width: 260px;
    margin-top: 50px;
    cursor: pointer;
}

.download-all-pdf-button:hover, .download-all-pdf-button:focus
{
    background-color: #000;
}