/* Tasmania Product Listing Frontend Styles */

.tas-listing-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	padding: 20px 0;
	font-family: inherit;
}

/* User provided CSS */
.tas-listing-form-wrapper label {
	display: block;
	font-size: 14px !important;
	color: #000000;
	margin-bottom: .4rem;
	font-weight: 600;
}
.tas-radio-label{
    display: flex !important;
	gap: 5px;
}
.tas-radio-label input[type=radio]{
    margin-top: 0;
}
.tas-listing-form-wrapper input[type=text], 
.tas-listing-form-wrapper input[type=email], 
.tas-listing-form-wrapper input[type=password], 
.tas-listing-form-wrapper input[type=tel], 
.tas-listing-form-wrapper input[type=url], 
.tas-listing-form-wrapper input[type=search], 
.tas-listing-form-wrapper input[type=date], 
.tas-listing-form-wrapper input[type=number], 
.tas-listing-form-wrapper textarea {
	padding: 15px;
	line-height: 1em;
	border: 1px solid #aaaaaa;
	background-color: #fff;
	border-radius: 12px;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.3s;
	font-size: 15px;
	color: #333;
}

.tas-listing-form-wrapper select {
	padding: 15.5px 15px;
	padding-right: 40px;
	line-height: 18px;
	border: 1px solid #aaaaaa;
	background-color: #fff;
	border-radius: 12px;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.3s;
	font-size: 15px;
	color: #333;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 16px;
}
/* .tas-listing-form-wrapper select#tas_condition{
	padding: 15.5px 15px;
	line-height: 18px;
} */

.tas-listing-form-wrapper input[type="radio"],
.tas-listing-form-wrapper input[type="checkbox"] {
	accent-color: #000000;
	cursor: pointer;
}

.tas-listing-form-wrapper input:focus, 
.tas-listing-form-wrapper textarea:focus,
.tas-listing-form-wrapper select:focus {
	border-color: #a4d233;
	outline: none;
}

.tas-listing-form-wrapper input::placeholder,
.tas-listing-form-wrapper textarea::placeholder {
	color: #999;
}

.tas-listing-form-wrapper h3 {
	margin: 0;
    font-size: 22px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    color: #303030;
    font-weight: 600;
    margin-bottom: 5px;
}

.tas-listing-form-wrapper p.tas-subtitle {
	padding-bottom: 20px !important;
	margin-bottom: 5px !important;
	font-size: clamp(14px, 3vw, 15px) !important;
	font-weight: 400 !important;
	color: #000000;
}
/* End user provided CSS */

.tas-listing-form-wrapper .tas-field-group,
.tas-listing-form-wrapper .tas-price-group,
.tas-listing-form-wrapper .tas-contact-group {
	margin-bottom: 25px !important;
}

.tas-listing-form-wrapper .tas-flex-row {
	display: flex;
	gap: 20px;
	margin-bottom: 25px !important;
}
.tas-listing-form-wrapper .tas-flex-row:last-child {
	margin-bottom: 0 !important;
}
.tas-listing-form-wrapper .tas-col-half {
	flex: 1;
	min-width: 0;
}



/* Tip Box */
.tas-tip-box {
	display: flex;
	align-items: center;
	background-color: #f2f7e9;
	padding: 15px;
	border-radius: 8px;
	margin-top: 10px;
}
.tas-tip-icon {
	background-color: #8cc63f;
	color: #fff;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}
.tas-tip-icon svg {
	width: 12px;
	height: 12px;
}
.tas-tip-box p {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 13px !important;
	color: #555;
	line-height: 18px;
}
.tas-tip-box strong {
	color: #8cc63f;
}

/* Category Search */
.tas-search-wrap {
	position: relative;
	margin-bottom: 15px;
}
.tas-search-wrap svg {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
}
.tas-search-wrap input[type=search],
.tas-search-wrap input[type=text] {
	padding-left: 45px;
	padding-right: 40px;
}

.tas-label-small {
	font-size: 12px !important;
}

.tas-mb-0 {
	margin-bottom: 0 !important;
}

/* Category List */
.tas-category-list {
	list-style: none;
	padding: 0 10px !important;
	margin: 0 !important;
	max-height: 400px;
	overflow-y: auto;
}
.tas-category-list::-webkit-scrollbar,
.tas-category-list::-webkit-scrollbar-thumb,
.tas-category-list::-webkit-scrollbar-track { 
    width: 5px;
    border: none;
    background: transparent;
}
.tas-category-list::-webkit-scrollbar-button,
.tas-category-list::-webkit-scrollbar-track-piece,
.tas-category-list::-webkit-scrollbar-corner,
.tas-category-list::-webkit-resizer {
    display: none;
}
.tas-category-list::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #8082858f;
}
.tas-cat-item {
	padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
    border-radius: 4px;
}
.tas-cat-item:last-child {
	border-bottom: none;
}
.tas-cat-item svg {
	color: #ccc;
}

.tas-cat-item:hover, .tas-cat-item.tas-selected {
	background: #f4fce0;
}
.tas-cat-item.tas-selected svg {
	color: #8cc63f;
}
li.tas-cat-item[data-id="838"] svg  {
    margin-left: -2px;
}

/* Price Group */
.tas-price-flex {
	display: flex;
	align-items: stretch;
	border: 1px solid #aaaaaa;
	border-radius: 12px;
	overflow: hidden;
	height: 52px;
	transition: border-color 0.3s;
}

.tas-price-flex:focus-within {
	border-color: #bbf706;
}
.tas-price-flex:focus-within .tas-currency {
	border-right-color: #bbf706;
}
.tas-price-flex:focus-within select {
	border-left-color: #bbf706 !important;
}

.tas-currency {
	padding: 0 15px;
	background: #fff;
	color: #666;
	font-weight: 500;
	border-right: 1px solid #aaaaaa;
	display: flex;
	align-items: center;
	transition: border-color 0.3s;
}

.tas-price-flex input {
	border: none !important;
	border-radius: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	flex-grow: 1;
	padding: 0 15px !important;
	height: 100% !important;
}

.tas-price-flex select {
	padding: 0 40px 0 15px !important;
	border: none !important;
	border-radius: 0 !important;
	border-left: 1px solid #aaaaaa !important;
	margin: 0 !important;
	box-shadow: none !important;
	background-color: #fff;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 16px;
	width: auto;
	min-width: 140px;
	color: #666;
	flex-shrink: 0;
	height: 100% !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
}

/* Section Headings with Checkmark */
.tas-section-heading {
	display: flex;
	align-items: center;
	font-size: 22px !important;
	margin-top: 30px !important;
	margin-bottom: 15px !important;
}
.tas-section-heading svg {
	color: #fff;
	margin-right: 10px;
	fill: #e0e0e0;
}

/* Gallery Grid Upload */
.tas-sub-label {
	font-size: 12px !important;
	color: #999 !important;
	padding-bottom: 10px !important;
}

.tas-grid-gallery {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}
#tas-gallery-preview i {
   top: 0;
}
.tas-main-photo {
	grid-column: span 2;
	grid-row: span 2;
}

.tas-upload-box {
	border: 1px solid #bbf706;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	background: #fff;
	aspect-ratio: 1/1;
}

.tas-upload-box:hover {
	background: #fdfef7;
}
.tas-upload-box input[type="file"] {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.tas-upload-box span {
	font-size: 12px;
	color: #000000;
	font-weight: 500;
	line-height: 15px;
    margin-top: 5px;
}

.tas-sortable-gallery {
	list-style: none;
	padding: 0;
	margin: 0;
	/* display: contents is applied inline so children become grid items */
}

.tas-gallery-item, .tas-placeholder-box {
	aspect-ratio: 1 / 1;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	background: #fff;
	position: relative;
}

.tas-gallery-item:first-child {
	grid-column: span 2;
	grid-row: span 2;
	aspect-ratio: 1 / 1;
}

.tas-gallery-item {
	overflow: hidden;
	cursor: grab;
	border: 1px solid #dcdcdc;
}

.tas-gallery-item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.tas-remove-img {
	position: absolute;
	top: 5px;
	right: 5px;
	background: rgba(255,255,255,0.9);
	color: #333;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	z-index: 2;
}

/* Gallery Item Actions */
.tas-gallery-item-actions {
	position: absolute;
	bottom: 5px;
	right: 5px;
	display: flex;
	gap: 5px;
	padding: 4px;
	border-radius: 4px;
	z-index: 2;
}

.tas-gallery-item-actions span {
	cursor: pointer;
	color: #bbf706;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 3px;
	transition: background 0.2s;
}
.tas-gallery-item-actions span {
	background: rgba(255, 255, 255, .6);
}
.tas-gallery-item-actions span:hover {
	background: rgba(0, 0, 0, 0.6);
}
.tas-gallery-item-actions span > i {
	font-size: 14px;
}
.tas-gallery-item-actions .tas-remove-img {
	position: static;
	color: #bbf706;
	width: 24px;
	height: 24px;
	border-radius: 3px;
	box-shadow: none;
}
/* Image Preview Modal */
#tas-image-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 99999;
	align-items: center;
	justify-content: center;
}
#tas-image-modal img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.tas-modal-close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
}

/* Character Counter */
.tas-char-count {
	font-size: 12px;
	color: #aaa;
	text-align: left;
	display: block;
	margin-top: -8px;
	padding: 8px 15px;
	background: #f9f9f9;
	border: 1px solid #aaaaaa;
	border-top: none;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.tas-listing-form-wrapper textarea {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	margin-bottom: 0;
	font-size: 14px !important;
	font-weight: 500;
	min-height: 230px;
	resize: vertical;
	line-height: 18px;
}
.tas-listing-form-wrapper textarea#tas_title {
	min-height: auto;
	line-height: 18px;
	padding: 15px;
	border-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	resize: none;
	overflow-y: hidden;
	transition: border-color 0.3s, height 0.1s ease;
	font-size: 16px !important;
	font-weight: normal;
	color: #555;
}
.tas-listing-form-wrapper textarea#tas_title::placeholder {
	white-space: nowrap !important;
	text-overflow: ellipsis !important;
	overflow: hidden !important;
}

/* Remove default search icons / decorations in Safari/WebKit */
#tas-listing-form input[type="search"]::-webkit-search-decoration,
#tas-listing-form input[type="search"]::-webkit-search-cancel-button,
#tas-listing-form input[type="search"]::-webkit-search-results-button,
#tas-listing-form input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
	display: none !important;
}

#tas-listing-form input[type="search"] {
	-webkit-appearance: none;
	appearance: none;
}

.tas-search-clear {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>") no-repeat center center;
	background-size: contain;
	border: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
	display: none;
	height: 18px;
	width: 18px;
	z-index: 99 !important;
	outline: none;
}

/* Category Readonly Box */
.tas-cat-readonly {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	border: 1px solid #aaaaaa;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}
.tas-cat-readonly-text {
	display: flex;
	flex-direction: column;
}
.tas-cat-readonly-text strong {
	font-size: 14px;
	line-height: 20px;
	color: #333;
}
.tas-cat-readonly-text span {
	font-size: 12px;
	line-height: 18px;
	color: #666;
}

/* Form Flex */
.tas-flex-row {
	display: flex;
	gap: 20px;
	margin-bottom: 0;
}

.tas-col-half {
	flex: 1;
}

/* Buttons */
.tas-btn {
	display: inline-block;
	padding: 14px 28px;
	font-size: 14px !important;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	border: none;
	text-align: center;
	transition: all 0.3s;
	width: 100%;
}

.tas-btn-primary {
	background-color: #bbf706; /* Lime green from design */
	color: #000;
	width: 200px;
}

.tas-btn-primary:hover {
	background-color: #a8de05;
}

.tas-btn-secondary {
	background-color: #fff;
	color: #666;
	border: 1px solid #dcdcdc;
	width: 120px;
}

.tas-step-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
	align-items: center;
	justify-content: center;
}

.tas-submit-actions {
	display: flex;
	flex-direction: row;
	gap: 15px;
	margin-top: 40px;
}

.tas-submit-actions .tas-btn {
	flex: 1;
}

.tas-step-actions.tas-submit-actions .tas-btn.tas-btn-outline {
	background-color: #fff !important;
	border: 1px solid #aaaaaa !important;
	color: #000;
}

.tas-btn-success {
	background-color: #bbf706;
	color: #000;
}

/* Footer text */
.tas-privacy-text {
	text-align: left;
	margin-top: 30px !important;
	line-height: 1.5;
	font-size: 13px;
    color: #666;
}
.tas-privacy-text a {
	color: #000000;
	text-decoration: underline;
}

/* Client Side Error */
.tas-error {
	border-color: #ff3b30 !important;
}
.tas-error-msg {
	color: #ff3b30;
	font-size: 12px;
	margin-top: 5px;
	display: block;
}

/* Responsive Visibility */
.tas-mobile-only {
    display: none !important;
}



/* Accordion Styles (Mobile) */
#tas-category-accordion {
    /* Container no longer needs borders, we apply to children */
}

#tas-mobile-breadcrumb {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin-bottom: 15px;
    display: none;
}

.tas-category-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

#tas-category-breadcrumb-dropdown {
    display: none;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

#tas-category-breadcrumb-text {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.tas-acc-parent {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}
.tas-acc-parent:last-child {
    margin-bottom: 0;
}
.tas-sectiob-divider{
   height:1px; 
   background-color: #eaeaea;
   margin-top: 40px;
}
.tas-acc-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}

.tas-acc-header.tas-acc-expanded {
    background: #eefbca;
}

.tas-acc-header svg {
    color: #999;
    transition: transform 0.3s ease;
}
.tas-acc-header.tas-acc-expanded > svg:last-child {
    transform: rotate(180deg);
}

.tas-acc-body {
    display: none;
    border-top: 1px solid #eaeaea;
}

.tas-acc-list {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff;
}

.tas-acc-item {
    border-bottom: 1px solid #f0f0f0;
	list-style-type: none;
}
.tas-acc-item:last-child {
    border-bottom: none;
}

/* Sub-header inside accordion */
.tas-acc-sub-header {
    padding: 14px 20px 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    transition: background 0.2s;
}
.tas-acc-sub-header.tas-acc-expanded,
.tas-acc-sub-header.tas-acc-expanded{
    background: #eefbca;
}
.tas-acc-sub-header.tas-acc-expanded > svg:last-child {
    transform: rotate(180deg);
}

/* Leaf nodes (radio buttons) */
.tas-acc-leaf, .tas-acc-search-parent {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: background 0.2s;
}
.tas-acc-search-parent:hover {
    background: #eefbca;
}
/* Level 2 leaf nodes */
#tas-category-accordion .tas-acc-body > .tas-acc-list > .tas-acc-item > .tas-acc-leaf {
    padding-left: 40px;
}
/* Level 3 leaf nodes (deeply nested) */
.tas-acc-sub-body .tas-acc-leaf {
    padding-left: 50px;
}

.tas-acc-leaf.tas-acc-expanded, .tas-acc-leaf.tas-selected {
    background: #eefbca;
}

/* Custom Radio Button */
.tas-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.tas-acc-leaf.tas-selected .tas-radio-circle {
    border-color: #8cc63f;
}
.tas-radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8cc63f;
    transform: scale(0);
    transition: transform 0.2s;
}
.tas-acc-leaf.tas-selected .tas-radio-circle::after {
    transform: scale(1);
}

/* Location Dropdown */
.tas-search-wrap {
	position: relative;
}
.tas-form-location-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 100;
	display: none;
	max-height: 150px;
	overflow-y: auto;
	margin-top: 5px;
}
/* Thin scrollbar for location dropdown */
/* .tas-form-location-dropdown::-webkit-scrollbar,
.tas-form-location-dropdown::-webkit-scrollbar-thumb,
.tas-form-location-dropdown::-webkit-scrollbar-track { 
    width: 5px;
    border: none;
    background: transparent;
}
.tas-form-location-dropdown::-webkit-scrollbar-button,
.tas-form-location-dropdown::-webkit-scrollbar-track-piece,
.tas-form-location-dropdown::-webkit-scrollbar-corner,
.tas-form-location-dropdown::-webkit-resizer {
    display: none;
}
.tas-form-location-dropdown::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #8082858f;
} */

.tas-dloc-region-wrap {
	position: relative;
}
.tas-dloc-region-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

.tas-dloc-region-wrap .tas-dloc-region-inner > svg {
	left:unset;
    right: 15px;
    transform: translateY(-50%)!important; 
}
.tas-dloc-region-arrow {
	transition: transform 0.2s ease;
	color: #999;
	flex-shrink: 0;
	display: block;
	margin: 0;
}
.tas-dloc-sub-locations {
	display: none;
	background: #fafafa;
}
.tas-dloc-suburb-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px 10px 30px;
	font-size: clamp(12px, 3vw, 14px);
    cursor: pointer;
    color: #33373d;
}
.tas-dloc-suburb-inner:hover span.tas-dloc-suburb-name {
	text-decoration: underline;
}
.tas-form-location-dropdown .tas-dloc-suburb-inner {
	padding: 10px 12px;
}

/* Back Button Styles */
.tas-step-actions .tas-btn.tas-btn-back {
	display: flex;
    padding: 12px 28px;
	background-color: #fff !important;
	border: 1px solid #aaaaaa !important;
}

/* Responsive CSS */

@media (min-width: 768px) {
	.tas-category-selector {
		border: 1px solid #eee;
		border-radius: 8px;
		overflow: hidden;
	}
}


@media (max-width: 767px) {
	.tas-listing-form-wrapper .tas-flex-row {
		flex-direction: column;
		gap: 25px !important;
	}
    .tas-desktop-only {
        display: none !important;
    }
    .tas-mobile-only {
        display: block !important;
    }
	.tas-flex-row {
		flex-direction: column;
		gap: 0;
	}
	.tas-grid-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
	.tas-btn-primary {
		width: 100%;
	}

}

@media (max-width: 450px) {
	.tas-grid-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Spinner & Notifications */
.tas-spinner {
	animation: tas-rotate 2s linear infinite;
	width: 18px;
	height: 18px;
	margin-right: 8px;
	vertical-align: middle;
}
.tas-spinner .path {
	stroke: currentColor;
	stroke-linecap: round;
	animation: tas-dash 1.5s ease-in-out infinite;
}
@keyframes tas-rotate {
	100% { transform: rotate(360deg); }
}
@keyframes tas-dash {
	0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
	50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
	100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

.tas-notification {
	padding: 15px;
	border-radius: 8px;
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 15px;
}
.tas-notif-success {
	background-color: #f2f7e9;
	border: 1px solid #bbf706;
	color: #333;
}
.tas-notif-error {
	background-color: #ffebe9;
	border: 1px solid #ff3b30;
	color: #d92a20;
}

/* HEIC Box Loading Spinner */
.tas-heic-loading-spinner {
	border: 3px solid rgba(0, 0, 0, 0.1);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border-left-color: #bbf706;
	animation: tas-heic-spin 1s linear infinite;
	margin: 0;
}
@keyframes tas-heic-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
