* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-size: 12px;
  color: #333;
  background-image: url("../images/bg.jpg");
  background-position: top;
  background-size: cover;
  background-attachment: fixed; }

.wrapper {
  background: #ffffff; }

.logo {
  width: 100%;
  height: 52px;
  margin: 0 auto;
  display: block;
  text-align:left;
  padding: 10px; }
  


  
.btn{background-color: #1897C9!important;}
  
.points {
  margin-left: 20px;
  text-align:left;
  font-size: 15px;
  color: red; }

.page-title {
  font-size: 25px;
  margin-top: 20px; }

.card {
  margin-bottom: 20px; }

.card-header {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  background-color: #1897C9 ;
  color: #ffffff; }

.form-check {
  margin-bottom: 5px; }

.form-check label {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; }

.list-style-none {
  list-style-type: none; }

.warning-msg {
  color: red; }

.thanks-msg {
  font-size: 20px;
  margin-top: 30px; }

.thanks-msg span {
  display: block; }
  
  
  
  /* -----------------------  radio button ----------- */

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #bbb;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #333;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

  /* -----------------------  radio button end ----------- */