/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Buttons */
.button {
    /*	height:45px;*/
    width: 100%;
    padding: 0 12px;
    margin: 10px 0;
    position: relative;
    display: inline-block;
    color: #f7f7f7;
    font-family: arial;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    text-indent: 0px;
    cursor: pointer;
    -webkit-border-top-left-radius: 2px;
    -moz-border-radius-topleft: 2px;
    border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topright: 2px;
    border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-bottom-left-radius: 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .button {
        width: 100%;
    }
}

/* Gray button */
.button {
    background-color: #838383 !important;
    border-top: 1px solid #727272;
    border-right: 1px solid #727272;
    border-bottom: 3px solid #727272;
    border-left: 1px solid #727272;
    text-shadow: 0px 1px 0px #777777
}

.button:hover {
    background-color: #8c8c8c
}

.button:active {
    border-bottom: 1px solid #727272
}

.button:disabled:active {
    border-bottom: 3px solid #727272
}

/* Green button */
.green {
    background-color: #22b86a !important;
    border-top: 1px solid #1ea15d;
    border-right: 1px solid #1ea15d;
    border-bottom: 3px solid #1ea15d;
    border-left: 1px solid #1ea15d;
    text-shadow: 0px 1px 0px #17a45b;
}

.green:hover {
    background-color: #2ec175
}

.green:active {
    border-bottom: 1px solid #1ea15d
}

.green:disabled:active {
    border-bottom: 3px solid #1ea15d
}


/* Blue button */
.blue {
    background-color: #17afe8 !important;
    border-top: 1px solid #1499cb;
    border-right: 1px solid #1499cb;
    border-bottom: 3px solid #1499cb;
    border-left: 1px solid #1499cb;
    text-shadow: 0px 1px 0px #16a7de
}

.blue:hover {
    background-color: #1eb8f1
}

.blue:active {
    border-bottom: 1px solid #1499cb
}

.blue:disabled:active {
    border-bottom: 3px solid #1499cb
}


/* Red button */
.red {
    background-color: #b82222 !important;
    border-top: 1px solid #971919;
    border-right: 1px solid #971919;
    border-bottom: 3px solid #971919;
    border-left: 1px solid #971919;
    text-shadow: 0px 1px 0px #ab1e1e
}

.red:hover {
    background-color: #c72828
}

.red:active {
    border-bottom: 1px solid #971919
}

.red:disabled:active {
    border-bottom: 3px solid #971919
}


/* Corrections */
.button:disabled {
    cursor: pointer
}

.button:disabled:active {
    top: 0 !important
}

.button:hover {
    color: #f7f7f7;
}

a.button,
span.button {
    line-height: 41px
}

button.button {
    line-height: 35px
}

input[type="submit"].button:active, button.button:active {
    top: 2px
}

a.button:active {
    top: 2px;
    margin-bottom: 10px
}

.button.small {
    height: 32px;
    margin: 7px 0;
    font-size: 15px;
    line-height: 30px
}

.button.small:active {
    margin: 7px 0 7px 0
}

.button:disabled {
    cursor: default
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Create new user */
a.create {
    height: 76px;
    width: 300px;
    line-height: 76px;
    padding: 0;
    text-indent: 53px;
    background-color: #5ba2d9;
    border: 1px solid #5090c2;
    border-bottom: 2px solid #5090c2;
    position: relative
}

a.create {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a.create:hover {
    background-color: #60a7de
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Support */
a.help {
    height: 30px;
    display: inline-block;
    clear: both;
    float: none;
    margin: 40px 0 0 0;
    color: #48515a;
    font-size: 18px;
    text-indent: 34px;
    line-height: 22px
}

a.help:hover {
    text-decoration: none;
    color: #000
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Back button */
a.goback {
    display: inline-block;
    float: none;
    margin: 60px 0 0 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    display: block;
    text-decoration: none
}

a.goback em {
    text-decoration: underline
}

a.goback:hover {
    color: #000 !important
}

a.goback:hover em {
    text-decoration: none
}

a.goback:active {
    position: relative;
    top: 1px
}