@import url('https://fonts.googleapis.com/css?family=Nunito:400,500,600,700,800|Nunito:300,300i,400,400i,600,600i,700,700i,bold');

.status-loader form.wpwl-form, .status-loader .spinner, .spinner{
    display: none;
}
.modal-backdrop.in {
    opacity: 0.6 !important;
}
/* Deposit common modal start*/
.organic .deposit-modal .modal-content {
    position: relative;
    background-color: #FFFFFF;
    box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.organic .deposit-modal .modal-dialog {
    width: 636px;
    max-width: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    padding: 10px;
}

.organic .deposit-modal .modal-header {
    position: relative;
    width: 100%;
    padding: 53px 40px 35px 40px;
}
.organic .deposit-modal .modal-body {
    width: 100%;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 0px;
    padding-bottom: 20px;
}
.organic .deposit-modal .deposit-logo {
    float: left;
    height: 30px;
    line-height: 30px;
}
.organic .deposit-modal .gold-detail {
    float: right;
    margin: 9px 0 0 0;
}
.organic .deposit-modal .gold-detail img {
    margin-right: 10px;
    width: 21px;
    height: 21px;
    line-height: 21px;
}
.organic .deposit-modal .gold-detail span.detail {
    font-family: Nunito;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    color: #666666;
    vertical-align:middle
}
.organic .cancel-content {
    padding: 20px;
}
.organic .return-cancel {
    float: left;
    line-height: 18px;
}
.organic .secure-code {
    float: right;
    line-height: 18px;
}
.organic .secure-code  p{
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    line-height: 18px;
    color: #969696;
    margin: 0;
}
.organic .secure-code img{
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    margin-left: 8px;
    margin-bottom: 3px;
}
.organic .return-page-container {
    background-color: transparent;
    padding-bottom: 0;
}
.organic .return-page-container .container {
    width: 100%;
    max-width: 100%;
    padding: 22px 36px 20px 38.5px;
    background-color: #F7F7F7;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.organic .cancel-container {
    background-color: #fafafa;
    padding-left: 0;
    padding-right: 0;
}
.organic .deposit-modal .cancel-container {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.organic .cancel-container a.gold-link {
    font-size: 13px;
    margin-left: 0;
    line-height: 18px;
}
.organic .cancel-container a.return-page {
    margin-left: 0px;
}

.organic .deposit-modal .deposit-modal-iframe {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* background-color: #fafafa; */
}
.organic .deposit-modal .deposit-modal-iframe iframe {
    float: none;
    min-height: 242px;
}

/* tw modal changes start */
.organic .deposit-modal.cc-tw-modal .modal-header{
    display: none;
}
.organic .deposit-modal.cc-tw-modal .modal-body {
    padding-top: 20px;
}
.organic .deposit-modal.cc-tw-modal.error-iframe .modal-body,
.organic .deposit-modal.cc-tw-modal.result-iframe .modal-body{
    padding-top: 0px;
}
.organic .deposit-modal.cc-tw-modal.error-iframe .modal-header,
.organic .deposit-modal.cc-tw-modal.result-iframe .modal-header {
    display: block;
}
.organic .deposit-modal.cc-tw-modal .deposit-modal-iframe.iframe-loaded{
    margin-top: -20px;
}
.organic .deposit-modal.cc-tw-modal.error-iframe .deposit-modal-iframe.iframe-loaded,
.organic .deposit-modal.cc-tw-modal.result-iframe .deposit-modal-iframe.iframe-loaded {
    margin-top: 0px;
}
/* tw modal changes end */

/* error page css */
.active-section{
    display: none;
}
.processing-error {
    border-radius: 6px;
    border: 1px solid rgb(229, 88, 88);
    padding: 16px;
    background: #ffffff;
    margin-bottom: 29px;
}
.processing-error img{
    margin-right: 10px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    vertical-align: middle;
}

.processing-error p {
    color: #e55858;
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    font-family: Nunito;
    float: none;
    display: inline-block;
    vertical-align: text-top;
    width: calc(100% - 50px);
    text-align: left;
    line-height: 22px;
}


/* loader */
.status-loader {
    border: 2px solid #cccccc;
    border-radius: 50%;
    border-top: 2px solid #DCA600;
    width: 50px;
    height: 50px;

    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;

    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
 }

  /* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#depositIframe {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.iframe-loaded #depositIframe {
    opacity: 1;
}
/* .organic .deposit-modal .iframe-loaded.deposit-modal-iframe {
    background-color: transparent;
} */
.iframe-loaded .status-loader {
    display: none;
}



@media only screen and (max-device-width: 767px){
    .organic .deposit-modal .deposit-modal-iframe iframe {
        float: none;
        overflow: hidden;
        min-height: 286px;
    }
    .organic .deposit-modal .modal-header {
        padding: 32px 16px 32px 16px;
    }
    .organic .deposit-modal .deposit-logo {
        float: none;
        margin-bottom: 12px;
    }
    .organic .deposit-modal .gold-detail {
        float: none;
        margin: 0;
    }
    .organic .deposit-modal .modal-body {
        padding-left: 16px;
        padding-right: 16px;
    }
    .organic .return-page-container .container {
        margin: 0 auto;
        padding: 24px;
    }
    .organic .deposit-modal .modal-dialog{
        top: 0;
        transform: none;
    }
    .organic .return-page-container {
        top: 0;
        margin: 0 auto;
        transform: none;
    }
    .organic .deposit-modal .modal-body {
        padding-bottom: 40px;
    }
    .organic .deposit-modal .gold-detail img {
        margin-right: 2px;
    }
    .organic .deposit-modal .iframe-loaded.transaction-reult-iframe {
        padding-bottom: 0px;
    }
}
@media (min-device-width: 617px) and (max-device-width: 767px){
    .organic .deposit-modal .modal-dialog, .organic .return-page-container {
        padding: 0px !important;
    }
}


.deposit-modal .transaction-reult-iframe #depositIframe {
    float: none;
}
.deposit-modal .return-page-container .return-cancel a.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.3;
}

.transaction-history.my-order.organic-order-complete #ajTbl .dataTables_wrapper .my-holdings-tbl tbody tr:first-child {
    background-color: rgba(188,150,84, 0.1) !important;
}
.transaction-history.my-order.organic-order-complete #ajTbl .dataTables_wrapper .my-holdings-tbl tbody tr:first-child td {
    color: #797979 !important;
}


.pmo_dropdown {
    padding: 5px;
    color: #2e2e2e;
    border-color: #ccc;
    border-radius: 3px;
}





/* Bridgerpay CSS */

.bp-splash-screen {
    display: none !important;
}

.modal-body--box-wrapper {
    position: relative;
}
.organic .deposit-modal.ccpp-bp-modal .modal-body {
    padding-left: 24px;
    padding-right: 24px;
}
.organic .deposit-modal.ccpp-bp-modal .deposit-modal-iframe {
    min-height: 330px;
}
.organic .deposit-modal.ccpp-bp-modal .deposit-modal-iframe iframe {
	min-height: 330px;
	height: 330px;
    float: left;
}

/* adding padding for cc only */
.ccpp-bp-modal.credit-card .deposit-modal-iframe iframe {
    padding: 16px;
}

.ccpp-bp-modal .deposit-modal-iframe:after {
	content: none;
}

.bp--processing-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(243,243,243,0.85);
    text-align: center;
    border-radius: 8px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;

    display: flex;
    align-items: center;
    justify-content: center;

	-webkit-transition: opacity .225s ease;
	-o-transition: opacity .225s ease;
	transition: opacity .225s ease;
}
.deposit-modal-iframe:not(.iframe-loaded) .bp--processing-screen:not(.cashier-error),
.processing .bp--processing-screen:not(.cashier-error) {
    z-index: 1;
    visibility: visible;
    opacity: 1;
}
.solidBg .bp--processing-screen {
    background-color: #FAFAFA;
}

.bp--processing-screen-content {
    padding: 24px 64px;
    width: 100%;
}
.bp--processing-screen .loader-lock {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    text-align: center;
}
.bp--processing-screen .loader-lock img {
    margin-top: 12px;
}
.bp--processing-screen .loader-lock:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #cccccc;
    border-radius: 50%;
    border-top: 2px solid #bc9654;
    width: 48px;
    height: 48px;
    display: inline-block;

    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.bp--processing-screen h4 {
    color: #343434;
    font-size: 20px;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 8px;
}
.bp--processing-screen p {
    padding: 0 !important;
}

.cashier-error {
    background-color: #FAFAFA;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    display: none;
}
.deposit-modal-iframe.cashierError .cashier-error {
    display: flex;
}

.cashier-error .error--code {
    margin-top: 8px !important;
}
.cashier-error .loader-lock:after {
    content: none;
}


.deposit-modal-iframe .bp--processing-screen .next-try,
.deposit-modal-iframe:not(.iframe-loaded) .bp--processing-screen .first-try,
.deposit-modal-iframe.processing.next-psp .bp--processing-screen .first-try,
.ccpp-bp-modal.resultPage .cancel-url,
.ccpp-bp-modal .highlow-redirect-url {
    display: none;
}

.deposit-modal-iframe.processing.next-psp .bp--processing-screen .next-try,
.ccpp-bp-modal.resultPage .highlow-redirect-url {
    display: block;
}


.ccpp-bp-modal.resultPage .deposit-modal-iframe,
.ccpp-bp-modal .transaction-result-section {
    visibility: hidden;
    opacity: 0;
    height: 0;
    min-height: 0 !important;
    position: absolute;
    left: 0;
    top: 0;

	-webkit-transition: all .225s ease;
	-o-transition: all .225s ease;
    transition: all .225s ease;
}
.ccpp-bp-modal.resultPage .transaction-result-section {
    visibility: visible;
    opacity: 1;
    height: auto;
    position: relative;
}



/* Responsive Bridgerpay CSS */
@media (max-width: 767px) {
    .organic .deposit-modal.ccpp-bp-modal .modal-body {
        padding: 0 12px 24px;
    }
	.organic .custom-modal.ccpp-bp-modal .modal-header {
		padding: 32px 24px 20px 24px;
	}
	.deposit-modal.ccpp-bp-modal .modal-body--heading {
		margin: 0 0 32px 0;
	}
	.organic .bp--processing-screen-content {
		padding: 24px;
	}
	.organic .deposit-modal.ccpp-bp-modal .deposit-modal-iframe iframe {
        min-height: 330px;
    }
    /* adding padding for cc only */
    .ccpp-bp-modal.credit-card .deposit-modal-iframe iframe {
        padding: 12px;
    }
}


/* // Bridgerpay CSS */
