.non-interactive{pointer-events: none;}
.overpass {
    font-family: 'Overpass', sans-serif;
}

.overpass-mono {
    font-family: 'Overpass Mono', monospace;
}

.add-more-entries-view {
    position:fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display:flex;
    background: rgba(0,0,0,0.8);
    overflow: scroll;
    padding: 24px;
    z-index: 999;
}

.add-more-entries-wrapper, .login-form-wrapper {
    display:flex;
    flex-direction:column;
    padding: 40px 25px;
    margin: auto;
    background: #FA9A2C;
}

.add-more-entries-view .up-title {
    display: flex;
    flex-direction: column;
}

.add-more-entries-view .up-title span.sub-title {
    font-size: 3em;
    color: white;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.add-more-entries-view .up-title span.title {
    font-size: 7em;
    color: white;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    letter-spacing: -0.05em;
    line-height: 1;
    text-shadow: 0 4px 3px rgb(0 0 0 / 20%);
}

.add-more-entries-view .up-title span.desc {
    font-size: 1em;
    color: white;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.add-more-entries-view .up-bottom span.sub-title {
    font-size: 2.5em;
    color: white;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.add-more-entries-view .up-bottom span.desc {
    font-size: 1em;
    color: white;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.add-more-entries-view .actions {
    display: flex;
    justify-content: center;
}

.add-more-entries-view a.no-thanks {
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: underline;
    color: white;
}

.add-more-entries-view .cta-btn {
    border-radius: 3px;
    width: 120px;
	background: white;
    display: inline-block;
    text-shadow: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    color: #143958;
    padding: 0.4em 0 0.3em 0;
    text-align: center;
    font-size: 1.2em;
    line-height: 1;
    margin-top: 0.5em;
    text-transform: uppercase;
}

.fa, .fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.add-more-entries-view .cta-btn:hover {
    opacity: 0.8;
}

.add-more-entries-view .cta-btn.loading {pointer-events: none;position: relative;}
.add-more-entries-view .cta-btn.loading:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 5px;
	background: white;
}
.add-more-entries-view .cta-btn.loading:after {
	content: "\e659" !important;
    font-family: 'Rivolicons';
    font-weight: 900;
    position: absolute !important;
    font-size: 30px;
    left: calc(50% - 15px);
    top: calc(50% - 15px) !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 1;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    background: unset !important;
}

.add-more-entries-view .product-row {
    font-size: 1.2em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.add-more-entries-view .product-row .product-row-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #143958;
    padding: 20px 0px;
    border-radius: 8px;
}

.add-more-entries-view .product-row span.name {
    color: #FA9A2c;
    font-size: 3em;
    font-weight: 600;
    line-height: 1;
}

.add-more-entries-view .product-row span.price {
    color: white;
    font-size: 2.5em;
    font-weight: 600;
    position: relative;
    line-height: 1;
    padding-left: 0.3em;
}

.add-more-entries-view .product-row span.price::before {
    position: absolute;
    content: '$';
    color: white;
    font-size: .5em;
    font-weight: 600;
    left: 0;
    top: 0.15em;
}
.add-more-entries-view .product-row .fa-check {
    margin-left: 20px;
    display: none;
}

.add-more-entries-view .product-row.selected .fa-check {
    display: unset;
}



@media (max-width: 500px) {
    .add-more-entries-view .up-title span.sub-title {
        font-size: 1.5em;
    }

    .add-more-entries-view .up-title span.title {
        font-size: 3.5em;
    }

    .add-more-entries-view .up-bottom span.sub-title {
        font-size: 1.5em;
    }

    .add-more-entries-view .up-bottom span.desc {
        font-size: 0.8em;
    }
}

