/* Version SVN: $ID$ */
#termsDialog {
    margin-bottom: 0;
    color: #fcfcfc;
    background-color: #7c7c7c;
    background-image: none;
    border-color: #5c5c5c;
    border-radius: 0;
    line-height: 2em;
    padding: 10px 15px;
}

#termsDialog button {
    position: relative;
    float: right;
    top: 3px;
    font-weight: bold;
    line-height: 1;
    border: none;
    background-color: #5c5c5c;
    border-radius: 5px;
    color: #fcfcfc;
    margin-left: 5px;
    padding: 4px 10px 7px 10px;
    -webkit-padding-before: 5px;
    -webkit-padding-after: 5px;
}

#termsDialog button .loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: loaderSpin 2s linear infinite;
    display: inline-block;
    position: relative;
    top: 2px;
    margin-left: 5px;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
