@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Regular.eot');
    src: url('/fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('/fonts/OpenSans-Regular.woff2') format('woff2'),
        url('/fonts/OpenSans-Regular.woff') format('woff'),
        url('/fonts/OpenSans-Regular.ttf') format('truetype'),
        url('/fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
	font-family: 'Open Sans';
}

.p-4 {
    padding: 1rem !important;
}

a:not(.copyright a):not(a.bg-red) {
	color: #F2791A;
}

body a:hover {
	color: #374151;
}

.bg-red {
	background: #F2791A;
	color: #fff;
	border-color: transparent;
}

.hover-bg-red:hover {
	border-color: #F2791A;
	background: transparent;
	color: #374151;
}

.w-10 {
	width: 10%;
}

.w-15 {
	width: 15%;
}

.w-20 {
	width: 20%;
}

.w-30 {
	width: 30%;
}

.w-33-3 {
	width: 33.3%;
}

.w-40 {
	width: 40%;
}

.w-45 {
	width: 45%;
}

.w-50 {
	width: 50%;
}

.w-60 {
	width: 60%;
}

.line-height-15 {
	line-height: 1.5;
}

.space-between {
	justify-content: space-between;
}

.gap-20 {
	gap: 20px;
}

.url-to-copy {
	position: relative;
}

.url-to-copy button {
	position: absolute;
	right: 15px;
}

.url-to-copy button:focus-visible,
.url-to-copy button:focus {
	outline: none;
}

.url-to-copy button svg {
	width: 1em; 
	height: 1em; 
	fill: #747474;
	font-size: 1.5rem;
}

.url-to-copy button[data-title]:after {
    content: attr(data-title);
    position: absolute;
    top: -100%;
    left: -33px;
    font-size: 10px;
    width: 80px;
    background: #282828;
    color: #fff;
    right: 0;
    border-radius: 2px;
    padding: 2px 0;
    opacity: 0;
    transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.url-to-copy button[data-title]:hover:after {
	opacity: 1;
}

.cred-messages {
    color: #fff;
    position: fixed;
    background: #00A300;
    bottom: 24px;
    left: 50%;
    padding: 12px 15px;
    transform: translateX(-50%);
    border-radius: 3px;
    font-size: 14px;
    z-index: 9999;
    transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.cred-messages svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.2rem;
    animation-fill-mode: none;
    fill: #fff;
}

h2 {
	font-size: 1.25rem;
}

.accordion-item {
	border-color: #F2791A;
}

.accordion-button:focus {
	border: none;
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	background: #F2791A;
	color: #fff;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.or-separator span {
	border-radius: 100%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    background: #fff;
}

.or-separator span:before {
    z-index: -1;
    content: "";
    width: 70px;
    position: absolute;
    height: 1px;
    background: #F2791A;
}

.action-btns {
	gap: 15px;
}

@media only screen and (max-width: 480px) {
	[class*="w-"] {
		width: 100%;
		flex-basis: fit-content;
	}
	
	.action-btns {
		flex-flow: column nowrap;
		gap: 10px;
	}
	
	.footer-buttons .flex {
		display: block;
	}
	
	.or-separator span {
		height: auto;
		width: 30px;
	}
	
	.or-separator span:before {
	    width: 50px;
	}
}