/**
 * Default Look and Feel
 */

 :root {
    --blue: #33C9BD;
    --gray: #c2c4c7;
    --lightgray: #ebedf1;
    --aqua: #b1e5ff;
}

.alertify {
    background: var(--lightgray);
    border: 10px solid #333; /* browsers that don't support rgba */
    border: 0px solid rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.3);
    -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 */
}

.alertify-text {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
}

a.alertify-button {
    border-radius: 5px;
    color: #fff;
    text-align: center;
    padding: 6px 12px;    
    text-decoration: none;
	background-color: var(--blue);
}

.alertify-button:hover,
.alertify-button:focus {
    outline: none;    
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    background-image: linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}
.alertify-button:active {
    position: relative;
    top: 1px;
}

.alert-title {
    text-align: center;
}

.alertify-tittle {	
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	padding-top: 5px;
	background-color: var(--blue);
	border-radius: 8px 8px 0 0;
	height: 45px;
}

.alertify-icon {
	width: 40px;
	height: 40px;
}

/* .alertify-button-cancel {
    padding: 5px 19px;
    margin-top: 10px;
}
.alertify-button-ok {
    padding: 5px 19px;
    margin-top: 10px;
}

a.alertify-button-ok {
    margin-left: 0px;
}

a.alertify-button-cancel {
    margin-left: 10px;
} */

.alertify-log {
    background: #1f1f1f;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 4px;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.alertify-log-error {
    background: #fe1a00;
    background: rgba(254, 26, 0, 0.9);
}

.alertify-log-success {
    background: #5cb811;
    background: rgba(92, 184, 17, 0.9);
}

.alertify-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alertify-btn {
    margin: 15px;
}
.nomargin {
    margin: 0px;
}
