/*form styles*/

body{
  background: #F5F6F7;
  font-family: 'Noto Sans HK', sans-serif !important;

}
#msform {
width: 100%;
max-width: 1000px;
margin: 50px auto;
position: relative;
}
#msform fieldset {
background: white;
border: #d9dde4 solid 1px;
border-radius: 20px;
padding: 30px 40px;
box-sizing: border-box;
width: 80%;
margin: 0 10%;

/*stacking fieldsets above each other*/
position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
display: none;
}
/*inputs*/
/* #msform input, #msform textarea {
padding: 15px;
border: 1px solid #ccc;
border-radius: 3px;
margin-bottom: 10px;
width: 100%;
box-sizing: border-box;
font-family: montserrat;
color: #2C3E50;
font-size: 13px;
} */
/*buttons*/
#msform .action-button {
width: 100px;
background: #1A75E8;
font-weight: bold;
color: white;
border: 0 none;
border-radius: 1px;
cursor: pointer;
padding: 10px 5px;
margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
box-shadow: 0 0 0 2px white, 0 0 0 3px #1A75E8;
}
/*headings*/
.fs-title {
font-size: 20px;;
font-weight: bold;
color: black;
margin-bottom: 20px;
}

.fs-title > span{
  font-size: 12px;
    font-weight: 100;
    color: grey;
}
.fs-subtitle {
font-weight: normal;
font-size: 13px;
color: black;
margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
margin-bottom: 30px;
overflow: hidden;
/*CSS counters to number the steps*/
counter-reset: step;
}
#progressbar li {
  text-align: center;
list-style-type: none;
color: black;
font-size: 14px;
width: 33.33%;
float: left;
position: relative;
border-radius: 50px;
}
#progressbar li:before {
  text-align: center;
  content: counter(step);
  counter-increment: step;
  width: 35px;
  line-height: 35px;
  display: block;
  font-size: 18px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
  border-radius: 50px;
}
/*progressbar connectors*/
#progressbar li:after {
content: '';
width: 100%;
height: 2px;
background: #D9DDE4;
position: absolute;
left: -50%;
top: 17px;
z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
/*connector not needed before the first step*/
content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
background: #1A75E8;
color: white;
}

.single-input input, .chosen-container-multi .chosen-choices{
  border: 1px solid black;
}

.single-input input {
border: 1px solid black;
border-radius: 4px;
color: black;
margin-bottom: 10px;
height: 38px;
}

.next, .previous{
  border-radius: 50px !important;
}

.single-input > label{
  text-align: left;
  color: black;
}

.nice-select{
  width: 100%;
  border: 1px solid black;
  border-radius: 4px;
}

.mb-20{
  margin-bottom: 20px;
}


.multiple-drop > .nice-select{
  display: none;
}

/* FOR SKILLS */

.bootstrap-tagsinput {
  padding: 6px 6px;
  background-color: #fff;
  border: 1px solid #000;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  display: inline-block;
  color: #555;
  vertical-align: middle;
  border-radius: 4px;
  width: 100%;
  line-height: 33px;
  min-height: 38px;
  cursor: text;
  max-width: 500px;
}
.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  margin: 0;
  width: auto;
  max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
  color: #777;
  opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: black;
  text-transform: capitalize;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.label-info{
  padding: 8px 8px 8px 15px;
  background-color: #dedede;
  border-radius: 50px;
}

.my-switch{
  width: fit-content;
}


/* PROFILE PIC */
.image-upload{
  display: inline-block;
  position:relative;
  border-radius:50%;
}
.image-upload i{
  color: black;
  transition: .3s ease;
  opacity: 0;
  position: absolute;
  pointer-events:none;
  left:0;
  top:0;
  right:0;
  bottom:0;
  text-align:center;
  line-height:24px;
  width:24px;
  height:24px;
  margin:auto
}
.fileupload-image{
  position: relative;
  text-align: right;
  border:3px solid #777;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}
.image-upload:hover i{
  opacity: 1;
}

.mdi-close{
  /* color:white;
  opacity: 0; */
  transition: .3s;
  position:absolute;
  width:24px;
  height:24px;
  text-align:center;
  line-height:24px;
  /* top:-5px;
  right:-8px; */
  z-index:99;
}

.image-upload:hover .mdi-close{
  opacity:1
}

.mdi-close:hover{
  color:#ff0033;
}

.fileupload-image input[type="file"]{
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer
}

#name{
  margin: 0 auto;
  margin-top: 1em;
  max-width: 200px;
  position:relative;
}

#name:before{
  content:'\f3eb';
  font-family: 'Noto Sans HK', sans-serif !important;
  font-size:16px;
  position:absolute;
  left:100%;
  margin-left:4px;
  top:0;
  opacity:0;
  transition: .3s;
}

#name:hover:before{
   opacity:1;
}

.lnr-cross:before {
    content: "\e870";
}

/* PROFILE ENDS */

.mw-250{
  max-width: 250px;
}

.submit{
  border-radius: 50px !important;
}

.list{
  max-height: 250px;
  overflow-y: scroll !important;
}

.fa-times{
  cursor: pointer;
}

.chosen-container-multi .chosen-choices li.search-field{
  padding-top: 5px;
padding-left: 10px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: grey;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: black;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: black;
}

@media only screen and (max-width: 600px) {
  #msform fieldset {
    margin: 0px;
    width: 100%;
    padding: 10px 20px;
}
.alert-success{
    padding: 10px;
    font-size: 12px;
}

}

@media only screen and (max-width: 450px) {
  .col{
    min-width: 100%;
  }

  #progressbar li {

    font-size: 10px;
}

}
