.titleh1{
    color: #FFF;
    font-weight: bold;
    padding: 50px 0;
    word-wrap: break-word;
}
.item{
    margin-bottom: 20px;
}
.currentLinks, .newLinks{
    color: #FFFFFF;
    font-weight: bold;
}
.sectionHead{
    border-bottom: 3px solid #FFFFFF;
    margin-top: 30px;
}
h2{
    color: #fff;
}
.sectionBody > div{
    padding: 40px 20px;
    margin-bottom: 20px;
}
.borderRight{
    border-right: 3px solid #FFFFFF;
    padding: 40px 5px;
}
textarea{
    width: 90%;
    height: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    resize: none;
}
#voiceSave, #excludedSave{
    position: relative;
}


.spinner, #spinner { 
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #FFB800;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}