:root {
  --blue: #036;
  --white: #ffffff;
  --black: #000;
  --grey: #909090;
  --success: #0FA90F;
  --error: #FC6B6B;
  --error-border: #AB0000;
  --error-bg: #FFA5A5;
  --Primary-btn: #008C89;
  --Secondary-btn: #0C62BA;
  --darkblue: #004D9B;
  --liteblue: #99CAFD;
  --solidblue: #002850;
  --dark-grey: #B8B8B8;
  --dark-grey1: #767676;
  --darker-grey: #363636;
}
/*@font-face {
  font-family: 'Hubot-Sans';
  src: url('../fonts/HubotSans/Hubot-Sans.woff2') format('woff2 supports variations'), url('../fonts/HubotSans/Hubot-Sans.woff2') format('woff2-variations');
  font-weight: 200 900;
  font-stretch: 75% 125%;
}*/
@font-face {
    font-family: 'Hubot-Sans';
    src: url('../Css/fonts/HubotSans/Hubot-Sans.woff') format('woff'), url('../Css/fonts/HubotSans/Hubot-Sans.ttf') format('truetype'), url('../Css/fonts/HubotSans/Hubot-Sans.svg#Hubot-Sans') format('svg');
    font-weight: 200 400 500 700 900;
}
body {
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif" !important;
  background: var(--blue);
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.page-wrapper {
  background: var(--blue);
  padding: 5%;
}
.registration-form {
  max-width: 700px;
}
h2 {
  color: var(--solid-white, #FFF);
  /* heading/h2 */
  font-family: Hubot-Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin: 0 0 24px !important;
}
.form-field {
  display: grid;
  grid-template-columns: 1fr;
}
.col6 {
  padding: 0 0 24px 0;
  position: relative;
}
.pb-8 {
  padding-bottom: 8px;
}
.label-info {
  display: flex;
  margin: 0 0 8px;
}
    .label-info label {
        font-family: Hubot-Sans !important;
        display: block;
        font-size: 13px;
        color: var(--white);
        line-height: 16px;
        font-weight: 500;
        margin: 0 8px 0 0;
    }
.label-info label.labelempty {
  display: none;
}
input[type=text], input[type=password], input[type=email], textarea {
  width: 100%;
  height: 32px;
  padding: 6PX 12PX;
  margin: 0 0 0 0;
  display: inline-block;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--darkblue);
  color: var(--darker-grey);
  font-size: 14px;
}
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=area]:focus {
  /* background-color: #E0E5FF; */
  outline: 1px var(--darkblue);
}
select {
  width: 100%;
  height: 32px;
  padding: 6PX 12PX;
  margin: 0 0 0 0;
  display: inline-block;
  border: 1px solid var(--darkblue);
  background: var(--white);
  border-radius: 4px;
}
select:focus {
  /* background-color: #E0E5FF; */
  outline: 1px var(--darkblue);
}
.verify-block {
  padding-bottom: 16px;
}
.Verifyed-block img {
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.wtxt-block {
  position: relative
}
.wtxt-lft {
  padding-left: 50px !important;
}
.wtxt {
  left: 0;
  position: absolute;
  background: var(--solidblue);
  color: var(--liteblue);
  width: 40px;
  text-align: center;
  height: 32px;
  border-radius: 4px 0 0 4px;
  line-height: 2.2;
  font-size: 13px;
  font-weight: 500;
}
.rank-icon {
  margin: 0;
  margin-left: 0px;
  padding: 2px 5px;
  background: var(--white);
  height: 32px;
  border-radius: 4px;
  border: 1px solid var(--darkblue);
  margin-left: 8px;
}
.rank-icon img {
  margin: 0;
}
.info-txt {
  font-size: 12px;
  color: var(--white);
  line-height: 1;
  font-weight: 500;
  padding: 8px 0 8px;
  display: inline-block;
}
.txt-align-right {
    font-family: Hubot-Sans;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 13px;
    color: var(--grey);
}
.btns-group {
  padding-top: 15px;
}
.btns {
    font-family: hubot-sans;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 4px 20px;
    height: 40px;
    margin: 0px 10px 0 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    max-width: 120px;
    opacity: 1;
    text-align: center;
}
.btns:hover {
  opacity: 0.9;
}
.secondary-btn {
  background-color: var(--Secondary-btn);
  height: 32px;
  font-size: 13px;
  font-weight: 700;
}
.primary-btn {
  background-color: var(--Primary-btn);
  height: 32px;
  font-size: 13px;
  font-weight: 700;
}
.register-btn {
  background-color: var(--Primary-btn);
}
.cancel-btn {
  background-color: var(--grey);
  color: var(--black);
  margin-right: 0;
}
.error {
  color: var(--error);
  margin-top: 8px;
  display: block;
}
input.error {
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  color: #000;
}
input.disabled {
  pointer-events: none;
  background: var(--dark-grey) !important;
  border-color: var(--dark-grey1) !important;
  color: var(--black);
}
/* stylish checkbox  */
.checkbox {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.3 !important;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  background-color: var(--Primary-btn);
}
.checkbox:hover input ~ .checkmark {
  background-color: var(--Primary-btn);
}
.checkbox input:checked ~ .checkmark {
  background-color: var(--Primary-btn);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox input:checked ~ .checkmark:after {
  display: block;
}
.checkbox .checkmark:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* ***** checkbox */
/* Radio Button */
/* Radio Button */
.mobile-btn-block {
  padding-bottom: 0px;
}
@media (min-width:640px) {
  .form-field {
    grid-template-columns: 1fr 1fr;
  }
  .col6 {
    padding: 0 24px 24px 0;
  }
  .col6:nth-child(2n+2) {
    padding: 0 0 16px 0;
  }
  .label-info label.labelempty {
    display: block;
  }
  .pb-8 {
    padding-bottom: 0px;
  }
}
/* *************** success-message  ******** */
.success-message-container {
    padding: 0 25px;
    /* margin: 64px auto;*/
    max-width: 100%;
    text-align: center;
    color: var(--white);
    font-family: Hubot-Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; /* 150% */
}
    .success-message-container p {
        margin-bottom: 20px !important;
        font-size: 16px !important;
        font-style: normal;
        font-weight: 300;
        line-height: 24px; /* 150% */
    }

    .success-results {
    max-width: 90%;
    margin: auto !important;
}

.success-bg {
    padding-top: 85px;
    /* width: 48px;
  height: 48px;
  margin: auto;*/
}
.success-message-container p {
  margin: auto;
}
.success-message-container h2 {
  color: var(--white, #FFF);
  text-align: center;
  font-family: Hubot-Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  /*line-height: 1;*/
  margin: 24px 0 10px 0;
}
@media (min-width:640px) {
/*.success-message-container {
  max-width: 90%;
}*/
  .success-results {
	max-width:50%;
	margin:auto !important;
}
}
/* *************** Innternal registration and Results  ******** */
.registration-submission-results {
  padding: 24px;
  color: var(--white);
  border: 1px solid var(--darkblue);
  border-radius: 4px;
  margin: 0 0 24px;
}
h5 {
  color: var(--white, #FFF);
  /* body */
  font-family: Hubot-Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 24px;
}
.heading {
  color: var(--liteblue);
  font-family: Hubot-Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
  letter-spacing: 0.36px;
}
.resultsrow {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--darkblue);
  position: relative;
}
.resultsrow .col6 {
  position: relative;
  text-align: left;
  color: var(--white, #FFF);
  /* table/header */
  font-family: Hubot-Sans;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 123.077% */
  letter-spacing: 0.39px;
  padding: 12px 0 14px 0;
}
.resultsrow .col6:nth-child(2n+2) {
  padding-right: 0;
}
.txt-right {
  text-align: right !important;
}
.no-boder {
  border: 0 !important;
}
.btnrigh {
  position: relative;
  margin: 10px 0 0;
}
.accpet-txt {
  line-height: 2;
  padding: 12px 0;
}
.optional-txt {
  padding: 0 8px 0 8px;
  color: var(--grey);
  line-height: 1;
}
.registration-submission-results label {
  margin: 0 8px 0 0;
  width: auto;
}
.registration-submission-results .label-info {
  margin: 0;
  display: flex;
}
.registration-submission-results input[type=checkbox] {
  margin: 0 8px 0 0;
}
.personal-email {
  padding: 0 0 12px;
}
.personal-email .label-info {
  margin: 0 0 8px;
}
.personal-email .info-txt {
  padding: 8px 0 0;
  display: block;
}
.personal-email input[type="text"] {
  width: 100%;
  margin-right: 8px;
  margin-bottom: 8px;
}
.requirements-sec ul {
  margin: 0;
  padding: 0;
}
.requirements-sec ul li {
  list-style-image: url("../Images/close.png");
  list-style-position: inside;
  font-size: 12px;
  padding-bottom: 8px;
  font-weight: 500;
  line-height: 16px;
  color: var(--white);
}
.requirements-sec h3 {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 8px;
}
.col6.requirements-sec label {
  margin-bottom: 8px;
}
.col6.requirements-sec input {
  margin-bottom: 24px;
}
.mb {
  margin-bottom: 0 !important;
}
.col6.requirements-sec {
  padding: 0 0px 0 0;
}
.col6.requirements-sec.mb {
  padding-right: 10px;
  padding-bottom: 24px;
}
/* Edit Account */
.overlay::before {
  content: "";
  position: fixed;
  background: #00000070;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.edit-account {
  max-width: 400px;
  padding: 16px 0 0;
  margin: 0px auto;
  background: var(--blue);
  position: relative;
  z-index: 1;
}
.edit-account h2 {
  padding: 0 24px 16px;
  border-bottom: 1px solid var(--darkblue);
}
.edit-account .form-field {
  grid-template-columns: 1fr;
  padding: 0 24px 0;
}
.col12 {
  padding: 0 0 24px 0;
  position: relative;
  width: 100%;
}
.edit-account .btns.secondary-btn {
  margin: 0 0 0 8px;
}
.btn-right {
  float: right !important;
}
.closebtn {
  float: right;
  position: relative;
  top: 4px;
}
/* Edit Account */
/* Radio Button */
.registration-submission-results .label-info.pr-block {
  padding: 0 8px 0 0px;
  display: block;
}
.pr-optionals {
  padding: 0 8px 12px 0px;
  line-height: 1;
  display: inline-block;
}
.radio {
  margin: 0 0 8px;
}
.radio-label {
  color: #fff;
  font-size: 13px;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 2px solid #2479CF;
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  top: 0em;
  margin-right: 8px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #00A8A4;
  box-shadow: inset 0 0 0 3px #f4f4f4;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #00A8A4;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #00A8A4;
  background: #00A8A4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}
/* Radio Button */
.resultsrow {
    grid-template-columns: 1fr 1fr;
}
@media (min-width:640px) {
  .resultsrow .col6 {
    padding: 12px 0 14px 0;
  }
  .col6.requirements-sec {
    padding: 0 24px 0 0;
  }
  /*.txt-right {
    text-align: right !important;
  }*/
  .registration-submission-results label {
    width: max-content;
  }
  .btnrigh {
    position: absolute;
    right: 0;
    margin: 0;
  }
  .personal-email input[type="text"] {
    width: 50%;
    margin-right: 8px;
  }
  .registration-submission-results .label-info.pr-block {
    padding: 0 8px 0 0px;
    display: flex;
  }
  .col6.requirements-sec.mb {
    padding-bottom: 0;
  }
  .pr-optionals {
    padding: 0 8px 0 0px;
  }
  .radio {
    margin: 0 0 0 8px;
  }
        
}
@media (max-width:640px) {
    .mobile-btn-block {
        padding-bottom: 23px;
    }
}
    .error {
        color: var(--error);
        margin-top: 8px;
        display: none !important;
    }

.error-text {
    font-family: Hubot-Sans;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    color: #FC6B6B;
    line-height:16px;
    /*var(--error);*/
    margin-top: 0px;
    display: block;
    bottom: 5px;
}

    /* tooltip */
    .tooltip {
        position: relative;
        display: inline-block;
        /*border-bottom: 1px dotted black; */
    }

        /* Tooltip text */
        .tooltip .tooltiptext {
            visibility: hidden;
            color: var(--white);
            text-align: center;
            padding: 8px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -60px;
            border-radius: 4px;
            background: var(--black);
            box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
            font-size: 12px;
            line-height: 1.3;
            font-weight: 500;
            opacity: 0.8;
            height: auto;
            width: max-content;
            max-width: 256px;
            min-width: 256px;
            text-align: left;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
        }

    .duplicatereg {
        margin-bottom: 5px !important;
        border-radius: 50%;
        margin: auto;
        justify-content: center;
        display: flex;
        width: 48px;
        height: 48px;
        background: red;
        align-items: center;
    }

    label.checkbox {
        padding-left: 28px !important;
    }
.registration-form h2 {
    font-family: Hubot-Sans;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-align: left;
}