/* Minification failed. Returning unminified contents.
(399,13): run-time error CSS1036: Expected expression, found '$'
(400,30): run-time error CSS1036: Expected expression, found '$'
(401,23): run-time error CSS1036: Expected expression, found '$'
(402,38): run-time error CSS1062: Expected semicolon or closing curly-brace, found '$'
 */
.body-content {
    padding-top: 50px;
}
/* Pen Title */
.pen-title {
    padding: 20px 0;
    text-align: center;
    letter-spacing: 2px;
}

    .pen-title h1 {
        margin: 0 0 20px;
        font-size: 40px;
        font-weight: 300;
    }

    .pen-title span {
        font-size: 12px;
    }

        .pen-title span .fa {
        }

        .pen-title span a {
            color: #2fa4e7;
            font-weight: 600;
            text-decoration: none;
        }


/* Card */
.card {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    padding: 20px 20px 20px 20px !important;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: .3s ease;
    transition: .3s ease;
    margin-bottom: 100px;
}

    .card:first-child {
        background: #fafafa;
        height: 10px;
        border-radius: 5px 5px 0 0;
        padding: 0;
    }

    .card .title {
        position: relative;
        z-index: 1;
        border-left: 5px solid #2fa4e7;
        margin: 0 0 35px;
        padding: 10px 0 10px 50px;
        color: #2fa4e7;
        font-size: 32px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .card .input-container {
        position: relative;
        margin: 0 20px 30px;
    }

        .card .input-container input {
            outline: none;
            z-index: 1;
            position: relative;
            background: none;
            width: 100%;
            height: 54px;
            border: 0;
            color: #212121;
            font-size: 20px;
            font-weight: 400;
        }

            .card .input-container input:focus ~ label {
                color: #9d9d9d;
                -webkit-transform: translate(-12%, -50%) scale(0.75);
                transform: translate(-12%, -50%) scale(0.75);
            }

            .card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
                width: 50%;
            }

            .card .input-container input:valid ~ label {
                color: #9d9d9d;
                -webkit-transform: translate(-12%, -50%) scale(0.75);
                transform: translate(-12%, -50%) scale(0.75);
            }

        .card .input-container label {
            position: absolute;
            top: 0;
            left: 0;
            color: #757575;
            font-size: 24px;
            font-weight: 300;
            line-height: 60px;
            -webkit-transition: 0.2s ease;
            transition: 0.2s ease;
        }

        .card .input-container .bar {
            position: absolute;
            left: 0;
            bottom: 0;
            background: #757575;
            width: 100%;
            height: 1px;
        }

            .card .input-container .bar .error {
                position: absolute;
                left: 0;
                bottom: 0;
                background: #757575;
                width: 100%;
                height: 1px;
            }

            .card .input-container .bar:before, .card .input-container .bar:after {
                content: '';
                position: absolute;
                background: #2fa4e7;
                width: 0;
                height: 2px;
                -webkit-transition: .2s ease;
                transition: .2s ease;
            }

            .card .input-container .bar:before {
                left: 50%;
            }

            .card .input-container .bar:after {
                right: 50%;
            }

    .card .button-container {
        margin: 0 60px;
        text-align: center;
    }

.card .button-container button {
    outline: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    background: 0;
    width: 200px;
    border: 2px solid #e3e3e3;
    padding: 20px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.card .button-container button span {
position: relative;
z-index: 1;
color: #ddd;
-webkit-transition: .3s ease;
transition: .3s ease;
}

.card .button-container button:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
display: block;
background: #2fa4e7;
width: 30px;
height: 30px;
border-radius: 100%;
margin: -15px 0 0 -15px;
opacity: 0;
-webkit-transition: .3s ease;
transition: .3s ease;
}

.card .button-container button:hover, .card .button-container button:active, .card .button-container button:focus {
border-color: #2fa4e7;
}

.card .button-container button:hover span, .card .button-container button:active span, .card .button-container button:focus span {
    color: #2fa4e7;
}

.card .button-container button:active span, .card .button-container button:focus span {
    color: #ffffff;
}

.card .button-container button:active:before, .card .button-container button:focus:before {
    opacity: 1;
    -webkit-transform: scale(10);
    transform: scale(10);
}

active .card .footer {
    margin: 40px 0 0;
    color: #d3d3d3;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}

.card .footer a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

    .card .footer a:hover {
        color: #bababa;
    }

.card.alt {
    position: absolute;
    top: 40px;
    right: -70px;
    z-index: 10;
    width: 100px;
    height: 100px;
    background: none;
    border-radius: 100%;
    box-shadow: none;
    padding: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    /* Toggle */
    /* Title */
    /* Input */
    /* Button */
}

    .card.alt .toggle {
        position: relative;
        background: #2fa4e7;
        width: 100px;
        height: 100px;
        border-radius: 100%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        color: #ffffff;
        font-size: 42px;
        line-height: 100px;
        text-align: center;
        cursor: pointer;
    }

        .card.alt .toggle:before {
            content: '\f067';
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }

    .card.alt .title,
    .card.alt .input-container,
    .card.alt .button-container {
        left: 100px;
        opacity: 0;
        visibility: hidden;
    }

    .card.alt .title {
        position: relative;
        border-color: #ffffff;
        color: #ffffff;
    }

        .card.alt .title .close {
            cursor: pointer;
            position: absolute;
            top: 0;
            right: 60px;
            display: inline;
            color: #ffffff;
            font-size: 58px;
            font-weight: 400;
        }

            .card.alt .title .close:before {
                content: '\00d7';
            }

    .card.alt .input-container input {
        color: #ffffff;
    }

        .card.alt .input-container input:focus ~ label {
            color: #ffffff;
        }

        .card.alt .input-container input:focus ~ .bar:before, .card.alt .input-container input:focus ~ .bar:after {
            background: #ffffff;
        }

        .card.alt .input-container input:valid ~ label {
            color: #ffffff;
        }

    .card.alt .input-container label {
        color: rgba(255, 255, 255, 0.8);
    }

    .card.alt .input-container .bar {
        background: rgba(255, 255, 255, 0.8);
    }

    .card.alt .button-container button {
        width: 100%;
        background: #ffffff;
        border-color: #ffffff;
    }

        .card.alt .button-container button span {
            color: #2fa4e7;
        }

        .card.alt .button-container button:hover {
            background: rgba(255, 255, 255, 0.9);
        }


        .card.alt .button-container button:active:before, .card.alt .button-container button:focus:before {
            display: none;
        }


/* Keyframes */
@-webkit-keyframes buttonFadeInUp {
    0% {
        bottom: 30px;
        opacity: 0;
    }
}

@keyframes buttonFadeInUp {
    0% {
        bottom: 30px;
        opacity: 0;
    }
}

input:invalid, textarea:invalid, select:invalid {
    border: 0 !important;
    outline: 0 !important;
    border-bottom: 1px solid #FF3F00 !important;
}

.has-error {
    border: 0 !important;
    outline: 0 !important;
    border-bottom: 1px solid !important;
}

.center-block {
    display: table;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

input {
    border: solid 1px blue;
    box-shadow: none;
}

input:-moz-placeholder {
    box-shadow: none !important;
}

input:invalid {
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: solid #9d9d9d 1px;
}

input:-webkit-autofill {
    border: $border-style !important;
    -webkit-text-fill-color: $c-white !important;
    background-color: $c-blue !important;
    -webkit-box-shadow: 0 0 0px 10px $c-blue inset;
    transition: background-color 5000s ease-in-out 0s;
}
