@font-face {
	font-family: 'BebasNeue';
  font-display: fallback;
	src:
		url('/static/fonts-all/BebasNeueRegular.woff2') format('woff2'),
		url('/static/fonts-all/BebasNeueRegular.ttf') format('truetype');
}
@font-face {
	font-family: 'Poppins';
  font-display: fallback;
	src:
		url('/static/fonts-all/Poppins-Regular.woff2') format('woff2'),
		url('/static/fonts-all/Poppins-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Lato';
  font-display: fallback;
	src:
		url('/static/fonts-all/Lato-Regular.woff2') format('woff2'),
		url('/static/fonts-all/Lato-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Roboto';
  font-display: fallback;
	src:
		url('/static/fonts-all/Roboto-Regular.woff2') format('woff2'),
		url('/static/fonts-all/Roboto-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Roboto Light';
  font-display: fallback;
	src:
		url('/static/fonts-all/Roboto-Light.woff2') format('woff2'),
		url('/static/fonts-all/Roboto-Light.ttf') format('truetype');
}
@font-face {
	font-family: 'Montserrat';
  font-display: fallback;
	src:
		url('/static/fonts-all/Montserrat-Regular.woff2') format('woff2'),
		url('/static/fonts-all/Montserrat-Regular.ttf') format('truetype');
}

:root {
  --side-back-color:   #ffffff;
  --side-text-color:   #000;
  --side-border-color: #000;
  --side-border-width: 0px;

  /* --main-color: #f8b912; */
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
  width: 100%;
  min-height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  background-color: var(--page-back-color, white);
  font-family: var(--page-font-style, 'arial');
  color: var(--page-text-color, black);
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
}
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
}
main {
  flex-grow: 1;
}
footer {
  background-color: var(--menu2-back-color, black);
  color: var(--menu2-text-color, white);
  width: 100%;
  height: 30px;
}
h1 {
  font-size: 1.5rem;
  font-family: inherit;
  text-align: left;
}
h2 {
  font-size: 1.2rem;
  font-family: inherit;
  text-align: left;
}
a {
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  color: var(--page-text-color, black);
  /* display: grid; */
}
.wm50 {
  max-width: 50px;
}
.hide {
  display: none;
}
.none {
  display: none;
}
@media only screen and (max-width: 800px) {
  .hidem {
    display: none !important;
    pointer-events: none;
  }
  .hidem input {
    display: none;
    visibility: hidden;
  }
}
@media only screen and (min-width: 801px) {
  .hided {
    display: none !important;
    pointer-events: none;
  }
  .hided input {
    display: none;
    visibility: hidden;
  }
}
.spacer {
  width: 100%;
  height: 30px;
  background-color: inherit;
  cursor: auto;
}
.centerer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
.txtleft {
  text-align: left;
  margin-top: 7px;
}
.txtleft p {
  margin: 0px;
}
.txtright {
  text-align: right;
  margin-top: 7px;
}
.txtright p {
  margin: 0px;
}
.txtcenter {
  text-align: center;
  margin-top: 7px;
}
.txtcenter p {
  margin: 0px;
}
.txtjustify {
  text-align: justify;
}
.txtjustify p {
  margin: 0;
}
.full-text {
  margin: auto;
}
.fullcenter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 60%;
  width: 100%;
}
.datepicker-picker {
  color: black;
}
.calendar {
  margin: auto;
  border: 1px solid black;
  width: fit-content;
}

/** SHOP LOGIN REGISTER START */
.login,
.register {
  /* box-shadow: 8px 10px 20px 0px rgba(0, 0, 0, 0.8); */
  max-width: 420px;
  width: 100%;
  margin: 10px auto 30px auto;
  text-align: center;
  min-width: 320px;
  background-color: #fff;
  border: 0px solid #000;
  border-radius: 0em;
}
.login h1,
.register h1 {
  color: var(--main-color, #000000);
  font-size: 28px;
  padding: 7px 0 7px 0;
  text-align: center;
  margin: 0px;
}
.login .logo,
.register .logo {
  font-size: 40px;
  font-weight: bold;
  font-family: var(--logo-font-style,);
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
  display: block;
}
.login .logo .logo-last,
.register .logo .logo-last {
  color: var(--main-color, #000000);
}
.login .login-form,
.register .register-form {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  /* gap: 15px; */
  padding: 0px 10px 30px 10px;
}
.login .login-form .field,
.register .register-form .field {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.login .login-form .field svg,
.register .register-form .field svg {
  position: absolute;
  top: 25%;
  left: 10px;
}
.login .login-form .field .input,
.register .register-form .field .input {
  background-color: var(--input-back-color, white);
  font-size: var(--input-font-size, 1rem);
  color: var(--input-text-color, black);
  border: var(--input-border-width, 1px) solid var(--input-border-color, black);
  border-radius: var(--input-border-radius, 0px);
  font-family: inherit;
  width: 100%;
  height: 35px;
  padding: 0 10px;
}
.login .login-form .field .error,
.register .register-form .field .error {
  color: #fff;
  position: absolute;
  top: 1px;
  right: 1px;
  font-size: 0.7rem;
  background-color: #df1b1b;
  padding: 1px 4px;
}
.login .login-form .field .input::-webkit-input-placeholder,
.register .register-form .field .input::-webkit-input-placeholder { /* WebKit browsers */
  text-transform: inherit;
  color: #757575;
  font-size: 0.8rem;
}
.login .login-form .field .input:-moz-placeholder,
.register .register-form .field .input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  text-transform: inherit;
  color: #757575;
  font-size: 0.8rem;
}
.login .login-form .field .input::-moz-placeholder,
.register .register-form .field .input::-moz-placeholder { /* Mozilla Firefox 19+ */
  text-transform: inherit;
  color: #757575;
  font-size: 0.8rem;
}
.login .login-form .field .input::-ms-input-placeholder,
.register .register-form .field .input::-ms-input-placeholder { /* Internet Explorer 10+ */
  text-transform: inherit;
  color: #757575;
  font-size: 0.8rem;
}
.login .login-form .field .input::placeholder,
.register .register-form .field .input::placeholder { /* Recent browsers */
  text-transform: inherit;
  color: #757575;
  font-size: 0.8rem;
}
.login .login-form .checkdiv,
.register .register-form .checkdiv {
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 40px 4fr;
  grid-gap: 0px;
}
.login .login-form .checkdiv .rac,
.register .register-form .checkdiv .rac {
  width: 25px;
  height: 25px;
  padding: 0;
  accent-color: var(--button-back-color, wheat);
  margin: var(--input-border-width, 0px) 0 0 0;
  /* box-shadow: 0px 0px 0px var(--input-border-width, 0px) var(--input-border-color, black); */
}
.login .login-form .checkdiv .ral,
.register .register-form .checkdiv .ral {
  text-align: left;
  font-size: 0.8rem;
}
.login .login-form .checkdiv a,
.register .register-form .checkdiv a {
  text-decoration: underline;
}
.login .login-form button,
.register .register-form button {
  background-color: var(--button-back-color, wheat);
  color: var(--button-text-color, black);
  border: var(--button-border-width, 1px) solid var(--button-border-color, black);
  border-radius: var(--button-border-radius, 0px);
  padding: var(--button-padding, 0);
  font-size: var(--button-font-size, 1rem);
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  /* font-weight: bold; */
  transition: background-color 0.2s;
  box-sizing: inherit;
}
.login .login-form button:hover,
.register .register-form button:hover {
  background-color: var(--button-back-hover, wheat);
  /* transition: background-color 0.2s; */
}
.login .href-login,
.register .href-login {
  width: 100%;
}
.login .btn-register,
.register .btn-login {
  background-color: var(--button-back-color, wheat);
  color: var(--button-text-color, black);
  border: var(--button-border-width, 1px) solid var(--button-border-color, black);
  border-radius: var(--button-border-radius, 0px);
  padding: var(--button-padding, 0);
  /* padding: 13px 0px; */
  font-size: var(--button-font-size, 1rem);
  width: 100%;
  cursor: pointer;
  /* font-weight: bold; */
  transition: background-color 0.2s;
  font-family: inherit;
}
.login .btn-register:hover,
.register .btn-login:hover {
  background-color: var(--button-back-hover, wheat);
  /* transition: background-color 0.2s; */
}

.login .login-form .label-info,
.register .register-form .label-info {
  align-self: flex-start;
  font-size: 0.8rem;
}
/** SHOP LOGIN REGISTER END */


/** SHOP POPUP REGISTER CARD START */
.card {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 20px auto;
  z-index: 2;
  height: 75vh;
}
.card .card-inner {
  background-color: var(--page-back-color, white);
  max-width: 1200px;
  border: 1px solid black;
  padding: 20px;
  margin: auto;
  overflow-y: scroll;
  height: inherit;
}
.card .closeSpan {
  color: var(--page-text-color, black);
  float: right;
  font-size: 4rem;
  font-weight: bold;
  line-height: 2rem;
  margin-right: 3px;
}
.card .closeSpan:hover,
.card .closeSpan:focus {
  color: #bfbfbf;
  text-decoration: none;
  cursor: pointer;
}
/** SHOP POPUP REGISTER CARD END */


/** SHOP RAPORTS START */
.raport-1,
.raport-true {
  background-color: #006451;
}
.raport-0,
.raport-false {
  background-color: #e80202;
}
.raport-info {
  background-color: #2c529b;
}
.alert {
  margin: auto;
  grid-column: span 2;
  color: #cc3939;
  padding: 4px;
  width: 99%;
}
/** SHOP RAPORTS END */


/** SHOP JS POPUP INFOBOX START */
.infoBoxJS {
  display: block;
  width: 80%;
  z-index: 1000;
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  -webkit-transition: opacity 1000ms linear;
  transition: opacity 1000ms linear;
}
@media screen and (max-width: 799px) {
  .infoBoxJS {
    width: 100%;
  }
}
.infoBoxJS pre {
  font-family: inherit;
}
.infoBoxJS .infoBox-contentJS {
  margin: auto;
  width: 100%;
  /* max-width: 360px; */
  border-radius: 0px;
}
.infoBoxJS .infoBox-contentJS .closeBox {
  color: #fff;
  float: right;
  font-size: 35px;
  font-weight: bold;
  margin-right: 13px;
}
.infoBoxJS .infoBox-contentJS .closeBox:hover,
.infoBoxJS .infoBox-contentJS .closeBox:focus {
  color: #bfbfbf;
  text-decoration: none;
  cursor: pointer;
}
.infoBoxJS .infoBox-contentJS .raport {
  padding: 0;
  list-style-type: none;
  margin: 0px auto 0px auto;
  text-align: center;
}
.infoBoxJS .infoBox-contentJS .raport li {
  border: 0px solid black;
  border-radius: 0px;
  color: #fff;
  padding: 1px;
  margin: 5px;
  font-weight: bold;
}
/** SHOP JS POPUP INFOBOX END */


/** SHOP POPUP INFOBOX START */
.infoBox {
  display: block;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.infoBox .infoBox-content {
  margin: 15% auto;
  width: 100%;
  max-width: 360px;
  border-radius: 0px;
}
.infoBox .infoBox-content .closeBox {
  color: #fff;
  float: right;
  font-size: 35px;
  font-weight: bold;
  margin-right: 13px;
}
.infoBox .infoBox-content .closeBox:hover,
.infoBox .infoBox-content .closeBox:focus {
  color: #bfbfbf;
  text-decoration: none;
  cursor: pointer;
}
.infoBox .infoBox-content .raport {
  padding: 0;
  list-style-type: none;
  margin: 0px auto 0px auto;
  text-align: center;
}
.infoBox .infoBox-content .raport li {
  border: 0px solid black;
  border-radius: 0px;
  color: #fff;
  padding: 30px;
  margin: 5px;
  font-weight: bold;
}
/** SHOP POPUP INFOBOX END */

/** SHOP ALL PAGE START */
.fullpage {
  text-align: center;
  display: flex;
  flex-direction: row;
  /* min-height: calc(100vh - 45px);
  min-height: calc(100dvh - 45px); */
}
@media screen and (max-width: 799px) {
  .fullpage {
    margin: 45px 0px 0px 0px;
    overflow-y: hidden;
  }
}
/** SHOP ALL PAGE END */


/** SHOP MENU LEFT START */
.slide-left {
  width: 49.8%;
  max-width: 200px;
  min-width: 160px;
  background-color: var(--side-back-color);
  color: var(--side-text-color);
  margin-left: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  /* height: calc(100vh - 45px);
  height: calc(100dvh - 45px); */
}
@media screen and (max-width: 799px) {
  .slide-left {
    z-index: 9;
    top: 45px;
    left: 0px;
    bottom: 0px;
    position: fixed;
    margin-left: -50%;
    border-top: 1px solid #f8b912;
  }
}
.slide-left a {
  color: inherit;
  box-sizing: border-box;
}
.slide-left .top-left {
  background-color: var(--top-back-color, black);
  color: var(--top-text-color, white);
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: var(--side-border-width) solid var(--side-border-color);
}
.slide-left .top-left #clock {
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  background-color: black;
  border-radius: 0;
}
.slide-left .menu1 {
  background-color: var(--menu1-back-color, #ccc);
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  gap: 10px;
  padding: 5px 5px;
  border: var(--side-border-width) solid var(--side-border-color);
}
.slide-left .menu1 .button {
  text-transform: var(--menu1-text-upper, inherit);
  color: var(--menu1-text-color, black);
  background-color: var(--menu1-button-color, inherit);
  border-width: var(--menu1-border-width, 0px);
  border-color: var(--menu1-border-color, black);
  border-radius: var(--menu1-border-radius, 0px);
  border-style: solid;
  padding: var(--menu1-padding, 0) 2px;
  font-size: var(--menu1-font-size, 1rem);
  display: flex;
  justify-content: start;
  align-items: center;
  transition: all 0.5s ease;
}
@media screen and (max-width: 340px) {
  .slide-left .menu1 .button {
    font-size: 14px;
  }

}

.slide-left .menu1 .button {
  transition: all 0.3s ease-in-out;
  transform: scale(1, 1);
}

.slide-left .menu1 .button:hover {
  transform: scale(1.05, 1.05);
}



.slide-left .menu1 .button:hover {
  background-color: var(--menu1-button-hover, black);
}
.slide-left .menu1 .current {
  background-color: var(--main-color);
}
.slide-left .menu1 .button img {
  width: auto;
  height: 40px;
}
#slide-left-button {
  display: none;
}
@media screen and (max-width: 799px) {
  #slide-left-button {
    background-color: var(--top-back-color, black);
    color: var(--top-text-color, white);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 36px;
    width: 60px;
    height: 45px;
  }
}
/*! Animate Hamburger */
#slide-left-button {
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}
#slide-left-button span {
  display: block;
  position: absolute;
  height: 5px;
  width: 40px;
  background: var(--top-text-color, white);
  border-radius: 9px;
  opacity: 1;
  left: 10px;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
#slide-left-button span:nth-child(1) {
  top: 7px;
}
#slide-left-button span:nth-child(2), #slide-left-button span:nth-child(3) {
  top: 20px;
}
#slide-left-button span:nth-child(4) {
  top: 33px;
}
#slide-left-button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#slide-left-button.open span:nth-child(2) {
  transform: rotate(45deg);
}
#slide-left-button.open span:nth-child(3) {
  transform: rotate(-45deg);
}
#slide-left-button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
/** SHOP MENU LEFT END */

/** SHOP TOP CENTER START */
#slide-center-button {
  display: none;
}
@media screen and (max-width: 799px) {
  #slide-center-button {
    background-color: var(--top-back-color, black);
    color: var(--top-text-color, white);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
  }
}
/** SHOP TOP CENTER END */


/** SHOP MAIN CENTER WINDOW START */
.mcenter {
  width: 100%;
  margin: 0px auto;
  background-color: var(--page-back-color, white);
  color: var(--page-text-color, black);
  border: 0;
}
.mcenter h1 {
  text-align: center;
  font-weight: unset;
  margin: 0px 0px 0px 0px;
  font-size: 1rem;
  padding: 0px;
}
.mcenter p {
  margin: 0px;
}
.mcenter .mtop {
  height: 45px;
  line-height: 45px;
  background-color: var(--top-back-color, black);
  color: var(--top-text-color, white);
  outline: var(--side-border-width) solid var(--side-border-color);
}
@media screen and (max-width: 799px) {
  .mcenter {
    border-top: 1px solid var(--main-color, white);
  }
  .mcenter .mtop {
    height: 45px;
  }
}
.mcenter .camera {
  display: inline-block;
  margin-top: 0px;
}

.mcenter form .input {
  background-color: var(--input-back-color, white);
  font-size: var(--input-font-size, 1rem);
  color: var(--input-text-color, black);
  border: var(--input-border-width, 1px) solid var(--input-border-color, black);
  border-radius: var(--input-border-radius, 0px);
  font-family: inherit;
  width: 100%;
  height: 50px;
  padding: 0 10px;
}
.mcenter form .select {
  background-color: var(--input-back-color, white);
  font-size: var(--input-font-size, 1rem);
  color: var(--input-text-color, black);
  border: var(--input-border-width, 1px) solid var(--input-border-color, black);
  border-radius: var(--input-border-radius, 0px);
  font-family: inherit;
  width: 100%;
  height: 50px;
  padding: 0 10px;
}

.mcenter form .flexradio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.mcenter form .radio {
  height: 25px;
  width: 25px;
}
/** SHOP MAIN CENTER WINDOW END */


/** SHOP RIGHT EXTENSION START */
.slide-right {
  width: 49.8%;
  max-width: 200px;
  min-width: 160px;
  background-color: var(--side-back-color);
  color: var(--side-text-color);
  margin-right: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  /* height: calc(100vh - 45px);
  height: calc(100dvh - 45px); */
}
@media screen and (max-width: 799px) {
  .slide-right {
    z-index: 9;
    top: 45px;
    right: 0px;
    bottom: 0px;
    width: 49.8%;
    position: fixed;
    margin-right: -50%;
    border-top: 1px solid #f8b912;
  }
}
.slide-right a {
  text-decoration: none;
  color: black;
}
.slide-right .top-right {
  background-color: var(--top-back-color, black);
  color: var(--top-text-color, white);
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: var(--side-border-width) solid var(--side-border-color);
}
.slide-right .menu2 {
  background-color: var(--sub1-back-color, #ccc);
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  gap: 15px;
  padding: 10px 5px;
  border: var(--side-border-width) solid var(--side-border-color);
}
.slide-right .menu2 img {
  max-width: 276px;
  width: 97%;
  height: auto;
  margin-top: 5px;
}
.slide-right .menu2 button {
  text-transform: var(--menu1-text-upper, inherit);
  color: var(--sub1-text-color, black);
  background-color: var(--menu1-button-color, white);
  border-width: var(--menu1-border-width, 0px);
  border-color: var(--menu1-border-color, black);
  border-radius: var(--menu1-border-radius, 0px);
  border-style: solid;
  padding: var(--menu1-padding, 0);
  font-size: var(--menu1-font-size, 1rem);
  display: flex;
  justify-content: start;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
}
.slide-right .menu2 button:hover {
  background-color: var(--sub1-back-hover, gray);
}
.slide-right-fake {
  display: none;
}
@media screen and (max-width: 799px) {
  .slide-right-fake {
    display: flex;
  }
}
#slide-right-button {
  display: none;
}
@media screen and (max-width: 799px) {
  #slide-right-button {
    background-color: var(--top-back-color, black);
    color: var(--top-text-color, white);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 35px;
    width: 60px;
    height: 45px;

  }
}
/** SHOP RIGHT EXTENSION END */


/** Tabela lista start */
.responsive-table {
  margin: 0px auto;
  border-collapse: collapse;
}

.responsive-table .table-filter .col-filter {
  border-spacing: 1px;
  border-style: solid;
  border-width: thin;
  border-color: black;
  font-weight: normal;
  color: #ffffff;
  padding: 5px;
}
.responsive-table .table-filter .col-filter select {
  height: 38px;
  border-radius: 0;
  border: 1px solid #ccc;
}
.responsive-table .table-filter .searchbar {
  width: 100%;
}

.responsive-table .table-header {
  background-color: rgb(73, 73, 73);
  font-size: var(--page-font-size, 1rem);
  height: 40px;
}
.responsive-table .table-header .col-name {
  border-spacing: 1px;
  border-style: solid;
  border-width: thin;
  border-color: black;
  font-weight: normal;
  color: #ffffff;
  padding: 5px;
}
.responsive-table .table-row {
  background-color: #ffffff;
}
.responsive-table .table-row:hover {
  background-color: #ffff99 !important;
}
.responsive-table .table-row .col-row {
  border-spacing: 1px;
  border-style: solid;
  border-width: thin;
  border-color: black;
  color: #000000;
  padding: 5px;
}
.responsive-table .table-row .col-row a {
  display: unset;
}
.responsive-table .table-row .col-row .visible {
  height:26px;
  width: 26px;
}
.responsive-table .table-footer {
  background-color: #003657;
  color: white;
  height: 40px;
}
.responsive-table .table-footer .col-foo {
  border-spacing: 1px;
  border-style: solid;
  border-width: thin;
  border-color: black;
  padding: 5px;
}
.responsive-table .col-image {
  width: auto;
  height: 120px;
}
.responsive-table .left {
  text-align: left;
}
.responsive-table .right {
  text-align: right;
}
.responsive-table .center {
  text-align: center;
  margin: auto;
}
.responsive-table .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
}
/** Tabela lista end */

.infoempty {
  height: 60px;
  margin: 200px auto auto auto;
  background-color: var(--top-back-color, black);
  color: var(--top-text-color, white);
  text-align: center;
  line-height: 60px;
  border: 1px solid black;
}
.pageno {
  width: 40px;
  height: 41px;
  color: white;
  background-color: #484848;
  border: 1px solid black;
  border-radius: 8px;
}
.searchdiv {
  margin-left: 20px;
}
.searchbtn {
  font-family: var(--page-font-style, 'arial');
  width: 100px;
  background-color: var(--button-back-color, white);
  color: var(--button-text-color, black);
  border: var(--button-border-width, 1px) solid var(--button-border-color, black);
  border-radius: var(--button-border-radius, 0px);
  height: 40px;
  cursor: pointer;
}
.searchbtn:hover {
  background-color: #2663c4;
}
.searchbar {
  height: 38px;
  color: #000;
  border: 1px solid black;
  border-radius: 2px;
}
.addbtn {
  font-family: var(--page-font-style, 'arial');
  float: left;
  width: 160px;
  background-color: var(--button-back-color, white);
  color: var(--button-text-color, black);
  border: var(--button-border-width, 1px) solid var(--button-border-color, black);
  border-radius: var(--button-border-radius, 0px);
  cursor: pointer;
  height: 40px;
  margin: 0px 5px 0px 5px;
}
.addbtn:hover {
  background-color: var(--button-back-color, white);
}
.addbtnbig {
  font-family: var(--page-font-style, 'arial');
  font-size: 15px;
  width: 302px;
  background-color: #1b7513;
  height: 40px;
  color: #cdcdcd;
  border: 1px solid black;
  cursor: pointer;
  margin: 5px 0px 5px 0px;
  text-align: center;
}
.massdelbtn {
  font-family: var(--page-font-style, 'arial');
  width: 110px;
  background-color: #8c0404;
  height: 40px;
  color: #fff;
  border: 1px solid black;
  cursor: pointer;
  margin: 0px 5px 0px 5px;
}
.clearbtn {
  font-family: var(--page-font-style, 'arial');
  float: right;
  width: 100px;
  background-color: #af1919;
  height: 40px;
  color: #fff;
  border: 1px solid black;
  cursor: pointer;
}
.editbtn {
  font-family: var(--page-font-style, 'arial');
  display: inline-block;
  width: 100px;
  background-color: #484848;
  height: 40px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  border: 1px solid black;
  border-radius: 8px;
}
.delbtn {
  font-family: var(--page-font-style, 'arial');
  display: inline-block;
  width: 100px;
  background-color: #b35d5d;
  height: 40px;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  border: 1px solid black;
  border-radius: 8px;
}

/** HOMEPAGE START */
.home {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  max-width: 450px;
  margin: 20px auto auto auto;
  padding: 0 10px;
}
.home .center {
  text-align: center;
}
.home .line {
  display: grid;
  grid-template-columns: 3fr 1fr;
  width: 100%;
}
.home .line .title {
  text-align: left;
}
.home .line .value {
  text-align: left;
}
.docs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.docs .link-btn {
  text-transform: var(--menu1-text-upper, inherit);
  color: var(--sub1-text-color, black);
  background-color: var(--menu1-button-color, white);
  border-width: var(--menu1-border-width, 0px);
  border-color: var(--menu1-border-color, black);
  border-radius: var(--menu1-border-radius, 0px);
  border-style: solid;
  padding: var(--menu1-padding, 0);
  font-size: var(--menu1-font-size, 1rem);
  display: flex;
  justify-content: start;
  align-items: center;
  transition: all 0.3s ease-in-out;
  transform: scale(1, 1);
  cursor: pointer;
}
.docs .link-btn:hover {
  background-color: var(--sub1-back-hover, gray);
  transform: scale(1.05, 1.05);
}

/** HOMEPAGE END */


/** SHOP PRODUCTS LIST GRID START */
.products-info {
  display: flex;
  flex-direction: column;
  margin: 10px auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid black;
  background-color: black;
  color: white;
  max-width: 588px;
  padding: 5px;
}
.products-info .line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
}


.products-filter .section label {
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid black;
  border-right: 1px solid black;
  border-left: 1px solid black;
  padding: 4px;
  background-color: #ecddbf;
}
.products-filter {
  display: flex;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.products-filter .filter {
  display: flex;
  flex-direction: column;
}
.products-filter .filter label {
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid black;
  border-right: 1px solid black;
  border-left: 1px solid black;
  padding: 4px;
  background-color: #ecddbf;
}
.products-filter .filter select {
  height: 38px;
  border-radius: 0;
  border: 1px solid #000;
}
.list-items-grid {
  grid-template-columns: repeat(auto-fit, minmax(auto, 320px));
  justify-content: space-evenly;
  align-items: center;
  min-height: 50vh;
  display: grid;
  list-style: none;
  margin: 15px 0px 0px 0px;
  padding: 0;
}
@media screen and (max-width: 799px) {
  .list-items-grid {
    grid-template-columns: repeat(auto-fit, minmax(154px, auto));
    align-items: flex-start;
    gap: 5px;
  }
}
.product {
  opacity: 1;
  -webkit-transition: opacity 1000ms linear;
  transition: opacity 1000ms linear;
}
.product .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: var(--prods-border-color, #000000);
  border-width: var(--prods-border-width, 0px);
  border-radius: var(--prods-border-radius, 0px);
  border-style: solid;
  outline-width: var(--prods-outline-width, 0px);
  outline-color: var(--prods-outline-color, #000000);
  outline-style: solid;
}
.product .content a { 
  display: grid; 
}
.product .brief-name {
  display: flex;
  width: 100%;
  min-height: 50px;
  padding: 3px;
  margin-bottom: 20px;
  box-sizing: border-box;
  color: black;
  align-items: flex-start;
  text-align: left;
  font-size: var(--prods-font-size, 0.9rem);
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 799px) { 
  .product .brief-name { 
    font-size: 0.8rem; 
    margin-bottom: 5px;
  } 
}
.product .brief-name h4 {
  margin: 0px;
  font-weight: normal;
}
.product .brief-name a {
  text-decoration: none;
  color: inherit;
}
.product .content .brief-prieces {
  position: absolute;
  z-index: 5;
  bottom: 0px;
  right: 0px;
  padding: 2px;
  margin: 0px;
  background-color: #fff;
  /* border-radius: 6px 0px 0px 0px; */
  height: 20px;
}
@media screen and (max-width: 799px) {
  .product .content .brief-prieces {
    font-size: 12px;
  } 
}
.product .content .brief-sizes {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border: none;
  position: absolute;
  z-index: 5;
  left: 0px;
  bottom: 0px;
  padding: 0px;
  margin: 0px;
}
@media screen and (max-width: 799px) {
  .product .content .brief-sizes {
    font-size: 12px;
  } }
.product .content .brief-sizes .sizeis {
  display: flex;
  justify-content: center;
  color: black;
  white-space: nowrap;
  background-color: #fff;
  margin-top: 3px;
  padding: 2px;
  /* border: 1px solid black; */
}
.product .content .brief-sizes .sizenot {
  display: flex;
  justify-content: center;
  color: gray;
  white-space: nowrap;
  background-color: #d9dbd9a3;
  margin-top: 3px;
  padding: 2px;
}
.product .content .TriProduct {
  position: absolute;
  z-index: 5;
  top: 0px;
  left: 0px;
  width: 52px;
  height: 52px;
}
.product .content .TriProduct button {
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: none;
  background-color: inherit;
}
.product .content .TriProduct label {
  cursor: pointer;
  width: 60px;
  /* height: 60px; */
  border: none;
  background-color: inherit;
  display: block;
  font-size: 12px;
  text-align: center;
}
.product .content .ChkProduct {
  position: absolute;
  z-index: 5;
  top: 0px;
  left: 0px;
  width: 52px;
  height: 52px;
}
.product .content .ChkProduct input {
  display: inline-block;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border: none;
  background-color: inherit;
}
@media screen and (max-width: 799px) {
  .product .content .DelProduct, .product .content .ChkProduct input {
    width: 42px;
    height: 42px;
  }
  .product .content .TriProduct label {
    width: 42px;
    /* height: 42px; */
  }
}
.product .content .DelProduct {
  position: absolute;
  z-index: 5;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
}
.product .content .DelProduct button {
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: none;
  background-color: inherit;
}
@media screen and (max-width: 799px) {
  .product .content .DelProduct, .product .content .DelProduct button {
    width: 42px;
    height: 42px;
  }
}
.product .content .EditProduct {
  position: absolute;
  z-index: 5;
  top: 60px;
  right: 0px;
  width: 52px;
  height: 52px;
}
.product .content .EditProduct a {
  cursor: pointer;
  width: 52px;
  height: 52px;
  border: none;
  background-color: inherit;
}
@media screen and (max-width: 799px) {
  .product .content .EditProduct {
    top: 42px;
    width: 35px;
    height: 35px;
  }
  .product .content .EditProduct a {
    width: 35px;
    height: 35px;
  }
}
.product .content img {
  border: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Dwa zdjęcia jedno hover */
.product .content .figure {
  position: relative;
  display: grid;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.product .content .figure img.secound {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity .2s;
}
.product .content .figure:hover img.secound {
  opacity: 1;
}
.products-help {
  /* text-align: justify; */
  text-align: center;
  margin: 5px;
}
/** SHOP PRODUCTS LIST GRID END */


/** PRODUCT DETAILS START */
.products-details {
  margin: 20px;
}
.products-details .product-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
}
.products-details .product-form div {
  display: flex;
  max-width: 520px;
  text-align: left;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 799px) {
  .products-details .product-form div {
    flex-direction: column;
  }
  .products-details .product-form label {
  align-self: flex-start;
  }
}
.products-details .product-form label {
  line-height: 25px;
  height: 25px;
}
.products-details .product-form input {
  width: 280px;
  height: 25px;
}
.products-details .product-form select {
  width: 280px;
  height: 25px;
}
.products-details .product-form textarea {
  width: 280px;
  height: 200px;
}


/* .products-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 600px));
  justify-content: space-evenly;
}
.products-details .right {
  height:100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  justify-content: space-between;
}
.products-details .product-images {
  width: 99vw;
  max-width: 500px; 
  height: auto; 
  margin: auto;
}
.products-details .product-images img { width: 100%; height: auto; }
.products-details .product-desc { 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%
 } */
/** PRODUCT DETAILS END */

/** SHOP PRODUCTS CHECKER START */
.product input[type=checkbox] {
  display: none;
}

.product input[type=checkbox]:checked + label {
  opacity: 1;
  /* box-shadow: 0 0 0 3px #ffc107; */
}

.product input[type=checkbox]:checked + label figure img {
  -webkit-filter: none; /* Safari 6.0 - 9.0 */
  filter: none;
}

.product input[type=checkbox]:checked + label .VisProduct {
  opacity: 1;
  transform: scale(1);
}

.product input[type=checkbox]:checked + label .VisProduct svg {
  stroke-dashoffset: 0;
}

.product label {
  cursor: pointer;
  overflow: hidden;
  opacity: 0.6;
}

.product label figure img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

/* Kółko z ptaszkiem */
.product label .VisProduct {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  bottom: 35px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--top-back-color, black);
  border: 2px solid #fff;
  transition: transform 0.15s,
  opacity calc(0.15s * 1.2) linear;
  opacity: 0;
  transform: scale(0);
}

/* Ptaszek w środku */
.product label .VisProduct svg {
  width: 26px;
  height: 26px;
  display: inline-block;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  transition: stroke-dashoffset 0.4s ease 0.15s;
  stroke-dashoffset: 16px;
}

/** PAGNATION NAVIGATION START */
.navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
 
.navigation .pagnation-btn {
  height: 50px;
  width: 50px;
  background-color: var(--top-back-color, black);
  border-radius: 14%;
}

.navigation select {
  border: 0;
  width: 58px;
  height: 50px;
  overflow: hidden;
  font-size: 20px;
  /* border-radius: 14%; */
  background-color: var(--top-back-color, black);
  color: var(--top-text-color, white);
}

/** PAGNATION NAVIGATION END */

/** SHOP PRODUCTS CHECKER END */


.assorts .month-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px;
}
.assorts .month-tabs .month-tab-label { 
  width: auto;
	display: flex;
  flex-grow: 1;
  flex-basis: 0;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	margin-right: 0.0625rem;
	cursor: pointer;
	background-color: var(--button-back-color, white);
	color: var(--button-text-color, black);
	transition: background-color ease 0.8s;
}
.assorts .month-tabs .month-tab-label:hover {
  background-color: #a8a8a8;
}
.assorts .month-tabs .month-tab-content {
  display: none;
  gap: 50px 5px;
  grid-template-columns: repeat(auto-fit, minmax(auto, 320px));
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 30px;
  order: 9;
	width: 100%;
	height: 100%;
}
.assorts .month-tabs .month-tab-switch {
	display: none;
}
.assorts .month-tabs .month-tab-switch:checked + .month-tab-label {
  background-color: #003657;
  color: #fff;
	/* border-top: 4px solid #0067b8; */
}
.assorts .month-tabs .month-tab-switch:checked + .month-tab-label + .month-tab-content {
	display: grid;
}
@media screen and (max-width: 799px) {
	.assorts .month-tabs .month-tab-label {
    width: 100%;
    flex-basis: unset;
	}
  /* usunięcie powoduje inne otwieranie tabów w mobilce */
  .assorts .month-tabs .month-tab-content {
    order: inherit;
  }
}
.assorts .month-tabs .month-tab-content .packet {
  border-style: solid;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: start;
}
.assorts .month-tabs .month-tab-content .packet .title {
  font-weight: normal;
  font-size: 26px;
  margin: 0px auto 0px auto;
  /* border-radius: 0 0 30% 30%; */
  transition: all 1s ease;
  /* text-transform: uppercase; */
  /* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; */
}
.assorts .month-tabs .month-tab-content .packet .string {
  /* background-color: #6184b738; */
  display: flex;
  align-items: center;
  padding: 5px 10px;
}
.assorts .month-tabs .month-tab-content .packet .text {
  text-align: left;
  margin-left: 10px;
}
.assorts .month-tabs .month-tab-content .packet .string .left {
  text-align: left;
  /* text-transform: uppercase; */
  /* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; */
}
.assorts .month-tabs .month-tab-content .packet .string .right {
  text-align: right;
  /* text-transform: uppercase; */
  /* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; */
}
.assorts .month-tabs .month-tab-content .packet .string .center {
  text-align: center;
  /* text-transform: uppercase; */
  /* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; */
}
.assorts .month-tabs .month-tab-content .packet .string .bold {
  font-weight: bold;
}
.assorts .month-tabs .month-tab-content .packet .string .check-img {
  min-height: 35px;
  min-width: 35px;
}
.assorts .month-tabs .month-tab-content .packet .gap {
  background-color: inherit;
  height: 35px;
  width: 100%;
}
.assorts .month-tabs .month-tab-content .packet .price {
  margin-bottom: 20px;
  /* text-transform: uppercase; */
  /* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; */
}
.assorts .month-tabs .month-tab-content .packet .price .big {
  font-weight: bold;
  font-size: 36px;
}
.assorts .month-tabs .month-tab-content .packet .price .small {
  font-weight: normal;
  font-size: 1rem;
}
.assorts .month-tabs .month-tab-content .packet .duration {
  background-color: inherit;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; */
}
.assorts .month-tabs .month-tab-content .packet .tocart {
  font-family: inherit;
  background-color: #000000;
  border: 0px solid black;
  color: #fff;
  width: 260px;
  height: 40px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
  transition: all 1s ease;
  /* border-radius: 30% 30% 0 0; */
}
.assorts .month-tabs .month-tab-content .packet .tocart:hover {
  background-color: black !important;
  color: white !important;
  /* border-radius: 0; */
}
/* .assorts .month-tabs .month-tab-content .packet:hover .title {
  background-color: black !important;
  color: white !important;
  border-radius: 0;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
} */


.glow {
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e68a00,
      0 0 40px #e64100, 0 0 50px #e65400, 0 0 60px #ebd512, 0 0 70px #e6b000;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6,
      0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
.flux {
  text-shadow: 0 0 3vw #2356ff;
  animation: flux 2s linear infinite;
  -moz-animation: flux 2s linear infinite;
  -webkit-animation: flux 2s linear infinite;
  -o-animation: flux 2s linear infinite;
}
@keyframes flux {
  0%,
  100% {
    text-shadow: 0 0 1vw #1041ff, 0 0 3vw #1041ff, 0 0 10vw #1041ff,
      0 0 10vw #1041ff, 0 0 0.4vw #8bfdfe, 0.5vw 0.5vw 0.1vw #147280;
    color: #28d7fe;
  }
  50% {
    text-shadow: 0 0 0.5vw #082180, 0 0 1.5vw #082180, 0 0 5vw #082180,
      0 0 5vw #082180, 0 0 0.2vw #082180, 0.5vw 0.5vw 0.1vw #0a3940;
    color: #146c80;
  }
}

.cart  {
  margin: 20px auto;
  padding: 0 5px;
}

.cart .calendar {
  margin: 20px auto;
}

/** SHOP ORDERS AND INVOICES START */
.invoices,
.orders {
  --orderbg-color: rgb(0, 0, 0);
  --order-color: rgb(255, 255, 255);
  --order-count: 5;
  --invoice-count: 4;
}
.invoices,
.orders {
  width: 80%;
  min-width: 320px;
  margin: auto;
}
.invoices .form,
.orders .form {
  width: 100%;
}
.invoices .form .topbar,
.orders .form .topbar {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  background-color: bisque;
}
.invoices .form .head,
.orders .form .head {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 40px;
  background-color: cadetblue;
}
.invoices .form .head .head-col,
.orders .form .head .head-col {
  flex-grow: 1;
  flex-basis: 0;
}

.orders .form .list .list-main {
  display: grid;
  background-color: var(--orderbg-color, darkgray);
  color: var(--order-color, white);
  margin: 20px 0px;
  box-sizing: border-box;
  border: 2px solid #8c8c8c;
}
.invoices .form .list .list-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: var(--orderbg-color, darkgray);
  color: var(--order-color, white);
  margin: 20px 0px;
  box-sizing: border-box;
  border: 2px solid #8c8c8c;
}
.invoices .form .list .list-main .list-col,
.orders .form .list .list-main .list-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  margin: 0px 15px;
}
.orders .form .list .list-main .list-detail {
  grid-column-start: 1;
  grid-column-end: var(--order-count, 5);
  display: grid;
  grid-template-columns: repeat(var(--order-count, 5), auto);
  width: 99%;
  margin: auto;
}
.invoices .form .list .list-main .list-detail .detail-head,
.orders .form .list .list-main .list-detail .detail-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: gray;
  height: 40px;
  padding-left: 15px;
}
.invoices .form .list .list-main .list-detail .detail-col,
.orders .form .list .list-main .list-detail .detail-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  color: black;
  height: 40px;
  padding-left: 15px;
  /* border-image: linear-gradient(#808080, #d9d9d9) 30; */
  /* border-width: 4px;
  border-style: solid; */
}
.invoices .form .list .list-main .list-detail .bleft,
.orders .form .list .list-main .list-detail .bleft {
  border-left: 5px solid var(--orderbg-color);
}
.invoices .form .list .list-main .list-detail .bright,
.orders .form .list .list-main .list-detail .bright {
  border-right: 5px solid var(--orderbg-color);
}
.orders .form .list .list-main .list-detail .detail-all {
  grid-column-start: span var(--order-count, 5);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #83d29e;
  height: 40px;
}
.invoices .form .list .list-main .list-detail .detail-all {
  grid-column-start: span var(--invoice-count, 5);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #83d29e;
  height: 40px;
}
.orders .form .list .list-main .list-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column-start: 1;
  grid-column-end: var(--order-count, 5);
  height: 40px;
}
.invoices .form .list .list-main .list-summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  margin: 0px 15px;
}
/** SHOP ORDERS AND INVOICES END */

/** LIVE PRZYCISKI MAIN START */
.live-video {
  width: 100%;
  height: auto;
  max-width: 650px;
  border: 0px solid black;
  margin: auto;
}
.live-controls {
  margin: 10px auto 30px auto;
}
.live-controls button {
  width: 157px;
  height: 35px;
  margin: 4px;
  font-size: 16px;
  border: 0px solid white;
  border-radius: 10px;
}
.live-controls button:hover {
  cursor: pointer;
}
.live-controls button:disabled,
button[disabled] {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}
.live-controls .btn-camera {
  background-color: #b5a206;
  color: white;
}
.live-controls .btn-record {
  display: none;
  background-color: #339b33;
  color: white;
}
.live-controls .btn-pause {
  display: none;
  background-color: #eeab82;
  color: white;
}
.live-controls .btn-resume {
  display: none;
  background-color: #647152;
  color: white;
}
.live-controls .btn-stop {
  display: none;
  background-color: #ae4444;
  color: white;
}
.live-controls .btn-preview {
  display: none;
  background-color: #449fae;
  color: white;
}
.live-controls .btn-product {
  display: none;
  background-color: #e584f2;
  color: white;
}
.live-controls .btn-chat {
  display: none;
  background-color: #2a34ca;
  color: white;
}
/** LIVE PRZYCISKI MAIN END */

/** WYSKAKUJĄCE OKNO CHAT LIVE END */
.video-chat {
  display: none;
  z-index: 3;
  left: 0px;
  right: 0px;
  position: fixed;
  margin: auto;
  padding: 10px;
  border: 1px solid black;
  min-width: 300px;
  max-width: 600px;
  width: 90%;
  background-color: #d0d0d0;
}
.video-chat h1 {
  height: 27px;
  line-height: 27px;
  background-color: #9b9b9b;
}
.video-chat .btn-close-chat {
  float: inline-end;
  cursor: pointer;
  margin-right: 10px;
  font-size: 22px;
}
.video-chat .chatmain {
  text-align: left;
  height: 280px;
  overflow-y: scroll;
}
.video-chat .box {
  text-align: center;
}
/** WYSKAKUJĄCE OKNO CHAT LIVE END */


/** WYSKAKUJĄCE OKNO DODAWANIA PRODUKTU LIVE START */
.add-product {
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  position: absolute;
  min-width: 320px;
  width: 99%;
  max-width: 600px;
  border: solid thin #515151;
  background-color: #ccccccd6;
}
.add-product img {
  width: 274px;
  height: auto;
  margin: 5px;
  border: 2px solid black;
  border-radius: 8px;
}
.add-product label {
  display: block;
  margin: auto;
}
.add-product input {
  font-size: 16px;
  display: block;
  width: 270px;
  height: 23px;
  margin: 2px auto 7px auto;
}
.add-product textarea {
  font-size: 16px;
  display: block;
  margin: auto;
  width: 269px;
  height: 100px;
}
.add-product button {
  height: 30px;
  width: 100px;
  background-color: #b7b7b7;
  border: 1px solid black;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
}
.add-product .btn-add {
  background-color: #20a472;
}
.add-product .btn-cls {
  background-color: #db2929;
}
/** WYSKAKUJĄCE OKNO DODAWANIA PRODUKTU LIVE END */


/** WYSKAKUJĄCE OKNO DODAWANIA LIVE START */
.live-add {
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  position: absolute;
  min-width: 320px;
  width: 99%;
  max-width: 600px;
  border: solid thin #515151;
  background-color: #ccccccd6;
}
.live-add img {
  width: 274px;
  height: auto;
  margin: 5px;
  border: 2px solid black;
  border-radius: 8px;
}
.live-add label {
  display: block;
  margin: auto;
}
.live-add input {
  font-size: 16px;
  display: block;
  width: 270px;
  height: 23px;
  margin: 2px auto 7px auto;
}
.live-add textarea {
  font-size: 16px;
  display: block;
  margin: auto;
  width: 269px;
  height: 100px;
}
.live-add button {
  height: 30px;
  width: 100px;
  background-color: #b7b7b7;
  border: 1px solid black;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
}
.live-add .btn-add {
  background-color: #20a472;
}
.live-add .btn-cls {
  background-color: #db2929;
}
/** WYSKAKUJĄCE OKNO DODAWANIA LIVE START */


/** PRODUKTY LIVE NA EXTENSION START */
.live-products {
  max-height: 563px;
  overflow-y: auto;
}
.live-products .product {
  display: block;
  position: relative;
  text-align: left;
}
.live-products .product img {
  width: 276px;
  height: auto;
  border: 2px solid black;
  border-radius: 1rem;
  margin: 10px auto 0px auto;
}
.live-products .product span {
  bottom: 7px;
  left: 0px;
  padding: 7px;
  background-color: #ccc;
  border: 1px solid black;
  border-radius: 9px;
  position: absolute;
}
.live-products .product .btn-vis {
  position: absolute;
  top: 5px;
  right: 5px;
}
.live-products .product .btn-edit {
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.live-products .product .btn-del {
  position: absolute;
  top: 5px;
  left: 5px;
}
/** PRODUKTY LIVE NA EXTENSION END */


/** PRIVATE CLIENT CHAT START */
.messages-infobar {
  width: 100%;
  height: 20px;
  background-color: #d1b108;
}
.messages-details {
  border: 1px solid #e2e3e5;
  width: 99%;
  min-width: 310px;
  max-width: 600px;
  margin: auto;
}
.messages-details .chatmain {
  height: 600px;
  text-align: left;
  overflow-y: scroll;
}
.messages-details .chatmain .chat-all {
  width: 100%;
  display: inline-block;
}
.messages-details .chatmain .chat-left {
  display: flex;
  float: left;
  max-width: 99%;
}
.messages-details .chatmain .chat-right {
  display: flex;
  float: right;
  max-width: 99%;
}
.messages-details .chatmain .chat-icon {
  line-height: 50px;
  width: 50px;
  display: inline-block;
  outline: 0px solid #f0f0f0;
  border: 0px solid black;
  border-radius: 30px;
  margin: 11px;
  text-align: center;
}
.messages-details .chatmain .chat-icon img {
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.messages-details .chatmain .chat-rest {
  box-shadow: 5px 10px 8px #bdbdbd;
  padding: 5px;
  border: 0px solid black;
  margin: 5px;
}
.messages-details .chatmain .blue {
  color: white;
  background-color: #0084ff;
  border-radius: 20px 0px 20px 20px;
}
.messages-details .chatmain .gray {
  color: black;
  background-color: #f0f0f0;
  border-radius: 0px 20px 20px 20px;
}
.messages-details .chatmain .chat-name {
  font-weight: bold;
  margin: 5px;
}
.messages-details .chatmain .chat-message {
  word-wrap: anywhere;
  margin: 5px;
}
.messages-details .chatmain .chat-message img {
  height: auto;
  max-height: 100px;
  width: auto;
  max-width: 252px;
}
.messages-details .chatmain .chat-right-date {
  margin: 5px;
  font-size: 11px;
  text-align: right;
}
.messages-details .chatmain .chat-left-date {
  margin: 5px;
  font-size: 11px;
  text-align: left;
}
.messages-details .formmsg .txtmsg {
  margin: 15px auto 15px auto;
  border-bottom: 2px solid #bebebe;
  border-top: 0;
  border-right: 0;
  height: 40px;
  font-size: 16px;
  width: 77%;
  border-left: 0px solid #bebebe;
}
.messages-details .formmsg .btnmsg {
  background: url(/static/img-front/btn-send-msg.svg) no-repeat left top;
  width: 20%;
  max-width: 60px;
  height: 40px;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
/** PRIVATE CLIENT CHAT END */


/** PLATNOSCI I FAKTURA START */
.payments {
  margin: 20px auto 20px auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 799px) {
  .payments {
    display: block;
    padding: 0px 5px;
  }
}
.payments .invoice {
  margin: 20px auto 20px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 430px;
  width: 100%;
}
.payments .invoice .flr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.payments .invoice .flr-nowarp {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.payments .invoice .flr label {
  font-size: 16px;
  align-self: center;
  text-align: left;
  flex-grow: 1;
}
@media screen and (max-width: 799px) {
  .payments .invoice .flr label {
    min-width: 300px;
  }
}
.payments .invoice .flr input[type="text"] {
  font-size: 16px;
  height: 40px;
  border-bottom: 1px solid #919191;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  max-width: 300px;
  width: 100%;
}
.payments .invoice .flr input[type="text"]:active,
.payments .invoice .flr input[type="text"]:focus {
  outline: none;
  border-bottom: 1px solid rgb(6, 223, 6);
}
.payments .invoice .flr textarea {
  font-size: 16px;
  max-width: 300px;
  width: 100%;
}
.payments .invoice .flr-nowarp input[type="checkbox"],
.payments .invoice .flr input[type="checkbox"] {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.payments .payment {
  margin: 20px auto 20px auto;
  max-width: 903px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.payments .payment .gates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 123px));
  justify-content: space-evenly;
  align-items: start;
  gap: 10px;
  margin-top: 15px;
}
.payments .payment .gate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}
.payments .payment .nogates {
  margin: 30px auto;
  width: 280px;
  border: 1px solid black;
  padding: 10px;
}
.payments .payment .gate input[type="radio"] {
  display: none;
}
.payments .payment .gate .pay {
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 123px;
  height: 123px;
}
.payments .payment .gate input:checked + .pay {
  outline: 3px solid black;
}
.payments .paybtns {
  grid-column-start: span 2;
}
/** PLATNOSCI I FAKTURA END */


/** POWRÓT Z PŁATNOŚCI START */
.payreturn {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-top: 20px;
}
/** POWRÓT Z PŁATNOŚCI END */


/** LISTA CHATÓW Z KLIENTAMI START */
.messages-list {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.messages-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 0;
  color: #fff;
}
.messages-list div {
  padding: 15px;
  background-color: #fb6511;
  border: 1px solid black;
}
.messages-list div:hover {
  padding: 15px;
  background-color: #ee5a04;
  border: 1px solid black;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
}
/** LISTA CHATÓW Z KLIENTAMI END */

/** KONTAKT SKLEPU START */
.contact {
  margin: 20px auto 20px auto;
}
.contact > label {
  text-transform: uppercase;
}
.contact .dcenter {
  padding: 10px;
  max-width: 360px;
  margin: auto;
}
.contact label {
  line-height: 25px;
  height: 25px;
}
/* .contact select {
  width: 200px;
  height: 25px;
}
.contact select option {
  line-height: 25px;
  height: 25px;
} */
.contact input {
  width: 200px;
  height: 25px;
}
.contact textarea {
  width: 100%;
}
.contact .flexradio {
  margin: 10px auto 25px auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.contact .radio {
  height: 25px;
  width: 25px;
}
/** KONTAKT SKLEPU END */


/** UNIVERSAL TABS START */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px;
}
.tabs .tab-label { 
  width: auto;
	display: flex;
  flex-grow: 1;
  flex-basis: 0;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	margin-right: 0.0625rem;
	cursor: pointer;
	background-color: var(--button-back-color, white);
	color: var(--button-text-color, black);
	transition: background-color ease 0.8s;
}
.tabs .tab-label:hover {
  background-color: #a8a8a8;
}
.tabs .tab-content {
  order: 9;
	width: 100%;
	height: 100%;
	display: none;
	padding: 1rem 1rem;
	color: var(--page-text-color, black);
	background-color: var(--page-back-color, white);
}
.tabs .tab-switch {
	display: none;
}
.tabs .tab-switch:checked + .tab-label {
  background-color: #0b5bdd;
  color: #fff;
	border-top: 4px solid #0067b8;
}
.tabs .tab-switch:checked + .tab-label + .tab-content {
	display: grid;
}
@media screen and (max-width: 799px) {
	.tabs .tab-label {
    width: 100%;
    flex-basis: unset;
	}
  /* usunięcie powoduje inne otwieranie tabów w mobilce */
  .tabs .tab-content {
    order: inherit;
  }
}
/** UNIVERSAL TABS END */

.frow {
  display: grid;
  max-width: 560px;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  padding: 10px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.frow .info {
  justify-self: start;
}
.frow label {
  justify-self: start;
}
.frow input[type="radio"] {
  width: 22px;
  height: 22px;
  margin: 0px 10px 0px 0px;
}
.frow input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0px 10px 0px 0px;
}
.frow .field {
  justify-self: start;
  height: 25px;
  width: 100%;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  margin-right: 5px;
}

/** UNIVERSAL TWO SIDES START */
.sides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.sides .left-side {
  align-self: start;

}
.sides .right-side {
  align-self: end;

}
/** UNIVERSAL TWO SIDES END */


/** SKANOWANIE PRODUKTÓW START */
.scaner {
  display: block;
}
.select-pages {
  display: flex;
  flex-direction: column;
  height: 450px;
  overflow: scroll;
  border: 1px solid #c6c6c6;
  width: 95%;
  margin: 20px 0px;
}
.select-pages .sel-page {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
}
.select-pages .sel-page input[type="checkbox"] {
  width: 25px;
  height: 25px;
}
.select-pages .sel-page span {
  margin-left: 5px;
  font-size: 16px;
  font-family: inherit;
}
/** SKANOWANIE PRODUKTÓW END */

/** USTAWIENIA SKLEPU */
.multiform {
  margin: 20px auto 20px auto;
}
.multiform .dcenter {
  display: flex;
  flex-direction: column;
  margin: 20px auto 20px auto;
  text-align: left;
  max-width: 640px;
  padding: 0 10px;
}
.multiform .dcenter .field {
  display: grid;
  max-width: 588px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
/* .multiform .dcenter label {
  line-height: 31px;
}
.multiform .dcenter input[type="password"] {
  width: 230px;
  height: 25px;
}
.multiform .dcenter input[type="text"] {
  float: inline-start;
  width: 99%;
  height: 25px;
}
.multiform .dcenter input[type="radio"] {
  width: 22px;
  height: 22px;
  margin: 0px;
}
.multiform .dcenter input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0px;
}
.multiform .dcenter textarea {
  width: 99%;
} */


.faq {
  margin: 20px auto 20px auto;
}
.faq .onefaq {
  margin: auto;
  max-width: 600px;
  padding: 10px;
  background-color: #ccc;
}
.faq .onefaq div {
  text-align: left;
  margin: 10px auto 10px auto;
}
.faq .onefaq input[type="radio"],
.faq .onefaq input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.faq .onefaq input[type="text"] {
  width: 99%;
  height: 25px;
}
.faq .onefaq textarea {
  width: 99%;
}
.faq .new {
  background-color: #a9cca4;
}

/* Buttons */
.btnsrc {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  gap: 20px;
  min-width: 300px;
}
.btnsrc > button {
  max-width: 160px;
  background-color: var(--button-back-color, wheat);
  color: var(--button-text-color, black);
  border: var(--button-border-width, 1px) solid var(--button-border-color, black);
  border-radius: var(--button-border-radius, 0px);
  padding: var(--button-padding, 0);
  font-size: var(--button-font-size, 1rem);
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
  box-sizing: inherit;
}
.btnsrc > button:hover {
  background-color: var(--button-back-hover, wheat);
  /* border: 2px solid black;
  box-shadow: 2px 10px 10px grey; */
}
.btnsrc > a {
  max-width: 160px;
  background-color: var(--button-back-color, wheat);
  color: var(--button-text-color, black);
  border: var(--button-border-width, 1px) solid var(--button-border-color, black);
  border-radius: var(--button-border-radius, 0px);
  padding: var(--button-padding, 0);
  font-size: var(--button-font-size, 1rem);
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
  box-sizing: inherit;
  display: grid;
  justify-content: center;
  align-items: center;
}
.btnsrc > a:hover {
  background-color: var(--button-back-hover, wheat);
  /* border: 2px solid black;
  box-shadow: 2px 10px 10px grey; */
}
.btnsrc > .save {
  /* background-color: #83d29e; */
}
.btnsrc > .send {
  /* background-color: #c45fd8; */
}
.btnsrc > .reset {
  /* background-color: #8187df; */
}
.btnsrc > .cancel {
  /* background-color: #e56c6c; */
}

/* UKRYWANIE TEKSTU START */
.expand {
  display: flex;
  max-width: 800px;
  margin: 20px auto;
  flex-direction: column;
  gap: 10px;
}
.expand .expand-panel {
  padding: 0;
}
.expand .expand-panel .question {
  position: relative;
  margin: 0px;
}
.expand .expand-panel .expand-content {
  display: grid;
  margin: 0px 0px 6px 0px;
  transition: grid-template-rows 0.5s ease-out;
  grid-template-rows: 0fr;
  text-align: justify;
  border: 1px solid black;
  padding: 0px 2px 0px 2px;
}
.expand .expand-panel .expand-content[aria-hidden="false"] {
  grid-template-rows: 1fr;
}
.expand .expand-panel .expand-content > div {
  overflow: hidden;
}
.expand .expand-panel .expand-faq {
  box-sizing: border-box;
  background-color: var(--button-back-color, #535353);
  color: var(--button-text-color, #FFFFFF);
  border-radius: var(--button-border-radius, 0px);
  border-style: solid;
  border-color: var(--button-border-color, #000000);
  border-width: var(--button-border-width, 0px);
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.expand .expand-panel .expand-faq::after {
  font-family: inherit;
  content: "+";
  transition: transform 500ms;
  font-size: 2rem;
  margin-right: 7px;
}
.expand .expand-panel .expand-faq[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
/* UKRYWANIE TEKSTU END */
