/*switch-field*/
.switch-field {
    display: flex;
    overflow: hidden;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    padding: 12px 50px;
    margin-right: -1px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
    background-color: #317d8f;
    color: #ffffff;
    box-shadow: none;
}

.switch-field label:first-of-type {
    border-radius: 15px 0 0 15px;
}

.switch-field label:last-of-type {
    border-radius: 0 15px 15px 0;
}

/* pill-field */

.pill-field {
    display: flex;
    margin-bottom: 36px;
    overflow: hidden;
}

.pill-field input[type="radio"] {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.pill-field label {
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    padding: 8px 24px;
    margin: 0px 10px 0px 0px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease-in-out;
    align-items: center;
    display: flex;
}

.pill-field label:hover {
    cursor: pointer;
}

.pill-field input:checked + label {
    background-color: #317d8f;
    color: #ffffff;
    box-shadow: none;
}

.pill-field .other-amount {
    border: 1px solid #acb4bc;
}

.pill-field .other-amount .input-group-text, .pill-field .other-amount input {
    background-color: transparent;
    border: 0;
}

.pill-field .other-amount input:focus {
    outline: none;
    box-shadow: none;
}

.pill-field .other-amount .input-group-text {
    padding: 0.3rem 0.75rem;
}

.fs-70 {
    font-size: 70%;
}

div#securepay-ui-container iframe {
    width: 100% !important;
    border: 0;
}

.donation-form .form-group {
    margin-bottom: 0.25rem!important;
}

