/*
0-600px: phone
600 - 900px: Tablet portrait
900 - 1200px: Tablet landscape
1200 - 1800 is where our normal styles apply
1800px +: Big desktop
*/


/*
$breakpoint argument choices:

- phone
- tab-port
- tab-land
- big-desktop

//  1 rem = 10px; 10px/16px = 62.5%

ORDER: Base + typography > general layout + grid > page layout > components

*/

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

@media only screen and (max-width: 37.5em) {
    html {
        font-size: 50%;
    }
}

@media only screen and (max-width: 56.25em) {
    html {
        font-size: 56.25%;
    }
}

@media only screen and (max-width: 75em) {
    html {
        font-size: 62.5%;
    }
}

@media only screen and (min-width: 112.5em) {
    html {
        font-size: 62.5%;
    }
}

body {
    box-sizing: border-box;
    overflow-x: hidden;
}

body.active {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}


/**
 * Basic styles for links
 */

a {
    color: #596f8c;
}

::selection {
    background-color: #008afd;
    color: #fff;
}

.new-miner__add::-webkit-scrollbar {
    width: 5px;
}

.new-miner__add::-webkit-scrollbar-thumb {
    background-color: #008afd;
    outline: 1px solid #fff;
    margin-right: 1rem;
    border-radius: 10rem;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #313131;
    font-size: 1.6rem;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 3.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2.4rem;
    line-height: 1.2;
}

h3 {
    font-size: 2.2rem;
    line-height: 1.2;
}

h4 {
    font-size: 2rem;
}

p {
    font-size: 1.6rem;
}

.u-center-text {
    text-align: center;
}

.u-margin-bottom-big {
    margin-bottom: 8rem;
}

.u-margin-bottom-medium {
    margin-bottom: 4rem;
}

.u-margin-bottom-small {
    margin-bottom: 1.5rem;
}

.red-border {
    border: 1px solid red;
}


/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */

.container {
    max-width: 1180px;
    /* 1 */
    margin-left: auto;
    /* 2 */
    margin-right: auto;
    /* 2 */
    padding-left: 2rem;
    /* 3 */
    padding-right: 2rem;
    /* 3 */
    width: 100%;
    /* 1 */
}

.btn:focus-visible {
    outline: none;
}

section {
    padding: 4.8rem 0;
}

.btn {
    display: inline-block;
    padding: 1rem 3.2rem;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%); */
    background: #008afd;
    box-shadow: 10px 10px 42px rgba(0, 20, 33, 0.2);
    border-radius: 50px;
    color: #fff;
    z-index: 1;
    cursor: pointer;
    border: 0px;
    line-height: 1.7;
}

.btn.light {
    background-color: #f5f7fa;
    border: 1px solid #677fa1;
}

.btn.dark {
    background-color: #677fa1;
}

.btn:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(272.47deg, #ef0aba 0%, #008afd 100%);
    top: 0;
    right: 0;
    transition: 0.3s;
    z-index: -1;
    opacity: 0;
}

.btn:hover:before {
    width: 100% !important;
    opacity: 1;
}

.item-card {
    background: #ffffff;
    border: 1px solid #f5f5f5;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.05);
    border-radius: 1.6rem;
    padding: 4rem 2.4rem;
}

.active-miners__item {
    background: #f5f7fa;
    border-radius: 5px;
    padding: 2rem 0 3rem;
    overflow: hidden;
}

.active-miners__item-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.miner-id {
    background-color: #fff;
    width: fit-content;
    margin-left: 15px;
    padding: 3px 5px;
    border-radius: 2px 0 0 2px;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    color: #9aa5b1;
}

.miner-id i {
    margin-top: 1px;
    margin-right: 4px;
}

.miner-setdate {
    background-color: #fff;
    width: fit-content;
    padding: 3px 5px;
    border-radius: 2px 0 0 2px;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    color: #9aa5b1;
}

.miner-setdate i {
    margin-right: 4px;
}

.miner-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    align-items: center;
}

.miner-status {
    padding: 2px 13px;
    border-radius: 3px;
    line-height: 2rem;
    font-size: 13px;
}

.miner-status.success {
    background: #51c551;
    color: #fff;
}

.miner-status.warning {
    background: orange;
    color: #fff;
}

.miner-status.not-pay {
    color: #fff;
    text-decoration: none;
    background: orange;
}

.miner-status.stop {
    background: red;
    color: #fff;
}

.miner-action {
    font-size: 14px;
    font-weight: 300;
    height: 30px;
    display: flex;
    align-items: center;
}

.miner-action a {
    padding: 0;
}

.active-miners__item-gpu {
    margin-bottom: 1rem;
    min-height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-miners__item-gpu-img,
.active-miners__item-gpu .gpu-svg {
    max-width: 95%;
    height: 10rem;
    animation: gpuFade 2s;
}

.active-miners__item-gpu-img.lvl-3,
.active-miners__item-gpu .gpu-svg.lvl-3 {
    height: 15rem;
}

.active-miners__item-power {
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    padding: 2px 6px;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
}

.miner-setup-power {
    margin-top: 3px;
}

.miner-setup-power span {
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    padding: 2px 6px;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
}

.active-miners__item-add {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e4e7eb;
    font-size: 10rem;
    line-height: 1;
    font-weight: 100;
    height: 100%;
    cursor: pointer;
}

.active-miners__item-add:hover {
    color: #cbd2d9;
}

.propeller {
    transform-origin: center center;
    transform-box: fill-box;
}

.propeller-lvl-1-1 {
    animation: rotate 4s infinite linear;
}

.propeller-lvl-1-2 {
    animation: rotate 3s infinite linear;
}

.propeller-lvl-1-3 {
    animation: rotate 2s infinite linear;
}

.propeller-lvl-2-1 {
    animation: rotate 4s infinite linear;
}

.propeller-lvl-2-2 {
    animation: rotate 3s infinite linear;
}

.propeller-lvl-2-3 {
    animation: rotate 2s infinite linear;
}

.propeller-lvl-3-1 {
    animation: rotate 2s infinite linear;
}

.propeller-lvl-3-2 {
    animation: rotate 1.2s infinite linear;
}

.propeller-lvl-3-3 {
    animation: rotate 0.8s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientOpacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.statement-income__container {
    max-width: 100rem;
}

.statement-income__table {
    background: #ffffff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    width: 100%;
    position: relative;
}

.tcm-table table {
    width: 100%;
    text-align: left;
    border-spacing: 0;
    font-size: 1.5rem;
    background: #fff;
}

.tcm-table table thead {
    background: #ebeef7;
    margin: 0px;
    padding: 0px;
}

.tcm-table table thead th {
    font-weight: normal;
}

.tcm-table table thead th:not(:last-child) {
    border-right: 2px solid #f2f4f7;
}

.tcm-table table td,
.tcm-table table th {
    padding: 1rem 1.5rem;
}

.tcm-table table td:not(:last-child) {
    border-right: 2px solid #f2f4f7;
}

.tcm-table table tr:nth-child(even) {
    background-color: #f5f7fa;
}

.table__wrap {
    border-radius: 10px;
    overflow-x: auto;
}

.statement-income__header {
    background: #ebeef7;
    display: flex;
}

.col-40 {
    flex: 1;
}

.col-20 {
    width: 20%;
}

.col {
    padding: 1rem 2rem;
}

.col:not(:last-child) {
    border-right: 2px solid #f2f4f7;
}

.statement-income__body {
    max-height: 30rem;
}

.body__item {
    display: flex;
    justify-content: space-between;
}

.body__item:nth-child(even) {
    background-color: #f5f7fa;
}

.status-new {
    background: #f8ba2d;
    border-radius: 3px;
    padding: 0.4rem 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 auto;
    color: #fff;
}

.status-accept {
    background: #27c742;
    border-radius: 3px;
    padding: 0.4rem 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 auto;
    color: #fff;
}

.status-decline {
    background: #da0baa;
    border-radius: 3px;
    padding: 0.4rem 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 auto;
    color: #fff;
}

.status-canceled {
    background: #aca3aa;
    border-radius: 3px;
    padding: 0.4rem 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 auto;
    color: #fff;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
}

.header__logo {
    z-index: 3;
    margin-right: 2rem;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__nav-ul {
    list-style: none;
    display: inline-flex;
}

.header__nav-ul-li {
    margin-right: 3rem;
}

.header__nav-ul-li-a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 300;
    position: relative;
}

.header__nav-ul-li-a:before {
    content: '';
    width: 0%;
    height: 0px;
    position: absolute;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
    box-shadow: 10px 10px 42px rgba(0, 20, 33, 0.2);
    bottom: -6px;
    left: 0;
    transition: 0.3s;
}

.header__nav-ul-li-a:hover:before {
    width: 100%;
    height: 3px;
    transform: rotate(-2deg);
}

.header__nav-ul-li-a.active:before {
    content: '';
    width: 0%;
    height: 0px;
    position: absolute;
    background: #fff;
    box-shadow: 10px 10px 42px rgba(0, 20, 33, 0.2);
    bottom: -6px;
    left: 0;
    transition: 0.3s;
}

.header__nav-ul-li-a.active:before {
    width: 100%;
    height: 3px;
    transform: rotate(-2deg);
}

.header__nav-lang {
    margin: 1rem;
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s;
}

.header__nav-lang-active {
    display: flex;
    align-items: center;
    padding: 4px;
    line-height: 1;
    cursor: pointer;
}

.header__nav-lang-active i {
    margin-left: 4px;
}

.header__nav-lang-ul {
    display: none;
    position: absolute;
    list-style: none;
    top: 100%;
    left: 0;
}

.header__nav-lang-ul-li {
    margin: 0.5rem 0;
}

.header__nav-lang-ul-li-a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px;
    border-radius: 2px;
    transition: 0.3s;
    background: #420a7c;
}

.header__nav-lang-ul-li-a:hover {
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
    box-shadow: 10px 10px 42px rgba(0, 20, 33, 0.2);
    opacity: 1;
    color: white;
}

.header__nav-lang.active .header__nav-lang-ul {
    display: block;
}

.header__nav-account {
    display: flex;
    align-items: center;
}

.header__nav-account-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.header__nav-account-btn i {
    margin-right: 0.4rem;
    font-size: 1.5rem;
}

.header__nav-account-btn-login {
    border: 1px solid #008afd;
    background: transparent;
    padding: 1rem 4rem;
    margin-right: 1.6rem;
}

@media only screen and (max-width: 56.25em) {
    .header__logo {
        margin-right: auto;
    }
    .header__nav-ul,
    .header__nav-account {
        display: none;
    }
    .header.active .header__nav-ul {
        z-index: 3;
        position: absolute;
        top: 12rem;
        left: 50%;
        transform: translate(-50%, 0%);
        display: block;
        text-align: center;
    }
    .header.active .header__nav-ul-li {
        margin: 1.5rem 0;
    }
    .header.active .header__nav-ul-li-a {
        font-size: 2rem;
    }
    .header.active .header__nav-account {
        position: absolute;
        display: flex;
        z-index: 3;
        top: 50rem;
        left: 50%;
        transform: translate(-50%, 0%);
    }
    .header__modal {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: translateY(-100%);
        transition: 0.3s;
        background: linear-gradient(180deg, #410a7b 61.46%, rgba(65, 10, 123, 0) 100%);
    }
    .header.active .header__modal {
        transform: translateY(0);
    }
}

.header__mob,
.header__modal {
    display: none;
}

@media only screen and (max-width: 56.25em) {
    .header__mob,
    .header__modal {
        display: block;
    }
    #open-modal {
        height: 4rem;
        cursor: pointer;
        border: none;
        background: none;
    }
    .header__mob {
        display: flex;
        align-items: center;
    }
    .header__mob-main {
        padding: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header__mob-main-menu-btn {
        position: relative;
        z-index: 11;
        width: 4rem;
        height: 2px;
        background-color: #fff;
    }
    .header__mob-main-menu-btn:before {
        content: '';
        position: absolute;
        top: -8px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: 0.3s;
    }
    .header__mob-main-menu-btn:after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: 0.3s;
    }
    .header.active .header__mob-main-menu-btn {
        background-color: transparent;
    }
    .header.active .header__mob-main-menu-btn:before {
        transform-origin: center;
        transform: rotate(-135deg);
        background-color: #fff;
        top: 0;
        width: 100%;
    }
    .header.active .header__mob-main-menu-btn:after {
        transform-origin: center;
        transform: rotate(135deg);
        background-color: #fff;
        top: 0;
        width: 100%;
    }
}

.header.alt {
    display: block;
    position: relative;
    background: linear-gradient(284.15deg, #2c33b9 -0.52%, #170e46 -0.52%, #420a7c 50.96%, #e20ca6 106.31%);
}

.header.sticky {
    position: fixed;
    z-index: 100;
    background: linear-gradient(284.15deg, #2c33b9 -0.52%, #170e46 -0.52%, #420a7c 50.96%, #e20ca6 106.31%);
}

.footer {
    /* background: linear-gradient(289.76deg, #1a0e4a 0%, #410a7b 100%); */
    background: #000000;
    color: #fff;
    padding-top: 5rem;
}

.row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.footer__col {
    width: 100%;
    max-width: 23rem;
    padding: 2rem;
    justify-self: center;
}

.footer__second_menu_col {
    max-width: 25rem;
}

.footer__col-title {
    color: #cbd2d9;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer__col-ul {
    list-style: none;
}

.footer__col-ul-li {
    margin-bottom: 0.8rem;
}

.footer__col-ul-li-a {
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    position: relative;
}

.footer__col-ul-li-a:before {
    content: '';
    width: 0%;
    height: 0px;
    position: absolute;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
    box-shadow: 10px 10px 42px rgba(0, 20, 33, 0.2);
    bottom: -6px;
    left: 0;
    transition: 0.3s;
}

.footer__col-ul-li-a:hover:before {
    width: 100%;
    height: 2px;
    transform: rotate(-2deg);
}

.footer__col img {
    width: 100%;
}

.footer__copyright {
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.footer__copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    font-weight: 300;
}

.logo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-auto-flow: row;
    gap: 1rem;
    align-items: center;
}

.logo__grid-item {
    padding: 2rem;
}

.logo__grid-item img {
    width: 100%;
}

form label {
    font-size: 1.4rem;
}

form input,
form textarea {
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 0.8rem 1.6rem;
    font-family: inherit;
}

form input:focus,
form textarea:focus {
    outline: none;
    box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.1);
}

.hero {
    /* background: linear-gradient(284.15deg, #2c33b9 -0.52%, #170e46 -0.52%, #420a7c 50.96%, #e20ca6 106.31%); */
    background: #000000;
    /* height: 95vh; */
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero__text {
    width: 50%;
    color: #fff;
}

.hero__text-title {
    font-size: 4.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero__text-subtitle {
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero__text-btn {
    display: flex;
    width: fit-content;
    align-items: center;
}

.hero__text-btn i {
    margin-right: 0.5rem;
    line-height: 1;
}

.hero__img {
    width: 50%;
    align-self: center;
    text-align: center;
}

.hero__img object {
    width: 50%;
    margin-left: 25%;
    animation: gpuFade 2s;
}

@media(max-width: 600px) {
    /*     .hero__img{
      padding-top: 200px;
     }*/
}

@media only screen and (max-width: 56.25em) {
    .hero {
        padding-top: 10rem;
        height: auto;
    }
    .hero__container {
        flex-direction: column-reverse;
    }
    .hero__text {
        width: 100%;
        text-align: center;
    }
    .hero__text-title {
        font-size: 3.2rem;
    }
    .hero__text-btn {
        margin: 0 auto;
    }
    .hero__img {
        width: 100%;
        text-align: center;
    }
    .hero__img object {
        /* width: 50%; */
        /* height: 25rem; */
        margin-left: 0px;
    }
}

.start-steps {
    padding-bottom: 7rem;
}

.start-steps__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.start-steps__item {
    text-align: center;
    position: relative;
    width: 100%;
    margin: 1rem;
    max-width: 35rem;
}

.start-steps__item object {
    width: 15rem;
    animation: gpuFade 2s;
}

.start-steps__item-num {
    position: absolute;
    top: 0;
    left: 1rem;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-size: 10rem;
    line-height: 1;
    color: rgba(30, 14, 79, 0.05);
}

.start-steps__item-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.start-steps__item-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.2;
}

.information {
    /* background: linear-gradient(289.76deg, #1a0e4a 0%, #410a7b 100%); */
    background: #000000;
    padding: 7rem 0;
}

.information__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    color: #fff;
}

.information__item-text {
    width: 50%;
}

.information__item-text-title {
    font-weight: 300;
    font-size: 3.6rem;
    margin-bottom: 1.6rem;
}

.information__item-text-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 1.6rem;
}

.information__item-img {
    width: 50%;
    text-align: center;
}

.information__item-img img {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
}

@media only screen and (max-width: 56.25em) {
    .information__item:last-child {
        flex-direction: column-reverse;
    }
    .information__item-text {
        width: 100%;
        max-width: 55rem;
    }
    .information__item-img {
        width: 100%;
        max-width: 55rem;
    }
}

.calculate-earnings {
    background: #f5f7fa;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.calculate-earnings__wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.calculate-earnings__wrap.loading {
    opacity: .6;
}

.calculate-earnings__wrap .form-loading {
    background: transparent;
}

.calculate-earnings__calculator {
    width: 100%;
    max-width: 60rem;
}

.calculate-earnings__calculator-title {
    font-weight: 400;
}

.calculate-earnings__calculator-subtitle {
    margin-bottom: 7rem !important;
    display: block;
    font-weight: 300;
}

.calculate-earnings__calculator-range {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    box-sizing: border-box;
    border-radius: 50px;
    margin-bottom: 1.6rem;
    position: relative;
    height: 1.6rem;
    width: 100%;
}

.calculate-earnings__calculator-range-line.fill {
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
    box-shadow: 10px 10px 42px rgba(0, 20, 33, 0.2);
    width: 25%;
    top: 0;
    height: 100%;
    position: absolute;
    border-radius: 50px;
}

.calculate-earnings__calculator-range-data {
    position: absolute;
    top: 0;
    left: 25%;
    transform: translate(-50%, -160%);
    border-radius: 3px;
    padding: 0.4rem;
    width: fit-content;
    color: #fff;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
    z-index: 3;
}

.calculate-earnings__calculator-range-data:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    bottom: -50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    z-index: 2;
    border-top: 9px solid #ef0aba;
}

.calculate-earnings__calculator-range-point {
    position: absolute;
    top: -50%;
    left: 25%;
    background-color: #ef0aba;
    width: 3rem;
    height: 3rem;
    border-radius: 50rem;
    cursor: pointer;
    transform: translateX(-50%);
}

.calculate-earnings__calculator-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
}

.calculate-earnings__calculator-data-item-select {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2.4rem;
}

.calculate-earnings__calculator-data-item {
    width: calc(33% - 1.4rem);
    display: flex;
    flex-direction: column;
}

.calculate-earnings__calculator-data-item p {
    line-height: 1.2;
}

.calculate-earnings__calculator-data-item__row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1;
}

.calculate-earnings__calculator-data-item__row p {
    font-weight: 400;
}

.calculate-earnings__calculator-data-title {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 1.6rem;
}

.calculate-earnings__calculator-data-input {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    padding: 1.6rem;
    text-align: center;
    width: 100%;
}

.calculate-earnings__calculator-data-input:focus {
    outline: none;
    border: 1px solid #ccc;
}

.calculate-earnings__calculator-data-input-checkbox {
    margin-right: 8px;
}

.bonus-label {
    cursor: pointer;
}

.calculate-earnings__calculator-results {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.2rem;
}

.calculate-earnings__calculator-results-item {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 1rem;
    width: calc(33% - 1.4rem);
}

.calculate-earnings__calculator-results-title {
    font-size: 1.4rem;
    line-height: 1.1;
    font-weight: 300;
    text-transform: uppercase;
}

.calculate-earnings__calculator-results-numbers {
    color: #ef0aba;
    font-weight: 600;
    font-size: 2rem;
    line-height: 4rem;
}

.miner-select {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 2.4rem;
    justify-content: space-between;
}

.miner-select-item {
    width: calc(33% - 1.4rem);
    background: #ffffff;
    border: 1px solid #f2f2f2;
    box-shadow: 0px 6px 20px rgb(0 0 0 / 5%);
    border-radius: 5px;
    padding: 1rem;
    cursor: pointer;
    transition: .2s ease;
}

.miner-select-item.active {
    color: #fff;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
}

.calculate-earnings__calculator-btn {
    width: 33%;
}

.calculate-earnings__gpu {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 27rem;
}

.calculate-earnings__gpu .gpu-svg-calculator {
    max-width: 90%;
    height: 18rem;
    animation: gpuFade 2s;
}

.calculate-earnings__gpu .gpu-svg-calculator.lvl3 {
    height: 25rem;
}

@keyframes gpuFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media only screen and (max-width: 56.25em) {
    .calculate-earnings__wrap {
        flex-direction: column-reverse;
    }
    .calculate-earnings__calculator-data {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2.4rem;
    }
    .calculate-earnings__calculator-data-item {
        width: calc(33% - 0.4rem);
    }
    .calculate-earnings__calculator-results {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3.2rem;
    }
    .calculate-earnings__calculator-results-item {
        padding: 1rem 0.4rem;
        width: calc(33% - 0.4rem);
    }
    .calculate-earnings__calculator-results-numbers {
        color: #ef0aba;
        font-weight: 600;
        font-size: 2.2rem;
    }
}

.accessibility {
    padding-bottom: 0;
    overflow: hidden;
}

.accessibility__wrap {
    display: flex;
    align-items: center;
}

.accessibility__list {
    width: 50%;
}

.accessibility__list-ul {
    list-style: none;
}

.accessibility__list-ul-li {
    font-size: 2rem;
    margin-bottom: 5rem;
    line-height: 1.2;
    margin-left: 2.5rem;
}

.accessibility__list-ul-li i {
    margin-left: -3rem;
    color: #ef0aba;
    float: left;
    margin-top: 2px;
}

.accessibility__img {
    width: 50%;
}

.accessibility__img img {
    width: 100rem;
    height: auto;
    display: block;
}

@media only screen and (max-width: 56.25em) {
    .accessibility__wrap {
        flex-direction: column;
    }
    .accessibility__list {
        width: 100%;
    }
    .accessibility__img {
        width: 100%;
    }
    .accessibility__img img {
        width: 100%;
        height: auto;
        display: block;
    }
}

.packages {
    /* background: linear-gradient(289.76deg, #1a0e4a 0%, #410a7b 100%); */
    background: #000000;
    color: #fff;
    padding: 7rem 0;
}

.packages__wrap {
    width: 100%;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.19);
    padding: 2rem 0;
    border-radius: 10px;
}

.packages__table {
    min-width: 111rem;
    width: 100%;
}

.packages__table-row {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    position: relative;
}

.packages__table-row:nth-child(even) {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) -0.99%, rgba(255, 255, 255, 0.05) 100%);
}

.packages__table-row.row-head .packages__table-col {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.8rem;
}

.packages__table-row:before {
    content: '';
    top: 0;
    right: 0;
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) -0.99%, #e20ca6 100%);
    transition: 0.3s;
    z-index: 1;
}

.packages__table-row:hover:before {
    width: 100%;
}

.packages__table-row:hover:last-child:before,
.packages__table-row:hover:first-child:before {
    width: 0;
}

.packages__table-col {
    z-index: 3;
    width: 25%;
    font-size: 1.4rem;
    font-weight: 300;
}

.packages__table-col-from,
.packages__table-col-per {
    font-size: 1.2rem;
    margin: 0;
}

.packages__table-col-price {
    font-size: 2.4rem;
    line-height: 1.1;
}

.packages__table-col-price span {
    font-size: 1.4rem;
}

.packages__table-col-p {
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
}

.packages__table-col-btn {
    font-size: 1.2rem;
    padding: 0.8rem 2.5rem;
}

.packages__table-col.col-title {
    font-weight: 500;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.2;
}

.currency__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.currency__item {
    text-align: center;
    color: #210d52;
    margin: 1rem;
    width: 100%;
    max-width: 35rem;
}

.currency__item-img {
    width: 6.5rem;
}

.currency__item-title {
    text-transform: uppercase;
    font-weight: 300;
}

.currency__item-small {
    font-weight: 300;
}

.currency__item-price {
    font-size: 2rem;
}

.currency__item-status.up {
    color: #06cf02;
}

.currency__item-status.down {
    color: red;
}

.faq {
    background-color: #f5f7fa;
}

.faq__item {
    padding: 0;
    overflow: hidden;
    transition: 0.3s;
    margin-bottom: 2rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background-color: #fff;
}

.faq__item.active {
    background: #ffffff;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.faq__item.active .faq__item-question:after {
    content: '-';
    background-color: #fff;
}

.faq__item-question {
    font-size: 2.2rem;
    padding: 2.4rem;
    background: #fff;
    z-index: 1;
    position: relative;
    margin: 0;
    cursor: pointer;
}

.faq__item-question:after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 2.4rem;
    font-weight: 200;
    background-color: #f5f7fa;
    color: #035388;
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50rem;
    transform: translateY(-50%);
}

.faq__item-answer {
    padding: 2.4rem;
    display: none;
}

.faq__item.active .faq__item-question {
    background: #f7f9fc;
}

.faq__item.active .faq__item-answer {
    display: block;
}

.media {
    background: #f5f7fa;
}

.contacts {
    background: #f5f7fa;
}

.contacts__wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contacts__info {
    width: 100%;
    max-width: 50rem;
    padding: 2rem;
}

.contacts-form {
    width: 100%;
    max-width: 50rem;
}

.contacts-form .acc-info__form-row {
    max-width: 50rem;
}

.contacts-form textarea,
.contacts-form input {
    background: #f5f7fa;
    border: 1px solid #e4e7eb;
    border-radius: 5px;
    font-weight: 300;
    font-size: 1.6rem;
    padding: 1.5rem 1.5rem;
    margin-bottom: 0.4rem;
    width: 100%;
}

.contacts-form textarea:focus,
.contacts-form input:focus {
    outline: none;
}

.contacts-form .btn {
    border-radius: 1rem;
}

.contacts__row {
    margin-bottom: 2rem;
}

.contacts__label {
    color: #210d52;
}

.contacts__content {
    color: #596f8c;
}

.contacts__link {
    text-decoration: none;
}

.contacts__link:hover {
    color: #008afd;
    text-decoration: underline;
}

.dashboard-wrapper {
    background: #f5f7fa;
    display: flex;
}

.header.dashboard {
    position: relative;
    background: linear-gradient(284.15deg, #2c33b9 -0.52%, #170e46 -0.52%, #420a7c 50.96%, #e20ca6 106.31%);
}

.header.dashboard .header__logo {
    display: none;
}

.header.dashboard .header__nav {
    width: 95%;
    margin: 0 auto;
}

.header.dashboard .header__nav-ul {
    margin-right: auto;
}

@media only screen and (max-width: 56.25em) {
    .header.dashboard .header__logo {
        display: block;
        margin-right: auto;
    }
    .header.dashboard .header__nav {
        width: fit-content;
        margin-right: 1rem;
    }
}

.header.dashboard .header__modal {
    background: linear-gradient(180deg, rgba(65, 10, 123, 0.6) 0%, rgba(65, 10, 123, 0.6) 100%);
    transform: translate(100%, 0%);
}

.header.dashboard.active .header__nav-ul {
    display: none;
}

.header.dashboard.active .header__nav-account {
    display: none;
}

.header.dashboard.active .header__modal {
    transform: translate(0, 0);
}

.sidebar {
    background-color: #fff;
    border-right: 1px solid #e6e8eb;
    width: 25rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
}

.sidebar__header {
    margin-bottom: 5rem;
    text-align: center;
    padding: 2rem;
}

.sidebar__header img {
    display: block;
    margin: 0 auto;
}

.sidebar__menu {
    margin-bottom: auto;
}

.sidebar__menu-ul {
    margin-bottom: 5rem;
}

.sidebar__menu-ul-li {
    width: calc(100% + 2px);
    border: 1px solid transparent;
    line-height: 1;
    margin-bottom: -1px;
    position: relative;
}

.sidebar__menu-ul-li:after {
    content: '';
    position: absolute;
    width: 0%;
    height: calc(100% + 2px);
    top: 0;
    right: 0;
    background: #f5f7fa;
    border-top: 1px solid #e6e8eb;
    border-bottom: 1px solid #e6e8eb;
    transition: 0.3s;
    z-index: 0;
}

.sidebar__menu-ul-li:hover:after {
    width: 100%;
}

.sidebar__menu-ul-li-a {
    padding: 1.5rem 4rem;
    text-decoration: none;
    color: #323f4b;
    font-size: 1.6rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    z-index: 3;
    position: relative;
}

.sidebar__menu-ul-li-a i {
    color: #008afd;
    margin-right: 1rem;
}

.sidebar__menu-ul-li.active {
    background: #f5f7fa;
    border-top: 1px solid #e6e8eb;
    border-bottom: 1px solid #e6e8eb;
    border-right: 1px solid #f5f7fa;
    height: calc(100% + 2px);
}

.sidebar__menu-ul-li.active a {
    font-weight: 300;
}

.sidebar__menu-ul-li.active a i {
    color: #9aa5b1;
}

.sidebar__menu-exit {
    margin-left: 4rem;
    text-decoration: none;
    color: #323f4b;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
}

.sidebar__menu-exit i {
    color: #9aa5b1;
    margin-right: 1rem;
}

.sidebar__menu-exit:hover,
.sidebar__menu-exit:hover i {
    color: #008afd;
}

.sidebar__copyright {
    text-align: center;
    margin: 2rem;
    color: #52606d;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.4rem;
}

@media only screen and (max-width: 56.25em) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 100;
        transition: 0.3s;
    }
    .sidebar__header img {
        margin: 0;
    }
    .sidebar .sidebar__menu-ul-li {
        width: 100%;
    }
    .sidebar.active {
        transform: translateX(0%);
    }
}

.main {
    overflow: hidden;
    min-height: 100vh;
    width: calc(100% - 25rem);
    margin-left: 25rem;
}

@media only screen and (max-width: 56.25em) {
    .main {
        width: 100%;
        margin: 0;
    }
}

.statistics {
    padding-top: 3rem;
}

.statistics__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.statistics__card {
    padding: 2rem 0;
    width: 100%;
    margin: 1rem;
    max-width: 34rem;
    border: 1px solid #e4e7eb;
    transition: border 1s;
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.statistics__card:hover {
    border: 1px solid #008afd;
}

.statistics__card-numbers {
    padding: 1rem 2rem;
    font-size: 2.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #008afd;
    border-bottom: 1px solid #f5f7fa;
}

.statistics__card-numbers .usd {
    width: 100%;
    display: block;
    font-size: 18px;
    color: orange;
    line-height: 1;
}

.statistics__card-description {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.statistics__card-description-title {
    color: #210d52;
    font-weight: 300;
    line-height: 1;
}

.active-miners__wrap {
    text-align: center;
}

.active-miners__items {
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    gap: 1.4rem;
}

.active-miners__items .no-miners {
    grid-column: 2 / 4;
}

@media(max-width: 550px) {
    .active-miners__items {
        grid-template-columns: 1fr;
    }
    .active-miners__items .no-miners {
        grid-column: 1 / 4;
    }
}

@media(min-width: 551px) and (max-width: 820px) {
    .active-miners__items {
        grid-template-columns: 1fr 1fr;
    }
    .active-miners__items .no-miners {
        grid-column: 1 / 4;
    }
}

@media(min-width: 821px) and (max-width: 900px) {
    .active-miners__items {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .active-miners__items .no-miners {
        grid-column: 1 / 4;
    }
}

@media(min-width: 901px) and (max-width: 1100px) {
    .active-miners__items {
        grid-template-columns: 1fr 1fr;
    }
    .active-miners__items .no-miners {
        grid-column: 1 / 4;
    }
}

@media(min-width: 1101px) and (max-width: 1300px) {
    .active-miners__items {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .active-miners__items .no-miners {
        grid-column: 1 / 4;
    }
}

.active-miners__btn {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.active-miners__btn i {
    line-height: 1;
    margin-right: 0.5rem;
}

.gpu-power {
    border: 1px solid red;
    width: 80%;
}

.new-miner__wrap {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    transition: 0.3s;
    transform: translateY(150%);
    transform-origin: center center;
    z-index: 98;
    width: 100vw;
    height: 100vh;
}

.new-miner__wrap.active {
    transform: translateY(0);
}

.new-miner__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(65, 10, 123, 0.6) 0%, rgba(65, 10, 123, 0.6) 100%);
    z-index: 99;
    opacity: 0;
    transform-origin: center center;
    transition: 0.3s;
}

.new-miner__wrap.active .new-miner__backdrop {
    opacity: 1;
}

.new-miner__add {
    position: fixed;
    width: 99%;
    height: 90%;
    max-height: 70rem;
    overflow: hidden;
    overflow-y: scroll;
    max-width: 80rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 100;
    transition: 0.3s;
}

.new-miner__wrap.active .new-miner__add {
    transform: translate(-50%, -50%);
}

.new-miner__close {
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 2rem;
    top: 2rem;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 300;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50rem;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.new-miner__close:hover {
    color: #fff;
    background-color: #008afd;
}

.calculate-earnings__wrap.admin {
    flex-direction: column-reverse;
}

.calculate-earnings__wrap.admin .calculate-earnings__calculator-title,
.calculate-earnings__wrap.admin .calculate-earnings__calculator-subtitle {
    text-align: center;
}

.calculate-earnings__wrap.admin .calculate-earnings__gpu {
    margin-bottom: 2rem;
}

.calculate-earnings__wrap.admin .calculate-earnings__calculator-btn {
    margin: 0 auto;
    display: flex;
}

.referal-info {
    text-align: center;
}

.referal-info__title {
    font-size: 2.8rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

.referal-info__link {
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
    border-radius: 50px;
    padding: 2rem 4rem;
    color: #fff;
    width: fit-content;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.referal-info__link-copy {
    background: #ffffff;
    border: 1px solid #e4e7eb;
    border-radius: 50px;
    margin: 0 1rem;
    font-weight: 300;
    font-size: 14px;
    padding: 1rem 2rem;
    color: #52606d;
    width: 300px;
}

.referal-info__link-copy:focus {
    outline: none;
}

.copy-referal-button {
    padding: 0.6rem;
    background: transparent;
    border: 0px;
    color: #fff;
    cursor: pointer;
    position: relative;
}

.copy-referal-button:focus,
.copy-referal-button:focus-visible {
    outline: none;
}

.copy-notifi {
    position: absolute;
    background: linear-gradient(272.47deg, #6a1757 0%, #ef0aba 100%);
    box-shadow: 10px 10px 42px rgb(0 20 33 / 20%);
    width: 150px;
    font-size: 12px;
    padding: 4px;
    border-radius: 4px;
    top: -70px;
    left: -100px;
    cursor: default;
    display: none;
}

.referal-info__p {
    width: 100%;
    max-width: 70rem;
    margin: 0 auto 1rem;
}

.id-confirmation {
    text-align: center;
}

.id-confirmation__upload {
    width: fit-content;
    margin: 0 auto 2rem;
    border: 1px solid #e4e7eb;
    border-radius: 16px;
    min-width: 430px;
    max-width: 430px;
    position: relative;
    overflow: hidden;
}

.id-confirmation__upload-add {
    color: #e4e7eb;
    font-size: 10rem;
    font-weight: 100;
    line-height: 0.5;
    text-decoration: none;
}

.id-confirmation__upload-confirmed {
    font-size: 5rem;
    line-height: 0.5;
    color: #008afd;
}

.id-confirmation__upload-text {
    font-weight: 300;
    font-size: 1.4rem;
    color: #3e4c59;
}

.id-confirmation-form {
    padding-top: 30px;
}

.id-confirmation__btn {
    padding: 1rem 5rem;
    margin-bottom: 1rem;
}

.id-confirmation__btn i {
    margin-right: 0.5rem;
    line-height: 1;
}

.id-confirmation__feedback {
    font-weight: 300;
    color: red;
}

.acc-info.dashboard {
    padding-top: 1rem;
}

.acc-info__container {
    max-width: 100rem;
}

.acc-info__checkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.acc-info__checkbox input {
    margin-right: 1rem;
}

.acc-info_recover {
    margin: 1rem auto 0;
}

.acc-info__form {
    display: flex;
    flex-direction: column;
}

.acc-info__form-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.acc-info__form-wrap.column-inputs {
    flex-direction: column;
    align-items: center;
}

.acc-info__form-row {
    width: 100%;
    max-width: 30rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
}

.acc-info__form-label {
    margin: 0 0 0.5rem 2rem;
}

.acc-info__form-label span {
    color: red;
}

.acc-info__form-input {
    background: #f5f7fa;
    border: 1px solid #e4e7eb;
    border-radius: 50px;
    font-weight: 300;
    font-size: 1.6rem;
    padding: 1rem 2rem;
    margin-bottom: 0.4rem;
}

.acc-info__form-input:read-only {
    background: transparent;
    border: 0px;
}

.acc-info__form-input:read-only:focus {
    box-shadow: none;
}

.acc-info__form-input.error {
    border: 1px solid #ffb1e9;
}

.acc-info__form-input-feedback {
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    color: red;
}

.acc-info__form-feedback {
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
}

.acc-info__form-feedback span.success {
    font-size: 2rem;
    color: green;
}

.acc-info__form-feedback span.error {
    font-size: 2rem;
    color: red;
}

.acc-info__form-disclaimer {
    font-weight: 300;
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.acc-info__form-btn {
    margin: 0 auto 1rem;
    width: fit-content;
}

.acc-info__form-btn i {
    line-height: 1;
    margin-right: 0.5rem;
}

.acc-info__form-btn svg {
    margin-right: 0.5rem;
}

.withdraw-source__container {
    max-width: 100rem;
}

.withdraw-source__wrap {
    padding: 0;
    overflow: hidden;
}

.withdraw-source__tabs {
    display: flex;
}

.withdraw-source__tabs-item {
    cursor: pointer;
    width: 33.33%;
    padding: 2rem;
    text-align: center;
    background-color: #ebeef7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa5b1;
}

.withdraw-source__tabs-item.active {
    background-color: #fff;
    color: #210d52;
}

.withdraw-source__tabs-item.active i {
    color: #008afd;
}

.withdraw-source__tabs-item.active .btc-icon {
    fill: #008afd;
}

.withdraw-source__tabs-item i {
    margin-right: 0.5rem;
    line-height: 1;
}

.withdraw-source__tabs-item svg {
    margin-right: 0.5rem;
}

.withdraw-source__tabs-item svg .btc-icon {
    fill: #9aa5b1;
}

.withdraw-source__info {
    padding: 2rem;
}

.withdraw-source__info-item {
    display: none;
}

.withdraw-source__info-item.active {
    display: block;
}

.acc-info__h2 {
    margin-bottom: 1rem;
}

.acc-info__p {
    text-align: center;
    margin-bottom: 2rem;
}


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */


/* Document
   ========================================================================== */


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}


/* Sections
   ========================================================================== */


/**
 * Remove the margin in all browsers.
 */

body {
    margin: 0;
}


/**
 * Render the `main` element consistently in IE.
 */

main {
    display: block;
}


/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
    font-size: 2em;
}


/* Grouping content
   ========================================================================== */


/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}


/* Text-level semantics
   ========================================================================== */


/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
}


/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}


/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}


/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}


/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}


/* Embedded content
   ========================================================================== */


/**
 * Remove the border on images inside links in IE 10.
 */

img {
    border-style: none;
}


/* Forms
   ========================================================================== */


/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}


/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
    /* 1 */
    overflow: visible;
}


/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
    /* 1 */
    text-transform: none;
}


/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
}


/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
    border-style: none;
    padding: 0;
}


/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
    outline: 1px dotted ButtonText;
}


/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}


/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}


/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    vertical-align: baseline;
}


/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
    overflow: auto;
}


/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type='checkbox'],
[type='radio'] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto;
}


/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type='search'] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}


/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}


/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}


/* Interactive
   ========================================================================== */


/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
    display: block;
}


/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}


/* Misc
   ========================================================================== */


/**
 * Add the correct display in IE 10+.
 */

template {
    display: none;
}


/**
 * Add the correct display in IE 10.
 */

[hidden] {
    display: none;
}

.item-card {
    position: relative;
}

.form-loading {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 62%);
    top: 0;
    left: 0;
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.form-loading.active {
    display: flex;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }
    50% {
        opacity: 1;
    }
}

.form-loading:before {
    content: '';
    display: inline-block;
    width: 4rem;
    height: 4rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow .75s linear infinite;
    animation: spinner-grow .75s linear infinite;
    color: #008afd;
}

.pay-calculator-data {
    padding-bottom: 0;
}

.pay-calculator-data h2 {
    margin-bottom: 35px;
}

.pay-btc-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.pay-btc-form .referal-info__link {
    padding: 0px;
    background: transparent;
    color: #000;
    margin-bottom: 10px;
}

.pay-btc-form .referal-info__link:first-child {
    margin-top: 25px;
}

.pay-btc-form .referal-info__link:last-child {
    margin-bottom: 35px;
}

.pay-btc-form {
    padding: 35px 0;
}

.pay-btc-form .copy-referal-button {
    color: #d80ba9;
}

.p-pay-step {
    font-size: 16px;
    padding-bottom: 10px;
    line-height: 1.4;
}

.pay-btc-form .copy-notifi {
    color: #fff;
}

.pay-calculator-data .calculate-earnings__calculator-data-item-select {
    margin-bottom: 3.2rem;
}

.pay-calculator-data .miner-select {
    margin-bottom: 0px;
}

.qr-adres {
    width: 200px;
}

.qr-adres img {
    max-width: 100%;
}

.no-wallet-found {
    text-align: center;
    padding: 50px 0;
}

.pay-miner-title {
    text-transform: uppercase;
}

.p-pay-step-status {
    font-size: 18px;
    padding-bottom: 10px;
}

.pay-status {
    text-align: center;
    padding-top: 20px;
    position: relative;
}

.pay-status-info {
    font-weight: 300;
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.p-pay-step-status.red {
    color: red;
}

.p-pay-step-status.green {
    color: #32b032;
}

.p-pay-step-status.orange {
    color: orange;
}

.p-pay-step-status-info {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 25px;
}

.stats-power-data-list {}

.three-stat-count {
    font-size: 14px;
    width: 100%;
    display: block;
    padding-bottom: 10px;
}

.three-stat-count span {
    font-size: 1.4rem;
    background: linear-gradient( 272.47deg, #008afd 0%, #ef0aba 100%);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
}

.power-off {
    position: relative;
    opacity: .2;
}

.chart-no-data {
    display: block;
    padding: 50px;
    text-align: center;
    color: #666;
    font-weight: 300;
}

.pay-card-style .card-wrapper {
    width: 100%;
    padding: 25px 0;
}

.pay-card-form .error-feedback,
.withdraw-transfer .error-feedback,
.withdraw-card .error-feedback {
    font-size: 16px;
    padding-bottom: 20px;
    display: block;
    color: red;
    font-weight: 400;
}

.withdraw-btc .success-feedback {
    font-size: 16px;
    padding-bottom: 20px;
    display: block;
    color: green;
    font-weight: 400;
}

.table-remove-button {
    cursor: pointer;
    background: transparent;
    border: 0;
    color: #ea0ab6;
    padding: 0.3rem 0.5rem;
    margin-left: 10px;
}


/* simple content page*/

.contente-seciton {
    background-color: #f5f7fa;
}

.cs-content {
    background: #ffffff;
    border: 1px solid #f5f5f5;
    box-shadow: 0px 15px 40px rgb(0 0 0 / 5%);
    border-radius: 1.6rem;
    padding: 3rem;
}

.cs-content p {
    margin-bottom: 1.4rem;
    line-height: 1.4;
}

.cs-content p:last-child {
    margin-bottom: 0;
}

.cs-content h4 {
    margin-bottom: 1rem;
}

.team-grid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding-top: 25px;
}

.team-item {
    width: 200px;
}

.team-item .ti-image {
    width: 100%;
    height: 200px;
}

.team-item .ti-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.ti-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
}

.ti-content h2 {
    margin-bottom: 0px;
    font-size: 2.5rem;
    font-weight: 400;
}

.ti-content span {
    font-size: 1.6rem;
    font-weight: 300;
}

.adv-list {
    display: flex;
    flex-direction: row;
    padding: 25px 0;
    gap: 20px;
}

.adv-item {
    width: 25%;
    padding: 30px 15px;
    background: #f1f2f4;
    border-radius: 6px;
}

.adv-item h4 {
    font-size: 16px;
    line-height: 1;
}

.team-collage {
    width: 100%;
    padding: 25px 0;
}

.team-collage img {
    max-width: 100%;
}

@media(max-width: 768px) {
    .team-grid {
        flex-direction: column;
        padding-top: 0;
        gap: 0;
    }
    .team-item {
        width: 100%;
    }
    .adv-item {
        width: 100%;
    }
    .adv-list {
        flex-direction: column;
    }
}

@media(min-width: 600px) and (max-width: 768px) {
    .team-item {
        width: 50%;
    }
}

@media(min-width: 769px) and (max-width: 992px) {
    .adv-list {
        flex-direction: column;
    }
    .adv-item {
        width: 100%;
    }
}

.pricing {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 3em;
}

.pricing-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    text-align: center;
    -webkit-flex: 0 1 330px;
    flex: 0 1 330px;
}

.pricing-feature-list {
    text-align: left;
}

.pricing-palden .pricing-item {
    cursor: default;
    color: #84697c;
    background: #fff;
    box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
    border-radius: 20px 20px 10px 10px;
    margin: 1em;
}

@media screen and (min-width: 66.25em) {
    .pricing-palden .pricing__item--featured {
        margin: 0;
        z-index: 10;
        box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
    }
}

.pricing-palden .pricing-deco {
    border-radius: 10px 10px 0 0;
    background: linear-gradient( 272.47deg, #008afd 0%, #ef0aba 100%);
    padding: 3em 0 0;
    position: relative;
}

.pricing-palden .pricing-deco-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
}

.pricing-palden .pricing-title {
    font-size: 0.75em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #fff;
}

.pricing-palden .deco-layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
    font-size: 2.5em;
}

.pricing-palden .pricing-alg {
    font-size: 2em;
    font-weight: bold;
    padding: 0;
    color: #fff;
    margin: 0 0 0.25em 0;
    line-height: 0.75;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-palden .pricing-alg-coins {
    font-size: 1em;
    color: #fff;
}

.pricing-palden .pricing-currency {
    font-size: 0.15em;
    vertical-align: top;
}

.pricing-palden .pricing-period {
    font-size: 0.15em;
    padding: 0 0 0 0.5em;
    font-style: italic;
}

.pricing-palden .pricing__sentence {
    font-weight: bold;
    margin: 0 0 1em 0;
    padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
    margin: 0;
    padding: 0.25em 0 2.5em;
    list-style: none;
    text-align: center;
}

.pricing-palden .pricing-feature {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    font-weight: 300;
}

.pricing-palden .pricing-feature:last-child {
    padding-bottom: 0px;
}

.pricing-palden .pricing-feature span {
    font-size: 16px;
    font-weight: bold;
    color: #420a7c;
}

.pricing-svg-container {
    height: 110px;
    overflow: hidden;
    position: relative;
}

.pricing-palden .pricing-action {
    font-weight: bold;
    margin: auto 3em 2em 3em;
    color: #fff;
    font-size: 1.5rem;
}

.success-reg {
    width: 100%;
    color: #3fa04f;
    text-align: center;
    padding-bottom: 35px;
}

.success-reg h3 {
    font-weight: 300;
    font-size: 3.8rem;
}

.success-reg p {
    font-weight: 300;
}

@media(max-width: 768px) {
    .miner-setup-slider {
        width: 84% !important;
        margin-left: 8%;
    }
    .irs--round .irs-single {
        font-size: 13px !important;
    }
    .calculate-earnings__calculator-data-title {
        font-size: 1.4rem;
        font-weight: 400;
    }
    .calculate-earnings__calculator-results-title {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }
    .calculate-earnings__calculator-results-numbers {
        font-size: 1.7rem;
    }
    .bonus-label {
        line-height: 1;
        text-align: left;
    }
    .faq__item-question {
        font-size: 1.9rem;
        padding: 1.5rem;
        padding-right: 75px;
        line-height: 1.4;
    }
    .calculate-earnings__calculator-subtitle {
        margin-bottom: 2rem!important;
    }
}

@media(max-width: 768px) {
    .table__wrap table {
        white-space: nowrap;
    }
}


/* pay steps*/

.pay-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 35px;
}

.pay-step {
    width: 100%;
    display: flex;
    flex-direction: row;
    grid-gap: 20px;
}

.pay-step .pay-step-number {
    width: 35px;
    height: 35px;
    color: #008afd;
    border: 1px solid #008afd;
    min-width: 35px;
    min-height: 35px;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-step-content h2 {
    font-size: 22px;
    margin: 0;
    line-height: 35px;
    text-align: left;
}

.pay-step-content-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.copy-input {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pay-step-content-container .copy-input:last-child {
    margin-bottom: 0px;
}

.copy-input label {
    width: 150px;
}

.copy-input .copy-notifi {
    color: #fff;
}

.copy-button {
    color: #d80ba9;
    padding: .8rem .6rem 0.5rem .6rem;
    background: 0 0;
    border: 0;
    cursor: pointer;
    position: relative;
}

.pscc-url {
    color: blue;
    text-transform: uppercase;
}

.pay-step-content-container .pay-status {
    padding-top: 0px;
    text-align: left;
}

@media(max-width: 550px) {
    .pay-step {
        flex-direction: column;
    }
    .pay-step-content h2 {
        font-size: 21px;
        margin: 0;
        line-height: 1.3;
        text-align: left;
        font-weight: 400;
    }
    .copy-input {
        flex-direction: column;
    }
    .copy-input label {
        width: auto;
    }
    .pay-step .pay-status-info {
        text-align: left;
    }
}

@media(min-width: 551px) and (max-width: 768px) {
    .pay-step-content h2 {
        font-size: 21px;
        margin: 0;
        line-height: 1.3;
        text-align: left;
        font-weight: 400;
    }
    .copy-input label {
        width: auto;
    }
    .pay-step .pay-status-info {
        text-align: left;
    }
}

.pay-steps-alert {
    width: 100%;
    background: orange;
    padding: 15px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
}

.pay-btc-form {
    padding: 0 !important;
}


/* transactions list */

.transaction-item {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #f5f7f9;
    text-align: left;
}

.transaction-item.success {
    background: #c6f4c6;
}

.transaction-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
    overflow-wrap: break-word;
}

.transaction-item p span {
    color: #000;
    font-weight: 400;
}

.transaction-item .amount,
.transaction-item .status {
    font-size: 16px;
}

.transaction-item .time-create {
    font-size: 12px;
}

.transaction-item .time-create i {
    line-height: 1;
    padding-right: 5px;
}

.pay-status-info {
    text-align: left;
    margin: 0;
}

.transaction-status-subtotal {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: left;
    border: 1px solid red;
    color: red;
}

.transaction-status-disclaimer {
    padding: 15px;
    background: orange;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 15px;
    text-align: left;
}

.transaction-status-disclaimer small {
    line-height: 1;
}

.transaction-status-disclaimer .info {
    line-height: 1.3;
    font-size: 13px;
    padding-top: 5px;
}

.bonus-miner {
    background: #e0ae21;
    padding: 1px 5px;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
}


/* Christmas */

.gifts-table {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
}

.gift-item {
    padding: 15px;
    background: rgb(255 255 255 / 20%);
    border-radius: 7px;
    width: 22%;
    margin-left: 3%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 10px 10px 42px rgb(0 20 33 / 20%);
}

.gift-item:hover {
    background: rgb(255 255 255 / 40%);
}

.gift-item:first-child {
    width: 25%;
    margin-left: 0;
}

.gift-item-media {
    width: 100%;
    text-align: center;
}

.gift-item-media img {
    object-fit: contain;
    width: 70%;
}

.gift-item:first-child .gift-item-media img {
    width: 100%;
}

.gift-item span {
    width: 100%;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    padding-top: 4px;
}

@media(max-width: 768px) {
    .gift-item span {
        font-size: 12px;
    }
}

.gift-item:hover .gift-item-media img {
    animation: shake 1s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.setup-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 35px;
}

.setup-box h2 {
    font-size: 3rem;
    margin-bottom: 0px;
}

.calculate-earnings__gpu {
    flex-direction: column;
}

.box-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 7px;
    align-items: center;
    width: 250px;
}

.box-card img {
    width: 50%;
    transform: .2s ease;
    animation: gpuFade 2s;
}

.box-card img.premium {
    width: 60%;
}

.box-card:hover {
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.box-card span {
    width: 100%;
    text-align: center;
    padding-top: 5px;
    font-weight: 400;
    text-transform: uppercase;
}


/*.calculate-earnings{
  position: relative;
  background: #f5f7fa url(/pub/images/ny/decor.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}*/

.gift-card-item {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.gift-card-item img {
    width: 30%;
}

.gift-card-item img:hover {
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.gift-4 img {
    width: 50%;
}

.hero__text-title {
    font-size: 3.5rem;
}

.video-container {
    background: linear-gradient(289.76deg, #1a0e4a 0%, #410a7b 100%);
    padding: 7rem 0;
    position: relative;
}

.video-title {
    font-size: 3.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3.4rem;
    line-height: 1.2;
    color: #fff;
}

.laptop {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.laptop img {
    width: 100%;
}

.laptop iframe {
    position: absolute;
    width: 67.6%;
    height: 81.3%;
    background: #000;
    top: 6.8%;
    left: 16.1%;
}


/* gift rewards table*/

.gift-item-anim {
    position: relative;
}

.gift-reward-container .container {
    padding-bottom: 50px;
}

.gift-open-button {
    padding: 2px 13px;
    border-radius: 3px;
    line-height: 2rem;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
}

.gift-item-anim:hover img {
    animation: shake 1s;
    animation-iteration-count: infinite;
}


/* gift rewards table*/

.gift-item-anim {
    position: relative;
}

.gift-reward-container .container {
    padding-top: 50px;
}

.gift-open-button {
    padding: 2px 13px;
    border-radius: 3px;
    line-height: 2rem;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
}

.gift-item-anim:hover img {
    animation: shake 1s;
    animation-iteration-count: infinite;
}


/* gift withdraw */

.gift-widthdraw-container {
    padding-top: 50px;
}

.gift-widthdraw-container .withdraw-source__container {
    max-width: 1180px;
}

.gift-widthdraw-container .withdraw-source__info-item {
    display: block;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 5;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: hidden;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.modal.active {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}


/* Modal Content/Box */

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 1.6rem;
    width: 50%;
    /* Could be more or less, depending on screen size */
    position: relative;
    overflow: hidden;
}

.modal-content .pay-steps {
    padding-top: 0;
}

.modal-content .pay-steps .pay-step-content {
    width: 100%;
}

.modal-content .pay-steps .acc-info__form-input {
    width: 60%;
}

.modal-content .withdraw-prize-action {
    margin-top: 20px;
    line-height: 1.5;
}

.modal-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
}

.modal-header h2 {
    font-size: 22px;
    margin: 0;
    line-height: 35px;
    text-align: left;
}


/* The Close Button */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal .acc-info__form-row {
    max-width: 100%;
    margin: 0;
}

.modal .acc-info__form-row .acc-info__form-input-feedback {
    text-align: left;
}

.modal .acc-info__form-feedback {
    text-align: left;
}

.modal input:focus {
    outline: none;
    box-shadow: 0 0.4rem 0.4rem rgb(0 0 0 / 10%);
}

@media(max-width: 768px) {
    .modal-content {
        width: 95%;
    }
    .modal-content .pay-steps .acc-info__form-input {
        width: 100%;
    }
}

.gift-widthdraw-history {
    padding-top: 50px;
}

.gift-reward-container table td a {
    background: #008afd;
    border-radius: 3px;
    padding: 0.4rem 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 auto;
    color: #fff;
    text-decoration: none;
}

.linkedin-button {
    width: 25px;
    height: 25px;
    background: url('/pub/images/linkedin.png');
    background-size: cover;
    display: inline-block;
}

.ti-content h2 {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


/* prize withdraw v2.0*/

.pending-pay-step .pay-step-number {
    color: orange;
    border: 1px solid orange;
}

.pending-pay-step .pay-step-content h2 {
    color: orange;
}


/* disclaimer alert */

.disclaimer-alert {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 10;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.disclaimer-alert.active {
    display: flex;
}

.disclaimer-content {
    background-color: #e23434;
    padding: 35px;
    width: 45%;
    max-width: 600px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    z-index: 11111;
    position: relative;
}

.disclaimer-content h2 {
    font-size: 20px;
    font-weight: 500;
}

.disclaimer-content p {
    font-size: 14px;
}


/* The Close Button */

.disclaimer-content .close {
    position: absolute;
    color: #fff;
    font-size: 16px;
    right: 5px;
    top: 5px;
    font-weight: 100;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-content .close:hover,
.disclaimer-content .close:focus {
    opacity: .5;
    text-decoration: none;
    cursor: pointer;
}

@media(max-width: 768px) {
    .disclaimer-content {
        width: 90%;
    }
}


/*update*/

.miner-type-select {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 2.4rem;
    justify-content: space-between;
}

.miner-type-select-item {
    width: calc(50% - 1.4rem);
    background: #ffffff;
    border: 1px solid #f2f2f2;
    box-shadow: 0px 6px 20px rgb(0 0 0 / 5%);
    border-radius: 5px;
    padding: 1rem;
    cursor: pointer;
    transition: .2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

.miner-type-select {
    gap: 20px;
}

.miner-type-select-item {
    width: 100%;
}

.miner-type-select-item .marker {
    font-size: 10px;
    color: #fff;
    font-weight: 600;
    padding: 1px 7px;
    background: #d30ca5;
    border-radius: 4px;
    margin-left: 10px;
    transition: .2s ease;
}

.miner-type-select-item .icon {
    font-size: 18px;
    position: absolute;
    right: 10px;
    margin-top: 7px;
    color: #d30ca5;
}

.miner-type-select-item.active {
    color: #fff;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
}

.miner-type-select-item.active .marker {
    background: #fff;
    color: #ef0aba;
}

.miner-type-select-item.active .icon {
    color: #fff;
}

.select-plan-title {
    margin-bottom: 15px;
}

.calculate-earnings__calculator-data-item__row.disabled-bonus {
    opacity: .3;
    pointer-events: none;
}

.pro-plan-time-select {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 2.4rem;
    justify-content: space-between;
}

.pro-plan-time-item {
    width: calc(50% - 1.4rem);
    background: #ffffff;
    border: 1px solid #f2f2f2;
    box-shadow: 0px 6px 20px rgb(0 0 0 / 5%);
    border-radius: 5px;
    padding: 1rem;
    cursor: pointer;
    transition: .2s ease;
}

.pro-plan-time-item.active {
    color: #fff;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
}

.calculate-earnings__calculator-results-item.full-width-ri {
    width: 100%;
}

.pro-plan-container {
    display: none;
}

.pro-plan-container.active {
    display: block;
}

.pro-income-prof {
    font-size: 14px;
    color: green;
    border: 1px solid green;
    border-radius: 4px;
    padding: 4px 5px;
    font-weight: 400;
    line-height: 14px;
    margin-left: 10px;
}

#pro-income {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pro-description {
    position: absolute;
    width: 400px;
    background: linear-gradient(272.47deg, #008afd 0%, #ef0aba 100%);
    color: #fff;
    border-radius: 4px;
    padding: 15px;
    bottom: 0;
    margin-bottom: 60px;
    z-index: 100;
    transition: .2s ease;
    opacity: 0;
    text-align: left;
    box-shadow: 0px 6px 20px rgb(0 0 0 / 5%);
    visibility: hidden;
}

.pro-description p {
    font-size: 14px;
    margin-bottom: 10px;
}

.pro-description a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    border-bottom: 1px solid;
}

.miner-type-select-item:hover .pro-description {
    opacity: 1;
    visibility: visible;
}

@media(max-width: 800px) {
    /*    .miner-type-select-item:hover .pro-description{
      opacity: 0;
    }

    .miner-type-select-item:focus .pro-description{
      opacity: 1;
    }*/
    .pro-description {
        right: 0;
        margin-top: -105%;
        left: auto;
        max-width: 300px;
    }
}

@media(max-width: 800px) {
    .pay-page-pro-plan .pro-plan-time-item {
        width: 100%;
    }
    .pay-page-pro-plan .miner-type-select-item {
        width: 100%;
    }
    .pay-page-pro-plan .pro-description {
        right: 0;
        margin-top: -105%;
        left: 0;
        max-width: 100%;
    }
}

.pro-miner {
    background: #df0bae;
    padding: 1px 5px;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
}

.miner-status.enable-pro-button {
    color: #fff;
    text-decoration: none;
    background: #008afd;
}

.pro-table {
    width: 100%;
    padding: 50px 0;
    position: relative;
}

.pro-table table {
    width: 100%;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
    border-radius: 4px;
}

.pro-table table th {
    text-transform: uppercase;
    font-size: 12px;
    background: #f2f4f7;
}

.pro-table table th.regular {
    /*font-size: 16px;*/
}

.pro-table table th.pro {
    font-size: 16px;
    color: #fff;
    background: linear-gradient(289.76deg, #760b8a 0%, #cf0ca1 100%);
    padding: 20px 0;
}

.pro-table table td {
    text-align: center;
    padding: 5px 0;
}

.pro-table tr:nth-child(even) {
    background: #f2f4f7;
}

.pro-plan-miner-options {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
    align-items: center;
}

.pro-plan-miner-options a {
    text-decoration: none;
    color: #ef10ba;
    border-bottom: 1px solid #ec0ab8;
}

@media(max-width: 768px) {
    .pro-plan-miner-options {
        flex-direction: column;
    }
}

.pro-balance {
    font-size: 14px;
    line-height: 16px;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    background: linear-gradient( 272.47deg, #008afd 0%, #ef0aba 100%);
    border-radius: 4px;
    padding: 4px 0;
    width: fit-content;
    padding-right: 4px;
}

.pro-left {
    padding: 0 15px;
    display: flex;
    align-items: center;
    color: #fff;
}

.pro-right {
    display: flex;
    flex-direction: column;
    color: #fff;
    /*background: #fff;*/
    padding: 4px 10px;
    padding-left: 0;
}

.pro-right .pro-in-btc {
    font-size: 18px;
    padding-top: 3px;
    padding-bottom: 6px;
}

.pro-right .pro-in-usd {}

.item-card-pro {
    max-width: 106rem;
    padding: 0;
    background: transparent;
}

.item-card-pro .pro-items {
    background: #fff;
    -webkit-border-top-left-radius: 1.6rem;
    -webkit-border-top-right-radius: 1.6rem;
    -moz-border-radius-topleft: 1.6rem;
    -moz-border-radius-topright: 1.6rem;
    border-top-left-radius: 1.6rem;
    border-top-right-radius: 1.6rem;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pro-items .statistics__card-numbers {
    width: 34rem;
    border-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-card-pro .statistics__card-description {}

.item-card-pro .statistics__card-description .statistics__card-description-title {
    color: #fff;
    font-weight: 400;
}

.pro-items-description {
    background: linear-gradient(284.15deg, #2c33b9 -0.52%, #170e46 -0.52%, #420a7c 50.96%, #e20ca6 106.31%);
    color: #fff;
    -webkit-border-bottom-right-radius: 1.6rem;
    -webkit-border-bottom-left-radius: 1.6rem;
    -moz-border-radius-bottomright: 1.6rem;
    -moz-border-radius-bottomleft: 1.6rem;
    border-bottom-right-radius: 1.6rem;
    border-bottom-left-radius: 1.6rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pro-items-description .statistics__card-description {
    width: 34rem;
    padding: 2rem;
}

.new-stats-line {
    width: 100%;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    justify-content: space-between;
    padding: 3px 0;
}

.nsl-title {
    display: flex;
    align-items: center;
}

.nsl-data {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.nsl-data .amount-usd {
    color: orange;
}

.new-stats-style .statistics__card-description-icon i {
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #008afd;
}

.new-stats-style .statistics__card-numbers {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/*comparison modal*/

.pro-income-comparison {
    margin-bottom: 20px;
    border-radius: 4px;
}


/* The Modal (background) */

.comparison-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 100;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.comparison-modal.active {
    display: flex;
}


/* Modal Content/Box */

.comparison-modal .modal-content {
    background-color: #fefefe;
    padding: 0;
    border: 1px solid #888;
    width: 60%;
    /* Could be more or less, depending on screen size */
}

.comparison-modal .pro-table {
    padding-bottom: 25px;
    padding-top: 20px;
}

.comparison-modal h2 {
    margin-top: 20px;
    margin-bottom: 0;
}

@media(max-width: 800px) {
    .comparison-modal h2 {
        font-size: 2.2rem;
    }
    .comparison-modal .modal-content {
        width: 90%;
    }
    .comparison-modal .pro-table table th {
        font-size: 12px;
        line-height: 12px;
        padding: 8px 0;
    }
    .comparison-modal .pro-table table td {
        font-size: 12px;
        line-height: 12px;
        padding: 8px 0;
    }
}


/* The Close Button */

.comparison-modal .close {
    color: #aaa;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    right: 25px;
    top: 25px;
}

.comparison-modal .close:hover,
.comparison-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.calculate-earnings__calculator-results.incoming-data.disable-data .calculate-earnings__calculator-results-item h4,
.calculate-earnings__calculator-results.incoming-data.disable-data .calculate-earnings__calculator-results-item p {
    opacity: .3;
}


/* update 1723687126387123*/

.statistics_card_contracts {
    font-size: 27px;
    font-weight: 500;
    padding-left: 10px;
    color: #008afd;
}

.statistics__card-description-title {
    display: flex;
    align-items: center;
}

.statistics__card {
    max-width: 36rem;
}

.new-stats-line {
    font-size: 14px;
}

.nsl-data {
    flex-direction: row;
}

.nsl-data-btc-value {
    font-weight: 300;
    padding: 0 4px;
}

.pro-disclaimer strong {
    font-weight: 500;
}

.pro-disclaimer a {
    color: #fff;
}

.pro-disclaimer p {
    margin-bottom: 1rem;
}

.pro-disclaimer button {
    background: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    border: 0px;
    cursor: pointer;
    color: red;
    font-size: 18px;
    margin-top: 25px;
}

.pro-dis {
    z-index: 100;
}

.pro-confirm-controls {
    display: flex;
    flex-direction: row;
    gap: 7px;
}

.pro-confirm-buttons button {
    border: 0px;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
}

.pro-confirm-buttons button.confirm-miner-pro {
    background: #4fa44f;
    color: #fff;
}

.pro-confirm-buttons button.revert-miner-pro {
    background: red;
    color: #fff;
}

.pro-confirm-controls {
    display: flex;
    flex-direction: row;
    gap: 7px;
}

.pro-confirm-buttons button {
    border: 0px;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
}

.pro-confirm-buttons button.confirm-miner-pro {
    background: #4fa44f;
    color: #fff;
}

.pro-confirm-buttons button.revert-miner-pro {
    background: red;
    color: #fff;
}

.buy-page-calculator {
    position: relative;
}

.bonus-control {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.bonus-control input {
    width: 200px;
    padding: 3px 15px;
}

.bonus-control button {
    padding: 3px 15px;
    cursor: pointer;
}


/* reinvests changes*/

.withdraw-source__tabs-item {
    line-height: 1;
}

@media(max-width: 550px) {
    .mobile-short .mobile-hidden {
        display: none;
    }
    .withdraw-source__tabs-item.mobile-short svg {
        margin-right: 0;
    }
    .withdraw-source__tabs-item {
        padding: 2rem 1rem;
    }
}

.balance-pay-buttons {
    padding-top: 0px;
}

.balance-pay-buttons button {
    box-shadow: none;
}

.balance-pay-buttons {
    font-weight: 500;
}

.balance-pay-content {
    padding-bottom: 15px;
}

.pay-balance-form .confirm-pay {
    display: none;
}


/* upd 2503 */

@media(max-width: 500px) {
    .id-confirmation__upload {
        min-width: 100%;
    }
}

.tfa-row {
    max-width: 80%;
}

.tfa-row .tfa-qr {
    text-align: center;
}

.tfa-row .tfa-qr img {
    max-width: 200px;
}

.tfa-container .acc-info__form-input:read-only {
    background: #f5f7fa;
    border: 1px solid #e4e7eb;
}

.tfa-desc {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.tfa-desc p {
    font-weight: 300;
    font-size: 1.5rem;
    color: #3e4c59;
    max-width: 450px;
    text-align: center;
}

.tfa-enable_info {
    text-align: center;
}

.tfa-enable_info .tfa-enable-icon {
    font-size: 5rem;
    line-height: 0.5;
    color: #008afd;
}

.tfa-enable_info .tfa-enable_text {
    font-weight: 300;
    font-size: 1.4rem;
    color: #3e4c59;
}


/* 2fa login*/

.login-2fa-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-2fa-text i {
    font-size: 3rem;
    line-height: 0.5;
    color: #008afd;
}

.login-2fa-text {
    padding-top: 15px;
    text-align: center;
    font-weight: 300;
    font-size: 1.4rem;
    color: #3e4c59;
}

.easter-table {
    overflow: auto;
}

.easter-table tr td:first-child {
    text-align: right;
}

.easter-table table thead th {
    padding-left: 25px;
    padding-right: 25px;
}

.easter-table table td {
    text-align: center;
    padding: 14px 9px;
}

.easter-plan-container {
    display: none;
}

.easter-plan-container.active {
    display: block;
}

#easter-income {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* 17.04 */

@media(max-width: 750px) {
    .miner-type-select {
        flex-wrap: wrap;
        justify-content: center;
    }
    .miner-type-select-item {
        width: calc(50% - 1.4rem);
    }
}

@media(max-width: 450px) {
    .miner-type-select-item {
        width: 100%;
    }
}

.withdraw-key-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.withdraw-key-container .acc-info__form-row {
    margin-bottom: 4rem;
}