/*Vaccine CSS Document */
.vaccine {
	margin-top: 60px;
}
.vaccine .vaccine-title-right-image {
	background: url('../jpg/tree-736885__340.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 600px;
}
.vaccine .vaccine-title .vaccine-title-details {
	background-image: linear-gradient(to right top, #ff6f62, #ff6154, #ff5145, #ff5145, #fe3f37, #fd2727);
}
.vaccine .vaccine-title-text {
	margin: 0 auto;
	margin-top: 10%;
}
.vaccine .vaccine-title-image {
	height: 300px;
	width: 300px;
}
.vaccine .register {
	width: 80%;
}
.vaccine .register .nav-pills {
	background-color: #e9ecef;
	box-shadow: 0px 5px 5px lightgray;
}
.vaccine .register .nav-pills .nav-link {
	color: black;
	text-decoration: none;
	font-size: 30px;
	font-weight: bold;
}
.vaccine .register .nav-pills .nav-link.active {
	background-color: #ff6f62;
	color: white;
}
.vaccine .register .tab-content {
	width: 80%;
}
.vaccine .register .register-form input, .vaccine .register .register-form .custom-select {
	border: none;
	font-size: 25px;
	font-weight: bold;
	box-shadow: 0px 2px 5px lightgray;
}
 .vaccine .register .register-form input::placeholder, .vaccine .register .register-form .custom-select.disable {
 color: lightgray;
 opacity: 1;
/* Firefox */
}
.vaccine .register .register-form .custom-select {
	cursor: pointer;
}
.vaccine .register .register-form .custom-select option {
	color: black;
	font-weight: bold;
}
.vaccine .register .register-form input[type='submit'] {
	padding: 18px 70px;
	background-color: #ff6f62;
}
.vaccine .howitworks {
	padding: 70px;
	background-color: rgba(255, 0, 4, .2);
}
.vaccine .howitworks .col-sm-3 {
	text-align: center;
}
.vaccine .howitworks .howitworks-icons {
	color: darkred;
}
.vaccine .statistics .statistics-details {
	width: 85%;
}
.vaccine .statistics .statistics-details img {
	width: 100%;
	height: 450px;
}

@media only screen and (max-width: 800px) {
.vaccine .statistics .statistics-details, .vaccine .register .tab-content, .vaccine .register {
	width: auto;
}
.vaccine .howitworks .howitworks-details {
	padding: 0;
}
.vaccine .register .nav-pills .nav-link {
	font-size: 11px;
	padding: 0;
}
 .vaccine .register .register-form input, .vaccine .register .register-form input::placeholder, .vaccine .register .register-form .custom-select, .vaccine .register .register-form .custom-select option {
 font-size: 14px;
}
}
/*Checkbox*/
.myCheckbox span:before, .myCheckbox span:after {
	content: "";
	display: inline-block;
	background: #fff;
	width: 0;
	height: 0.2rem;
	position: absolute;
	transform-origin: 0% 0%;
}
.myCheckbox {
	position: relative;
	height: 2rem;
	display: flex;
	align-items: center;
}
.myCheckbox input {
	display: none;
}
.myCheckbox input:checked ~ span {
	background: #ff6f62;
	border-color: #fd2727;
}
.myCheckbox input:checked ~ span:before {
	width: 1rem;
	height: 0.15rem;
	transition: width 0.1s;
	transition-delay: 0.3s;
}
.myCheckbox input:checked ~ span:after {
	width: 0.4rem;
	height: 0.15rem;
	transition: width 0.1s;
	transition-delay: 0.2s;
}
.myCheckbox input:disabled ~ span {
	background: #ececec;
	border-color: #dcdcdc;
}
.myCheckbox input:disabled ~ label {
	color: #dcdcdc;
}
.myCheckbox input:disabled ~ label:hover {
	cursor: default;
}
.myCheckbox label {
	padding-left: 2rem;
	position: relative;
	z-index: 2;
	cursor: pointer;
	margin-bottom: 0;
}
.myCheckbox span {
	display: inline-block;
	width: 1.2rem;
	height: 1.2rem;
	border: 2px solid #ccc;
	position: absolute;
	left: 0;
	transition: all 0.2s;
	z-index: 1;
	box-sizing: content-box;
}
.myCheckbox span:before {
	transform: rotate(-55deg);
	top: 1rem;
	left: 0.37rem;
}
.myCheckbox span:after {
	transform: rotate(35deg);
	bottom: 0.35rem;
	left: 0.2rem;
}
