
#amountToPayH2 {display:inline-block;margin-right:10px; }
#phiLogo {display:inline-block;  }

.center {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.wrapper {
    display: flex;
    grid-gap: 1em;
    overflow: hidden;
    width: 93em;
}
.wrapper > .inner {
    display: flex;
    grid-gap: 1em;
    transition: all 1s ease-in-out;
}
.card {
    border-radius: 0.5em;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    width: 360px;
    cursor: pointer;
}
.card > object {
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    margin-bottom: 0px;
    display: block;
    width: 100%;
    height: 10.5em;
}
.card > img {
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    margin-bottom: 0px;
    display: block;
    width: 100%;
    height: 10.5em;
}
.card > .content {
    background: #0a2640;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    padding: 1em;
    text-align: center;
}
.card > .content > h1, .card > .content > h3 {
    margin: 0.35em 0;
}
.card > .content > h1 {
    color: #fff;
    font-size: 1.25rem;    
    height: 50px;
}
/* .card > .content > h3 {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 300;
    height: 70px;
} */

.linewrapper
  {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }


.map {
    margin-top: 1em;
}
.map > button {
    all: unset;
    background: #273790;
    cursor: pointer;
    margin: 0 0.125em;
    position: relative;
    user-select: none;
    border-radius: 100%;
    height: 1em;
    width: 1em;
}
.map > button.active:after {
    background: #001d38;
    content: "";
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    border-radius: 100%;
    height: 0.5em;
    width: 0.5em;
}




.animate { animation: disappear 1.5s linear; }

.copyAlert { opacity: 0; color: blue}

@keyframes disappear {
    30%  { opacity: 0; }
    60%  { opacity: 1; }
    100% { opacity: 0; }
}
.tooltip {
    margin-top: 20px;
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}



@import url('https://fonts.googleapis.com/css?family=Varela+Round');

#status {
    margin-bottom: 1em;
}
.status {
    background: #fff;
    margin-bottom: .25em;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.status {
    position: relative;
    height: 1em;
    line-height: 1em;
    padding: .5em;
    padding-left: 2em;
    transition: color 500ms;
}
.status:before, .status:after {
    content: '';
    display: inline-block;
    position: absolute;
    transition: all 500ms;
}
.status.-pending {
    color: #666;
}
.status.-pending:before, .status.-pending:after {
    background: #888;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.status.-pending:before {
    width: .25em;
    height: .25em;
    top: .5em;
    left: .875em;
    border-radius: .125em;
    transform-origin: 50% .5em;
}
.status.-pending:after {
    width: .25em;
    height: .25em;
    top: 1.25em;
    left: .875em;
    border-radius: .125em;
    transform-origin: 50% -.25em;
}
.status.-success {
    color: #368;
}
.status.-success:before, .status.-success:after {
    background: #6cf;
    border-radius: .125em;
}
.status.-success:before {
    width: .25em;
    height: 1em;
    top: .5em;
    left: .875em;
    transform-origin: 50% .875em;
    transform: translate(-.177em, -.11em) rotate(.125turn);
}
.status.-success:after {
    width: .25em;
    height: .5em;
    top: 1em;
    left: .875em;
    transform-origin: 50% .375em;
    transform: translate(-.177em, -.11em) rotate(-.125turn);
}
.status.-failure {
    color: #802;
}
.status.-failure:before, .status.-failure:after {
    background: #f04;
    border-radius: .125em;
}
.status.-failure:before {
    width: .25em;
    height: 1em;
    top: .5em;
    left: .875em;
    transform: rotate(.125turn);
}
.status.-failure:after {
    width: .25em;
    height: 1em;
    top: .5em;
    left: .875em;
    transform: rotate(-.125turn);
}
