
.btncenter
{
    display:flex; 
    justify-content:center !important
}
.blue{
    background-color: #2a318a;
    height: 596px;
    /* clip-path: 
    polygon(0% -7%, 66% 0%, 74% 4%, 78% 7%, 81% 12%, 83% 17%, 85% 22%, 87% 28%, 87% 34%, 82% 39%, 74% 44%, 71% 51%, 67% 53%, 59% 58%, 57% 62%, 52% 64%, 54% 62%, 48% 73%, 48% 75%, 48% 80%, 49% 87%, 48% 94%, 45% 106%, 105% 120%, 46% 145%, 0% 103%); */
}
::-webkit-scrollbar {
        width: 3px;
        /* Adjust the width as needed */
    }

    /* Define the track (the empty space in the scrollbar) */
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        /* You can set your desired background color */
    }

    /* Define the thumb (the scrolling handle) */
    ::-webkit-scrollbar-thumb {
        background: #888;
        /* You can set your desired thumb color */
    }

.tabletd
{
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.producttable
{
    vertical-align: middle !important;
}
.curvetwo{
    background-image: url('https://alfanepoxy.com/warehouse/uploads/curve.png');
    /* height:620px; */
    background-size: cover;
    width: 300px;
}
.img1{
    margin-left: 210px;
    margin-top: 200px !important;
}
.textfield{
    width:348px !important;
 }
 .totalpadd{
padding-left: 86px !important;
padding-right: 130px !important;
 }

 .labeltext{
    color: grey;
    font-size: 16px;
    font-family:century-gothic, sans-serif
 }    
 
 .loginbtn{
        background-color: #fc1083 !important;
        color: white !important;
        border-color: transparent !important;
        height: 46px;
        width:348px;
        font-family: century-gothic, sans-serif !important;
        letter-spacing: 1px;
        font-size: 20px !important;
        
        }
    .tex{
        color: #2a318a;
        font-family: 'Century Gothic', sans-serif;
        font-weight: bold;
       font-size: 26px;
        display: flex;
        justify-content: center;
        margin-left: 200px;

    }



    /* ........................................................................................... */
    
    .totbg{
        background-color: #2a318a;
    }
    
    
    
    /*--------------------login end-----------------*/




.webfont
{
    font-family: "Century Gothic", Arial, sans-serif;
    font-weight: bold !important;
    font-size: 18px;
}
.webfontpopup
{
    font-family: "Century Gothic", Arial, sans-serif;
    font-weight: lighter !important;
    font-size: 17px;
}
.loginbg
{
    background: #2b328c;
}
.logopadding
{
    padding-top: 100px;
}
.loginbgimg
{
      background-image: url('https://alfanepoxy.com/warehouse/uploads/plain logi n image.jpg');
      background-size: cover;
      background-position: center;
      background-attachment:fixed;
      /*height: 590px;*/
}
.loginbtn
{
    /*width: 100% !important;*/
    /*background-color: #df1285 !important;*/
}
.loginbtn:hover
{
    color: #df1285 !important;
    background-color: white !important;
}
.welcomhead
{
    font-family: "Century Gothic", Arial, sans-serif;
    text-align: center;
    padding-top:180px;
}


/*---------------side nav mobview-----------------------------*/

/*.dropdown-menu*/
/*{*/
/*    border:none !important;*/
/*    background-color: transparent !important;*/
    
/*}*/
/*.dropdown-item:focus, .dropdown-item:hover*/
/*{*/
/*  color: white;*/
/*  text-decoration: none;*/
/*  background: none !important;*/
/*}*/
/*.mobviewnav*/
/*{*/
/*    font-family: "Century Gothic", Arial, sans-serif;*/
/*    font-weight: bold !important;*/
/*}*/


/*------------------------ side nav bar css starts------------------------*/
.body
{
    font-family: "Century Gothic", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tinos', serif;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 300px;
  background: #29308b;
  z-index: 100;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; /* Standard syntax */
  /*overflow:scroll;*/
}
.sidebar.close {
  width: 78px;
}

.sidebar .logo-details {
  /*height: 100px;*/
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.sidebar .logo-details i {
  font-size: 30px;
  color: #fff;
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  justify-content: end;
  display: flex;
}
.sidebar .logo-details .logo_name {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; /* Standard syntax */
}
.sidebar.close .logo-details .logo_name {
  
  opacity: 1;
  pointer-events: none;
}
.sidebar .nav-links {
  height: 80%;
  padding: 0 0 0 0;
  overflow: auto;
}
.sidebar.close .dnone
{
    display:none;
}
.sidebar.close .nav-links {
  
  overflow: visible; 
  height: 40%;
  padding: 0;
}
.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}
.sidebar .nav-links li {
  position: relative;
  list-style: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease; /* Standard syntax */
  width: 90%;
}
.sidebar .nav-links li:hover {
  /*background: #1d1b31;*/
}
.sidebar .nav-links li .icon-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .icon-link {
  display: block;
}
.sidebar .nav-links li i {
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* Standard syntax */
}
.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow {
  display: none;
}
.sidebar.close .imglogo {
  width: 60px !important;
  height: 60px !important;
  object-fit: contain;
}
.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease; /* Standard syntax */
}
.sidebar.close .nav-links li a .link_name {
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu {
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  display: none;
  background-color: #582b8a;
  color: white;
}
.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}
.sidebar .nav-links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* Standard syntax */
}
.sidebar .nav-links li .sub-menu a:hover {
  /*opacity: 1;*/
}
.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  -webkit-transition: 0s;
  transition: 0s; /* Standard syntax */
}
.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease; /* Standard syntax */
}
.sidebar .nav-links li .sub-menu .link_name {
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name {
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details {
  position: fixed;
  bottom: 0;
  width: 300px;
  display: block;
  background: #29308b;
  padding: 12px 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; /* Standard syntax */
}
.sidebar.close .profile-details {
  background: none;
}
.sidebar.close .profile-details {
  width: 78px;
}
.sidebar .profile-details .profile-content {
  display: flex;
  align-items: center;
}
.sidebar .profile-details img {
  width: 25px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; /* Standard syntax */
}
.sidebar.close .profile-details img {
  padding: 10px;
}
.close {
  text-shadow: none !important;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job {
  display: none;
}
.sidebar .profile-details .job {
  font-size: 12px;
}
.home-section {
  position: relative;
  background: white;
  /*height: 100vh;*/
  left: 300px;
  width: calc(100% - 300px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; /* Standard syntax */
}

.vertical-scroll {
  
  overflow-y: auto !important; /* Enable vertical scrolling */
}
.sidebar.close ~ .home-section {
  left: 78px;
  width: calc(100% - 78px);
}
.home-content
{
    padding: 0px 50px;
}
.home-section
{
/*height: 100vh;*/
}

.home-section .home-content {
  display: flex;
  
}
.home-section .home-content .bx-menu,
.home-section .home-content .text {
  color: #11101d;
  font-size: 35px;
}
.home-section .home-content .bx-menu {
  margin: 0 15px;
  cursor: pointer;
}
.home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}
.sidebar.close .togemail
    {
    opacity:0;
    /*display:none;*/
    }
.sidebar.close .togemailll
    {
    opacity:0;
    display:none;
    }
.toggleboxmenu
{
    justify-content: end !important;
    display: flex;
    cursor: pointer;
}
.nav-hover:hover
{
  border-left: 5px solid #dd1182;
  background-color: #582b8a;
  color: white;
  width: 100%;
  border-radius: 0px 40px 40px 0px;
}
.sidebar.close .nav-hover:hover
{
  border-left: 0px;
  background-color: #582b8a;
  color: white;
  width: 100%;
  border-radius: 0px;
}

.sidebar.close .toggleboxmenu
{
  justify-content: center !important;
  display: flex;
}

.navbar-img
{
    width: 25px;
}


@media (max-width: 420px) {
  .sidebar.close .nav-links li .sub-menu {
    /*display: none;*/
    
  }
  
  
  
}

                            /*------------------------ side nav bar css ends------------------------*/


                            /*----------------warehouse home page starts-----------------------*/

.dropdownicon
{
    position:absolute;
    top:0;
    right:0;
    padding:10px;
}
.dashboardsearch
{
    box-shadow: 0px 1px 5px 0px gray;
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
    border-top-right-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
}
.popupheight
{
    line-height: 2;
    font-size: 15px;
}
.popupdesign
{
    border-radius: 40px !important;
    box-shadow: 0px 0px 30px 0px #575454;
    border: none !important;
}
.sendbtn
{
    background-color: #29308b !important;
    color: white !important;
}
.dashboardcard-font
{
    font-size: 13px;
    font-weight: 600 !important;
    color: #6f6e6e;
    font-family: "Century Gothic", Arial, sans-serif;
}
.dashboardcard-font2
{
    font-size: 10px;
    /*font-weight: 600 !important;*/
    color: #6f6e6e;
    font-family: "Century Gothic", Arial, sans-serif;
}
.greenfont
{
    font-size: 13px;
    color: #00800087;
}
.redfont
{
    font-size: 13px;
    color: red;
}
.card-span
{
    display: flex;
    justify-content: space-between;
}
.dropdesign
{
    border-radius: 20px !important;
    box-shadow: 0px 0px 15px 0px #575454;
    border: none !important;
}

.card-design
{
    border: none;
    box-shadow: 0px 0px 10px 0px #cfc2c2;
    border-radius: 10px !important;
    padding:9px !important;
}
.cursorpointer
{
    cursor:pointer;
}

 @keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Define the zoom animation using keyframes */
@keyframes zoom {
  0% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(1.2); /* Zoomed in by 20% */
  }
  100% {
    transform: scale(1); /* Back to normal size */
  }
}

/* Apply both animations to the image */
.blinking-image {
  animation: blink 5s ease infinite, zoom 5s ease infinite; /* Adjust duration as needed */
    width:100% ;
}



                            /*----------------warehouse home page ends-----------------------*/
                            
                /*-------------------------- staff page -------------------------*/
                
.formlabelfont
{
    font-family: "Century Gothic", Arial, sans-serif;
    font-weight: lighter !important;
    font-size: 16px;
}
.form-controlborder
{
    /*border: 1px solid #8e8282 !important;*/
    border-radius: 10px !important;
    border: 1px solid #757373 !important;
    box-shadow: 0px 0px 1px 0px #757373;
    height: 45px !important;
}
#file-1-preview img 
        {
            max-width: 150px;
            max-height: 150px;
        }
        
        
        
        
 #preview-image {
max-width: 100%;
max-height: 200px;
}

.upload-btn-wrapper {
position: relative;
overflow: hidden;
display: inline-block;
}

#file-input {
font-size: 100px;
position: absolute;
left: 0;
top: 0;
opacity: 0;
}       
.submitbtn
{
    background-color:#29308b !important;
    color:white !important;
    font-family: "Century Gothic", Arial, sans-serif !important;
    border-radius: 10px !important;
    /*width:25%;*/
}
.uploadbtn:hover
{
    background-color:#29308b !important;
    color:white !important;
    
}


.tabletrcolor
{
      /*background-color: #95959530;*/
      border-top: 3px solid #29308b;
      border-radius: 14px;
}
.tabletrbgcolor
{
    background-color: #95959530;
}

/*.uploadbtn*/
/*{*/
/*    border: 2px solid #29308b !important;*/
/*    color:#29308b;*/
/*}*/

.cutomerlabelfont
{
  font-family: "Century Gothic", Arial, sans-serif;
  font-weight: lighter !important;
  font-size: 19px;
}

.custom-placeholder::placeholder {
     font-family: "Century Gothic", Arial, sans-serif;
  font-weight: lighter !important;
  font-size: 15px;
    }
    
    input[type="checkbox"] {
      /* Set the background to transparent */
      background-color: transparent;
    }

    /* Style for the checkbox when it is checked */
    input[type="checkbox"]:checked {
      /* Set the background to transparent */
      background-color: transparent;
    }
    
    .form-textareaborder
    {
        border-radius: 10px !important;
        border: 1px solid #757373 !important;
        box-shadow: 0px 0px 1px 0px #757373;
    }
    
    /*----------------------------------------profile page css starts----------------------------------------------------------------*/
    
    .pfpageboxborder
    {
        
        padding: 30px;
        box-shadow: 0px 0px 5px 0px gray;
    }
    .pfpgimg
    {
        width: 150px;
        height: 150px;
        object-fit: cover;
        object-position: center;
    }
    .pfpgcard
    {
        display: flex;
        justify-content: space-between;
    }
    
    
    
    /*----------------------------------------profile page css ends----------------------------------------------------------------*/
    
    .pwdform-controlborder
    {
        border: 1px solid #757373 !important;
        border-top-left-radius: 10px !important;
        box-shadow: 0px 0px 1px 0px #757373 !important;
        height: 45px !important;
        border-bottom-left-radius: 10px !important;
    }
    .ddicon
    {
        border-radius: 10px !important;
        /*border-bottom-left-radius: 10px !important;*/
        border: 1px solid #757373 !important;
        box-shadow: 0px 0px 1px 0px #757373;
        height: 45px !important;
    }
    .pfpgcardheader
{
    display: flex;
    justify-content: space-between;
}
    
    
    /*------------------------------------------------------------------------------------------------------------------------*/


@media (max-width: 320px)
{
    .sidebar.close .togemail
    {
    opacity:0;
    /*display:none;*/
    }
    .sidebar.close .togemailll
    {
    opacity:0;
    display:none !important;
    }
    .cutomerlabelfont
    {
      font-size: 15px !important;
    }
    .formlabelfont
    {
        font-size: 13px !important;
    }
    .webfont
    {
        font-size: 14px !important;
    }
    .webfontpopup
    {
        font-size: 13px !important;
    }
    .mobviewtextarea
    {
        width:150px !important;
    }
    .inputfieldpadding
{
    padding:0px 30px !important;
}
    .sysview
    {
        display:none !important;
    }
    .mobview
    {
         display:block !important;
    }
    .bodybgcolor
    {
        background-color:none !important;
    }
    .home-section 
    {
    left:0px;
    width: 100%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    }
    .home-content
    {
        padding:0px !important;
    }
    
    .sidebar.close
{
  width: 60px;
}
/*.sidebar.close ~ .home-section*/
/*{*/
/*  left: 0px;*/
/*  width:100%;*/
    
/*}*/
.sepnv{
    /*display:block!important;*/
}
.blinking-image{
    width:60px !important;
    
}
.submitbtn{
    width:50%;
}
.sidebar{
    /*display:none;*/
}
.sidebar.close{
    display:block;
}
.sidebar.close .toggleboxmenu
{
  
  /*display: none;*/
}

.belll{
    /*display:none;*/
}
.centmb{
    text-align: center !important;
}
/*------------------------------------mbvlogin-------------------------------------*/
.heade{
    margin-top: 0px !important;
  width: 240px !important ;
  height: 60px !important;
}
/*.totalpadd*/
/*{*/
/*  padding-left: 0px !important;*/
  /*padding-right: 130px !important;*/
/*  padding-right: 0px !important;*/
/*}*/
.tex{
    /*display:none !important;*/
    color: white;
  font-size: 12px !important;
}
.currv{
   display:none !important; 
}
.img1
{
 margin-left: 70px;
  margin-top: 0px !important;
  position: relative !important;
  right: 0 !important;
  bottom: -470px !important;
  width: 60% !important;
  height: 50% !important;

}
/*.imgcls{*/
/*    right: 0px !important;*/
  /*display: none;*/
/*  position: absolute !important;*/
/*  top: 0px !important;*/
/*}*/

.sidebar .new{
        display:none;
    }
    .filer{
    width:10% !important;
}
.blinking-imagemb{
    display:block !important;
    width:20%;
}
.dot{
    display:none;
}
.crente{
    text-align:center !important;
}
.prof{
    font-size:12px;
}
.generateqrbtn{
    width:100% !important;
}
.texdiv{
    /*position: absolute;*/
  right: 100px !important ;
  top: 140px !important;
  color: #fff !important;
  font-size: 2px;
  width: 100%;
}
.blue{ 
    height:100%;
}
.qrcode{
    width:50% !important;
}
.pfpgcard
{
    display:block !important;
}
.pfpgcardheader
{
    display: flex block !important;
    justify-content: space-between;
}
/*------------------------------------//mbvlogin-------------------------------------*/
    
}
@media (max-width: 990px)
{
    .sidebar.close .togemail
    {
    opacity:0;
    /*display:none;*/
    }
    .sidebar.close .togemailll
    {
    opacity:0;
    display:none !important;
    }
    .cutomerlabelfont
    {
      font-size: 15px !important;
    }
    .formlabelfont
    {
        font-size: 13px !important;
    }
    .webfont
    {
        font-size: 14px !important;
    }
    .webfontpopup
    {
        font-size: 13px !important;
    }
    .mobviewtextarea
    {
        width:150px !important;
    }
    .inputfieldpadding
{
    padding:0px 30px !important;
}
    .sysview
    {
        display:none !important;
    }
    .mobview
    {
         display:block !important;
    }
    .bodybgcolor
    {
        background-color:none !important;
    }
    .home-section 
    {
    left:0px;
    width: 100%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    }
    .home-content
    {
        padding:0px !important;
    }
    
    .sidebar.close
{
  /*width: 60px;*/
}
/*.sidebar.close ~ .home-section*/
/*{*/
/*  left: 0px;*/
/*  width:100%;*/
    
/*}*/
.sidebar{
    /*display:none;*/
}
.sidebar.close{
    display:block;
}
.sepnv{
    /*display:block!important;*/
}
.blinking-image{
    /*width:60px !important;*/
    display:none;
    
}
.submitbtn{
    width:50%;
}
.sidebar.close .toggleboxmenu
{
  
  /*display: none;*/ 
}

.belll{
    /*display:none;*/
}
.centmb{
    text-align: center !important;
}

/*------------------------------------mbvlogin-------------------------------------*/

.heade{
    margin-top: 0px !important;
  width: 240px !important ;
  height: 60px !important;
}

.tex{ 
    /*display:none !important;*/
    color: white;
  font-size: 12px !important;
}
.currv{
   display:none !important; 
}
.img1
{
 margin-left: 70px;
  margin-top: 0px !important;
  position: relative !important;
  right: 0 !important;
  bottom: -470px !important;
  width: 60% !important;
  height: 50% !important;

}
/*.imgcls{*/
/*    right: 0px !important;*/
  /*display: none;*/
/*  position: absolute !important;*/
/*  top: 0px !important;*/
/*}*/
.sidebar .new{
        display:none;
    }
.filer{
    width:10% !important;
}
.blinking-imagemb{
    display:block !important;
    width:12%;
}
.dot{
    display:none;
}
.crente{
    text-align:center !important;
}
.prof{
    font-size:12px;
}
.generateqrbtn{
    width:100% !important;
}
.texdiv{
    /*position: absolute;*/
  right: 100px !important ;
  top: 140px !important;
  color: #fff !important;
  font-size: 2px;
  width: 100%;
}
.blue{ 
    height:100%;
}
.qrcode{
    width:50% !important;
}
.pfpgcard
{
    display:block !important;
}
.pfpgcardheader
{
    display: flex block !important;
    justify-content: space-between;
}


/*------------------------------------//mbvlogin-------------------------------------*/
}

/*------------------------------------------mbvw------------------------------------*/
.qrcode{
    width:25%;
}
.scrollt{
    overflow-x: scroll !important;
    /*width:100%;*/
}
.blinking-imagemb{
    display:none ;
    width:20%;
}


.form-select
{
  --bs-form-select-bg-img: url('https://alfanepoxy.com/warehouse/uploads/drop down icon.png') !important;
  background-size: 12px 9px !important;
      
  
}
.sepnv{
    display:none;
}
.sidebar.close .new{
        display:none;
    }
    .sidebar.close {
    opacity:1 !important;
}
.widdmb{
    width:9% !important;
}


