/* basic color #207cca */
/* FONTS AND FONT WEIGHTS */

html,
body {
    font-family: 'DM Sans' !important;
}

h1,h2,h3,h4,h5,h6,p,a{
    font-family: 'DM Sans' !important;
}

/* .color1 {color: #761641;}
.color2 {color: #9d204b;}
.color3 {color: #db325f;}
.color4 {color: #ff5d7d;}
.color5 {color: #ff8d99;} */


.f-20 {
    font-size: 20px !important;
}
.f-16 {
    font-size: 16px !important;
}
.f-18 {
    font-size: 18px !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}
.fw-500 {
    font-weight: 500 !important;
}

/* FONTS AND FONT WEIGHTS */

/* PRELOADER */
/* preloader */
.loader-div {
    background: #000;
    opacity: 0.5;
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
}

.loader {
    border: 6px solid whitesmoke;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border-top: 6px solid #004f84;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {

        transform: rotate(360deg);
    }

}

/* PRELOADER */

/* SIDE BAR */
.sidebar-bg {
    background: #ffffff !important;
}

li.active a {
    color: #ffffff !important; /* New color for active link */
    font-weight: 700 !important; /* Optional: Bold text */
    text-decoration: underline; /* Optional: Underline for active link */
}

li a {
    color: var(--iq-primary) !important; /* New color for active link */
    text-decoration: none; /* Remove underline for non-active links */
}

/* SIDE BAR */

/* TOP NAV BAR */
.navbar-modified {
    border-radius: 10px;
    height: 60px !important;
    /* background: linear-gradient(to right, #005c97, #363795) !important; */
    border: 1px solid #005c97;
}

.tnav-text {
    position: relative;
    left: 30%;
}

.top-nav-logo {
    height: 60px;
    width: 60px;
}

/* TOP NAV BAR */

/* GENERAL */

.txt-white {
    color: #fff !important;
}

.txt-center {
    text-align: center !important;
}

.border-shadows {
    border-radius: 5px;
    box-shadow: 0px 3px 8px rgb(0 0 0 / 30%);
    padding: 0px;
    transition: box-shadow .5s;
}

.mt-10percent {
    margin-top: 5%;
}

.login-dec {
    position: absolute;
    bottom: 0px;
    color: #207cca;
}

.login-container{
   background-image: linear-gradient(to right, #1e3c72, #2a5298);
 
}

/* .color1 {color: #761641;}
.color2 {color: #9d204b;}
.color3 {color: #db325f;}
.color4 {color: #ff5d7d;}
.color5 {color: #ff8d99;} */

.login-logo {
    height: 90px;
    width: 80px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

.border-shadows:hover {
    /* box-shadow: 10px 10px 10px 10px rgb(0 0 0 / 30%) */
    box-shadow: 0px 0px 8px 6px rgb(0 0 0 / 30%);
}

.traditional-input {
    display: none;
}

.image-border-shadows {
    border-radius: 5px;
    box-shadow: 0px 3px 8px rgb(0 0 0 / 30%);
    padding: 0px;
}

.active-text{
    color:#A4BC4E!important;
}

/* GENERAL */

/* MEDIA QUERIES */

@media screen and (min-width:800px) {
    .login-container {
        width: 40%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 6%;
    }
}

@media screen and (max-width:480px) {
    .login-container {
        margin-top: 30%;
    }

    .border-shadows {
        box-shadow: none !important;
    }

    .sign-in-page{
        left: 0%!important;
        right: 0%!important;
    }

    .intro-header{
        display: none;
    }
}

@media screen {
    #printSection {
        display: none;
    }
}

@media print {
    body * {
        visibility: hidden;
    }

    #printSection,
    #printSection * {
        visibility: visible;
    }

    #printSection {
        position: absolute;
        left: 0;
        top: 0;
    }

    #content-page {
        display: none;
    }
}

/* MEDIA QUERIES */

/* custom button */

/* custom button with transition starts*/
.butn-custom
{
    width: 95px;
    height: 33px;
    color: #fff;
    border-radius: 5px;
    padding: 6px 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
}

.btn-11 {
    border: none;
    background: #303030;
    color: #fff;
    overflow: hidden;
}

.btn-11:hover {
    text-decoration: none;
    color: #fff;
}

.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}

.btn-11:hover {
    opacity: .7;
}

.btn-11:active {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
        -4px -4px 6px 0 rgba(116, 125, 136, .2),
        inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
        inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

@-webkit-keyframes shiny-btn1 {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.frame {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

/* custom button with transition ends */

/* dashboard icons */
.dash-icon
{  
    border-radius:5px;
    border:1px solid white;
    width:30px;
    padding:2px;
    margin-right:8px;
    background-color:whitesmoke;
}

.role-text
{
    border-bottom:2px solid var(--blue);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.whiteText{
    color:#fff!important;
}

.store-image
{
    width: 180px;
    height: 140px;
    display:block;
    margin-left:auto;
    margin-right:auto;
    opacity: 0.7;
}

/* .custom-card-ht
{
    height: 400px;
} */

/* switch css */
.switch {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 34px;
  }
  
  .switch input {display:none;}
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #9d204b;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #A4BC4E;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(70px);
    -ms-transform: translateX(70px);
    transform: translateX(70px);
  }
  
  /*------ ADDED CSS ---------*/
  .on
  {
    display: none;
  }
  
  .on, .off
  {
    color: white;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    font-size: 10px;
    font-family: 'Varela Round', sans-serif;
  }
  
  input:checked+ .slider .on
  {display: block;}
  
  input:checked + .slider .off
  {display: none;}
  
  /*--------- END --------*/
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;}
/* switch css ends */

.delete-store
{
    color:#9d204b!important;
    position: relative;
    bottom: 5px;
    left: 5px;
}

/* categories cusom side nav  */

/* The sidebar menu */
.sidebar {
    height: 350px;
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 9999; 
    top: 30%;
    left: 260px;
    background-color: #d08fa2; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    /* padding-top: 60px;  */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
  }
  
  /* The sidebar links */
  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: #d08fa2;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidebar a:hover {
    color: #d08fa2;
  }
  
  /* Position and style the close button (top right corner) */
  .sidebar .closebtn {
    position: absolute;
    top: 10px;
    left:10px;
    font-size: 20px;
    color:#fff;
  }
  
  /* The button used to open the sidebar */
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #761641;
    color: white;
    padding: 10px 15px;
    border: none;
  }
  
  .openbtn:hover {
    background-color: #761641;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    transition: margin-left .5s; /* If you want a transition effect */
    position:absolute;
    left:260px;
    top:40%;
  }

  .accordion {
    background-color: #d08fa2;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: #c06c84; 
  }
  
  .panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
    
  }

  .arrow-pointer:hover
  {
    cursor: -webkit-grabbing; cursor: grabbing!important;
    
  }
  .arrow-pointer
  {
    display: block;
    
  }

  .o_det_container
  {
    display: inline-grid;
    grid-template-columns: auto auto;
    width: 100%;
  }

  .o_det_detail-left
  {
    text-align: left
  }

  .o_det_detail-right
  {
    text-align: left;
    position:absolute;
    right: 2px;

  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
  }


  @media (max-width: 1299px){
    #main {
        left: 0px;
    }

    .sidebar  {
        left: 0px;
    }
}

  
/* categories cusom side nav  */

/* new orders alert */

.order-alert{
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #FDFAFF, #FDFAFF);
	background-size: 400% 400%;
	animation: gradient 8s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}



/* new orders alert */