:root {
	--color-primary: #00011C; 
  --color-primary-hover: #0073D3; 
	--color-secondary: #FFED00;
	--color-secondary-hover: #EB1522;
  --color-body: #24353B;
  --color-black: #000000;
  --color-black-hover: #333232;
  --color-white: #FFF;
  --color-white-hover: #eaeaea;
  --color-dark: #9D9D9E;
  --color-grey: #9D9D9E;
  --color-light: #F7F7F7;
  --color-light-border: #E1EAF5;
  --border-radius-pill: 50rem;
  --border-radius: 1px;
	--box-shadow: 0 0 10px rgba(57, 57, 57, 5%);
  --color-success: #21A51E;
  --color-success-hover: #066303;
  --color-primary-opacity: rgba(0, 1, 28, .8);
}

/* GrowwwToday Reset Classes */
body {
	overflow-x: hidden !important; 
}
.g-1 {
  gap: 10px;
}
.g-2 {
  gap: 20px;
}
.reset-list {
	padding-left: 0;
  margin: 0;
  list-style: none;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 500;
    content: "";
}
/* .text-decoration-underline {
  text-decoration: underline;
} */
.fw-semibold {
	font-weight: 600; 
}
.img-abs-center {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.img-abs-center--contain {
  object-fit: contain;
}
.position-relative {
	position: relative; 
}
.label {
	background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: 14px;
  font-family: var(--font-family-lead);
  font-weight: 600;
  padding: 5px 15px;
  border-radius: var(--border-radius-pill);
}
.gap-1 {
  gap: 10px;
}
.newsletter input {
	border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
.newsletter input::placeholder {
  color: var(--color-white);
}
/* Fancybox fix */
.fancy-box, .fancybox__container {
	z-index: 9999999990 !important; 
}
.fancy-box__close {
	position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-awesome);
  cursor: pointer;
  transition: color .4s ease;
}
.fancy-box__close:hover {
	color: var(--color-secondary); 
}
.fancybox__content {
    width: 100% !important;
    height: 100% !important;
}
/* Forms */
.fancy-box.active {
	z-index: 10000; 
}