body {
    background-size: 100%;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    background-attachment: fixed;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
}

.container-pad {
    padding: 40px 0 0 0;
    margin-bottom: 40px !important;
    margin-top: 40px !important;
    background-color: #ffffff;
}

.padded-content {
    padding: 0;
}

@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
        margin: auto;
    }

    .padded-content {
        padding: 0 45px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 750px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 750px;
    }
}

strong {
    font-family: Roboto-bold, sans-serif;
}

.content {
    background: white;
    margin: 40px auto;
    padding-top: 40px;
}

.banner {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
}

.banner > img {
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.contained-block {
    margin: 10px 40px;
}

.contained-block-single {
    margin: 20px 45px;
}

.h-contained-block {
    margin: 0 40px
}

.button-group {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    align-items: flex-start;
    -webkit-box-align: start;
    justify-content: flex-start;
    -webkit-box-pack: start;
    flex-wrap: wrap;
    -webkit-box-lines: multiple;
    flex-flow: row wrap;
    margin-top: 10px;
    margin-left: -10px;
}

.button-selector {
    margin-left: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border: 1px solid #EAEAEA;
    box-shadow: none;
    align-items: center;
    -webkit-box-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    flex-grow: 1;
    flex-direction: row;
    -webkit-box-flex: 1;
    flex-basis: 100px;
    padding: 9px 20px;
    position: relative;
}

.button-selector:hover {
    cursor: pointer;
}


.button-selector.active {
    box-shadow: 0 0 10px 2px rgba(231, 231, 231, 1);
}

.button-caption {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #010101;
    font-family: Roboto-bold, sans-serif;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 20px;
    white-space: normal;
    font-weight: 600;
}

.button-frame {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 3;
}

.specific-sum {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    box-shadow: none;
    align-items: center;
    -webkit-box-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    padding: 15px 20px;
    position: relative;
    flex-grow: 0;
    -webkit-box-flex: 0;
    height: 40px;
    flex-basis: 100px;
    cursor: pointer;
}

.specific-sum > .sum-container {
    display: inline-block;
    cursor: pointer;
}

.specific-sum.active > .sum-container > .sum-input::placeholder {
    color: white;
}

.sum-input {
    box-sizing: content-box;
    width: 150px;
    color: rgb(1, 1, 1);
    height: 20px;
    padding: 0;
    margin-right: 20px;
    min-width: 50px;
    font-family: Roboto-bold, sans-serif;
    font-size: 13px;
    font-size: 0.8rem;
    text-align: center;
    border: none;
    font-weight: bold;
    background: none;
}

.sum-input:focus {
    outline: none;
}

.sum-input:focus::placeholder {
    color: white;
}

.sum-input::placeholder {
    font-weight: normal;
}

.currency-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #ffffff;
    font-family: Roboto-bold, sans-serif;
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 40px;
    text-align: center;
    white-space: normal;
    height: 40px;
    width: 30px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: -1px;
    right: 0;
    justify-content: center;
    -webkit-box-pack: center;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.form-field-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-grow: 1;
    -webkit-box-flex: 1;
    margin-left: 10px
}

.form-label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-grow: 1;
    -webkit-box-flex: 1;
}

.form-control-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    max-width: 100%;
    flex-grow: 0;
    -webkit-box-flex: 0;
    align-items: flex-start;
    -webkit-box-align: start;
    flex-wrap: wrap;
    -webkit-box-lines: multiple;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    width: 100%;
}

.form-label-text {
    display: block;
    color: #010101;
    font-family: Roboto-bold, sans-serif;
    font-size: 13px;
    font-size: 0.8rem;
    line-height: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    width: auto;
    margin-top: 10px;
    align-self: flex-start;
    flex-shrink: 0;
    padding-right: 10px;
}

.form-input {
    display: inline-block;
    color: #010101;
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    white-space: normal;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    flex-grow: 1;
    -webkit-box-flex: 1;
    margin-left: 0;
    margin-right: 0;
    background-color: transparent;
    max-width: 100%;
}


/* CHECKBOX */
.form-checkbox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    margin-bottom: 5px;
}

.form-field-checkbox {
    margin-top: 45px;
    margin-left: 10px;
}

.form-checkbox-label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    touch-action: manipulation;
    padding: 0;
    margin: 0;
    border: none;
}

.form-checkbox-input {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    z-index: -9999;
    opacity: 0;
    position: absolute;
}

.form-checkbox-checkbox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    color: transparent;
    border-radius: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    justify-content: center;
    -webkit-box-pack: center;
    align-items: center;
    -webkit-box-align: center;
    font-size: inherit;
    min-width: 20px !important;
    height: 20px;
}

.form-checkbox-checkbox:before {
    display: block;
    content: " ";
    border: 2px solid #010101;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
}

.disabled > .form-checkbox-checkbox:before {
    border-color: #a2a2a2;
}

.form-checkbox-check-container {
    display: block;
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 3px;
    right: 3px;
}

.form-checkbox-check {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #010101;
    font-family: Roboto;
    font-size: 14px;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 14px;
    font-size: 0.8rem;
    white-space: normal;
    justify-content: center;
    -webkit-box-pack: center;
    align-items: center;
    -webkit-box-align: center;
    width: 14px;
    height: 14px;
}

.disabled > .form-checkbox-checkbox > .form-checkbox-check-container > .form-checkbox-check {
    color: #a2a2a2;
}

.form-checkbox-label-text {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #010101;
    font-size: 13px;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    margin-left: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.disabled > .form-checkbox-label-text {
    color: #a2a2a2;
}

.hidden {
    visibility: hidden;
    display: none;
}

.payments-arrow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
}

.payments-arrow-line {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-top: 2px dashed #D1CFCF;
    width: 50px;
    margin: 8px 15px;
}

.payments-arrow-tip {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 20px;
    height: 16px;
    border-left: 16px solid #d1cfcf;
    border-right: 0 solid transparent;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin: 1px 10px 1px -16px;
}

.justify-content-center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-box-pack: center;
    position: relative;
}

.donation-button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #ffffff;
    padding: 5px 10px;
    max-width: 500px;
    font-family: Roboto-bold, sans-serif;
    align-items: center;
    -webkit-box-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    position: relative;
    border-radius: 5px;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
}

.donation-button .donation-button-wide {
    padding: 5px 50px;
}

.abort-cancel-donation {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #010101;
    padding: 5px 10px;
    max-width: 500px;
    font-family: Roboto-bold, sans-serif;
    align-items: center;
    -webkit-box-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    position: relative;
    border: 1px solid #010101;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
}


.abort-cancel-donation span {
    color: #010101;
    text-align: center;
}

.donation-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.donation-button:focus {
    outline: none;
}

.donation-button-text {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #ffffff;
    font-size: 13px;
    font-size: 0.8125rem;
    font-family: Roboto-bold, sans-serif;
    line-height: 20px;
    white-space: normal;
    padding: 5px 10px;
    max-width: 500px;
    align-items: center;
    -webkit-box-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    position: relative;
    border-radius: 5px;
    font-weight: 700;
}

@media (min-width: 576px) {
    .abort-cancel-donation {
        padding: 5px 50px;
    }

    .donation-button {
        padding: 5px 50px;
    }
}

a.donation-button:hover {
    text-decoration: none !important;
}

.full-width {
    width: 100%
}

.thanks-title {
    color: white;
    font-size: 20px;
    font-size: 1.4rem;
    text-align: center;
    margin: 30px 35px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: stretch;
    padding: 15px 20px;
}

.thanks-title p {
    margin-top: 2px;
    margin-bottom: 0px;
}

.typography {
    font-size: 16px;
    font-size: 1rem;
    color: #000000
}

.typography > p {
    font-size: 16px;
    font-size: 1rem;
    margin: 0.75rem 0
}

.typography > h1 {
    font-size: 32px;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.typography > h2 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.typography > h3 {
    font-size: 19px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.typography > h4 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem 0;
}

.typography > h5 {
    font-size: 13px;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 1rem 0;
}

.typography > h6 {
    font-size: 11px;
    font-size: 0.68rem;
    font-weight: bold;
    margin: 1rem 0;
}

a.typography-link {
    color: #010101;
    text-decoration: underline;
}

.failure-title-wrap {
    margin: 15px 0 0 0;
}

.failure-title-margin {
    margin: 0
}


@media (min-width: 576px) {
    .failure-title-wrap {
        margin: 15px 40px 0 40px;
    }

    .failure-title-margin {
        margin: 30px 35px 0 30px;
    }
}


.failure-title {
    background-color: rgb(254, 242, 242);
    color: rgb(214, 47, 47);
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.payment-data-container {

}

.payment-data-separator {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 1 0 100%;
    max-width: 100%;
    min-height: 0;
    justify-content: center;
    -webkit-box-pack: center;
}

.payment-data-separator-line {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 200px;
    height: 1px;
    background-color: #231f20;
    opacity: 0.1;
    margin: 15px;
}

.payment-data-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background-color: #fef2f2;
    color: #010101;
    /* margin: 0 170px; */
    padding: 15px;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    justify-content: space-between;
    -webkit-box-pack: justify;
    flex-wrap: wrap;
}

.payment-data-block-wrapper {
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 576px) {
    .payment-data-block-wrapper {
        margin: 0 35px;
    }
}

@media (min-width: 768px) {
    .payment-data-block-wrapper {
        margin: 0 90px
    }
}


.payment-info-container {
    color: #010101;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    padding: 25px;
}

.payment-info-label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #010101;
    font-family: Roboto;
    font-size: 14px;
    font-size: 0.87rem;
    font-weight: 400;
    line-height: 20px;
    white-space: normal;
    margin-right: 5px;
}

.payment-info-value {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #010101;
    font-size: 13px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 20px;
    white-space: normal;
}

.payment-info-line {
    display: flex;
    justify-content: center;
}

.payment-info-title {
    color: #010101;
    font-family: Roboto;
    font-size: 22px;
    font-weight: 700;
    line-height: 20px;
    white-space: normal;
    margin-bottom: 10px;
    text-align: center;
}

@media (min-width: 576px) {
    .payment-info-line {
        display: flex;
        justify-content: start;
    }

    .payment-info-title {
        color: #010101;
        font-family: Roboto;
        font-size: 22px;
        font-weight: 700;
        line-height: 20px;
        white-space: normal;
        margin-bottom: 10px;
        text-align: left;
    }
}

.payment-qr-code-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #010101;
    flex-direction: row-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.payment-qr-code {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 140px;
    height: 140px;
}

.payment-qr-align {
    justify-content: center;
}


.retry-link-section {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 1 1 auto;
    transition: flex 300ms cubic-bezier(0.52, 0.16, 0.24, 1);
    -webkit-transition: flex 300ms cubic-bezier(0.52, 0.16, 0.24, 1);
    -moz-transition: flex 300ms cubic-bezier(0.52, 0.16, 0.24, 1);
    will-change: flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    position: relative;
    top: -15px
}


.retry-link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: inherit;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
}


.retry-link-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    text-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    border: none;
    border-width: 2px;
    border-radius: 7px;
    cursor: pointer;
    opacity: 1;
    -webkit-filter: contrast(100%);
    filter: contrast(100%);
    transition: -webkit-filter 50ms linear, filter 50ms linear;
    -webkit-transition: -webkit-filter 50ms linear, filter 50ms linear;
    -moz-transition: filter 50ms linear;
    color: #ffffff;
    margin-right: auto;
    margin-left: auto;
    padding: 6px 16px
}

.retry-link-span {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-left: -4px;
    margin-right: 8px;
    line-height: 24px;
}

.retry-link-label {
    background: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #ffffff;
    font-size: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 24px;
    white-space: normal;
    vertical-align: middle;
    border: none;
    margin-right: auto;
    margin-left: auto;
}

.shadow {
    box-shadow: 0 0 10px 2px rgba(231, 231, 231, 1);
}

.errorlist {
    color: rgb(214, 47, 47);
    padding-left: 0;
}

.errorlist > li {
    list-style: none;
    font-size: 12px;
}

.section-label {
    font-size: 13px;
}

.disclaimer {
    font-size: 12px;
    color: #010101;
    line-height: 20px;
    padding-left: 10px;
}

.disclaimer > a {
    color: #010101;
    text-decoration: underline;
}

.copyright {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 0;
    color: #808080;
}

.copyright > a {
    color: #808080;
    text-decoration: underline;
}

.icon-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: absolute;
    left: 49px;
    top: 14px;
    height: calc(100% - 32px);
    align-items: center;
    -webkit-box-align: center;
    margin-left: 20px;
}

.failure-icon-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: calc(100% - 32px);
    align-items: center;
    -webkit-box-align: center;
    margin-left: 40px;
}

.fixed-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: inherit;
    font-family: Roboto;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    white-space: normal;
    justify-content: center;
    -webkit-box-pack: center;
    align-items: center;
    -webkit-box-align: center;
    width: 40px;
    height: 40px;
}

.failure-title > p, .failure-title-message > p {
    margin-bottom: 0;
}

.title-message {
    padding: 15px 80px;
    text-align: left;
}

.white-text {
    color: white
}

.red-text {
    color: rgb(214, 47, 47)
}

.failure-title-message {
    padding: 15px 100px 20px 15px;
}

.typography > .img-container {
    width: 100%;
    text-align: center;
}

.typography > .img-container.right {
    text-align: right;
}

.typography > .img-container.left {
    text-align: left;
}

.img-container > img, img.img-container {
    max-width: 600px;
    max-width: 100%
}

.checkbox-standalone {
    margin-top: 34px
}

input[type=checkbox]:not(:checked) + div.form-checkbox-checkbox > .form-checkbox-check-container {
    visibility: hidden;
}

.sticky-button-container {
    position: fixed;
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    left: 0;
    right: 0;
    /* width: 100%; */
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 10px 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
}

.simple-button-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.extra-payment-options {
    display: none;
    visibility: hidden;
    flex-direction: row;
    overflow: hidden;
    width: 100%
}

.payments-bank-options {
    display: flex;
    flex-direction: column;
}

@keyframes show-options {
    0% {
        height: 0;
        display: flex;
        visibility: visible
    }
    100% {
        height: 100%
    }
}

@keyframes hide-options {
    0% {
        height: 100%
    }
    100% {
        height: 0;
        display: none;
        visibility: hidden
    }
}

.epo-visible {
    animation-duration: 0.5s;
    -webkit-animation-name: show-options;
    -moz-animation-name: show-options;
    -o-animation-name: show-options;
    animation-name: show-options;
    animation-fill-mode: forwards;
    display: flex;
    visibility: visible;
}

.epo-hidden {
    animation-duration: 0.5s;
    -webkit-animation-name: hide-options;
    -moz-animation-name: hide-options;
    -o-animation-name: hide-options;
    animation-name: hide-options;
    animation-fill-mode: forwards;
    display: none;
    visibility: hidden;
}

.social-wrapper {
    padding-bottom: 20px;
    padding-right: 35px;
    padding-left: 35px;
    display: flex;
    flex-direction: row;
}

.fb-wrapper {

}

.tw-wrapper {
    margin-left: 10px;
}

@media (max-width: 575px) {
    .icon-wrapper {
        display: none
    }

    .title-message {
        padding: 15px
    }

    .thanks-title {
        margin: 30px 0
    }
}

.return-icon {
    font-size: 20px;
    line-height: 20px;
    width: 20px;
    height: 20px;
}

.donation-button-text.narrowed {
    padding: 0;
    margin: 0 0 0 10px;
}

.donation-button.narrowed {
    padding: 8px 16px;
}

.separator {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1rem auto;
    width: 60%
}

/* hide numeric input arrows Chrome, Safari, Edge, Opera */
input.sum-input::-webkit-outer-spin-button,
input.sum-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* hide numeric input arrows Firefox */
input.sum-input[type=number] {
    -moz-appearance: textfield;
}

.logo-align-center {
    justify-content: center;
}

.logo-align-right {
    margin: 0 40px;
    justify-content: flex-end;
}

.logo-align-left {
    margin: 0 40px;
    justify-content: flex-start;
}

.inline-detail-table {
    margin: 50px 0;
}

.inline-detail-table .detail-label {
    text-align: center;
}

.inline-detail-table .detail-label span {
    font-weight: bold;
}

.inline-detail-table .detail-value {
    text-align: center;
    padding-bottom: 10px;
}

@media (min-width: 576px) {
    .inline-detail-table .detail-label {
        text-align: right;
        padding-right: 30px;
    }

    .inline-detail-table .detail-value {
        text-align: left;
        padding-bottom: 0px;
    }
}

.title-wrapper {
    margin: 0 40px;
}

.title-wrapper h1 {
    text-align: center;
    font-family: Roboto-Bold, sans-serif;
    font-weight: bold;
}

.payment-cards {
    display: flex;
    flex-wrap: wrap;
    margin-left: 10px;
}

.card-logo {
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right: 5px;
    width: 35px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (min-width: 410px) {
    .card-logo {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.card-visa {
    background-image: url("https://www.tatrabanka.sk/web/images/logo_visa.gif");
}

.card-electron {
    background-image: url("https://www.tatrabanka.sk/web/images/logo_visa_electron.gif")
}

.card-mc {
    background-image: url("https://www.tatrabanka.sk/web/images/logo_mc.gif");
}

.card-dc {
    background-image: url("https://www.tatrabanka.sk/web/images/logo_DC.jpg");
}

.card-maestro {
    background-image: url("https://www.tatrabanka.sk/web/images/logo_maestro.gif");
}

.card-discover {
    background-image: url("https://www.tatrabanka.sk/web/images/logo_discover.jpg");
}

.apple-google-pay {
    display: flex;
    align-items: center;
}

.threed-secure-logos {
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.threed-link {
    background-position: center top;
}

.threed-secure-logos a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.threed-secure-logos span {
    width: 100%;
    font-size: 9px;
    text-align: center;
    text-decoration: underline;
    justify-self: end;
}

.tatrapay-wrapper {
    margin-left: 30px;
    padding-top: 5px;
}

.threed-visa {
    padding-top: 5px;
    color: #231f20;
}

.threed-mastercard {
    color: #0000FF;
    margin-left: 30px;
}

.threed-visa img {
    max-width: 60px;
}

.threed-mastercard img {
    max-width: 100px;
}

input.hidden-placeholder:focus::placeholder {
    color: transparent !important;
}

.video-container {
    overflow: hidden;
    position: relative;
    width: 100%
}

.video-container::after {
    padding-top: 56%;
    display: block;
    content: ''
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* cookie consent */
.cookie-consent {
    background: white;
    width: 100%;
    position: fixed;
    bottom: 50%;
    transform: translate(0, 50%);
    height: auto;
    padding: 25px;
    box-shadow: 0 0 30px #00000029;
    z-index: 20;
    font-size: 14px;
    margin-top: auto;
    margin-bottom: auto;
}

@media (min-width: 576px) {
    .cookie-consent {
        margin-left: 20px;
        margin-right: 20px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .cookie-consent {
        width: 748px;
        margin-right: -374px;
        margin-left: -374px;
        left: 50%;
        padding: 20px;
    }
}

.cookie-consent h2 {
    margin: 10px 0;
}

.cookie-consent .cookie-switch {
    display: flex;
    margin-top: 10px;
}

.cookie-consent .cookie-switch span {
    margin-left: 8px;
}

.cookie-consent .button-bar {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.cookie-consent .button-bar button {
    border-radius: 0;
    font-weight: bold;
    font-size: 16px;
    background: white;
    border: 1px solid #909090;
    margin-bottom: 10px;
}

.cookie-consent .button-bar button.btn-accept-all {
    color: white !important;
}

@media (min-width: 576px) {
    .cookie-consent .button-bar {
        flex-direction: row;
    }

    .cookie-consent .button-bar button {
        margin-right: 10px;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
    outline: none;
}

.switch input {
    position: absolute;
    top: -99999px;
    left: -99999px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--campaign-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--campaign-color);
}

.slider.disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

input:checked + .slider.disabled {
    background-color: var(--campaign-color);
    opacity: 0.5;
}

input:focus + .slider.disabled {
    box-shadow: 0 0 1px var(--campaign-color);
}

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

.cookie-consent a {
    text-decoration: underline;
    color: black
}

.popup-background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

#cookie-consent {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

a.business-donation-info {
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: black;
    text-decoration: underline;
    display: block;
}

.footer {
    background-color: #F2F2F2;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    line-height: 17px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
    align-self: stretch;
}

.footer .footer-bind {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer .footer-section {
    margin-right: 0;
    margin-bottom: 20px;
}

.footer .footer-section:last-child {
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .footer {
        flex-direction: row;
        justify-content: center;
        padding: 12px 35px;
        margin-top: 0;
    }

    .footer .footer-bind {
        flex-direction: row;
    }

    .footer .footer-section {
        margin-right: 35px;
        margin-bottom: 0;
    }

    .footer .footer-section:last-child {
        margin-right: 0;
    }
}

.footer .logo {
    max-width: 100px;
}

.footer a {
    color: black;
    opacity: 0.9;
    text-decoration: underline;
}