#root {
    min-height: 100vh;
    display: flex;
    min-width: 0;
    width: 100%;
    height: 100%;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #00B4FF;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #00C4B4;
}

.loader {
    margin: auto;
    width: 50px;
    height: 50px;
}

.circular-loader {
    animation: rotate 2s linear infinite;
}

.loader-path {
    fill: none;
    stroke-width: 3px;
    animation: animate-stroke 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

.main-menu-item span,
.main-menu-item a span {
    white-space: pre-line !important;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-stroke {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        stroke: #7352C7;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
        stroke: #7352C7;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
        stroke: #7352C7;
    }
}

.ref-link svg {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

/*fivex*/
.fivex-bar-main {
    height: 2rem !important;
}

.fivex-indicator-div {
    position: absolute;
    top: 19px;
    width: 50px;
    height: 50px;
    padding: 5px;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 10px #bebebe;
}

.fivex-indicator-div img {
    width: 40px
}

.fivex-indicator-div p {
    font-size: 14px;
}
.fivex-package-name{
    font-weight: 600;
}

/*END fivex*/

@media screen and (max-width: 767px) {
    .landingLink {
        font-size: 14px !important;
        padding: 12px 24px !important;
    }

    .depositTabs .MuiTabs-flexContainer {
        flex-direction: row !important;
    }

    .pngBalance {
        flex-direction: column !important;
    }

    /*fivex*/
    .fivex-bar-main {
        height: 1rem !important;
    }

    .fivex-indicator-div {
        position: absolute;
        top: 51px;
        width: 25px;
        height: 25px;
        padding: 2px;
        background: #fff;
        border-radius: 100%;
        box-shadow: 0 0 10px #bebebe;
    }

    .fivex-indicator-div img {
        width: 20px
    }

    .fivex-indicator-div p {
        font-size: 8px;
    }
    .fivex-package-name{
        font-weight: 600;
    }
    .fivex-package-reachable{
        font-size: 10px;
    }
    /*END fivex*/
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .pngBalanceCard {
        width: 60%
    }

    .pngBalanceBtn {
        width: 40%

    }

    /*fivex*/
    .fivex-bar-main {
        height: 1rem !important;
    }

    .fivex-indicator-div {
        position: absolute;
        top: 51px;
        width: 25px;
        height: 25px;
        padding: 2px;
        background: #fff;
        border-radius: 100%;
        box-shadow: 0 0 10px #bebebe;
    }

    .fivex-indicator-div img {
        width: 20px
    }

    .fivex-indicator-div p {
        font-size: 8px;
    }
    .fivex-package-name{
        font-weight: 600;
    }
    .fivex-package-reachable{
        font-size: 11px;
    }
    /*END fivex*/
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    color: #222 !important;
}

.user-done {
    font-size: 55px !important;
    color: rgb(72, 147, 3);
}

.user-done-not {
    font-size: 55px !important;
    color: rgb(147, 3, 3);
}

.user-small-done-not {
    font-size: 25px !important;
    color: rgb(147, 3, 3);
}

.user2-done {
    font-size: 45px !important;
    color: rgb(72, 147, 3);
    position: absolute;
    top: -2px;
}

.user-small-done {
    font-size: 25px !important;
    color: rgb(72, 147, 3);
}

.user2-small-done {
    font-size: 20px !important;
    color: rgb(72, 147, 3);
    position: relative;
    top: -4px;
}

.fav-item-box {
    position: absolute;
    right: 6px;
    visibility: hidden;
    transition: visibility 100ms ease-in-out;
}

.main-menu-item a.MuiLink-root:hover .fav-item-box {
    visibility: visible;
}


.barcontainer {
    background-color: #181818;
    position: relative;
    transform: translateY(-50%);
    top: 50%;
    margin-left: 50px;
    width: 10px;
    height: 200px;
    float: left;
    border-radius: 10px;
    /*//border darken(#98AFC7, 40%) 3px solid*/
}

.bar {
    background-color: #9BC9C7;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;

    /*//border-top: 6px solid #FFF;*/
    box-sizing: border-box;
    animation: grow 1.5s ease-out forwards;
    transform-origin: bottom;
}

.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

@keyframes grow {
    from {
        transform: scaleY(0);
    }
}

.speedometer .current-value {
    display: none !important;
}

.noPadding input {
    padding: 3.5px 14px !important;
}