﻿/*
    Common 
*/

.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li
{
    display: block;
    padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
    position: absolute;
    left: -999em;
}



/*
    Wizard
*/

.wizard > .steps {
    position: relative;
    display: block;
    width: 34%;
    margin: 0 auto;
    text-align: center;
    z-index: 999;
    background-color: #ffffff;
}

.wizard.vertical > .steps
{
    display: inline;
    float: left;
    width: 30%;
}

.wizard > .steps .number
{
    font-size: 1.429em;
}

.wizard > .steps > ul > li
{
    /*width: 25%;*/
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li
{
    float: left;
}

.wizard.vertical > .steps > ul > li
{
    float: none;
    width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    width: auto;
    margin: 0 0.5em 0.5em;
    padding: 1em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    cursor: default;
    display:block;
    height:45px;
    color: #0abe8c !important;
    background-color: #fff;
    outline:none;
    font-weight:bold;
    text-decoration:none;
    line-height:45px;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border-color: #777777;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: normal;
    padding-top: 8%;
    border: 1px dotted #777777;
}


.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    cursor: default;
    background: #0abe8c;
    color: #FFF !important;
    cursor: default;
    display:block;
    height:45px;
    outline:none;
    font-weight:bold;
    text-decoration:none;
    line-height:45px;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border-color: #777777;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: normal;
    padding-top: 8%;
    border: 1px dotted #777777;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    display:block;
    height:45px;
    color: #0abe8c !important;
    background-color: #fff;
    outline:none;
    font-weight:bold;
    text-decoration:none;
    line-height:45px;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border-color: #777777;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: normal;
    padding-top: 8%;
    border: 1px dotted #777777;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ff3111;
    color: #fff;
}

.wizard > .content
{
    background: #fff;
    border: dashed 2px #0abe8c;
    display: block;
    margin: 0.5em;
    min-height: 40em;
    overflow: hidden;
    position: relative;
    top: -47px;
    width: auto;
    z-index: 998;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 8%;
}

.wizard > .content > .body ul
{
    list-style: disc !important;
}

.wizard > .content > .body ul > li
{
    display: list-item;
}

.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input
{
    border: 1px solid #ccc;
}

.wizard > .content > .body input[type="checkbox"]
{
    display: inline-block;
}

.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content > .body label
{
    display: inline-block;
    margin-bottom: 0.5em;
}

.wizard > .content > .body label.error
{
    color: #8a1f11;
    display: inline-block;
    margin-left: 1.5em;
}

.wizard > .actions
{
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
    top: -120px;
    z-index: 1000;
    right: 25px;
}

.wizard.vertical > .actions
{
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

.wizard > .actions > ul
{
    display: inline-block;
    text-align: right;
}

.wizard > .actions > ul > li
{
    margin: 0 0.5em;
}

.wizard.vertical > .actions > ul > li
{
    margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    background: #0abe8c;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 20px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
    background: #eee;
    color: #aaa;
}




/*
    Tabcontrol
*/

.tabcontrol > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.tabcontrol > .steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.tabcontrol > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.tabcontrol > .content > .body ul
{
    list-style: disc !important;
}

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}

#avalie legend{
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

#avalie legend.medium{
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}

#avalie legend.small{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

#avalie label{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: normal;
    padding-left: 2%;
}

.clearfix {
    display: block;
    clear: both;
    overflow: hidden;
}

ul.nav.clearfix {
        overflow: inherit !important;
}

/*.wizard > .actions a:last-child, .wizard > .actions a:hover:last-child {display: none;}*/

form p.submit{
    background:none;
    border:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
}
form button {
    border:none;
    outline:none;
    display: block;
    cursor:pointer;
    margin: 0px auto;
    clear:both;

    background: #0abe8c;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 20px;
}
}
form button:hover {
    background: #06B181;
    color: #fff;
    /*background:#d8d8d8;
    color:#333;
    text-shadow:1px 1px 1px #fff;*/
}



@media (max-width: 1025px) {
    .wizard > .steps {
        width: 100%;
    }

    .wizard > .steps .number {
        font-size: 6em;
    }

    .wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active,
    .wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active,
    .wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
        width: 120px;
        height: 120px;
        border-radius: 100%;
        padding-top: 21%;
        border: 3px dotted #777777;
    }

    .wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
        margin: 0 1.5em 0.5em;
    }

    .wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
        font-size: 3em;
    }

    .wizard > .content > .body {
        width: 100%;
        padding: 8% 0;
    }


    #avalie legend {
        font-size: 3em;
    }

    #avalie legend.medium {
        font-size: 3em;
    }

    #avalie legend.small {
        font-size: 2.5em;
    }

    #avalie label {
        font-size: 1em;
        padding: 0 0px 0px 20px;
        margin-bottom: 0;
    }

    .wizard > .content > .body input {
        border: 1px solid #ccc;
        width: 35px;
        height: 40px;
    }
    .wizard > .content{
        min-height: 106em;
        border: dashed 0px #0abe8c;
    }

    #avalie .container  {
        width: 95%;
    }


    .col-xs-20 {
        width: 20% !important;
    }

    #wizard-p-3 p span {
        font-size: 0.9em !important;
    }

    #wizard-p-3 .format_visgeral {
        font-size: 3em !important;
        font-weight: bold !important;
        text-align: left !important;
        padding: .3em 0 !important;
    }

    #wizard-p-3 p {
        text-align: center;
        line-height: .6em !important;
    }
    
    #wizard-p-0 p,
    #wizard-p-1 p,
    #wizard-p-2 p,
    #wizard-p-4 p {
        line-height: 2.2em !important;
    }
}