@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
	outline:none;
	padding:0px;
	margin:0px;
}
body{
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    color:#0C1733;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 25px;
} 
  
.clear{ clear:both; }

.logo {
    text-align: left;
}
 .logo img {
    width: 130px;
}

p {
    color:#0C1733;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 10px auto;
    line-height:1.4rem;
    font-family: 'Roboto', 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;
}
.wrapper{
    width: 100%;
    /* height: 100%; */
    min-height: 100vh;
    position: relative;
    margin: auto;
    display: table;
    overflow-x: hidden;
} 

.wrapper:before {
    content: '';
    height: 100%;
    width: 35vw;
    position: absolute;
    right: 0;
    top: 0;
    background: #df3b26 url('../img/background-stripes.png') no-repeat top right;
    background-size: cover;
    min-height: 100vh;
}


.site-wrapper-inner {
    display: table-cell;
    vertical-align: middle;
}


.hero-txt {
    margin: 2rem 0;
}
.hero-txt h1 {
    color: #0C1733;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 2.3rem;
    position: relative;
}

.hero-txt h1 span {
    display: block;
    line-height: normal;
}

.hero-txt h4 {
    color: #0C1733;
    font-size: 1.2rem;
    margin: 1rem 0;
    line-height: 1.5;
    font-weight: 400;
} 

.hero-img {
    /* position: relative; */
    /* z-index: 99; */
    overflow: hidden;
}

.hero-img:before {
    content: '';
    width: 513px;
    height: 570px;
    border-radius: 6px;
    position: absolute;
    top: 10%;
    right: -9vw;
    background: url('../img/blt_hero.jpg') no-repeat;
    background-size: contain;
    z-index: 999;
    overflow: hidden;
}

#loginFormPanel, #forgotpassword {
    display: none;
}
#login_regMsgBox, #regMsgBox, #forgot_regMsgBox {
    margin-bottom: 0px;
    display: none;  
    clear: both;
}
 
.registrationForm {
    padding: 20px 10px;
    position: relative;
    color: #0C1733;
}

.formBox h4 {
    color: #0C1733;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 1.7rem;
}
.formBox h4 span {
    display: block;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    line-height: normal;
    padding: 8px 0;
    font-weight: 400;
}

.formBox a {
    text-decoration: none;
    color: #0079C2;
    white-space: nowrap;
}
.accounttext {
    color: #0C1733;
    font-weight: 400;
    font-size: 17px;
    text-align: left;
    padding: 20px 0;
}
.forgotpwd {
    text-align: left;
    /*padding-top: 10px;*/
}

.form-control {
    background: #fff;
    height: 45px;
    color: #0C1733;
    font-weight: 400;
    display: block;
    padding: 8px;
    border: 1px solid #BCC6D2;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.1s ease-in-out;
    font-size: 13px;
}


.form-control:focus {
    border: 1px solid #0C1733;
    outline: none;
    box-shadow: none;
}

.customcheckbox {
    display: block;
}
.customcheckbox label{
  margin: 5px auto;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 13px;
  -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: #DF3B26;
    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: #DF3B26;
}

/* 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: #DF3B26;
	left: 4px;
	display: none;
}

.btn-primary {
    background: #0C1733;
    border-color: #0C1733;
    padding: 0.45rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    margin: 10px 0px;
    font-weight: 600;
    min-width: 140px;
    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: #0C1733;
    background-color: #9dc7e0;
    border-color: #9dc7e0;
}

.btn-primary.focus, .btn-primary:focus {
    color: #0C1733;
    background-color: #9dc7e0;
    border-color: rgba(82 94 133 / 0.44);
    box-shadow: 0 0 0 0.2rem rgba(82 94 133 / 0.22);
}


.btn-secondary {
    background: #9dc7e0;
    border-color: #9dc7e0;
    padding: 0.45rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    margin: 10px auto;
    font-weight: 600;
    min-width: 140px;
    color:#fff;
}
.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: #0C1733;
    border-color: rgba(82 94 133 / 0.44); 
}

.btn-secondary.focus, .btn-secondary:focus {
    color: #fff;
    background-color: #0C1733;
    border-color: rgba(82 94 133 / 0.44);
    box-shadow: 0 0 0 0.2rem rgba(82 94 133 / 0.22);
}
 
.head-banner{
	width: 100%;
	/* height: 300px; */
	padding: 20px 0;
	background: url('../img/head-banner.jpg') no-repeat top left;
	background-size:cover;
	position: relative;
	margin: auto;
} 

.banner-text {
    color: #fff;
    display: inline-block;
    background: rgb(12 23 51 / 80%);
    padding: 20px 20px;
    margin: 2rem 0;
}

.banner-text h1 {
    font-size: 2.7rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
}

  .banner-text h4 {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.banner-text p {
    color: #fff !important;
}
.top-menu .navbar-nav > li > a {
	color: #0C1733 !important;
	padding: 5px 22px;
	margin-right:10px;
	font-size: 16px;
	text-align: center;
	border: 0;
	font-family: 'Archivo', sans-serif;
	background: transparent;
	border-radius: 2px;
	font-weight: 500;
}
.top-menu .navbar-nav > li.active > a, 
.top-menu .navbar-nav > li > a:focus, 
.top-menu .navbar-nav > li > a:hover {
    background: #9DC7E0;
    color: #0C1733 !important;
    outline: none;
} 

.contentpanel {
    padding: 20px 0;
    position: relative;
}

h2.heading {
    text-align: center;
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    color: #0C1733;
    margin: 1rem auto;
    font-weight: 600;
}


.work-wrap {
    padding: 20px 0;
}

.work-box {
    margin: 10px 10px;
    position: relative;
    text-align: left;
}

.work-icon img {
    width: 90px;
}

.work-box h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.3rem;
    margin: 1rem 0;
    font-weight: 600;
}

footer {
    background: #0C1733;
    padding: 10px 0;
    text-align: center;
    position: relative;
}

.copywrite {
    padding: 10px 10px;
    color: rgb(255 255 255 / 70%);
    font-size: 0.8rem;
    font-weight: 300;
}

.nav-tabs.activity-tabs {
    display:none;
    border: 0;
}

.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: rgb(237 244 249 / 0.20);
    border-radius: 5px !important;
    border: 1px #BCC6D2 solid !important;
    transition: all 0.2s ease-in-out;
    color: #0C1733;
    text-decoration: none;
    vertical-align: middle;
    line-height: 90px;
	display: flex;
    flex-direction: column;
    width: 100%;
}
.activity-box:hover, 
.activity-box .nav-item.show .nav-link, 
.activity-box.nav-link.active{
    background: #EDF4F9;
    color: #0C1733;
    border-color: #DDE7EE !important;
}

.activity-box.nav-link.active:after{
    content: "";
    border-top: 16px solid #EDF4F9;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    width: 0;
    height: 0;
    text-align: center;
    position: absolute;
    bottom:-16px;
    left: 50%;
    margin-left: -16px;
    border-radius: 2px;
}

.activity-box.completed { 
    opacity: 0.4;
    filter: alpha(opacity=40); 
    background: rgba(0 0 0 / 0.23) !important; 
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
}

.activity-box.completed:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    text-align: center;
    font-size: 15px;
    color: #fff;
    width: 30px;
    height: 30px;
    background: #DF3B26;
    border-radius: 100%;
    line-height: 30px;
    position: absolute; 
    opacity: 1;
    z-index: 99;
}
.activity-box.completed.nav-link.active:after {
    /* opacity: 0.4; */
    filter: alpha(opacity=40);
    border-top-color: rgba(0 0 0 / 0.23) !important; 
}

.activity-box:hover > h3, 
.activity-box .nav-item.show .nav-link > h3, 
.activity-box.nav-link.active > h3 { 
     color: #0C1733 !important;
}

.activity-box h3 {
    color: #0C1733;
    font-size: 1.3rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
}

.activity-box img {
	width: 90px; 
	max-width: 100%;
	position: relative;
	margin: 20px auto;
}

.activity-box h5 {
    color: #0C1733;
    font-weight: 400;
    font-size: 1rem;
    margin: 1rem auto;
}

.getpoints .card {
    width: 97%;
    margin: auto;
    border:0px;
}

.getpoints .card-body {
    border: 1px #C5D3DD solid;
    border-top: 2px #C5D3DD solid;
}
.getpoints .card-body h4 {
    text-align: left;
    font-size: 1.3rem;
}
.social-media {
    margin: 10px auto;
    position: relative;
}

.social-media a {
    border: 1px #9DC7E0 solid;
    border-radius: 3px;
    margin: 10px 10px;
    background: #fff;
    display: inline-block;
    padding: 0px 20px 0px 0px;
    text-decoration: none;
    color: #0C1733;
    font-size: 1.0rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
}


.social-media a span {
    width: 40px;
    height: 40px;
    background: #9DC7E0;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    border-radius: 3px 0px 0px 3px;
}
 

.social-media a:hover {
    border-color: #0C1733;
}


.share-block {
    padding: 20px 0;
    position: relative;
}

.social-icon {
    text-align: center;
    margin: 10px auto;
}
 

.social-icon a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: #0C1733;
}
.social-icon a i {
    width: 40px;
    height: 40px;
    background: #9DC7E0;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    border-radius: 3px 0px 0px 3px;
}
.social-icon h5 {
     color: #0C1733;
     font-size: 1.0rem;
     font-family: 'Archivo', sans-serif;
     font-weight: 600;
     margin: 1rem auto;
}


h5.quesno {
    font-size: 1rem;
    font-weight: 400;
    padding: 10px 0;
    color: #DF3B26;
}

.trivia-ques {
    padding: 10px 0;
    position: relative;
}

.trivia-ques h4 {
   font-size: 1.3rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    color: #0C1733;
}

.trivia-ques ul {
    list-style: none;
}

.trivia-ques ul li {
    padding: 4px 4px;
    position: relative;
    font-size: 1rem;
    font-weight:300;
}

.trivia-ques ul li label {
    font-size: 1rem;
    font-weight:300;
}

.result-screen {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.result-screen h1 {
    color: #DF3B26;
    font-weight: 600;
    font-size: 2.2rem;
    padding: 10px 0;
}

.bravo-icon img {
    width: 100px;
}

.next-ques span {
    display: inline-block;
    margin-right: 10px;
}

.useraccount {
    width: 100%;
    background: rgb(237 244 249 / 20%);
    border-radius: 10px;
    padding: 25px 25px;
    margin: 20px 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;
    border: 1px #EDF4F9 solid;
    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 #DF3B26 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: #DF3B26;
    border-radius: 100%;
    font-size: 14px;
    line-height: 32px;
}

.userinfo {
    color: #0C1733;
    vertical-align: middle;
    padding-top: 20px;
}
.userinfo h2 {
    color: #0C1733;
    font-size: 1.6rem;
    font-weight: 500; 
    margin:auto;
    font-family: 'Archivo', sans-serif;
}

.userinfo h5 {
    font-size: 0.9rem;
    font-weight: 400; 
    padding:6px 0px;
}  

.faqcontent { 
    width: 100%;
    margin:2rem auto;
}
 
.faqcontent .accordion>.card {
    margin: 10px auto;
    border: 1px #EDF4F9 solid;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
}

.faqcontent .accordion>.card>.card-header {
    border: 0px !important;
    background: #EDF4F9;
    padding: 20px 20px;
    cursor: pointer;
}

.faqcontent .accordion>.card>.card-header h4 {
    font-size: 1.1rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    color: #0C1733;
    width: 92%;
    margin: 0;
    text-align: left;
    line-height: 1.6rem;
}


.faqcontent .accordion>.card>.card-header h4:before, 
.faqcontent .accordion>.card>.card-header h4.collapsed:before {
    content: "";
    position: absolute;
    top: 10px;
    right:15px;
    font-size: 14px;
    color: #0C1733;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    font-family:"Font Awesome 5 Free";
    font-style:normal;
    font-weight:900;
    display: inline-block;
}
.faqcontent .accordion>.card>.card-header h4:before{
    content: "\f078";
}
.faqcontent .accordion>.card>.card-header h4.collapsed:before{
    content:'\f054';
}
.faqcontent .card-body {
    border: 0px;
    text-align: left;
} 

.stats-wrap {
    padding: 20px 0;
    position: relative;
}

.stat-box {
    text-align: center;
    background: #EDF4F9;
    margin: 10px auto;
}

.stat-box h4 {
    background: #0C1733;
    padding: 7px 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    padding: 12px 10px;
}

.stat-box h3 {
    color: #0C1733;
    margin: auto;
    padding: 20px 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}
 
.points-table {
    margin: 10rem auto 3rem;
    position: relative;
}
.points-tabs {
    border: 0;
    background: #9DC7E0;
    text-align: center;
    margin: auto;
    width: 100%;
    padding: 10px 10px 0px;
}

.points-tabs.nav-tabs>li {
    border: 0;
    margin-bottom: 0;
}

.points-tabs.nav-tabs>li>a {
    color: #fff;
    font-size: 1rem;
    letter-spacing: normal;
    font-weight: 500;
    background: transparent;
    padding:10px 20px;
    text-decoration: none;
    margin-right: 5px;
    border-radius: 0px !important;
    text-transform: uppercase;
    border: 0px;
    border-bottom:3px transparent solid;
}
.points-tabs.nav-tabs .nav-item.show .nav-link, 
.points-tabs.nav-tabs .nav-link.active,
.points-tabs.nav-tabs .nav-link:focus, 
.points-tabs.nav-tabs .nav-link:hover {
    border: 0px;
    color: #0C1733;
    background: transparent;
    border-bottom:3px #0C1733 solid;
}

.points-table table {
    border: 1px #D5DBE3 solid;
    background: #F6F7F8;
    position: relative;
    z-index: 99;
}


.points-table .table thead th {
    background: #F6F7F8;
    color: #0C1733;
    font-family: 'Archivo', sans-serif;
    font-weight:500;
    font-size:14px;
    text-transform: uppercase;
    padding: .85rem .75rem;
}

.points-table .table td {
    font-weight: 400;
    color: #212124;
    font-size: 0.9rem;
}


.table-striped tbody tr:nth-of-type(odd) {
    background: #fff;
}

.layout-table {
    position: relative;
    margin: 10px auto;
	z-index: 99;
}
.layout-table:after {
    content: '';
    width: 137px;
    height: 200px;
    background: url(../img/blt_accent_1@4x.png) no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -40px;
    right: -65px;
	z-index:-1;
}

.reward-sec {
    background: #ECF4F9;
    position: relative;
    z-index: 1;
    margin: 2rem auto 5rem;
    padding: 30px 0;
}
  
.reward-sec::after {
    content: "";
    width: 100%;
    height: 36%;
    position: absolute;
    /* bottom: 0;
      top: 0; */
    right: 0;
    left: 0;
    z-index: -1;
    background: #ECF4F9;
    -webkit-transform: skewY(364deg);
    -moz-transform: skewY(364deg);
    -ms-transform: skewY(364deg);
    -o-transform: skewY(364deg);
    transform: skewY(364deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -webkit-transform-origin: 100%;
    -moz-transform-origin: 100%;
    -ms-transform-origin: 100%;
    -o-transform-origin: 100%;
    transform-origin: 100%;
}

.reward-group {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 10px 0px;
}

.reward-group ul.nav.nav-tabs {
    border: 0;
    width: 22%;
    display: inline-block;
    vertical-align: top;
}

 

.tab-content.reward-content {
    margin: 0px auto;
    width: 70%;
    display: inline-block;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
    vertical-align: top;
    margin-left: 40px;
}

.reward-group .nav-tabs .nav-item {margin: 10px 0;}

.reward-group .nav-tabs .nav-link {
    background: #FFFFFF;
    border: 0px !important;
    border-radius: 3px;
    margin: 2px auto;
    display: block;
    padding: 10px 15px;
    color: #0C1733;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 0 0px 2px 0 rgb(0 0 0 / 16%);
    position: relative;
    z-index: 9;
	text-decoration: none;
}

.reward-group .nav-tabs .nav-item.show .nav-link, 
.reward-group .nav-tabs .nav-link.active,
.reward-group .nav-tabs .nav-link:focus, 
.reward-group .nav-tabs .nav-link:hover {
    background: #DF3B26;
    color: #fff;
    border: 0;
}

.reward-group .nav-tabs .nav-link.active:after{
    content: "";
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #DF3B26;
    width: 0;
    height: 0;
    text-align: center;
    position: absolute;
    top: 12px;
    right: -10px;
    margin-left: -16px;
    border-radius: 2px;
    z-index: -1;
}

.reward-content .card {
    border: 0px;
    background: transparent;
}

.reward-content .card-body {padding: 0;}

.reward-group .card-body .col-md-4.col-xs-6 {
    display: flex;
}

.reward-card {
    margin: 10px auto;
    background: #fff;
    padding: 20px 20px 10px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.reward-card h3 {
    color: #0C1733;
    font-weight: 500;
    font-size: 1.2rem;
    margin: 1rem auto;
    flex: 1 0 auto;
}

.reward-card h4 {
    font-weight: 300;
    font-size: 1.2rem;
}
 .terms {
	 font-size: 18px;
    text-align: left; 
    margin: 2em 0;
    font-weight: 300;
}

.terms h4 {
   font-size: 1.1rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    color: #0C1733;
    text-align: left; 
    text-transform:uppercase;
}
.terms ol, .terms ul{
    padding-left: 25px;
    color: #0C1733;
}
.terms li {
    padding-bottom: 12px;
       color: #0C1733;
    font-size1rem;
    font-weight:700;
    margin: 10px auto;
    line-height: 1.4rem;
}
.terms li p{
    color: #0C1733;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 10px auto;
    line-height: 1.4rem;
}
.terms ul {
    list-style-type: disc;
}

.points-table.activity-table {
    margin: 3rem auto 3rem;
} 

.bootstrap-select .dropdown-menu li a {
    color: #0C1733 !important;
    font-size: 0.9rem;
    font-weight: 300 !important;
    margin: 0px auto;
    line-height:1.4rem;
    font-family: 'Roboto', sans-serif;
    padding: 9px 15px;
    background: #fff;
    display: block;
}

.bootstrap-select .dropdown-menu li.selected a {
    background: #EDF4F9;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    top: 10px;
    width: 25px;
    height: 20px;
    background: #fff;
    border: 1px #D4DDE0 solid;
    text-align: center;
}

.bootstrap-select .bs-ok-default:after {
    color: #DF3B26;
    text-align: center;
    margin: auto;
}

.bootstrap-select>.dropdown-toggle {
    background-color: #fff !important;
    height: 45px;
    color: #0C1733 !important;
    font-weight: 400;
    padding: 12px 10px;
    border: 1px solid #BCC6D2 !important;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.1s ease-in-out;
    font-size: 13px;
}

.bootstrap-select .dropdown-toggle:focus, 
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    border: 1px solid #0C1733;
    outline: none;
    box-shadow: none;
}

.text-center {
    text-align: center;
}

.showcorrect-ans {
    display: block;
    text-align: left;
    padding: 14px;
    border: 1px #C5D3DD solid;
    background: #fff;
    margin: 10px auto;
    width: 80%;
}

.showcorrect-ans h4 {
    background: #EDF4F9;
    padding: 10px 10px;
    font-size: 1.1rem !important;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
    color:#0C1733;
}
.result_question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #DF3B26;
}

.result_answer {
    border-bottom: 2px #C5D3DD solid;
    padding: 5px 0;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu .collapse:not(.show){
    display:none;
}

.bootstrap-datetimepicker-widget a[data-action] i.fa-clock-o.fa:after {
    content: '\f017';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    text-align: center;
 }

.bootstrap-datetimepicker-widget a[data-action] {
    background: #EDF4F9;
}

.timepicker-picker a.btn {
    padding: 0;
    line-height: normal !important;
}

.timepicker-picker button.btn.btn-primary {
    min-width: auto;
    border-radius: 2px;
    font-size: 1rem;
}
.input-group-text {
	border-radius: 0;
	border: 1px solid #BCC6D2;
	border-left: 0;
}

#submitTestimonailDiv button {
    margin-right: 10px;
}
 
.toolkit-box {
   width: 100%;
   background: rgb(237 244 249 / 20%);
   border-radius: 10px;
   padding: 20px 20px;
   margin: 20px 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;
   border: 1px #EDF4F9 solid;
   display: inline-block;
   text-align: center;
}

.select2-container {
    width: 100% !important;
    background: #fff;
}

.select2-container--default .select2-selection--multiple {
    width: 100% !important;
    background: #fff;
    min-height: 45px; 
    color: #0C1733;
    font-weight: 400;
    display: block;
    padding: 5px 5px 5px 5px;
    border: 1px solid #BCC6D2 !important;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.1s ease-in-out;
    font-size: 13px;
}

/************/

@media(min-width:991px) { 
    .reward-group .card-header {
        display: none;
    }
    .reward-group .card .collapse{
        display:block;
    } 
}

@media(min-width:768px) {
    .nav-tabs.activity-tabs {
        border: 0px !important;
        display:flex;
    } 

    .getpoints .card .card-header {
        display:none;
    }  
    .getpoints .card .collapse{
        display:block;
    }  
}
@media (max-width: 767.98px) {
    .tab-content.activity-content > .tab-pane {
        display: block !important;
        opacity: 1;
        border: 0px !important;
        width: 100%;
        margin: auto;
    } 
}

@media screen and (max-width:991px){	
    
	.wrapper:before {
		content: none;
	}

	.wrapper {min-height: auto;height: auto;}

	.hero-img {
		content: '';
		/* height: 100%; */
		width: 100%;
		position: absolute;
		right: 0;
		top: 0;
		background: #df3b26 url(../img/background-stripes.png) no-repeat top right;
		background-size: cover;
		min-height: auto;
	}


	.hero-img img {
		width: 80%;
		padding: 30px 0;
		text-align: center;
		display: block;
		margin: auto;
	}

	.hero-img:before {
		content: none;
	}
    ul.navbar-nav.ml-auto {
        margin: 10px auto;
    }

    .top-menu .navbar-nav > li > a {
        padding: 10px 20px;
    }
	.reward-group ul.nav.nav-tabs {
		display: none;
	}

	.reward-group .tab-content.reward-content {
		width: 100%;
		margin: auto;
	}

	.reward-group .tab-content>.tab-pane {
		display: block;
		opacity: 1;
	}

	.reward-group .card-header {
		padding: 0;
		margin: 10px auto;
		border: 0;
	}
	.reward-group .reward-tab.collapsed{
		background: #FFFFFF;
		border: 0px !important;
		border-radius: 3px;
		margin: 2px auto;
		display: block;
		padding: 10px 15px;
		color: #0C1733;
		font-family: 'Archivo', sans-serif;
		font-size: 1rem;
		font-weight: 400;
		box-shadow: 0 0px 2px 0 rgb(0 0 0 / 16%);
		position: relative;
		z-index: 9;
		text-decoration: none;
	}

	.reward-group .reward-tab {
		background: #DF3B26;
		color: #fff;
		border: 0;
		display: block;
		text-decoration: none; 
		border-radius: 3px;
		margin: 2px auto; 
		padding: 10px 15px; 
		font-family: 'Archivo', sans-serif;
		font-size: 1rem;
		font-weight: 400;
		box-shadow: 0 0px 2px 0 rgb(0 0 0 / 16%);
		position: relative;
		z-index: 9;
	}

	.reward-group .reward-tab:after {
		content: none; 
	} 
	.reward-sec::after {
		content: none;
	}

	.points-table {
		margin: 1rem auto 3rem;
	}

	.reward-sec {
		margin: 2rem auto;
	}
}

@media screen and (max-width:767px){
    .points-table .table thead th {
        font-size: 13px;
        line-height: normal;
    }

    .points-table .table td {
        font-size: 0.8rem;
    }
	.activity-content .card-header {
		background: transparent;
		margin: auto;
		padding: 0;
		border: 0;
	}


	a.activity-box {
		display: block;
		margin: 20px auto;
		text-decoration: none;
		 background: #EDF4F9;
		color: #0C1733;
		border-color: #DDE7EE !important;
		padding: .5rem 1rem;
	}
	a.activity-box.collapsed{
		position: relative;
		text-align: center;
		background: rgb(237 244 249 / 0.20);
		border-radius: 5px !important;
		border: 1px #BCC6D2 solid !important;
		transition: all 0.2s ease-in-out;
		vertical-align: middle;
		line-height: 90px;
	}

	.activity-box:after{
		content: "";
		border-top: 16px solid #EDF4F9;
		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;
	}
	.layout-table:after {
		content: none;
	}
	.work-box {
		text-align: center;
	}
}



@media screen and (max-width:576px){
	.user-img {
		display: block;
	}

	.userinfo {
		text-align: center;
	}
}