body {
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

#customer_logo {
    height: 80px;
    width: auto;
    mix-blend-mode: multiply;
}

.box {
    border: 1px solid #d3d3d3;
}

.box.no-border {
    border: unset;
}
.box.is-shadowless {
    border-color: transparent;
}

i.is-medium {
    font-size: 1.4em;
}
.vline {
    width: 1px;
    background-color: lightgray;
    height: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.hline {
    width: auto;
    background-color: lightgray;
    height: 1px;
    margin-bottom: 1rem
}

.max-width-constrained-auto-margin {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;;
}

.fixed-message-container {
    position: fixed;
    bottom: 0;
    left: 1em;
    right: 1em;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.app-store-badge {
    min-width: 152px;
    min-height: 45px;
}

#qr {
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    width: 200px;
    height: 200px;
    padding: 12px;
}

#code {
    background-color: whitesmoke;
    border-radius: 4px;
    max-width: 344px;
    padding: 8px;
}

/* Auth Button Styles */
.pushzero-auth-method-badge {
    height: 20px;
    width: 18px;
}

.push-capable {
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
}

.push-capable.reversed {
    flex-direction: column-reverse;
}

.settings_button:hover{
    background: #f5f5f5 !important;
}

.settings_button{
    border: 0px;
    display: block;
    padding: 0px;
    font-size: 1em;
    width:100%;
    background: #FFFFFF;
    cursor: pointer;
}

.progress::-webkit-progress-value {
    transition: width 1.0s linear;
}

.ie-footer-logo{
    margin: auto;
}
@media screen and (max-width: 768px){
    .section{
      padding: 1.5rem .2rem
    }
    .box {
      padding: .3rem
    }
    .hero-body {
        padding: .2rem .2rem 3rem .2rem
    }
}


#card-content {
    display: none;
}

#card-header:target .card-header-icon .icon i {
    transform: rotate(180deg);
}

#card-header:target ~ #card-content {
    display: block;
}

.star-full-color{
    color: #FFB319 !important;
}
.star-no-color{
    color: lightgray !important;
}
.selectable-star:hover {
    transform: translateY(-0.04em);
    transition: all 0.3s ease;
    box-shadow: 0 0.5em 0.5em -.4em gray;
}

/* 
    Mimics the Bulma .input class but lacks hover and selected effects.
    We use .inputs in contexts where only some are selectable, so having a class
    that provides the same appearance but without hints it can be selected 
    removes ambiguity in the UI. 
*/
.pseudo-input {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.5em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(0.5em - 1px);
    padding-left: calc(0.75em - 1px);
    padding-right: calc(0.75em - 1px);
    padding-top: calc(0.5em - 1px);
    position: relative;
    vertical-align: top;
    width: 100%;
    max-width: 100%;
    box-shadow: inset 0 .0625em .125em black rgba(10,10,10,.05);
    padding-left: 2.5em;
    box-sizing: inherit;
    background-color: #ffffff;
    border-color: #dbdbdb;
    border-radius: 4px;
    color: #363636;
}

.chevron {
    position:relative;
    display:block;
    height:16px; /*Height should be double border thickness*/
    align-self: center;
    bottom: 4px;
    transition-duration: 150ms;
    transition-timing-function: ease-in-out;
}
.is-active .chevron {
    transform: scaleY(-1) translateY(-8px);
    transition-duration: 150ms;
    transition-timing-function: ease-in-out;
}
.chevron::before,
.chevron::after {
    position:absolute;
    display:block;
    content:"";
    border: 8px solid transparent; /*Adjust chevron size*/
}
/*Change the four instances of 'bottom' below to rotate chevron*/
/*Use (top/right/bottom/left) where you want the back of the chevron to be*/
.chevron::before {
    bottom:0;
    border-bottom-color:#363636; /*Chevron Color*/
}
.chevron::after {
    bottom:-4px; /*Adjust thickness*/
    border-bottom-color:#f5f5f5; /*Match chevron background color*/
}

.warning-to-settings {
    background: #f0e21aa8;
}
