﻿.StylizedFormSuperWrapper
{
    display:flex;
    flex-direction:row;
}



.StylizedFormSuperWrapper .StylizedFormWrapper
{
    width: 60%;
    margin-right: 50px;
}


@media (max-width: 700px)
{
    .StylizedFormSuperWrapper
    {
        display: block;
        flex-direction: inherit;
    }

    .StylizedFormSuperWrapper .StylizedFormWrapper
    {
        width: inherit;
        margin-right: inherit;
    }

    .StylizedFormSuperWrapper .StylizedFormSideContent
    {
        margin-bottom: 20px;
    }

}


.sfPageEditorWrp .StylizedFormSuperWrapper .StylizedFormWrapper,
.sfPageEditorWrp .StylizedFormSuperWrapper .StylizedFormSideContent
{
    width: 600px;
    min-height: 300px;
}


.sfPageEditorWrp .StylizedFormWrapper
{
    opacity:1;
}

.StylizedFormWrapper
{
    margin-bottom: 30px;
    opacity: 0;
}

.StylizedFormWrapper.show
{  
    opacity: 1;
}

.StylizedFormWrapper button
{
  
    background: transparent;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.9px;
    font-weight: 400;
    font-family: Montserrat-Medium;
    line-height: 1;
    min-width: 0;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
    -moz-transition: background-color 0.2s ease,border-color 0.2s ease;
    -o-transition: background-color 0.2s ease,border-color 0.2s ease;
    -webkit-transition: background-color 0.2s ease,border-color 0.2s ease;
    transition: background-color 0.2s ease,border-color 0.2s ease;
    border: solid 2px #C39428;
    color: #C39428;
    margin: 0;
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
}


.StylizedFormWrapper button:hover
{
    background: #C39428;
    color: #fff;
    border: solid 2px #c18f29;
    text-decoration: none;
}


.StylizedFormWrapper button[data-sf-role='captcha-audio-btn'],
.StylizedFormWrapper button[data-sf-role='captcha-audio-btn']:hover
{
    background: none;
    display: block;
    text-decoration: none;
    border: none;
    text-align: left;
    color: black;
    outline: none;
    font-size: 16px;
    font-family: Montserrat;
    padding: 0;
    margin: 0;
    font-weight: normal;
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.StylizedFormWrapper button[data-sf-role='captcha-audio-btn']:hover
{
    color: #C39428;
    text-decoration:underline;
}



@media (max-width: 700px)
{
    .StylizedFormWrapper button
    {
        margin-bottom: 20px;
    }
}


.StylizedFormWrapper .formCAPTCHAWrapper
{
    margin-bottom: 0px;
}




.StylizedFormWrapper .ghosted
{
    border: none;
    background-color: #f0f1f3;
    box-shadow: none;
    color: #989898;
    font-weight: bold;
    opacity: 1;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 7px;
    width: 100%;
}

.StylizedFormWrapper .ghosted::placeholder
{
    color: #989898;
    font-weight: bold;
    opacity: 1;
    font-size: 16px;
}


