/* General fixes for Drupal compatibility */
.header.region-container span.extlink {
    display: none;
}
.block-queensu-giving-breadcrumbs li:not(:first-child)::before {
    margin-inline-end: 0.5em;
}
a.cta-button.give {
    border: none;
    padding: calc(1.25em + 1px) calc(2.5em + 1px);
    background-image: linear-gradient(var(--color-gold), var(--color-gold) 50%, var(--color-blue) 50%, var(--color-blue));
    color: var(--color-blue);
}
a.cta-button.give:hover {
    text-decoration-color: var(--color-white);
    color: var(--color-white);
}
body.application h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 24px 0;
}

.remove{
    border:0;
    background:transparent;
    color:#c61a2f;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}
.remove-x{
    width:22px;
    height:22px;
    border-radius:999px;
    border:1px solid rgba(198,26,47,.45);
    display:grid;
    place-items:center;
    font-size:16px;
    line-height:0;
}


/* Step Wizard */
.step-wizard {
    padding: 40px 0 100px;
}
.step-wizard ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}
.step-wizard ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #908982;
}
.step-wizard ul li:not(:last-of-type):after {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    margin: 0 24px 0 10px;
    color: #908982;
}
.step-wizard ul li .number {
    background: #908982;
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 1px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
    font-weight: 700;
}
.step-wizard ul li.active {
    color: var(--color-blue);
}
.step-wizard ul li.active .number {
    background: var(--color-blue);
}
.step-wizard .back {
    font-size: 26px;
    color: var(--color-blue);
    cursor: pointer;
    padding: 11px;
    margin-bottom: 30px;
}
@media only screen and (min-width: 959px) {
    .step-wizard .back {
        display: none;
    }
}
@media only screen and (max-width: 958px) {
    .step-wizard {
        padding: 30px 0 80px;
    }
    .step-wizard ul {
        display: block;
    }
    .step-wizard ul li:not(.active),
    .step-wizard ul li:after {
        display: none;
    }
}

/* Gift type toggle buttons */
.gift-type {
    text-align: center;
}
.gift-type h2 {
    margin: 0 !important;
}
.toggle {
    list-style-type: none;
    border: 1px solid var(--color-blue);
    padding: 1.25em 2.5em;
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 2px;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-transform: uppercase;
    background-image: linear-gradient(var(--color-white), var(--color-white) 50%, var(--color-blue) 50%, var(--color-blue));
    background-size: 100% 210%;
    color: var(--color-blue);
    transition: background 0.25s ease-in-out, text-decoration-color 0.25s ease-in-out, color 0.25s ease-in-out;
    cursor: pointer;
}

.toggle-active {
    background: var(--color-blue);
    color: var(--color-white);
    cursor: default;
    text-decoration: none;
}

.toggle:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

/* Sample form fields */
input.form-text, input.form-date, input.form-email, input.form-tel, input.form-number, input.form-search, input.form-url, input.form-submit:where(:not(.field--type-file input.form-submit)), button.form-button, textarea {
    padding: 16px 24px;
}
.content-regions-container input.form-submit:where(:not(.field--type-file input.form-submit)) {
    cursor: pointer;
}
select {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #000;
    border-radius: 0;
    background-color: #fff;
    outline: none;
    padding: 16px 24px;
    font-family: inherit;
    font-size: 1rem;
    text-align: start;
    line-height: 1.25;
    color: #000;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path d="M303.5 473C312.9 482.4 328.1 482.4 337.4 473L537.4 273C546.8 263.6 546.8 248.4 537.4 239.1C528 229.8 512.8 229.7 503.5 239.1L320.5 422.1L137.5 239.1C128.1 229.7 112.9 229.7 103.6 239.1C94.3 248.5 94.2 263.7 103.6 273L303.6 473z"/></svg>');
    background-size: 24px 24px;
    background-position: right 16px center;
    background-repeat: no-repeat;
}
.currencyinput {
    border: 1px solid black;
    display: block;
    padding-left: 24px;
    color: #6A625C;
    width: 100%;
}
.currencyinput input {
    border: 0;
    padding-left: 4px;
}
.currencyinput > input {
    width: calc(100% - 14px);
}
input.amount::-webkit-outer-spin-button,
input.amount::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}
input.amount {
    -moz-appearance:textfield;
}

.form-item.radios .radio:not(:last-of-type),
.form-item.checkboxes .checkbox:not(:last-of-type) {
    padding: 8px 0;
    margin-bottom: 12px;
}
.form-item.radios .radio input,
.form-item.checkboxes .checkbox input {
    margin: 0 16px 0 0;
    display: inline-block;
    vertical-align: middle;
}
.form-item.radios .radio label,
.form-item.checkboxes .checkbox label {
    margin: 0;
    display: inline-block;
}
.form-item.radios .radio input:checked,
.form-item.checkboxes .checkbox input:checked {
    accent-color: var(--color-blue);
}

/* Remove button */
a.remove {
    color: #B90E31;
    font-weight: 400;
    text-decoration: none;
    vertical-align: middle;
}
a.remove i {
    margin-left: 16px;
    width: 36px;
    height: 36px;
    display: inline-block;
    border: 2px solid #B90E31;
    border-radius: 50%;
    padding: 6px 9px;
    box-sizing: border-box;
    line-height: 1;
}
a.remove:hover {
    text-decoration: underline;
}

/* Need Help Section */
.need-help {
    padding: 100px 80px;
    width: 100%;
    box-sizing: border-box;
    background: #F1F2F2;
    color: #212121;
    line-height: 1.4;
}
.need-help-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-inline: auto;
}
.need-help-container .left,
.need-help-container .right {
    flex: 1 0 0;
}
.need-help a,
.need-help a:hover {
    color: #212121;
    font-weight: 400;
}
.need-help a:hover {
    text-decoration: underline;
}
.need-help a .extlink {
    display: none;
}
@media only screen and (max-width: 958px) {
    .need-help {
        padding: 80px 40px;
    }
    .need-help-container {
        flex-direction: column;
        gap: 0px;
    }
}
@media only screen and (max-width: 638px) {
    .need-help {
        padding: 60px 20px;
    }
}

.other{
    display:flex;
    align-items:center;
    gap: 16px;
    color:var(--muted);
    flex: 1;
}

.step-wizard ul li a, .step-wizard ul li a:active, .step-wizard ul li a:hover {
    color: #908982 !important;

}
