// include bootstrap sass
@import "../../css";

   #Pop-form { 
      position: fixed;
	width: 400px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 70px 17px 30px;
	box-sizing: border-box;
	background-color: white;
        border: solid 1px;
        border-color: gray;
	text-align: center;
	margin-bottom: 45px;
	display: none;
   }
#modal2 {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: rgba(128,128,128,0.3);
    top: 0;
    left: 0;
    display: none;
}
.close-popup {
    position: absolute;
    top: 25px;
    right: 10px;
    width: 30px;
    height: 30px;
    color: black;
    cursor: pointer;
}
.close-popup:before {
	content: '';
	position: absolute;
	width: 22px;
	height: 1px;
	background: black;
	top: 5px;
	left: -5px;
	transform: rotate(-45deg);
}
.close-popup:after {
	content: '';
	position: absolute;
	width: 22px;
	height: 1px;
	background: black;
	top: 5px;
	left: -5px;
	transform: rotate(45deg);
}
.breadcrumblist span {
    font-size: 14px;
    font-weight: 500;
}

input.btn.btn-primary.btn-shadow.btn-rounded.w-lg {
    padding-left:0;
	padding-right:0;}