/* Custom color values for the most part */
:root {
  --af-black: #12111e;
  --af-dark-grey: #2b2d42;
  --af-grey: #8d99ae;
  --af-white: #edf2f4;
  --af-pure-white: #ffffff;

  /* Red */
  --af-red: #ef233c;
  --af-dark-red: #d90429;

  /* Green */
  --af-green: #9ef01a;
  --af-dark-green: #008000;

  /* Blue */
  --af-teal: #2dd4bf;
  --af-blue: #00b4d8;
  --af-dark-blue: #0077b6;

  --ccg-hw: 700;
  --ccg-nw: 300;

  --ccg-hf: 1.7rem;
  --ccg-nf: 1.45rem;

  --ccg-mhf: 4.7vw;
  --ccg-mnf: 3.9vw
}

.area {
  background-color: var(--af-dark-grey);
}

.af-bg {
  /*background-color: var(--af-dark-grey);*/
  height: 100%;
}

.af-bg-grey {
  background-color: var(--af-dark-grey);
}

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

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

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

.af-grey {
  color: var(--af-grey);
}

.af-nav-button {
  width: 3rem;
  height: 3rem;
  position: absolute;
  justify-content: center;
  align-items: center;
  transition: all 0.8s ease-in-out;
}

.af-nav-burger {
  width: 3rem;
  transition: all 0.8s ease-in-out;
  border-radius: 5px;
}

.af-nav-burger::before,
.af-nav-burger::after {
  content: '';
  position: absolute;
  width: 3rem;
  height: 2px;
  background-color: var(--af-white);
  transition: all 0.8s ease-in-out;
  border-radius: 5px;
}

/* Changes the hamburger to a cross and viceversa */
.af-nav-burger::before {
  transform: translateY(-7px);
}

.af-nav-burger::after {
  transform: translateY(7px);
}

.af-nav-button.open .af-nav-burger::before {
  transform:  rotate(45deg) translate(0.5rem, -0.5rem) scale(0.8);
}

.af-nav-button.open .af-nav-burger::after {
  transform:  rotate(-45deg) translate(0.5rem, 0.5rem) scale(0.8);
}

.af-nav-bg {
  background-color: var(--af-dark-grey);
  transform: translate(-100%);
  transition: all 0.8s ease-in-out;
}

.af-cart-bg {
  background: linear-gradient(0deg, rgba(4,2,17,1) 0%, rgba(5,2,20,1) 35%, rgba(0,23,61,1) 100%);
  transform: translate(100%);
  transition: all 0.8s ease-in-out;
}

.af-nav-bg.open, .af-cart-bg.open {
  transform: translate(0%);
  opacity: 1;
}

.af-nav-inner, .af-cart-inner {
  opacity: 0;
  transition: all 1.5s ease-in-out;
}

.af-nav-bg.open .af-nav-inner, .af-cart-bg.open .af-cart-inner{
  opacity: 1;
}

.af-nav-social-media {
  transform: translate(-100%);
  transition: all 0.3s ease-in-out;
}

.af-nav-social-media:hover {
  transform: translate(-100%) scale(1.25);
  transition: all 0.3s ease-in-out;
}

.af-cart-items-container {
  overflow-y: scroll;
  max-height: 60vh;
  border-radius: 0.5rem;
  box-shadow: 2rem;
}

.af-width-cart {
  width: 500px;
}

.af-link-default{
  color: var(--af-white);
}

.af-link-default:hover{
  color: var(--af-red);
}

.af-link-active {
  color: var(--af-red);
  border-bottom: solid var(--af-red);
}

.af-link-active:hover {
  color: var(--af-white);
}

.cg-red-text {
  color: var(--af-red);
}

.cg-white-text {
  color: var(--af-white);
}

.cg-button {
  background-color: var(--af-red);
  color: var(--af-white);
}

.cg-button:hover {
  background-color: var(--af-white);
  color: var(--af-red);
}

.af-button {
  background-color: var(--af-teal);
  color: var(--af-black);
  border-radius: 0.25rem;
  box-shadow: 2rem;
  padding: 1.25rem;
}

/* Works well to show the entire image and not warp dimensions */
.af-img-fit {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.af-cart-quantity {
  background-color: var(--af-black);
}

/* Contact form fields */
input.no-outline:focus {
  outline:none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

input.no-outline {
  background-color: var(--af-dark-grey);
  color: var(--af-pure-white);
}

textarea.af-text-area {
  background-color: var(--af-dark-grey);
  color: var(--af-pure-white);
  resize: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.af-gallery-image {
  height: 600px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: white;
  position: relative;
  z-index: 1;
}

/* Scroll bar */
::-webkit-scrollbar {
  width: 0.25rem;
}

::-webkit-scrollbar-track {
  border-radius: 0.25rem;
}

::-webkit-scrollbar-thumb {
  background: teal;
  border-radius: 0.25rem;
}

.footer {
  width: 100%;
  grid-auto-flow: row;
  gap: 1.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  display: grid;
}

.h-policy {
  height: 55vh;
}

.ccg-header-top {
  position: absolute;
  bottom: 8.85rem;
  left: 1.65rem;
  font-family: "BASS";
  font-size: var(--ccg-hf);
  font-weight: var(--ccg-hw);
}

.ccg-header-bottom {
  position: absolute;
  bottom: 6.75rem;
  left: 1.65rem;
  font-family: "BASS";
  font-size: var(--ccg-nf);
  font-weight: var(--ccg-nw);
}

.ccg-name {
  position: absolute;
  bottom: 3.5rem;
  left: 1.65rem;
  font-family: "BASS";
  font-size: var(--ccg-nf);
  font-weight: var(--ccg-nw);
}

.ccg-cid {
  position: absolute;
  bottom: 1.4rem;
  left: 1.65rem;
  font-family: "BASS";
  font-size: var(--ccg-nf);
  font-weight: var(--ccg-nw);
}

.ccg-qr {
  position: absolute;
  bottom: 12.5rem;
  right: 4.25rem;
}

.ccg-beta {
  background-color: #3780C2;
  color: #FFFFFF;
}

.ccg-silver {
  background-color: #7590A8;
  color: #FFFFFF;
}

.ccg-gold {
  background-color: #B68749;
  color: #FFFFFF;
}

.ccg-platinum {
  background-color: #396898;
  color: #FFFFFF;
}

.ccg-vip {
  background-color: #0E0E0E;
  color: #FFD700;
}

@media only screen and (max-width: 600px) {
  .ccg-header-top {
    position: absolute;
    bottom: 24vw;
    left: 4.25vw;
    font-family: "BASS";
    font-size: var(--ccg-mhf);
    font-weight: var(--ccg-hw);
  }

  .ccg-header-bottom {
    position: absolute;
    bottom: 18vw;
    left: 4.25vw;
    font-family: "BASS";
    font-size: var(--ccg-mnf);
    font-weight: var(--ccg-nw);
  }

  .ccg-name {
    position: absolute;
    bottom: 9.25vw;
    left: 4.25vw;
    font-family: "BASS";
    font-size: var(--ccg-mnf);
    font-weight: var(--ccg-nw);
  }

  .ccg-cid {
    position: absolute;
    bottom: 4vw;
    left: 4.25vw;
    font-family: "BASS";
    font-size: var(--ccg-mnf);
    font-weight: var(--ccg-nw);
  }

  .ccg-qr {
    position: absolute;
    top: 9.5vw;
    right: 13.5vw;
  }
}

@media only screen and (max-width: 640px) {
  
}

@media only screen and (max-width: 770px) {
  .footer {
    display: none;
  }

  .h-policy {
    height: 50vh;
  }
}

@media only screen and (max-width: 1024px) {
  .footer {
    display: none;
  }

  .h-policy {
    height: 65vh;
  }
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-Thin.woff2);
  font-weight: 100;
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-ExtraLight.woff2);
  font-weight: 200;
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-Light.woff2);
  font-weight: 300;
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-Regular.woff2);
  font-weight: 400;
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-Medium.woff2);
  font-weight: 500;
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-SemiBold.woff2);
  font-weight: 600;
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-Bold.woff2);
  font-weight: 700;
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-ExtraBold.woff2);
  font-weight: 800;
}

@font-face {
  font-family: BASS;
  src: url(../fonts/BasicallyASansSerif-Blackwoff2);
  font-weight: 900;
}

.ccg-beta-t {
  color: #3780C2;
}

.ccg-silver-t {
  color: #7590A8;
}

.ccg-gold-t {
  color: #B68749;
}

.ccg-platinum-t {
  color: #396898;
}

.ccg-vip-t {
  color: #0E0E0E;
}

.ccg-student-t {
  color: #219854;
}