
/*indent the bullet points*/
ol {
  counter-reset: item;
  display: table;
}

li {
  display: block;
}

li:before{
  content: counters(item, ".") "  ";
  counter-increment: item;
  display: table-cell; /* aha! */
}

ol > li {
    display: table-row;
}

ol > li::before {
    text-align: right;
    padding-right : 10px;
    padding-bottom : 10px;
}
/*end of indent the buller points*/


.tnc-msg {
    font-weight:bolder;
    padding : 10px;
}

.tnc-item-header {
    font-size : 1.1em;
    font-weight:bold;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color:#fff;
    color: rgb(0,0,0);
    font-weight:bold;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
}

.collapsible:hover {
        box-shadow: 0px 0px 0px 0.1rem rgba(131, 131, 131, 0.50);
}



.collapsible:after {
    content: '\002B';
    color: black;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    margin-right: 10px;

}

.active:after {
    content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow:auto;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
    border-radius:10px;
}

.tnc-last-update {
    font-size:0.9em;
    color: blue;
    padding: 10px;
}

.collapsible-bar-wrapper {
    padding : 10px;
}

.collapsible-bar {
    background-color:#ddd;
    color: rgb(0,0,0);
    padding: 15px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    border-radius: 5px;
}
