/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .select2-container--default .select2-selection--single { 
	 background-color: transparent;
	 border: none; 
	 border-radius: none;
 }


 /*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);


/*form styles*/
#msform {
	width: 100%;
	height: 50vh;
	text-align: center;
	margin-top: 30px;
	position: relative;
	
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0px;
  box-sizing: border-box;
  /*stacking fieldsets above each other*/
  position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform input:focus, #msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  outline-width: 0;
  transition: All 0.5s ease-in;
  -webkit-transition: All 0.5s ease-in;
  -moz-transition: All 0.5s ease-in;
  -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
  width: 100px;
  background: #FCDB43;
  color: #50360C;
  font-weight: bold;
  border: 0 none;
  border-radius: 4px;
  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 #ee0979;
}



#select2-kvk_select_business-container { 
	margin-bottom: 2rem;
}

.loader-wrapper { 
	background-color: white;
	display: none;
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 229;
    justify-content: center;
    align-content: center;
}


/* Loader 2 */
.loader-2 {
	display: block;
	  height: 100px;
	  width: 60px;
	  align-self: center; 
	  -webkit-animation: loader-2-1 3s linear infinite;
			  animation: loader-2-1 3s linear infinite;
  }
  @-webkit-keyframes loader-2-1 {
	  0%   { -webkit-transform: rotate(0deg); }
	  100% { -webkit-transform: rotate(360deg); }
  }
  @keyframes loader-2-1 {
	  0%   { transform: rotate(0deg); }
	  100% { transform: rotate(360deg); }
  }
  .loader-2 span {
	  display: block;
	  position: absolute;
	  top: 0; left: 0;
	  bottom: 0; right: 0;
	  margin: auto;
	  height: 100px;
	  width: 100px;
	  clip: rect(50px, 100px, 100px, 0);
	  -webkit-animation: loader-2-2 1.5s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
			  animation: loader-2-2 1.5s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
  }
  @-webkit-keyframes loader-2-2 {
	  0%   { -webkit-transform: rotate(0deg); }
	  100% { -webkit-transform: rotate(360deg); }
  }
  @keyframes loader-2-2 {
	  0%   { transform: rotate(0deg); }
	  100% { transform: rotate(360deg); }
  }
  .loader-2 span::before {
	  content: "";
	  display: block;
	  position: absolute;
	  top: 0; left: 0;
	  bottom: 0; right: 0;
	  margin: auto;
	  height: 100px;
	  width: 100px;
	  border: 6px solid transparent;
	  border-top: 6px solid #FCDB43;
	  border-radius: 50%;
	  -webkit-animation: loader-2-3 1.5s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
			  animation: loader-2-3 1.5s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
  }
  @-webkit-keyframes loader-2-3 {
	  0%   { -webkit-transform: rotate(0deg); }
	  100% { -webkit-transform: rotate(360deg); }
  }
  @keyframes loader-2-3 {
	  0%   { transform: rotate(0deg); }
	  100% { transform: rotate(360deg); }
  }
  .loader-2 span::after {
	  content: "";
	  display: block;
	  position: absolute;
	  top: 0; left: 0;
	  bottom: 0; right: 0;
	  margin: auto;
	  height: 100px;
	  width: 100px;
	  border: 6px solid #FCDB43;
	  border-radius: 50%;
  }

.loader_div{
	position: absolute;
	top: 0;
	bottom: 0%;
	left: 0;
	right: 0%;
	z-index: 99;
	opacity:0.7;
	display:none;
	background: lightgrey url('../../../images/youloadergif.gif') center center no-repeat;
}

/*headings*/
.fs-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: bold;
}

.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}



/* Not relevant to this form */
.dme_link {
  margin-top: 30px;
  text-align: center;
}

.dme_link a {
  background: #FFF;
  font-weight: bold;
  color: #ee0979;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 5px 25px;
  font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
  background: #C5C5F1;
  text-decoration: none;
}

.bubble {
  background: red;
  color: white;
  padding: 4px 12px;
  position: absolute;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.bubble::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: red;
  top: -1px;
  left: 50%;
}

.checkbox-wrapper {
  padding: 10px 15px;
  background-color: rgba(0, 27, 46, 0.04);
  margin-top: 10px;
}

#msform fieldset .action-button-previous {
  background: transparent;
  width: 80%;
  text-align: left;
  background: none;
  font-weight: bold;
  color: #2C3E50;
  border: 0 none;
  border-radius: 0;
  cursor: pointer;
}
#msform fieldset .action-button-previous:hover {
  border: 0 none;
  box-shadow: none;
}

.form-check.form-check-checkbox, .form-check.form-check-radio {
  display: flex;
  align-items: center;
}
.form-check.form-check-checkbox input.form-check-input, .form-check.form-check-radio input.form-check-input {
  padding: 15px;
}
.form-check.form-check-checkbox {
  height: 40px;
}
.form-check.form-check-checkbox label {
  text-align: left;
  margin-left: 15px;
  border-radius: 4px;
  width: 100%;
}
.form-check.form-check-radio {
  margin-top: 10px;
}
.form-check.form-check-radio input {
  display: none;
}
.form-check.form-check-radio label {
  background: rgba(0, 27, 46, 0.04);
  width: 100%;
  padding: 15px;
  border-radius: 4px;
  text-align: left;
}
.form-check .form-check-input {
  background: rgba(0, 27, 46, 0.12);
  border: none;
}
.form-check .form-check-input:checked {
  background-color: #FCDB43;
  border-color: #50360C;
}
.form-check .form-check-input[type=radio]:checked + label {
  background: #FCDB43;
  color: #50360C;
  transition: opacity 1s ease;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  margin: 0;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 19px;
  cursor: pointer;
  background: linear-gradient(270deg, #ECC021 0%, #EC9B21 100%);
  border-radius: 20px;
  border: 0.2px solid #50360C;
  border: 1px solid rgba(7, 25, 38, 0.12);
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.15);
  height: 25px;
  width: 25px;
  border-radius: 100%;
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}

