/*==================================
    Basic element setup
====================================*/
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: auto;
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

/*==================================
    Body content
====================================*/
.body-container {
    margin-top: 15%;
    text-align: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.alert-button {
    display: block;
    background-color: #3473c1;
    border-radius: 2px;
    margin: 0 auto 10px;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    width: 145px;
    height: 45px;
    border: none;
    cursor: pointer;
    outline: none;
}

.alert-button:hover {
    background-color: #3a5a8d;
}

.alert-button:active {
    background-color: #3473c1;
}

/*==================================
    Alert container
====================================*/
#lala-alert-container {
    position: absolute;
    display: table;
    height: auto;
    width: 300px;
    bottom: 0;
    right: 0;
}

#lala-alert-wrapper {
    display: table-cell;
    vertical-align: bottom;
    height: auto;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/*==================================
    Alerts
====================================*/

.lala-alert {
    position: relative;
    border-radius: 3px;
    padding: 15px 30px;
    margin-top: 15px;
    opacity: 1;
    border: 1px solid transparent;
    cursor: default;
    transition: all 0.5s ease-in-out;   /* Edit for fadeout time */
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */

}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d0e9c6;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bcdff1;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #ffe773;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebcccc;
}

.close-alert-x {
    position: absolute;
    float: right;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.fade-out {
    opacity: 0;
}
