.notification-box {
    background-color: #eee;
    padding: 10px 15px;
    border-radius: 2px;
    margin-bottom: 20px;
    font-size: 10px;
}

.notification-box h3 {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

.notification-box p {
    font-size: 12px;
}

#termos-modal {

}

#termos-modal .modal-header .close {
    color: #555;
    text-shadow: none;
}

#termos-modal .modal-dialog {
    max-width: 800px;
}

#termos-modal .modal-content {
    background-color: #fff;
}

#termos-modal p {
    color: #555;
    font-size: 12px;
    text-align: justify;
    display: inline;
}

#termos-modal ol {
    padding: 10px 30px;
    margin: 10px 15px;
    background-color: #eee;
    border-radius: 2px;
}

#termos-modal ol.scroll-box {
    max-height: 500px;
    overflow: auto;
}

#termos-modal p.subtitle {
    text-align: center;
    font-size: 14px;
    color: #555;
    display: block;
}

a {
    cursor: pointer;
}

#termos-modal ol { counter-reset: item }
#termos-modal li{ display: block }
#termos-modal li:before { 
    content: counters(item, ".") " ";
    counter-increment: item;
    display: inline-block;
    margin-right: 10px;
}

#termos-modal.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0%);
    -o-transform: translate(0, 0%);
    transform: translate(0, 0%);
}