.img-container {
    position: relative;
}

.img-container::after  {
    content: "";
    float: left;
    padding-bottom: 100%;
}


.img  {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-button-py-1{
    padding-top: 0.1rem !important;
    padding-bottom: 0.1rem!important;
}

.custom-button-px-3 {
    padding-right: 0.7rem!important;
    padding-left: 0.7rem!important;
}

.minor-info {
    font-size: 13px !important;
    font-weight: 400;
}

.header {
    font-family: "Glorify", sans-serif;
    font-weight: 300;
}

.product-header, .price {
    font-size: 17px;
    font-weight: 500;
} 

.price-subtotal {
    font-weight: 500;
}

button {
    cursor: pointer;
}

.custom-border-dark {
    border-color: rgba(22, 22, 22, 0.161) !important;
}

.disable-button {
    color: rgba(108, 117, 125, 0.377) !important;
    pointer-events: none;
}

.btn-close:focus {
    box-shadow: none;
}

#captchaMessage.captcha-incomplete {
    display: flex !important; 
}

#checkout-btn.checkout-btn-disabled {
    background-color: #4444448a !important;
    pointer-events: none;
}

/* Campaign select: target width 200px, but shrink gracefully on small screens */
#campaign_id {
  width: 200px;     /* fixed target width on roomy viewports */
  max-width: 100%;  /* allow shrinking within container */
}

/* Donation message: always span container width */
#donation_message {
  width: 100%;
  box-sizing: border-box;
}

/* On very small screens, let the select go full width too */
@media (max-width: 480px) {
  #campaign_id { width: 100%; }
}

/* ALL OF THIS BELOW IS TO MAKE THE CAPTCHA REPONSIVE */
/* XXL screen sizes */
@media (min-width: 1400px) {

}

/* XL screen sizes */
@media (max-width: 1399px) {
    .h-captcha {
        width: 0px;
        transform: scale(.963);
    }
    
}

/* Large screen sizes */
@media (max-width: 1199px) {
    .h-captcha {
        transform: scale(.763);
    }
    
}


/* Medium screen sizes */
@media (max-width: 991px) {
    .h-captcha {
        width: auto;
        transform: scale(1);
    }
    
}

/* small screen sizes */
@media (max-width: 767px) {
}

/* Target extra small screens and above (Bootstrap "xs" breakpoint, all screens) */
@media (max-width: 575px) {
}

