.loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(50, 50, 50, 0.3);
    z-index: 99;
    justify-content: center;
    align-items: center;
    display: none;
}

.circonf-wrapper {
    text-align: center;
}

.btn .circonf {
    width: 24px;
    height: 24px;
    position: absolute;
    left: calc(50% - 12px);
    top: calc(50% - 12px);
    margin: 0;
    display: none;
}

.btn.loading .circonf {
    display: block;
}

.circonf {
    margin: 5px;
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid silver;
    animation: circ-anim 0.7s linear infinite;
}

.circonf-2 {
    border-color: #81C784;
    border-bottom-color: transparent;
}

@keyframes circ-anim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    background-image: linear-gradient(#81EE79, #81EE79);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    border: none;
}

/* Input Thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: #20304C;
    border: 3px solid #0C1A32;
    cursor: ew-resize;
    box-shadow: none;
    transition: background .3s ease-in-out;
    margin-top: -16px;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #81C784;
}

input[type=range] + .thumb {
    display: none;
}

/* Input Track */
input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

/* fallback */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('material-icons.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto-Regular.ttf') format('truetype'),
    url('../fonts/Roboto-Regular.svg#RobotoRegular') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.eot');
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Medium.woff') format('woff'),
    url('../fonts/Roboto-Medium.ttf') format('truetype'),
    url('../fonts/Roboto-Medium.svg#RobotoMedium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.eot');
    src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Light.woff') format('woff'),
    url('../fonts/Roboto-Light.ttf') format('truetype'),
    url('../fonts/Roboto-Light.svg#RobotoLight') format('svg');
    font-weight: 300;
    font-style: normal;
}

.material-icons {
    font-family: 'Material Icons', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.btn-small i {
    font-size: 18px;
    line-height: 28px;
}

.modal:not(.bottom-sheet) {
    background-color: transparent;
    box-shadow: none;
    top: 50% !important;
    transform: translateY(-50%) !important;
    text-transform: none;
}

.modal-overlay {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1 !important;
    transition: .3s all linear;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0C1A32 inset !important;
    -webkit-text-fill-color: #FFF !important;
    background-color: #0C1A32;
}
input:not([type]):focus:not([readonly]), input[type=text]:not(.browser-default):focus:not([readonly]), input[type=password]:not(.browser-default):focus:not([readonly]), input[type=email]:not(.browser-default):focus:not([readonly]), input[type=url]:not(.browser-default):focus:not([readonly]), input[type=time]:not(.browser-default):focus:not([readonly]), input[type=date]:not(.browser-default):focus:not([readonly]), input[type=datetime]:not(.browser-default):focus:not([readonly]), input[type=datetime-local]:not(.browser-default):focus:not([readonly]), input[type=tel]:not(.browser-default):focus:not([readonly]), input[type=number]:not(.browser-default):focus:not([readonly]), input[type=search]:not(.browser-default):focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #81C784;
    -webkit-box-shadow: 0 1px 0 0 #81C784;
    box-shadow: 0 1px 0 0 #81C784;
}
input:focus + label, textarea:focus + label {
    color: #81C784 !important;
}

#loginPage .version {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 8px;
}

#loginPage input:focus {
    border-bottom: 1px solid #81EE79 !important;
    background-color: #0C1A32 !important;
}

.green-text {
    color: #81EE79 !important;
}

.settingsRow {
    margin-top: 16px;
    border-top: 1px solid #424242;
}

.settingsRow .col:not(.input-field) {
    padding: 16px 0;
}

.settingsRow .col.input-field {
    margin: 0;
}

.settingsRow .col.input-field input {
    text-align: center;
}

body {
    -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
    -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color: #0C1A32;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    color: #FFF;
    /* Padding to avoid the "unsafe" areas behind notches in the screen */
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    text-transform: uppercase;
    width: 100%;
}

h1 {
    font-size: 24px;
    font-weight: normal;
    margin: 0px;
    overflow: visible;
    padding: 0px;
    text-align: center;
}

@keyframes fade {
    from {
        opacity: 1.0;
    }
    50% {
        opacity: 0.4;
    }
    to {
        opacity: 1.0;
    }
}

.btn, .btn-large, .btn-small {
    background-color: #81EE79;
    color: #000000;
    border-radius: 16px;

}

.btn:hover, .btn-large:hover, .btn-small:hover {
    background-color: #56a150;
}

.btn[disabled] {
    background-color: #81C784 !important;
    color: #000 !important;
    opacity: 0.3;
}

#loginPage {
    text-transform: none;
}

#loginPage .btn {
    width: 240px;
}

.blink {
    animation: fade 3000ms infinite;
    -webkit-animation: fade 3000ms infinite;
}

#loginPage .registerBtn {
    color: #81EE79;
    margin-top: 48px;
    display: inline-block;
    text-decoration: underline;
    font-size: 16px;
}

#loginPage .btn {
    font-weight: bold;
    font-size: 18px;
}

#loginPage #loginBtn {
    margin-top: 48px;
    text-transform: none;
}

#loginPage #loginBtn i {
    position: absolute;
    left: 16px;
}

#loginPage input {
    color: #FFF;
}

#loginPage .input-field {
    margin-top: 24px;
}

#loginPage .bottomLinks {
    font-size: 14px;
    color: #FFF;
}

[type="checkbox"]:checked + span:not(.lever):before {
    border-right: 2px solid #81EE79;
    border-bottom: 2px solid #81EE79;
}

#loginPage .input-field i {
    position: absolute;
    top: 12px;
    left: 16px;
}

#loginPage .agree-field a {
    color: #F1F1F1;
    text-decoration: underline;
}

.input-field.col label {
    text-align: center;
    width: 160px;
    left: calc(50% - 80px);
    transform-origin: center 0;
}

.input-field > input[type]:-webkit-autofill:not(.browser-default):not([type="search"]) + label,
.input-field > input[type=date]:not(.browser-default) + label,
.input-field > input[type=time]:not(.browser-default) + label,
.input-field > label:not(.label-icon).active {
    transform: translateY(-14px) scale(0.8);
    transform-origin: center 0;
}

#loginPage .input-field input {
    padding-left: 40px;
    width: calc(100% - 40px);
}

#loginPage p {
    line-height: 25px;
}

#loginPage label {
    color: #FFF;
    text-align: center;
}

#loginPage .bottomLinks a {
    color: #FFF;
    text-decoration: underline;
}

.input-field .prefix.active {
    color: #81EE79;
}

input:focus + label {
    color: #81EE79;
}

input {
    color: #FFF !important;
}


[type="checkbox"].filled-in:checked + span:not(.lever):after {
    border-color: #81C784;
    background-color: #81C784;
}

#loginPage {
    display: flex;
    align-items: center;
}

#loginPage .card-panel {
    margin-top: 80px;
    background: transparent;
}

#loginPage #googleLogin {
    padding-left: 68px;
    color: #81EE79;
    background-color: transparent;
    font-weight: 400;
    text-transform: none;
    margin-top: 36px;
    font-size: 16px;
    padding-right: 16px;
    border: 1px solid #81EE79;
}

#loginPage #googleLogin i {
    width: 52px;
    height: 52px;
    background-image: url('../img/google-icon.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    background-color: transparent;
    position: absolute;
    top: 0px;
    left: 0px;
}

#loginPage #appleLogin {
    padding-left: 68px;
    color: #fff;
    background-color: transparent;
    font-weight: 400;
    text-transform: none;
    margin-top: 36px;
    font-size: 16px;
    padding-right: 16px;
    border: 1px solid #fff;
}

#loginPage #appleLogin i {
    width: 52px;
    height: 52px;
    background-image: url('../img/apple-icon.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    background-color: transparent;
    position: absolute;
    top: 0px;
    left: 0px;
}

#profileModal .switch > div {
    width: 130px;
    display: inline-block;
}

#profileModal .switch2 > div {
    width: 130px;
    display: inline-block;
}

#profileModal #brokerFeePercent {
    width: 70px;
    margin-bottom: 0;
    height: 28px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background: #20304C;
}

#profileModal #brokerFeePercent:focus {
    box-shadow: none;
    border: 1px solid #F1F1F1;
}

#profileModal #unlockVipWrap {
    display: none;
}

#profileModal #unlockSend {
    height: 28px;
    margin-top: -5px;
    background: transparent;
    box-shadow: none;
}

#profileModal #unlockSend i {
    color: #81EE79;
}

#profileModal #unlockInput {
    width: 100px;
    margin-bottom: 0;
    height: 28px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background: #20304C;
}

#subscribe {
    position: absolute;
    top: 40px;
}

.pushWrap {
    position: relative;
}

#profileModal .pushWrap.disabled > div,
#profileModal .emailWrap.disabled > div,
#profileModal .pushWrap.disabled > label,
#profileModal .emailWrap.disabled > label {
    opacity: 0.5;
}

#profileModal .links {
    margin-bottom: 16px;
}

#profileModal .links a {
    color: #FFF;
}

#indexPage #coinList {
    padding: 8px 0;
}

#indexPage .btn-floating {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#indexPage .btn-floating i {
    color: #0C1A32;
    font-weight: bold;
}

.plus-icon {
    background-image: url("../img/icon-plus.svg");
    background-size: 100%;
    background-color: transparent;
    width: 18px;
    height: 18px;
}

.toast {
    text-transform: none;
}

#subscribeText .price {
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 16px;
    text-align: center;
}

.header {
    position: fixed;
    background: #0C1A32;
    height: 64px;
    width: 100%;
    top: 0;
    z-index: 10;
    text-transform: none;
}

.header .user-profile {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 8px;
    top: 8px;
}

.header span {
    line-height: 1.2;
    font-size: 11px;
    display: inline-block;
    margin-top: 2px;
}

.header .user-profile i {
    font-size: 40px;
    color: #FFF;
}

.header .cbbi {
    position: absolute;
    top: 40px;
    font-size: 14px;
}

.header .cbbi .cbbiTitle a {
    color: #F1F1F1;
    text-decoration: underline;
}

.header .cbbi .cbbiIndex {
    color: #81EE79;
}

.logoWrap {
    padding: 12px;
    width: 100%;
}

.logo {
    background-image: url('../img/logo.png');
    width: 97px;
    height: 32px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    float: left;
    margin-bottom: 10px;
    margin-right: 16px;
    margin-top: 2px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.modal h4 {
    font-size: 28px;
}

.modal .buttons {
    margin-top: 48px;
}

.modal .buttons a {
    width: 100px;
    border-radius: 12px;
}

.modal .buttons a.grey {
    background-color: transparent !important;
    border: 1px solid #81EE79;
    color: #81EE79;
}

#profileModal {
    padding-bottom: 10px;
    background-color: #0C1A32;
    text-transform: none;
    max-height: none;
}

#profileModal .userProfileImage {
    float: left;
    margin-right: 8px;
}

#profileModal .userProfileImage i {
    font-size: 48px;
}

#profileModal .userLogout {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 11px;
}

#profileModal h5 {
    margin: 0;
    color: #81C784;
    padding-top: 7px;
    text-transform: none;
    font-size: 16px;
}

#profileModal p#userUsername {
    margin: 0;
    display: none;
}

#profileModal.open {
    padding-bottom: 0;
}

#profileModal p#userEmail {
    margin: 0;
    font-style: italic;
    color: #aaa;
}

#profileModal .switch.links {
    font-size: 12px;
}

#profileModal.modal .modal-content {
    padding-top: 40px;
    padding-bottom: 12px;
}

#profileModal .switch {
    margin-top: 16px;
    border-top: 1px solid #424242;
    padding-top: 16px;
}

#profileModal .switch2 {
    margin-top: 16px;
    border-top: 1px solid #424242;
    padding-top: 16px;
}

[type="checkbox"].filled-in:checked + span:not(.lever):after {
    border: 2px solid #81C784;
    background-color: #81C784;
}

.switch label input[type=checkbox]:checked + .lever:after {
    background-color: #81C784;
}

.switch label input[type=checkbox]:checked + .lever {
    background-color: #a3e3a6;
}

.switch label {
    top: -2px;
    cursor: pointer;
    position: relative;
}

#indexPage #fingerprint {
    position: absolute;
    top: 64px;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    background: #0C1A32;
    flex-direction: column;
}

#indexPage #noConnection {
    position: absolute;
    top: 64px;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    background: #0C1A32;
    flex-direction: column;
}

#indexPage #noConnection .icon {
    background-image: url('../img/noConnection.svg');
    background-size: 100%;
    width: 96px;
    height: 96px;
    opacity: 0.6;

}

#indexPage #fingerprint .fingerprintIcon {
    background: url("../img/fingerprint.svg");
    width: 96px;
    height: 96px;
    margin-bottom: 8px;
}

#indexPage #fingerprint .fingerprintIcon path {
    fill: #FFF;
    stroke: #FFF;
}

#indexPage p.no-coins {
    text-transform: none;
}

#indexPage label {
    color: #fff;
}

#indexPage .allCoins {
    padding: 8px 32px;
    text-align: center;
    top: 72px;
    position: relative;
}

#indexPage #coinList {
    position: relative;
    top: 72px;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

#indexPage .allCoins #allCoinsInput {
    background-color: #20304C;
    height: 56px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: bold;
    line-height: 56px;
    text-align: center;
    color: #FFF;
    overflow: hidden;
    position: relative;
}

#indexPage .allCoinsProgress #summary {
    transition: height .2s ease-out;
    overflow: hidden;
    height: auto;
}

#indexPage .allCoinsProgress {
    border: 1px solid #20304C;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

#indexPage .allCoinsProgress table {
    font-size: 14px;
}

#indexPage .allCoinsProgress table td {
    height: 58px;
    line-height: 36px;
    text-align: center;
    border-bottom: 1px solid #20304C;
    position: relative;
    padding: 12px 8px 8px 8px;
}

#indexPage .allCoinsProgress table td.price {
    color: #81EE79;
}

#indexPage .allCoinsProgress table tr:last-child td {
    border-bottom: none;
}

#indexPage .allCoinsProgress table td span {
    padding-left: 36px;
    font-weight: bold;
}

#indexPage .allCoinsProgress table td:nth-child(2) {
    color: #81EE79;
}

#indexPage .allCoinsProgress table img.circle {
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
}

#indexPage .allCoins #allCoinsInput .barFull {
    position: absolute;
    height: 100%;
    background: #118C4F;
    width: 0%;
    top: 0;
    z-index: 0;
    transition: width .5s ease-out;
}

.delete-icon {
    background-image: url("../img/icon-delete.svg");
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
}

.delete-icon-red {
    background-image: url("../img/icon-delete-red.svg");
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
}

.edit-icon {
    background-image: url("../img/icon-edit.svg");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

#indexPage .allCoins #allCoinsInput .value {
    z-index: 1;
    position: relative;
}

#indexPage .labels, #addPage .labels {
    font-size: 10px !important;
    text-transform: lowercase;
    text-align: left;
    margin-bottom: 4px;
}

span.openEditAmount {
    text-decoration: underline;
}

#addPage .labels {
    text-align: center;
}

#addPage .openEditAmount {
    font-size: 14px;
}

#addPage i.openEditAmount {
    font-size: 16px;
    padding: 4px;
    position: relative;
    top: 3px;
}

#indexPage .labels .col:last-child {
    padding-left: 0px;
}

#indexPage .labels .col:first-child {
    padding-left: 64px;
}

#indexPage .collection {
    border: none;
    padding-bottom: 72px;

}

#indexPage .collection li {
    position: relative;
    padding: 0 8px;
}

#indexPage .collection .collection-item {
    background: #20304C;
    border-radius: 16px;
    border: none;
    margin-bottom: 8px;
    padding: 8px;
    position: relative;
    z-index: 2;
}

#indexPage .seperator {
    height: 40px;
    width: 146px;
    background: #192740;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: bold;
    padding-left: 16px;
    line-height: 40px;
}

#indexPage .collection .completed .collection-item {
    background: #192740;
}

#indexPage .collection .delete{
    position: absolute;
    right: -96px;
    top: 0;
    bottom: 1px;
    height: 100%;
    border: 1px solid #20304C;
    z-index: 1;
    width: 96px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 16px;
}
#addPage .delete {
    position: absolute;
    right: -96px;
    top: 0;
    bottom: 1px;
    height: 100%;
    z-index: 1;
    width: 96px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
#addPage .editWrap .delete .btn span{
    line-height: 1;
    text-transform: none;
    display: block;
    padding-top: 3px;
    color: #E23E3E;
}
#addPage .editWrap .delete i{
    color: #FFF;
    width: 24px;
    height: 24px;
}
#addPage .editWrap{
    position: relative;
}
#indexPage .collection .delete .btn, #addPage .delete .btn {
    font-size: 12px;
    font-weight: bold;
    width: 100%;
    height: 50%;
    color: #FFF;
    padding: 0 8px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#indexPage .collection .delete .btn span {
    line-height: 1;
    text-transform: none;
    display: block;
    padding-top: 3px;
}

#indexPage .collection .delete i {
    color: #FFF;
    width: 24px;
    height: 24px;
}

#indexPage .collection .delete .deleteButton {
    color: #E23E3E;
    border-bottom: 1px solid #20304C;
}

#indexPage .collection .delete .deleteButton i path {
    color: #E23E3E;
    fill: #E23E3E;
}

#indexPage .collection .delete .editButton {
    color: #81EE79;
}

#indexPage .collection .delete .editButton i {
    color: #81EE79;
}

.delete-icon-red {
    background-image: url("../img/icon-delete-red.svg");
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
}

.edit-icon-green {
    background-image: url("../img/icon-edit-green.svg");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

#indexPage .collection .collection-item .exitData .col {
    padding-left: 4px;
}

#indexPage .collection .collection-item .exitData .col:first-child {
    padding-left: 0;
}

#indexPage .collection .collection-item .exitData .col:last-child {
    padding-left: 8px;
}

#indexPage .collection .collection-item .col {
    padding: 0;
}

.row.exitData .col:nth-child(1), .row.labelsCustom .col:nth-child(1) {
    width: 40%;
}

.row.exitData .col:nth-child(2), .row.labelsCustom .col:nth-child(2) {
    width: 30%;
}

.row.exitData .col:nth-child(3), .row.labelsCustom .col:nth-child(3) {
    padding-left: 8px;
    width: 30%;
}

#indexPage .collection .collection-item img {
    float: left;
    width: 36px;
    height: 36px;
    margin-right: 8px;
}

#indexPage .collection .collection-item p {
    font-size: 13px;
    font-weight: bold;
    margin: 0;
    line-height: 18px;
}

#indexPage .collection .collection-item p.big {
    font-size: 18px;
    padding-top: 4px;
}

#indexPage .collection .collection-item small {
    font-size: 12px;
    font-weight: 500;
}

#indexPage .collection .collection-item .detailsBar {
    height: 128px;
    position: relative;
    margin-left: -8px;
    margin-right: -8px;
    text-align: center;
}

#indexPage .collection .collection-item .detailsBar p {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 2px;
}

#indexPage .collection .collection-item .detailsBar small {
    font-size: 11px;
    font-weight: normal;
    text-transform: none;
}

#indexPage .collection .collection-item .detailsBar small .green-text {
    padding-right: 8px;
}

#indexPage .collection .collection-item .detailsBar small .green-text:last-child {
    padding-right: 0;
}

#indexPage .collection .collection-item .detailsBar .exitPointProgress {
    font-size: 18px;
    font-weight: bold;
    margin-top: 16px;
}

#indexPage .collection .collection-item .detailsBar .bar {
    height: 6px;
    width: calc(80% - 32px);
    background: #000;
    border-radius: 3px;
    margin-top: 3px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

#indexPage .collection .collection-item .detailsBar .barFull {
    height: 6px;
    background: #81EE79;
}

#indexPage .collection .collection-item .details .row:not(.labels) {
    background-color: #0C1A32;
    padding: 8px 0;
    height: 36px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
}

#indexPage .collection li.completed .collection-item .details .row:not(.labels) {
    background-color: #253923;
}

#indexPage .collection .collection-item .details .row:last-child {
    margin-bottom: 18px;
}

#indexPage .collection .collection-item .details .labels {
    text-align: left;
    margin-top: 8px;
}

#indexPage .collection .collection-item .details .row.current {
    background-color: #000000;
    color: #FFF;
}

#indexPage .collection .collection-item .details .row.completed {
    color: #81C784;
}

#indexPage .collection .collection-item .details .row.completed.missed {
    color: rgba(255, 255, 255, 0.5);
}

#indexPage .collection .collection-item .details .row .col:first-child {
    padding-left: 10px;
}

#indexPage .collection .collection-item .details .circle {
    width: 20px;
    height: 20px;
    float: left;
    align-items: center;
    background: #81EE79;
    margin-top: 0;
    margin-left: 0;
    text-align: center;
    border: 1px solid #666666;
}

#indexPage .collection .collection-item .details .circle.complete {
    opacity: 0.3;
}

#indexPage .collection .collection-item .details .row.current .circle {
    background-color: transparent;
    border: 2px solid #81EE79;
}

#indexPage .collection .collection-item .details .row.current .circle i {
    color: #666666;
}

#indexPage .collection .collection-item .details .circle i {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    line-height: 20px;
}

#indexPage .collection .collection-item .details .circle.hidden {
    background-color: transparent;
    border: 2px solid #81EE79;
}

#indexPage .collection .collection-item .details .circle.hidden {
    background-color: transparent;
    border: 2px solid #666666;
}

#indexPage .collection .collection-item .details .circle.hidden i {
    color: #666666;
}

#indexPage .collection .collection-item .details .circle.missed {
    background-color: #FFF;
    border: 1px solid #666666;
    color: #000;
    font-size: 18px;
    line-height: 20px;
}

#indexPage .collection .collection-item .exitData .bar {
    height: 4px;
    width: calc(100% - 8px);
    background: #000;
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

#indexPage .collection .collection-item .exitData .barFull {
    height: 4px;
    background: #81EE79;
}

#indexPage .collection .collection-item .exitPoints .circle {
    width: 16px;
    height: 16px;
    float: left;
    margin-right: 4px;
    align-items: center;
    background: #81EE79;
    margin-top: 2px;
}

#indexPage .collection .collection-item .exitPoints .circle.complete {
    opacity: 0.5;
}

#indexPage .collection .collection-item .exitPoints .circle i {
    font-size: 14px;
    color: #000;
    margin-top: 1px;
}

#indexPage .collection .collection-item .exitPoints .circle.hidden {
    opacity: 1;
    background-color: transparent;
    border: 2px solid #FFF;
}

#indexPage .collection .collection-item .exitPoints {
    margin-bottom: 0;
}

#indexPage .collection .collection-item .exitPoints .col {
    opacity: 0.6;
    width: 16.66% !important;
}

#indexPage .collection .collection-item .exitPoints .col.current {
    opacity: 1;
}

#indexPage .collection .collection-item .exitPoints .col.missed {
    opacity: 1;
}

#indexPage .collection .collection-item .exitPoints .col .missed {
    background: #FFF;
    text-align: center;
    color: #000;
    line-height: 18px;
}

#indexPage .collection .collection-item .details {
    transition: height .2s ease;
    height: auto;
    overflow: hidden;
}

#indexPage .collection .collection-item .actions {
    margin-top: 4px;
    overflow: hidden;
    line-height: 24px;
    font-size: 11px;
    transition: height .2s ease;
    height: auto;
    display: flex;
    justify-content: space-between;
}

#indexPage .collection .collection-item .editNotes {
    color: #FFF;
    text-transform: none;
}
#indexPage .collection .collection-item .actions i {
    background-color: #0C1A32;
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    text-align: center;
    margin-right: 8px;
    margin-top: 12px;
    float: left;
}
#indexPage .collection .collection-item .actions a{
}

#indexPage .vip {
    position: absolute;
    top: 5px;
    left: -30px;
    font-size: 11px;
    border-radius: 8px;
    color: #000000;
    padding: 2px 5px;
    background-image: url('../img/VIP.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 25px;
    height: 28px;
    display: none;
}

#indexPage .vip.active {
    display: block;
}

#indexPage .collection .collection-item .editExitCoin {
    float: right;
    color: #FFF;
    text-transform: none;
}

#indexPage .collection .collection-item .actions a span {
    top: 12px;
    position: relative;
}

#indexPage .collection .collection-item .deleteExitCoin {
    color: #FFF;
    text-transform: none;
}

.material-tooltip {
    background: #0C1A32;
    line-height: 16px;
    padding-top: 8px;
    padding-bottom: 5px;
    min-height: 26px;
    border: 2px solid #ccc;
    border-radius: 10px;
}
.removeEp{
    position: absolute;
    right: -4px;
    top: 0px;
    padding: 4px;
}
.removeEp i{
    font-size: 16px;
}

#addPage {

}

#addPage h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
    margin-top: 32px;
}

#addPage h4 {
    font-size: 14px;
    text-align: center;
    text-transform: lowercase;
    margin-top: 16px;
    margin-bottom: 32px;
}

#addPage h5 {
    margin-top: 0px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 12px;
}

#addPage .mainWrap {
    padding-top: 64px;
    height: calc(100% - 64px);
}

#addPage #search {
    position: fixed;
    height: 130px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 25%, rgba(255, 255, 255, 0) 100%);
}

#addPage #search i {
    color: #81C784;
    font-size: 42px;
    position: relative;
    top: 50px;
}

#addPage .mainWrap > div {
    overflow: hidden;
}

#addPage .collection {
    border: none;
    padding: 0 8px;
}

#addPage .collection-item {
    background-color: transparent;
    border: 1px dashed #20304C;
    border-radius: 16px;
    margin-bottom: 8px;
    padding: 16px 8px;
    font-size: 14px;
}

#addPage .coinData {
    margin-bottom: 0;
}

#addPage .exitsPercent {

    text-transform: none;
}

#addPage .exitsPercent .small {
    margin-left: 50px;
    color: rgba(255, 255, 255, 0.35);
}

#addPage .coinData.flex .col {
    display: flex;
    align-items: center;
    padding: 0 4px;
}

#addPage .coinData.flex .col a {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    line-height: 46px;
    background-color: transparent;
    border: 2px solid #81C784;
    color: #81C784;
    text-align: center;
    padding: 0;
}

#addPage #step2 {
    padding: 8px;
}

#addPage #step2 .range-field {
    padding: 0 20px;
}

#addPage .addCoinWrap {
    border-radius: 16px;
    position: relative;
}

#addPage .addCoinWrap > div {
    text-align: center;
    padding: 4px 16px;

}

#addPage .addCoinWrap p {
    text-transform: unset;
}

#addPage .addCoinWrap .exitPointsForm {
    border-bottom: 1px dashed #20304C;
}

#addPage .addCoinWrap > div:last-child, #addPage .addCoinWrap > div:first-child {
    border-bottom: none;
}

#addPage .addCoinWrap > div.top {
    padding-top: 30px;
    padding-bottom: 16px;
}

#addPage .addCoinWrap > div input[type=text], #addPage .addCoinWrap > div input[type=tel], #addPage #step2 .addCoinWrap > div input[type=number] {
    border: none;
    border-radius: 16px;
    background: #20304C;
    height: 48px;
    max-width: 240px;
    text-align: center !important;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.exitPointPrice.sold, .exitPointPercent.sold {
    opacity: 0.4;
    color: #81EE79 !important;
}

#addPage .addCoinWrap > div input[type=text]:focus, #addPage .addCoinWrap > div input[type=tel]:focus, #addPage .addCoinWrap > div input[type=number]:focus,
#editAmountModal input[type=tel]:focus {
    box-shadow: none;
}

#addPage .addCoinWrap .exitsCount p {
    margin-top: 16px;
    margin-bottom: 4px;
    text-transform: none;
}

#addPage .addCoinWrap > div a, #finishBtn, #updateBtn {
    display: block;
    max-width: 240px;
    margin: 16px auto;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}
#finishBtn.clicked, #updateBtn.clicked{
    pointer-events: none;
}
#notesText{
    text-align: initial;
}
#addPage .addCoinWrap > div.coinSymbol {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
}

#addPage .addCoinWrap .divider {
    width: 64px;
    height: 0px;
    display: inline-block;
}

#addPage .addCoinWrap .top .top-text {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

#addPage .addCoinWrap .top-text.green-text span:not(.divider) {
    width: 120px;
    display: inline-block;
}

#addPage .addCoinWrap .top-text.green-text span:nth-child(3) {
    text-align: left;
    width: 90px;
    display: inline-block;
}

#addPage .addCoinWrap .top-text.green-text span:nth-child(1) {
    width: 90px;
    display: inline-block;
    color: #FFF;
    text-align: right;
}
#addPage .addCoinWrap .athPrice{
    font-size: 12px;
}
#addPage #step3 {
    padding: 0 16px;
}

#addPage #step3 .inputWrap input {
    text-align: center !important;
    border: 1px solid transparent;
    opacity: 0.8;
    position: relative;
}

#addPage #step3 input:focus {
    border: 1px solid #433F3F;
    opacity: 1;
}

#addPage #step3 input::-webkit-input-placeholder,
#addPage #step3 input::placeholder { /* Chrome/Opera/Safari */
    text-align: center;
    font-size: 14px;
    color: #C8C8C8;
    opacity: 0.6;
    font-weight: normal;
}

#addPage #step3 .exitsPercent {
    font-size: 20px;
    font-weight: bold;
    margin-top: 32px;
}

#addPage #step3 .exitsSlider {
    margin-bottom: 16px;
}

#addPage #step3 .bar {
    background: rgba(255, 255, 255, 0.3);
    height: 6px;
    border-radius: 3px;
}

#addPage #step3 .barFull {
    background: #81C784;
    height: 6px;
    width: 0;
    transition: width .3s ease;
}

#addPage #step3 .exitsInputWrap {
    position: relative;
    height: 48px;
    border-radius: 16px;
    border: 1px solid #20304C;
    overflow: hidden;
    max-width: 200px;
    margin: 4px auto 16px auto;
}

#addPage #step3 .exitsInputWrap .decrease, #addPage #step3 .exitsInputWrap .increase {
    width: 48px;
    height: 48px;
    background: #20304C;
    font-size: 32px;
    color: #81C784;
    line-height: 46px;
}

#addPage #step3 .exitsInputWrap .decrease {
    float: left;
}

#addPage #step3 .exitsInputWrap .increase {
    float: right;
}

#addPage #step3 .exitsInputWrap input {
    border: none;
    width: calc(100% - 96px);
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 0;
    background: transparent;
    height: 48px;
}

#addPage #step3 .exitPointsForm {
    padding: 0;
}

#addPage #step3 .exitPointsForm .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px dashed #20304C;
    margin: 0;
    padding: 16px 0;
}

#addPage #step3 .exitPointsForm .row.labels {
    padding: 0 0 4px 0;
    border-top: none;
}

#addPage #step3 .exitPointsForm .row:last-child {
    border-bottom: none;
}

#addPage #step3 .exitPointsForm .row .col:last-child {
    padding-left: 0;
}

#addPage #step3 .exitPointsForm .row .col:nth-child(2) {
    padding-left: 0;
}

#addPage #step3 .alert-slider p {
    color: #81EE79;
    text-align: center;
    font-weight: 500;
}

#addPage #step3 .alert-slider p.range-field {
    margin-bottom: 32px;
}

#addPage #step3 .alert-slider p span {
}

#addPage #step3 .alert-slider #percentBefore {
    display: inline;
    background: #20304C;
    border-radius: 4px;
    padding: 4px;
    color: #FFF;
    opacity: 0.8;
    margin: 0 8px;
    width: 32px;
    height: 16px;
    font-size: 12px;
    border: none;
    text-align: center;
}

#addPage #step3 .alert-slider #percentBeforeInput {
    background-size: 11.7647% 100%;
    margin: 0 24px;
    width: calc(100% - 96px);
}

#avatar img {
    height: 100%;
    border-radius: 50%;
}

#addPage .cancelBtn {
    text-align: center;
    color: #ccc;
    margin-top: 12px;
    position: relative;
    display: inline-block;
}
#addPage .inputWrap{
    position: relative;
}
#sellModal input[type=text] {
    border: none;
    border-radius: 16px;
    background: transparent;
    height: 32px;
    max-width: 240px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 24px;
}

#sellModal input[type=tel], #editAmountModal input[type=tel] {
    border: none;
    border-radius: 16px;
    background: #20304C;
    height: 48px;
    max-width: 240px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
}

#sellModal .buttons {
    margin: 0 auto;
    padding: 0;
    width: 240px;
    display: flex;
    justify-content: space-between;
}

#searchWrap {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: #0C1A32;
    display: none;
    text-align: center;
}

#searchWrap input {
    border: none;
    border-radius: 16px;
    background: #20304C;
    height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    width: calc(100% - 32px);
    margin: 16px;
}

#searchWrap input:focus {
    border-bottom: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.test{
    background: #81EE79;
    color: #000;
    padding: 0 8px;
    display: none;
    text-align: center;
    border-radius: 4px;
    max-width: 100px;
    font-size: 11px;
}
.test.active{
     display: inline-block;
 }
#indexPage p.ath{
    font-size: 9px !important;
    font-weight: 500 !important;
    color: #2ab8e6;
    padding-bottom: 2px;
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    body{
        max-width: 440px;
        margin: 0 auto;
        background-image: url("../img/ozadjeweb.png");
        background-size: contain;
        background-attachment: fixed;
    }
    .header{
        max-width: 440px;
    }
    #loginPage{
        position: relative;
    }
    #indexPage #coinList{
        overflow-y: auto;
    }
    #indexPage .collection{
        padding-bottom: 0;
    }
    .modal:not(.bottom-sheet){
        max-width: 440px;
    }
    #profileModal .modal-content{
        max-width: 440px;
        margin: 0 auto;
    }
}