/* Copyright (c) 2022 by Atakan Goktepe (https://codepen.io/atakan/pen/nPOZZR)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */



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

/*basic reset*/
* {margin: 0; padding: 0;}
:root{
	--primary-colors: #32A3D8;
}

html {
	height: 100%;
	/*Image only BG fallback*/
	
	/*background = gradient + image pattern combo*/
	background-color: var(--primary-colors);
}

body , .typebutton{
    
	font-family: montserrat, arial, verdana;
}

.sent_mail{
	color:var(--primary-colors);
  }

.defaultFormDefibrillator {
	width: 400px;
	text-align: center;
	position: relative;
}


.defaultFormDefibrillator fieldset {
	background: rgb(255, 255, 255);
	border: 0 none;
	border-radius: 3px;
	box-sizing: border-box;
	width: 170%;
	margin: 0 10%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
.defaultFormDefibrillator fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
.defaultFormDefibrillator input, .defaultFormDefibrillator textarea, .defaultFormDefibrillator select {
	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;
}

.defaultFormDefibrillator input:required{
    border: 3px solid rgb(163, 163, 163);
}
/*buttons*/
.defaultFormDefibrillator .action-button, .typebutton{
	width: 100px;
	background: var(--primary-colors);
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
.defaultFormDefibrillator .action-button:hover, .defaultFormDefibrillator .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}

	@media screen and (min-width: 280px)  {
		.defaultFormDefibrillator fieldset {
			width: 38%;
		} 
	}

	@media screen and (min-width: 360px)  {
		.defaultFormDefibrillator fieldset {
			width: 58%;
		} 
	}

	@media screen and (min-width: 375px)  {
		.defaultFormDefibrillator fieldset {
			width: 60%;
		} 
	}

	@media screen and (min-width: 390px)  {
		.defaultFormDefibrillator fieldset {
			width: 65%;
		} 
	}

	@media screen and (min-width: 412px)  {
		.defaultFormDefibrillator fieldset {
			width: 70%;
		} 
	}

	@media (min-width: 500px) { 
		.defaultFormDefibrillator fieldset {
			width: 95%;
		} 
	 }

	@media (min-width: 537px) and (max-width: 575px) { 
		.defaultFormDefibrillator fieldset {
			width: 110%;
		} 
	 }


  @media (min-width: 576px) {
	.defaultFormDefibrillator fieldset {
		width: 95%;
	} 
  }

  @media (min-width: 992px) {
	.defaultFormDefibrillator fieldset {
		width: 170%;
	} 
  }



/**********************/
/*form styles*/
.defaultForm {
	width: 400px;
	margin: 50px auto;
	text-align: center;
	position: relative;
}

  
.defaultForm fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
.defaultForm fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
.defaultForm input, .defaultForm textarea, .defaultForm select {
	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;
}

.defaultForm input:required{
    border: 3px solid rgb(163, 163, 163);
}
/*buttons*/
.defaultForm .action-button, .typebutton{
	width: 100px;
	background: var(--primary-colors);
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
.defaultForm .action-button:hover, .defaultForm .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: rgb(6, 36, 18);
	text-transform: uppercase;
	font-size: 0.8em;
	width: 50%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	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: #27AE60;
	color: white;
}



/* ********************************************** */
/* .container {
    display: flex;
    height: 100vh;
  }
   

  
  .right {
    flex: 1;
    background-color: black;
    transition: 1s;
    background-image: url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fpixabay.com%2Fes%2Fphotos%2Fdesfibrilador-primeros-auxilios-5300520%2F&psig=AOvVaw1lcVM5UTBy9cT5aZ3cmhcA&ust=1648806316543000&source=images&cd=vfe&ved=0CAsQjRxqFwoTCODkx6iI8PYCFQAAAAAdAAAAABAL);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  } */
 


/* ********************************************** */