/*
Theme Name: Stock Management Theme
Author: 3DOT60
Description: Simple theme for stock management
Version: 1.0
*/
@import url(https://db.onlinewebfonts.com/c/2ba0dc3a3aeaf8a94097b7b60b382990?family=Chalkboard+SE);
/* style.css */
@import 'assets/scss/style.scss';

:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --success-color: #4cc9f0;
    --warning-color: #f72585;
    --text-color: #2b2d42;
    --text-light: #8d99ae;
    --sidebar-width: 280px;
    --header-height: 70px;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #f5f7fb;
    margin: 0;
    padding: 0;
    transition: margin-left var(--transition-speed);
}

.btn-secondary.glow-button {
	  --box-shadow-color: #6c757d;
	}
	
	.glow-button {
	  --box-shadow-color: black;
	  box-shadow: 0 0 1em 0.5em var(--box-shadow-color);
	}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.radius-10 {
    border-radius: 10px !important;
}

.border-info {
    border-left: 5px solid  #0dcaf0 !important;
}
.border-danger {
    border-left: 5px solid  #fd3550 !important;
}
.border-success {
    border-left: 5px solid  #15ca20 !important;
}
.border-warning {
    border-left: 5px solid  #ffc107 !important;
}


.card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: .25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
}
.bg-gradient-scooter {
    background: #17ead9;
    background: -webkit-linear-gradient( 45deg, #17ead9, #6078ea)!important;
    background: linear-gradient(45deg, #17ead9, #6078ea)!important;
}
.widgets-icons-2 {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ededed;
    font-size: 27px;
    border-radius: 10px;
}
.rounded-circle {
    border-radius: 50%!important;
}
.text-white {
    color: #fff!important;
}
.ms-auto {
    margin-left: auto!important;
}
.bg-gradient-bloody {
    background: #f54ea2;
    background: -webkit-linear-gradient( 45deg, #f54ea2, #ff7676)!important;
    background: linear-gradient( 45deg, #f54ea2, #ff7676)!important;
}

.bg-gradient-ohhappiness {
    background: #00b09b;
    background: -webkit-linear-gradient(45deg, #00b09b, #96c93d)!important;
    background: linear-gradient(45deg, #00b09b, #96c93d)!important;
}

.bg-gradient-blooker {
    background: #ffdf40;
    background: -webkit-linear-gradient(45deg, #ffdf40, #ff8359)!important;
    background: linear-gradient(45deg, #ffdf40, #ff8359)!important;
}

.sidebar {
    width: 260px;
    min-height: 100vh;
    background-color: #2c3e50; /* Dark Slate Blue */
    color: #ecf0f1;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.sidebar .site-name {
    text-align: center;
    padding: 20px 10px;
}

.sidebar .site-logo {
    max-height: 50px;
    display: block;
    margin: 0 auto 10px;
}

.sidebar-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, padding-left 0.3s;
}

.sidebar-menu li a:hover,
.sidebar-menu li.current-menu-item > a,
.sidebar-menu li.current-menu-ancestor > a {
    background-color: #34495e;
    padding-left: 25px;
    color: #7cda24;
}

.sidebar-menu li.menu-item-has-children > a::after {
    content: "▾";
    float: right;
    font-size: 0.7em;
    margin-top: 4px;
    opacity: 0.6;
}

.sidebar-menu .sub-menu {
    list-style: none;
    padding-left: 0;
    display: none !important;
}

.sidebar-menu li.menu-item-has-children:hover > .sub-menu {
    display: block !important;
}

.sidebar-menu .sub-menu li a {
    padding: 10px 30px;
    background: #1a252f;
    color: #bdc3c7;
    font-size: 0.95em;
}

.sidebar-menu .sub-menu li a:hover {
    background: #2a3a45;
    color: #7cda24;
}


/* Main Content Area */
#primary {
    margin-left: calc(var(--sidebar-width) + 20px);
    padding: 30px;
    transition: margin-left var(--transition-speed);
    min-height: calc(100vh - var(--header-height));
}

/* Modern Header */
.user-menu-bar {
    position: fixed;
    top: 0;
    left: var(--sidebar-width);
    right: 0;
    height: var(--header-height);
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 900;
    transition: left var(--transition-speed);
}

/* Search Bar */
.search-container {
    position: relative;
    width: 400px;
}

.search-input-container {
    display: flex;
    align-items: center;
    background: #f5f7fb;
    border-radius: 50px;
    padding: 8px 15px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.search-input-container:focus-within {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

#search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
    color: var(--text-color);
}

.search-icon {
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
}

.search-input-container:focus-within .search-icon {
    color: var(--primary-color);
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-menu-icon {
    position: relative;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.user-menu-icon:hover {
    color: var(--primary-color);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(67, 97, 238, 0.2);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dropdown Menus */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 280px;
    z-index: 1001;
    padding: 15px 0;
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

/* Dropdown Container */
.search-dropdown {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.search-dropdown .dropdown-option {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.search-dropdown .dropdown-option:last-child {
  border-bottom: none;
}

.search-dropdown .dropdown-option img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.search-dropdown .dropdown-option span {
  flex: 1;
  font-size: 16px;
  color: #333;
}

.search-dropdown .action-button {
  background: #7cda24; /* Green background */
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.search-dropdown.action-button:hover {
  background: #6bc020; /* Darker green on hover */
}

.search-dropdown .see-more {
  width: 100%;
  padding: 10px;
  background: #f8f9fa;
  border: none;
  border-top: 1px solid #eee;
  color: #2ea3f2; /* Blue text */
  cursor: pointer;
}

.search-dropdown .see-more:hover {
  background: #e9ecef;
}

/* Page Shade */
.page-shade {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.search-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #f0f8ff; /* light subtle hover */
  color: #0056b3;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-header {
    padding: 0 20px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: var(--text-light);
}

.dropdown-item:hover {
    background-color: rgba(67, 97, 238, 0.05);
    color: var(--primary-color);
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

/* Custom Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    padding-left: 300px;
    font-size: 14px;
    margin-top: var(--header-height);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

.user-menu-bar {
    margin-left: 0px;
}

#primary {
    position: relative;
    padding-left: 280px !important;
    margin-left: 10px;
    left: 0px;
    width: 100%;
    padding-top: 0px;
}

.user-menu-bar a {
    color: unset;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    #primary,
    .user-menu-bar {
        margin-left: 0px !important;
        left: 0;
    }
    
    .search-container {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .search-container {
        width: 200px;
    }
    
    .user-menu {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .user-menu-bar {
        padding: 0 15px;
    }
    
    .search-container {
        width: 150px;
    }
    
    .user-menu {
        gap: 10px;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
    }
}



/* The Modal (background) */
        .modal {
            display: none;
            position: fixed;
            padding-top: 20%;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background: rgba(62, 62, 62, 0.6);
        }

        /* Modal Content */
        .modal-content {
            background-color: #fefefe;
	    margin: 5% auto;
	    padding: 20px;
	    border: 1px solid #888;
	    max-width: 500px;
	    border-radius: 10px;
        }
        
        .model-content p{color: #BBBFC1;font-weight: 700;}
        
        .modal-content  a {
	    text-decoration: none;
	    padding: 10px;
	    display: block;
	    width: 100%;
	    font-size: 18px;
	    color: #009999;
	}

        /* The Close Button */
        .close {
            color: #009999;
            float: right;
            font-size: 28px;
            right: 22px;
	    top: 10px;
	    font-weight: bold;
	    position: absolute;
        }

        .close:hover,
        .close:focus {
            color: #009999;
            text-decoration: none;
            cursor: pointer;
        }
        
        #loading-overlay {
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(255, 255, 255, 0.9);
	    z-index: 1000;
	}

	.loader {
	    border: 8px solid #f3f3f3;
	    border-top: 8px solid #009999;
	    border-radius: 50%;
	    width: 50px;
	    height: 50px;
	    animation: spin 1s linear infinite;
	}

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

.landing-page-container {
            display: flex;
            height: 100vh;
            background: transparent linear-gradient(270deg, #BABEC1 0%, #FFFFFF 100%) ;
        }

        .landing-page-container .right-column {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .landing-page-container img {
            max-width: 100%;
            max-height: 100%;
            margin-top: 45px;
        }

        .landing-page-container .text {
            margin-bottom: 20px;
        }
        
        .landing-page-container .text h1{
        	font-weight: none;
        }

        .landing-page-container .button {
            padding: 10px 20px;
            color: #2ea3f2;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            width: 200px;
            /* UI Properties */
            background: #FFFFFF no-repeat ;
            box-shadow: 4px 8px 9px #0000001F;
            border-radius: 9px;
            opacity: 1;
            text-align: center;
            margin: 2%;
        }

        .landing-page-container .four-columns {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }

        .landing-page-container .column {
            flex: 1;
        }
        .dammy{
        	width: 60%;
        	padding-top: 10%;
        }
        
        .landing-page-container .title{
        	font-size: 65px;
            color: #7cda24;
        }
        
        .landing-page-container .title b{
        	font-size: 65px;
            color: #2ea3f2;
        }
        
        .landing-page-container small{
        	font-size: 14px;
            color: #2ea3f2;
            font-weight: 700;
        }
        
        .landing-page-container .small-tag{
        	color: #3E3E3E;
        	font-family: 'Montserrat';
        }
        
        .landing-page-container .logo{
        	/* Layout Properties */
            top: 24px;
            left: 16px;
            width: 47px;
            height: 48px;
            /* UI Properties */
            opacity: 1;
            margin-top: 0px;
        }
        
        /* Full-width input fields */
.login-form-modal-content input[type=text],.login-form-modal-content input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  color: #3E3E3E;
        background: #C5BEB8 0% 0% no-repeat padding-box;
        opacity: 1;
        border-radius: 9px;
        border: none;
        box-shadow: 3px 3px 6px #00000029;
}

.login-form-modal-content input[type=text]:focus,.login-form-modal-content input[type=password]:focus {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #707070;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 9px;
}

/* Set a style for all buttons */
.login-form-modal-content input[type=submit], input#wp-submit {
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  background: 	linear-gradient(270deg, #1D9999 0%, #FFFFFF 100%);
  box-shadow: inset 2px 1px 20px #00000029;
  border-radius: 9px;
  font-weight: 700px;
  font-size: 18px;
  box-shadow: 3px 3px 6px #00000029;
}

.login-form-modal-content button:hover, input#wp-submit:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.login-form-modal-content .cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the image and position the close button */
.login-form-modal-content .imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

.login-form-modal-content img.avatar {
  width: 40%;
  border-radius: 50%;
}

.login-form-modal-content .container {
  padding: 16px;
}

.login-form-modal-content span.psw {
  text-align: right;
  padding-top: 16px;
}

/* 1st Input */
.login-form-modal-content input.input1, .login-form-modal-content input.input2, .login-form-modal-content input.input3, .login-form-modal-content input.input4, .login-form-modal-content input.input5 {
    top: 486px;
    left: 717px;
    width: 66px;
    height: 76px;
    text-align: center;
    font: normal normal normal 33px/40px Montserrat;
    letter-spacing: 0px;
    color: #3E3E3E;
    background: #C5BEB8 0% 0% no-repeat padding-box;
    opacity: 1;
    border-radius: 9px;
    border: none;
    box-shadow: 3px 3px 6px #00000029;
}

/* 2nd Input */
.login-form-modal-content .input2 {
    left: 810px;
    /* Add additional styles as needed */
}

/* 3rd Input */
.login-form-modal-content .input3 {
    left: 876px;
    /* Add additional styles as needed */
}

/* 4th Input */
.login-form-modal-content .input4 {
    left: 969px;
    /* Add additional styles as needed */
}

/* 5th Input */
.login-form-modal-content .input5 {
    left: 1062px;
    /* Add additional styles as needed */
}

/* Remove arrows from number input */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}


input#user_login::before{
	width: 18px;
	height: 19px;
	/* UI Properties */
	background: transparent url('/wp-content/themes/stock-management-theme/assets/Extra/SignUp_Page-image2.png') 0% 0% no-repeat padding-box;
}

img.stock-landing-image {
    max-width: 45%;
    max-height: 80%;
}

html {
     margin-top: 0px !important; 
}

.user-menu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #f1f1f1;
    margin-left: 40px;
    color: #1D9999;
    box-shadow: 3px 3px 6px #00000029;
}

.user-menu-bar a{
	color: #1D9999;
}

.add-paint-icon,
.settings-icon {
    margin: 0 10px;
}

.user-menu {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.user-name{
	font-size: 18px;
}

.user-avatar {
    margin-right: 5px;
}

.user-avatar img {
    height: 35px;
    border-radius: 50%;
}

.user-menu-dropdown,
.settings-dropdown,.notifications-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
    right: 0px;
    top: 60px;
}

.user-menu-dropdown a,
.settings-dropdown a,.notifications-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

div#wpadminbar{
	display: none;
}
#settings-icon,#add-paint, #user-info{
	text-decoration: none;
}

i.fas.fa-bell {
        font-size: 25px;
    height: 25px;
    width: 25px;
}

span.dashicons.dashicons-admin-settings {
    font-size: 35px;
    width: 40px;
    height: 40px;
}

span.dashicons.dashicons-plus{
    font-size: 35px;
    width: 40px;
    height: 40px;
}

img.avatar.avatar-32.photo{
 border-radius: 25px;
}

#profile-update-form {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.dropdown-menu {
	    min-width: 11rem;
	}

#profile-update-form .left-column,
#profile-update-form .right-column {
    width: 48%; /* Adjust as needed */
}

#profile-update-form .left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#profile-update-form .avatar-container img {
    max-width: 100%;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Add more styles as needed */


#profile-update-form label {
    display: block;
    margin-bottom: 5px;
}

#profile-update-form input[type=text],#profile-update-form input[type=email],#profile-update-form input[type=file], #user-reset-password-form input[type=password],#profile-update-form input[type=tel] {
    	display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px #2ea3f2 solid;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	  margin: 8px 0;
	  
}

/* Set a style for all buttons */
#profile-update-form input[type=submit] {
  border: none;
  background-color: #1D9999;
}

#profile-update-form input[type=submit]:hover {
  opacity: 0.8;
}

#profile-update-form .success-message {
    color: green;
}

#profile-update-form .error-message {
    color: red;
}

.small-card {
      width: 200px;
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .in-stock {
      background-color: #D9FFEA; /* Green for in stock */
      color: #28a745;
    }

    .out-of-stock {
      background-color: #FFA7A7; /* Red for out of stock */
      color: #dc3545;
    }

    .on-site {
      background-color: #E5F1FD; /* Blue for on site */
      color: #007bff;
    }

    .low-on-stock {
      background-color: #FFF9DF; /* Yellow for low on stock */
      color: #ffc107;
    }

    /* Larger icon size for better visibility */
    .small-card big {
      font-size: 2em;
    }
    
    .paint-transact-button {
       	  border: none;
	  color: white;
	  width:100%;
	  padding: 15px 32px;
	  text-align: center;
	  text-decoration: none;
	  display: block;
	  font-size: 14px;
	  margin: 4px 2px;
	  cursor: pointer;
	  border-radius: 35px;
	  box-shadow: inset 2px 1px 20px #00000029;
    }

    .button1 {
      background-color: #28a745; /* Green */
    }

    .button2 {
      background-color: #007bff; /* Blue */
    }

    .button3 {
      background-color: #dc3545; /* Red */
    }
    
#regForm {
  background-color: #ffffff;
  margin: 20px auto;
  width: 70%;
  min-width: 300px;
}

#regForm h2 {
  text-align: center;  
}

#regForm input,select, textarea {
  display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 8px 0px;
}

/* Mark input boxes that gets an error on validation: */
#regForm input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
#regForm .tab {
  display: none;
}

#regForm button {
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  background: 	#009999;
  box-shadow: inset 2px 1px 20px #00000029;
  border-radius: 8px;
  cursor: pointer;
}

#regForm button:hover {
  opacity: 0.8;
}

#regForm #prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
#regForm .step {
      width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddd;
    display: inline-block;
    position: relative;
    margin-right: 30px;
    box-shadow: inset 2px 1px 20px #00000029;
    }

   #regForm .step::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 100%;
      height: 2px;
      width:35px; /* Adjust the length of the line */
      background-color: #ddd;
      transform: translateY(-50%);
    }

   #regForm .step:last-child::after {
      display: none; /* Hide the line after the last dot */
    }

#regForm .step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
#regForm .step.finish {
  background-color: #009999;
}

#regForm .step.finish::after {
  background-color: #009999;
}

#regForm .card {
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      cursor: pointer;
      margin: 10px;
      box-shadow: 3px 3px 6px #00000029;
    }
    
    #regForm .card:hover {
    	background-color: #009999;
    	box-shadow: 3px 3px 6px #00000029;
    }

    #regForm #scan, #regForm #insert {
      display: none;
    }
    
    #regForm1 {
  background-color: #ffffff;
  margin: 20px auto;
  width: 70%;
  min-width: 300px;
}

#regForm1 h2 {
  text-align: center;  
}

#regForm1 input, #regForm1 select, #regForm1 textarea {
  display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 8px 0px;
}

/* Mark input boxes that get an error on validation: */
#regForm1 input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
#regForm1 .tab1 {
  display: none;
}

#regForm1 button {
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  background: #009999;
  box-shadow: inset 2px 1px 20px #00000029;
  border-radius: 8px;
  cursor: pointer;
}

#regForm1 button:hover {
  opacity: 0.8;
}

#regForm1 #prevBtn1 {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
#regForm1 .step1 {
  width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddd;
    display: inline-block;
    position: relative;
    margin-right: 30px;
    box-shadow: inset 2px 1px 20px #00000029;
}

#regForm1 .step1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  height: 2px;
  width: 35px; /* Adjust the length of the line */
  background-color: #ddd;
  transform: translateY(-50%);
}

#regForm1 .step1:last-child::after {
  display: none; /* Hide the line after the last dot */
}

#regForm1 .step1.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
#regForm1 .step1.finish {
  background-color: #009999;
}

#regForm1 .step1.finish::after {
  background-color: #009999;
}

#regForm1 .card {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  margin: 10px;
  box-shadow: 3px 3px 6px #00000029;
}

#regForm1 .card:hover {
  background-color: #009999;
  box-shadow: 3px 3px 6px #00000029;
}

#regForm1 #scan1, #regForm1 #insert1 {
  display: none;
}


#regForm2 {
  background-color: #ffffff;
  margin: 20px auto;
  width: 70%;
  min-width: 300px;
}

#regForm2 h2 {
  text-align: center;  
}

#regForm2 input, #regForm2 select, #regForm2 textarea {
  display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 8px 0px;
}

/* Mark input boxes that get an error on validation: */
#regForm2 input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
#regForm2 .tab2 {
  display: none;
}

#regForm2 button {
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  background: #009999;
  box-shadow: inset 2px 1px 20px #00000029;
  border-radius: 8px;
  cursor: pointer;
}

#regForm2 button:hover {
  opacity: 0.8;
}

#regForm2 #prevBtn2 {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
#regForm2 .step2 {
  width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddd;
    display: inline-block;
    position: relative;
    margin-right: 30px;
    box-shadow: inset 2px 1px 20px #00000029;
}

#regForm2 .step2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  height: 2px;
  width: 35px; /* Adjust the length of the line */
  background-color: #ddd;
  transform: translateY(-50%);
}

#regForm2 .step2:last-child::after {
  display: none; /* Hide the line after the last dot */
}

#regForm2 .step2.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
#regForm2 .step2.finish {
  background-color: #009999;
}

#regForm2 .step2.finish::after {
  background-color: #009999;
}

#regForm2 .card {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  margin: 10px;
  box-shadow: 3px 3px 6px #00000029;
}

#regForm2 .card:hover {
  background-color: #009999;
  box-shadow: 3px 3px 6px #00000029;
}

#regForm2 #scan2, #regForm2 #insert2 {
  display: none;
}

    
    #scanner-container {
      text-align: center;
      margin-top: 20px;
    }
    
    #scanner-container video{
    	border-radius: 25px; 
    }

    #barcode-result {
      margin-top: 20px;
    }
    
    .taxonomy-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        text-align: center;
        border-radius: 18px;
       
    }

    .taxonomy-table th, .taxonomy-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
    }

    .taxonomy-table th {
        background-color: #f2f2f2;
        color: #009999;
    }

    .taxonomy-table tbody tr:hover {
        background-color: #f5f5f5;
    }
    
    .bottom-navbar {
        display: none;
    }

/* Responsive Styles (Hide icons on larger screens) */
@media (max-width: 900px) {
    .bottom-navbar {
        display: none;
    }
    
    .landing-page-container .title b,.landing-page-container .title strong {
	    font-size: 45px;
	}
	
	.landing-page-container .title {
	    font-size: 30px;
	}
	
	.landing-page-container .text .container {
	    display: none;
	}
	
	.login-form-modal-content {
	    margin-left: 12px;
	    width: 100%;
	}
	
	#profile-update-form .left-column, #profile-update-form .right-column{
	    	width: 100%;
	    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .bottom-navbar {
        display: flex;
    
    }
    .user-menu-bar {
	    margin-left: 0px;
      }
      
      .col-3 {
	    -webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	    flex: 0 0 50%;
	    max-width: 50%;
	    padding-top: 20px
	}
	
	.col-md-2 {
	    padding-top: 35px;
	}
	    
    
#primary {
  position: relative;
    margin-left: 0px;
    padding-bottom: 100px;
    top: 10px;
    left: 10px;
    width: 99%;
}

.login-form-modal-content {
    margin-left: 2px;
    width: 100%;
}

img.stock-landing-image {
    display: none;
}

.landing-page-container .title b,.landing-page-container .title strong {
    font-size: 35px;
}

.landing-page-container .title {
    font-size: 25px;
}

.dammy {
    width: 100%; 
    padding-top: 50%;
}

.landing-page-container .text .container {
    display: none;
}

#regForm, #regForm1, #regForm2 {
    width: 100%; 
    padding: 15px;
}

#regForm .step, #regForm .step::after, #regForm1 .step1, #regForm1 .step1::after, #regForm2 .step2, #regForm2 .ste2::after {
	display: none;
}

#profile-update-form .left-column, #profile-update-form .right-column{
	    	width: 100%;
	    }
	    
	    #profile-update-form {display: block;}
	    
	    .rc-anchor-normal {
		    height: 74px;
		    width: 240px;
		}
		
		.login-form-modal-content input.input1, .login-form-modal-content input.input2, .login-form-modal-content input.input3, .login-form-modal-content input.input4, .login-form-modal-content input.input5 {
    top: 486px;
    left: 717px;
    width: 56px;
    height: 76px;
    text-align: center;
    font: normal normal normal 33px / 40px Montserrat;
    letter-spacing: 0px;
    color: #3E3E3E;
    background: #C5BEB8 0% 0% no-repeat padding-box;
    opacity: 1;
    border-radius: 9px;
    border: none;
    box-shadow: 3px 3px 6px #00000029;
}

.checkout-step-body {
	    padding-left: 0px; 
	    padding-top: 0px; 
	}

}

@media (max-width: 450px) {
	.rc-anchor-normal {
	    height: 74px;
	    width: 230px;
	}
	
	.login-form-modal-content input.input1, .login-form-modal-content input.input2, .login-form-modal-content input.input3, .login-form-modal-content input.input4, .login-form-modal-content input.input5 {
        top: 486px;
        left: 717px;
        width: 30px;
        height: 46px;
        text-align: center;
        font: normal normal normal 33px / 40px Montserrat;
        letter-spacing: 0px;
        color: #3E3E3E;
        background: #C5BEB8 0% 0% no-repeat padding-box;
        opacity: 1;
        border-radius: 9px;
        border: none;
        box-shadow: 3px 3px 6px #00000029;
    }
    
	#primary {
	    position: relative;
	    margin-left: 0px;
	    left: 10px;
	    width: 97%;
	}
	
	.checkout-step-body {
	    padding-left: 0px; 
	    padding-top: 0px; 
	}

}