@CHARSET "ISO-8859-1";

/* ----- Input form styling ----- */
/* See https://codepen.io/huange/pen/rbqsD for a different button design */
.ssfin_search {
    width: 100%;
    position: relative;
    display: flex;
}

.ssfin_pad {
    padding: 10px 10px 30px 10px;
}

.ssfin_input {
    width: 100%;
    border: 3px solid #00B4CC;
    border-right: none;
    padding: 5px;
    height: 36px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #9DBFAF;
}

.ssfin_input:focus{
    color: #00B4CC;
}

.ssfin_submit {
    height: 36px;
    width: 100px !important;
    padding: 5px 10px;
    border: 1px solid #0b65a3;
    background: #0b65a3;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 18px;
}

.ssfin_submit:hover {
    border: 1px solid #0b65a3;
    background: #0f77be;
}

.ssfin_output{
    margin: 10px 0;
    padding: 10px 0px 0px 5px;
}

.ssfin_info{
    margin: 0 20px;
    padding: 5px 20px;
    color: #ababab;
    border-bottom: 1px dotted #cdcdcd;
}

.ssfin_spinner {
    display: block;
    width: 320px;
    height: 226px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    background: url('busy01.gif') no-repeat;
    opacity: .8;
    filter: alpha(opacity=80);
}

.ssfin_download {
    padding: 0px 10px;
    border: 1px solid #aaa;
    background: #aaa;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

tr.ssfin-input-hdr {
    background: #dedede;
}

/* ----- Flex block definitions ----- */
.ssfin-flex-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    padding: 0px 0;
    /*justify-content: space-around;*/
    /*justify-content: space-between;*/
    background-color: transparent;
    border: 1px solid #f1f1f1;
}
.ssfin-flex-container > .ssfin-flex-full {
    box-sizing: border-box;
    background-color: transparent;
    width: 100%;
    padding: 5px 5px;
}

.ssfin-flex-container > .ssfin-flex-2 {
    box-sizing: border-box;
    background-color: #efefef;
    width: 50%;
    /*margin: 10px 10px;*/
    padding: 15px 10px 10px 10px;
    text-align: left;
    /*border: 1px solid #cdcdcd;*/
}

.ssfin-flex-2.ssfin-right, div.ssfin-right {
    text-align: right;
}

div.ssfin_wordcloud {
    /*border: 2px solid #efefef;*/
    padding: 30px;
    margin: 5px;
    background-color: #efefef;
    /*line-height: 1.2;*/
}

.ssfin_table tr td, table.ssfin_table {
    border: 0!important;
    font-size: 11px;
}

.ssfin_table tr th {
    border-bottom: 2px dotted #ededed;
    font-size: 11px;
}

th.ssfin_phrase {
    width: 33%;
}

.ssfin_highlight {
    color: #0b65a3;
    /*font-weight: bold;*/
}

.ssfin_lowlight {
    color: #9f9f9f;
    font-style: italic;
}

p.ssfin_runtime {
    color: #d5d5d5;
    font-size: 12px;
    font-style: italic;
}

div.ssfin_upsell {
    margin: 40px 0;
}

.ssfin_upsell li {
    padding: 0 0 0 0px;
    list-style-type: none;
}

.ssfin_green {
    color: darkgreen;
}

.ssfin_amber {
    color: #ffbf00;
}

.ssfin_red {
    color: red;
    font-weight: bold;
}

a.ssfin_link {
    color: #0b65a3;
}

/* AI Output Formatting */
.ai_check {
    font-family: Arial, sans-serif;
}

.ai_check h2,
.ai_check h3,
.ai_check h4 {
    color: blue;
    margin-bottom: 6px;
}

.ai_check h2 {
    font-size: 16px;
}

.ai_check h3 {
    font-size: 14px;
}

.ai_check h4 {
    font-size: 12px;
}

.ai_check p {
    font-size: 12px;
    margin: 4px 0 10px 0;
    line-height: 1.5;
}

.ai_check ul {
    list-style-type: none !important;
    padding-left: 0;
    margin: 0 0 10px 0;
}

.ai_check ul li {
    font-size: 12px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.ai_check ul li::before {
    content: '✔';
    color: red;
    position: absolute;
    left: 0;
    top: 0;
}

.ai_check table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 12px;
}

.ai_check table th,
.ai_check table td {
    border: 1px solid #ccc;
    padding: 6px 8px;
    text-align: left;
}

.ai_check table th {
    background-color: #f0f8ff;
    font-weight: bold;
}

.ai_check ol {
    list-style-position: inside;
    padding-left: 0;
    margin: 0 0 10px 0;
    counter-reset: item;
}

.ai_check ol li {
    font-size: 12px;
    counter-increment: item;
    margin-bottom: 6px;
    position: relative;
    padding-left: 20px;
}

.ai_check ol li::before {
    content: counter(item) ".";
    color: red;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}
