﻿/*
*
* STYLES DECLARED FOR MAKING CSS TO WORK WITH MVC
*
*/

/*Trying to set css for span generated by validate unobtrusive*/
@import url('SupportStyle.css');
.field-validation-error span {
    box-shadow: none;
    /*color: red;
    font-size: 12px;
    font-style: italic;*/
    font-size: 12px;
    color: #555;
    width: auto;
    z-index: 2;
}

.field-validation-error {
    box-shadow: none;
    /*color: red;
    font-size: 12px;
    font-style: italic;*/
    font-size: 12px;
    color: #555;
    width: auto;
    z-index: 2;
}

.error {
    box-shadow: none;
    color: #FF0000;
    font-size: 13px;
    font-family: Verdana;
    font-weight: bold;
    padding-top: 5px;
    width: auto;
    z-index: 2;
    padding-bottom: 5px;
}

.leftCol {
    float: left;
    width: 25%;
    padding-left: 2px;
    padding-top: 8px;
}

.rightCol {
    float: right;
    padding-right: 1px;
    width: 74%;
}

.clear {
    clear: both;
}

.ques {
    background-color: #eaeaea;
    margin-bottom: 25px;
    padding: 10px;
}

.hide {
    display: none;
}

.show {
    display: inline;
}

#loader {
    display: none;
    font-size: 12px;
    font-family: 'Tahoma';
}

.margTop10 {
    margin-top: 10px;
}

.validation-summary-errors {
    -moz-border-radius: 4px;
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-color: #fcf8e3;
    background-color: #fdfbf1;
    background-color: #f2dede;
    background-color: #f6e9e9;
    background-image: -moz-linear-gradient(top, #fefefa, #fcf8e3);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefa), to(#fcf8e3));
    background-image: -webkit-linear-gradient(top, #fefefa, #fcf8e3);
    background-image: -moz-linear-gradient(top, #fefefa, #fcf8e3);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefa), to(#fcf8e3));
    background-image: -webkit-linear-gradient(top, #fefefa, #fcf8e3);
    background-image: -o-linear-gradient(top, #fefefa, #fcf8e3);
    background-image: linear-gradient(to bottom, #fefefa, #fcf8e3);
    background-image: -o-linear-gradient(top, #f9f0f0, #f2dede);
    background-image: linear-gradient(to bottom, #f9f0f0, #f2dede);
    background-repeat: repeat-x;
    border: 1px solid #fbeed5;
    border-color: #f9e7c3 #f9e7c3 #f7e0b0;
    border-color: #eed3d7;
    border-color: #eed3d7;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #c09853;
    color: #b94a48;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefa', endColorstr='#fffcf8e3', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f0f0', endColorstr='#fff2dede', GradientType=0);
    margin-bottom: 20px;
    padding: 8px 35px 8px 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.inline {
    display: inline-block;
}

/*.dropList
{
    width: 100%;
    height: 40px;
    border: 1px solid #555;
}

    .dropList:focus
    {
        outline: none;
    }*/

/*.field-wrapper > fieldset > span {
    background-color: #f7f7f7;
    padding: 10px;
    border: solid 2px #68b3ec;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}*/

/*-------------------------------------
 *
 * CHECKBOX STYLE 
 *------------------------------------*/
input[type="checkbox"] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

    input[type="checkbox"] + label.check-label {
        font-size: .9em;
        padding-left: 20px;
        margin-left: 0;
        height: 15px;
        display: inline-block;
        line-height: 15px;
        background-repeat: no-repeat;
        background-position: 0 -15px;
        vertical-align: middle;
        cursor: pointer;
        text-transform: none !important;
        width: 160px;
        -webkit-filter: contrast(10%) brightness(30%);
        filter: contrast(10%) brightness(30%);
    }

        input[type="checkbox"] + label.check-label.two-col {
            width: 49.4%;
        }

    input[type="checkbox"]:checked + label {
        background-position: 0px 0px;
    }

label.check-label {
    background-image: url('Images/checkbox.png');
    color: #555555;
    margin-bottom: 10px;
}

.checkbox-wrap.stack-checkbox > label.check-label {
    display: block !important;
    width: 100% !important;
}

@media (min-width : 569px) {
    label.check-label {
        margin-right: 0;
    }
}

/*    Password Strength
=================================== */

.strength_meter {
    position: absolute;
    left: 0;
    top: 25px;
    width: 100%;
    height: 40px;
    z-index: -1;
    /*padding-right: 13px;*/
}

.button_strength {
    text-decoration: none;
    color: #555555;
    font-size: 11px;
}

.strength_meter div {
    width: 0;
    height: 40px;
    text-align: right;
    color: #000;
    line-height: 40px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    /*padding-right: 12px;*/
}

    .strength_meter div p {
        position: absolute;
        top: 0;
        right: 40px;
        color: gray;
        opacity: .5;
        font-size: 12px;
    }

    .strength_meter div.medium p, .strength_meter div.strong p {
        color: green;
        opacity: 1;
    }

.veryweak {
    background-color: #FFA0A0;
    border-color: #F04040 !important;
    width: 25% !important;
}

.weak {
    background-color: #FFB78C;
    border-color: #FF853C !important;
    width: 50% !important;
}

.medium {
    background-color: #FFEC8B;
    border-color: #FC0 !important;
    width: 75% !important;
}

.strong {
    background-color: #C3FF88;
    border-color: #8DFF1C !important;
    width: 100% !important;
}

/*For making textbox transparent*/
.transparent {
    background: transparent !important;
}

/*Logo*/

.logo {
    float: left;
    padding-right: 10px;
}


/*-------------------------
	The Progress Button
--------------------------*/

.progress-button:focus {
    outline: none;
}
/*	Hide the original text of the button. Then the loading or finished
	text will be shown in the :after element above it. */

.progress-button.in-progress,
.progress-button.finished {
    color: transparent !important;
}

    .progress-button.in-progress:after,
    .progress-button.finished:after {
        position: absolute;
        z-index: 2;
        width: 100%;
        height: 100%;
        text-align: center;
        top: 15px;
        padding-top: inherit;
        color: #fff !important;
        left: 0;
    }

    /*	If the .in-progress class is set on the button, show the
	contents of the data-loading attribute on the button */

    .progress-button.in-progress:after {
        content: attr(data-loading);
    }

    /* The same goes for the .finished class */

    .progress-button.finished:after {
        content: attr(data-finished);
    }

/* The colorful bar that grows depending on the progress */

.progress-button .tz-bar {
    background-color: #5AA87D;
    height: 3px;
    bottom: 0;
    left: 0;
    width: 0;
    position: absolute;
    z-index: 1;
    border-radius: 0 0 2px 2px;
    -webkit-transition: width 0.5s, height 0.5s;
    -moz-transition: width 0.5s, height 0.5s;
    transition: width 0.5s, height 0.5s;
}

    /* The bar can be either horizontal, or vertical */

    .progress-button .tz-bar.background-horizontal {
        height: 100%;
        border-radius: 2px;
    }

    .progress-button .tz-bar.background-vertical {
        height: 0;
        top: 0;
        width: 100%;
        border-radius: 2px;
    }


/*-------------------------
 Class for obscuring text
--------------------------*/
.ans {
    font-size: .9em;
}
