/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
  }
  
  
  
  
  /*//////////////////////////////////////////////////////////////////
  [ RESTYLE TAG ]*/
  
  * {
      margin: 0px; 
      padding: 0px; 
      box-sizing: border-box;
  }
  
  body, html {
      height: 100%;
      font-family: Poppins-Regular, sans-serif;
  }
  
  /*---------------------------------------------*/
  a {
      font-family: Poppins-Regular;
      font-size: 14px;
      line-height: 1.7;
      color: #666666;
      margin: 0px;
      transition: all 0.4s;
      -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  
  a:focus {
      outline: none !important;
  }
  
  a:hover {
      text-decoration: none;
    color: #6a7dfe;
    color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    color: -o-linear-gradient(left, #21d4fd, #b721ff);
    color: -moz-linear-gradient(left, #21d4fd, #b721ff);
    color: linear-gradient(left, #21d4fd, #b721ff);
  }
  
  /*---------------------------------------------*/
  h1,h2,h3,h4,h5,h6 {
      margin: 0px;
  }
  
  p {
      font-family: Poppins-Regular;
      font-size: 14px;
      line-height: 1.7;
      color: #666666;
      margin: 0px;
  }
  
  ul, li {
      margin: 0px;
      list-style-type: none;
  }
  
  
  /*---------------------------------------------*/
  input {
      outline: none;
      border: none;
  }
  
  textarea {
    outline: none;
    border: none;
  }
  
  textarea:focus, input:focus {
    border-color: transparent !important;
  }
  
  input:focus::-webkit-input-placeholder { color:transparent; }
  input:focus:-moz-placeholder { color:transparent; }
  input:focus::-moz-placeholder { color:transparent; }
  input:focus:-ms-input-placeholder { color:transparent; }
  
  textarea:focus::-webkit-input-placeholder { color:transparent; }
  textarea:focus:-moz-placeholder { color:transparent; }
  textarea:focus::-moz-placeholder { color:transparent; }
  textarea:focus:-ms-input-placeholder { color:transparent; }
  
  input::-webkit-input-placeholder { color: #adadad;}
  input:-moz-placeholder { color: #adadad;}
  input::-moz-placeholder { color: #adadad;}
  input:-ms-input-placeholder { color: #adadad;}
  
  textarea::-webkit-input-placeholder { color: #adadad;}
  textarea:-moz-placeholder { color: #adadad;}
  textarea::-moz-placeholder { color: #adadad;}
  textarea:-ms-input-placeholder { color: #adadad;}
  
  /*---------------------------------------------*/
  button {
      outline: none !important;
      border: none;
      background: transparent;
  }
  
  button:hover {
      cursor: pointer;
  }
  
  iframe {
      border: none !important;
  }
  
  
  /*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
  .txt1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
  }
  
  .txt2 {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
  }
  
  /*//////////////////////////////////////////////////////////////////
  [ Check In ]*/
  
  .frame {
    width: 100%;
    margin: 0 auto;
  }

  .frame.disabled {
    width: 100%;
    margin: 0 auto;
    opacity: 0.8;
  }
  
  .container-user-input {
    width: 100%;  
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #2d3e56;
  }
  
  .wrap-user-input {
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 77px 55px 33px 55px;
  
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  }

  .container-tos-pp {
    width: 100%;  
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #2d3e56;
  }
  
  .wrap-tos-pp {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 90vw;  
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 77px 55px 33px 55px;
  
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  }

  /*------------------------------------------------------------------
  [ Logo ]*/
  
  .logo {
    background-position: center 50%;
    height: 50vw;
    width: 50vw;
    max-width: 150px;
    max-height: 150px;
  }
  
  
  /*------------------------------------------------------------------
  [ Form ]*/
  
  .user-input-form {
    width: 100%;
  }
  
  .user-input-form-title {
    display: block;
    font-family: Poppins-Bold;
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 25px;
  }

  .user-input-form-title i {
    font-size: 60px;
  }

  .user-input-form-address {
    display: block;
    font-size: 15px;
    font-family: Poppins-Regular;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 100px;
  }

  .user-input-form-data {
    display: block;
    font-size: 15px;
    font-family: Poppins-Regular;
    line-height: 1.2;
    text-align: left;
    padding-bottom: 20px;
  }

  .user-input-form-header {
    display: block;
    font-size: 20px;
    font-family: Poppins-SemiBold;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 20px;
  }
  /*------------------------------------------------------------------
  [ Alert Box ]*/
  
  #alert-box{
    display:none; 
    justify-content: center;
    align-items: center;
    width: 350px;
    height:40vh; 
    top: 30vh;
    position:fixed; 
    box-sizing:border-box; 
    box-shadow:0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); 
    border-radius:10px; 
    background:#3f5677;
  }

  #alert-box .alert-wrap{
    text-align:center;
    padding-left: 25px;
    padding-right: 25px;
  }

	#alert-box .alert-desc{
    font-family: Poppins-Regular;
    text-align:center; 
    margin:0 auto; 
    box-sizing:border-box; 
    width:100%; 
    height:128px; 
    line-height:20px;
    color: #fff;
  }

  
  /*------------------------------------------------------------------
  [ Input ]*/
  
  .wrap-input-text {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
  }
  
  .input-text {
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
  
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px;
  }

  /*---------------------------------------------*/ 
  .focus-input-text {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  
  .focus-input-text::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  
    background: #6a7dfe;
    background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    background: -o-linear-gradient(left, #21d4fd, #b721ff);
    background: -moz-linear-gradient(left, #21d4fd, #b721ff);
    background: linear-gradient(left, #21d4fd, #b721ff);
  }
  
  .focus-input-text::after {
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #999999;
    line-height: 1.2;
  
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 16px;
    left: 0px;
    padding-left: 5px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .input-text:focus + .focus-input-text::after {
    top: -15px;
  }
  
  .input-text:focus + .focus-input-text::before {
    width: 100%;
  }
  
  .has-val.input-text + .focus-input-text::after {
    top: -15px;
  }
  
  .has-val.input-text + .focus-input-text::before {
    width: 100%;
  }

  .focus-input-text:valid {
    top: -15px;
  }
  
  /*---------------------------------------------*/
  .btn-show-pass {
    font-size: 15px;
    color: #999999;
  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    padding-right: 5px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .btn-show-pass:hover {
    color: #6a7dfe;
    color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    color: -o-linear-gradient(left, #21d4fd, #b721ff);
    color: -moz-linear-gradient(left, #21d4fd, #b721ff);
    color: linear-gradient(left, #21d4fd, #b721ff);
  }
  
  .btn-show-pass.active {
    color: #6a7dfe;
    color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    color: -o-linear-gradient(left, #21d4fd, #b721ff);
    color: -moz-linear-gradient(left, #21d4fd, #b721ff);
    color: linear-gradient(left, #21d4fd, #b721ff);
  }
  
    
  /*------------------------------------------------------------------
  [ Check Box ]*/

  .wrap-check-box-text {
    width: 100%;
    font-size: 12px;
    position: relative;
    margin-bottom: 15px;
  }

  .check-box-text {
    font-family: Poppins-Regular;
    font-size: 12px;
    color: #555555;
    line-height: 1.2;
    background: transparent;
    padding: 0 5px;
    zoom: 1.5;
  }
  
  /*------------------------------------------------------------------
  [ Button ]*/
  .container-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 13px;
  }
  
  .wrap-form-btn {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #0bb4d1;
    background: -webkit-linear-gradient(right, #4fc2be, #0bb4d1);
    background: -o-linear-gradient(right, #4fc2be, #0bb4d1);
    background: -moz-linear-gradient(right, #4fc2be, #0bb4d1);
    background: linear-gradient(right, #4fc2be, #0bb4d1);
    top: 0;
    left: -100%;
  }
  
  .form-btn {
    font-family: Poppins-Medium;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
  }
  
  .wrap-form-btn:hover .form-bgbtn {
    left: 0;
  }

  .container-ok-popup-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 13px;
    padding-bottom: 13px;
    bottom: 0;
  }
  .wrap-ok-popup-btn {
    width: 25%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .ok-popup-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: #0bb4d1;
    background: -webkit-linear-gradient(right, #4fc2be, #0bb4d1);
    background: -o-linear-gradient(right, #4fc2be, #0bb4d1);
    background: -moz-linear-gradient(right, #4fc2be, #0bb4d1);
    background: linear-gradient(right, #4fc2be, #0bb4d1);
    top: 0;
    left: -100%;
  }
  
  .ok-popup-btn {
    font-family: Poppins-SemiBold;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
  }
  
  .wrap-form-btn:hover .form-bgbtn {
    left: 0;
  }

  /*//////////////////////////////////////////////////////////////////
  [ Footer ]*/
  
  .footer{
      padding-top: 20px;
      text-align: center;
      font-size: 10px;
    }

  /*//////////////////////////////////////////////////////////////////
  [ Select ]*/
  
  .select-picker {
    display: block;
    font-size: 14px;
    font-family: sans-serif;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: 4px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
      linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    margin-top: 10px;
  }
  .select-picker::-ms-expand {
    display: none;
    border-radius: 4px;
  }
  .select-picker:hover {
    border-color: #888;
  }
  .select-picker:focus {
    border-color: #aaa;
    box-shadow: 0 0 5px 2px rgba(45, 62, 86, .5);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
  }
  .select-picker option {
    font-weight:normal;
  }

/***/

.user-register-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 25px;
}

  .user-register-header {
    display: block;
    font-family: Poppins-SemiBold;
    font-size: 22px;
    color: #333333;
    line-height: 1.2;
    text-align: left;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .user-register-form {
    line-height: 1.1;
    background-color: #cecece;
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    font-family: Poppins-Regular;
    width: 100%;
  }

  textarea .user-register-form .tall-form{
    max-height: fit-content;
    overflow: hidden;
  }

  .register-label-floating {
    top: 0.6125rem;
    color: #000;
    font-family: Poppins-SemiBold;
  }

  hr.style-one {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 0;
    height: 1px;
    background: #2d3e56;
    background-image: -webkit-linear-gradient(left, #ccc, #2d3e56, #ccc);
    background-image: -moz-linear-gradient(left, #ccc, #2d3e56, #ccc);
    background-image: -ms-linear-gradient(left, #ccc, #2d3e56, #ccc);
    background-image: -o-linear-gradient(left, #ccc, #2d3e56, #ccc);
    }

  /*------------------------------------------------------------------
  [ Responsive ]*/
  
  @media (max-width: 576px) {
    .wrap-user-input {
      padding: 77px 15px 33px 15px;
    }
    .wrap-tos-pp {
      padding: 77px 15px 33px 15px;
    }
  }

  @media (max-width: 991px) {
    .user-register-header {
      text-align: center;
    }
  }