@charset "UTF-8";
:root {
    --rp-bg: #1C3D54;
    --rp-blue: #0C0068;
    --rp-green: #3D9943;
    --rp-grey: #D1D1D1;
    --rp-dark-grey: #727282;
    --white: #ffffff;
    --body-color: #727282;
    --preset-bg: #f4f4f5;
    --preset-bg-hover: #e4e4e7;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

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

.form-check-input:checked {
    background-color: var(--rp-blue) !important;
    border-color: var(--rp-blue) !important;
}

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

.border-rp-blue{
    border-color: var(--rp-blue);
}

.text-rp-blue{
    color: var(--rp-blue);
}

.text-rp-bg{
    color: var(--rp-bg);
}

.text-rp-green{
    color: var(--rp-green);
}

.message-screen{
    height: 100px !important;
}

.payment-method, .submit-info{
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.thank-you-title{
    font-size: 4rem;
    line-height: 4rem;
}

.payment-method.active, .submit-info.active{
    opacity: 1;
    visibility: visible;
    height: auto;
}

.transition-all{
    transition: all .5s ease;
}

.thank-you-heading{
    color: var(--tblr-success);
}

.paypal-text{
    color: var(--tblr-blue);
}

.error{
    color: var(--tblr-danger);
}

.cursor-pointer{
    cursor: pointer;
}

.input-group .form-control{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.preset-amountsss {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

.preset-amounts::-webkit-scrollbar {
    display: none;
}

.preset-amount .item-name {
    font-weight: 500;
    margin-bottom: 2px;
    
}

.preset-amount .preset-price {
    font-size: 0.8rem;
    opacity: 0.9;
}

.pristine-feedback {
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: var(--tblr-form-invalid-color);
}

.process{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh !important;
    position: fixed;
    background: rgba(255,255,255,0.9);
    width: 100vw;
    z-index: 999;
}

#paypal-button-container{
    width: 40%;
}

.iti {
    width: 100%
}

.iti__search-input {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

.iti__country-list{
    z-index: 3;
}

.choices {
    margin-bottom: 0 !important;
    font-size: inherit;
}

.choices__inner{
    min-height: 39.2px;
}

.choices__list--single{
    padding: 0;
}

.is-invalid.choices[data-type*=select-one]:after, .is-valid.choices[data-type*=select-one]:after{
    display: none;
}

.choices__list--dropdown{
    z-index: 1000 !important;
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000000;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 0px 0px #ffffff;
    background: #fff;
}

.form-control:-webkit-autofill {
    box-shadow: var(--tblr-shadow-input);
}

/* Accessibility */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.donate-option{
    width: 25%;
}


.paypal-clicked + label > img {
    filter: brightness(0) invert(1);
}

/*960*/
@media only screen and (max-width: 60em) {
    #paypal-button-container {
        width: 60%;
    }
}


@media (max-width:767.98px){
    .thank-you-title{
        font-size: 3rem;
        line-height: 3rem;
    }

    .donate-option{
        width: 75%;
    }
}

@media (max-width:575.98px){
    .thank-you-title{
        font-size: 2rem;
        line-height: 2rem;
    }

    .thank-you-subtitle{
        font-size: 1rem !important;
    }

    
}

@media (max-width:390px){
    .donate-option{
        width: 100%;
    }
}

/*620*/
@media only screen and (max-width: 47.9375em) {
    #paypal-button-container {
        width: 100%;
    }
}



