/* -----------------------------------
   Base Wrapper Styling
----------------------------------- */
.vol_entry_form {
	padding: 25px;
	text-align: left;
}
div#sell-detailed-info-wrapper, .vol_entry_form {
    background: #f1f1f1;
    border-radius: 10px;
	padding: 25px;
}

#html-loader .loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#html-loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e4ad52; /* brand orange */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* -----------------------------------
   Form Group Styling
----------------------------------- */
.vol_entry_form .form-group {
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
	/*gap: 15px;*/
}

.vol_entry_form .form-group-side-by-side {
	display: flex;
	flex-direction: row;
	gap: 15px;
}

.vol_entry_form .form-group div {
	width: 100%;
}

/* -----------------------------------
   Accessibility - Screen Reader Only
----------------------------------- */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* -----------------------------------
   Input Field Styling
----------------------------------- */
.vol_entry_form .form-control {
	display: block;
	width: 100%;
	padding: 10px;
	line-height: 1.5;
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	font-size: 16px;
}

/* -----------------------------------
   Styled Inputs - Legacy Compatibility
----------------------------------- */
.r-form-1-box input[type="text"],
.r-form-1-box textarea,
.r-form-1-box textarea.form-control {
	height: 46px;
	margin: 0;
	padding: 0 20px;
	vertical-align: middle;
	background: #fff;
	border: 3px solid #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 46px;
	color: #888;
	border-radius: 0;
	box-shadow: none;
	transition: all .3s;
}

/* -----------------------------------
   Terms & Conditions Text
----------------------------------- */
.sell-form-basic-wrapper .terms {
	margin: 15px 0 0;
	opacity: 0.8;
}

.sell-form-basic-wrapper .terms a,
.sell-form-basic-wrapper .terms a:hover,
.sell-form-basic-wrapper .terms a:focus {
	color: #e4ad52;
	text-decoration: none;
	transition: all .3s;
}

/* -----------------------------------
   Form Button Styling
----------------------------------- */
.sell-form-basic-wrapper .btn {
	box-shadow: none;
	color: var(--e-global-color-7162096);
	font-size: 16px;
	font-weight: 700;
	background: var(--e-global-color-accent);
	border: 2px solid transparent;
	padding: 10px 40px;
	border-radius: 40px;
	margin: 0 auto;
}

/* -----------------------------------
   Label Styling
----------------------------------- */
.sell-form-basic-wrapper label {
	color: #fff;
}

/* -----------------------------------
   Success Alert Styling
----------------------------------- */
.vol-success {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: #d4edda;
	color: #155724;
	padding: 15px 20px;
	border-left: 5px solid #28a745;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 25px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.vol-success i {
	font-size: 18px;
	color: #28a745;
}

/* -----------------------------------
   Form Validation Feedback
----------------------------------- */
.vol_entry_form .invalid-feedback {
	color: red;
	font-size: 0.9em;
}

.vol_entry_form .is-invalid {
	border-color: red;
}

/* -----------------------------------
   Featured Image Preview
----------------------------------- */
#featured-image-preview img {
	max-width: 100px;
	max-height: 100px;
	width: auto;
	height: auto;
	display: block;
	margin-top: 10px;
	border: 1px solid #ddd;
	border-radius: 6px;
}

/* -----------------------------------
   Login Link Text Styling
----------------------------------- */
#sell-basic-info-form p.login-link {
	color: #fff;
}

/* -----------------------------------
   Select2 Custom Styling
----------------------------------- */
.select2-container .select2-selection--multiple {
	font-size: 16px;
	padding: 6px 6px 10px;
}
.select2-container .select2-selection--single{
   font-size: 16px;
	height: auto;
}
/* -----------------------------------
   Utility Classes
----------------------------------- */
.hidden {
	display: none !important;
}

/* -----------------------------------
   Login Popup Styling
----------------------------------- */
/* Popup Container */
/* Login Popup Modal */
#login-popup {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 520px;
	background: #fff;
	padding: 10px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border-radius: 12px;
	max-height: 700px;
}
div#custom-auth-wrapper h2 {
    margin-top: 10px;
}
#custom-auth-wrapper {
   margin: auto;
   padding: 10px;
}
#custom-auth-form div {
   margin-bottom: 15px;
}
.auth-buttons button {
   margin-right: 10px;
}
.auth-buttons {
   display: flex;
   flex-direction: row;
   gap: 10px;
   justify-content: center;
}
#register_text, #login_text {
	cursor: pointer;
	text-decoration: underline;
}
/* Overlay */
#login-popup-overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Tab Buttons */
.login-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.login-tabs .tab-btn {
    flex: 1;
    padding: 10px 0;
    background: #f5f5f5;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login-tabs .tab-btn.active {
    background: #000;
    color: #fff;
}

/* Form Content */
#login-popup .tab-content {
    display: none;
}

#login-popup .tab-content.active {
    display: block;
}

/* Input Fields */
#login-popup input[type="text"],
#login-popup input[type="email"],
#login-popup input[type="password"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 2px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#login-popup input:focus {
    border-color: #e4ad52;
}

/* Submit Button */
#login-popup button[type="submit"] {
    background-color: #e4ad52;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#login-popup button[type="submit"]:hover {
    background-color: #d99432;
}
#auth-message p {
	text-align: center;
	font-size: 16px;
}
/**************
Mobile screen
************/
@media only screen and (max-width: 767px) {
   #login-popup {
    max-width: 390px;
    overflow-y: auto;
}
.page-id-23557 .elementor-widget-heading .elementor-heading-title.elementor-size-xxl {
    font-size: 40px;
}
}
@media only screen and (max-width: 520px) {
div#custom-auth-wrapper h2 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 24px;
}
}
