/*
//
// Tip: to integrate this plugin seamlessly into your application, use these styles as a starting
// point to build your own stylish alerts and confirmations!
//
*/

/* Modal */
.alertable {
    position: fixed;
    z-index: 9999;
    top: 38vh;
    left: calc(50% - 150px);
    width: 300px;
    background: white;
    border-radius: 4px;
    padding: 20px;
    margin: 0 auto;
}

/* Overlay */
.alertable-overlay {
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
}

/* Message */
.alertable-message {
    margin-bottom: 20px;
}

/* Prompt */
.alertable-prompt {
    margin-bottom: 20px;
}

.alertable-input {
    width: 100%;
    border-radius: 4px;
    box-shadow: none;
    border: solid 1px #ccc;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: 6px 12px;
    display: block;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/* Button group */
.alertable-buttons {
    text-align: right;
}

/* OK button */
.alertable-ok {
    background: #1F3243; /* Fallback */
	background: -moz-linear-gradient(#1F3243, #355573);
	background: -ms-linear-gradient(#1F3243, #355573);
	background: -o-linear-gradient(#1F3243, #355573);
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#1F3243), to(#355573));
	background: -webkit-linear-gradient(#1F3243, #355573);
	background: #355573;
    border: 1px solid #355573;
    font-family: inherit;
    font-size: inherit;
    color: white;
    border-radius: 4px;
    padding: 6px 12px;
    margin-left: 4px;
    cursor: pointer;
    width: 100px;    
}

.alertable-ok:hover,
.alertable-ok:focus.
.alertable-ok:active {
    background-color: #08c;
}

/* Cancel button */
.alertable-cancel 
{
    background: -moz-linear-gradient(#1F3243, #355573);
	background: -ms-linear-gradient(#1F3243, #355573);
	background: -o-linear-gradient(#1F3243, #355573);
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#1F3243), to(#355573));
	background: -webkit-linear-gradient(#1F3243, #355573);
    border: solid 1px #ddd;
    background: #D9534F;
    font-family: inherit;
    font-size: inherit;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 6px 12px;
    margin-left: 4px;
    cursor: pointer;
}

