.newest{
    width: 100%;
    height: 100vh !important;
    background: url(./images/loadergf.gif) no-repeat center;
    background-color: #000000;
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
}

.loader-cover{
    /* display: none; */
    width: 100%;
    height: 250px;
    background-color: #000000;
    position: absolute;
    bottom: 0;
    /* border: 2px solid red; */
}

.right-image{
    animation: bounce 3s infinite;
}

@keyframes bounce {
    20%,50%,80%,to{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-30px);
    }
    70%{
        transform: translateY(-15px);
    }
    90%{
        transform: translateY(4px);
    }
}

.disclaimer{
    display: flex;
    flex-direction: column;
    width: 95%;
    text-align: justify;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
    border: 2px solid black ;
    border-radius: 8px;
    padding: 20px;
    color: black;
}

.dis-items{
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.dis-items h1{
    background-color: blue;
    width: 100%;
    height: 50px;
    font-weight: 800;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dis-items p{
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
    font-size: 20px
}

.dis-items p span{
    font-size: 20px;
    font-weight: 900;
    color: blue;
}

.checkout-det{
    width: 90%;
    /* height: 500px; */
    /* border: 2px solid red; */
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.checkout-det h1{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 410px;
    /* background-color: blue; */
}
.checkout-det h3{
    font-size: 24px;
    font-weight: 800;
    width: 530px;
}

.checkout-det h4{
    font-size: 18px;
    /* font-weight: 600; */
    width: 300px;
    margin-bottom: 25px;
}

.checkout-det p{
    font-size: 18px;
    width: 390px;
}

.checkout-det img{
    width: 380px;
}

.checkout-btn{
    width: 100%;
    /* height: 60px; */
    background-color: blue;
    padding:  10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}









@media screen and (min-width: 120px) and (max-width: 650px) {
    .newest{
        width: 100%;
        height: 100vh !important;
        display: flex;
        background: url(./images/loaderrphone.gif) #000000 no-repeat center;
        justify-content: center;
        align-items: center;
        position: fixed;
    }

   
    .loader-cover{
        display: block;
        position: absolute;
        width: 100%;
        height: 300px;
        background-color: #000000;
        top: 55%;
        /* border: 3px solid white; */
    }

    .header-text h6 {
        color: blueviolet;
        font-weight: 600;
    }

    .header-text h2 {
        font-size: 15px;
    }

    .header-text em {
        font-size: 50px;
    }

    .dis-items{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .checkout-det{
        width: 90%;
        /* border: 2px solid red; */
    }

    .checkout-det h1{
        /* width: 90%; */
    }
    
    .checkout-det h4{
        /* width: 90%; */
    }

    .checkout-det h3{
        width: 90%;
    }

    form{
        width: 100%;
    }

}

@media screen and (min-width: 700px) and (max-width: 1000px) {
    .loader-cover{
        /* border: 3px solid red; */
        bottom: 25%;
        height: 150px;
    }
}

.small-logo{
    display: none;
    /* width: 150px; */
}

@media screen and (min-width: 227px) and (max-width: 761px) {
    .small-logo{
        display: flex;
        width: 150px;
        position: absolute;
        top: 30px;
        /* border: 3px solid red; */
    }

    .big-logo{
        display: none;
    }
}

@media screen and (min-width: 127px) and (max-width: 226px) {

    .header-area .main-nav{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .small-logo{
        display: flex;
        width: 100px;
        position: relative;
        top: 10px;
    }

    .big-logo{
        display: none;
    }
}
