@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");

:root {
    --heading: "Hind", sans-serif;
    --base: "Hind", sans-serif;
    --white-color: #fff;
    --black-color: #000;
    --theme-color: #d69307;
    --theme-color2: #ffc929;
    --heading: #565252;
    --bg-gray: #f5f5f5;
    --bg-gray2: #e3e6ed;
    --bg-gray3: #f3f4f7;

    --dark-black: #0b0b0d;
    --medium-black: #181b22;
    --light-black: #272a31;
    --gradient-black: linear-gradient(71deg, #080509, #1a171c, #080509);
    --gradient-golden: linear-gradient(90deg, rgba(167, 107, 9, 1) 0%, rgba(255, 216, 107, 1) 38%, rgba(221, 167, 79, 1) 100%);
    --dark-gold: #a76b09;
    --medium-gold: #ffd86b;
    --light-gold: #dda74f;
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 15px;
    color: var(--white-color);
    margin: 0;
    padding: 0;
    font-weight: 400;
    background: var(--light-black);
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-family: var(--base);
    font-size: 1.1rem;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading);
    font-weight: 600;
}

.my-dark-bg {
    background: #0b0b0d;
}
.my-medium-bg {
    background: #181b22;
}
.my-light-bg {
    background: #272a31;
}
.my-gradient-bg {
    background: linear-gradient(71deg, #080509, #1a171c, #080509);
}
.border-gold {
    border: 1px solid var(--medium-gold);
}

/*General Stylesheet*/
/*===================================*/
.form-control {
    border: 0;
    border-bottom: 2px solid #e1a214 !important;
    background: var(--light-black);
    color: #fff;
    margin-bottom: 10px;
}
.form-control:placeholder {
    color: #fff;
}
.form-control::-moz-placeholder {
    color: #fff;
}

.sticky {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 999;
}

.btn1 {
    border-radius: 3rem;
    border: 0;
    font-size: 1.05rem;
    line-height: 1;
    position: relative;
    padding: 1rem 2rem;
    color: var(--white-color);
    background-image: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    outline: none;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    min-width: 150px;
}

.btn1:hover {
    background-image: linear-gradient(135deg, var(--theme-color2) 0%, var(--theme-color) 100%);
}

.btn2 {
    border-radius: 3rem;
    font-size: 1.05rem;
    padding: 0.65rem 1.75rem 0.75rem;
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    outline: none;
    text-decoration: none;
    font-weight: 600;
}

.btn2:hover {
    color: var(--sub-heading);
    border-color: var(--sub-heading);
}

.title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--theme-color2);
}

.bg-gray {
    background: var(--bg-gray2);
}

.bg-gray3 {
    background: var(--bg-gray3);
}

.bg-theme {
    background: var(--theme-color);
}

.wrapper {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

.topHeader {
    background: var(--black-color);
}

.homeLink ul {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}

.homeLink li {
    flex: 1;
}

.homeLink ul li a {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.homeLink ul li a img {
    width: 37px;
    margin-bottom: 5px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #000;
}

/* Bottom Menu */
/* ================================ */
.bottomMenu {
    position: fixed;
    bottom: 0;
    width: 1000px;
    max-width: 100%;
    background: var(--dark-black);
    box-shadow: 0 -5px 15px rgb(0 0 0 / 10%);
    z-index: 99;
    border-radius: 10px 10px 0 0;
}

.menuBTM ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    padding: 5px 0;
}

.menuBTM ul li {
    display: block;
    flex: 1;
}

.menuBTM ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    position: relative;
    font-size: 11px;
    line-height: 1.2;
    color: #d9d9d9;
    cursor: pointer;
}

.menuBTM ul li a i {
    font-size: 22px;
}

.menuBTM ul li a.active,
.menuBTM ul li a:hover {
    color: var(--medium-gold);
}

.menuBTM ul li img {
    width: 40px;
    margin-top: -10px;
}
@media only screen and (max-width: 600px) {
    .menuBTM ul li img {
        width: 25px;
        margin-top: -10px;
    }
}

.bg-gradient-info {
    background: -webkit-gradient(linear, left top, right top, from(#90caf9), color-stop(100%, #0c70c0)) !important;
    background: linear-gradient(to bottom, #90caf9, #0c70c0 100%) !important;
}

.bg-gradient-warning {
    background: -webkit-gradient(to bottom, #ffbd21, #d3821a 100%) !important;
    background: linear-gradient(to bottom, #ffbd21, #d3821a 100%) !important;
}

.hammenu {
    display: flex;
    flex-direction: column;
    background: var(--light-black);
    margin-bottom: 1.75rem;
}

.hammenu li {
    border-bottom: 1px solid #31353c;
}

.hammenu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background: var(--white-color);*/
    padding: 8px 10px 8px 15px;
}

.hammenu li a i {
    font-size: 16px;
    margin-right: 5px;
}

/* Personal Information */
.p-info,
.my-team,
.my-order,
.pro-dets {
    margin: 0 1.5rem;
    margin-top: 3rem;
    padding: 4rem 1.5rem 2rem;
    background-color: #041922;
    border-radius: 1rem;
    position: relative;
}

.p-info .profile-img {
    height: 75px;
}

.p-info .img-contain {
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
}
.p-info .form-group input {
    background: var(--light-black);
    color: var(--white-color);
}
.p-info .form-group label {
    color: var(--white-color) !important;
    background: transparent;
    display: block;
    margin-bottom: 5px;
}

.p-info .form-group > .form-control:not(:placeholder-shown) ~ label::after {
    background: none;
}
.p-info .form-group > .form-control:focus ~ label::after {
    background: none;
}
/* .p-info form input {
    display: block;
    min-height: 40px;
    width: 100%;
    margin-top: 10px;
    border: none;
    border-bottom: 2px solid #CA2C48;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    outline: none;
    padding: 0 1rem;
} */

/* My team */
.num-bg {
    padding: 12px 0;
    margin-bottom: 10px;
}


.num-bg h6 {
    font-size: 20px;
    text-transform: uppercase;
}

.my-team {
    padding: 1.5rem;
}

.my-team .inner-contain {
    padding: 1rem;
    border-radius: 10px;
    background: linear-gradient(#d0ab00 10%, #f29913 70%);
    position: relative;
    overflow: hidden;
}

.my-team .inner-contain .icon {
    position: absolute;
    top: 5px;
    font-size: 16px;
    color: #fff;
    left: 10px;
    z-index: 6;
}

.my-team .inner-contain .my-invite {
    position: relative;
    z-index: 6;
}

.wraper-effect {
    border-radius: 50%;
    position: absolute;
    transition: all 0.5s;
    height: 50px;
    width: 50px;
    background-color: #fdb7c8;
}

.wraper-effect {
    top: -18px;
    left: -18px;
}

.wraper-effect:after,
.wraper-effect:before {
    content: "";
    border-radius: 50%;
    position: absolute;
    transition: all 0.5s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.wraper-effect:before {
    background-color: #955f0f;
    height: 80px;
    width: 80px;
    z-index: 3;
}

.wraper-effect:after {
    background-color: #c88023;
    height: 120px;
    width: 120px;
    z-index: 2;
}

.my-team .my-percentage {
    padding: 10px;
    text-align: center;
    border: 1px solid #ff9800;
 
}

.my-team .my-percentage h6 {
    font-size: 14px;
}

.my-team .my-percentage.active {
    background-color: #ffc107;
    color: #000000
  
}

/* My Order */
.my-order {
    padding: 1.5rem;
    margin-top: 14px;
}

/* Invite Link */
.invite,
.recharge,
.online-service,
.spin,
.spin-dets {
    margin: 0 1.5rem;
    padding: 1.5rem;
    margin-top: 14px;
    background-color: var(--white-color);
    border-radius: 1rem;
    position: relative;
}

.invite .input-contain {
    position: relative;
}

.invite .input-contain input {
    display: block;
    width: 100%;
    min-height: 46px;
    margin-top: 10px;
    padding-right: 60px;
    padding-left: 10px;
    border-radius: 8px;
    outline: none;
}

.invite .input-contain .copy-btn {
    display: inline-block;
    padding: 8px 10px;
    background-color: #2f70a6;
    color: #fff;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
}

/* Recharge */
.recharge input {
    display: block;
    min-height: 40px;
    width: 100%;
    margin-top: 12px;
    border: none;
    border-bottom: 2px solid #ca2c48;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    outline: none;
    padding: 0 1rem;
    font-size: 20px;
}

.recharge .amount-btn {
    display: inline-block;
    padding: 10px 16px;
    background-color: #fff;
    border: 1px solid #dbdbdd;
    color: #121212;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.recharge .amount-btn.active {
    border-color: #2f70a6;
    color: #fff;
    background-color: #2f70a6;
}

/* Sharing */
.sharing {
    margin: 0 0.75rem;
    padding: 0.75rem;
    margin-top: 14px;
    background-color: var(--white-color);
    border-radius: 1rem;
    position: relative;
    margin-bottom: 5rem;
}

.gal-contain {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100px;
}

.gal-contain img {
    height: 100px;
    width: 100%;
    object-fit: cover;
}

/* Product */
.product {
    padding-bottom: 0;
}

.mb-5-rem {
    margin-bottom: 5rem;
}

.product h6 {
    color: #48779f;
    font-weight: 600;
}

.product-img {
    height: 105px;
}

.product-btn {
    padding: 6px 10px;
    border-radius: 5px;
    border: 1px solid #d0d0d0;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-btn.active {
    background-color: #dc0022;
    color: #fff;
}

.progress-container,
.progress {
    background-color: #eee;
    border-radius: 5px;
    position: relative;
    height: 7px;
    width: 100%;
}

.progress {
    background: linear-gradient(45deg, red, orange, yellow, rgb(51, 255, 51), orange, #dc0025);
    width: 0;
    transition: width 0.4s linear;
}

.percentage {
    background-color: #dc0025;
    border-radius: 5px;
    box-shadow: 0 4px 5px rgb(0, 0, 0, 0.2);
    color: #fff;
    font-size: 11px;
    padding: 3px;
    position: absolute;
    top: -9px;
    left: 0;
    width: 40px;
    text-align: center;
    font-weight: 500;
    transition: left 0.4s linear;
}

/* Product details */
.pro-dets {
    margin-top: 1.5rem;
    background-color: #d8becb;
    padding: 0.75rem;
}

#offcanvasBottom {
    height: 45vh;
}

/* Prize */
.spin {
    padding: 0.75rem;
    margin: 0.75rem;
}

.prize-gradient {
    background: rgb(199, 135, 0);
    background: linear-gradient(135deg, rgba(199, 135, 0, 1) 0%, rgba(255, 195, 19, 1) 100%);
    padding: 14px;
    border-radius: 8px;
    color: var(--white-color);
}

.spin h6 {
    font-size: 14px;
}

.spin .lottery {
    background: rgba(199, 136, 0, 0.301);
    background: linear-gradient(135deg, rgb(255, 193, 59) 0%, rgba(255, 195, 19, 1) 100%);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 2px 2px 15px 1px rgba(60, 60, 60, 0.1);
}

.gradient-border {
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(90deg, rgb(243, 169, 9) 0%, rgb(253, 229, 155) 100%);
    border-radius: 10px;
    padding: 8px;
}

.gradient-border .inner-contain {
    padding: 10px;
    background: linear-gradient(135deg, rgb(255, 244, 220) 0%, rgb(255, 246, 220) 100%);
    text-align: center;
    border-radius: 5px;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(90deg, rgb(253, 229, 155) 0%, rgb(243, 169, 9) 100%);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #121212;
}
.num-draw {
    font-size: 10px;
    font-weight: 600;
}
.start-btn {
    padding: 6px 16px;
    background-color: goldenrod;
    color: #fff;
    font-size: 10px;
    border-radius: 10px;
    font-weight: 600;
}
.gradient-border .start-contain {
    padding: 4px;
    background: #222222;
    text-align: center;
    color: #fff;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spin-dets {
    margin: 0.75rem;
    margin-bottom: 5rem;
}

/* RESPOSIVE PANEL */
/* ========================================== */
@media (max-width: 1024px) {
}

 @media only screen and (max-width: 767px) {
                body,
    p {
        font-size: 13px;
    }

    .wrapper {
        width: 100%;
    }

    .homeLink ul li a {
        font-size: 11px;
    }
.m-10{
        width: 50%!important;
}
            }


