.transaction-list,
.subscription-list {
  margin-bottom: 50px;
}

.transaction-list td,
.subscription-list td {
  min-width: 100px;
}

.no-active-membership {
    background-color: #f8d7da; /* Light red background for warning */
    color: #721c24; /* Dark red text for contrast */
    border: 1px solid #f5c6cb; /* Red border */
    border-radius: 5px; /* Rounded corners */
    padding: 15px; /* Spacing inside the box */
    margin: 40px 0; /* Spacing outside the box */
    text-align: center; /* Center the text */
    font-weight: bold; /* Make the text bold */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.no-active-membership a {
    color: #004085; /* Different color for the link */
    text-decoration: underline; /* Underlined text for the link */
    font-weight: normal; /* Normal weight for the link text */
}

.no-active-membership a:hover {
    color: #0056b3; /* Change color on hover */
    text-decoration: none; /* Remove underline on hover */
}

#shipbob_order_form button[type=submit] {
	display: block;
	grid-column: 1;
}

.form-row {
	display: inline-flex;
	flex-direction: column;
	margin-bottom: 15px;

	&.form-row-wide {
		width: 100%;
	}

	/* &.form-row-last {
		width: calc((100% - 5px)/2);
		padding-left: 10px;
	}

	&.form-row-first {
		width: calc((100% - 5px)/2);
		padding-right: 10px;
	} */

	label {
		/* margin: 0; */
	}

	.select2-container .select2-selection--single {
		height: 51px;
	}
	.select2-container--default .select2-selection--single .select2-selection__rendered {
		line-height: 51px;
		font-size: 18px;
	}
	.select2-container--default .select2-selection--single .select2-selection__arrow {
		height: 51px;
	}

	input {
		margin-bottom: 0;
	}

}

span.required {
	color: #b92635;
}

form .invalid-message {
	color: #b92635;
	font-size: 14px;
	margin-top: 5px;
}

.ohmify-show-btn.hide-content + .wp-block-group {
	display: none;
}

#ohmify-quiz-form button[type=submit] {
	display: flex;
	align-items: center;
}


.ohmify-loader {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: inline-block;
	border-top: 2px solid #FFF;
	border-right: 2px solid transparent;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	margin-left: 10px;
  }
  .ohmify-loader::after {
	content: '';  
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border-left: 2px solid #6a6664;
	border-bottom: 2px solid transparent;
	animation: rotation 0.5s linear infinite reverse;
  }
  @keyframes rotation {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  } 

#shipbob_order_form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px;

	.form-row-wide {
		grid-column: 1 / -1;
	}
}