/* color pallate */
    /* red #D9272E */


    /* generic classes */

    .white-link {
        color: white;
        font-weight: bold;
        text-decoration: underline;
    }

    .white-link:hover {
        color: #f2f2f2;
        text-decoration: underline;
    }

    /* generic form classes */

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input {
        float: none;
    }

    .checkbox-group {
        border: 1px solid white;
        padding: 10px;
    }

    .input-disclaimer {
        font-size: 12px;
        display: block;
        width: 100%;
        /* font-style: italic; */
        color: white;
        padding: 5px 0;
    }


    /* Send us your photos form styles */
    .suyp-form {
        padding-bottom:50px;
    }

    .suyp-form label {
        font-weight: bold;
        font-size: 14px;
        color: white;
    }

    .suyp-form input[type="text"],
    .suyp-form input[type="email"] {
        float: none;
        height: 60px;
        line-height: 60px;
    }

    /* textarea for comments */
    textarea[name=suyp-comments] {
        resize: none;
    }

    /* submit button */
    .suyp-form input[type=button], .suyp-form input[type=submit] {
        display: inline-block;
        color: #fff;
        background-color: #D9272E;
        line-height: 2.5rem;
        width: auto;
        border: none;
        outline: none;
        padding: 5px 50px;
        height: auto;
        text-transform: uppercase;
        margin: auto;
        text-align: center;
        font-weight: bold;
        font-size: 18px;
        font-family: "halifax-medium", Arial, sans-serif;

    }
    /*success/error message*/
    .suyp-messaging-container{
        min-height:50px;

    }
    #suyp-result {
        display:none;
        border:2px solid ;
        color:white;
        background-color:slategrey;
        padding:10px 50px; 
        margin:20px 0;
    }
    
    #suyp-result.warning{
        
        background-color:mistyrose;
        color: red;
    }

    .suyp-messaging-container p.warning{
        border:1px solid;
        color:red;
        background-color:mistyrose;
        font-size:16px;
        padding:5px;
    }
    .suyp-messaging-container p.success{
        color:white;
        font-size:16px;
        padding:5px;
    }

    /* fancy file upload classes */
    .file-upload-wrapper {
        position: relative;
        width: 100%;
        height: 60px;
    }

    .file-upload-wrapper:after {
        
        content: attr(data-text);
        display: none; /* Let's just hide this for now */
        font-size: 16px;
        position: absolute;
        top: 0;
        left: 0;
        background: #fff;
        padding: 10px 15px;
        
        width: calc(100% - 40px);
        pointer-events: none;
        z-index: 20;
        /* height: 40px; */
        height: auto;
        line-height: 40px;
        color: #6D6E70;
        /* border-radius: 5px 10px 10px 5px; */
        font-weight: 300;
    }

    .file-upload-wrapper:before {
        content: 'Choose File';
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        height: 60px;
        /* background: #4daf7c; */
        /* background-color: #74d1f0; */
        /* color: #017da2; */
        color: #0b4e64;
        background-color: #74d1f0;
        font-weight: 700;
        z-index: 25;
        font-size: 16px;
        line-height: 60px;
        padding: 0 15px;
        text-transform: uppercase;
        pointer-events: none;
        transition: all 300ms ease;
        /* border-radius: 0 5px 5px 0; */
    }

    .file-upload-wrapper:hover:before {
        /* background-color: #017da2;
        background-color: #D9272E;
        color: #fff; */

    }

    .file-upload-wrapper input {
        opacity: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99;
        /* height: 40px; */
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        cursor: pointer;
        width: 100%;
    }

    /* fancy-checkbox */
    .styled-checkbox {
        position: absolute;
        opacity: 0;
    }

    .styled-checkbox+label {
        position: relative;
        cursor: pointer;
        padding: 0;
    }

    .styled-checkbox+label:before {
        content: '';
        margin-right: 10px;
        display: inline-block;
        vertical-align: text-top;
        width: 20px;
        height: 20px;
        background: white;
    }

    .styled-checkbox:hover+label:before {
        background: #D9272E;
    }

    .styled-checkbox:focus+label:before {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    }

    .styled-checkbox:checked+label:before {
        background: #D9272E;
    }

    .styled-checkbox:disabled+label {
        color: #b8b8b8;
        cursor: auto;
    }

    .styled-checkbox:disabled+label:before {
        box-shadow: none;
        background: #ddd;
    }

    .styled-checkbox:checked+label:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }