﻿html
{
    /*
    overflow-x: auto;
    overflow-x: hidden;

    overflow-y: auto;
        */
}

h1
{
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    color: #0070b9;
}

iframe
{
    pointer-events: none;
}

body 
{
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;

    background: #f7f8fb;

    color: #5f5f5f;

    word-wrap:break-word;

}

#lblCaptchaRequired
{
    margin-bottom: 100px;
}

.userTextBoxes
{
    
    box-sizing:border-box;
    background-color:#f7f8fb;
    border:1px solid #9A9999;
    border-radius:3px;
    color:#5F5F5F;
    padding:1.2rem;
    width:100%;
    font-size: 1.1rem;
       
}

    .userTextBoxes:focus
    {
        border-color:#5F5F5F;
    }

select
{
    box-sizing:border-box;
    background-color:#f7f8fb;
    border:1px solid #9A9999;
    border-radius:3px;
    color:#5F5F5F;
    padding:1.2rem;
    width:100% !important;
    font-size: 1.1rem;
    
}

select:focus
{
    border-color:#5F5F5F;
}

#CaptchaCode
{
    margin-top: 20px;
    margin-bottom: 20px;
}


.checkbox input[type="checkbox"] 
{
    opacity: 0;
}

.checkbox label 
{
    position: relative;
    display: inline-block;
    
    /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
    padding-left: 36px;
}

.checkbox label::before,
.checkbox label::after 
{
    position: absolute;
    content: "";
    
    /*Needed for the line-height to take effect*/
    display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before
{
    height: 24px;
    width: 24px;
    
    border: 1px solid;
    left: 0px;
    
    /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
     *to vertically center it.
     */
    top: -5px;

    border-radius: 2px;
}



/*Checkmark of the fake checkbox*/
.checkbox label::after 
{
    height: 7px;
    width: 11px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    
    transform: rotate(-45deg);
    
    left: 6px;
    top: 2px;

    color: white;
    
}

/*Hide the checkmark by default*/
.checkbox input[type="checkbox"] + label::after 
{
    content: none;
}

/*Unhide on the checked state*/
.checkbox input[type="checkbox"]:checked + label::after 
{
    content: "";
    
}

.checkbox input[type="checkbox"]:checked + label::before
{
    background-color: #0070b9;
    -webkit-transition: background-color 250ms linear;
    -ms-transition: background-color 250ms linear;
    transition: background-color 250ms linear;
}

.checkbox
{
    position: relative;
    left: -15px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.validatorClass 
{
    color: red;
    margin-right: 10px;
    margin-left: 5px;
   
}

.requiredClass
{
    margin-left: 61%;

}

#lblStatusMessage
{
    font-size: 125%;
    font-weight: bold;
}


.overlay
        {
          position: fixed;
          z-index: 98;
          top: 0px;
          left: 0px;
          right: 0px;
          bottom: 0px;
            background-color: #aaa;
            filter: alpha(opacity=80);
            opacity: 0.8;
        }
        .overlayContent
        {
          z-index: 99;
          margin: 250px auto;
          width: 80px;
          height: 80px;
        }
        .overlayContent h2
        {
            font-size: 18px;
            font-weight: bold;
            color: #000;
        }
        .overlayContent img
        {
          width: 80px;
          height: 80px;
        }

.fieldLabels
{
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    color: #5f5f5f;
 
}


#captchaImg
{
    margin-top: 10px;
}

textarea
{
    box-sizing:border-box;
    background-color:#f7f8fb;
    border:1px solid #9A9999;
    border-radius:3px;
    color:#5F5F5F;
    padding:1.2rem;
    width:100%;
    margin-bottom:1.5rem;
    margin-top:0.75rem;
    font-size: 1.1rem;
    font-family:  Arial !important;
}

#noJSNotification
{
    border-left: 5px solid #990005;
    border-top: 1px solid #990005;
    border-right: 1px solid #990005;
    border-bottom: 1px solid #990005;
    padding: 5px;

    background-color: #ea7979;

}

#fakeFileUpload
{
    margin-bottom: 20px;
    cursor: pointer;
}

button
{
    color: #0070b9;
    background: none;
    border: 2px solid #0070b9;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
    margin-left: 0;
    border-radius: 3px;
    transition: color .5s,background-color .5s,border .5s;
    padding: 10px 20px;
}

    button:hover
    {
        background-color: #0070b9;
        color: #ffffff;
    }

input[type=button], input[type=submit]
{
    color: #0070b9;
    background: none;
    border: 2px solid #0070b9;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
    margin-left: 0;
    border-radius: 3px;
    transition: color .5s,background-color .5s,border .5s;
    padding: 10px 20px;
}

    input[type=button]:hover, input[type=submit]:hover
    {
        background-color: #0070b9;
        color: #ffffff;
    }

#fileUpload
{
    display: none;
}