html, body{
	padding: 0;
	margin: 0 ;
	font-family: 'Epilogue', sans-serif;
}

:root{
	--black: #282128;
	--pink:  #e61621;
	--white:  #FFF;
}

.black{
	color: var(--black);
}

.pink{
	color: var(--pink);
}

.white{
	color: var(--white);
}

.bg-black{
	background-color: var(--black);
}

.bg-pink{
	background-color: var(--pink);
}

.bg-white{
	background-color: var(--white);
}

.opaque{
	opacity: 0.7;
}

h1{
	font-size: 48px;
	font-weight: 600;
	line-height: 130%;
}

h2{
	font-size: 24px;
	font-weight: 600;
}

h3{
	font-size: 18px;
	font-weight: 600;
}

h4{
	font-size: 17px;
	font-weight: 600;
}

p, a, ul, li, span{
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

input[type="text"], input[type="date"], input[type="email"], input[type="tel"], textarea{
	font-family: 'Epilogue', sans-serif;	
}

select{
	font-family: 'Epilogue', sans-serif;	
	padding: 8px;
	font-size: 16px;
	border-radius: 8px;
}

.small-text{
	font-size: 14px;
}

.text-center{
	text-align: center;
}

.no-padding{
	padding: 0;
}

.no-margin{
	margin: 0;
}

.max-width{
	max-width: 950px;
}

.max-width-small{
	max-width: 650px;
}

.flex{
	display: flex;
}

.semi-bold{
	font-weight: 500;
}

.bold{
	font-weight: 700;
}

.container{
	widows: calc(100% - 30px);
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 15px;
}

.section-padding{
	padding: 80px 0;
} 


.no-text-decoration{
	text-decoration: none;
}

header{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}

header a{
	text-decoration: none;
}

header .branding{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

header .branding .a-logo{
	text-decoration: none;
	font-size: 18px;
}

header .branding .a-logo img, .footer-logo{
	height: 75px;
}

header .menu-icon{
	padding: 10px 0 10px 10px;
	width: 18px;
	height: 18px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

header .menu-icon .strip{
	width: 100%;
	height: 2px;
	background-color: var(--black);
}

header .main-menu{
	min-width: 50%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}

header .main-menu a{
	margin: 10px 20px;
	font-weight: 700;
}

header .account-menu{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

header .account-menu a:last-child{
	margin-left: 25px;
}


.btn{
	font-size: 16px;
	font-weight: 500;
	border-radius: 14px;
	padding: 24px 32px;
	cursor: pointer;
}

.shadow-dark{
	box-shadow: 7px 5px 0px #691566;
	transition: 0.3s;
}

.shadow-dark:hover{
	box-shadow: -7px -5px 0px #691566;
}

.shadow-light{
	box-shadow: 5px 5px 0px #D1D1D1;
	transition: 0.3s;
}

.shadow-light:hover{
	box-shadow: -5px -5px 0px #D1D1D1;
}

.row-cta{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.row-cta .cta-image{
	padding-right: 15px;
}

.row-cta a{
	text-decoration: none;
}

.row-cta a:hover{
	text-decoration: underline;
}


footer{
	width: 100%;
	display: flex;
	flex-direction: column;
}

.footer-links{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 50px 0;
	border-bottom: 1px solid rgba(40, 33, 40, 0.1);
}

.footer-links div{
	display: flex;
}

.footer-links ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links ul li{
	display: inline-flex;
	padding: 7px 15px;
}

.footer-links ul li a{
	text-decoration: none;
}

.footer-links ul li a:hover{
	text-decoration: underline;
}

.footer-trademarks{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
}


.privacy-links a{
	padding: 0 7px;
}


.form-row{
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-bottom: 25px;
}

.form-row label{
	width: 100%;
	padding-bottom: 8px;
}

.form-row input, .form-row textarea{
	font-size: 16px;
	width: calc(100% - 40px);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.15);
}

.form-row textarea{
	min-height: 150px;
}



.login-box{
	width: calc(100% - 42px);
	border: 1px solid rgba(0,0,0,0.1);
	max-width: 650px;
	display: flex;
	justify-content: center;
	padding: 15px 20px;
	border-radius: 20px;
	margin: 0 auto;
}

.login-box .contact-form{
	width: 100%;
}

.my-account-wrapper{
	width: 100%;
	display: flex;
	flex-direction: row;
	padding: 0px 0px 50px 0px;
	align-items: flex-start;
}

.my-account-menu{
	width: 300px;
	padding: 10px 20px;
	margin-right: 50px;
	border: 1px solid rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
}

.my-account-menu a{
	width: 100%;
	padding: 10px 0;
	text-decoration: none;
}

.my-account-menu a:hover{
	text-decoration: underline;
}


.recent-search{
	width: 300px;
	padding: 10px 20px;
	margin-left: 50px;
	border: 1px solid rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
}

.recent-search a{
	width: 100%;
	padding: 10px 0;
	text-decoration: none;
}

.recent-search a:hover{
	text-decoration: underline;
}

.table-wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-top: 50px;
}

.table-wrapper table{
	width: 100%;
	font-size: 16px !important;
}

.table-wrapper table thead{
	background-color: rgba(0,0,0,0.1) !important;
	font-weight: 700 !important;
}

.table-wrapper table td{
	padding: 15px 20px !important;
}


.chip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 15px;
  font-size: 14px;
  border-radius: 6px;
  background-color: #f1f1f1;
  margin: 7px 3px;
}

.closebtn {
  padding-left: 10px;
  color: #888;
  font-size: 28px;
  cursor: pointer;
}

.closebtn:hover {
  color: #000;
}

.attributes_list_container{
	width: 100%;
	display: flex;
	flex-direction: row;
	padding: 15px 0 15px 0;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.attributes_list{
	flex-wrap: wrap;
	display: flex;
	flex-direction: row;
}

.pointer{
	cursor: pointer;
}


.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 38px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: var(--pink);
  color: white;
}

.modal-body {
	padding: 22px 0px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.modal-body button{
	margin: 5px;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

.sidebar{
	display: flex;
	flex-direction: column;
}

.sidebar .recent-search:first-child{
	margin-bottom: 20px;
}

.output-wrapper{
	margin-top: 20px;
	margin-bottom: 20px;
	width: calc(100% - 42px);
	padding: 20px;
	background-color: #f1f1f1;
	border-radius: 15px;
	border: 1px dashed rgba(0,0,0,0.2);
	min-height: 400px;
}


.blue-link{
	color: rgb(0, 0, 238);
	text-decoration: none;
}

.blue-link:hover{
	text-decoration: underline;
}

pre {
  outline: 1px solid #ccc; 
  padding: 5px; 
  margin: 5px;
   white-space: pre-wrap;       /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word; 
}
.json-key {
  font-weight: bold;
}
.content {
  padding: 0;
  overflow: hidden;
  background-color: #f1f1f1;
}

.table-wrapper.valign-top table tr{
	vertical-align: top;
}

.table-wrapper.valign-top table tr:nth-child(even){
	background-color: rgba(0,0,0,0.05);
}

.table-wrapper.valign-top table tr:nth-child(even) pre{
	background-color: #FFF;
}

.my-account-content, .my-account-content-full{
	width: calc(100% - 300px);
}

.filter-div{
	display: flex;
	flex-direction: row;
	align-items: end;
}

.filter-div div{
	width: 100%;
	padding: 5px;
}

.key-value-pair {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Spacing under each row */
}

.pair-key,
.pair-value {
    flex: 1;
    margin-right: 10px; /* Spacing between key and value inputs */
}

.pair-value {
    margin-right: 0; /* No margin on the right side for the value input */
}

.add-pair-link {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 30px; /* Spacing under the add pair link */
    text-decoration: none;
}

.add-pair-link:hover {
    text-decoration: underline; /* Optional: remove underline on hover */
}


.cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Adjust the space between cards */
}

.card {
    display: flex;
    align-items: center;
    border: 1px solid #ddd; /* A light border for the card */
    padding: 20px;
}

.card-logo img {
    width: 100px; /* Adjust the logo size as needed */
    margin-right: 20px;
}

.card-info {
    flex: 1;
}

.card-info h2 {
    margin: 0 0 10px 0;
    color: #333; /* Dark text color for the bank name */
}

.card-info p {
    margin: 4px 0; /* Spacing between paragraphs */
    color: #666; /* Lighter text color for details */
}

.enroll-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.enroll-button:hover {
    background-color: #0056b3; /* Darken the button on hover */
}


.cart-product{
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 0;
}

.cart-product-image-decription{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
}

.cart-product-image-decription img{
  width: 50px;
  height: auto;
  margin-right: 10px;
  border-radius: 7px;
}


.admin-table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 24px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.admin-table th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: bold;
}

.admin-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.admin-table tr:hover {
    background-color: #e0f7fa;
}

.admin-table tfoot tr, .admin-table tfoot tr:hover {
  background-color: #f2f2f2;
}

.admin-table tfoot td {
  font-weight: bold;
}