/*prevent scrolling on website while modal is open*/

.givsum-modal-open {
    overflow: hidden !important;
    position: relative;
}


/*remove everything from the page on mobile while modal is open*/

.givsum-modal-open.givsum-on-mobile>* {
    display: none !important;
}

.givsum-modal-open.givsum-on-mobile>#givsum-modal {
    display: block !important;
}

.givsum-button {
    background-color: #ee6840;
    border-radius: 4px;
    cursor: pointer;
    padding: 12px 20px 14px;
    text-align: center;
}

.givsum-button.full {
    display: block;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.givsum-button img {
    height: 20px;
    width: 144px;
    vertical-align: middle;
}

#givsum-modal {
    bottom: 0;
    display: none;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000;
    transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: scroll;
}

#givsum-modal.givsum-show {
    opacity: 1;
}

#givsum-overlay {
    background-color: #bbbbbb;
    bottom: 0;
    left: 0;
    opacity: 0.9;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
}

#givsum-card {
    height: 2500px;
    position: relative;
    z-index: 20;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}

#givsum-card iframe {
    border: none;
    display: block;
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {}

@media print {
    .givsum-modal-open * {
        display: none;
    }
    .givsum-modal-open #givsum-modal,
    .givsum-modal-open #givsum-modal #givsum-card {
        display: block;
    }
}