@import 'bootstrap-reboot.css';
@import 'bootstrap-grid.css';
@-webkit-keyframes tpcombg {
    0%{background-position:0% 60%}
    50%{background-position:100% 40%}
    100%{background-position:0% 60%}
}
@-moz-keyframes tpcombg {
    0%{background-position:0% 60%}
    50%{background-position:100% 40%}
    100%{background-position:0% 60%}
}
@keyframes tpcombg {
    0%{background-position:0% 60%}
    50%{background-position:100% 40%}
    100%{background-position:0% 60%}
}
:root {
    --color1: #8002d1;
    --color2: #006df1;
    --color3: #00b1e8;
    --color4: #00e8f4;
    --color5: #5b5b5f;
}
a,a:hover{
    color: #000;
    text-decoration: none;
}
body {
    background-color: #eeeff3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Montserrat', sans-serif;
    --webkit-font-smoothing: antialiased;
}
.tpcom-bg-animated{
    background: linear-gradient(230deg, #64e9f7, #4b99df, #673ab7, #4b99df, #64e9f7);
    background-size: 1000% 1000%;
    -webkit-animation: tpcombg 9s ease infinite;
    -moz-animation: tpcombg 9s ease infinite;
    animation: tpcombg 9s ease infinite;
}
.tpcom-bg{
    background: #8002d1;
    background: -moz-linear-gradient(45deg,  #8002d1 0%, #00e8f4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  #8002d1 0%,#00e8f4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  #8002d1 0%,#00e8f4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8002d1', endColorstr='#00e8f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.tpcom-bg-1{
    background: #8002d1; /* Old browsers */
    background: -moz-linear-gradient(left,  #8002d1 0%, #00e8f4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #8002d1 0%,#00e8f4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #8002d1 0%,#00e8f4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8002d1', endColorstr='#00e8f4',GradientType=1 ); /* IE6-9 */
}
/* common utils */
.text-center{text-align: center;}
.text-left{text-align: left;}
.text-right{text-align: right;}
.vertical-center{display: table;width: 100%;height: 100%;}
.vertical-center-elm{display: table-cell;vertical-align: middle;}
.h100 {min-height: 100vh;}
.w100 {min-width: 100%;}
.shadow-sm {box-shadow: 0 .25rem .75rem rgba(0,0,0,.2)!important;}
.shadow {box-shadow: 0 .5rem 1rem rgba(0,0,0,.2)!important;}
.bg-white {background-color: #fff!important;}
.public-form, .inter_form {
    transition: all .5s ease-in-out;
}
.not-found * {
    color: #fff;
}
.form-group {
    margin-bottom: 1rem;
    padding: 0 10px;
}
.form-group.half {
    width: 50%;
    float: left;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2.75em + 1px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 25px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    outline: none;
    -webkit-appearance: none;
}
.form-control:focus {
    border-color: #000;
}
.inter_form .form-control {
    background-color: rgba(0,0,0,.1);
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 34px;
    margin-right: 1em;
    margin-bottom: 0;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 14px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    height: 10px;
    overflow: inherit;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 0px;
    transform: translateX(0%);
    bottom: -7px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.4)!important;
    border-radius: 50%;
}
.switch input:checked + .slider {
  background-color: #4b99df;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #4b99df;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26);
}
.switch-text {
    color: #000;
    display: inline-block;
    position: relative;
    top: 6px;
}
/* app utils */
.sub-text-white {
    color: #fff;
    font-size: 1.15em;
    line-height: 1.2;
    font-weight: 700;
}
.btn{
    display: inline-block;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    background-color: #fff;
    color: #000;
    border: 1px solid transparent;
    box-sizing: border-box;
    word-wrap: break-word;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    position: relative;
    top: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    line-height: normal;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 1em;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 18px;
    padding-right: 18px;
    font-weight: 400;
    border-radius: 25px;
    outline: none;
    -webkit-appearance: none;
}
.btn:hover,.btn:focus{
    outline: none;
    color: #fff;
    background-color: var(--color3);
}
.btn-primary{
    background-color: var(--color2);
    color: #000;
}
.btn-primary:hover,.btn-primary:focus{
    color: #fff;
    background-color: var(--color1);
}
.btn-secondary{
    background-color: var(--color3);
    color: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
}
.btn-secondary:hover,.btn-secondary:focus{
    color: #fff;
    background-color: var(--color5);
}
.btn-tp {
    position: relative;
    overflow: hidden;
    border: none;
    /*background: #fff;
    background: -moz-linear-gradient(left, #00e8f4 0%, #006df1 100%);
    background: -webkit-linear-gradient(left, #00e8f4 0%, #006df1 100%);
    background: linear-gradient(to right, #00e8f4 0%, #006df1 100%);
    */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00e8f4+0,00c9e0+50,006df1+100 */
    background: #00e8f4; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #00e8f4 0%, #00c9e0 50%, #006df1 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #00e8f4 0%,#00c9e0 50%,#006df1 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #00e8f4 0%,#00c9e0 50%,#006df1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00e8f4', endColorstr='#006df1',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    color: #fff;
}
.btn-tp > .btn-tp-bg {
    /*background: #fff;
    background: -moz-linear-gradient(left, #006df1 0%, #00e8f4 100%);
    background: -webkit-linear-gradient(left, #006df1 0%,#00e8f4 100%);
    background: linear-gradient(to right, #006df1 0%,#00e8f4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006df1', endColorstr='#00e8f4',GradientType=1 );
    */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#006df1+0,00c9e0+50,00e8f4+100 */
    background: #006df1; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #006df1 0%, #00c9e0 50%, #00e8f4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #006df1 0%,#00c9e0 50%,#00e8f4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #006df1 0%,#00c9e0 50%,#00e8f4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006df1', endColorstr='#00e8f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all .5s ease-in-out
}
.btn-tp .btn-tp-text{
    position: relative;
    z-index: 2;
    color: #fff;
}
.btn-tp:hover .btn-tp-bg,.btn-tp:focus .btn-tp-bg{
    opacity: 0;
}
.btn-tp:hover .btn-tp-text,.btn-tp:focus .btn-tp-text{
    color: #000;
}
.fixed-copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 15px;
}
.form-style-1 .form-control {
    background-color: rgba(255, 255, 255, .5) !important;
    border-color: transparent;
}
.form-style-1 .form-control:focus {
    border-color: #fff;
}
.form-style-1 .form-control::-webkit-input-placeholder { /* Edge */
  color: rgba(0, 0, 0, 0.5);
}
.form-style-1 .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.5);
}
.form-style-1 .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-style-1 .switch-text {
    color: #fff;
}
.form-style-1 .form-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
    transition: all .2s ease-in-out;
}
.form-style-1 .form-links a:hover {
    color: #000;
}

/*INSIDE*/
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?we56k');
  src:  url('fonts/icomoon.eot?we56k#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?we56k') format('truetype'),
    url('fonts/icomoon.woff?we56k') format('woff'),
    url('fonts/icomoon.svg?we56k#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ICONO1:before {
  content: "\e900";
}
.icon-ICONO2:before {
  content: "\e901";
}
.icon-ICONO3:before {
  content: "\e902";
}
.icon-ICONO4:before {
  content: "\e903";
}
.icon-ICONO5:before {
  content: "\e904";
}
.icon-ICONO6:before {
  content: "\e905";
}

.navbar-top {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 80px;
    background: #000;
}
.top-logo-link {
    padding: 18px;
    display: block;
}

.navbar {
    position: relative;
    background: #fff;
    z-index: 0;
}
.navbar-x{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
  text-align: right;
  height: 80px;
}
ul.navbar-nav.nav-header {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0;
    padding-top: 10px;
    padding-right: 30px;
}
ul.navbar-nav.nav-header li.nav-item {
    padding: 0 15px;
    display: inherit;
    position: relative;
}
ul.navbar-nav.nav-header li.nav-item .btn,ul.navbar-nav.nav-header li.nav-item .nav-link{
    font-size: .9rem;
    display: block;
    color: #929293;
}
ul.navbar-nav.nav-header li.nav-item .btn-tp{
  color: #fff;
  font-size: .9rem;
}
.nav-link.notify-alert {
    font-size: 24px !important;
    position: relative;
    bottom: -5px;
}
.circle-profile {
    width: 50px;
    height: 50px;
    background: #cecece;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 15px;
    position: relative;
    bottom: -5px;
}
ul.navbar-nav.nav-header ul.nav-sub-menu {
    opacity: 0;
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    right: 0;
    top: 55px;
    transform: translateY(-200%);
    transition: opacity .3s ease, transform .6s ease-in-out;
}
li.nav-item.show-sub-menu.sub-menu-open ul.nav-sub-menu.shadow {
    opacity: 1;
    transform: translateY(0%);
}
li.nav-item.show-sub-menu a i {
    transition: transform .6s ease-in-out;
}
li.nav-item.show-sub-menu.sub-menu-open a i {
    transform: rotate(180deg);
}
li.nav-item.show-sub-menu {
    background: #fff;
    z-index: 10;
}
ul.navbar-nav.nav-header ul.nav-sub-menu li {
    padding: 0 0 10px 0;
    text-align: left;
}
.navbar-y {
    background: #171717;
    width: 80px;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1025;
    transition: all .4s ease-in-out;
}
ul.navbar-nav.nav-sidebar {
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    text-align: center;
    list-style: none;
}
ul.navbar-nav.nav-sidebar li.nav-item {
    height: 80px;
    line-height: 80px;
    transition: all .3s ease-in-out;
    position:relative;
    overflow: hidden;
}
ul.navbar-nav.nav-sidebar li.nav-item .nav-link {
    display: block;
    color: #fff;
    font-size: 2.2rem;
}
ul.navbar-nav.nav-sidebar li.nav-item.nav-active,
ul.navbar-nav.nav-sidebar li.nav-item:hover {
    background: #000;
}
ul.navbar-nav.nav-sidebar li.nav-item:after {
    content: "";
    display: block;
    background: #8002d1; /* Old browsers */
    background: -moz-linear-gradient(left,  #8002d1 0%, #00e8f4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #8002d1 0%,#00e8f4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #8002d1 0%,#00e8f4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8002d1', endColorstr='#00e8f4',GradientType=1 ); /* IE6-9 */
    width: 80%;
    height: 2px;
    position: absolute;
    top: 50%;
    right: -30%;
    transform: rotate(90deg) translate(0px, -35px);
    transform-origin: center;
    transition: all .7s ease-in-out;
    opacity: 0;
}
ul.navbar-nav.nav-sidebar li.nav-item.nav-active:after,
ul.navbar-nav.nav-sidebar li.nav-item:hover:after {
    opacity: 1;
    transform: rotate(90deg) translate(0px, 0px);
}

#tu-pago-content {
    margin-left: 80px;
    width: calc(100% - 80px);
    padding: 30px;
}
.tp-com-box-wrap {
    margin-bottom: 30px;
}
.tp-com-box {
    background: #fff;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    padding: 15px;
}
.tp-com-box-header {
    display: block;
    padding: 0 30px;
    line-height: 60px;
}
.tp-com-box-header h4 {
    margin: 0;
    font-weight: 500;
}
.tp-com-box-footer {
    display: block;
    padding: 0 30px;
    line-height: 60px;
}
.refers-counter {
    background: #eeeff3;
    width: 100px;
    padding: 10px 0 5px 0;
    margin: 30px auto;
    border-radius: 10px;
}
.refers-counter h5 {
    font-weight:400;
}
.refers-counter h3 {
    font-size: 1.5rem;
}
.refer-link {
    display: inline-block;
    margin-bottom: 15px;
    background: #eeeff3;
    padding: 10px 25px;
}
.help-link {
    display: block;
    margin-bottom: 15px;
}
.tp-com-widget .tp-com-box {
    padding: 0;
}
.tp-widget-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.tp-widget-list li {
    height: 80px;
    background: #eeeff3;
    padding: 10px 30px 0;
    transition: all .3s ease-in-out;
}
.tp-widget-list li:not(:last-child) .row {
  border-bottom: 1px solid #ccc;
}
.tp-widget-list li:hover {
    background-color: #ffffff;
}


.payment-state-circle {
    width: 25px;
    height: 25px;
    background: #607D8B;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
    color: #fff;
    font-size: 13px;
}
.payment-state {
    padding-top: 5px;
}
.payment-state-1 {
   background: #40bed8;
}
.payment-state-2 {
   background: #4CAF50;
}
.payment-state-3 {
   background: #FF9800;
}
.payment-state-4 {
   background: #E91E63;
}
/*

.payment-state-circle {
    width: 25px;
    height: 25px;
    background: #161616;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
    color: #fff;
    font-size: 13px;
}
.payment-state {
    padding-top: 5px;
}
.payment-state-1 {
   background: #40bed8;
}
.payment-state-2 {
   background: green;
}
.payment-state-3 {
   background: #E91E63;
}
*/
#coin1,#coin2 {pointer-events: none;}
.tp-widget-coin-rates .row {
  height: 70px;
}
.coin-code {
    padding: 10px;
}
.coin-code-circle {
    background: #161616;
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
    line-height: 40px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 15px;
}
.coin-rate-state {
    line-height: 50px;
}
.coin-rate-state.rate-down {
    color:red
}
.coin-rate-state.rate-up {
    color:green
}
.tp-blog-widget {
    padding: 0 30px 30px;
}
.tp-blog-widget .widget-blog-link {
    color: #3eb1e8;
}
.tp-howto-widget {
    padding: 5px;
}
.how-to {
    background: #eeeff3;
    padding: 5px;
    word-break: break-all;
}
.how-to .fa {
    font-size: 3em;
    display: block;
    text-align: center;
    padding: 15px;
}
.tp-widget-transfer-filter label {
    margin: 0;
    font-size: .8rem;
}
.tp-widget-transfer-filter .form-control {
    border: none;
    border-bottom: 1px solid;
    border-radius: 0px;
    height: calc(2em + 1px);
    padding: .375rem 0rem;
}
.tp-com-list-table-header-wrap {
    margin-bottom: 0;
}
.tp-com-list-table-header {
    padding: 15px;
}
.tp-com-list-table-body {
    padding: 0 15px;
    height: calc(100vh - 333px);
    overflow-y: scroll;
}
.tp-com-list-table-element {
    height: 80px;
    line-height: 80px;
    transition: all .3s ease-in-out;
    border-bottom: 1px solid transparent;
}
.tp-com-list-table-element:nth-child(even),
.tp-com-list-table-element:hover{
    background: #d9dade;
    border-color: #fff;
}
.from_value .fa-long-arrow-up {
    color: #40bed8;
    font-weight: 400;
    font-size: 14px;
    top: -3px;
    position: relative;
    margin-right: 6px;
}
.to_value .fa-long-arrow-down {
    color: #E91E63;
    font-weight: 400;
    font-size: 14px;
    top: 0px;
    position: relative;
    margin-right: 6px;
}

/* MODALS */
.tp-com-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1100;
}
.tp-con-modal-open{
  overflow: hidden;
}
/*.tp-con-modal-open .tp-com-modal {
    display: block;
} */
.overlay {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.tp-com-modal-content {
    position: relative;
    max-width: 50%;
    margin: auto;
    transition: all .3s ease-in-out;
    transform: translateY(-100%);
    margin-bottom: 70px;
}
.tp-com-modal-open .tp-com-modal-content {
    transform: translateY(0%);
}
.tp-com-modal-body {
    padding: 70px 40px 20px;
    position: relative;
    min-height: 400px;
    background: #eeeff3;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.tp-com-modal-header {
    top: 40px;
    position: relative;
    z-index: 10;
    padding: 15px;
}
.tp-com-modal-close {
    position: absolute;
    left: 20px;
    top: 15px;
    -webkit-appearance: none;
    border: 3px solid #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 35px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    outline: none !important;
    z-index: 10;
}
.sub-header-text-modal {
    font-size: .9rem;
    font-weight: normal;
    text-transform: capitalize;
}
/* TOASTY */
.tp-com-toasty {
    z-index: 2000;
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 350px;
    width: auto;
    opacity: 0.5;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-weight: 500;
    transition: all .5s ease-in-out;
    transform: translateX(200%);
}
.tp-com-toasty.toasty-open {
    transform: translateX(0);
    opacity: 1;
}
#payment-detail .tp-com-modal-content {
    width: 50%;
    margin: 0;
    left: 50%;
    transform: translateX(100%);
}
#payment-detail.tp-com-modal-open .tp-com-modal-content {
    transform: translateX(0%);
}
#payment-detail .tp-com-modal-header {
    top: 0;
    padding: 15px 60px;
}
#payment-detail .tp-com-modal-body {
    padding: 70px 45px 100px;
    top: -40px;
    height: calc(100vh);
    overflow-y: scroll;
}
.tp-com-info {
    padding: 20px;
}
.tp-com-info > h3 {
    color: #3eb1e8;
    font-weight: 500;
    font-size: 1rem;
}
ul.tp-com-info-list {
    list-style: none;
    padding: 0;
    clear: both;
    display: inline-block;
    width: 100%;
}
ul.tp-com-info-list li {
    margin-bottom: .1rem;
    display: inline-block;
    width: 100%;
}
ul.tp-com-info-list.list-half li span {
    width: 50%;
    float: left;
}
ul.tp-com-info-list.list-half li span:last-child {
    color: #8a8a8a;
}
.inter_form {
    padding: 0 15px;
    transition: all .4s ease-in-out;
}
.form_sending {
    opacity: .5;
    pointer-events: none;
}
.profile-content {
    background: #eeeff3;
    margin: -15px 0;
    position: relative;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px;
}
.profile-tab {
    display: none;
}
ul.profile-menu {
    padding: 0 0 15px;
    margin: 0;
    list-style: none;
}
ul.profile-menu li a {
    border-radius: 10px;
    padding: 15px;
    transition: all .3s ease;
    display: block;
}
ul.profile-menu li.tab-active a, ul.profile-menu li:hover a{
    background: #eeeff3;
    box-shadow: inset 0 0 0.35rem rgba(0,0,0,.2);
}
ul.profile-menu .fa {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
}
.transfer-name {
    text-transform: capitalize;
}
.beneficiary-bank-data {
    line-height: 1.3;
    padding-top: 16px;
}
.tp-widget-last-payments {
    background: #eeeff3;
    min-height: 320px;
}
.tp-widget-coin-rates{
    height: 320px;
    overflow:auto;
}
select#widgets-rates-selector:not(option) {
    float: right;
    -webkit-appearance: none;
    height: 30px;
    line-height: 30px;
    padding: 0 10px 0 10px;
    outline: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: #ccc;
    cursor: pointer;
    margin-top: 8px;
}
.internal_menu {
    text-align: right;
}
.share-box-section .tp-com-box {
    height: auto;
}
.btn-beneficiary-detail {
    line-height: 21px;
}
.delete-trigger {
    background: #E91E63;
}
/* Do transfer */
.tp-com-steps {
    margin: 1.2rem 0;
}
.tp-com-steps ul:before {content: "";display: block;width: 60%;height: 2px;background: #343434;position: absolute;z-index: 1;left: 20%;top: 55px;}
.tp-com-steps ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}
.tp-com-steps ul li {
    width: 20%;
    display: inline-block;
    text-align: center;
    position: relative;
}
.tp-com-steps ul li span {
    cursor: pointer;
    background: #dcdcdc;
    width: 45px;
    height: 45px;
    display: inline-block;
    line-height: 37px;
    color: #2f2f2f;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    border: 5px solid #fff;
    transition: all .3s ease-in-out;
}
.tp-com-steps ul li label {
    font-size: 14px;
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 100%;
}
.tp-com-steps ul li span.step_active,
.tp-com-steps ul li span:hover{
    background: #8002d1; /* Old browsers */
    background: -moz-linear-gradient(left,  #8002d1 0%, #00e8f4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #8002d1 0%,#00e8f4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #8002d1 0%,#00e8f4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8002d1', endColorstr='#00e8f4',GradientType=1 ); /* IE6-9 */
    color:#fff;
}
#make-transfer .tp-com-modal-content {
    max-width: 40%;
}
.step_wrap {
    display: none;
}
.make-transfer-beneficiary {
    width: 100%;
    display: block;
}
.make-transfer-beneficiary input {
    display: none;
}
.make-transfer-beneficiary label {
    border: 1px solid #ccc;
    border-radius: 15px;
    width: 100%;
    margin-bottom: 15px;
    display: block;
    cursor: pointer;
    transition: all .3s ease-in-out;
    height: 60px;
    padding-left: 45px;
    padding-top: 10px;
    position: relative;
}
.make-transfer-beneficiary input[type="radio"]:checked + label,
.make-transfer-beneficiary label:hover {
    background: #eeeff3;
}
.circle-select {
    display: inline-block;
    border-radius: 50%;
    background: #ccc;
    width: 30px;
    height: 30px;
    margin: 0 5px 0 0;
    vertical-align: middle;
    position: absolute;
    left: 10px;
    top: 15px;
}
.make-transfer-beneficiary input[type="radio"]:checked + label .circle-select {
    background: #8002d1;
    background: -moz-linear-gradient(left, #8002d1 0%, #00e8f4 100%);
    background: -webkit-linear-gradient(left, #8002d1 0%,#00e8f4 100%);
    background: linear-gradient(to right, #8002d1 0%,#00e8f4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8002d1', endColorstr='#00e8f4',GradientType=1 );
}
.make-transfer-beneficiary label .circle-select:before {
    content: "";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .3s ease-in-out;
    color:#fff;
    width: 30px;
    line-height: 30px;
    text-align: center;
}
.make-transfer-beneficiary input[type="radio"]:checked + label .circle-select:before {
    content: "\f00c";
}
.make-transfer-beneficiary label small {
    font-size: 60%;
    color: #505050;
    display: block;
}
span.beneficiary-name {
    display: inline-block;
    width: calc(60% - 35px);
    padding-left: 10px;
}
span.beneficiary-country {
    display: inline-block;
    width: calc(15%);
}
span.beneficiary-bank {
    display: inline-block;
}
span.method_payment_name {
    width: 50%;
    display: inline-block;
    padding-left: 10px;
}
span.method_payment_fee {
    width: 45%;
    display: inline-block;
}
span.menu-title {
    display: none;
}
@media (max-width: 992px){
    .navbar-y {
        width: 100%;
        transform: translateX(-100%);
    }
    .open-nav-sidebar .navbar-y {
        transform: translateX(0%);
    }
    #tu-pago-content {
        margin-left: 0;
        width: 100%;
        padding: 15px;
    }
    .show-sub-menu {
        display: none !important;
    }
    .toggle_menu {
          -webkit-appearance: none;
          display: inline-block;
          margin: 0;
          padding: 0;
          height: 30px;
          width: 25px;
          vertical-align: middle;
          background: transparent;
          border: none;
          outline: none!important;  
          position: relative;
          z-index: 1040;
    }
    .toggle_menu span {
        width: 100%;
        height: 1px;
        background: #000;
        display: block;
        transition: all .4s ease-in-out;
        margin-bottom: 7px;
    }
    .toggle_menu span:nth-child(2) {
        width: 80%;
    }
    .open-nav-sidebar .toggle_menu span {
        background: #fff;
    }
    .open-nav-sidebar .toggle_menu span:first-child {
        transform: translate(0,10px) rotate(45deg);
    }
    .open-nav-sidebar .toggle_menu span:last-child {
        transform: translate(0,-6px) rotate(-45deg);
    }
    .open-nav-sidebar .toggle_menu span:nth-child(2) {
        width: 0%;
    }
    span.menu-title {
        display: inline-block;
        font-size: 1rem;
        vertical-align: top;
    }
    .navbar-top .top-logo-link{
        display: none;
    }
    ul.navbar-nav.nav-sidebar {
        text-align: left;
    }
    ul.navbar-nav.nav-sidebar li.nav-item {
        padding-left: 15px;
    }
    ul.navbar-nav.nav-sidebar li.nav-item:after {
        width: 80px;
        height: 10px;
        top: 35px;
        right: -35px;
    }
    .navbar-top {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    .tp-com-modal-content {
        max-width: 100%;
    }
    #payment-detail .tp-com-modal-content {
        width: 100%;
        left: 0;
    }
}
.tp-com-steps{
    pointer-events: none;
    cursor: not-allowed;
}
.step_move:disabled, .make_payment_btn_last:disabled {
    opacity: .5;
    cursor: no-drop;
}
span.validate_this_text {
    font-size: .8rem;
    padding: 5px;
    display: block;
    color: #E91E63;
}
.form-control.validate_this {
    border-color: #E91E63;
}
.form-control.validate_ok {
    border-color: #4caf50;
}
.make-transfer-beneficiary label.validate_ok {
    border-color: #4caf50;
}
#fake_file_title {
    font-size: 75%;
    padding: 8px 0;
}
.select_document_paymet {
    display: block;
}
.validate_payment,.validate_payment_on_progress,.document_to_validate{display: none;}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  margin: 1.4rem auto;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}

