﻿.x-logo {
    height: 33px;
}

#lowAmtMsg {
    font-size: small;
    color: red;
}

.XusingPayPal {
    display: none !important;
}

.paymentPage {
    margin-bottom: 1rem;
}

/* JT: Admin Fee support The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* End of support for Admin Fee toggle */
/* support admin fee UI */
.feeTable {
    width: 30rem;
    /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
    margin-bottom: 2rem;
}

.feeTable div {
    padding-top: 0.25rem;
}

.feeAboutBtn {
}

.feeMsg {
    line-height: 2rem;
    font-size: larger;
}

.feeToggle {
    transform: scale(0.65);
}

.totalAmount {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.totalAmount div {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.totalTxtSm {
    font-size: 2rem;
    color: rgba(0,0,0,0.8);
    font-weight: bold;
}

.totalTxtBig {
    font-size: 3rem;
    /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif */
}

/* Safari stuff */
input[type="checkbox"][switch] {
    /* Style the thumb and track here */
    width: 40px;
    height: 20px;
    /* Other styles */
}

input[type="checkbox"][switch]::thumb {
    /* Style the thumb (the moving part) */
    width: 16px;
    height: 16px;
    /* Other styles */
}

input[type="checkbox"][switch]::track {
    /* Style the track (the background) */
    width: 40px;
    height: 20px;
    /* Other styles */
}

.k-link {
    font-weight: bold;
}

/* JT: 7/22/2021 - crypto */
.hideOnPhone {
    display: none;
}

.engivenImg {
    height: 4.25rem;
}

.cryptoLink {
    color: black;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

.cryptoLink:hover {
    color: red;
}

#cover {
    position: relative;
    z-index: 1;
    overflow: hidden; /*if you want to crop the image*/
    background: url("missionary-bg.jpg") no-repeat scroll top center white;
    box-shadow: inset 0px 0px 500px 3px rgba(255,255,255,1);
    position: fixed;
    overflow-y: scroll;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    font-size: 25px;
    font-family: arial, sans-serif;
    font-weight: normal;
    padding-top: 100px;
    padding-bottom: 100px; /*--------------------------------------*/ /*--BACKGROUND IMAGE VARIATIONS - HERE--*/ /*--------------------------------------*/ /*background-size: 100% 100%; - image gets stretched (aspect ratio may be preserved, depending on browser)*/ /*background-size: contain; - image is stretched without cutting it while preserving aspect ratio*/ /*background-size: cover; - image is completely covering the element while preserving aspect ratio (image can be cut off)*/
}

#cover-inner-box {
    text-align: center;
    background-color: rgba(255,255,255,1);
    max-width: 400px;
    margin: 0 auto;
    padding: 50px 25px;
    border: 3px black solid;
    border-radius: 6px;
}

.parenthetical {
    font-size: 0.75em;
    font-style: italic;
    font-weight: 100;
}

@media screen and (min-width: 600px) {
    #mobile-share {
        visibility: hidden;
        clear: both;
        float: left;
        margin: 10px auto 5px 20px;
        width: 28%;
        display: none;
    }

    .hideOnPhone {
        display: inherit;
    }
}

/* reCaptcha CSS */
.xcaptcha {
    background-color: #f9f9f9;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    color: #4c4a4b;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 360px;
}

@media screen and (max-width: 500px) {
    .xcaptcha {
        flex-direction: row;
    }

    .text {
        margin: .5em !important;
        text-align: center;
    }

    .logo {
        align-self: center !important;
    }

    .spinner {
        margin: 2em .5em .5em .5em !important;
    }
}

.text {
    font-size: 1em;
    font-weight: 500;
    margin-right: 0.5em;
}

.spinner {
    position: relative;
    width: 2em;
    height: 2em;
    display: flex;
    margin: 2em 1em;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

input[type="checkbox"] + .checkmark {
    display: inline-block;
    width: 2em;
    height: 2em;
    background-color: #fcfcfc;
    border: 2.5px solid #c3c3c3;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

input[type="checkbox"] + .checkmark span {
    content: '';
    position: relative; /*
        position:absolute;
        border-bottom:3px solid;
        border-right:3px solid;
        border-color:#029f56;*/
    margin-top: -3px;
    transform: rotate(45deg);
    width: .75em;
    height: 1.2em;
    opacity: 0;
}

input[type="checkbox"] + .checkmark > span:after {
    content: '';
    position: absolute;
    display: block;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #029f56;
}

input[type="checkbox"] + .checkmark > span:before {
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    bottom: 0;
    right: 0;
    background-color: #029f56;
}

input[type="checkbox"]:checked + .checkmark {
    animation: 2s spin forwards;
}

input[type="checkbox"]:checked + .checkmark > span {
    animation: 1s fadein 1.9s forwards;
}

input[type="checkbox"]:checked + .checkmark > span:after {
    animation: .3s bottomslide 2s forwards;
}

input[type="checkbox"]:checked + .checkmark > span:before {
    animation: .5s rightslide 2.2s forwards;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bottomslide {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes rightslide {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    align-self: flex-end;
    margin: 0.5em 1em;
}

.logo img {
    height: 2em;
    width: 2em;
}

.logo p {
    color: #9d9ba7;
    margin: 0;
    font-size: 1em;
    font-weight: 700;
    margin: .4em 0 .2em 0;
}

.logo small {
    color: #9d9ba7;
    margin: 0;
    font-size: .8em;
}

@keyframes spin {
    10% {
        width: 0;
        height: 0;
        border-width: 6px;
    }

    30% {
        width: 0;
        height: 0;
        border-radius: 50%;
        border-width: 1em;
        transform: rotate(0deg);
        border-color: rgb(199,218,245);
    }

    50% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        border-width: 4px;
        border-color: rgb(199,218,245);
        border-right-color: rgb(89,152,239);
    }

    70% {
        border-width: 4px;
        border-color: rgb(199,218,245);
        border-right-color: rgb(89,152,239);
    }

    90% {
        border-width: 4px;
    }

    100% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        transform: rotate(720deg);
        border-color: transparent;
    }
}

::selection {
    background-color: transparent;
    color: teal;
}

::-moz-selection {
    background-color: transparent;
    color: teal;
}

/* end reCaptcha CSS*/
@keyframes shake {
    0% {
        margin-left: 0rem;
    }

    25% {
        margin-left: 0.5rem;
    }

    75% {
        margin-left: -0.5rem;
    }

    100% {
        margin-left: 0rem;
    }
}

.input_invalid {
    animation: shake 0.2s ease-in-out 0s 2;
    box-shadow: 0 0 0.6rem #ff0000;
}

@media (min-width: 768px) {
    .row.equal {
        display: flex;
        flex-wrap: wrap;
    }
}

/* From Main Page */
.instructions {
    font-size: larger;
}

.secureText {
    padding-left: 7px;
}

.currency {
    padding-left: 43px;
}

.currency-symbol {
    position: absolute;
    padding: 8px 8px 0px 5px;
    color: silver;
}

.pblogo {
    height: 55px;
    margin-left: 10px;
}

.cclogo {
    height: 27px;
    margin-left: 5px;
}

.slogo {
    height: 55px;
    margin-left: 5px;
}

h1, h2, h3, h4, div {
    color: black;
}

.msnDetail {
    margin-bottom: 10px;
    background-color: rgba(120,120,120,0.1)
}

ul.share-buttons {
    list-style: none;
    padding: 0;
}

ul.share-buttons li {
    display: inline;
}

ul.share-buttons .sr-only {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

ul.share-buttons img {
    width: 32px;
}

.sectionNumber {
    border-radius: 50%;
    border: 1px solid silver;
    background-color: #337ab7;
    color: white;
    font-size: 25px;
    padding: 5px;
    width: 55px;
    height: 50px;
    text-align: center;
    display: inline-block;
    margin-bottom: 7px;
    margin-right: 7px;
    /*
    -webkit-filter: drop-shadow(3px 3px 3px #222);
    filter: drop-shadow(3px 3px 3px #222);
    */
}

.sectionTitle {
    color: #337ab7;
    font-size: 25px;
    display: inline;
    margin-left: 7px;
}

.summarySection .col-sm-11 {
    border: solid black 1px;
    padding: 1em;
}

.b1 {
    border: 1px solid black;
}

.shareME {
    font-weight: bold;
    color: #337ab7;
    font-style: italic;
}

.missionaryAlias {
    color: #337ab7;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.ftitle {
    font-size: 30px;
}

@media (max-width: 600px) {
    .ftitle {
        font-size: 25px;
        white-space: nowrap;
        position: relative;
        top: -7px;
    }

    .sectionTitle {
        font-size: 18px;
    }

    .toplogo {
        height: 35px;
    }
}

/* Lightbox styles */
#lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

#lightboxContent {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    position: relative;
}

#closeLightbox {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#closeLightbox:hover,
#closeLightbox:focus {
    color: black;
    text-decoration: none;
}
.safari-on{
    height: 3.2em;
}
.safari-off {
    height: 2.5em;
    width: 2.5em;
    border: 1px solid black;
}
.safari-box-wrapper {
    align-content: center;
    margin: auto;
    width: 3rem;
    height: 4rem;
    padding-right: .5rem;
}
input[type="checkbox"] {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}