button.close {
    border: 1px solid black !important;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    line-height: 25px;
}

.avatar-visitor {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin-top: -8px;
    margin-right: 5px;
}

.btn-trash {
    background-color: #E3000E;
    color: white;
}

p.bann.finish {
    display: inline-block;
    border-radius: 4px;
    background-color: #4CAF50;
    color: #fff;
    padding: 0 4px;
    position: relative;
    top: -25px;
    left: 10px;
    float: left;
}

p.bann.sponsor {
    display: inline-block;
    border-radius: 4px;
    background-color: #FD5B03;
    color: #fff;
    padding: 0 4px;
    position: relative;
    top: -25px;
    left: 15px;
    float: left;
}

p.bann.association {
    display: inline-block;
    border-radius: 4px;
    background-color: #FCB941;
    color: #fff;
    padding: 0 4px;
    position: relative;
    top: -25px;
    left: 18px;
    float: left;
}

.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.row-create-association .btn-add-picture {
    width: 100%;
    height: 127px;
    display: block;
    border: 1px solid #D1D1D1;
    margin-bottom: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-image: url(../assets/img/plus.png);
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    text-decoration: none;
    color: #8A8A8A;
    font-size: 14px;
}

.pagination-buttons a {
    border: none;
    border-right: 1px solid #ccc;
    padding: 7px 18px;
    margin: 0;
    width: auto;
    float: left;
    text-decoration: none;
    color: #aaa;
    font-weight: bold;
    font-size: 24px;
}

.pagination-buttons a:hover {
    color: black;
}

.pagination a:last-child {
    border-right: none;
}

.current-page {
    background-color: transparent !important;
    color: #65BBE9 !important;
    border-color: #D0D0D0;
    font-weight: bolder;
    cursor: default;
}

.hr-black {
    border-top: 1px solid #aaa !important;
}

.table-responsive .table td {
    text-align: center;
}
.table-responsive .table th {
    text-align: center;
}

.table>thead:first-child>tr:first-child>th:first-child {
    text-align: left;
}

.table>tbody>tr>td:first-child {
    text-align: left !important;
}
.table-responsive>.table>tbody>tr>td.first-column{
    white-space: normal !important;
}


.table>tbody>tr>td:last-child {
    text-align: right;
}

.table>thead:first-child>tr:first-child>th:last-child {
    text-align: right;
}

[required]::-webkit-input-placeholder {
    color: red !important;
}

:-moz-placeholder { /* Firefox 18- */
    color: red !important;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: red !important;
}

:-ms-input-placeholder {
    color: red !important;
}

a#primaryPictureBig {
    color: rgba(255, 0, 0, 0.6);
}


/*------------Help tooltip--------------*/
.help-tip{
    position: relative;
    top: -40px;
    right: 35px;
    text-align: center;
    background-color: #BCDBEA;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 26px;
    cursor: default;
}

.help-tip:before{
    content:'?';
    font-weight: bold;
    color:#fff;
}

.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;

    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{    /* The tooltip */
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -4px;
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
}

.help-tip p:before{ /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#1E2021;
    right:10px;
    top:-12px;
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}

/* CSS animation */

@-webkit-keyframes fadeIn {
    0% {
        opacity:0;
        transform: scale(0.6);
    }

    100% {
        opacity:100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100; }
}

@media (max-width: 768px)
{
    .help-tip {
        right: -90% !important;
    }
    .table-responsive {
        overflow-y: auto !important;
    }
    .see-more {
        display: none !important;
    }
}

@media (max-width: 374px)
{
    .table-responsive {
        font-size: smaller !important;
        overflow: scroll !important;
    }
}

