/*
*    MAIN CSS : FRONT
*/

/* FONTS */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);

/* GLOBAL */
html {

}

body {
 font-family: 'Open Sans';
}

/* UTILS */
textarea {
    resize: none !important;
}

a {
    text-decoration: none;
    outline: 0 !important;
}

table {
    width: 100%;
}

/* ADMIN TOP BAR */
.admin-top-bar {
    background-color: #17A2DC;
    width: 100%;
    color: #FFF;
    padding: 10px;
}

.btn-admin {
    color: #FFF;
    background-color: transparent;
    border: 1px solid #FFF;
    padding: 6px 12px;
    transition-duration: 0.3s;
    text-align: center;
    margin-right: 2.5px;
}

.btn-admin:last-child {
    margin-right: -7px;
}

.btn-admin:hover, .btn-admin:focus, .btn-admin:active {
    text-decoration: none;
    color: #17A2DC;
    background-color: #FFF;
}