#top_nav{
    border-radius: 5px;
    font-size: 0.9rem;
}
#top_nav li{
    text-align: center;
}
#top_nav a:hover{
    color: inherit;
    text-decoration: underline;
}
#terms_summary_stmt{
    font-size: 16px;
}
#table_of_contents{
    padding-left: 15px;
}
#table_of_contents li{
    list-style: decimal;
    line-height: 20px;
    margin-bottom: 10px;
}
#terms_right article{
    margin-bottom: 50px;
}
.default_li li{
    list-style: inherit!important;
}

/**start of help*/

#help_cards_div{
    position: relative;
    text-align: center;
}
.help_container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.help_card {
    display: flex;
    height: 200px;
    width: 180px;
    text-align: left;
    border-radius: 10px;
    background: var(--transparent_70)!important;
    border: 1px solid var(--colorSecondary);
    color: #fff;
    box-shadow: -0.2rem 0 0.2rem #000;
    /*   margin-left: -50px; */
    transition: 0.4s ease-out;
    position: relative;
    left: 0;
    margin: 0 10px;
}

.help_card:hover {
    transform: translateY(-10px);
    transition: 0.4s ease-out;
}

.help_card:hover ~ .help_card {
    position: relative;
    left: 50px;
    transition: 0.4s ease-out;
}

.help_title {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 300;
    position: absolute;
    left: 20px;
    top: 15px;
}

.help_bar {
    position: absolute;
    top: 100px;
    left: 20px;
    height: 5px;
    width: 80%;
}

.help_emptybar {
    background-color: var(--transparent_10);
    width: 100%;
    height: 100%;
}

.help_filledbar {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 0;
    height: 100%;
    background: var(--colorPrimary);
    background: linear-gradient(90deg, var(--transparent_70) 0%, var(--transparent_50) 65%, var(--transparent_20) 100%);
    transition: 0.6s ease-out;
}

.help_card:hover .help_filledbar {
    width: 120px;
    transition: 0.4s ease-out;
}

.help_circle {
    position: absolute;
    top: 100px;
    left: calc(50% - 60px);
}

.help_circle .help_icon{
    position: absolute;
    top: 30%;
    left: 17%;
    font-size: 18px;
    color: var(--white);
}

.help_stroke {
    stroke: var(--white);
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    transition: 0.6s ease-out;
}

svg {
    fill: var(--transparent_0);
    stroke-width: 2px;
}

.help_card:hover .help_stroke {
    stroke-dashoffset: 100;
    transition: 0.6s ease-out;
}

/*end of help center*/

#contact_history_box{
    height: 60vh;
    overflow: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

.contact_reply{
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
    word-break: break-word;
    border-radius: 5px 5px 0 0;
    box-shadow: -1px -2px #dee0e2;
    background: #f5f7f9;
    -webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;
}