/*
 * File:		local.css
 * Author:		Richard Klijn
 * 
 * This stylesheet is loaded after stylesheet.css and can be used to provide you own classes and override basic classes. This default local.css is
 * intended to avoid a 404 error
 */

/* Override general style */

:root {
   
    --font-size: 16px;

	--color-background: white;

	--color-text: rgb(30, 30, 30);
	--color-text-lighter: rgb(100, 100, 100);
	--color-text-light: rgb(240, 240, 240);
	
	--color-input-mandatory: rgb(246, 246, 214);
	--color-input-background: 242, 242, 242;
	
	--color-button-color: var(--color-text);
	--color-button-background: var(--color-input-background);
	--color-button-background-hover: 223 223 223;
	
	--color-button-back-color: var(--color-text-light);
	--color-button-back-background: var(--color-secondary);
	--color-button-back-background-hover: rgb(143 157 169);
	
	--color-border: rgb(120, 120, 120);
	
	--color-header-border: lightgray;
	--color-header-background: #F8F9F9;
	

	--color-primary: rgb(133 190 102);
	--color-secondary: rgb(108, 117, 125);
	--color-ok: rgb(25, 135, 84);
	--color-warning: rgb(255, 156, 7);
	--color-error: rgb(220, 53, 69);
	--color-light: rgb(248, 249, 250);
	--color-dark: rgb(33, 37, 41);
	--color-grey: rgb(33, 37, 41);
	
	--color-primary-light: rgb(235, 230, 250);
	--color-secondary-light: rgb(227, 231, 233);
	
	--color-button-primary: rgb(133 190 102);
	--color-button-secondary: rgb(108, 117, 125);
	--color-button-ok: rgb(25, 135, 84);
	--color-button-warning: rgb(255, 156, 7);
	--color-button-error: rgb(220, 53, 69);
	
	--color-tab-active: var(--color-primary);
	--color-tab-inactive: var(--color-secondary);
	
}
.myProfileModal {
	margin: 3rem 0 15% auto;
}

.myCompanyModal {
	margin: 3rem 70px 15% auto;
}

.myScratchpadModal {
	margin: 3rem auto auto auto;
}

.myChatModal {
	margin: 3rem 0px auto auto;
}

.mySearchModal {
	margin: 3rem auto auto auto;
}

.caseModal {
	margin: 3rem 60px 15% auto;
}

body.login {
  background: radial-gradient(circle, rgb(164 228 129) 0%, rgb(133 190 102) 100%);
}

.LoginLeftImg {
	background-image: url('../images/Logo_GreenMaster_color.png');
}


.centeredModal{
  top: 50% !important;
  left: 50% !important;
  position: absolute;
  transform: translate(-50%, -50%);
}


.company-banner {
    width: calc(100%);
    color: white;
    text-align: center;
    padding: 20px;
}

.company-banner-img{

background-image: url('http://localhost/gmaster/gmvmain/includes/images/logo/beyondlogo.png');
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Style for filter */
.filter-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    border-right: 1px solid lightgrey;
    padding: 20px;
    overflow-y: auto;
    /*display: none; Hidden by default for mobile */
    z-index: 1000; /* Ensure it's above other content */

 max-width: calc(100% - 40px);
}

.toggle-filter {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000; /* Ensure it's above other content */
}

div#pfSls_prchsefrmcmpnyFltr\.edit input {
  min-width: 100%;
  width: 100%;
}

/* Style for shopping cart */
.shopping-cart {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    border-left: 1px solid lightgrey;
    padding: 20px;
    overflow-y: auto;
    display: none; /* Hidden by default for mobile */
    z-index: 1000; /* Ensure it's above other content */

 max-width: calc(100% - 40px);
}

/* Shopping cart close button */
.shopping-cart .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.filter-container .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
}


/* Style for mobile toggle button */
.toggle-cart {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000; /* Ensure it's above other content */
}


.cart-total {
    font-weight: bold;
    text-align: right;
}

/* Media queries for responsive design */
@media (max-width: 768px) {

.itemswrapper{

width: unset !important;



}
    .shopping-cart {
        display: none; /* Hidden by default */
        width: 100%;
        height: 100%;
    }
    .filter-container {
      display: none; /* Hidden by default */
      width: 100%;
      height: 100%;
  }
    
    .toggle-cart {
        display: block; /* Show toggle button on mobile */
    }

    .toggle-filter {
      display: block; /* Show toggle button on mobile */
  }
}

@media (min-width: 769px) {
    .shopping-cart {
        display: block; /* Always visible on larger screens */
    }



#close-cart{

display: none;

}


}




.submitShoppingCart{

background-color: #6dc15d;
  color: white;
border: none;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
text-align: center;
border-radius: 10px;
font-weight: bold;
  position: fixed;
  bottom: 50px;
width: 250px;
right: 40px;
}



.remove-btn {
    background-color: #dc3545; /* Red background */
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
}

.remove-btn:hover {
    background-color: #c82333;
}


.zXForgotPwd {
  text-decoration: none;
  font-size: 12px;
    line-height: 18px;
    color: #6d6e6f;
}

.zXPageAction.dummyClass {
  background-color: #023d61;
}

.rltnCmpnyInvteModal{
  margin-left: 25vw;
  margin-top:10vw;
}