*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1.5;

}

:root{
    --primary-color: #1C1C1E;
    --secondary-color: #FF9320;
    --black-color: black;
    --white-color: white;
    --very-bold: 700;
    --light-border: #D4AF37;
}

body{
    background-color: var(--primary-color);
    
}
.big-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.task-container{
    background: url(image/blue-bg-dot-D02CQDn2.png) var(--secondary-color);
    text-align: center;
    padding: 40px 0 20px 0;
    border-radius: 10px;
}

a .task p {
    color: #000 ;
}
.task-container img{
    width: 150px;
}

.task-container .text{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-top: 10px;
}
.task-details{
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.task-content,
.product-content {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.task-details .common-bonus,
.product-content  .common-bonus {
    background-color: var(--secondary-color);
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-radius: 10px;  
    background: linear-gradient(to right, #059669, #111111);
    
}
.task-details .common-bonus .head,
.product-content  .common-bonus .head {
    font-weight: 700;
    color: var(--white-color);
}

.task-content .task,
.product-content .task {
    background-color: var(--white-color);
    padding: 10px 20px;
    border-radius: 10px;
}

.product-content .task {
    padding: 0 !important;
}

.product-content .text,
.product-content .price {
    font-size: 1.2rem;
}

.the-task .task-detail{
    
}

.product-content .head {
    color: #000 !important;
}

.product-content .arrow {
    color: #fff;
    border-radius: 5px;
    background: linear-gradient(to right, #059669, #111111);
}


.task-content .the-task,
.product-content .the-task {
    display: flex;
    align-items: center;
    gap: 20px;
}
.the-task img{
    width: 60px;
}
.the-task .head{
    font-weight: 700;
    font-size: 1.1rem;
}

.the-task .text{
    /* text-align: center; */
    font-weight: 500;
}

.task .arrow{
    width: 30px;
    height: 30px;
    /* border: 2px solid; */
}


.invest-button {
    all: unset;
    box-sizing: border-box;
    font-size: 21px;
    cursor: pointer;
    width: 180px;
    height: 180px;
    margin: auto !important;
    font-weight: 900;
    z-index: 3;
    padding: 10px 15px;
    border-radius: 50%;
    background-color: #059669;
    color: #fff;
    border: 1px solid #ffa442;;
}

.button-zoom {
    width: 188px;
    height: 188px;margin: auto;
    /* left: 115px; */
    margin-left: -5px;
    border-radius: 50%;
    animation: shine-out 3s ease-in-out infinite;
}

@keyframes shine-out {
    100% { border: 1px solid #059669e2;;  }
    90% { border: 3px solid #ff9625cb;;  }
    80% { border: 7px solid #fe9b31bd;;  }
    70% { border: 10px solid #fea03cb7;;  }
    60% { border: 13px solid #ff9625a9;;  }
    50% { border: 16px solid #fe9b3197;;  }
    40% { border: 19px solid #fea03c82;;  }
    30% { border: 21px solid #fea03c6e;;  }
    20% { border: 24px solid #fea03c45;;  }
    10% { border: 27px solid #fea03c1e;;  }
    0% { border: 30px solid #ffa94d00;;  }
}


@-webkit-keyframes shine-out {
    100% { border: 1px solid #059669e2;;  }
    90% { border: 3px solid #ff9625cb;;  }
    80% { border: 7px solid #fe9b31bd;;  }
    70% { border: 10px solid #fea03cb7;;  }
    60% { border: 13px solid #ff9625a9;;  }
    50% { border: 16px solid #fe9b3197;;  }
    40% { border: 19px solid #fea03c82;;  }
    30% { border: 21px solid #fea03c6e;;  }
    20% { border: 24px solid #fea03c45;;  }
    10% { border: 27px solid #fea03c1e;;  }
    0% { border: 30px solid #ffa94d00;;  }
}

.invest-button:hover {
    background-image: linear-gradient( 110deg, #111111,  #059669);
}

.invest-container {
    background-color: #fff;
    border-radius: 5px;
}


.invest-box {
    font-size: 24px;
    cursor: pointer;
    font-weight: 900;
    padding: 10px 15px;
    position: absolute;
    bottom: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #059669;
    color: #fff;
    height: 77vh;
    width: 100%;
    z-index: 15;
}

.invest-box input,
#investNow input {
    padding: 10px 20px;
    border: none;
    font-size: 19px;
    outline: none;
    border-radius: 5px;
    width: 100%;
    background-color: #f3f3f3;
}

.invest-box label,
#investNow label {
    font-weight: 600;
    font-size: 19px;
}

.invest-box button,
.login-btn {
    font-size: 19px;
    cursor: pointer;
    font-weight: 900;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    width: 100%;
    text-align: center;
    background-color: #059669;
}

.login-button {
    /* transform: scale(0.80); */
}

.login-button:hover {
    transform: scale(1.01);
}


.total-boxes{
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    /* border: 2px solid; */

}

.group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    /* border: 2px solid; */

}

.dashboard{
    width: 95%;
    margin: 0 auto;
    padding: 0 !important;
    padding: 30px 0;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.box{
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 3px 5px rgba(255, 255, 255, 0.127);
    background-position: right;
    background-size: cover;
    /* background: linear-gradient(to right, #059669, #111111); */
}
.box i{
    font-size: 1.5rem;
}

.box .text{
    font-size: .9rem;
}
.box .price{
    font-weight: 600;
    font-size: 1.2rem;
}
.box span{
    font-size: .7rem;
    vertical-align: super;
}
.arrow{
    margin-top: 10px;
    /* border: 1px solid; */
    text-align: end;
    cursor: pointer;
}

.total-trade{
    background-color: #059669;
}

.profit-paid{
    background-color: #FF9320;
    /* outline: 3px solid black; */

}
.total-reward{
    background-color: #f94144;
    /* outline: 3px solid black; */

}

.total-referral{
    background-color: #42f687;
    /* outline: 3px solid black; */

}

.product-dets ul li {
    font-weight: 600;
    font-size: 15px;
    line-height: 2.5em;
    list-style-type: square;
}

.modal-container{
    position: fixed !important;
    width: 100%;
    left: 0;
    top: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #00000054;
}

.modal {
    z-index: 5;
}

.referralCode-Box {
    width: 100%;
    border-radius: 10px;
    background-color: #059669;
}

.referralCode-Box input {
    width: 100%;
    font-size: 23px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-weight: 800;
    background-color: transparent;
}

.referralCode-Box button {
    width: 100%;
    margin-bottom: -10px;
    padding: 10px 15px;
    font-size: 19px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-weight: 800;
    background-color: #111111;
}


.tooltip-text {
    position: absolute;
    display: none;
    color: #FFFEFE;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 50;
    font-size: 17px;
    bottom: 75% !important;
    left: 50%;
    transition: all 2s ease-in-out;
    background-color: #000;
    border: 1px solid #FFFEFE;
}

.tooltip-text:after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 100%;
    border-width: 11px;
    left: 32%;
    transform: rotate(0deg);
    border-width: 10px;
    border-style: solid;
    border-color: #080808 transparent transparent transparent;
}

.copy-tooltip {
    height: 0 !important;
    display: inline-block;
}

.icon-color {
    color: #059669;
}

@keyframes slide-up {
    from {
        height: 0;
    } to {    height: 77vh;}
}

@-webkit-keyframes slide-up {
    from {
        height: 0;
    } to {    height: 77vh;}
}

@keyframes slide-down {
    from {
        height: 77vh;
    } to {    height: 0;}
}

@-webkit-keyframes slide-down {
    from {
        height: 77vh;
    } to {    height: 0;}
}