/* TODO: ALL THiS TO BE REVIEWED */

.cbi_images {
    margin-top: 25px;
}
.cbi_images .cb_image {
    float: left;
    width: 15%;
    margin-right: 2%;
    margin-bottom: 20px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    border: 1px solid #ccc;
}
.cbi_images .cb_image:nth-child(6n+6) {
    margin-right: 0;
}
.cbi_images .cb_image img {
    display: block;
}
.cbi_images .cb_image.active {
    outline: #094d90 solid 4px;
    border-color: #094d90;
}
.cbi_images .cb_image:hover {
    outline: #094d90 solid 4px;
    border-color: #094d90;
}
.cbi_images .cb_image .tick {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: url('../img/tick.png') no-repeat center center;
    background-size: 100% auto;
}
.cbi_images .cb_image.active .tick {
    display: block;
}



/* Feedback messages */
.cbi_feedback {
    display: none;    
    color: #aaaaaa;
    font-size: 12px;
    margin-top: 0;
}
.cbi_feedback.cbi_success {
    
}
.cbi_feedback.cbi_error {
    color: #ffa500;
}