/**
 * Default Look and Feel
 */

.alertify,
.alertify-log {
    font-family: "TheGroup12-Regular";
}

.ltr .alertify,
.ltr .alertify-log {
    font-family: "TheGroup12-Regular";
}

.alertify {
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    -webkit-background-clip: padding;
    /* Safari 4? Chrome 6? */
    -moz-background-clip: padding;
    /* Firefox 3.6 */
    background-clip: padding-box;
    /* Firefox 4, Safari 5, Opera 10, IE 9 */
    z-index: 9999 !important;
}

.alertify-text {
    border: 1px solid #CCC;
    padding: 10px;
    border-radius: 4px;
}

.alertify-button {
    border-radius: 4px;
    color: #FFF;
    padding: 6px 25px;
    text-decoration: none;
    margin: 10px;
    font-family: inherit;
}

.alertify-button:hover,
.alertify-button:focus {
    outline: none;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
    background-image: linear-gradient(top, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
}

/* resetting left margins causes buttons to lose center alignment. Thus, we cancel it here
.alertify-button,
.alertify-button:hover,
.alertify-button:active,
.alertify-button:visited {
    margin-left: 0px !important;
}*/

.alertify-button:hover {
    box-shadow: 0 0 6px #8A8A8A;
}

.alertify-button:active {
    position: relative;
}

.alertify-button-cancel,
.alertify-button-cancel:hover,
.alertify-button-cancel:focus {
    background-color: #CD4646;
}

.alertify-button-ok,
.alertify-button-ok:hover,
.alertify-button-ok:focus {
    background-color: #41ba4e;
}

.alertify-log {
    background: #1F1F1F;
    background: #953047;
    padding: 15px;
    border-radius: 4px;
    font-weight: bold;
    color: #FFF;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, .5);
}

.alertify-log-error {
    background: #FE1A00;
    background: rgba(254, 26, 0, .9);
}

.alertify-log-success {
    background: #5CB811;
    background: rgba(92, 184, 17, .9);
}