html{
    font-size: 14px;
    scroll-behavior: smooth;
}
body {
    font-family: "Arial Narrow", Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	font-style: normal;
    margin: 0;
    padding: 0;
    background-color:var(--white) ;
    height:100vh;
    height: 100dvh;
 }
@media screen and (max-width: 1024px) {
    html{
        font-size: 12px;
    }
}
@media screen and (max-width: 768px) {
    html{
        font-size: 10px;
    }
}

:root {
    --siteblue: #001b79;
    --white: #ffffff;
    --buttoncolor1: #d3505a;
    --lightblue: #E6E6FF;
    --darkpink: #d3505a;
    --lightpink:#a3212c;
    --gray:#E6E4F4;
    --shadow:rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    --linkhover:#cacaca;
    --link2hover:;
    --darkblack:#222223;
    --cardcolor:#f6f5ff;
    --secgrayborder:#e6e7e8;
    --successcolor:#17701b;
    --successcolor1:#019b09;

}


h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Roboto', sans-serif;
}
a{
    color: var(--white);
    text-decoration: none;
}
p{
    margin: 0 0 20px;
}
/* width */
::-webkit-scrollbar {
    width: 3px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--linkhover);
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background:var(--siteblue);
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--darkpink);
  }

hr{
    width: 80%;

}
a:hover{
    color: var(--linkhover);
    text-decoration: none;
}
.wid-50{
    width: 50%;
}
.img {
    width: 100%;
}
.flex-row{
    display: flex;
    flex-direction: row;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.al-item-center{
    align-items: center;
}
.justify-all-center{
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}
.space-betwn{
    justify-content: space-between;
}
.space-around{
    justify-content: space-around;
}
.space-evnly {
    justify-content: space-evenly;
}
.just-content-center{
    justify-content: center;
}

header{
    height: 10vh;
    height: 10dvh;
}


main{
    height: 85vh;
    height: 85dvh;
}
footer{
    height: 0vh;
    height: 0dvh;
    position: relative;
}
/* Header  */
    .head{
        background-color: var(--siteblue);
        padding: 15px ;
        box-shadow: var(--shadow);
        flex-wrap: wrap;
    }
    .h_menu {
        padding: 15px;
        color: var(--white);
        display: flex;
        padding-top: 22px;
        padding-right: 0;
    }

    .h_logo img{
        width: 100%;
        max-width: 150px;
    }
    .h_process{
        position: relative;
        padding: 0 10px 0 40px;
    }


    .h_process::before{
        content: "";
        display: block;
        position: absolute;
        height: 22px;
        width: 22px;
        background: var(--icon-process);
        top: 0;
        left: 10px;

    }
    a:hover .h_process::before:hover{
        color: var(--linkhover);
        background: url(/assets/img/icons/checked.png);
    }
    a:hover .h_process::before:active{
        background: url(/assets/img/icons/checked.png);
    }
    .hbar{
        display: flex;
        height: 11px;
        border-bottom: 2px solid var(--white);
        width: 80px;

    }


    @media screen and (max-width: 1000px) {
        .hbar{
            display: flex;
            height: 11px;
            border-bottom: 2px solid var(--white);
            width: 40px;

        }
        .h_logo img{
            width: 70%;
        }
        .h_process {
            position: relative;
            padding: 0 5px 0 40px;
        }
    }


    @media screen and (max-width: 680px) {
        .h_logo{
            width: 100%;
            justify-content: center;

        }
        .h_menu {
            padding: 0;

            padding-top: 15px;
            padding-bottom: 0px;
            justify-content: center;
            width: 100%;
        }
    }


    @media screen and (max-width: 580px) {

        header{
            height: 17vh;
            height: 17dvh;
        }
    }

/* Main Body  */

/*########################################
    Welcome screen - { Starts}
 #########################################*/

.welcome-screen{
    height: 100dvh;
}
.wecome-left  {
    height: 100dvh;
    background-color: var(--siteblue);
    width: 50%;
}

.wecome-left img  {
    width: 60%;
}
.wecome-right {
    height: 100dvh;
    width: 50%;
    position: relative;

}
.wecome-right img{
    width: 55%;
}
.welcome-text1,
.welcome-text2,
.welcome-text3,
.welcome-text4{
    color: var(--siteblue);
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 2rem;
}
.welcome-text1{
    font-size: 2rem;
}
.welcome-text2{
    font-size: 1rem;
}
.welcome-text3{
    font-size: 2rem;
}
.welcome-text4{
    font-size: 4rem;
    border-top: 2px solid #fff;
    /* margin-top: 20px; */
    display: block;
    padding-top: 2.5rem;
}
.button-width{
    width: 50%;
}
.welcomefooter{
    position: absolute;
    bottom: 0;
    right: 1rem;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1028px) {

.button-width{
    width: 70%;
}
}


 /*########################################
    Welcome screen - { Ends}
 #########################################*/





/*########################################
    Display screen1 - PAGE1  { Starts}
 #########################################*/



.main-container{
    max-width: 1200px;
    /* width: 100%; */
    height: 75vh;
    padding: 0 15%;

}
.filling-section{
    width: 60%;
}
.heading{
    font-size: 26px;
    color: var(--siteblue);
    margin: 0;
}
.sub-heading{
    font-size: 14px;
    color: var(--darkblack);
}
.info-area{
    width: 40%;
}
.info-area img{
    width: 100%;
}
/*  */
form {
    padding: 0px;
    width: 100%;

  }
  button, input {
    border: 0;
    outline: 0;
    font-size: 16px;
    width: 80%;
    border-radius: 5px;
    padding: 16px;
    background-color: #EBECF0;
    /* text-shadow: 1px 1px 0 #FFF; */
    margin: 10px 0;
  }
  input {
    margin-right: 8px;
    box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;

    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    border: 1px solid var(--siteblue);
    appearance: none;
    -webkit-appearance: none;
  }
  input:focus {
    box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
  }

  button {
    color: #fff;
    background-color:var(--siteblue);
    font-weight: bold;
    /* box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC; */
    -webkit-box-shadow: 13px 10px 22px -8px rgba(0,0,0,0.61);
-moz-box-shadow: 13px 10px 22px -8px rgba(0,0,0,0.61);
box-shadow: 13px 10px 22px -8px rgba(0,0,0,0.61);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    font-weight: 600;
    position: relative;
  }
  button:hover {
    box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
    background-color: var(--buttoncolor1);
  }
  button:active {
    box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
  }
  button .icon {
    margin-right: 8px;
  }
  button.unit {
    border-radius: 8px;
    line-height: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 8px;
    font-size: 19.2px;
  }
  button.unit .icon {
    margin-right: 0;
  }
  button.red {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
  }
  button.button1{
    background-color: var(--buttoncolor1);
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
}
  button::after{
    content: url(img/icons/click.png);
    width: 30px;
    right: 56px;
    position: absolute;
    display: flex;
    background-size: contain;
    top: 10px;
  }

  .input-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .input-group label {
    margin: 0;
    flex: 1;
  }
  .filling-section button, input {
    width: 80%;
}
.input-page1{
    width: 80%;
}

  @media screen and (max-width: 1280px) {
    .main-container {

        padding: 0 110px 0;
    }
    .filling-section {
        /* width: 60%; */
        padding-top: 55px;
    }
}
@media screen and (max-width: 768px) {
    .main-container {

        padding: 0 5% 0;
    }
    .filling-section {
        /* width: 60%; */
        padding-top: 23px;
    }
}
@media screen and (max-width: 820px) {
    .main-container {

        padding: 0 5% 0;
    }
    .filling-section {
        /* width: 60%; */
        padding-top:0px;
    }
    button, input {
        width: 90%;
     }
     .info-area {
        margin-top: 10px;
    }
}
@media screen and (max-width: 912px) {

    .main-container {
        padding: 0 5% 0;
    }
    .filling-section {
        padding-top:15px;
    }
}


@media screen and (max-width: 540px) {
    main {
        height: 70vh;
        height: 70dvh;
    }
    .main-container {
        flex-wrap: wrap;
    }
    .filling-section {
        padding-top:0px;
        width: 80%;
        margin-left: 15%;
    }
}

.selected-color{
    color: var(--successcolor1
    );
    font-weight: 600;
}
/* Keypad Starts  */
    .number-pad{
        display: grid;
        grid-template-columns: auto auto auto ;
        gap: 10px;

        padding: 10px;
    }
    .number-pad > div {
        background-color:var(--buttoncolor1);
        color: var(--white);
        border-radius: 10px;
        text-align: center;
        padding: 20px 30px;
        font-size: 30px;
        cursor: pointer;
      }
      .number-pad > div:hover {
        background-color: var(--siteblue);
      }



/* Keypad Ends  */
/*########################################
    Display screen1 - PAGE1  { Ends}
 #########################################*/
/* *************************************************************************************************************** */
/*########################################
    Display screen2 - PAGE2  { Starts}
 #########################################*/


.page2container{
    /* padding: 6% 00 0 0; */
}
.page2container img{
    width: 80%;
    margin-bottom: 050px;
}
.page2main {
    height: 85vh;
    height:85dvh
}
.page2main button, input {
    width: 60%;
}






/*########################################
    Display screen2 - PAGE2  { Ends}
 #########################################*/
/* *************************************************************************************************************** */

/*########################################
    Display screen3 - PAGE3  { Starts}
 #########################################*/
.page3main{
      height: 77vh;
      flex-wrap: wrap;
}
.pg3left{
    width: 65%;
    height: 60vh;
    height: 72vh;


}
.pg3right{
    width: 30%;
    flex-wrap: wrap;
    height: 70dvh;
    background-color: var(--siteblue);
    color: var(--white);
    text-align: center;
    padding: 10px;

}

.product-container{
    height: 50vh;
    height: 50dvh;

    width: 95%;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 2dvh;
    gap: 2vh;
    position: relative;
    display: grid;
    grid-template-columns: auto auto;

}
.product-card{
    width: 80%;
    /* height:15vh;
    height:15dvh; */
    /* height: 150px; */
    position: relative;
    background-color: var(--cardcolor);
    border-radius: 10px;
    border: 1px solid var(--siteblue);
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-height: 116px;
}
.card-img img{
    width: 100%;
    max-width: 100px;
    max-height: 120px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}
.product-card p{
    margin: 0%;
    font-weight: 500;
    font-size: 1.1rem;
}
.delete-button{
    width: 25px;
    height: 25px;
    border-radius: 5px;

    position: absolute;
    right: 10px;
    top: 10px;
   box-shadow: var(--shadow);
 border: 1px solid #BABECC;

}
.card-img{
    width: 35%;
}
.product-card-detail{
    position: relative;
    width: 100%;
    gap: 5px;
}
.card-product-qty {
    position: absolute;
    bottom: -28px;
    right: 0px;
}
.card-product-amount,
.card-product-qty{
    color: var(--siteblue);
}

.delete-button .delete-icon{
    font-size:15px;
    color: red;
}

.delete-button:hover .delete-icon{

    color: #fff;

 }
.delete-button:hover{
    background-color: var(--siteblue);
    color: #fff;
    box-shadow: none;


 }
.input-page3{
    border: 1px solid #b2b2b2;margin-bottom: 25px;
}
.value-container{
align-items: center;
height: 10dvh;
width: 100%;
margin-top: 10%;
}

.value-amount,
.value-details{
    width: 45%;
}
.value-amount{}
.value-details{}

/* below scroll  */
.product-scroll-bottom{
    height: 60dvh;
    width: 100%;
    gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    flex-wrap: wrap;
    align-content: baseline;

}
.product-scroll-heading{
    width: 100%;
    background-color: var(--darkpink);
    padding: 10px;
    padding-left: 20px;
}
.product-scroll-heading p{
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}
.product-card2{

    width: 10rem;
    background-color: var(--cardcolor);
    border: 1px solid #b2b2b2;
    box-shadow: var(--shadow);
    border: 1px solid #eeeeee;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 8px;
    position: relative;
    padding: 5px 0;

}
.cross{
    position: absolute;
    right: 3px;
    top: 3px;
    background-color: var(--cardcolor);
    border: 1px solid var(--secgrayborder);
    box-shadow: var(--shadow);
    padding: 5px;
    border-radius: 50%;


}
.cross-icon{
    color: var(--darkblack);
    font-size: 1rem !important;

}

.product-card2 img{
    width: 70%;
    margin: 20px 0 10px;
    max-width: 100px;
    max-height: 100px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}


.product-card2 p{
    margin: 0;
    color: var(--siteblue);
    font-size: 1.4rem;
    font-weight: 600;
}



/* .product-card2 p{
    margin: 0;
    color: var(--siteblue);
    font-size: 2rem;
    font-weight: 600;
} */

@media screen and (max-width: 1028px) {

    .product-container {
        width: 80%;

    }
    .product-card p {
        font-size: 1.5rem;
    }
    .card-product-qty {

        bottom: -26px;

    }

    .cross-icon{
        color: var(--darkblack);
        font-size: 1.5rem !important;

    }
    .product-card2 p{

        font-size: 2rem;


}


.pg3left{
    width: 75%;



}
.pg3right{
    width: 20%;


}
.product-scroll-bottom {

    grid-template-columns: auto;

}
.product-container {
    width: 95%;
}
}

@media screen and (max-width: 680px) {
    .product-container{
        height: 45vh;
        height: 45dvh;
    }
}
@media screen and (max-width: 580px) {
    .pg3left {
        width: 100%;
        /* height: 60vh; */
        height: 43dvh;
    }
    .product-container {
        height: 38vh;
        height: 38dvh;
        grid-template-columns: auto ;
    }
    .pg3right {
        width: 80%;
    }
    .product-scroll-bottom {
        height: 18vh;

        overflow-y: hidden;
        overflow-x: auto;
        position: relative;
        display: flex;
        /* grid-template-columns: auto auto; */
        flex-wrap: wrap;
        align-content: baseline;
    }
    .pg3right {

        height: 18dvh;

    }
    .product-card {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .hbar {
        display: none;
    }

    .page3main {
        height: 85vh;
        flex-wrap: wrap;
        align-content: baseline;
    }
    .product-scroll-heading p {
        color: var(--white);
        font-size: 1.2rem;
        margin: 0;
    }
    header {
        height: 15vh;
        height: 15dvh;
    }
    .product-scroll-heading {
        padding: 5px 10px;
     }
     p {
        margin: 0 0 7px;
    }
    .product-card {
        padding: 10px;
    }
    .pg3left {
        width: 100%;
        height: 60vh;
        height: 60dvh;
        align-content: baseline;
        /* align-items: flex-start; */
        justify-content: center;
        justify-items: center;
        align-items: center;
    }
    .product-card2 {

        width: 9rem;

    }
    .product-scroll-bottom {
        height: 14vh;
    }
    .product-card2 p {
        font-size: 1.5rem;
    }
    .product-card2 img {
        width: 70%;
        margin: 17px 0 0px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }
    button, input {
        padding: 12px;
     }
}
@media screen and (max-width: 380px) {

.h_process::before {
    content: "";
    height: 15px;
    width: 15px;

    top: 2px;
    left: 5px;
    background-size: cover;
}
.h_process {
    position: relative;
    font-size: 12px;
    padding: 0 5px 0 25px;
}
.head {
    padding: 15px 0;
 }
}
@media screen and (max-width: 350px) {
    .product-card p {
        font-size: 1.3rem;
    }
    .card-product-qty {
        bottom: -17px;
    }
    .product-container {
        height: 30vh;
        height: 33dvh;
        margin-top: 20px;
    }
    .h_menu {
        padding: 0px;
        padding-top: 10px;
     }
}

/*########################################
    Display screen3 - PAGE3  { Ends}
 #########################################*/
/* *************************************************************************************************************** */

/*########################################
    Display screen4 - PAGE4  { Starts}
 #########################################*/
.page4main{
    /* padding: 12% 5% 0; */
}
.pg4left {
    width: 60%;
    padding: 0 150px;
    height: 80dvh;
}
.pg4right{
    width: 40%;
}
 .qty-display{
    width: 80%;
    background-color: var(--cardcolor);
    border-radius: 5px;
    /* border: 1px solid var(--darkpink); */
    color: var(--siteblue);
    position: relative;
    padding: 5%;

}
.qty-text{
    font-size: 25px;
    color: var(--darkblack);
    font-weight: 600;
}
.qty-text span{
    color: var(--siteblue);
}

.minussign,
.addsign{
background-color: var(--gray);
width: 2rem;
    height: 2rem;
    padding: 0.5rem 0.8rem;
align-items: center;
font-size: 25px;
font-weight: 600;
position: absolute;
top:42%;
display: flex;
justify-content: center;
border: 1px solid var(--secgrayborder);
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
cursor: pointer;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.minussign:hover,
.addsign:hover{
    background-color: var(--siteblue);
    color: var(--white);
}

.minussign{
    left: -30px;


}
.addsign{
    right: -30px;
}
.qty-display img{
    width: 60%;
}
@media screen and (max-width: 1280px) {

}
@media screen and (min-width: 1400px) {
    .qty-display {
        width: 55%;
    }
}
@media screen and (max-width: 1024px) {
    .pg4left {

        padding: 0 10px;
    }
    .qty-display {
        width: 65%;
    }
    .page4main {
        /* padding: 40% 5% 0; */
    }
}

@media screen and (max-width: 912px) {
    .pg4left {

        padding: 0 10px;
    }
    .qty-display {
        width: 65%;
    }
    .page4main {
        /* padding: 40% 5% 0; */
    }
}

@media screen and (max-width: 820px) {
    .pg4left {

        padding: 0 10px;
    }
    .qty-display {
        width: 65%;
    }
    .page4main {
        /* padding: 40% 5% 0; */
    }

}

@media screen and (max-width: 768px) {
    .pg4left {

        padding: 0 10px;
    }
    .qty-display {
        width: 65%;
    }
    .page4main {
        /* padding: 40% 5% 0; */
    }


}
/*########################################
    Display screen4 - PAGE4  { Ends}
 #########################################*/


/* *************************************************************************************************************** */

/*########################################
    Display screen5 - PAGE5  { Starts}
 #########################################*/


.page5main{
   height: 85dvh;
   position: relative;

}
.backbutton{
    position: absolute;
    left: 20px;
    bottom: 0;
}
.backbutton a{
    color: var(--siteblue);
    font-size: 1.5rem;

}
.pg5left{
    width: 100%;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: space-evenly;

}
.headingp5{
    display: flex;
    width: 100%;
    padding: 20px;
    justify-content: center;
    font-size:2rem;

}
.pg5left a{
    background-color: var(--cardcolor);
    border-radius: 10px;
    border: 1px solid var(--siteblue);
    color: var(--siteblue);
    padding: 9px 45px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    justify-content: center;
}
.pg5left a:hover{
    background-color: var(--gray);}


.scan-image-width{
    width: 100%;
    }
.card-img-width{
        width: 100%;
    }
.pg5right{
    width: 40%;
    padding-left: 50px;
    justify-content: center;
}

.borderclass{
    width: 80%;
    border-bottom: 1px solid var(--siteblue);
    margin-top: 20px;
}
.cont-text{
    font-size: 1.8rem;
}
.cont-text2{
    font-size: 1.8rem;
}
.cont-text span{
    background-color: var(--buttoncolor1);
    padding: 5px 10px;
    color: var(--white);
    border-radius: 5px;
}
.cont-text2 span{
    color: var(--buttoncolor1);
}

@media screen and (max-width: 2000px) {
    .pg5left a {
       width: 16%;
    }
}
@media screen and (max-width: 1028px) {
    .page5main {
        padding: 0 5% 0;
    }
    .scan-image-width{
        width: 130%;
        }
    .card-img-width{
            width: 122%;
        }
}
@media screen and (max-width: 912px) {
    .pg5right {
        width: 40%;
        padding-left: 114px;
        justify-content: center;
    }
    .page5main {
        padding: 0 5% 0;
    }

}
@media screen and (max-width: 820px) {
    .page5main {
        padding: 0 5% 0;
    }
    .scan-image-width{
        width: 170%;
        }
    .card-img-width{
        width: 160%;
        }
}


@media screen and (max-width: 768px) {
    .page5main {
        padding: 0 5% 0;
    }
    .scan-image-width{
        width: 200%;
        }

}

/* success msg  */

.msgsucess{
    font-weight: 500;
    color: var(--darkpink);

}

/* success msg ends  */

 /*########################################
    Display screen5 - PAGE5  { Ends}
 #########################################*/
/* *************************************************************************************************************** */
 /*########################################
    Empty card screen - PAGE5  { Ends}
 #########################################*/
    .empty-box{
        height: 45dvh;
    }
    .empty-box .text{

    padding: 10px 20px;
    background: white;
    border: 1px solid #f0f0f0;
    font-size: 20px;
    color: var(--siteblue);
    font-weight: 400;
    }
  /*########################################
    Empty card screen - PAGE5  { Ends}
 #########################################*/


  /*########################################
    success screen - PAGE5  { starts}
 #########################################*/
.sucesspage{
    height: 85dvh;
    width: 100%;
}
.success-left{
width: 80%;
}
.success-left img{
    width: 55%;
}
.success-left h1{
    color: var(--successcolor);
    font-size: 2rem;
}
.success-right{
    width: 20%;
    display: flex;
    padding: 20px;
    height: 80dvh;
    justify-content:center;
    gap: 2rem;
}
.button2{
    background-color: var(--siteblue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
}
.table-container{
    width: 90%;
    height: 50dvh;
    overflow-x: hidden;
    overflow-y: auto;

}
.tablestyle{
    width: 100%;
}

@media screen and (max-width: 580px) {
    .sucesspage{
        height: 60dvh;
        width: 100%;
        flex-wrap: wrap;

    }
    .success-left {
        width: 100%;
    }
    .success-right {
        align-items: baseline;
        width: 100%;
        display: flex;
        padding: 0 20px;
        height: 10dvh;
        justify-content: center;
        justify-content: center;
        gap: 2rem;
        flex-direction: row;
    }
 }
 @media screen and (max-width: 300px) {
    .success-right {
       flex-wrap: wrap;
    }

 }
   /*########################################
    success screen - PAGE5  { Ends}
 #########################################*/
   /*########################################
    Empty cart screen - PAGE5  { Starts}
 #########################################*/
 .empty-card{
    background-color: var(--buttoncolor1);
    padding: 2rem 1rem;
    border-radius: 10px;
    color: var(--white);
    position: relative;
 }
 .empty-card::after{
    content: "";
    position: absolute;
    display: block;
    height: 8rem;
    border-left: 4px dashed var(--buttoncolor1);
    width: 1px;
    bottom: -117px;
    right: 50%;
    transform: translate(50%);
 }
 .empty-card h2{
    font-family: inherit;
    font-weight: 300;
    margin: 0;
 }
 .empty-card p{
    font-family: inherit;
    font-weight: 200;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    display: block;
    margin: 0;
 }
 .cart-img{
    width: 45%;
    margin-top: 5vh;
 }
 .empty-card p img{
    width: 4%;
    padding: 5px;
    border: 1px solid var(--white);
    border-radius: 50%;
    position: relative;
    bottom: -8px;
    right: -5px;
 }
 @media screen and (min-width: 1300px) {
    .cart-img{
        width: 40%;
        margin-top: 5vh;
     }
 }
 @media screen and (max-width: 1028px) {
    .cart-img{
        width: 80%;
        margin-top: 5vh;
     }
     .empty-card::after {

        height: 11rem;

        bottom: -144px;

    }
 }
 @media screen and (max-width: 1028px) {
    .empty-card::after {

        bottom: -122px;
    }
 }
 @media screen and (max-width: 580px) {
    .empty-card::after {
        bottom: -92px;
    }
 }



    /*########################################
    Empty cart screen - PAGE5  { Ends}
 #########################################*/

/* Main Body Ends */

/* Header Ends */


/* Footer */
    footer{
        padding: 15px;
        background-color: var(--siteblue);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        bottom: 0;
    }
    .copywrite-text{
        position: absolute;
        right: 3rem;

        color: var(--white);
        top: 4px;
    }
    @media screen and (max-width: 580px) {

        .copywrite-text {
            right: 4rem;

        }
    }
  /* Footer Ends */
