/*

SmileyTransportInc.com CSS Styles

Copyright (c) Smiley Transport Inc.  All rights reserved.

 */

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

body {
    background: rgba(255, 255, 0, 0.85);
    color: #484848;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
    text-align: center;
}

h1,
p {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 5rem;
    font-weight: 100;
    line-height: 1;
}

button {
    background: none;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    min-width: 110px;
    padding: 15px 30px;
}

button:hover {
    background-color: rgba(255, 255, 0, 0.35);
}

.logo {
    font-size: 10rem;
}

.content-block {
    padding: 1rem;
    position: relative;
}

.message {
    font-size: 2rem;
    font-weight: 100;
    line-height: 1;
    margin: 3.5rem 0;
}

#copyright {
    margin: 3.75rem;
}

/* Form Styles
-------------------------------------------- */
input, textarea {
    font-size: 1rem;
    padding: 15px;
    width: 50%;
}

textarea {
    font-family: 'Open Sans', sans-serif;
}

label {
    display: none;
}

.notice {
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.button-submit {
    background-color: #333;
    color: #fff;
    margin-right: 20px;
}

.button-submit:hover {
    background-color: #333;
}

.button-reset:hover {
    background-color: transparent;
}

.email_5 {
    display: none;
}

#form-messages {
    margin: 0 auto;
    text-align: center;
    width: 60%;

}

.success {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #468847;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.error {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-align: center !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #b94a48;
    background-color: #f2dede;
    border: 1px solid rgba(185, 74, 72, 0.3);
    /*-webkit-border-radius: 4px;*/
    /*-moz-border-radius: 4px;*/
    border-radius: 4px;
}

.success-message, .error-message {
    text-align: left;
}

/* Modal Styles
-------------------------------------------- */
#contact-button {
    /*-vendor-animation-duration: 3s;*/
    /*-vendor-animation-delay: 50s;*/
    /*-vendor-animation-iteration-count: infinite;*/
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/*!* Modal Content/Box *!*/
/*.modal-content {*/
/*background-color: #fefefe;*/
/*margin: 15% auto; !* 15% from the top and centered *!*/
/*padding: 20px;*/
/*border: 1px solid #888;*/
/*width: 80%; !* Could be more or less, depending on screen size *!*/
/*}*/

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Header */
.modal-header {
    padding: 2px 16px;
    /*background-color: #EFFB1C;*/
    background-color: #333;
    color: #fff;
    text-shadow: none;
}

.modal-header h2, .modal-footer h3 {
    font-weight: 300;
}

/* Modal Body */
.modal-body {
    margin: 20px 0;
    padding: 2px 16px;
}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    /*background-color: #EFFB1C;*/
    background-color: #333;
    color: #fff;
    text-shadow: none;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

/* Animate Styles
-------------------------------------------- */
/*@charset "UTF-8";*/

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/* Media Queries Styles
-------------------------------------------- */
@media (max-width: 30em) {
    h1 {
        font-size: 3rem;
    }

    .logo {
        font-size: 10rem;
    }

    .modal-content {
        width: 95%;
    }

    #form-messages {
        width: 100%;
    }

    input, textarea {
        position: relative;
        width: 85%;
    }
}