body.no-scroll {
    overflow: hidden;
}
.b2b-block {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}
.block-left, .block-right {
    width: 48%;
	position: relative;
}
.block-right {
	text-align: center;
}
button.toggle-text {
    cursor: pointer;
}
button.b2b-button {
    cursor: pointer;
	margin-top: 10px;
}
button.toggle-text {
	color: #000;
	padding: 0;
	background: none;
	border: none;
	position: relative;
	z-index: 10;
}
button.toggle-text:hover {
	color: #000;
	background: none;
	text-decoration: underline;
}
button.b2b-button {
	color: #000;
	padding: 8px 15px;
	background: none;
	border: 1px solid #000;
}
button.b2b-button:hover {
	background: #a76844;
}
.toggle-text:hover, .b2b-button:hover {
    background: #000;
}
.popup-button-text {
	font-size: 1.5em;
    line-height: 1.5em;
    padding-right: 45px;
	text-align: center;
}
.popup-title {
    font-size: 1em;
    line-height: 1em;
    padding-right: 45px;
	text-align: center;
	color: rgba(0,0,0,.5);
	margin-top: 5px;
}
.popup-content > div {
	margin-top: 20px;
}
.popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
}
.popup-form {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 0;
    z-index: 10001;
    max-width: 500px;
    width: calc(100% - 1.5em);
    display: none;
    max-height: 90vh;
    overflow: hidden;
}
.popup-form-content {
    padding: 20px;
    overflow-y: auto;
    max-height: 90vh;
    box-sizing: border-box;
}
.popup-close {
    position: fixed;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 15px;
    background-color: #a76844;
    z-index: 10002;
}
.popup-close:hover {
    background-color: #8e4f2b;
}
.b2b-spinner-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,.8);
}
.b2b-spinner {
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 calc(50% - 12px);
    position: relative;
}
.b2b-spinner::before {
    content: '';
    position: absolute;
    background-color: #fbfbfc;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
    .b2b-spinner::before {
        animation-name: blink;
        animation-duration: 2000ms;
    }
}
.b2b-block.boxstyle {
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  padding: 20px;
}
.textheight .block-left {
    overflow: hidden;
    position: relative;
}
.textheight .block-left.tmh {
	transition: max-height 0.4s ease-in-out;
}
.textheight .block-left.fixed-toggle .toggle-text {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}
.textheight .block-left.expanded {
    max-height: 100% !important;
    overflow: visible !important;
    position: relative;
}
.textheight .block-left.expanded .toggle-text {
    position: relative;
    z-index: 10;
}
.textheight .block-left::after {
    display: block;
    content: '';
    width: 100%;
    height: 90px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0.8) 100%);
    position: absolute;
    bottom: 0;
}
.textheight .block-left.expanded::after {
	background: none;
}
.fixrdm .toggle-text {
	position: absolute;
	bottom: 0;
}
.fixrdm .septext-short, .fixrdm .septext-full {
	height: 22px;
	overflow: hidden;
	transition: height 0.4s ease-in-out;
}
.full-text p.ft-clear-p {
	display: none;
}

@media (max-width: 575.98px) {
	.b2b-block {
		flex-direction: column;
	}
	.block-left, .block-right {
		width: 100%;
	}
	.block-right {
		order: 1;
		margin-bottom: 10px;
	}
	.block-left {
		order: 2;
	}
}