.transc-list {
    background-color: #f6f7fc;
    margin-bottom: 10px;
    font-size: 11px;
    padding: 0 10px;
}

.transc-list .row {
  border-bottom: 10px solid #fff;
  padding-bottom: 10px;
  background-color: #f6f7fc;
}

.transc-list p {
    margin: 0;
    padding: 0;
    color: #000;
    line-height: 20px;
}

.transc-list .benefic {
  border-right: 1px solid #d2d2d2;
}

.transc-list .benefic p {
    display: flex;
    font-weight: 600;
	word-break: break-all;
}

.transc-list .benefic p span {
    min-width: 100px;
    font-weight: 100;
	display:inline-block;
	position: relative;
	white-space: nowrap;
	padding-right:10px;
}
.transc-list .benefic p span:after {
	content:":";
	position: absolute;
	top:0;
	right:3px;
	display: inline-block;
	font-weight: bold;
}

.transc-list .reportlink:hover {
    color: #c70000;
}

.transc-list .reportlink img {
    margin-left: 3px;
    width: 17px;
    margin-top: -3px;
}

.transc-list .txn-details {
	word-break: break-all;
}
.transc-list .cnumber {
    margin-bottom: 35px;
}

.transc-list .cnumber span {
    color: #c70000;
    font-weight: 100;
    float: right;
    font-size: 20px;
}

.refresh_wallet {
    margin-left: 5px;
    background-color: #168db9;
    padding: 3px;
    border-radius: 100px;
}

.refresh_wallet:hover {
    background-color: #005597;
}

.refresh_wallet img {
    width: 15px;
    height: 15px;
    margin-top: -3px;
}

#loader {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #fff;
    z-index: 90000;
    background: rgba(255, 255, 255, 0.5) !important
}

#subloader {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 50;
}

#subloader.fadeOut,
#loader.fadeOut {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

span#ccMask {
    display: none;
}

.shell {
    position: relative;
    line-height: 1;
}

.shell span {
    position: absolute;
    left: 3px;
    top: 1px;
    color: #ccc;
    pointer-events: none;
    z-index: -1;
}

.shell span i {
    font-style: normal;
    /* any of these 3 will work */
    color: transparent;
    opacity: 0;
    visibility: hidden;
}

input.masked,
.shell span {
    font-size: 16px;
    font-family: monospace;
    padding-right: 10px;
    background-color: transparent;
    text-transform: uppercase;
}

:root {
    --white: #e8e9ed;
    --gray: #434257;
    --blue: #18172c;
    --green: #00d084;
    --pink: #ff4b77;
}

.switches [type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.switches {
    max-width: 500px;
    padding-left: 0;
    margin-left: 0;
}

.switches li {
    position: relative;
}


.switches label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.switches span:last-child {
    width: 50px;
    height: 26px;
}

.switches .cvv__toggle span:last-child {
    position: relative;
    width: 50px;
    height: 26px;
    border-radius: 15px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
    background: var(--gray);
    transition: all 0.3s;
}

.switches .cvv__toggle span:last-child::before,
.switches .cvv__toggle span:last-child::after {
    content: "";
    position: absolute;
}

.switches .cvv__toggle span:last-child::before {
    left: 1px;
    top: 1px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s;
}

.switches .cvv__toggle span:last-child::after {
    top: 50%;
    right: 8px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/uncheck-switcher.svg);
    background-size: 12px 12px;
}

.switches [type="checkbox"]:checked+label span:last-child {
    background: var(--green);
}

.switches [type="checkbox"]:checked+label span:last-child::before {
    transform: translateX(24px);
}

.switches [type="checkbox"]:checked+label span:last-child::after {
    width: 14px;
    height: 14px;
    /*right: auto;*/
    left: 8px;
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/checkmark-switcher.svg);
    background-size: 14px 14px;
}

@media only screen and (max-width: 768px) {
    .table-user tr {
        display: grid;
        margin-bottom: 15px;
    }

    .table-user td {
        margin-bottom: 0;
        border-bottom: none;
    }

    .transc-list .benefic {
      border: none;
	  border-bottom: 1px solid #d6d8e2;
		padding-bottom: 10px;
		margin-bottom: 10px;
    }

    .transc-list .cnumber {
      margin-bottom: 10px;
    }
    .transc-list .row {
      padding: 10px 0;
    }
    .transc-list .txn-details {
	  border-top: 1px solid #d6d8e2;
		padding-top: 10px;
    }
}


@media screen and (max-width: 600px) {
    .switches li::before {
        display: none;
    }
}