/*
 Theme Name:   Satchell Engineering
 Description:  bootScore WooCommerce Child Theme
 Author:       bootScore
 Author URI:   https://bootscore.me
 Template:     bootscore-main
 Version:      5.1.3.1
 Text Domain:  bootscore
*/

/* 
All style editing is done via css/scss/_bscore_custom.scss
*/

.ctBanner {
    background-color: transparent;
}

.ctBanner,
.ctLink {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ctLink {
  padding: 10px;
  gap: 10px;
  text-decoration: none;
}

.ctLink span {
  color: #717171;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.ctLogo {
  max-width: 50px;
  filter: brightness(0.35) grayscale(1);
  transform: none;
}

.ctLink:hover .ctLogo {
  filter: unset;
  transform: scale(1.05);
}


@media (min-width: 768px) {
    .ctBanner {
        justify-content: flex-end;
    }

    .ctLink {
        padding: 10px 0;
    }
}