@charset "utf-8";
/* CSS Document */

.containerpop{
	width: 100%;
	height: 100vh;
	background:inherit;
	display: flex;
	align-items:center;
	justify-content: center;
		
}
.btns{
	padding: 10px 60px;
	background: #fff; 
	border: 0;
	outline: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	border-radius: 30px;
	
}
a{
	text-decoration: none;
}
.popup .btn-ask{
	width: 100%;
	margin-top: 50px;
	color: #fff;
	background: #6fd649;
	font-size: 15px;
	outline: none;
	font-weight: 300;
	border-radius: 4px;
	padding: 7px 30px;
	cursor: pointer;
	box-shadow: 0 5px 5px rgba(0,0,0,0.2); 
}
.btn-ask:hover{
	background: #0F5C03;
	box-shadow: 0 5px 5px rgba(0,0,0,0.2); 
}
.popup{
	width:300px;
	background: #fff;
	border-radius: 6px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1);
	text-align: center;
	padding: 0 30px 30px;
	color: #333;
	transition: transform 0.4s,top 0.4s;
	display: none;
	z-index: 100;
	box-shadow: 5px 5px 5px rgba(0.2,0.2,0.2,0.2); 
}
 @media (min-width: 576px) {
    .popup{
      max-width: 90%; } } 
  @media (min-width: 768px) {
    .popup{
      max-width: 720px; } }
  @media (min-width: 992px) {
    .popup{
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .popup{
      max-width: 1140px; } }
.popup img{
	width: 50px;
	margin-top: -30px;
	border-radius: 70%;
	box-shadow: 0 5px 5px rgba(0,0,0,0.2); 
		margin-bottom: -10px;
}
.popup h2{
	font-size: 20px;
	font-weight: 500;
	margin: -10px 0px 0px;
}
.popup p {
	margin: 20px 0;
	font-size: 13px;
	font-weight: 300;
}

.popup button{
	display: block;
	margin: -30px 0 0px auto;
	background-color: transparent;
	font-size: 30px;
	border: none;
	outline: none;
	cursor: pointer;
	color: rgba(201,197,197,1.00);
}
/* @media (max-width: 993px) { */

.user-profile{
	position: relative;
	display: inline-block;
	margin-left: 50px;
}
.profile-icon{
	cursor:pointer;
	background:#1239a3fb;
	border: 1px solid white;
	border-radius: 50%;
}
.profile-icon span{
	font-size: 25px;
	padding: 5px;
}
.dropdown{
	position: relative;
	display: inline-block;
}
.dropdown-content{
	margin-top: 5px;
	margin-left: -130px;
	display: none;
	position: absolute;
	background-color:#f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}
.dropdown-content a{
	color:black;
	padding: 8px 8px;
	text-decoration: none;
	display: block;
	text-align: center;
}
.show{
	display: block;
}

.item-select{
display: flex;
justify-content: center;
align-items: center;
}
.txtlabel > label{
	padding-left: 1.5em;
}
.check-controls{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1em;
}
.check-modifier{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: rgb(236, 237, 237);
	margin: .3em ;
	padding: .5em 2em;
	cursor: pointer;
	color: #000;
}
.form-check-label{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8em;
}
.form-check .form-check-input{
	display: block;
	position: relative;
}
.form-control{
	border-radius: 0.1em;
	box-shadow: none;

}
.form-control:hover, .form-control:focus{
	box-shadow: none;
	border: 2px solid #000;
}
.invalid{
	position: absolute;
	bottom: -2em;
	font-size: 1em;
}
.is-invalid:focus{
	box-shadow: none;
}
.logo-img{
	background: transparent;
}
.container > img{
	background: transparent;
}
.navbar-toggler:focus{
	outline: none;
	box-shadow: none;
}