.login-box{
    width: 300px;
    padding: 50px;

    box-shadow: 0 10px 35px rgba(0,0,0,0.19), 0 6px 50px rgba(0,0,0,0.23);
}

.form-login input[type=text],.form-login input[type=password]{
    border: 0;
    width: 100%;
    border-bottom: 1px solid #20002c;
}

.form-login input[type=text]:focus,.form-login input[type=password]:focus{
    border: 0;
    border-bottom: 1.5px solid #20002c;
}

.form-login input[type=submit]{
    width: 100%;
}

.error-message{
    color: red;
    font-weight: bold;
    text-align: center;
}

.content-box{
    width: 900px;
    padding: 10px 0;
}

.content-box.content-box-full-width{
    width: 100%;
    padding: 0 50px;
}

.button{
    display: inline-block;
    padding: 10px;
    margin: 10px 0;

    color: white;
    background: #20002c;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #20002c, #89539e); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #20002c, #89539e);
}

.button:hover{
    color: white;
    transform: none;
}

.button.button-submit{
    border: 0;
    padding: 10px 20px;
    font-size: 16px;
}

.button.button-disabled{
    background: dimgray;
}

tr.inactive{
    text-decoration: line-through;
}

.alert{
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    
    padding: 20px 0;
}

.alert.alert-success{
    background: #d9edf7;
    color: #31708f;
}

.alert.alert-error{
    background: #FF9494;
    color: white;
}

.alert.alert-info{
    color: #31708f;
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
}

.icon.icon-delete{
    color: red;
}

/*------NAVIGATION--------*/
a.logo{
    font-size: 30px;
}

a.dropdown-title{
    padding: 10px;
    border-left: 1px solid white;
}

.dropdown-container{
    overflow: hidden;
}

.dropdown-menu{
    display: none;
    position: absolute;

    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 0 5px;
}

.dropdown-menu a{
    color: #20002c;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
    transform: none;
    border-bottom: 1px solid #20002c;
    font-size: 14px;
}

.dropdown-menu a:last-of-type{
    border-bottom: none;
}

.dropdown-menu a:hover{
    text-decoration: underline;
    color: #20002c;
}

.dropdown-container:hover .dropdown-menu {
    display: block;
}
/*------------------------*/

.box-list > .item{
    display: inline-block;
    padding: 10px;
    box-shadow: 0 1px 5px 0 rgba(0,0,0,.3);
    border-radius: 4px;
}

.box-list > .item .icon{
    margin: 0 5px;
}

.smallfont{
    font-size: 0.9em;
}

.content-item{
    margin: 20px 0;
}

/*------------------------*/

.vich-image > a > img {
    display: block;
    margin: 0 auto;
    max-height: 300px;
}

.img-header{
    display: block;
    margin: 0 auto;
    max-height: 300px;
}