@font-face {
    font-family: Graphik;
    src: url(fonts/Graphik-Regular-Web.eot);
    src: url(fonts/Graphik-Regular-Web.eot?#iefix) format("embedded-opentype"), url(fonts/Graphik-Regular-Web.woff2) format("woff2"), url(fonts/Graphik-Regular-Web.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal
}

@font-face {
    font-family: Graphik;
    src: url(fonts/Graphik-Medium-Web.eot);
    src: url(fonts/Graphik-Medium-Web.eot?#iefix) format("embedded-opentype"), url(fonts/Graphik-Medium-Web.woff2) format("woff2"), url(fonts/Graphik-Medium-Web.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal
}

html {
    font-family: Graphik;
    font-size: 13px;
    letter-spacing: .02em;
}

* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .2);
}

*, :after, :before, ul, ol {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.navbar {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 510;
    padding: .5rem 1rem;
    margin: 0.9rem;
    pointer-events: auto;
    border: 1px solid transparent;
    overflow: hidden;
    transition: height .1s ease-in-out;
}

.navbar-active {
    border-color: rgba(0, 0, 0, .09);
    opacity: 0.95;
    /*box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);*/
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.page-wrapper {
    margin-top: 72px;
}

.container {
    width: 100%;
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: center;
    justify-items: center;
}

.col {
    width: 100%;
    padding: 15px;
}

.col-left {
    max-width: 60%;
}

.col-right {
    max-width: 40%;
}

.btn-burger-menu {
    width: 20px;
    height: 15px;
    background: none;
    border-left: none;
    border-right: none;
    outline: none;
    cursor: pointer;
    position: relative;
    display: none;
    float: right;
    margin-top: 17px;
    transition: all .1s ease-in-out;
}

.btn-burger-menu:active {
    outline: none;
}

.closed {
    border-top: 3px solid #181818;
    border-bottom: 3px solid #181818;
    transition: all .1s ease-in-out;
}


.opened {
    border-top: none;
    border-bottom: none;
    transition: all .1s ease-in-out;
}

.closed:before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    position: absolute;
    left: 0;
    top: 3px;
    background-color: #181818;
    transition: all .1s ease-in-out;
}

.opened:before, .opened:after {
    content: '';
    display: block;
    width: 20px;
    height: 2.5px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #181818;
    transition: all .1s ease-in-out;
}

.opened:before {
    transform: rotate(45deg);
}

.opened:after {
    transform: rotate(-45deg);
}

.navbar-header {
    float: left;
    padding-right: 1rem;
}

img.brand-logo {
    width: 150px;
}

.navbar-nav {
    list-style: none;
    line-height: 50px;
    display: block;
}

.navbar-nav > li {
    display: inline;
    margin: 0 .5rem;
}

.nav-left {
    float: left;
}

.nav-right {
    float: right;
}

.navbar-nav > li > a, a {
    font-family: Graphik, sans-serif;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    color: #181818;
    transition: color .6s ease;
    text-decoration: none;
}

.navbar-nav > li > a:before, a:before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #181818;
    opacity: .4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1), background .6s ease;
}

.navbar-nav > li > a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-cart-item-number {
    background: #181818;
    border-radius: 50%;
    padding: 9px 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 11px;
    color: #fff;
}

.custom-select {
    padding: 5px 0;
    border: 0;
    height: auto;
    cursor: pointer;
    width: 80px;
    background-color: transparent;
}

.nav-right li:nth-child(1):after {
    content: '';
    display: block;
    position: absolute;
    border-left: 2px solid #313131;
    border-bottom: 2px solid #313131;
    width: 8px;
    height: 8px;
    top: 0;
    right: 10px;
    transform: rotate(-45deg);
    z-index: -1;
}

.breadcrumb-progress {
    padding: 15px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb > li {
    display: inline-block;
    font-weight: 500;
    color: #181818
}

.breadcrumb > li:nth-child(1) {
    text-align: left;
}

.breadcrumb > li:nth-child(2) {
    text-align: center;
}

.breadcrumb > li:nth-child(3) {
    opacity: 0.3;
    text-align: right;
}

.progress-bar {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar {
    width: 50%;
    height: 2px;
    background-color: #181818;
    float: left;
}

.bar:nth-child(2) {
    opacity: 0.4;
}

.bar-icon {
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #181818;
}

.bar-icon.done {
    background-color: #181818;
}

.chk {
    width: 10px;
    height: 5px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    display: block;
    transform: rotate(-45deg);
    margin: 6px 5px 9px 5px;
}

.bar-icon.active {
    width: 15px;
    height: 15px;
    background-color: #181818;
    margin-left: -15px;
}

.bar-icon.pending {
    opacity: 0.3;
    width: 15px;
    height: 15px;
    background-color: #FFFFFF;
}

.bars {
    display: flex;
    justify-content: center;
    margin-top: -13px;
}

.bars > div {
    width: 100%;
    height: 2px;
    background-color: #181818;
}

.bars > div:nth-child(2) {
    opacity: 0.2;
    margin-right: 15px;
}

h2 {
    font-weight: 500;
    font-size: 1.2605rem;
    line-height: 1;
    font-family: Graphik, sans-serif;
}

.radio-container, .check-container {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-container input, .check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark, .radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid #181818;
}

.radiomark {
    border-radius: 50%;
}

.checkmark:after, .radiomark:after {
    content: "";
    position: absolute;
    background-color: #181818;
    transform: scale(0);
    transition: tranform .5s ease-in-out;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
}

.checkmark:after {
    /*right: 1px;*/
    /*bottom: 1px;*/
}

.radiomark:after {
    border-radius: 50%;
    /*right: 1.5px;*/
    /*bottom: 1.5px;*/
}

.check-container input:checked ~ .checkmark, .radio-container input:checked ~ .radiomark {
    /*background-color: #181818;*/
}

.check-container input:checked ~ .checkmark:after, .radio-container input:checked ~ .radiomark:after {
    transform: scale(1);
}

.card {
    padding: 15px;
    box-shadow: 1px 1px 3px rgb(0 0 0 / 6%);
    border-radius: 4px;
    border: 1px solid #EAEAEA;
}

.shipping-wrapper {
    border: 1px solid #181818;
    /*background-repeat: no-repeat;*/
    /*background-size: 25px;*/
    /*background-position-y: center;*/
    /*background-position-x: calc(100% - 15px);*/
    /*background-image: url('///images/shipping-truck-icon.jpg');*/
}

.shipping-wrapper > span.shipping-amount {
    margin: 25px auto 25px 20px;
    opacity: 0.4;
}

.list-payment-methods, .wallet_account_list {
    list-style: none;
}

.list-payment-methods > li {
    margin: 10px auto;
    padding: 20px 15px;
    box-shadow: 1px 1px 3px rgb(0 0 0 / 6%);
    border-radius: 4px;
    border: 1px solid #EAEAEA;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position-y: 15px;
    background-position-x: calc(100% - 15px);
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.wallet_account_list > li {
    margin: 10px auto;
    padding: 20px 15px;
    box-shadow: 1px 1px 3px rgb(0 0 0 / 6%);
    border-radius: 4px;
    border: 1px solid #EAEAEA;
    background-position-x: 15px !important;
    background-position-y: center !important;
    background-size: 25px !important;
    background-repeat: no-repeat !important;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.wallet_account_list > li.disabled-payment {
    cursor: no-drop !important;
    background-color: #eaeaeaba !important;
    filter: grayscale(100%) !important;
}

.wallet_account_list > li:hover {
    border-color: #181818;
}

.wallet_account_list > li:hover.disabled-payment {
    border-color: #EAEAEA !important;
}

.wallet_account_list > li:nth-child(1) {
    background: url(/images/bitcoin-logo.svg);
}

.wallet_account_list > li:nth-child(2) {
    background: url(/images/logo.png);
}

.wallet_account_list > li:nth-child(3) {
    background: url(/images/usd.ea3fe294.svg);
}

.wallet_account_list > li:nth-child(4) {
    background: url(/images/cad.489f05ee.svg);
}

.wallet_account_list > li > table, .wallet_account_list > li > table > tbody, .wallet_account_list > li > table > tbody > tr {
    width: 100%;
}

.wallet_account_list > li > table > tbody > tr > td:nth-child(1) {
    text-align: left;
    padding-left: 40px;
}

.wallet_account_list > li > table > tbody > tr > td:nth-child(2) {
    text-align: right;
}

.list-payment-methods > li.active {
    border: 1px solid #181818;
}

.list-payment-methods > li:nth-child(1) {
    /*background-image: url(/images/logo.png);*/
    background-image: url(/images/bitcoin-logo.svg);
}

.list-payment-methods > li:nth-child(2) {
    /*background-image: url(/images/bitcoin-logo.svg);*/
    background-image: url(/images/logo.png);
}

.list-payment-methods > li:nth-child(3) {
    background-image: url(/images/logo.png);
}

.list-payment-methods > li:nth-child(4) {
    background-image: url(/images/logo.png);
}


span.prev-step {
    margin-top: 1.75rem;
    display: inline-block;
    padding-left: 1.5rem;
    position: relative;
    cursor: pointer;
}

span.prev-step:before {
    content: '';
    display: block;
    border-left: 2px solid #181818;
    border-bottom: 2px solid #181818;
    position: absolute;
    top: 2px;
    left: 6px;
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    background-color: transparent;
    opacity: 0.8;
    cursor: pointer;
}

span.prev-step:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 19px;
    width: 87px;
    height: 1px;
    background: #181818;
    opacity: .4;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1), background .6s ease;
}

span.prev-step:hover:after {
    transform: scaleX(1);
}

.terms {
    margin: 1.75rem auto;
}

.a-active:before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    right: 0;
    width: 100%;
    height: 1px;
    background: #181818;
    opacity: .4;
    transform: scale(1);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1), background .6s ease;
}

.a-active:hover:before {
    transform-origin: left;
    transform: scale(0);
}

.footer {
    margin-top: 4rem;
}

.footer-header {
    font-size: 1.0084rem;
    line-height: 1.077;
    margin: 0 0 20px 0;
    font-weight: 500;
    display: block;
}

.footer-left, .footer-right {
    width: 50%;
    float: left;
}

.footer-left {
    padding-right: 15px;
}

.footer-right {
    padding-left: 15px;
}

.footer-list {
    list-style-type: none;
    line-height: 1.6;
}

.footer-list > li {
    padding-left: 17px;
    margin-bottom: 5px;
    position: relative;
}

.footer-list > li:before {
    content: '';
    display: block;
    background-color: transparent;
    border-left: 2px solid #181818;
    border-bottom: 2px solid #181818;
    width: 10px;
    height: 5px;
    position: absolute;
    top: 5px;
    left: 0;
    transform: rotate(-45deg);
}

form.form {
    margin-top: 20px;
    display: none;
}

.btn {
    padding: 10px 20px;
    margin-left: auto;
    background: #181818;
    color: #fff;
    text-align: center;
    border: none;
    transition: background .4s cubic-bezier(.19, 1, .22, 1);
    font-weight: 500;
    outline: none;
    display: block;
    cursor: pointer;
}

.btn:disabled {
    cursor: no-drop !important;
}

.input-input {
    width: 100%;
    position: relative;
}

input:not([type=checkbox]):not([type=radio]), select {
    border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    font-family: Graphik, sans-serif;
    font-weight: 400;
    font-size: 1.0084rem;
    line-height: 1;
    color: #313131;
    letter-spacing: .026em;
    outline: none;
    width: 100%;
    padding: 1.1rem 1rem 0;
    height: 56px;
    border: 1px solid #e7e7e7;
}

input:not([type=checkbox]):not([type=radio]):active, input:not([type=checkbox]):not([type=radio]):focus, select:active, select:focus {
    outline: 0;
    border-color: #cecece;
}

input:not([type=checkbox]):not([type=radio]).has-error, select.has-error {
    border-color: #ff3000;
}

.error-list {
    color: #ff3000;
    margin-left: 15px;
}

.error-list > li {
    margin-bottom: .5rem;
}

.input-success-icon, .input-error-icon {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
}

.input-success-icon {
    top: 22px;
}

.input-error-icon {
    top: 26px;
}

.loading, .payment-success-outer, .payment-failed-outer, .timer-outer, .custom-modal-backdrop {
    background-color: #faf9f9ba;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .7s ease-in-out;
}

.loading span {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #000000;
    /*box-shadow: 0 0 0 0.25rem rgb(66 70 73 / 50%);*/
    margin: 0 10px;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: .75s linear infinite spinner-grow;
    animation: .75s linear infinite spinner-grow;
}

.display-none {
    display: none;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: none;
    }
}

.payment-success, .payment-failed {
    width: 100px;
    height: 100px;
    border: 4px solid #000000;
    border-radius: 50%;
    position: relative;
}

.payment-success-outer, .payment-failed-outer {
    flex-direction: column;
}

.payment-success-outer p, .payment-failed-outer p {
    font-size: initial;
    /*font-weight: 500;*/
    padding: 20px;
    text-align: center;
    line-height: 20px;
    letter-spacing: 0.7px;
}

.payment-success:before {
    content: '';
    display: block;
    position: absolute;
    height: 30px;
    width: 60px;
    background-color: transparent;
    top: calc(50% - 15px);
    left: calc(50% - 30px);
    transform: rotate(-45deg);
    /*border-top: 4px solid transparent;*/
    /*border-right: 4px solid transparent;*/
    border-bottom: 4px solid #000000;
    border-left: 4px solid #000000;
    margin-top: -10px;
    transition: height .3s ease-in-out, width .6s
}

.payment-failed:before, .payment-failed:after {
    content: '';
    display: block;
    position: absolute;
    height: 60px;
    width: 4px;
    background-color: #000000;
    top: calc(50% - 30px);
    left: calc(50% - 2px);
    transition: height .3s ease-in-out, width .6s
}

.payment-failed:before {
    transform: rotate(-45deg);
}

.payment-failed:after {
    transform: rotate(45deg);
}

.input-success-icon:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 8px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 2px solid #181818;
    border-left: 2px solid #181818;
    transform: rotate(-45deg);
}

.custom-modal-backdrop {
    background-color: transparent;
    transform: scale(0);
}

.custom-modal {
    background-color: #FFFFFF;
    width: 70vw;
    height: auto;
    max-width: 650px;
    max-height: 70vw;
    margin: auto;
    border: 1px solid rgba(0, 0, 0, .09);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.custom-modal-header, .custom-modal-body, .custom-modal-footer {
    padding: 15px;
}

.custom-modal-header {
    text-align: right;
    border-bottom: 1px solid rgba(0, 0, 0, .09);
}

.custom-modal-body {
    overflow: auto;
    min-height: 275px;
}

.custom-modal-footer {
    border-top: 1px solid rgba(0, 0, 0, .09);
}

.custom-modal-close-btn {
    width: 15px;
    height: 15px;
    border: none;
    outline: none;
    background: none;
    position: relative;
    cursor: pointer;
}

.custom-modal-close-btn:active {
    outline: none;
}

.custom-modal-close-btn:before, .custom-modal-close-btn:after {
    content: '';
    display: block;
    width: 2px;
    height: 15px;
    position: absolute;
    top: 0;
    background: #313131;
}

.custom-modal-close-btn:before {
    transform: rotate(45deg);
}

.custom-modal-close-btn:after {
    transform: rotate(-45deg);
}

.input-error-icon:before, .input-error-icon:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: #ff3000;
    border-radius: 10px;
}

.input-error-icon:before {
    transform: rotate(45deg);
}

.input-error-icon:after {
    transform: rotate(-45deg);
}

.input-input label {
    position: absolute;
    top: 1.68067rem;
    left: 1.09244rem;
    transition: all .2s ease-out;
    transform-origin: top left;
    font-size: 1.0084rem;
    color: #313131;
    opacity: 1;
    margin-bottom: 10px;
}

input:not([type=checkbox]):not([type=radio]):active + label, input:not([type=checkbox]):not([type=radio]):focus + label, input:not([type=checkbox]):not([type=radio]):valid + label, .input-is-not-empty + label {
    top: .92437rem;
    transform: scale(.75);
}

.shopping-bag-wrapper {
    position: fixed;
    top: 85px;
    width: 100%;
    max-width: 400px;
    padding-left: 30px;

}

.shopping-bag-table {
    width: 100%;
    border-collapse: collapse;
}

.shopping-bag-table td {
    padding: 15px 0;
}

.shopping-bag-table thead td:nth-child(2), .shopping-bag-table tbody td:nth-child(3), .shopping-bag-table tfoot td:nth-child(3) {
    text-align: right;
}

.shopping-bag-table thead tr:nth-child(1) td {
    padding-bottom: 50px;
}

.shopping-bag-table tbody tr:nth-child(1) td {
    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;
}

.shopping-bag-table tbody tr:nth-child(1) td:nth-child(1) {
    width: 80px;
}

.shopping-bag-table tbody tr:nth-child(1) td:nth-child(2) {
    padding-left: 15px;
}

.shopping-bag-table tbody tr:nth-child(1) td:nth-child(2) span {
    display: block;
    margin-top: 10px;
}

.shopping-bag-table tfoot tr td:nth-child(2) {
    text-align: right;
}

.shopping-bag-table tfoot tr:nth-child(1) td, .shopping-bag-table tfoot tr:nth-child(2) td {
    border-bottom: 1px solid #e7e7e7;
}

.shopping-bag-table tfoot tr:nth-child(3) td {
    font-weight: 500;
}

.bag-item-thumbnail {
    width: 100%;
    max-width: 80px;
}

.row {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.col-12 {
    width: 100%;
}

.col-6 {
    width: calc((100% / 2) - (15px / 2));
}

.col-4 {
    width: calc((100% / 3) - (30px / 3));
}

.col-3 {
    width: calc((100% / 4) - (45px / 4));
}

.col-2 {
    width: calc((100% / 6) - (75px / 6));
}

.col-1 {
    width: calc((100% / 12) - (165px / 12));
}

.login-holder {
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 85vw;
    max-width: 500px;
    border: 1px solid #cecece;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    padding: 15px;
}

::-webkit-scrollbar {
    width: 7px !important;
    height: 7px !important;
}

::-webkit-scrollbar-thumb {
    /*background: rgb(170, 169, 169);*/
    background: #b0b1b2;
    border-radius: 7px;
    opacity: 0.2;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    opacity: 0.4;
    border-radius: 7px;
}

@media screen and (max-width: 1040px) {
    .btn-burger-menu {
        display: initial;
    }

    .custom-select {
        width: 100%;
    }

    .col-left, .col-right {
        max-width: 100%;
    }

    .footer, .terms {
        display: none;
    }

    .container {
        flex-direction: column;
    }

    .shopping-bag-wrapper {
        position: relative;
        top: inherit;
        width: 100%;
        max-width: 100%;
        padding: 15px
    }

    .navbar {
        height: 57px;
    }

    .navbar-nav {
        float: left;
        clear: both;
        line-height: 25px;
        width: 100%;
    }

    .navbar-nav > li {
        display: block;
        margin: .5rem 0;
    }

    .nav-left {
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .09);
    }

    .nav-right > li:nth-child(1) {
        margin-top: 0;
    }
}

@media screen and (max-width: 800px) {
    .col-12 {
        width: 100%;
    }

    .col-6 {
        width: 100%;
    }

    .col-4 {
        width: 100%;
    }

    .col-3 {
        width: 100%;
    }

    .col-2 {
        width: 100%;
    }

    .col-1 {
        width: 100%;
    }
}

.bitcoin-payment-modal-outer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #9999995c;
    z-index: 11111;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
}

.bitcoin-payment-modal-inner {
    width: 550px;
    padding: 2rem;
    display: flex;
    position: relative;
    align-items: center;
    border-radius: 30px;
    flex-direction: column;
    justify-content: flex-start;
    background-color: white;
}

.bitcoin-payment-modal-icon {
    width: 140px;
    height: 140px;
    display: flex;
    overflow: hidden;
    min-width: 140px;
    margin-top: -70px;
    min-height: 140px;
    align-items: center;
    border-radius: 140px;
    flex-direction: row;
    background-color: #f6f6f6;
}

#bitcoin-payment-view-receipt-btn {
    padding: 6px 16px;
    color: #fff;
    background-color: #102C62;
    font-size: 1.15rem;
    width: 100%;
    font-weight: 500;
    line-height: 1.75;
    border-radius: 100px;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    display: block;
}

.span {
    display: block;
    color: rgb(16 44 98) !important;
}

.font-1 {
    font-size: 2rem;
    font-weight: 500;
}

.font-2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.font-3 {
    font-size: 1rem;
    font-weight: 500;
}

.font-4 {
    font-size: 1rem;
}

span.bitcoin-timer {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
}

span.company-name {
    margin: 2rem auto;
}

span.bitcoin-amount {
    margin: 0 auto 2rem auto;
}

span.exchanged-amount, span.bitcoin-to-exchanged-amount {
    margin: 0 auto 1rem auto;
    font-size: 1.15rem;
}

div.public-address-wrapper {
    border: 1px solid #EAEAEA;
    border-radius: .75rem;
    margin: 2rem auto;
    width: 100%;
}

div.public-address-wrapper > table {
    width: 100%;
}

span.waiting-animation {
    margin: 2rem auto;
    width: 36px;
    height: 36px;
    border: 4px solid rgb(16 44 98);
    border-bottom-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

.send_address_head_1, .send_amount_head_1 {
    margin-bottom: .5rem;
}

.back-link {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    font-size: 1rem;
    font-weight: 500;
}

@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.country-code-select {
    width: 100%;
    height: 56px;
    display: block;
    border: 1px solid #e7e7e7;
    border-right-color: transparent;
    position: relative;
}

.country-code-select > div.selected-option {
    padding: 1.3rem 2rem 1.3rem 3rem;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    max-height: 20px;
    line-height: 20px;
    word-break: break-all;
}

.country-code-select > div.selected-option::before {
    content: '';
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    display: block;
    height: 20px;
    width: 20px;
    vertical-align: middle;
    line-height: 20px;
    background: url(/images/flags.png) no-repeat;
    margin-right: 3px;
    background-size: cover;
    background-position-x: center;
    background-position-y: 1px;
    transition: all .2s ease-in-out;
}

.country-code-select > div.selected-option::after {
    content: '';
    display: block;
    border-left: 2px solid #181818;
    border-bottom: 2px solid #181818;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    width: 9px;
    height: 9px;
    transform: rotate(-45deg);
    background-color: transparent;
    opacity: 0.8;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.country-code-select:hover ul.list-countries {
    display: block;
}

.country-code-select:hover div.selected-option::after {
    transform: rotate(45deg);
}

ul.list-countries {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    background: #fff;
    top: 55px;
    left: -1px;
    z-index: 99;
    width: max-content;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #e7e7e7;
    border-top-color: transparent;
    transition: all .3s ease-in-out;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    display: none;
}

ul.list-countries > li {
    position: relative;
    padding: 1rem 1.75rem 1rem 3.15rem;
    cursor: pointer;
    width: calc(100%)
}

ul.list-countries > li.selected {
    background-color: #b0b1b275;
    position: relative;
}

ul.list-countries > li.selected::after {
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 8px;
    border-width: .23rem;
    border-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: #06bc0d;
    border-left-color: #06bc0d;
    top: 13px;
    right: 5px;
    transform: rotate(-45deg);
    border-radius: 2px 0 2px 0;
}

ul.list-countries > li:not(.selected):hover {
    background-color: #f1f1f1;
}

ul.list-countries > li::before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 1rem;
    height: 20px;
    width: 20px;
    background: url(/images/flags.png) no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: 1px;
    transition: all .3s ease-in-out;
}

.country-code-select > div.selected-option[data-selected-code="AF"]::before, ul.list-countries > li[data-code="AF"]::before {
    background-position-y: -480px !important;
}

.country-code-select > div.selected-option[data-selected-code="AL"]::before, ul.list-countries > li[data-code="AL"]::before {
    background-position-y: -540px !important;
}

.country-code-select > div.selected-option[data-selected-code="DZ"]::before, ul.list-countries > li[data-code="DZ"]::before {
    background-position-y: -1540px !important;
}

.country-code-select > div.selected-option[data-selected-code="AS"]::before, ul.list-countries > li[data-code="AS"]::before {
    background-position-y: -640px !important;
}

.country-code-select > div.selected-option[data-selected-code="AD"]::before, ul.list-countries > li[data-code="AD"]::before {
    background-position-y: -440px !important;
}

.country-code-select > div.selected-option[data-selected-code="AO"]::before, ul.list-countries > li[data-code="AO"]::before {
    background-position-y: -580px !important;
}

.country-code-select > div.selected-option[data-selected-code="AI"]::before, ul.list-countries > li[data-code="AI"]::before {
    background-position-y: -520px !important;
}

.country-code-select > div.selected-option[data-selected-code="AQ"]::before, ul.list-countries > li[data-code="AQ"]::before {
    background-position-y: -600px !important;
}

.country-code-select > div.selected-option[data-selected-code="AG"]::before, ul.list-countries > li[data-code="AG"]::before {
    background-position-y: -500px !important;
}

.country-code-select > div.selected-option[data-selected-code="AR"]::before, ul.list-countries > li[data-code="AR"]::before {
    background-position-y: -620px !important;
}

.country-code-select > div.selected-option[data-selected-code="AM"]::before, ul.list-countries > li[data-code="AM"]::before {
    background-position-y: -560px !important;
}

.country-code-select > div.selected-option[data-selected-code="AW"]::before, ul.list-countries > li[data-code="AW"]::before {
    background-position-y: -700px !important;
}

.country-code-select > div.selected-option[data-selected-code="AU"]::before, ul.list-countries > li[data-code="AU"]::before {
    background-position-y: -680px !important;
}

.country-code-select > div.selected-option[data-selected-code="AT"]::before, ul.list-countries > li[data-code="AT"]::before {
    background-position-y: -660px !important;
}

.country-code-select > div.selected-option[data-selected-code="AZ"]::before, ul.list-countries > li[data-code="AZ"]::before {
    background-position-y: -740px !important;
}

.country-code-select > div.selected-option[data-selected-code="CA"]::before, ul.list-countries > li[data-code="CA"]::before {
    background-position-y: -1120px !important;
}

.country-code-select > div.selected-option[data-selected-code="US"]::before, ul.list-countries > li[data-code="US"]::before {
    background-position-y: -4580px !important;
}

.country-code-select > div.selected-option[data-selected-code="GB"]::before, ul.list-countries > li[data-code="GB"]::before {
    background-position-y: -1820px !important;
}

.country-code-select > div.selected-option[data-selected-code="IN"]::before, ul.list-countries > li[data-code="IN"]::before {
    background-position-y: -2320px !important;
}

.country-code-select > div.selected-option[data-selected-code="BE"]::before, ul.list-countries > li[data-code="BE"]::before {
    background-position-y: -820px !important;
}

.country-code-select > div.selected-option[data-selected-code="BR"]::before, ul.list-countries > li[data-code="BR"]::before {
    background-position-y: -1000px !important;
}

.country-code-select > div.selected-option[data-selected-code="BG"]::before, ul.list-countries > li[data-code="BG"]::before {
    background-position-y: -860px !important;
}

.country-code-select > div.selected-option[data-selected-code="DK"]::before, ul.list-countries > li[data-code="DK"]::before {
    background-position-y: -1480px !important;
}

.country-code-select > div.selected-option[data-selected-code="FR"]::before, ul.list-countries > li[data-code="FR"]::before {
    background-position-y: -1780px !important;
}

.country-code-select > div.selected-option[data-selected-code="DE"]::before, ul.list-countries > li[data-code="DE"]::before {
    background-position-y: -1440px !important;
}

.country-code-select > div.selected-option[data-selected-code="GR"]::before, ul.list-countries > li[data-code="GR"]::before {
    background-position-y: -2040px !important;
}

.country-code-select > div.selected-option[data-selected-code="IS"]::before, ul.list-countries > li[data-code="IS"]::before {
    background-position-y: -2380px !important;
}

.country-code-select > div.selected-option[data-selected-code="IE"]::before, ul.list-countries > li[data-code="IE"]::before {
    background-position-y: -2260px !important;
}

.country-code-select > div.selected-option[data-selected-code="IL"]::before, ul.list-countries > li[data-code="IL"]::before {
    background-position-y: -2280px !important;
}

.country-code-select > div.selected-option[data-selected-code="IT"]::before, ul.list-countries > li[data-code="IT"]::before {
    background-position-y: -2400px !important;
}

.country-code-select > div.selected-option[data-selected-code="MX"]::before, ul.list-countries > li[data-code="MX"]::before {
    background-position-y: -3280px !important;
}

.country-code-select > div.selected-option[data-selected-code="NL"]::before, ul.list-countries > li[data-code="NL"]::before {
    background-position-y: -3440px !important;
}

.country-code-select > div.selected-option[data-selected-code="NZ"]::before, ul.list-countries > li[data-code="NZ"]::before {
    background-position-y: -3520px !important;
}

.country-code-select > div.selected-option[data-selected-code="NO"]::before, ul.list-countries > li[data-code="NO"]::before {
    background-position-y: -3460px !important;
}

.country-code-select > div.selected-option[data-selected-code="PK"]::before, ul.list-countries > li[data-code="PK"]::before {
    background-position-y: -3660px !important;
}

.country-code-select > div.selected-option[data-selected-code="PL"]::before, ul.list-countries > li[data-code="PL"]::before {
    background-position-y: -3680px !important;
}

.country-code-select > div.selected-option[data-selected-code="SZ"]::before, ul.list-countries > li[data-code="SZ"]::before {
    background-position-y: -1200px !important;
}
.country-code-select > div.selected-option[data-selected-code="SE"]::before, ul.list-countries > li[data-code="SE"]::before {
    background-position-y: -4000px !important;
}