@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

*{
	outline:none;
	padding:0px;
	margin:0px;
}
body{
    margin: 0px;
    padding: 0px;
    font-family:'Lato', sans-serif;
    color:#3b3c3d;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 25px;
    background: #fafafa;
} 

html {
  height: 100%;
}
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
  
.clear{ clear:both; }

.logo {
    text-align: left;
}

#loadingMessage {
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #ccc;
    top: 0px;
    left: 0px;
    position: absolute;
}

a {
    color: #E8171F;
}
p {
    color:#3b3c3d;
    font-size: 1rem;
    font-weight: 500;
    margin: 10px auto;
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
}
img{
	max-width:100%;
}
 
header.topheader {
    background: #fff;
    -webkit-box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    padding: 10px 0px;
    position: relative;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
    z-index: 9;
}
header.topheader .navbar {
    padding: 0;
} 

.wrapper{
    width: 100%;
    /* height: 100%; */
    min-height: 100vh;
    position: relative;
    margin: auto;
    display: table;
    background: #E8171F url('../img/hero-img.jpg') no-repeat top left;
    background-size: cover;
    padding: 10px 0;
}  

.site-wrapper-inner {
    display: table-cell;
    vertical-align: middle;
}


.hero-txt {
    margin: 10px auto;
    background: rgb(255 255 255 / 0.9);
    padding: 10px 10px;
    position: relative;
}
.hero-txt h1 {
    color: #000;
    font-family:'Lato', sans-serif;
    font-weight: 800;
    font-size: 2.0rem;
    position: relative;
    border-left: 8px #E8171F solid;
    padding-left: 15px;
} 

.hero-txt h4 {
    color: #3b3c3d;
    font-size: 1.1rem;
    margin: 1rem 0;
    line-height: 1.2;
    font-weight: 600;
} 
 

#loginFormPanel, #forgotpassword {
    display: none;
}
#login_regMsgBox, #regMsgBox, #forgot_regMsgBox {
    margin-bottom: 0px;
    display: none;
    clear: both;
}
 
.registrationForm {
    padding: 20px 20px;
    position: relative;
    color: #3b3c3d;
    background: rgb(255 255 255 / 0.9);
    margin: 10px auto;
}
.formBox label {
    margin: auto;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}
.formBox h4 {
    color: #E8171F;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.7rem;
}
.formBox h4 span {
    display: block;
    font-size: 1rem;
    line-height: normal;
    font-weight: 400;
    color: #000;
}

.formBox a {
    text-decoration: none;
    color: #337ab7;
    white-space: nowrap; 
}
.accounttext {
    color: #3b3c3d;
    font-weight: 400;
    font-size: 17px;
    text-align: left;
    padding: 10px 0 0;
}
.forgotpwd {
    text-align: left;
    /*padding-top: 10px;*/
}

.form-control {
    background: #fff;
    height: 42px;
    color: #000;
    font-weight: 400;
    display: block;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.1s ease-in-out;
    font-size: 13px;
}


.form-control:focus {
    border: 1px solid #66afe9;
    outline: none;
   -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.customcheckbox {
    display: block;
}
.customcheckbox label{
  margin: 5px auto;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: normal;
  vertical-align: middle;
}
 

/* Hide the browser's default checkbox */
.customcheckbox input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
 

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -1px;
  left: 0px;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px #D4DDE0 solid;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute; 
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    text-align: center;
    line-height: 19px;
    font-size: 11px;
    color: #E8171F;
    left: 2px;
    display: none;
}

  /**** radio button *************/
 
 /* The container */
.customradio label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin: 10px 5px 10px 5px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.customradio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}  

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px #D4DDE0 solid;
}

/* On mouse-over, add a grey background color */
.customradio:hover input ~ .radiomark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.customradio input:checked ~ .radiomark {
  background-color: #fff;
  border-color: #E8171F;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
  content: "";
  position: absolute; 
}

/* Show the indicator (dot/circle) when checked */
.customradio input:checked ~ .radiomark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.customradio .radiomark:after {
	content: '\f111';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: block;
	text-align: center;
	line-height: 19px;
	font-size: 10px;
	color: #E8171F;
	left: 4px;
	display: none;
}

.btn-primary {
    background: #E8171F;
    border-color: #E8171F;
    padding: 0.45rem 1.5rem;
    border-radius: 0px;
    font-size: 1.1rem; 
    margin: 10px 0px;
    font-weight: 600; 
    color:#fff;
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #c5141a;
    border-color: #c5141a;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff !important;
    background-color: #c5141a !important;
    border-color: #c5141a !important;
    -webkit-box-shadow: 0 0 0 0.2rem rgb(235 58 65 / 50%) !important;
    box-shadow: 0 0 0 0.2rem rgb(235 58 65 / 50%) !important;
}


.btn-secondary {
     background: #fff;
    border-color: #E8171F;
    padding: 0.45rem 1.5rem;
    border-radius: 0px;
    font-size: 1.1rem; 
    margin: 0px 0px;
    font-weight: 600; 
    color:#E8171F;
}
.btn-secondary:hover,
.btn-secondary.focus, .btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active, 
.btn-secondary:not(:disabled):not(.disabled):active, 
.show>.btn-secondary.dropdown-toggle{
    color: #fff;
    background-color: #c5141a;
    border-color: #c5141a;
}

.btn-secondary.focus, .btn-secondary:focus {
    color: #fff !important;
    background-color: #c5141a !important;
    border-color: #c5141a !important;
    -webkit-box-shadow: 0 0 0 0.2rem rgb(235 58 65 / 50%) !important;
    box-shadow: 0 0 0 0.2rem rgb(235 58 65 / 50%) !important;
}
 
.select-language {
    text-align: right;
    position: relative;
}

.select-language span {
    display: inline-block;
    margin: 3px 3px;
}

.select-language span a {
    background: #E8171F;
    padding: 6px 10px;
    color: #fff;
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.select-language span a:hover {
    background: #c5141a;
}


.top-menu .navbar-nav > li > a {
	color: #000 !important;
	padding: 5px 20px;
	margin-right:10px;
	font-size: 15px;
	text-align: center;
	border: 0; 
	background: transparent;
	border-bottom:2px transparent solid;
	border-radius: 2px;
	font-weight: 400;
}
.top-menu .navbar-nav > li.active > a, 
.top-menu .navbar-nav > li > a:focus, 
.top-menu .navbar-nav > li > a:hover {
    background: transparent;
    color: #E8171F !important;
	border-bottom:2px #E8171F solid;
    outline: none;
} 

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 0px 0 0; /* Height of navbar */
  background:#E8171F;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  text-align: center;
  -webkit-transition: 0.25s all ease-in-out;
  -moz-transition: 0.25s all ease-in-out;
  -ms-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}



.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 0px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
} 

.user-leftPanel {
    padding: 10px 20px;
    position: relative;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -ms-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
}

.user-img img {
    border: 5px rgb(221 221 221 / 54%) solid;
    border-radius: 100%;
    width: 100px;
    height: auto;
    max-width: 100%;
    object-fit: fill;
    -o-object-fit: cover;
}

h3.welcomeMsg {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 0;
    font-weight: 400;
}
h3.welcomeMsg span {
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    padding-top: 5px;
}
 

.stats {
    background: #fff;
    padding: 10px 10px;
    margin: 20px auto;
    text-align: center;
}

.stats-block {
    text-align: center;
    vertical-align: middle;
    color: #3b3c3d;
}

.stats-block h3 {
    margin: 8px auto;
    color: #000;
    font-weight: 700;
    font-size: 1.30rem;
}

.stats-block h5 {
    font-size: 14px;
    font-weight: 400;
}

.user-leftPanel p {
    color: #fff;
}
.progress-meter {
    position: relative;
    text-align: center;
    margin: auto;
    display: inline-block;
}

.tracker_value {
    width: 200px;
    height: 200px;
    margin: 0px auto;
    display: inline-block;
    position: relative;
    text-align: center;
    max-width: 100%;
}
svg.radial-progress {
  height: auto;
  width: 200px;
  max-width: 100%;
}

/*svg.radial-progress circle {
  fill: rgba(0,0,0,0);
  stroke: #fcdede;
  stroke-dashoffset: 140;  
  stroke-width: 8px;
  stroke-linecap: round;
}

svg.radial-progress circle.incomplete {
    opacity: 1;
    stroke: #fcdede !important;
}

svg.radial-progress circle.complete {
  stroke-dasharray: 200;  
  stroke: #000000;
} */
 
.radial-progress .track,
.radial-progress .fill{
    fill: rgba(255, 255, 255, 0);
    stroke-width: 5px;
    transform: rotate(90deg)translate(0px, -80px);
}
.radial-progress .track{
    stroke: #fcdede;
}
.radial-progress .fill {
    stroke: rgb(255, 255, 255);
    stroke-dasharray: 220;
    stroke-dashoffset: -219.99078369140625;
    transition: stroke-dashoffset 1s;
    stroke: rgb(0, 0, 0);
  stroke-linecap: round;
}
.radial-progress .value{
    fill: rgb(0, 0, 0);
    text-anchor: middle;
}

.radial-progress.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    margin: auto;
}

.level-info {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 10px;
    bottom: 0;
    padding: 25px 30px;
}
 
.star-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    text-align: center;
    margin: auto;
}
 

.level-info h3 {
    margin: 10px auto;
    font-size: 1.0rem;
    font-weight: 700;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}
.level-info h6 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    text-align: center;
    color: #fff;
}

.progress-meter h4 {
    font-weight: 500;
    font-size: 1.0rem;
    margin: 15px auto;
    color: #fff;
    display: block;
    clear: both;
}

.contentpanel {
    padding: 20px 0;
    position: relative;
	flex: 1;
    vertical-align: top;
}

.nav-tabs.activity-tabs {
    display:none;
    border: 0;
    flex-wrap: wrap;
}
.getpoints {
    /*padding: 20px 0;*/
    position: relative;
}
.activity-tabs li.nav-item {
    width: 33%;
    display: flex;
}

.activity-box {
    position: relative;
    margin: 20px 10px;
    text-align: center;
    background: #ffffff;
    border-radius: 0px !important;
    border: 1px solid #ddd !important;
    color: #000;
    text-decoration: none;
    vertical-align: middle;
    line-height: 90px;
    box-shadow: -2px 2px 0 0 rgb(111 111 111 / 10%);
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -ms-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 1em;
    width: 100%;
}
.activity-box:hover, 
.activity-box .nav-item.show .nav-link, 
.activity-box.nav-link.active{
    background: #e8e8e8;
    color: #000;
    border: 1px #ddd solid !important;
    box-shadow: -2px 2px 0 0 rgb(111 111 111 / 0%);
}

.activity-box.nav-link.active:after{
    content: "";
    border-top: 16px solid #e8e8e8;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    width: 0;
    height: 0;
    text-align: center;
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -16px;
    border-radius: 2px;
}

.activity-box:hover > h3, 
.activity-box .nav-item.show .nav-link > h3, 
.activity-box.nav-link.active > h3,
.activity-box:hover > h5, 
.activity-box .nav-item.show .nav-link > h5, 
.activity-box.nav-link.active > h5 { 
     color: #000 !important;
}

.activity-box h3 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    flex: 1 0 auto;
}

.activity-box img {
	width: 90px; 
	max-width: 100%;
	position: relative;
	margin: 20px auto;
}

.activity-box h5 {
    color: #3b3c3d;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 1rem auto;
}

.getpoints .card {
    width: 97%;
    margin: auto;
    border:0px;
}

.getpoints .card-body {
    border: 1px #cccccc solid;
    border-top: 2px #E8171F solid;
}
.getpoints .card-body ol {
    padding-left: 20px;
}

.getpoints .card-body ol li {
    padding: 5px 0;
}

span.iconstyle {
    display: inline-block;
    font-size: 40px;
    color: #E8171F;
    font-weight: 400;
}

.lexis-title {
    text-align: center;
    position: relative;
}

.lexis-title h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}

.badges-info {
    padding: 10px 0px;
    position: relative;
}

.badges-info h5 {
    color: #000;
    margin:auto;
    font-size: 1.2rem;
    font-weight: 600;
}
.badges-info ul{
	margin: 10px 0px;
	color: #000;
	padding-left: 18px;
}
.badges-info ul li {
    font-size: 14px;
    padding: 3px 0;
    font-weight: 400;
}

.shortlink {
    border: 1px solid #ddd;
    position: relative;
    margin: 0px;
    width:400px;
    border-radius: 3px;
}

.shortlink span {
    float: right;
    background: #E8171F;
    display: inline-block;
    padding: 8px 10px;
    font-size: 12px;
    color: #fff;
    border: 1px #E8171F solid;
    border-bottom: 0;
}

.shortlink h5 {
    margin: auto;
    display: inline-block;
    padding: 11px 15px;
    color: #3b3c3d;
    font-size: 1rem;
    font-weight: 400;
}


.social-media span {
	width: 50px;
	height: 50px;
	border: 1px #E8171F solid;
	border-radius: 100%;
	margin: 10px 10px;
	background: #fff;
	display: block;
	text-decoration: none;
	color: #E8171F;
	font-size: 1.3rem;
	font-weight: 900;
	line-height: 50px;
}

.social-media {
    margin: 20px 0;
    position: relative;
    font-size: 14px;
}

.social-media a {
    display: inline-block;
    text-align: center;
    color: #000;
    margin-right: 20px;
}

.mid-block{
	width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    margin: 1rem auto;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    display: inline-block;
}

h2.heading {
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    position: relative;
    border-left: 8px #E8171F solid;
    padding-left: 15px;
    margin: 0.5rem 0 1.4rem 0;
}

.points-block ul, .about-content ol {
    padding-left: 20px;
    margin: 1rem 0;
}

.points-block ul li, .about-content ol li {
    padding: 5px 0;
}
.about-content h4 {
    font-size: 1.0rem;
    font-weight: 600;
    color: #000;
}

.points-table {
    margin: 1rem auto 0;
    position: relative;
    display: inline-block;
    width: 100%;
}
.points-table table {
    border: 1px #ddd solid;
    background: #fff;
    position: relative;
    z-index: 99;
}


.points-table .table thead th {
    background: #3b3c3d;
    color: #fff; 
    font-weight:500;
    font-size:14px;
    text-transform: uppercase;
    padding: .75rem .75rem;
    text-align:center;
}

.points-table .table td {
    font-weight: 400;
    color: #3b3c3d;
    font-size: 0.9rem;
    text-align:center;
} 
.table-striped tbody tr:nth-of-type(odd) {
    background: #F6F7F8;
}

hr {
    border-top: 1px solid #ddd;
    margin: 1.5rem auto;
}

.useraccount {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    margin: 1rem auto;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    display: inline-block;
}

.user-img img {
    border: 2px #ffffff solid;
    border-radius: 100%;
    max-width: 100%;
    object-fit: fill;
    -o-object-fit: fill;
    position: relative;
    width: 115px;
    height: 115px;
}
.user-img {
    display: inline-block;
    border: 2px #000 dashed;
    border-radius: 100%;
    width: 120px;
    height: 120px;
    /* max-width: 100%; */
    position: relative;
    margin: auto;
    text-align: center;
}

a.changephoto {
    color: #fff;
    text-decoration: none !important;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: #E8171F;
    border-radius: 100%;
    font-size: 14px;
    line-height: 32px;
}

.userinfo {
    color: #000;
    vertical-align: middle;
    padding-top: 20px;
}
.userinfo h2 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    margin:auto;
}

.userinfo h5 {
    font-size: 0.9rem;
    font-weight: 400; 
    padding:6px 0px;
} 

.badges-list ul {
    list-style: none;
    margin: 0;
}

.badges-list ul li {
    display: inline-block;
    text-align: center;
    padding: 5px 10px;
}

.badges-list ul li figcaption {
    font-weight: 500;
    color: #000;
    font-size: 13px;
}


.faqcontent{
	color: #3b3c3d;
	font-size: 15px;
	margin: 2em 0;
	text-align: left;
	font-weight: 400;
}
.faqcontent ol {
    margin: auto;
    padding: 0;
    list-style: none;
}
.faqcontent ol li {
    padding: 10px 0;
    color: #3b3c3d;
}

.faqcontent ul{
	list-style: disc;
	margin: auto;
	padding-left: 30px;
}
.faqcontent ul li {
    padding: 5px 0;
}
.faqcontent h5 {
    font-size: 1.2rem;
    line-height: normal;
    font-weight: 700;
    text-align: left;
    color: #000;
} 

.leaderboard-block ul {
    list-style: none;

}

.leaderboard-block ul li {
    position: relative;
    margin:10px auto;
    text-align: left;
    background: #ffffff;
    border-radius: 0px !important;
    border: 1px solid #ddd;
    color: #000;
    text-decoration: none;
    vertical-align: middle;
    box-shadow: -2px 2px 0 0 rgb(111 111 111 / 10%);
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -ms-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    display: block;
    padding: 1em 2rem;
    width: 100%;
    border-left: 3px #E8171F solid;
}

h4.lb-name {
    font-size: 1.0rem;
    font-weight: 600;
    margin: auto;
}

h4.lb-name span.lb-points {
    display: block;
    font-size: 0.9rem;
    padding-top: 10px;
    color: #E8171F;
} 

.lb-rank {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
}

h5.lb-university {
    text-align: right;
    font-size: 1rem;
    font-weight: 500;
}

.note {
    font-size:13px;
    color: #e9e5e5;
    font-weight: 500;
    margin: 10px auto 0;
    line-height:1.5rem;
    font-family: 'Lato', sans-serif;
    text-align:left;
}

footer#footer {
    width: 100%;
    background-color: #2f2f2f;
    text-align: center;
    color: #eaeaea;
    padding: 15px 0;
    font-size: 13px;
    font-weight: 300;
}
 

.footerlinks {
    padding: 10px 0;
    position: relative;
}

.footerlinks a {
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
}


 
.feedback-ques {
    padding: 10px 0;
    position: relative;
}

.feedback-ques h4 {
   font-size: 1.0rem; 
    font-weight: 600;
    color: #000;
}

.feedback-ques ul {
    list-style: none;
}

.feedback-ques ul li {
    padding: 4px 4px;
    position: relative;
    font-size: 1rem;
    font-weight:300;
    vertical-align: middle;
}

.feedback-ques ul li label {
    font-size: 1rem;
    font-weight:300;
}

 
.terms{
	color: #3b3c3d;
	font-size: 15px;
	margin: 2em 0;
	text-align: left;
	font-weight: 400;
}
.terms h4 {
    font-size: 1.1rem;
    line-height: normal;
    font-weight: 700;
    text-align: left;
    color: #000;
    text-transform: uppercase;
} 

.terms ul{
	list-style: disc;
	margin: auto;
	padding-left: 15px;
}
.terms ul li {
    padding: 8px 0;
    color: #3b3c3d;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    font-family: 'Lato', sans-serif;
}

.terms ol {
    margin: auto;
    padding-left: 20px;
}
.terms ol li { 
    color: #3b3c3d;
    padding: 5px 0;
}
.terms h5 {
    font-size: 1.0rem;
    line-height: 1.5rem;
    font-weight: 600;
    text-align: left;
    color: #000;
}

.trivia-content {
    padding: 10px 0;
    position: relative;
}

.trivia-content h3.quiz_ques {
    font-size: 1.0rem;
    font-weight: 600;
    color: #000;
}

.trivia-content ol li{
     font-size: 1.0rem;
    font-weight: 600;
    color: #000;
}
.trivia-content ol li ol li{
     font-weight:500;
}

.trivia-content ol li ol li.selected, 
.trivia-content ol li ol li:hover {
    background: #f5e1e1;
    padding: 5px 5px;
}

#divOtherInput .form-control {
    position: relative;
    width: 100% !important;
    height: 42px !important;
    opacity: 1;
    margin-top: 10px;
}

.loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background:#e8e8e8;
    z-index: 999;
    text-align: center;
}

.loading-ui {
    margin-top: 10%;
}

.loading-ui p {
    font-size: 25px;
    margin: 40px 0px;
    color: #000;
}

.winner-list ul {
    list-style: none;
    padding: 0px;
    flex-flow: wrap;
    display: flex;
}

.winner-box {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
}

.winner-list ul li {
    border: 1px solid #ddd !important;
    color: #000;
    text-decoration: none;
    box-shadow: -2px 2px 0 0 rgb(111 111 111 / 10%);
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -ms-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    margin: 0.5rem auto;
    padding: 10px 10px;
    border-radius: 10px;
    background: #f7f7f7;
    display: flex;
    gap: 20px;
    vertical-align: middle;
    width: calc(33% - 20px);
    align-items: stretch;
    float: left;
    box-sizing: border-box;
}

.winner-box h5 {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #E8171F;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.winner-box h4 {
    display: inline-block;
    padding-left: 15px;
    font-size: 1rem;
    font-weight: 600;
    vertical-align: middle;
    flex: 1;
    flex-wrap: wrap;
}
 
.winner-box h4 span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    padding-top: 8px;
}


.reward-card ul {
    list-style: none;
    margin: auto;
    padding: 0;
}
.reward-card li {
     position: relative;
     margin: 10px 5px;
     text-align: left;
     background: #ffffff;
     border-radius: 0px !important;
     border: 1px solid #ddd !important;
     color: #000;
     text-decoration: none;
     vertical-align: middle;
     box-shadow: -2px 2px 0 0 rgb(111 111 111 / 10%);
     -webkit-transition: 0.25s all ease-in-out;
     -moz-transition: 0.25s all ease-in-out;
     -ms-transition: 0.25s all ease-in-out;
     -o-transition: 0.25s all ease-in-out;
     transition: 0.25s all ease-in-out;
     padding: 10px 15px;
     display: inline-block;
}

figure.reward-icon {
    text-align: center;
}
figure.reward-icon img {
    width: 220px;
    margin: auto;
}

.reward-card .radiomark {
    top: auto;
    bottom: 0; 
}

.reward-card.customcheckbox label {
    padding: 0;
}
.reward-card h4{
	color: #000;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
   margin: 0rem auto;
    vertical-align: middle;
    padding-left: 30px;
}

.winner-conatiner{
    width: 100%;
    background: #01182D url('../img/circle-illustration.jpg') top right no-repeat;
    background-size: cover;
    padding: 20px 20px;
    margin: 1rem auto;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    display: inline-block;
    border-left: 8px #E8171F solid;
    text-align: center;
}
.winner-conatiner .lexis-title h1 {
    color: #fff;
}

.winner-txt p {
    color: #fff;
}
.winner-txt {
    padding: 1rem 3rem;
    text-align: center;
    color: #fff;
}

.winner-txt h4 {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.6;
    width: 70%;
    margin: 1rem auto;
}

.winner-txt a.link {
    display: inline-block;
    padding: 3px 10px;
    border: 2px #E8171F solid;
    border-radius: 50px;
    background: #E8171F;
    color: #fff;
    text-decoration: none;
    margin: 7px auto;
    width: 340px;
    max-width: 100%;
}
.winner-txt h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
    margin: 2rem auto;
}
.winner-table {
    margin: 1rem auto;
    position: relative;
    width: 100%;
}

.winner-table table {
    background: #ffffff;
    border: 1px solid #ddd !important;
    color: #000;
    text-decoration: none;
    vertical-align: middle;
    box-shadow: -2px 2px 0 0 rgb(111 111 111 / 10%);
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -ms-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
}

.winner-table thead tr th {
    background: #E8171F;
    color: #fff;
    vertical-align: middle;
    font-size: 15px;
    text-align: center;
    border: 1px #b30c13 solid;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.winner-table tbody tr td {
    vertical-align: middle;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    border: 1px #e4e4e4 solid;
}

.hero-txt h2.heading {
    margin: 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 800;
}


.hero-txt ul {
    padding-left:16px;
    margin:0;
}
.hero-txt ul li{
    padding:3px 0;
    color:#3b3c3d;
    font-size:14px;
    font-weight: 500; 
    line-height:24px;
    font-family: 'Lato', sans-serif;
} 
.all-tiers {
    width: 100%;
    background:#05192f url('../img/blue-bg.jpg') center right no-repeat;
	background-size:cover;
    padding: 20px 20px;
    margin: 1rem auto;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    display: inline-block;
    border-left: 8px #E8171F solid;
    text-align: center;
} 
.all-tiers h2.heading {
    color: #fff;
    border: 0;
    padding: 0;
}

.all-tiers p {
    color: #fff;
}
.tier-info {
    background: #fff;
    padding: 20px 20px;
    margin:10px auto;
    font-family: 'Lato', sans-serif !important;
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    border: 1px solid #ddd;
    /* border-left: 5px #E8171F solid; */
    box-shadow: -2px 2px 0 0 rgb(111 111 111 / 10%);
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -ms-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tier-info span {
    display: block;
    text-align: center;
    line-height: normal;
}

.tier-info span img {
    width: 60px;
}

.tier-info h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 800;
    color: #E8171F;
    margin: 1rem 0;
    text-align: center;
}
.tier-info ul {
    margin: 0;
    padding-left: 15px;
    width: 90%;
    list-style: none;
    text-align: center;
}
.tier-info ul li{
	padding:2px 0px;
	font-family: 'Lato', sans-serif;
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
}


.scale-wrap {
    padding: 1rem 0;
    position: relative;
}

 .scale-rating {
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0;
    display: table;
} 

.scale-rating ul li {
    border-left: 1px #e0e0e0 solid;
    transition: .3s;
    background: #f4f5f5;
    color: #000 !important;
    width: 55px;
    height: 45px;
    display: inline-block;
    text-align: center;
}
.scale-rating ul {
    list-style: none;
    margin: 0;
    width: auto;
    /* display: table; */
    border: 1px #e0e0e0 solid;
    background: #f4f5f5;
}

.scale-rating li.active-scale,
.scale-rating li:hover {
     background: #e8171f !important;
    color: #fff !important;
}
.scale-rating li.active-scale label{
	 color: #fff !important;
}

.scale-rating label {
    display: flex !important;
    width: 100%;
    font-size: 18px !important;
    justify-content: center;
    align-items: center;
    color: #000 !important;
    cursor: pointer;
    padding: 0 !important;
    font-weight: 500 !important;
    line-height: 30px;
	margin-left: -8px;
}
/*.scale-rating input[type='radio']:hover~label,
input[type='radio']:checked~label{
    background: #e8171f;
    color: #fff;
}*/

.scale-rating input[type='radio']:hover~label.active-scale, 
 input[type='radio']:checked~label.active-scale{
      background: #e8171f;
    color: #fff;
 }

.scale-wrap span {
    display: inline;
    font-size: 14px;
    color: #e8171f;
    font-weight: 500;
}

.scale-wrap span:nth-child(2) {
    float: right;
}

.input-hidden {
    visibility: hidden;
}

h5.modal-title {
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    position: relative;
    border-left: 8px #E8171F solid;
    padding-left: 15px;
    margin: 0.5rem 0 1.4rem 0;
}
button.btn-close {
    color: #000;
    font-size: 2rem;
    opacity: 1;
    text-shadow: none;
    box-shadow: none;
    border: 0;
    background: transparent;
}
.survey-block ol {
    padding-left: 20px;
	margin: auto;
}

.survey-block ol li {
    padding: 10px 0;
    position: relative;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin: auto;
}

.survey-block ol li h4 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}
.survey-block ol li h4 span {
    display: inline-block;
    position: relative;
}

.survey-block ol li .checkbox label,
.survey-block ol li .radio label {
    font-size: 15px;
    color: #000;
    vertical-align: middle;
}

.contact-detail h5 {
    font-size: 1rem;
    padding-top: 1rem;
}

.survey-tile {
    position: relative;
    margin: 20px 10px;
    text-align: center;
    background: #ffffff;
    border-radius: 0px !important;
    border: 1px solid #ddd !important;
    color: #000;
    text-decoration: none;
    vertical-align: middle; 
    box-shadow: -2px 2px 0 0 rgb(111 111 111 / 10%);
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -ms-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    padding: 1em 1rem;
    width: 100%;
}

.survey-tile h3 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
} 

.reward-winners .tier-info {
    border-top: 5px #E8171F solid;
	padding: 10px 10px;
}


.reward-winners .table thead th {
    border: 0;
    text-align: center;
}
.reward-winners .table td {
    vertical-align: middle;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    border: 1px #e4e4e4 solid;
    line-height: normal;
}
.reward-winners .col-lg-4 {display: flex;}


@media(min-width:991px) {
    .nav-tabs.activity-tabs {
        border: 0px !important;
        display:flex;
    } 

    .getpoints .card .card-header {
        display:none;
    }  
    .getpoints .card .collapse{
        display:block;
    }  
}
@media (max-width:991px) {
    .tab-content.activity-content > .tab-pane {
        display: block !important;
        opacity: 1;
        border: 0px !important;
        width: 100%;
        margin: auto;
    } 
    .activity-content .card-header {
		background: transparent;
		margin: auto;
		padding: 0;
		border: 0;
	}

	a.activity-box {
		display: block;
		margin: 20px auto;
		text-decoration: none;
		background: #e8e8e8;
		color: #0C1733;
		border-color: #ddd !important;
	}
	a.activity-box.collapsed{
		position: relative;
		text-align: center;
		background: #ffffff;
		border-radius: 0px !important;
		border: 1px solid #ddd !important;
		transition: all 0.2s ease-in-out;
		vertical-align: middle;
		line-height: 90px;
	}

	.activity-box:after{
		content: "";
		border-top: 16px solid #e8e8e8;
		border-left: 16px solid transparent;
		border-right: 16px solid transparent;
		width: 0;
		height: 0;
		text-align: center;
		position: absolute;
		bottom: -12px;
		left: 50%;
		margin-left: -16px;
		border-radius: 2px;
	}

	a.activity-box.collapsed:after {
		content: none;
	} 
	.winner-list ul li {
		width: calc(50% - 20px);
	}
}

@media (max-width:767px) {
	
	.sidebar {
		top: 16%;
	}
	.bg-dark.sidenav_mobile {
		width: 100%;
		background-color: #E8171F !important;
		margin-top: 10px;
	}

	.sidenav_mobile span.navbar-toggler-icon {
		background-image: none !important;
		display: block;
		width: 100%;
	}

	.sidenav_mobile button.navbar-toggler.d-md-none {
		border: 0px !important;
		width: 100%;
	}
	.sidenav_mobile span.navbar-toggler-icon:before{
		content: "\f067";
		position: absolute;
		top: 3px;
		left: 10px;
		font-size: 18px;
		color: #fff;
		text-align: center;
		line-height: 30px;
		font-family: "Font Awesome 5 Free";
		font-style: normal;
		font-weight: 900;
		display: inline-block;
	}
	.sidenav_mobile span.navbar-toggler-icon:after{
		content: " Profile";
		font-size: 17px;
		color: #fff;
		text-align: center;
		line-height: 30px;
		font-style: normal;
		font-weight: 400;
		display: inline-block;
		position: absolute;
		top: 3px;
		left: 40px;
		font-family:'Lato', sans-serif;
	}

	.sidebar-sticky {
		height: calc(100% - 0px);
	}
}
	