/*!
Theme Name: prcn_store
Author: Litpeaks Team
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');

body {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	text-align: center;
}

.main_wrapper{
   	background: url('assets/images/bg-image.png') no-repeat center center fixed;
	background-size: cover; 
	color: white;
}

.main_wrapper .header {
	padding: 30px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	margin: 0 30px;
}

.main_wrapper .header img {
	max-width: 300px;
	height: auto;
}

.main_wrapper .wrapper {
	height: 90vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main_wrapper .container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.main_wrapper .custom-select-wrapper {
	position: relative;
	width: 350px;
	margin-bottom: 30px;
}

.main_wrapper .custom-select {
	border: 1px solid white;
	border-radius: 9999px;
	padding: 8px 40px;
	color: white;
	cursor: pointer;
	position: relative;
	background: transparent;
	text-align: left;
	font-size: 15px;
	font-weight: 300;
}

.main_wrapper .custom-select .icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
}

.main_wrapper .custom-select .arrow {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: white;
}

.main_wrapper .custom-options {
	list-style: none;
	padding: 0;
	margin: 6px 0 0;
	border-radius: 6px;
	background: white;
	color: black;
	position: absolute;
	width: 100%;
	max-height: 250px;
	overflow-y: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	display: none;
	z-index: 10;
	font-size: 14px;
}

.main_wrapper .custom-options li {
	padding: 8px 20px;
	cursor: pointer;
	text-align: left;
}

.main_wrapper .custom-options li.disabled {
	color: #A1A1AA;
	padding-bottom: 5px;
	font-size: 16px;
}

.main_wrapper .custom-options li:hover {
	background-color: #f0f0f0;
}

.main_wrapper button {
	background-color: #3DAF8D;
	border: none;
	padding: 10px 30px;
	color: white;
	font-size: 16px;
	border-radius: 9999px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: "Poppins", sans-serif;
}

 .error-404-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 2rem;
  }

  .error-404-container h1 {
    font-size: 6rem;
    margin: 0;
    color: #ff4b4b;
  }

  .error-404-container h2 {
    font-size: 2rem;
    margin-top: 1rem;
    color: #333;
  }

  .error-404-container p {
    color: #666;
    margin: 1rem 0 2rem;
  }

  .error-404-container a {
    padding: 0.75rem 1.5rem;
    background-color: #3DAF8D;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }