﻿body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: #ff9900;
    outline: 1px solid #ff9900;
    border-radius: 10px;
}
.fixed_headers tbody::-webkit-scrollbar{
    width:7px;
}
.fixed_headers tbody::-webkit-scrollbar-thumb {
    background-color: #ff9900;
    outline: 1px solid #ff9900;
    border-radius: 10px;
}

input[type="text"] {
    margin-bottom: 0 !important;
}

.showbox {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.17);
    z-index: 999;
}

.loader {
    position: relative;
    margin: 0 auto;
    height: 80px;
    width: 200px;
    margin-top: 20%;
}

    .loader:before {
        content: '';
        display: block;
        padding-top: 100%;
    }

.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

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

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}





.loader-upi {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 7em;
    height: 7em;
    border: none;
    border-radius: 50%;
    background: #FF5722;
    background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    /* background: -webkit-linear-gradient(left, #F44336 10%, rgba(255, 255, 255, 0) 42%); */
    background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    /* background: linear-gradient(to right, #F44336 10%, rgba(255, 255, 255, 0) 42%); */
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

    .loader-upi:before {
        width: 50%;
        height: 50%;
        background: #ffffff;
        border-radius: 100% 0 0 0;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
    }

    .loader-upi:after {
        background: #fff;
        width: 75%;
        height: 75%;
        border-radius: 50%;
        content: '';
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.payment-container {
    text-align: center;
    margin-top: 13%;
}

    .payment-container p {
        font-size: 20px;
    }

.button-back {
    outline: none;
    border: none;
    padding: 10px;
    width: 100px;
    border: 1px solid #00BCD4;
    background: #00BCD4;
    color: white;
    font-size: 16px;
    box-shadow: 1px 1px 6px -1px #607D8B;
    cursor: pointer;
}
