@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');
html,body{
font-family: 'Open Sans', sans-serif !important;
margin:0;
padding:0;
}
body {
    height: 100vh;
}
.clear:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
*{
outline:none !important;
box-sizing:border-box;
}
/*:focus,:active{
box-shadow:none !important;
}*/
a{
    text-decoration:none;
}
p {
    word-break: break-word !important;
}
.nopad{
    padding: 0 !important;
}
/*Navigation CSS starts here*/
.top-nav-bg {
    background: #12a4f4;
}
.logo img {
    height: 25px;
}

.user-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.user-info ul li {
    display: inline-block;
    vertical-align: middle;
}

.user-info ul li.user-profile-image img {
    height: 35px;
    vertical-align: middle;
}

.user-info {
    padding: 15px;
}

.user-info ul li.user-profile-name label {
    font-size: 18px;
    text-transform: uppercase;
    vertical-align: middle;
    color: #fff;
    margin: 0;
    padding-left: 10px;
}

.logo a {
    padding: 20px 0;
    display: block;
}
.top-nav-bg-extend {
    min-height: 180px;
}
ul.main-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: table;
}

ul.main-nav li {
    display: table-cell;
    text-align: center;
    position: relative;
}

ul.main-nav li a {
    display: block;
    font-size: 17px;
    text-transform: uppercase;
    padding: 20px 10px;
    color: #fff;
}

.body-section {
    margin-top: -150px;
}

.main-section {
    background: #f3f3f3;
    height: calc(100vh - 159px);
    overflow: auto;
}
li.nav-active::after {
    content: '';
    width: 100%;
    height: 5px;
    background: #fff;
    position: absolute;
    bottom: 2px;
    left: 0;
}
.main-body-bg {
    background: url(../images/login_bg3.jpg) no-repeat 50% 50%;
    background-size: cover;
    width: 100%;
    height: 250px;
}
.main-tile-thumb {
    padding: 20px 40px 0;
}

.main-tile-thumb-card img {
    height: 50px;
}

.main-tile-thumb-card {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.08);
    min-height: 175px;
    display: block;
    cursor: pointer;
}

.main-tile-thumb-card p {
    font-size: 18px;
    margin: 0;
    padding-top: 10px;
}
.main-body-section {
    padding: 30px 30px 80px;
}
.main-body-head a img {
    height: 20px;
    cursor: pointer;
}

.main-body-head {
    padding: 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}

.main-body-head a {
    display: inline-block;
}

.main-body-head h3 {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    text-transform: uppercase;
    color: #12a4f4;
    padding-left: 10px;
}
.main-body-left ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-body-left ul li {
    display: block;
    position: relative;
}

.main-body-left ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 20px;
    color: #777777;
    border-bottom: 1px solid #ddd;
    transition: all 0.4s ease;
    cursor: pointer;
}

.main-body-left {
    background: #e6e6e6;
    height: calc(100vh - 221px);
    overflow: auto;
}

.main-body-right {
    padding: 30px;
    height: calc(100vh - 221px);
    overflow: auto;
}

.main-body-right >h1 {
    font-size: 25px;
    color: #12a4f4;
    font-weight: 600;
    margin: 0;
}

.main-body-right >p {
    font-size: 14px;
    margin: 0;
    padding: 20px 0;
}

.continue-btn {
    text-align: center;
    margin: auto;
    padding: 30px;
}

.continue-btn a.btn {
    background: #12a4f4;
    color: #fff;
    padding: 10px 20px;
    margin: 0 15px;
}
.main-body-left ul li a:hover {
    background: rgb(18, 164, 244);
    transition: all 0.4s ease;
    color: #fff;
}
a.li-active {
    background: #12a4f4;
    color: #fff !important;
}

/* form starting stylings ------------------------------- */
.group            {
  position:relative;
  margin-bottom: 10px;
}
.group input               {
  font-size:18px;
  padding:10px 10px 10px 5px;
  display:block;
  width:100%;
  border:none;
  border-bottom:1px solid #757575;
  background: transparent;
  font-size: 16px !important;
}
.group input:focus         { outline:none; }

/* LABEL ======================================= */
.group label                {
  color:#999;
  font-size: 16px;
  font-weight: 600 !important;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}

/* active state */
.group input:focus ~ label, .group input:valid ~ label        {
  top:-20px;
  font-size:14px;
  color: #12a4f4;
}

/* BOTTOM BARS ================================= */
.bar    { position:relative; display:block; width:100%; }
.bar:before, .bar:after     {
  content:'';
  height: 2px;
  width:0;
  bottom:1px;
  position:absolute;
  background: #12a4f4;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
.group input:focus ~ .bar:before, .group input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.group input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
form.custom-form {
    padding: 20px 40px 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.gray-btn {
    background: #6d6666 !important;
}
.form-heading {
    text-align: center;
    font-size: 25px;
    padding-bottom: 20px;
}

.group p.qn {
    color: #12a4f4;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
ul.qn-answer {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.qn-answer input[type='checkbox'] {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0;
}

ul.qn-answer span {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    padding-left: 10px;
}
.label-small {
    font-size: 14px !important;
    color: #757575;
}
.main-sub-head {
    background: #e8e8e8;
    padding: 18.5px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #12a4f4;
}

.main-sub-input {
    padding: 30px 20px 0;
}
.group select {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #757575;
    background: transparent;
    font-size: 16px !important;
}
.expert-list-view {
    padding: 20px;
}

.expert-card {
    background: #12a4f4;
    padding: 25px 25px;
    color: #fff;
    display: block;
    cursor: pointer;
}

.expert-card h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.expert-card h2 {
    font-size: 19px;
    margin: 0;
    padding: 5px 0 20px;
}

.expert-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 400;
    font-size: 15px;
}

.main-experts-list {
    padding: 30px;
}
.label-normal {
    top: 10px !important;
    left: 0 !important;
}
.news-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 20px 0;
}

.news-list ul
 li {
    display: block;
    padding-bottom: 20px;
}

.news-list ul
 li a {
    display: block;
    width: 100%;
    color: #777;
    padding: 20px;
    background: rgb(230, 230, 230);
    border-radius: 10px;
}

.news-list ul
 li a h3 {
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.news-list ul
 li a span {
    font-size: 13px;
    display: block;
    padding: 10px 0 15px;
}
.ul-nav {
    position: absolute;
    background: #fff;
    width: 280px;
    z-index: 9999;
    right: 0;
    top: 0;
    transform: scale3d(1,0,0) translate3d(0px,-15px,0px);
    transform-origin: left top;
    transition: all 0.4s ease;
    opacity: 0;
}

.ul-nav li a {
    display: block;
    padding: 15px;
    cursor: pointer;
}

.ul-nav li a img {
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}

.ul-nav ul li {
    border-bottom: 1px solid #c1c1c1;
    width: 100%;
    background: #fff;
    transition: all 0.4s ease;
}

.ul-nav li a label {
    color: #777;
    display: inline-block;
    padding-left: 10px;
    cursor: pointer;
}

.ul-nav ul li:hover {
    background: rgba(0, 0, 0, 0.13);
    transition: all 0.4s ease;
}
.active-ul-nav{
    transform: scale3d(1,1,1) translate3d(0px,0px,0px);
    opacity: 1;
    transition: all 0.4s ease;
}
.side-navigation i {
    font-size: 25px;
    width: 30px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}
.main-nav li:hover::after {
    content: '';
    width: 100%;
    height: 5px;
    background: #fff;
    position: absolute;
    bottom: 2px;
    transition: all 1s ease;
    left: 0;
}
.auto-list .main-tile-thumb-card {
    min-height: auto !important;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.08);
}

.auto-list .main-tile-thumb-card p {
    padding: 0;
    font-size: 18px;
    color: #777;
}
.loader {
    position: absolute;
    background: rgba(18, 164, 244, 0.98);
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.loader-body {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    top: 25%;
    color: #fff;
}

.loader-body img {
    height: 120px;
}
.main-body-right h2 {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    text-align: left;
}
.form-gray-bg {
    padding: 5% 15%;
}
.main-body-right h1 {
    margin: 0;
    padding-bottom: 20px;
    font-size: 25px;
}
.question-form {
    background: transparent !important;
    border-radius:0px;
}
span.qn-desc {
    display: block;
    opacity: 0.8;
    padding-bottom: 20px;
}

span.qn-desc p {
    margin: 0;
}
ul.qn-answer li {
    padding-bottom: 20px;
}
.news-category-thumb {
    display: none;
}

.show-thumb {
    display: block;
}
.login_bg {
    background: url(../images/login_bg3.jpg) no-repeat 50%;
    background-size: cover;
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

.login_form {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 25%;
    z-index: 99;
    max-width: 650px;
}

.login_logo img {
    height: 60px;
}

.login_form form input {
    display: block;
    width: 100%;
    padding: 20px 15px;
    font-size: 18px;
    border: 0;
    color: #777;
    margin-bottom: 25px;
    font-weight: 500;
}

.login_form form {
    padding: 50px;
}

.login_bg_overlay {
    position: absolute;
    background: rgba(18, 164, 244, 0.72);
    z-index: 9;
    width: 100%;
    height: 100vh;
}

.login_form form input[type="submit"] {
    background: #074979;
    padding: 20px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    margin-top: 30px;
}
.login-error {
    padding: 20px;
    color: #fff;
    font-size: 18px;
/*     background: #ff3737; */
    margin-bottom: 20px;
}
.main-body-right >a {
    font-size: 18px;
    color: #12a4f4;
    font-weight: 600;
    margin: 0;
    display: block;
}
.html-info {
    padding: 30px 40px;
}
.multiSelect .caret {
    position: absolute;
    right: 10px;
    top: 15px;
}

.multiSelect > button {
    width: 100%;
    text-align: left !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #777 !important;
}
.main-body-right form.custom-form {
    border-radius: 0px;
    position: relative;
}
.add-skill-section {
    padding: 20px 40px 0px;
}

.add-skill-section a {
    display: block;
    background: #989898;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
}

/*//Loading Animation Starts*/
.loading {
  position: absolute;
  /*top: 50%;*/
  top:-40px;
  left: 50%;
}
.loading-bar {
  display: inline-block;
  width: 4px;
  /*height: 18px;*/
   height: 25px;
  border-radius: 4px;
  animation: loading 1s ease-in-out infinite;
  background-color: #fff;
}
/*.loading-bar:nth-child(1) {
  background-color: #3498db;
  animation-delay: 0;
}
.loading-bar:nth-child(2) {
  background-color: #c0392b;
  animation-delay: 0.09s;
}
.loading-bar:nth-child(3) {
  background-color: #f1c40f;
  animation-delay: .18s;
}
.loading-bar:nth-child(4) {
  background-color: #27ae60;
  animation-delay: .27s;
}*/
.loading-bar:nth-child(1) {
  animation-delay: 0;
}
.loading-bar:nth-child(2) {
  animation-delay: 0.09s;
}
.loading-bar:nth-child(3) {
  animation-delay: .18s;
}
.loading-bar:nth-child(4) {
  animation-delay: .27s;
}
@keyframes loading {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1, 2.2);
  }
  40% {
    transform: scale(1);
  }
}
/*//Loading Animation Ends*/
.expert-form {
    padding: 40px !important;
}
.form-completion-step table {
    width: 100%;
    border-spacing: 0;
    background: #e8e8e8;
    background: #12a4f4;
    background: #ff7676;
    color: #fff;
    margin-bottom: 30px;
}

.form-completion-step table tbody tr td {
    text-align: left;
    padding: 15px 20px;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.15); */
    /* border-right: 1px solid rgba(0, 0, 0, 0.15); */
}

.form-completion-step table tbody tr td span {
    font-size: 13px;
    color: #e4e4e4;
}

.form-completion-step table tbody tr td h3 {
    margin: 0;
    padding-top: 6px;
    font-size: 18px;
}
.form-completion-step {
    position: relative;
}

.form-step {
    width: 45px;
    height: 45px;
    background: #12a4f4;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    position: absolute;
    left: -20px;
    top: -20px;
    border: 4px solid #f3f3f3;
}

.form-step.completed {
    background: #2ecc71;
}
.added-skill ul {
    margin: 0;
    list-style: none;
    padding: 20px 40px 0;
}

.added-skill ul li table {
    margin: 0;
}

.added-skill ul li {
    padding-bottom: 10px;
}
.blue-btn {
    background: #12a4f4 !important;
    color: #fff !important;
}
md-switch{
    margin: 0px !important;
}
.profile_image {
    width: 150px;
    height: 150px;
    background: #12a4f4;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    margin: auto;
    position: absolute;
    top: -70px;
    left: 0;
    border: 5px solid #f3f3f3;
    right: 0;
}

.profile_image input {
    width: 150px;
    height: 150px;
    background: #12a4f4;
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.expert-profile-form {
    padding-top: 100px !important;
    margin-top: 50px;
}
.follow-list .main-tile-thumb-card md-checkbox {
    width: 100%;
    height: 190px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.follow-list .main-tile-thumb-card {
    min-height: 190px !important;
    /* overflow: hidden; */
    display: block;
    position: relative;
    padding: 30px;
}

.follow-list .main-tile-thumb-card md-checkbox .md-container div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    bottom: 0;
    border: 0 !important;
}

.follow-list .main-tile-thumb-card md-checkbox .md-container {
    position: absolute;
    width: 100%;
    height: 180px;
    top: 0;
    transform: translateY(0%);
}
.follow-list .main-tile-thumb-card p {
    /* position: absolute; */
    /* text-align: center; */
    /* margin: auto; */
    /* left: 0; */
    /* right: 0; */
    /* top: 40%; */
    padding-top: 20px;
}
.follow-list .main-tile-thumb-card md-checkbox.md-default-theme.md-checked .md-icon, .follow-list .main-tile-thumb-card md-checkbox.md-checked .md-icon {
    background-color: transparent !important;
}
.follow-list .main-tile-thumb-card md-checkbox.md-default-theme.md-checked .md-ink-ripple, .follow-list .main-tile-thumb-card md-checkbox.md-checked .md-ink-ripple {
    color: transparent !important;
}
.follow-list .main-tile-thumb-card md-checkbox.md-default-theme.md-checked .md-icon:after, .follow-list .main-tile-thumb-card md-checkbox.md-checked .md-icon:after{
    border-color: transparent !important;
}
.checkedEmail a {
    background: #12a4f4 !important;
}

.checkedEmail a p {
    color: #fff !important;
    font-weight: bold;
    transition: all 0.5s ease;
}
.follow-list .main-tile-thumb-card>span {
    /*display: none;*/
    color: #fff;
    background: #046092;
    position: absolute;
    padding: 8px 15px;
    border-radius: 40px;
    right: -5px;
    top: 25px;
    transition: all 0.4s ease;
    opacity: 0;
}
.checkedEmail a span {
    /*display: block !important;*/
    top: -4px !important;
    transition: all 0.8s ease;
    opacity: 1 !important;
}
.follow-list .main-tile-thumb-card img {
    height: 60px;
}
.updateMessage {
    font-size: 16px;
    text-align: center;
    padding: 10px;
    background: #e2e2e2;
    font-weight: 700;
}

.green-bg {
    background: #00d085 !important;
    color: #fff !important;
}

.red-bg {
    background: #ff5f5f !important;
    color: #fff !important;
}
.proposal-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.proposal-list ul li {
    padding: 10px 15px;
        display: inline-block;
}
.proposal-list ul li md-checkbox .md-container {
    /* height: 30px; */
    /* width: 30px; */
}

.proposal-list ul li md-checkbox .md-container .md-icon {
    /* height: 30px; */
    /* width: 30px; */
}

.proposal-list ul li label {
    font-size: 17px;
    padding-left: 15px;
    margin: 0;
    vertical-align: middle;
}
.continue-btn button {
    padding: 12px 25px;
}
.group input#uploadfile {
    padding-top: 40px;
}

.group input#uploadfile.ng-touched {
    /* padding-top: 0; */
}
.profile_image img {
    position: absolute;
    top: -5px;
    left: -5px;
    height: 150px;
}
.mainContainer {
    position: relative;
}

.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    top: 0;
    left: 0;
    z-index: 999;
}

.popup {
    position: absolute;
    z-index: 9999;
    background: #fff;
    min-width: 350px;
    width: 25%;
    height: 200px;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 10px;
}

.popup h1 {
    margin: 0;
    padding: 20px;
    font-size: 25px;
}

.popup h3 {
    margin: 0;
    padding: 18px;
    font-size: 19px;
    padding: 10px 20px 30px 20px;
}

.popup a {
    font-size: 16px;
    padding: 12px 25px;
    min-width: 120px;
    display: inline-block;
}
.proposal-list ul li input[type=checkbox] {
    width: 25px;
    height: 25px;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}
.proposal-heading {
    margin: 0;
    padding: 20px 0;
    font-size: 18px !important;
    font-weight: bold !important;
    color: #12a4f4;
    /*text-decoration: underline;*/
}
.group h3 {
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 15px;
}

.group input[type="checkbox"],.group input[type="radio"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0;
    vertical-align: middle;
}

.group h4 {
    font-size: 17px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}
.group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.group ul li {
    display: block;
    padding-right: 15px;
}
.qn-head {
    position: relative;
}

.qn-head a i {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.sub_sub_answer_section {
    padding: 0px 35px 0;
}
.sub_sub_answer_section ul {
    padding-top: 20px;
}

.sub_sub_answer_section ul li {
    padding-bottom: 0;
}
a.openInfoValue {
    display: block;
    position: absolute;
    right: 0;
    top: -6px;
    font-size: 25px;
    color: #ff8025;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: #f3f3f3;
    text-align: center;
}
.openPopup {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(18, 164, 244, 0.94);
    z-index: 9;
}

.popup .popup_head {
    font-size: 25px;
    padding: 15px;
}

.popup .popup_body {
    font-size: 16px;
    padding: 10px 20px;
}

.popup .popup_action a {
    display: inline-block;
    font-size: 18px;
    background: #11a4f3;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.popup .popup_action {
    padding: 20px;
}

.openPopup .popup {
    height: auto;
}
.p-img img {
    height: 120px;
}

.profile-img-section {
    text-align: center;
    display: inline-block;
    width: 250px;
    /* background: #ddd; */
    vertical-align: top;
}

.profile-details-section {
    display: inline-block;
    width: calc(100% - 260px);
    vertical-align: top;
}

.p-buttons {
    padding: 10px 30px 30px;
}

.p-buttons a, .p-buttons button {
    display: block;
    padding: 14px;
    margin: 0;
    font-size: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.p-img {
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}
.profile-details-section form {
    background: transparent;
    border: 1px solid #b7b7b7;
}
.group-disabled {
    position: relative;
}

.group-disabled::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(243, 243, 243, 0.63);
}
.p-buttons button input {
    opacity: 0;
    padding: 14px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    cursor: pointer;
    z-index: 9;
}
.main-knowledge-tile-thumb {
    width: 49.5%;
    display: inline-block;
}
.more_data iframe {
    width: 100%;
    height: 330px;
}
.popup_body form {
    padding-top: 30px;
}
.continue-btn button {
    margin: 0 10px;
}

.red-btn {
    background: #ff4848 !important;
    color: #fff !important;
}
.multiSelect > button{
        height: 35px;
    overflow: auto;
}
.select-option {
    padding: 0px 100px;
}
.main-body-right h1+span {
    color: #dc0404;
    font-weight: bold;
    padding-bottom: 20px;
    display: block;
}
li.user-profile-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}
.main-body-left ul li .fa-check-circle {
    position: absolute;
    top: 22px;
    right: 5px;
    font-size: 22px;
    color: #05262a;
}
.result-page {
    padding: 5% 10%;
    background: #fff;
}

.result-count {
    background: #fff;
    padding: 20px;
}
.result-body {
    background: #fff;
}

.result-body>h3 {
    margin: 0;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
}

.result-body ul {
}

ul.result-main-loop li h4 {
    color: #12a4f4;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

ul.result-main-loop {
    padding: 10px 30px;
}

ul.result-sub-loop li h5 {
    margin: 0;
    font-size: 18px;
    padding: 10px 0 0;
}

ul.result-sub-sub-loop li h5 {
    margin: 0;
    padding: 10px 0 0px;
    opacity: 0.8;
}
ul.result-question-loop li p {
    float: left;
    font-size: 17px;
    width: calc(100% - 40px);
    opacity: 1;
    font-weight: 500;
}

ul.result-question-loop li span {
    float: right;
    width: 30px;
    text-align: right;
    font-size: 19px;
}

ul.result-sub-loop li {
}

ul.result-sub-sub-loop {
}

ul.result-sub-loop>li {
    /* border-bottom: 3px solid #000; */
}

ul.result-sub-sub-loop li {border: 1px solid rgba(0, 0, 0, 0.23);margin-bottom: 20px;padding: 20px;}

ul.result-question-sub-loop {
    margin-bottom: 20px;
}
ul.result-question-loop li {
    border: 0;
    margin: 0;
    padding: 10px 10px 0;
}

ul.result-question-loop {padding-top: 15px;}
.result-count-head {
    background: #12a4f4;
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding: 25px 20px;
}

.result-count-head h2 {
    margin: 0;
    float: left;
    /* width: calc(100% - 40px); */
}

.result-count-head span {
    float: right;
    text-align: right;
    font-size: 28px;
}
.result-count-body ul li {
    display: table-cell;
    text-align: center;
    /* background: #000; */
}

.result-count-body ul {
    display: table;
    width: 100%;
}

.result-count-body {
    background: #12a4f4;
    border-radius: 0px 0px 10px 10px;
    color: #fff;
    overflow:hidden;
}

.result-count-body ul li:nth-child(1) {
    background: rgba(0, 0, 0, 0.5);
}

.result-count-body ul li:nth-child(2) {
    background: rgba(0, 0, 0, 0.45);
}
.result-count-body ul li:nth-child(3) {
    background: rgba(0, 0, 0, 0.4);
}
.result-count-body ul li:nth-child(4) {
    background: rgba(0, 0, 0, 0.35);
}
.result-count-body ul li:nth-child(5) {
    background: rgba(0, 0, 0, 0.3);
}
.result-count-body ul li:nth-child(6) {
    background: rgba(0, 0, 0, 0.25);
}
.final-save {
    padding: 0px 30px;
}

.final-save ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 17px;
}

.final-save ul li input[type=checkbox] {
    width: 30px;
    height: 25px;
}

.final-save ul li:nth-child(1) {
    width: 40px;
}

.final-save ul li:nth-child(2) {
    width: calc(100% - 60px);
}

.final-save .action-btn {
    text-align: center;
    padding: 30px 0;
}
.final-save .action-btn a {
    padding: 20px;
    font-size: 16px;
}
form.assessment-form .group {
    padding: 5px;
    margin-bottom: 30px;
}

form.assessment-form {
    padding: 40px 30px;
}
.main-body-left.result-main-body-left {
    height: auto !important;
    overflow: initial !important;
}

.main-section.result-main-section {
    height: auto !important;
}
ul.result-answer-loop li {
    font-size: 18px;
    font-weight: 700;
    color: #12a4f4;
    padding: 0;
    padding-bottom: 20px;
}
.r-head h4 {
    float: left;
}

.r-head h3 {
    float: right;
    margin: 0;
    font-weight: 700;
    color: #12a4f4;
}
.main-body-left ul li img {
    height: 18px;
    position: absolute;
    top: 35%;
    right: 6%;
}
.group select[multiple], .group select[size] {
    height: 300px;
    background: #fff;
    padding: 0;
}

.group select[multiple] option {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.19);
}
.register-form {
    width: 80%;
    max-width: 700px;
    background: #fff;
    margin: auto;
    border-radius: 10px;
}

section.register-section {
    background: rgba(18, 164, 244, 0.98);
    text-align: center;
    padding: 30px;
}

.r-form {
    padding: 40px 20px;
}
.r-form .group {
    margin-bottom: 30px;
}
.r-form .group select {
    height: 180px;
    border: 1px solid #75757566;
    margin-top: 0;
    margin-top: 40px;
}

.r-form .group select + label {
    top: 0;
}
.r-form .group label {
    padding-left: 15px;
}
.r-form .group p.help-block {
    text-align: left;
}
.r-form h3 {
    margin: 0;
    padding-bottom: 40px;
}
.r-form .group select option {
    padding: 10px 20px;
}

/*Cart page CSS starts*/
.cart-page {
    background: #f8f8f8;
    height: 100%;
}

.cart-page-navigation {
    background: #fff;
    height: 65px;
    padding: 0 20px;
}

.cart-page-logo {
    float: left;
}

.cart-page-nav {
    float: right;
}

.cart-page-profile {
    float: right;
}
.cart-page-logo a {
    display: block;
    padding: 20px 0;
}

.cart-page-logo a img {
    height: 22px;
}

.cart-page-nav ul {
    list-style:  none;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.cart-page-nav ul li {
    display: inline-block;
    padding: 20px;
    transition: all 0.5s ease;
}

.cart-page-nav ul li a {
    display: block;
    color: #615d6f;
    font-size: 16px;
    text-decoration: none;
}

.cart-page-nav ul li:hover {
    opacity: 0.6;
    transition: all 0.5s ease;
}
.cart-page-profile-actions {
    float:left;
}

.cart-page-profile-cart {
    float:right;
}

.cart-page-profile-actions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-page-profile-actions ul li {
    display: inline-block;
    transition: all 0.5s ease;
        padding: 12px;
}
.cart-page-profile-actions ul li a{
    display: block;
    color: #615d6f;
    font-size: 15px;
    text-decoration: none;
    padding: 10px;
}
a.small-btn.blue-button {
    background-color: #1262f4;
    padding: 6px 10px;
    color: #fff;
    border-radius: 5px;
}
.cart-page-cart {
    float:left;
    padding: 20px 5px 20px 20px;
}

.cart-page-profile-list {
    float:right;
}
.cart-page-profile-list h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1262f4;
    padding: 20px;
}
.cart-page-profile-list ul {
    position: absolute;
    list-style: none;
    margin: 0;
    background: #fff;
    width: 100%;
    padding: 0;
}

.cart-page-profile-list ul li {
    display: block;
}

.cart-page-profile-list ul li a {
    display: block;
    font-size: 16px;
    padding: 10px 15px;
    color: #615d6f;
    text-decoration: none;
    background: #fff;
    transition: all 0.5s ease;
}

.cart-page-profile-list ul li a:hover {
    background: #f1f1f1;
    transition: all 0.5s ease;
}
.cart-page-cart img {
    height: 18px;
}
.login_page {
    height: calc(100vh - 65px);
}

.login_single_option {
    display: inline-block;
    width: 49.8%;
    text-align: center;
}

.login_options {
    width: 90%;
    margin: 0 auto;
}
.login_single_option_image h2 {
    font-size: 22px;
    text-transform: uppercase;
    margin: 0;
    padding: 30px 0 15px;
    color: #4e4e4e;
}

.login_single_option_image {
    padding: 40px 50px;
}

.login_single_option_image p {
    margin: 0;
    font-size: 15px;
    color: #6b6b6b;
    padding: 0px 10px 15px;
}

.login_single_option_image a {
    display: inline-block;
    text-align: center;
    margin: auto;
    background: #1262f4;
    color: #fff;
    padding: 10px 10px;
    width: 100px;
    font-size: 15px;
}

.login_single_option_image a:hover {
    color: #fff;
    opacity: 0.9;
}

.features_page {
    height: calc(100vh - 60px);
        padding: 0px 80px;
}

.features_header h3 {
    margin: 0;
    text-align: left;
    font-size: 18px;
    color: #615d6f;
}

.features_header {
    text-align: left;
    padding: 30px 30px 0;
}

.feature_list {
display: inline-block;
    background: #fff;
    width: 30%;
    box-shadow: 0px 0px 10px #00000017;
    border-radius: 10px;
    padding: 20px;
    color: #615d6f;
    margin: 20px 30px 20px 0;
        max-width: 250px;
}

.features_lists {
    padding: 0px 30px 30px;
}

.feature_list h2 {
    margin: 0;
    font-size: 20px;
    color: #1261f4;
    font-weight: 600;
}

.feature_list p {
    margin: 0;
}

.feature_list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 5px 0;
}

.feature_list ul li {
    padding: 3px 0;
}
.gray_btn {
    background: #a7a4ae;
    color: #fff;
    transition: all 0.5s ease;
    opacity: 1;
}

.gray_btn:hover {
    opacity: 0.8;
    color: #fff !important;
    transition: all 0.5s ease;
}
.blue_btn {
    background: #1261f4;
    color: #fff;
    transition: all 0.5s ease;
    opacity: 1;
        margin: 0px 0px 0px 10px;
}

.blue_btn:hover {
    opacity: 0.8;
    color: #fff !important;
    transition: all 0.5s ease;
}
.f-actions {
    padding-top: 15px;
}


/*Cart page CSS ends*/