/*var*/
:root{
	--popping-black:#2e3138;
	--popping-red:#f40000;
	--red:#d13e2c;
	--light-grey:#d9d9d9;
	--black:#1C1818;
	--border-radius:5px;
	--border-radius-2x:10px;
}	

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner{
    background-color: var(--red);
    color: #fff;
    padding: 1em;
}

.banner p{
	margin:0;
}

.loader {
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: var(--red);
    display: none;
}

.loading .loader {}

body {
    font-family: 'Poppins', sans-serif;
}

/*hide input stuff*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

body{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	color: #252f4a;
}

nav{
	display: flex;
	padding: 1em;
	color: #222;
	background-color: #eee;
}
a{
	text-decoration: none;
	color: var(--red);
}

p{

}

p.preferred_business {
    margin: 0;
    width: fit-content;
}

main{
	background-color: #eee;
	min-height: calc(100vh - 75px);
}

input[type="file"]{
/*	visibility: hidden;
	display: none;*/
}

section{
	margin-bottom: 4em;
}

header{
	height: 75px;
}

img{
	background-color: #fff;
}


/* STYLE CLASSES */
/*// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900*/

.alert.alert-danger{
	position: fixed;
  bottom: 0;
  left: 1em;
  
}

.inter-100 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.full-height{
	height: 100%;
	width: 100%;
	object-fit: cover;
	max-height: 88vh;
}

.half-height{
	height: 50%;
	width: 100%;
	object-fit: cover;
}

.border-1{
	border-radius: 10px;
}
.border-2{
	border-radius: 20px;
}
.border-3{
	border-radius: 30px;
}
.border-4{
	border-radius: 40px;
}

.custom-button{
	width: 40%;
}

.logout-btn a {
    color: #fcf2f2;            /* Your desired white shade */
    text-decoration: none;     /* Remove underline */
    display: block;            /* Makes it fill the div area */
    padding: 10px;
    border-radius: 20px;
    background: red;
    text-align: center;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

.logout-btn a:hover {
    background: darkred;       /* Optional hover effect */
    color: #fff;
}

/*.logout-btn {
    padding: 10px;
    border-radius: 20px;
    background: red;
    width: 100%;
    display: block;
    color: #fff;
}*/

.custom-button-alt{
	width: 40%;
	color: #fff;
	background-color: var(--black);
	border:1px solid;
}

.sm-btn-red{
	text-transform: uppercase;
	background-color: var(--popping-red);
	color: #fff;
	border-radius: 50px;
	padding: 0.5em 2em;
}

.sm-btn-red:hover{
	background-color: #000;
	color: #fff;
}

.bg-border{
	background-color: #fff;
	border:1px solid;
	border-radius: 10px;
	overflow: hidden;
}

.uppercase{
	text-transform: uppercase;
}

.lg-text{
	font-size: 2vw !important;
	font-weight: 700;
}

.icon{
	display: inline-block;
	height: 20px;
}
.form-button{
	width: 300px;
	padding:10px;
	border-radius:50px;
	text-align:center;
	border:2px solid #000;
	color: #000;
}

.form-button:hover{
	background-color: black;
	color: #fff;
}

/* MENU */
.mobile-menu{
	display: none;
}
.nav-wrapper{
	display: flex;
	align-items: center;
}

.navigation{
	font-size: 0.9em;
	text-transform: uppercase;
	background-color: #fff;
}

.navigation a{
	color: #222;
}

.navigation a:hover{
	color: #000;
}

.logo{width: 100px;}
.logo a img{
	width: 100%;
}

.menu{
	margin-left:2em;
}
.menu-item{
	margin-right:40px;
}

.auth{
	display: flex;
	align-items: center;
}

.auth-link{
	color: #fff;
	background-color: var(--red);
	padding: 10px 20px;
	border-radius: 20px;
	white-space: nowrap;
}

.auth-link a{
	color: #fff;
}




/*/HERO/*/

.hero{
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #eee;
}

.hero-content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
}

.hero-content h1{
	color: #eee;
	margin-bottom: 40px;
	font-size: 4em;
}

.hero-content .form{}
.hero-content .form input.main-search{
	width: 100%;
	margin-bottom:1em;
	height: 50px;
	border-radius: 5px;
	padding:10px 20px;

}
.hero-content .form .form-check:nth-child(2){
	margin:0 2em;
}

.hero-content .form .form-check{
	outline: 1px solid #000;
	padding: 10px;
	padding-left: 2em;
	padding-right:3em;
	margin:0;
	background-color: #fff;
	border-radius:5px;
	font-weight: bold;
}

#search-tabs{
	min-height: 50vh;
}

.search-form{
	max-width: 50vw;
	width: 100%;
	align-items: center;
	background-color: transparent;
}
.search-form .main-search{

}
.search-form .searchBtn{
	height: 50px;
	margin-left: 1em;
  background-color: black;
  border: none;
  outline: none;
  min-width: 150px;
}
.search-form .nav{
	background-color: transparent;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:20px;
	padding: 0;
}
.search-form .nav-link{
	position: relative;
	min-width: 180px;
	width: 100%;
	height: 50px;
	border:1px solid #000;
	align-self: center;
	padding-top:10px;
	color: #000;
	background-color: #eee;
}



.search-form .nav-link.active{
	background-color: #fff;
	color: #000;
	font-weight: 500;
}

.search-form .nav-link::after{
	content: '';
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	left: 1em;
	top: 15px;
	background-color: #fff;
	border:1px solid;
}


.search-form .nav-link.active::after{
	content: '';
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	left: 1em;
	top:15px;
	background-color: black;
}

.partner-img{
	max-width: 200px;
	margin-right: 12px;
}

#exhibition{}
#join-popping{}
#why-popping{}
#partners{
    text-align: center;
}





/*LISTINGS*/
.header{
	padding-top: 5em;
	height: 60vh;
	background-color: #815959;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
	position: relative;
	background-blend-mode: darken;
}

.header::after{
/*	content: '';
	width: 100vw;
	height: 100%;
	position: absolute;
	top:0;
	background: linear-gradient(0deg,black,transparent);*/
}

.header .header-title{
	font-size: 2.5em;
	text-transform: uppercase;
	font-weight: 700;
}

.header .sub-heading{

}

.header .header-content{
	max-width: 50vw;
	overflow: hidden;
}

.listings{
	display:flex;
	padding-top:1rem;
}

.listings .grid-container{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding-bottom: 3rem;
}
.listings p{
	margin: 0;
}

.listing-item{
	display: block;
	height: 100%;
	border:1px solid #222;
	border-radius:20px;
	height: 510px;
	overflow:hidden;
	color: inherit;
	max-width: 40vw;
	min-width: 400px;
}

.listing-item:nth-child(odd){
/*	margin-left:auto;*/
}
.listing-img-wrapper{
	max-height: 250px;
	height: 100%;
	overflow: hidden;
	position: relative;
	background-color: #000;
}
.listing-item-img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/*Listing temporarily disabled*/
.listing-item .tag{
	background-color: var(--red);
	position: absolute;
	z-index: 3;
	right: 20px;
	bottom: 20px;
	padding: 10px 20px;
	font-size: 0.7rem;
	border-radius: 20px;
	color: #fff;
	display: none;
}

.listing-item .content-wrapper{
	font-size: 0.9rem;
  font-weight: 500;
	padding:1em;
}

.listing-item .progress-bar{
	background-color: red;
	display: none;
}


.content-wrapper .item-header{
	text-transform: uppercase;
	font-weight: 700;
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-wrapper .listing-daily-rate{
		color: var(--red);
}
.content-wrapper .listing-date{}
.content-wrapper .listing-location{
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.content-wrapper .listing-progress{
	display: none;
}
.content-wrapper .listing-progress p{
	margin-bottom: 0.7em;
}
.content-wrapper .listing-progress p span{
	color: var(--red);
	font-weight: 500;
}
.content-wrapper .listing-rating{
	display: none;
}
.content-wrapper .listing-space{}
.content-wrapper .listing-stall-numbers{}
.content-wrapper .listing-time{}
.content-wrapper .content{}

.content-wrapper .row{
	margin-bottom: 1rem;
}

.content-wrapper .side-info{
	font-size: 1.3em;
	border-left:3px solid #000;
	font-weight: 500;
	padding: 1em;

}



/*SIGNUP*/

.signup main{
	height: calc(100vh - 75px);
/*	overflow: hidden;*/
}
.options{
	display:flex;
	width: 100%;

}
.select-option{
	text-decoration: none;
	width:50%;
	border:1px solid #000;
	border-radius:5px;
	padding: 1em;
	margin-right:1em;
}

.create-account{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 59%;
}
.create-acc-wrapper{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.create-acc-wrapper p{
	text-align: center;
}

.modal-content{
	display: flex;
	min-height: auto;
	background-color: #eee;
	justify-content: space-around;
	align-items: center;
}

.logged-in .modal-content {
    height: auto;
}

#paymentConfirmationModal .modal-content {
    height: fit-content;
    min-height: auto;
}

#paymentModal .modal-content {}

#guest-booking{
	background-color: #eee;
}

.signup-form{
	padding: 2em;
	background-color: #eee;
	max-width: 50vw;
}

.form-wrapper .form-select{
	margin-bottom: 0;
}


.form-wrapper input,
.form-wrapper textarea,
.form-wrapper select{
	margin-bottom: 1em;
}


.signup-form input{
	outline: 0;
	border:2px solid #333;
	font-weight: 500;
}

.signup-form input:focus{
	outline: 0;
	box-shadow: none;
	border:2px solid green;
}

.signup-form input::placeholder{
	color: #bbb;
}

.modal-form-footer{
	display: flex;
}

.form-nav-buttons{
	display: flex;
}


.form-button:nth-child(1){
	margin-right:1em;
}

.create-venue .form-wrapper{
/*	height: calc(100vh - 75px);*/
	display: flex;
	justify-content: center;
	align-items: center;
}

.custom-file-label{
	border: 1px dashed #ccc;
  	display: inline-block;
  	padding: 0.5em;
  	cursor: pointer;
  	width: 100%;
  	height: 200px;
  	background-color: #fff;
}

.create-venue input[type="file"]{
	visibility: hidden;
	display: none;
}

.create-venue{
	background-color: #eee;
}

  ::placeholder {
  	transition: all 350ms ease;
  }
  
  .form-control:focus::placeholder {
  	transform: translate(20px, 0);
    opacity: 0.0;
  }



/* Business Profile */

.business-profile main{
	height: calc(100vh - 75px);
	background-color: var(--light-grey);
}


.business-profile .form-wrapper{
/*	height: calc(100vh - 75px);*/
		padding: 1em;
}

.business-profile .form-wrapper input,.business-profile .form-wrapper textarea,
.business-profile .form-wrapper select{
	margin-bottom: 1em;
}

.business-profile .signup-form,
.vendor-profile .signup-form{
	margin:0 auto;
	position: relative;
}

.form-nav-buttons{
	position: absolute;
	bottom: 2em;
	left:0;
	right:0;
	display: flex;
	justify-content: center;
	margin-bottom: 0 auto;
}

.business-profile .uploaded-docs{
	border: 1px solid;
	min-height: 10vh;
	background-color: #fff;
}



/*SINGLE EVENT*/

.single-venue main, 
.single-venue main{
	background-color: var(--light-grey);
}

.single-event h4{
	font-weight: bold;
	font-size: 1.4em;
	line-height:1;
	letter-spacing: -0.5px;
}

.single-event .header{
	background-color: #bbb;
	min-height: 5em;
	padding: 1em;
	height: 5 0vh;
}

.event-content{
	background-color: #ddd;
	min-height: 5em;
	padding: 1em;
}

.event-sidebar{
	min-height: 5em;
	position: relative;
}

.event-sidebar-content{
	min-height: 5em;
	margin-top:2em;
	border: 1px solid;
	border-radius: 20px;
	padding: 2em;
}
.event-images{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	row-gap: 40px;
}

.event-images img{
	width: 200px;
	height: 120px;
	object-fit: cover;
	border-radius: 5px;
}

.event-pricing{
	background-color: var(--black);
	color: #fff;
	padding: 1em;
	margin-top: 3em;
	border-radius: 20px;
}

.event-title{
	font-weight: 500;
	font-size: 1.5em;
}

.quick-facts{
	margin-top:-15em;
	padding: 0;
	overflow: hidden;
}

.quick-facts img{
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.event-amenities{
	background-color: #2e3138;
	color: #fff;
}

article.event-amenities.event-sidebar-content h4 {
    margin-bottom: 1em;
}

article.event-amenities.event-sidebar-content .ea-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.event-demographics{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap:30px;
}

.ops-hours{

}

/*SINGLE VENUE*/

.single-venue .header{
	background-color: #bbb;
	min-height: 5em;
	padding: 1em;
	height: 50vh;
}

.single-venue .event-demographics{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}
.qf-content{
	padding: 1.5em;
}



/* WELCOME PAGE */

.welcome-page{}

.welcome{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}	

.welcome p{
	margin-bottom: 0;
}

/* LOGIN */

.login-page{}
.login-form{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
/*	width: 100%;*/
}

.login-form form{
	width: 90%;
}



/*  DASHBOARD  */


.nav-tabs .nav-link,
.nav-tabs a{
	color: #000;
}

.nav-tabs .nav-link.active{
	color: var(--popping-red);
	background-color: transparent;
	font-weight: 500;
	border-color: transparent;
}

.nav-tabs .tab-link-custom{
	border: 1px solid transparent;
	border-radius: 5px;
	padding: 1em 0.5em;
}

.dash-content{
	background-color: var(--light-grey);
	min-height: 100vh;
	padding: 2em;
}

.nav-tabs .collapse .nav-link{
	background-color: transparent;
	border:1px solid transparent;
	border-radius: 0;
}

.dash-header{
	display: grid;
	grid-template-columns: 1fr 2fr;
	column-gap: 20px;
/*	background-color: #eee;*/
}

.dash-header p.small{
	font-size: 0.8em;
	color: #999;
	margin-bottom: 0;
}
.dash-header p{
	margin-bottom: 0;
}

.booking-item{
	margin-top: 1em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #efefef;
	padding: 5px 10px;
	border-radius:10px;
	height: 75px;
}

.booking-item p{
	margin-bottom: 0;
	line-height: 1;
}

.booking-item img{
	height: 100%;
	width: 100%;
	max-width: 100px;
	max-height: 100px;
	object-fit: cover;
	border-radius:10px;
}

.dash-table-header{
	padding:15px 0;
	align-items: center;
}

.profile-comp{
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*Footer*/


footer{

}
footer a{
	color: #222;
	margin-right:20px;
}

.subFooter{
/*	background-color: #ddd;*/
	padding: 2em 0;
}

.subFooter h3{
	margin-bottom: 1em;
}

.subFooter .about,
.subFooter .links{
	display: flex;
	flex-direction: column;

}

/*ABOUT PAGE*/

.about-page{

}

.about-page .header{
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-page .sub-header{
	background-color: var(--popping-black);
	padding: 10%;
	color: var(--light-grey);
}

.about-page .story{

}

.about-page .call-to-action{
	width:100%;
}


/*FORM Errors*/

body.booking-form-errors #form-errors{
	background-color: red;
  color: #fff;
  padding: 0.5em;
}

body.booking-form-errors .confirmationGroup{
	outline: 1px solid red;
}

.payment-info{padding: 2em;align-items: center;justify-content: center;height: 50vh;/* background-color: #fff; *//* margin-top: 2em; */}

.success-info{
	
}


/*EVENT ORGANISERS*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 67vh;
    background: url('https://old.popping.co.za/wp-content/uploads/2024/09/IMG_7208.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.304);
	z-index: 0;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.304);
}

.hero-text {
    position: relative;
    text-align: center;
    color: white;
    font-size: 5rem;
    font-weight: 700;
    padding: 20px;
    max-width: 80%;
    color: #eee;
}

/* Button */
.btn {
    position: relative;
    display: inline-block;
    background-color: #30600D;
    color: white;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease-in-out;
}

/* Hover effect */
.btn:hover {
    background-color: white;
    color: #2b2b2b;
}

/* List your market section */
.list-your-market {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.list-market-container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 32px;
    color: #d91e1e;
    font-weight: bold;
    margin-bottom: 20px;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    background: #fff;
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 220px;
}

.feature-box i {
    font-size: 30px;
    color: #d91e1e;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 20px;
    color: #d91e1e;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #333;
}

.video-container {
    margin-top: 30px;
    border: 3px solid #d91e1e;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

video {
    width: 100%;
    height: 70vh;
    border-radius: 10px;
}

/* Join Our Community Section */
.join-community {
    background: #EEEEEE;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 32px;
    color: #d91e1e;
    font-weight: bold;
    margin-bottom: 30px;
}

.community-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.community-box {
    /*background: #fff;*/
    padding: 20px;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.community-box img {
		height: 100%;
    max-width: 100%;
    max-height: 300px;
    margin-bottom: 20px;
    background-color: transparent;
}

.community-box h3 {
    font-size: 20px;
    color: #d91e1e;
    font-weight: bold;
    margin-bottom: 10px;
}

.community-box p {
    font-size: 14px;
    color: #333;
}

/* List Your Market/ Manage Bookings/ Accept Bookings */
.list-market {
    background-color: white;
}

.accept-payments{
    background-color: white;
}

.section {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    /*margin: 40px 0;*/
    margin: 0 auto;

}

.section img {
    width: 45%;
    border-radius: 12px;
    background: transparent;
}

.section-content {
    width: 50%;
    padding: 0 20px;
}

.section h2 {
    font-size: 26px;
    color: #c2410c;
    font-weight: bold;
    margin-bottom: 15px;
}

.section p,
.section ul {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.section ul {
    padding-left: 20px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #30600D;
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
    }

    .section img,
    .section-content {
        width: 100%;
        padding: 0;
    }
}

/* Choose Plan Section */
.choose-plan {
    background: #EEEEEE;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.choose-plan-container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 2em;
    color: #d91e1e;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

.plans-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.plan-card.red {
    background: #d91e1e;
    color: #fff;
}

.plan-card.white {
    background: #fff;
    color: #333;
}

.plan-card h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.plan-card h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-card .plan-desc {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-card hr {
    width: 50px;
    height: 2px;
    background: #fff;
    margin: 10px auto;
}

.plan-card.white hr {
    background: #333;
}

.plan-card h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.plan-card ul li {
    font-size: 14px;
    padding: 5px 0;
}

.plan-card .extra {
    font-weight: bold;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: auto;
    text-decoration: none;
    border: none;
}

.btn-white {
    background: #fff;
    color: #d91e1e;
}

.btn-red {
    border: 2px solid #d91e1e;
    color: #d91e1e;
    background: transparent;
}

.verify{
	background: white;
    padding: 1em;
    border-radius: 10px;
    margin: 1em 0;
    max-width: 40vw;
    min-width: 300px;
}

.verify p{
	margin-bottom: 0;
}