
@import url('../../css2-2');
@import url('../../css2-3');
 :root {
		--pbmit-global-color:  #d95858;
     --pbmit-secondary-color: #fdc71b;
     --pbmit-light-color: #f1f9fe;
     --pbmit-white-color:#ffffff;
		--pbmit-blackish-color: #ba8985;
		--pbmit-link-color-normal: #ba8985;
		--pbmit-link-color-hover: #d95858;
     --pbmit-global-color-rgb: rgb(124, 186, 39);
     --pbmit-secondary-color-rgb:rgb(253, 199, 27);
     --pbmit-responsive-breakpoint: 1200px;
     --pbmit-body-typography-font-family:'DM Sans', sans-serif;
     --pbmit-body-typography-variant: regular;
     --pbmit-body-typography-font-size: 16px;
     --pbmit-body-typography-line-height: 26px;
     --pbmit-body-typography-color: #787c8b;
     --pbmit-heading-typography-font-family: 'Quicksand', sans-serif;
     --pbmit-heading-color: #080337;
     --pbmit-heading-font-variant: 700;
     --pbmit-btn-typography-font-family:'Quicksand', sans-serif;
     --pbmit-btn-typography-variant: 700;
     --pbmit-btn-typography-font-size: 15px;
     --pbmit-btn-typography-line-height: 26px;
	 --border-radius: 32px;
	 --box-shadow-global: 0px 0px 23.25px 1.75px rgba(124,186,39, .30);
	 --box-shadow-blackish: 0px 0px 23.25px 1.75px rgba(14,47,68, .30);
}

 input[type="radio"] {
  background-color: #fafafa;
}

input[type="radio"]:checked {
  background-color: #d28888;
  border: #d28888;
}


/* =====================================================
   CSS Toggle Switch | https://codepen.io/acwt/pen/xxYzRz
   ===================================================== */

.toggleSwitch span span {
  display: none;
}

@media only screen {
  .toggleSwitch {
	display: inline-block;
	height: 16px;
	position: relative;
	overflow: visible;
	padding: 0;
	cursor: pointer;
	width: 40px;
  }
  .toggleSwitch * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  }
  .toggleSwitch label,
  .toggleSwitch > span {
	line-height: 20px;
	height: 20px;
	vertical-align: middle;
  }
  .toggleSwitch input:focus ~ a,
  .toggleSwitch input:focus + label {
	outline: none;
  }
  .toggleSwitch label {
	position: relative;
	z-index: 3;
	display: block;
	width: 100%;
  }
  .toggleSwitch input {
	position: absolute;
	opacity: 0;
	z-index: 5;
  }
  .toggleSwitch > span {
	position: absolute;
	left: -50px;
	width: 100%;
	margin: 0;
	padding-right: 50px;
	text-align: left;
	white-space: nowrap;
  }
  .toggleSwitch > span span {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: block;
	width: 50%;
	margin-left: 50px;
	text-align: left;
	font-size: 0.7em;
	width: 100%;
	left: 15%;
	top: -1px;
	opacity: 0;
  }
  .toggleSwitch a {
	position: absolute;
	right: 50%;
	z-index: 4;
	display: block;
	height: 100%;
	padding: 0;
	left: 2px;
	width: 18px;
	background-color: #bfbfbf;
	border: 1px solid #CCC;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  .toggleSwitch > span span:first-of-type {
	color: #ccc;
	opacity: 1;
	left: 45%;
  }
  .toggleSwitch > span:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50px;
	top: -2px;
	background-color: #fafafa;
	border: 1px solid #ccc;
	border-radius: 30px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
  }
  .toggleSwitch input:checked ~ a {
	border-color: #fff;
	left: 100%;
	margin-left: -8px;
  }
  .toggleSwitch input:checked ~ span:before {
	border-color: #d28888;
	box-shadow: inset 0 0 0 30px #d28888;
  }
  .toggleSwitch input:checked ~ span span:first-of-type {
	opacity: 0;
  }
  .toggleSwitch input:checked ~ span span:last-of-type {
	opacity: 1;
	color: #fff;
  }
  /* Switch Sizes */
  .toggleSwitch.large {
	width: 60px;
	height: 27px;
  }
  .toggleSwitch.large a {
	width: 27px;
  }
  .toggleSwitch.large > span {
	height: 29px;
	line-height: 28px;
  }
  .toggleSwitch.large input:checked ~ a {
	left: 41px;
  }
  .toggleSwitch.large > span span {
	font-size: 1.1em;
  }
  .toggleSwitch.large > span span:first-of-type {
	left: 50%;
  }
  .toggleSwitch.xlarge {
	width: 80px;
	height: 36px;
  }
  .toggleSwitch.xlarge a {
	width: 36px;
  }
  .toggleSwitch.xlarge > span {
	height: 38px;
	line-height: 37px;
  }
  .toggleSwitch.xlarge input:checked ~ a {
	left: 52px;
  }
  .toggleSwitch.xlarge > span span {
	font-size: 1.4em;
  }
  .toggleSwitch.xlarge > span span:first-of-type {
	left: 50%;
  }
}