/* ========================== Alert, Confirm ============================ */
.sc-md-buttons button {
    border: none;
    padding: 0.6em 1.2em;
    background: #2781d1;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    margin: 3px 2px;
}

    .sc-md-buttons button:hover {
        background: #2781d1;
        text-decoration: underline;
    }

/*.container {
	background: #e74c3c;
	min-height: 100%;
}*/

.sc-md-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 550px;
    min-width: 450px;
    height: auto;
    z-index: 20000;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.sc-md-show {
    visibility: visible;
}

.sc-md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(62, 62, 62, 0.8);
}

.sc-md-show ~ .sc-md-overlay {
    opacity: 1;
    visibility: visible;
}

/* Content styles */
.sc-md-content {
    color: #fff;
    background: #242c32;
    position: relative;
    margin: 0 auto;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.80) !important;
    -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.80) !important;
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.80) !important;
}

    .sc-md-content h3 {
        margin: 0;
        padding: 0.4em;
        text-align: center;
        font-size: 26px;
        font-weight: 300;
        opacity: 0.8;
        background: rgba(0,0,0,0.1);
        font-family: Arial, Lato, Verdana;
        border-bottom: 1px solid #1b2127;
    }

    .sc-md-content > div {
        padding: 15px 40px 30px;
        margin: 0;
        font-weight: 300;
        font-size: 1.15em;
    }

        .sc-md-content > div p {
            margin: 0;
            padding: 10px 0;
            font-family: Arial, Lato sans-serif;
            text-align: left;
            line-height: 150%;
            font-size: 13px;
        }

        .sc-md-content > div ul {
            margin: 0;
            padding: 0 0 30px 20px;
        }

            .sc-md-content > div ul li {
                padding: 5px 0;
            }

    .sc-md-content button {
        display: inline;
        margin: 0 auto;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 11px;
        min-width: 130px;
        padding: 2px;
        font-weight: bold;
        height: 34px;
    }

.sc-md-buttons {
    text-align: center;
}

/* Individual modal styles with animations/transitions */

/* Effect 8: 3D flip horizontal */
.sc-md-effect-8.sc-md-modal {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}

.sc-md-effect-8 .sc-md-content {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-70deg);
    -moz-transform: rotateY(-70deg);
    -ms-transform: rotateY(-70deg);
    transform: rotateY(-70deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

.sc-md-show.sc-md-effect-8 .sc-md-content {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
}
/* ====================================================================== */
