﻿html, body {
    font-size: 16px;
    font-family: Arial;
    color: #707070;
    margin: 0;
    padding: 0;
    height: 100%;
}

form {
    margin: 0 !important;
}

@font-face {
    font-family: 'FS_Joey-Medium';
    src: url('../font/FSJoey/FS_Joey-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FS_Joey-Bold';
    src: url('../font/../../Media/font/poppins/FS_Joey-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FS_Joey-Light';
    src: url('../font/../../Media/font/poppins/FS-Joey-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


.contentData {
    /* height: 100%; */
    display: block;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

::-webkit-scrollbar, .custom-scroll-bar::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 0px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #fff;
}

.ui-datepicker-month {
    width: 60px !important;
    height: 20px !important;
}

.ui-datepicker-year {
    width: 60px !important;
    height: 20px !important;
}

.warningcontainer {
    background: #fef7cb;
    background: -webkit-gradient(linear,left top,left bottom,from(#fef7cb),to(#fef7cb));
    background: -moz-linear-gradient(top,#fef7cb,#fef7cb);
    background: -o-linear-gradient(top,#fef7cb,#fef7cb);
    border: solid 1px #ffe475 !important;
    color: #333;
    margin-top: 20px;
    padding: 0 10px;
    text-align: left;
    font-weight: normal;
    font-size: 13px;
}

select {
    height: 56px !important;
    width: 100% !important;
    border-radius: 0;
    background: #f5f5f5;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    padding-left: 5px;
}

.survey {
    padding-top: 50px;
    margin: 0 auto;
    width: 700px;
}

.list {
    margin: .5rem;
}

.list__item {
    margin: 0 0 .5rem 0;
    padding: 0;
}

.label--checkbox {
    position: relative;
    margin: .5rem .5rem .5rem 0;
    font-family: Arial,sans-serif;
    line-height: 135%;
    cursor: pointer;
}

.checkbox {
    position: relative;
    top: -.05rem;
    margin: 0 1rem 0 0;
    cursor: pointer;
}

    .checkbox:before {
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        content: "";
        position: absolute;
        left: 0;
        z-index: 1;
        width: 14px;
        height: 14px;
        border: 2px solid #6d6d6d;
    }

    .checkbox:checked:before {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        height: .5rem;
        border-color: #007ed2;
        border-top-style: none;
        border-right-style: none;
    }

    .checkbox:after {
        content: "";
        position: absolute;
        top: -.125rem;
        left: 0;
        width: 1.1rem;
        height: 1.1rem;
        background: #fff;
        cursor: pointer;
    }

.button--round {
    -webkit-transition: .3s background ease-in-out;
    -moz-transition: .3s background ease-in-out;
    transition: .3s background ease-in-out;
    width: 2rem;
    height: 2rem;
    background: #5677fc;
    border-radius: 50%;
    box-shadow: 0 .125rem .3125rem 0 rgba(0,0,0,.25);
    color: #fff;
    text-decoration: none;
    text-align: center;
}

    .button--round i {
        font-size: 1rem;
        line-height: 220%;
        vertical-align: middle;
    }

    .button--round:hover {
        background: #3b50ce;
    }

.button--sticky {
    position: fixed;
    right: 2rem;
    top: 16rem;
}

.content {
    -webkit-animation-duration: .4s;
    -webkit-animation-duration: .4s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: slideUp;
    -webkit-animation-name: slideUp;
    -webkit-animation-timing-function: cubic-bezier(.4,0,.2,1);
    -webkit-animation-timing-function: cubic-bezier(.4,0,.2,1);
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(6.25rem);
        transform: translateY(6.25rem);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(6.25rem);
        transform: translateY(6.25rem);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.button--sticky {
    position: fixed;
    right: 2rem;
    top: 16rem;
}

slide-up {
    -webkit-animation-duration: $slideDuration;
    animation-duration: $slideDuration;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
    -webkit-animation-timing-function: cubic-bezier(.4,0,.2,1);
    animation-timing-function: cubic-bezier(.4,0,.2,1);
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(rem($slideDistance));
        transform: translateY(rem($slideDistance));
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        -webkit-transform: translateY(rem($slideDistance));
        transform: translateY(rem($slideDistance));
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.profile-img {
    display: none;
    width: 96px;
    height: 96px;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAWLSURBVHic7ZxdU6s6FIbfEEjkowVbW0f////yVqv9roUWSM6FE+x273OcbUNXPOaZcXrhTFZmPSSEsAJ7eHjQ8JARUHfgp+MFEOMFEOMFEOMFEOMFEOMFEOMFEOMFEOMFEOMFEOMFEOMFEOMFEOMFEBNSd+Bv0Prt1YVS6rf/Mca6v+/EtxCglILWGkEQIIoiRFEEznmX7LZt0bYt6rpG0zTQWoMxhiBwf4A7LaBtW3DOkSQJkiRBHMcIw/Bfr3KlFOq6RlmWeH19RVVVzotgLr6SVEqBMYYsy5DnOYQQX2pnv99jtVqhLEsEQeDk9OTcCGiaBkmSYDQa4erq6qy2zMjZbDZYLBZQSjk3GpwRoLWGUgp5nmMymVhtezgcIo5jzGYzVFUFzrnV9s/BicvBJH88HltPviGKItzf3yNNU7Rt20uMr+CEAJP8oih6jcMYw+3tLeI4dkYCuYC2bTEcDntPvsFIiKLoj88Tl4ZUgFIKQgjc3NxcNC7nHNPptHuwo4RUgNYa4/GYZHl4dXWFPM/JpyIyAW3bIk1TJElC1QUURQHOOelIIBPAGEOe51ThAQBhGGIwGJDeC0gEaK0hpUQcxxThfyHLMtKHM5LISiknkg8AUkoIIcimITL1524z2ERK+XMEaK3BOf/yBlsf/CgBwNs63KX9mP/a4u4bkhHg2tYwZX9IRoBLyQfe+0MxDZEtQ13C9IfiwiBbhrokgbI/FxfAGINSinwP5hTzIp8CEgGmgsEVKPtCdg84HA4Uof+IqZ6ggGwVtN/vKUL/Rl3XOBwOZPtBJFGDIEBVVU6Mgu12+/N2Q4G3aWiz2VCF7/qw2+1In0vIBHDOsd1uSUfBer1GXdc/bzv6lPl8ThK3rmssl0vyQi3S6EEQoCxLLJfLi8d+fn7uSiApIR8BQRBguVxit9tdLObz8zPKsnRiR5ZcgKnpn81meH197T3efD7Her12IvmAAwKAdwlPT09Yr9e9xNBaYzabYblcIgydKYl1pzjXzMUvLy84HA4YjUbWElVVVdeuS8kHHBIAvEkwy9OyLHF9fX1W1UJd11iv193zhivTzilOHtAA3iumoyhClmVI0xRCiE9XLUopVFWF3W6H/X6Ptm2dewN3irMCDFrr7qhSFEUQQnRnxMzIMEeT6rrG8XjsdjddTrzBqSnoTzDGunnbJPjj3v1pks009l1wXsAp3/EY6mc4sQz9yXgBxDg9BZm5/uPvZ5hp6uOvizglwFQnmJPuZqUThiGCIOhOx5vVzWk9j1m2mt+2baGUQtM0v1Q9uPZJA1IBJlnA25JRCAEhBKSUiKIIYRh2yf9q+03ToGma7tWjWaYaKdQn6UkEmJKUKIq6UzIm+TZhjHXfljgthzfPDPv9HlVVdUtbiueGiwkwV3sQBEjTFFmWIY5jkjW7kZIkCbTW3ZNzWZao6/qio6J3ASbxnHMURYHBYOBUaTpjDHEcd2eHd7sdNpsNjsfjRUZErwLMPkye5yiKwrmdyI9wzpHnOYbDIbbbLVarFY7HY6/97qVlc9XHcYzxeAwpZR9heoMxhuFwiDRNsVgssNlsehsN1gWY5BdFgfF4bLv5i8I5x2QyQZIk3Ttk2/cGqwLMenw6nWIwGNhsmpQ0TRGGIR4fH7tp1RbWWjJX/v8t+QYpJe7u7sAYs1pJbU2AUgqj0QhZltlq0jmEEJhOp1ZLGa0IMDfc6+trG805TZqmGAwG1s43WBGgtSb/7MAlyfPc2orobAFaawghSD+6cWmklJBSWpmKzhaglIKU0pndxUth63C3lSnoO72DtYUzU5DnPLwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYrwAYv4BSwVytKt1rX4AAAAASUVORK5CYII=);
}

.ui-input-240 {
    width: 363px !important;
}

scroll-bar::-webkit-scrollbar:hover {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border: 1px solid #dedfde;
}

html > body scroll-bar::-webkit-scrollbar:hover {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border: 1px solid #dedfde;
}

.labelName {
    font-size: 14px;
    color: #333;
}

.changeUser {
    padding-left: 15px;
    padding-right: 2px;
}

.dd-options li {
    margin: 0;
}

.dd-options {
    display: none;
    position: absolute;
    z-index: 10000;
    -webkit-box-shadow: 0 1px 5px #ddd;
    -moz-box-shadow: 0 1px 5px #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    -webkit-transition: opacity .218s;
    -moz-transition: opacity .218s;
    -o-transition: opacity .218s;
    transition: opacity .218s;
    background: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.2);
    cursor: default;
    font-size: 13px;
    margin: 0;
    outline: none;
    padding: 6px 0;
    top: 1px;
}

.dd-option {
    padding: 5px !important;
    display: block;
    border-bottom: solid 0 #ddd !important;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

    .dd-option label {
        font-size: 12px !important;
        font-weight: normal !important;
        font-family: Arial,Helvetica,sans-serif !important;
    }

.dd-select {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-image: initial;
    -o-border-image: initial;
    -webkit-border-image: initial;
    border-image: initial;
    border-radius: 2px;
    background-color: #f5f5f5 !important;
    background-image: -webkit-gradient(linear,left top,left bottom,from(whiteSmoke),to(#f1f1f1)) !important;
    background-image: -webkit-linear-gradient(top,whiteSmoke,#f1f1f1) !important;
    background-image: -moz-linear-gradient(top,whiteSmoke,#f1f1f1) !important;
    background-image: -ms-linear-gradient(top,whiteSmoke,#f1f1f1) !important;
    background-image: -o-linear-gradient(top,whiteSmoke,#f1f1f1) !important;
    background-image: linear-gradient(top,whiteSmoke,#f1f1f1) !important;
    border: 1px solid #dcdcdc !important;
}

    .dd-select:hover {
        background-color: #f8f8f8 !important;
        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1) !important;
        -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1) !important;
        box-shadow: 0 1px 1px rgba(0,0,0,.1) !important;
        border-color: #c6c6c6 !important;
        color: #fff !important;
        border-bottom: 1px solid #c6c6c6 !important;
    }

#cacheUser {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 15px;
}

.alogout {
    color: #15c !important;
    text-decoration: none;
}

.profile-img {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.sign-in {
    /* width: 400px; */
    margin: 0 auto;
    /* background: #fff !important; */
    padding: 10px;
    /* margin-bottom: 20px; */
    border-radius: 10px;
    border: 1px solid #dadce0;
}

.sign-in-description {
    display: none;
}

.dd-selected {
    overflow: hidden;
    display: block;
    padding: 14px !important;
    font-weight: bold;
    color: #444 !important;
    font-size: 14px;
}

    .dd-selected label {
        padding: 0 !important;
    }

::-webkit-scrollbar-thumb {
    background-color: #cecfce;
    border: 1px solid #b5b6b5;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #949694;
        border: 1px solid #636163;
    }

::-webkit-scrollbar-button {
    height: 0;
    width: 0;
    display: block;
    background-color: transparent;
}

#recaptcha_image {
    padding: 5px;
    height: 57px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

#recaptcha_widget {
    width: 310px;
    background: #fff;
    border: 1px solid #e5e5e5;
    -moz-border-image: initial;
    -o-border-image: initial;
    -webkit-border-image: initial;
    border-image: initial;
}

.recaptcha-main {
    position: relative;
    padding: 13px;
}

    .recaptcha-main input[type="text"] {
        width: 200px;
    }

.recaptcha-buttons {
    position: absolute;
    bottom: 20px;
    right: 11px;
}

.recaptcha-main label strong {
    color: #222;
    display: block;
    margin: 0 0 .4em;
}

#recaptcha_reload_btn {
    background: url(../../media/png/recaptcha-sprite.png) -63px;
}

#recaptcha_switch_audio_btn {
    background: url(../../media/png/recaptcha-sprite.png) -42px;
}

#recaptcha_switch_img_btn {
    background: url(../../media/png/recaptcha-sprite.png) -21px;
}

#recaptcha_whatsthis_btn {
    background: url(../../media/png/recaptcha-sprite.png);
}

.recaptcha-buttons a:hover {
    -moz-opacity: .8;
    opacity: .8;
}

.recaptcha-buttons a {
    display: inline-block;
    height: 21px;
    width: 21px;
    margin-left: 2px;
    background: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    line-height: 0;
    -moz-opacity: .55;
    opacity: .55;
}

.link {
    color: #36c !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

    .link:hover, link:active {
        text-decoration: underline !important;
    }

h2 {
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 0;
    color: #333;
}

h3 {
    font-size: 16px;
    font-weight: normal;
    margin: .4em 0 0;
    color: #333;
}

#maincontainer {
    width: 960px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
}

#ctl00_ContentRight_lblSignup {
    font-size: 12px !important;
}

#linkstop {
    background: #234;
    color: #fff;
    margin-top: -10px;
    padding: 2px;
}

    #linkstop a {
        color: #fff;
    }

.input-prepend {
    display: inline-block;
    margin-bottom: 0;
    font-size: 0;
    white-space: nowrap;
    vertical-align: middle;
}

[class^="icon-"], [class*=" icon-"] {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-top: 1px;
    line-height: 14px;
    vertical-align: text-top;
    background-image: url("../png/glyphicons.png");
    background-position: 14px 14px;
    background-repeat: no-repeat;
    opacity: .5;
}

.icon-user {
    background-position: -168px 0;
}

.icon-pass {
    background-position: -288px -22px;
}

.input-prepend .add-on, .input-prepend .btn {
    margin-right: -1px;
    vertical-align: top;
}

.input-append .add-on, .input-prepend .add-on {
    display: inline-block;
    width: auto;
    height: 22px;
    min-width: 22px;
    padding: 4px 5px;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
}

.steps-1 {
    left: 0 !important;
}

.steps-2 {
    left: 45% !important;
}

.steps-3 {
    left: 92% !important;
}

.stepsa-2 {
    left: 95% !important;
}

.steps h1 {
    color: #333333 !important;
    font-family: FS_Joey-Medium;
    font-size: 28px;
    font-weight: normal;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 10px 40px;
    text-align: center;
}

.graytext {
    color: #333333;
}

ol {
    position: relative !important;
    height: 13px !important;
    border-bottom: 1px solid #ebebeb !important;
}

#page-content {
    padding-left: 5px;
}

h2.answer-title {
    color: #222;
    display: inline;
    float: left;
    font: 20px/24px Arial;
    margin: 0;
    padding: 0 .5em 0 0;
}

.streamlined-header-1 .article_content {
    margin-top: 10px;
}

.clear {
    clear: both;
}

#score {
    color: #000;
    font-size: 85%;
    position: absolute;
    text-align: center;
    width: 300px;
    z-index: 10;
}

#score, #rating, #standards {
    font-weight: bold;
}

div.exceed {
    background-image: url(/media/png/img_status_exceed.png);
}

div.fail {
    background-image: url(/media/png/img_status_fail.png);
}

div.pass {
    background-image: url(/media/png/img_status_pass.png);
    color: #fff !important;
}

div.warn {
    background-image: url(/media/png/img_status_warn.png);
}

#scorebar {
    background-image: url(/media/jpg/bg_strength_gradient.jpg);
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    width: 300px;
    z-index: 0;
}

.sura-header-bar li {
}

.item-logo {
    padding-top: 15px;
    padding-bottom: 15px;
}

.item-aditional {
    display: none;
}

#scorebarBorder {
    height: 16px;
    margin-bottom: 2px;
    width: 300px;
}

#password {
    border: 1px #000 solid;
    font-size: 85%;
    width: 300px;
}

#tablePwdScoring {
    margin-bottom: 0 !important;
}

#listLegend li {
    list-style: none;
    padding-bottom: 4px;
    margin-left: 0;
    padding-left: 0;
}

#listLegend {
    margin-left: 0;
    padding-left: 0;
}

div.fail, div.pass, div.exceed, div.warn {
    background-repeat: no-repeat;
    background-position: left top;
    height: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 16px;
}

td.exceed, td.fail, td.pass, td.warn {
    color: #fff;
    font-weight: bold;
    text-align: center;
}

td.exceed {
    background: #1c60a4;
}

td.fail {
    background: #c00;
}

td.pass {
    background: #093;
}

td.warn {
    background: #f60;
}

div.box {
    background: #456;
    border: 1px #000 solid;
    color: #fff;
    height: 16px;
    padding: 2px;
    white-space: nowrap;
    width: 38px;
}

div.boxMinus, div.boxPlus {
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 2px;
    text-align: left;
    white-space: nowrap;
}

td.footnote {
    background: #ddd;
    font-size: 70%;
}

.bold {
    font-weight: bold;
}

.clearNone {
    clear: none;
}

.floatRight {
    float: right;
}

.floatLeft {
    float: left;
}

.hide {
    display: none !important;
}

.imgLegend {
    clear: left !important;
    float: left !important;
    position: relative !important;
    margin-bottom: -3px !important;
    margin-right: 5px !important;
}

.inline {
    display: inline;
}

.italic {
    font-style: italic;
}

.noPad {
    padding: 0;
}

.show {
    display: inline !important;
}

.txtLg {
    font-size: 125%;
}

.txtSmall {
    font-size: 75%;
}

.txtCenter {
    text-align: center;
}

.txtRight {
    text-align: right;
}

div.xtend {
    clear: both !important;
    line-height: 0;
    height: 0;
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

#descriptionContainer {
    float: left;
    width: 380px;
    text-align: left;
    padding: 0 30px 20px 30px;
    margin: 0 0 0;
    vertical-align: top;
}

#formContainer {
    float: right;
    width: 380px;
    text-align: left;
    background: #fff;
    padding: 0 30px 20px 30px;
    margin: 0 0 0;
    height: 100%;
    overflow: hidden;
}

table.tablecontainer {
    width: 100%;
    border-spacing: 0;
}

table.description {
    width: 100%;
    border-spacing: 0;
}

td.tablecontainer {
    padding: 0;
}

td {
    padding: 6px;
}

    td.cell {
        vertical-align: top;
    }

div.title {
    margin-bottom: 0;
    margin-left: -2px;
    position: relative;
    zoom: 1;
    margin-top: 100px;
    padding-left: 38px;
}

form#loginForm input {
    font-size: 14px
}

div.fieldRow {
    color: #3a3a3a;
    clear: both;
    text-align: left;
}


    div.fieldRow ol, ul {
        border: 0 !important;
        list-style: decimal;
        line-height: 17px;
        margin: 0 0 1em 0;
        padding-left: 15px;
    }

    div.fieldRow label {
        display: block;
        text-align: left;
        margin-right: 20px;
        margin-left: 10px;
        font-weight: 400;
        padding: 4px 0;
        font-size: 16px;
        z-index: 16010;
    }

    div.fieldRow.noMargin {
        margin: 0;
    }

div.leftRow {
    float: left;
    width: 320px;
}

div.fieldActions label {
}

div.fieldActions input {
}

div.fieldButton {
    margin: 0px 0 0px 0;
    color: #3a3a3a;
    clear: both;
    min-height: 26px;
    text-align: left;
}

.message-error {
    padding: 5px 0 5px 0;
    width: 100%;
}

p.formNotice {
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 26px;
    color: #b2b0b8;
    clear: left;
}

#dialogChangePassword {
    padding: 30px;
}

#dialogError {
    padding: 20px 30px 10px 30px;
    border-top: 1px solid #f1f1f1;
}

.focusField {
    margin: 0 10px 5px 0;
    padding: 4px 4px 4px 4px;
    font-size: 14px;
    font-family: Arial,sans-serif,Verdana;
}

.idleField {
    margin: 0 10px 5px 0;
    padding: 4px 4px 4px 4px;
    font-size: 14px;
    font-family: Arial,sans-serif,Verdana;
}

.linko:hover {
    text-decoration: underline;
    font-size: 15px;
    font-family: FS_Joey-Bold;
}

.linko {
    color: #15c !important;
    text-decoration: none;
    font-size: 15px;
    font-family: FS_Joey-Bold;
}

.fieldActions {
    text-align: center;
    padding: 0px 0px 10px 0px;
}

.noResults_block_center {
    width: 1px;
    margin: 10px 25px;
    background: #cbcbcb;
    float: left;
    height: 55px;
}

.left {
    margin-top: 15px;
}

.right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    order: 2;
}

.cust_checkbox_on {
    background: url(../../media/gif/checked.gif) no-repeat 0 0;
    width: 24px;
    height: 23px;
}

.cust_checkbox_off {
    background: url(../../media/gif/unchecked.gif) no-repeat 0 0;
}

.cust_checkbox {
    font-size: 14px;
    cursor: pointer;
}

.error {
    color: #f53e3f;
}

img {
    border: 0;
}

.logo {
    border: 0;
}

.errcontainer {
    color: red;
    margin-top: 20px;
    padding: 0 4px;
    text-align: center;
    font-size: 13px;
}

.shadowList > li {
    position: relative;
    margin-bottom: 0;
}

.shadowList {
    list-style: outside;
    position: relative;
    margin-bottom: 0;
}

.errorcontainer {
    border-left: 1px solid #b0281a !important;
    border-right: 1px solid #b0281a !important;
    border-top: 1px solid #b0281a !important;
    background-position: 0% 0%;
    border-bottom: 1px solid #af301f !important;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2);
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
    color: #fff;
    margin-top: 20px;
    padding: 4px 6px;
    text-align: center;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));
    background-color: #dd4b39;
    background-repeat: repeat;
    background-attachment: scroll;
}

.warningcontainer {
    background: #fef7cb;
    background: -webkit-gradient(linear,left top,left bottom,from(#fef7cb),to(#fef7cb));
    background: -moz-linear-gradient(top,#fef7cb,#fef7cb);
    background: -o-linear-gradient(top,#fef7cb,#fef7cb);
    border: solid 1px #ffe475 !important;
    color: #333;
    margin-top: 20px;
    padding: 6px 10px;
    text-align: left;
    font-weight: normal;
    font-size: 13px;
}

.submitSpinner {
    height: 20px;
    display: inline-block;
    margin-bottom: -6px;
    margin-left: 0;
    text-align: center;
    right: -40px;
    top: 8px;
    margin: 0 auto;
    width: 100%;
}

.submitSpinnerLeft {
    padding-left: 20px;
    padding-top: 10px;
    float: left;
}

.submitSpinnerLoading {
    height: 20px;
    width: 20px;
    display: inline-block;
    background: url(../../media/gif/loader.gif) no-repeat left top;
    margin-top: 1px;
}

.hidden {
    display: none !important;
}

.clearfix::after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: '.';
    clear: both;
    height: 0;
}

.footer ul {
    color: #999;
    float: left;
    max-width: 80%;
    padding-left: 0;
}

ol, ul {
    list-style: none;
    line-height: 17px;
    margin: 0 0 1em;
    height: -11px;
}

.footer ul li {
    display: inline;
    padding: 0 1.5em 0 0;
}

li {
    margin: 0 0 .5em;
}

.sign-in-title {
    margin: 0 auto;
    /* width: 350px; */
    text-align: center;
    padding: 10px 0px 0px 0px !important;
    font-size: 20px;
    font-family: FS_Joey-Medium
}

.sign-in-app {
    margin: 0 auto;
    /* width: 350px; */
    text-align: center;
    padding: 20px 0;
    font-size: 20px;
}

a {
    color: #15c;
    text-decoration: none;
}

.sura-footer-bar {
    position: fixed;
    bottom: 0;
    height: 35px;
    width: 100%;
    border-top: 1px solid #d7d7d7;
    overflow: visible;
    background: #fff;
    font-family: FS_Joey-Medium;
    font-size: 14px !important;
}

.sura-header-bar {
    height: 60px;
    background: #fff;
    border-top: 8px solid #e5e5e5;
    overflow: hidden;
}

.sura-footer-bar ul li a {
    color: #0033A0;
}

.contenttop {
    margin: 0 auto;
    width: 100%;
    padding: 10px 44px;
    max-width: 1000px;
    min-width: 600px;
    text-align: left;
}

.product-info {
    margin: 50px 385px 0 0;
    padding-right: 25px;
}

/* .sign-in {
    width: 410px; 
    margin: 0 auto;
} */

#link-signup {
    font-size: 11px;
}

.content {
    margin: 0 auto;
    width: 487px;
    max-width: 1000px;
}

form {
    height: 100%;
}

#main {
}

.footer {
    padding-top: 9px;
    white-space: nowrap;
    line-height: 0;
    width: auto;
    margin: 0 auto;
    text-align: left;
}


textarea, input[type=email], input[type=password], input[type=text], input[type=url] {
    font-size: 18px;
    display: inline-block;
    height: 56px !important;
    margin: 0;
    padding-left: 8px;
    border: 1px solid #d9d9d9;
    border-top: 1px solid silver;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    line-height: 20px;
    background: white !important;
    width: 100% !important;
}

    textarea:hover, input[type=email]:hover, input[type=password]:hover, input[type=text]:hover, input[type=url]:hover {
        font-size: 18px;
        border: 1px solid #d9d9d9;
    }

    textarea:focus, input[type=email]:focus, input[type=password]:focus, input[type=text]:focus, input[type=url]:focus {
        font-size: 18px;
        outline: none;
        border: 1px solid #4d90fe;
    }

    input[type=email][disabled=disabled], input[type=password][disabled=disabled], input[type=text][disabled=disabled], input[type=url][disabled=disabled] {
        border: 1px solid #e5e5e5;
        background: #f5f5f5;
    }

        input[type=email][disabled=disabled]:hover, input[type=password][disabled=disabled]:hover, input[type=text][disabled=disabled]:hover, input[type=url][disabled=disabled]:hover {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.footer .lang-chooser-wrap {
    float: right;
    max-width: 20%;
    margin: -5px;
}

    .footer .lang-chooser-wrap img {
        vertical-align: middle;
    }

.header .signup-button {
    margin: -40px 86px 0;
    float: right;
    color: #333;
}

    .header .signup-button a {
        position: relative;
        top: -1px;
        margin: 0 0 0 1em;
    }

.g-button {
    display: inline-block;
    min-width: 54px;
    text-align: center;
    color: #555;
    font-size: 11px;
    font-weight: bold;
    height: 27px;
    padding: 0 8px;
    line-height: 27px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all .218s;
    -moz-transition: all .218s;
    -o-transition: all .218s;
    transition: all .218s;
    border: 1px solid #dcdcdc;
    border: 1px solid rgba(0,0,0,.1);
    background-color: #f5f5f5;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));
    background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: -moz-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: -ms-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: -o-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: linear-gradient(top,#f5f5f5,#f1f1f1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

* + html .g-button {
    min-width: 70px;
}

button.g-button, input[type=submit].g-button {
    height: 29px;
    line-height: 29px;
    vertical-align: bottom;
    margin: 0;
}

* + html button.g-button, * + html input[type=submit].g-button {
    overflow: visible
}

.g-button:hover {
    border: 1px solid #c6c6c6;
    color: #333;
    text-decoration: none;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    background-color: #f8f8f8;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));
    background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: -moz-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: -ms-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: -o-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: linear-gradient(top,#f8f8f8,#f1f1f1);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
}

.g-button:active {
    background-color: #f6f6f6;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f6f6f6),to(#f1f1f1));
    background-image: -webkit-linear-gradient(top,#f6f6f6,#f1f1f1);
    background-image: -moz-linear-gradient(top,#f6f6f6,#f1f1f1);
    background-image: -ms-linear-gradient(top,#f6f6f6,#f1f1f1);
    background-image: -o-linear-gradient(top,#f6f6f6,#f1f1f1);
    background-image: linear-gradient(top,#f6f6f6,#f1f1f1);
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.g-button:visited {
    color: #666;
}

.g-button-submit {
    border: 1px solid #3079ed;
    color: #fff;
    text-shadow: 0 1px rgba(0,0,0,.1);
    background-color: #4d90fe;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));
    background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
    background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
    background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
    background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
    background-image: linear-gradient(top,#4d90fe,#4787ed);
}

    .g-button-submit:hover {
        border: 1px solid #2f5bb7;
        color: #fff;
        text-shadow: 0 1px rgba(0,0,0,.3);
        background-color: #357ae8;
        background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));
        background-image: -webkit-linear-gradient(top,#4d90fe,#357ae8);
        background-image: -moz-linear-gradient(top,#4d90fe,#357ae8);
        background-image: -ms-linear-gradient(top,#4d90fe,#357ae8);
        background-image: -o-linear-gradient(top,#4d90fe,#357ae8);
        background-image: linear-gradient(top,#4d90fe,#357ae8);
    }

    .g-button-submit:active {
        -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
        -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
        box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
    }

.g-button-share {
    border: 1px solid #29691d;
    color: #fff;
    text-shadow: 0 1px rgba(0,0,0,.1);
    background-color: #3d9400;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#398a00));
    background-image: -webkit-linear-gradient(top,#3d9400,#398a00);
    background-image: -moz-linear-gradient(top,#3d9400,#398a00);
    background-image: -ms-linear-gradient(top,#3d9400,#398a00);
    background-image: -o-linear-gradient(top,#3d9400,#398a00);
    background-image: linear-gradient(top,#3d9400,#398a00);
}

    .g-button-share:hover {
        border: 1px solid #2d6200;
        color: #fff;
        text-shadow: 0 1px rgba(0,0,0,.3);
        background-color: #368200;
        background-image: -webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#368200));
        background-image: -webkit-linear-gradient(top,#3d9400,#368200);
        background-image: -moz-linear-gradient(top,#3d9400,#368200);
        background-image: -ms-linear-gradient(top,#3d9400,#368200);
        background-image: -o-linear-gradient(top,#3d9400,#368200);
        background-image: linear-gradient(top,#3d9400,#368200);
    }

    .g-button-share:active {
        -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
        -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
        box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
    }

.g-button-red {
    border: 1px solid transparent;
    color: #fff;
    text-shadow: 0 1px rgba(0,0,0,.1);
    text-transform: uppercase;
    background-color: #d14836;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));
    background-image: -webkit-linear-gradient(top,#dd4b39,#d14836);
    background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
    background-image: -ms-linear-gradient(top,#dd4b39,#d14836);
    background-image: -o-linear-gradient(top,#dd4b39,#d14836);
    background-image: linear-gradient(top,#dd4b39,#d14836);
}

    .g-button-red:hover {
        border: 1px solid #b0281a;
        color: #fff;
        text-shadow: 0 1px rgba(0,0,0,.3);
        background-color: #c53727;
        background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));
        background-image: -webkit-linear-gradient(top,#dd4b39,#c53727);
        background-image: -moz-linear-gradient(top,#dd4b39,#c53727);
        background-image: -ms-linear-gradient(top,#dd4b39,#c53727);
        background-image: -o-linear-gradient(top,#dd4b39,#c53727);
        background-image: linear-gradient(top,#dd4b39,#c53727);
        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2);
        -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2);
        -ms-box-shadow: 0 1px 1px rgba(0,0,0,.2);
        -o-box-shadow: 0 1px 1px rgba(0,0,0,.2);
        box-shadow: 0 1px 1px rgba(0,0,0,.2);
    }

    .g-button-red:active {
        border: 1px solid #992a1b;
        background-color: #b0281a;
        background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a));
        background-image: -webkit-linear-gradient(top,#dd4b39,#b0281a);
        background-image: -moz-linear-gradient(top,#dd4b39,#b0281a);
        background-image: -ms-linear-gradient(top,#dd4b39,#b0281a);
        background-image: -o-linear-gradient(top,#dd4b39,#b0281a);
        background-image: linear-gradient(top,#dd4b39,#b0281a);
        -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
        -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
        box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
    }

.g-button-white {
    border: 1px solid #dcdcdc;
    color: #666;
    background: #fff;
}

    .g-button-white:hover {
        border: 1px solid #c6c6c6;
        color: #333;
        background: #fff;
        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
        -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
        box-shadow: 0 1px 1px rgba(0,0,0,.1);
    }

    .g-button-white:active {
        background: #fff;
        -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
        -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
        box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    }

.g-button-red:visited, .g-button-share:visited, .g-button-submit:visited {
    color: #fff
}

.g-button-submit:focus, .g-button-share:focus, .g-button-red:focus {
    -webkit-box-shadow: inset 0 0 0 1px #fff;
    -moz-box-shadow: inset 0 0 0 1px #fff;
    box-shadow: inset 0 0 0 1px #fff;
}

.g-button-share:focus {
    border-color: #29691d;
}

.g-button-red:focus {
    border-color: #d14836;
}

    .g-button-submit:focus:hover, .g-button-share:focus:hover, .g-button-red:focus:hover {
        -webkit-box-shadow: inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1);
        -moz-box-shadow: inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1);
        box-shadow: inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1);
    }

.g-button img {
    display: inline-block;
    margin: -3px 0 0;
    opacity: .55;
    vertical-align: middle;
}

* + html .g-button img {
    margin: 4px 0 0;
}

.g-button:hover img {
    opacity: .72;
}

.g-button:active img {
    opacity: 1;
}

.errormsg {
    margin: .5em 0 .5em;
    display: block;
    color: #dd4b39;
    font-weight: normal !important;
    line-height: 17px;
    font-size: 14px;
}

input[type=email].form-error, input[type=password].form-error, input[type=text].form-error, input[type=url].form-error {
    border: 1px solid #dd4b39;
}

.help-link {
    background: #dd4b39;
    padding: 0 5px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
    text-decoration: none;
    position: relative;
    top: 0;
}

    .help-link:visited {
        color: #fff;
    }

    .help-link:hover {
        opacity: .7;
        color: #fff;
    }

.main h1:first-child {
    margin: 0 0 .92em;
}

h1 {
    color: #000000;
    font-size: 25px;
    margin: 0 !important;
    font-weight: normal;
    line-height: 24px;
}

.iph-dialog, .iph-dialog-iframe {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

.iph-dialog {
    font: 13px "Arial","Helvetica",sans-serif;
    z-index: 1283;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background-color: #f8f8f8;
    background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: -moz-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: -ms-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: -o-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: linear-gradient(top,#f8f8f8,#f1f1f1);
    border: 1px solid #c6c6c6;
    color: #333;
}

.BUa {
    float: left;
    min-height: 32px;
}

.RKa {
    font-weight: bold;
    margin-bottom: 10px;
    margin-right: 0;
}

.CUa {
    margin-right: 0;
    color: #999;
    margin-left: 0;
}

.iph-dialog-dismiss-container {
    left: 0;
    top: 0;
    width: 100%;
}

.iph-dialog-header {
    width: 100%;
}

.iph-dialog-content {
    color: #333;
    font: 13px Arial,sans-serif;
    margin: 15px 0 0 0;
    text-shadow: #225cb8 0 1px 1px;
}

.ui-buttonsubmit-default {
    border-radius: 45px !important;
    width: auto !important;
    font-family: FS_Joey-Medium !important;
    font-size: 18px;
    padding: 14px 33px 14px 33px !important;
}

.btn-r-align {
    text-align: right !important;
}

.btn-c-align {
    text-align: center !important;
}

.btn-l-align {
    text-align: left !important;
}

.sign-in {
    background: white !important;
}

.signin-box {
    padding: 0px 15px 0px !important;
}

.group {
    position: relative;
    margin: 15px 0 10px 0;
}

    .group input {
        font-size: 18px;
        padding: 15px 15px 15px 15px !important;
        display: block;
        width: 100%;
        border-radius: 4px !important;
        background: white !important;
        font-family: FS_Joey-Medium !important;
    }

        .group input:hover {
            border-color: #d9d9d9;
        }

    .group label {
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 18px;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
        background: white;
        padding: 3px !important;
        color: #80868b;
        font-family: FS_Joey-Medium;
    }

    .group input:focus ~ label, .group input:valid ~ label {
        top: -10px;
        font-size: 13px !important;
        color: #1C33A0;
        border-radius: 4px !important;
    }

    .group input:focus {
        border: 2px solid #1C33A0 !important;
    }

    .group .select {
        position: relative;
        width: 100%;
        background-color: white !important;
    }

    .group .select-text {
        position: relative;
        font-family: FS_Joey-Medium;
        background-color: transparent;
        width: 350px;
        padding: 10px 10px 10px 10px;
        border-radius: 4px;
        border-bottom: 1px solid rgba(0,0,0, 0.12);
        font-size: 16px !important;
    }

        /* Remove focus */
        .group .select-text:focus {
            outline: none;
            border: 2px solid #1C33A0 !important;
        }

    /* LABEL ======================================= */

    .group .select-label {
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 18px;
        transition: 0.2s ease all;
    }
    /* active state */

    .group .select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
        top: -10px;
        font-size: 13px !important;
        transition: 0.2s ease all;
        color: #1C33A0;
        border-radius: 4px !important;
    }
    /* BOTTOM BARS ================================= */

    .group .select-bar {
        position: relative;
        display: block;
        width: 350px;
    }

        .group .select-bar:before, .select-bar:after {
            content: '';
            height: 2px;
            width: 0;
            bottom: 1px;
            position: absolute;
            background: #1C33A0;
            transition: 0.2s ease all;
        }

        .group .select-bar:before {
            left: 50%;
        }

        .group .select-bar:after {
            right: 50%;
        }
    /* active state */

    .group .select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
        width: 50%;
    }
    /* HIGHLIGHTER ================================== */

    .group .select-highlight {
        position: absolute;
        height: 60%;
        width: 100px;
        top: 25%;
        left: 0;
        pointer-events: none;
        opacity: 0.5;
    }

.ui-keyboard-preview-wrapper input {
    border: 2px solid #1C33A0 !important;
    border-radius: 4px !important;
}

.ui-keyboard {
    border: 1px solid rgb(218, 220, 224) !important;
    border-radius: 5px !important;
    padding: 0px !important;
    -webkit-box-shadow: 0 0px 0px rgba(0,0,0,0) !important;
    -moz-box-shadow: 0 0px 0px rgba(0,0,0,0) !important;
    box-shadow: 0 0px 0px rgba(0,0,0,0) !important;
    left: 200px;
}



.lbl-top10pass {
    top: 0px !important;
    color: #8B9195 !important;
    font-size: 16px !important;
}

.lbl-top0_pass {
    top: -10px !important;
    color: #1C33A0 !important;
    font-size: 13px !important;
}

.display_cell {
    display: table-cell !important;
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap;
    font-size: 18px;
    width: 48% !important;
}

    .ui-tabs .ui-tabs-nav li a {
        float: left;
        padding: .5em 0em;
        text-decoration: none;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        font-family: FS_Joey-Medium;
    }


.textos {
    padding: 10px 40px;
    text-align: center;
    color: #fff
}

.panelstep {
    max-width: 100%;
    margin: 0 auto;
    background: #fff !important;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #dadce0;
    font-family: FS_Joey-Medium;
}

    .panelstep p {
        padding: 0px 40px;
        color: #707070;
        font-size: 16px !important;
        text-align: center;
    }

    .panelstep .table {
        width: 100%;
        padding: 15px 0 0 !important;
    }

    .panelstep .table2 {
        width: 100%;
        /* padding: 0px 15px !important; */
    }

    .panelstep .tablequestions {
        padding: 0px 10px 10px 10px !important;
    }

@media only screen and (min-width: 768px) {
    .panelstephorizontal {
        width: 1000px;
        border-radius: 8px;
        border: 1px solid #DADCE0;
        margin: 35px 10%;
        padding: 2px 24px;
    }
}


.question {
    font-size: 16px
}

    .question label {
        font-size: 14px !important;
    }

.textogenerales {
    text-align: center;
    color: #000;
    font-size: 14px;
    font-family: FS_Joey-Medium;
}


.rardiobutton {
    color: #707070;
}

    .rardiobutton label {
        display: inline !important;
        font-size: 20px !important;
    }


.mailimage {
    /* left: -44px; */
    /* position: relative; */
    max-width: 100%;
}

.passimage {
    padding-top: 10px;
    width: 150px;
}

.notificationsms {
    left: -19px;
    position: relative;
    width: 438px;
}

.email {
    color: #000000;
    font-weight: bold;
    font-family: FS_Joey-Medium;
}

.divparrafosrelativeleft {
    text-align: left;
    font-size: 18px;
    font-family: FS_Joey-Light;
    padding: 0px 0px 15px;
    font-weight: 300;
}

    .divparrafosrelativeleft b, .divparrafosrelativeleft span {
        color: #333;
        font-weight: bold;
    }


.divparrafosunsetcenter {
    color: #707070;
    width: 100%;
    position: unset;
    text-align: center;
    left: 28px;
    font-size: 20px;
    font-family: FS_Joey-Light;
    padding: 10px 0px 0px 0px;
}

.divtipsecurity {
    color: #707070;
    width: 100%;
    position: relative;
    text-align: left;
    font-size: 14px;
    font-family: FS_Joey-Light;
    padding: 0px 0px 0px 0px;
}

.divAction {
    padding: 15px 0px 20px 0px;
}

.mensajeerror {
    color: red !important;
    margin: .5em 0 0;
    display: block;
    color: #dd4b39;
    font-weight: normal !important;
    line-height: 17px;
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .sura-header-bar {
    }
}

.country_md {
    position: relative;
    margin: 15px 0;
}

    .country_md input {
        font-size: 18px;
        display: block;
        width: 100%;
        border-radius: 4px !important;
        font-family: FS_Joey-Medium !important;
    }

        .country_md input:focus ~ label, .group input:valid ~ label {
            top: -10px;
            font-size: 13px !important;
            color: #1C33A0;
            border-radius: 4px !important;
        }

        .country_md input:focus {
            border: 2px solid #1C33A0 !important;
        }

.country-select .country-list {
    z-index: 16015 !important;
}

.country-height {
    height: 68px !important;
}




.linktoButton {
    text-decoration: none !important;
    padding: 11px 33px 14px 33px !important;
    font-weight: bold;
    border: 1px solid #F5E61C;
    color: #0033A0;
    -webkit-text-shadow: 0 1px rgba(0,0,0,.1);
    text-shadow: 0 1px rgba(0,0,0,.1);
    background-color: #F5E61C;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 50px;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
    -moz-border-image: initial;
    -o-border-image: initial;
    -webkit-border-image: initial;
    border-image: initial;
    height: 45px;
    font-size: 16px !important;
    background-image: linear-gradient(top,#F5E61C,#F5E61C);
    border-color: #F5E61C;
}

.main-login .ui-buttonsubmit-default, .main-login .linktoButton {
    text-shadow: none;
    background-image: none;
    height: inherit;
    font-weight: 500;
    font-size: 18px !important;
    padding: 10px 26px !important;
}

.main-login .ui-buttonsubmit-default {
    order: 2;
}

.main-login .linktoButton {
    order: 1;
    margin-right: 20px;
    background-color: #b1b1b1;
    border: none;
    color: #fff;
}

#resetpass {
    width: 100% !important;
}


.main-login .col-sm-6.ctn-form-clave {
    width: 100%;
    order: 3;
    padding: 0;
}

.main-login .col-sm-6.ctn-box-info {
    width: 100%;
    order: 2;
}

    .main-login .col-sm-6.ctn-box-info.text-center img {
        display: none;
    }

.main-login .panelstep {
    display: flex;
    flex-direction: column;
}


    .main-login .panelstep > .col-sm-12 {
        order: 1;
    }

.main-login .col-sm-6.ctn-box-info .mensajeayuda .divtipsecurity ul {
    margin-top: 15px;
    font-weight: 300;
}

    .main-login .col-sm-6.ctn-box-info .mensajeayuda .divtipsecurity ul li {
        margin-bottom: 5px;
    }

.main-login .col-sm-6.ctn-box-info .mensajeayuda .divtipsecurity {
    font-weight: 800;
    font-size: 16px;
}

.main-login .panelstep .textoDerecha {
    float: left;
    margin: 15px 0 0;
}

.main-login .panelstep .fieldRow {
    display: table;
    zoom: 1;
    width: 100%;
}

.main-login .panelstep .table {
    margin-bottom: 0;
    padding-top: 0 !important;
}


@font-face {
    font-family: 'FS_Joey-Medium';
    src: url('../font/FSJoey/FS_Joey-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FS_Joey-Bold';
    src: url('../font/FSJoey/FS_Joey-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.main-login input {
    box-shadow: none !important;
}

    .main-login input:focus:invalid:focus,
    .main-login textarea:focus:invalid:focus,
    .main-login select:focus:invalid:focus {
        box-shadow: none !important;
    }


.main-login .sign-in-title h1 {
    font-size: 30px;
}


@media (max-width: 480px) {

    .main-login {
        padding: 0 15px;
    }
}


.footer ul li input {
    height: inherit !important;
}

    .footer ul li input:hover {
        font-size: inherit;
    }

#country_selector {
    height: 22px !important;
    font-family: FS_Joey-Medium;
    font-size: 14px !important;
}

.country-select .country-list {
    position: fixed !important;
}

.flag-dropdown ul li {
    display: block !important;
}
