

	/* Smaller than standard 960 (devices and browsers) */

	@media only screen and (max-width: 959px) {}



	/* Tablet Portrait size to standard 960 (devices and browsers) */

	@media only screen and (min-width: 768px) and (max-width: 959px) {}



	/* All Mobile Sizes (devices and browser) */

	@media only screen and (max-width: 767px) {}



	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */

	@media only screen and (min-width: 480px) and (max-width: 767px) {}



	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */

	@media only screen and (max-width: 479px) {}


	@media only screen and (min-width: 768px) {
  	
  	body {
    	border: 2px solid #eee;
    	border-top: none;
    	border-bottom: none;
  	}
  	
  	
	}


/* ------ FONT ----- */

[class*="icon-"] {
    display: inline-block;
    vertical-align: middle;
}



html {
  margin-top: 0 !important;
}

/* font-family: "Montserrat", sans-serif; 
  font-weight: 600 */

html,body {
  padding:0;
  margin: 0;
  color: #333;
	font-family: "Open Sans", sans-serif;
  font-weight: 300;
	font-size: 16px;
  transition: opacity 0.4s 0.3s ease-in-out;
}

body.index-body.app #menu-export {
  display: none;
}

/* body.hidden {
  opacity: 0;
} */

body.fade-in {
  opacity: 1;
}

svg {
  max-width: 34px;
  max-height: 33px;
}

h2 {
  font-family: "Montserrat", sans-serif; 
  font-weight: 600;
  font-size: 20px;
  line-height: 24px; 
  text-transform: uppercase; 
}

body {
  margin:0 auto;
  overflow: hidden;
  background-color: #fff;
 	max-width: 767px;
  max-height: 100vh;
  position: relative;
}

input:autofill {
  background: transparent !important; 
}

::placeholder {
  color: #777777;
}

button {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: inherit;
  font: inherit;
  border-radius: 0;
  appearance: none;
}

p {
  margin: 0;
}

li::marker {
  color: #A5A920;
}

textarea {
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 17px;
  padding-right: 0px;
  height: 80px;
  display: block;
  width: calc(100% - 5px);
  color: #777777;
  background-color: #FAFAFA;
  border: 1px solid #E7E7E7;
}

select[multiple] {
  height: auto; /* Allow the dropdown to expand */
  overflow-y: auto; /* Enable vertical scrolling if needed */
  display: block; /* Ensure it is displayed as a block element */
  width: 100%; /* Ensure it takes the full width */
  background-color: #FAFAFA; /* Match the background color */
  border: 1px solid #E7E7E7; /* Match the border style */
  padding: 5px; /* Add some padding for better appearance */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

select[multiple] option {
  padding: 5px; /* Add padding to options for better readability */
}

hr {
  width: calc(100% - 50px);
  border: 1px solid #E7E7E7;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ------ LOGIN ----- */

.container-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.top-bg {
  position: relative;
  z-index: -1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 20vh;
  width: 100%;
}

.top-bg.login-bg {
  height: 35vh;
}

.main-container {
  position: relative;
  z-index: 1;
  top: -50px;
  height: calc(80vh - 45px + 50px - 25px);  
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 20px;
  padding-top: 45px;
  padding-bottom: 25px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.main-container.login-container {
  max-height: 65vh;
  padding-top: 65px;
  border-top-right-radius: 0;
  height: calc(65vh - 65px + 50px - 25px);
}

.screen-title {
  width: 100%;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif; 
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  margin: 0;
}

.title-separator {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 25px;
  margin-bottom: 31px;
  text-align: center;
}

.title-separator span {
  display: inline-block;
  vertical-align: top;
  height: 2px;
  width: 122px;
  background-color: #A5A920;
}

.login-form {
  display: block;
  width: 100%;
}

.login-form .input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.login-form input{
  height: 43px;
  font-size: 15px;
  line-height: 17px;
  padding-left: 15px;
  padding-right: 40px;
  display: block;
  width: calc(100% - 18px - 40px);
  color: #777777;
  background-color: #FAFAFA;
  border: 1px solid #E7E7E7;
  margin-bottom: 20px;
}

.login-form .input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 50px;
}

.login-form .input-icon.toggle-password {
  cursor: pointer;
}

.custom-icon, .menu-icon {
  display: inline-block;
}

.custom-icon path, circle.custom-icon {
  fill: #A5A920;
}

.eye-on {
  display: none;
}

.btn-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.log-in-btn {
  color: #fff;
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;  
  background-color: #B73A38;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
}

.btn-container a {
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;  
  font-size: 10px;
  line-height: 12px;
  color: #9F9F9F; 
  text-decoration: none;
  vertical-align: middle;
}

.contact-wrap {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 35px;
  display: block;
}

.efsima-logo {
  display: inline-block;
  width: 140px;
  height: auto;
  margin-bottom: 5px;
}

.efsima-logo img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.contact-details {
  position: relative;
  display: block;
  text-align: center;
}

.contact-details p {
  display: inline-block;
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;
  font-size: 10px;
  line-height: 12px; 
  margin: 0; 
}

.contact-details p svg {
  width: 17px;
  height: 15px;
  vertical-align: bottom;
}

.contact-details p a { 
  text-decoration: none;
  color: #9F9F9F; 
  margin-right: 10px; 
}

/* ---- MENU SIDEBAR ----- */
  
.menu-icon path {
  fill: #FFFFFF;
}

#menu-toggle {
  position: absolute;
  top: 20px;
  left: 6px;
  padding: 10px;
  z-index: 100;
  cursor: pointer;
}

#menu-toggle svg {
  width: 34px;
  height: 33px;
  fill: #FFF;
}

#menu-export {
  position: absolute;
  top: 20px;
  right: 6px;
  padding: 10px;
  z-index: 100;
  cursor: pointer;
}

#menu-export svg {
  width: 34px;
  height: 33px;
  fill: #FFF;
}

#lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  z-index: 110;
  pointer-events: none; 
  transition: opacity 0.4s ease; 
}

#lightbox.showUp {
  opacity: 0.6;
  pointer-events: all;
}

#sideMenu {
  position: absolute;
  height: 100vh;
  width: 60%;
  background-color: #fff;
  top: 0;
  left: -60%;
  transition: left 0.4s ease, opacity 0s ease 0.4s;
  z-index: 120;
  display: flex;
  flex-direction: column;
  opacity: 0;
}

#sideMenu.showUp {
  transition: left 0.4s ease, opacity 0s ease;
  left: 0;
  opacity: 1;
}

.menu-header {
  display: block;
  background: #A5A920;
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  padding: 20px;
  color: #fff;
  padding-top: 80px;
  flex-shrink: 0;
}

.menu-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-grow: 1;
}

.menu-items {
  margin: 0;
  display: block;
  padding: 0;
  width: 100%;
}

#sideMenu li {
 list-style: none;
 display: block;
 border-bottom: 1px solid #D1D1D1;
 width: 100%;
}

#sideMenu li a { 
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100% - 40px);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;
  font-size: 12px;
  display: inline-block;
  color: #222B45;
}

#sideMenu li.menu-active a {
  font-weight: 600;
}

#sideMenu li span {
  vertical-align: middle;
  display: inline-block;
}

#sideMenu li svg { 
  margin-right: 7px;
  width: 20px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
} 

.menu-footer {
  width: 100%;
}

.custom-icon.logout-icon path {
  fill: #B73A38;
}

.menu-footer-contacts {
  width: calc(100% - 40px);
  padding: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
	font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 8px;
  line-height: 12px;
  color: #222B45;
}

.menu-footer-contacts p a{ 
  display: inline-block;
  text-decoration: none;
  color: #222B45;
}

/* ---- UTILIZADORES ---- */
.users-type {
  display: block;
  margin-bottom: 20px;
  margin-top: -15px;
}

.user-btn {
  color: #000;
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;  
  background-color: #E0E0E0;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
  display: inline-block;
  width: calc(50% - 14px);
  text-align: center;
}

.admin-sort { 
  margin-right: 10px;
}

.tech-sort { 
  margin-left: 10px;
}

.user-btn.client-sort {
  margin-top: 20px;
}

.user-btn.active {
  color: #fff;
  background-color: #B73A38;
}

.input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

input{
  height: 43px;
  font-size: 15px;
  line-height: 17px;
  padding-left: 15px;
  padding-right: 40px;
  display: block;
  width: calc(100% - 18px - 40px);
  color: #777777;
  background-color: #FAFAFA;
  border: 1px solid #E7E7E7;
  margin-bottom: 20px;
}

.input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 50px;
}


.users-container .input-icon .search-icon path {
  fill: #6E6E6E;
  opacity: 0.7;
}

.users-container input#search-input {
  height: 26px;
}

.users-container .input-icon { 
  width: 20px;
  height: 40px;
}

.add-user {
  display: block;
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #000;
  text-decoration: none;  
}

.users-container .plus-user-icon {
  fill: #FFF;
}

.plus-user-wrap {
  display: inline-block;
  width: 21px;
  height: 21px;
  background-color: #A5A920;
  position: relative;
  margin-right: 10px;
  text-transform: uppercase;
}

.plus-user-wrap svg{ 
  width: 21px;
  height: 21px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.add-user span { 
  vertical-align: middle;
}

.users-list {
  display: block;
  overflow-y: scroll;
  width: calc(100% + 40px);
  margin-left: -20px;
  height: calc(100% - 210px);
}

.users-list ul {
  display: block;
  width: calc(100% + 0px);
  border-top: 1px solid #D1D1D1;
  padding: 0;
  margin: 0;
}

.users-list ul li { 
  position: relative;
  display: block;
  width: calc(100% - 40px);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D1D1D1;
  list-style: none;
}

.users-list ul li::before {
  position: absolute;
  width: 16px;
  height: 100%;
  content: "";
  background-color: transparent;
  pointer-events: none;
  top: 0;
  left: 0;
}


.users-list ul li .user-info {
  display: inline-block;
  width: calc(100% - 45px - 20px - 6px);
  vertical-align: middle;
}

.users-list ul li .user-info .user-name {
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #000;
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.users-list ul li .user-info .user-email {
  font-family: "Open Sans", sans-serif; 
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #9F9F9F;
  display: block;
}

.users-list ul li .user-options {
  display: inline-block;
  width: calc(45px + 20px);
  vertical-align: middle;
  text-align: right;
}

.users-list ul li .user-options a { 
  display: inline-block;
  width: 25px;
  height: 30px;
  vertical-align: middle;
}

.user-details-icon {
  margin-right: 10px;
}

.user-delete-icon {
  margin-left: 10px;
}

/* ---- USER FORM ---- */

.user-form label {
  font-family: "Montserrat", sans-serif; 
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: #A5A920;
  text-transform: uppercase;
}

.user-form input {
  margin-top: 5px;
  margin-bottom: 20px;
  height: 26px;
}

/* .user-form form input {
  padding-right: 0px;
  width: calc(100% - 15px);
} */

.user-form input#password { 
  margin-bottom: 8px;
}

.user-form button {
  color: #fff;
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;  
  background-color: #B73A38;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
}

.user-form-btn {
  width: 100%;
  display: block;
  text-align: right;
}

.user-form select {
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 17px;
  padding-left: 15px;
  padding-right: 0px;
  height: 30px;
  display: block;
  width: calc(100% - 1px);
  /* color: #777777; */
  background-color: #FAFAFA;
  border: 1px solid #E7E7E7;
}


.user-form select.operation-interval {
  max-width: 120px;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  transform: translateY(-18%);
  padding-left: 3px;
}

.user-gen-pwd {
  margin-bottom: 20px;
}



/* Custom styles for Select2 elements */
.select2-container--default .select2-selection--single {
  background-color: #FAFAFA;
  border: 1px solid #E7E7E7;
  height: 30px;
  padding-left: 15px;
  padding-right: 0px;
  display: block;
  width: calc(100% - 1px);
  font-size: 15px;
  line-height: 17px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #777777;
  line-height: 30px;
  padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 30px;
  right: 10px;
}

.select2-container--default .select2-selection--multiple {
  background-color: #FAFAFA;
  border: 1px solid #E7E7E7;
  padding: 5px;
  box-sizing: border-box;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  color: #777777;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #E7E7E7;
  border: 1px solid #D1D1D1;
  color: #333;
  padding: 3px 10px;
  margin: 2px 5px 2px 0;
  border-radius: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #B73A38;
  cursor: pointer;
  margin-left: 5px;
}

.user-form .select2-container {
  margin-bottom: 20px;
}
/* --- CLIENTES ---- */

.clientes-container .users-list {
  height: calc(100% - 180px);
  height: auto;
}

.clientes-container .users-list ul li .user-info {
  width: calc(100% - 84px - 60px - 6px);
}

.clientes-container .users-list ul li .user-options { 
  width: calc(84px + 60px);
}

.sector-sep {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #E7E7E7;
}

.sector-sep-list {
  width: 100%;
  border: 1px solid #E7E7E7;
  margin-top: 10px;
  margin-bottom: 10px;  
}

.sector-sep-list-clear {
  width: 100%;
  border: 1px solid transparent;
  margin-top: 10px;
  margin-bottom: 10px;    
}

button.right-align {
  float: right;
}

.clientes-container .user-form-btn {
  margin-top: 0px;
  position: absolute;
  bottom: 25px;
  right: 20px;
}

.client-form {
  display: block;
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100% - 130px);
}

.client-form-list {
  display: block;
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100% - 88px);
  width: calc(100% + 40px);
  margin-left: -20px;
}

.client-form-list p, .client-form-list label {
  padding-left: 20px;
  padding-right: 20px;
}

#equipmentList ul {
  padding-left: 35px;
}

#equipmentList li {
  list-style-type: disc;
}

#equipmentList li.hidden-equip {
  display: none;
}

.contact-item, #equipmentList {
  margin-top: 10px;
}

#contactList p, #equipmentList p {
  margin-bottom: 10px;
}

/* ---- EQUIPAMENTOS ---- */

.clientes-container.normal-container .users-list ul li .user-options { 
  width: calc(45px + 20px);
}

.clientes-container.normal-container .users-list ul li .user-info {
  width: calc(100% - 45px - 20px - 6px);
}

.equip-operations {
  margin-bottom: 20px;
}

.equip-operations label  {
  display: inline-block;
  color: #000;
  vertical-align: middle;
}

.equip-operations input  {
  display: inline-block;
  color: #000;
  width: 17px;
  vertical-align: middle;
  margin: 0;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  max-width: calc(100% - 160px);
}

.custom-checkbox .checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: #A5A920;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.custom-checkbox input[type="checkbox"]:checked + label .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g data-name="Layer 2"><g data-name="checkmark"><rect width="24" height="24" opacity="0"/><path fill="%23FFFFFF" d="M9.86 18a1 1 0 0 1-.73-.32l-4.86-5.17a1 1 0 1 1 1.46-1.37l4.12 4.39 8.41-9.2a1 1 0 1 1 1.48 1.34l-9.14 10a1 1 0 0 1-.73.33z"/></g></g></svg>') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
}

/* ---- OPERAÇOES ---- */

.plan-form {
  margin-top: -15px;
}

.left-side-input {
  display: inline-block;
  width: calc(50% - 9px);
  margin-right: 5px;
}

.right-side-input {
  display: inline-block;
  width: calc(50% - 9px);
  margin-left: 5px;
  vertical-align: top;
}

.plan-form-list .hidden {
  display: none;
}


/* ---- TICKETS ---- */

.tickets-container .users-type {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.tickets-container .users-type .ticket-sort {
  display: block;
  padding: 6px;
  cursor: pointer;
}

.ticket-sort-square {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}


.ticket-sort-square.tss-aberto span, .users-list ul li.color-aberto::before {
  background-color: #B73A38;
}

.ticket-sort-square.tss-andamento span, .users-list ul li.color-andamento::before {
  background-color: #FFDE61;
}

.ticket-sort-square.tss-resolvido span, .users-list ul li.color-resolvido::before {
  background-color: #A5A920;
}

.ticket-sort-square.tss-fechado span, .users-list ul li.color-fechado::before {
  background-color: #6E6E6E;
}

.tickets-container .users-list ul li { 
  width: calc(100% - 50px);
  padding-left: 30px;
}

.ticket-sort-square span { 
  display: inline-block;
  width: 17px;
  height: 17px;
}

.ticket-sort-text {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif; 
  font-weight: 400;  
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;  
}

.ticket-sort.active .ticket-sort-text {
  font-weight: 600;
}

.estado-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 10px;
}

.estado-wrapper div { 
  display: block;
  padding: 6px;
  cursor: pointer;
  text-align: center;

}

.estado-wrapper div input {
  display: inline-block;
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
}

.estado-wrapper div label {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  color: #333;
  cursor: pointer;
}

input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  outline: none;
  margin-right: 5px;
  padding: 0;
}

input[type="radio"]:checked::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #B73A38;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clientes-container.tickets-container .users-list ul li .user-info {
  width: calc(100% - 84px - 60px - 6px);
}

.clientes-container .users-list ul li .user-options.ticket-user-options {
  width: calc(84px + 60px);
}

.clientes-container .users-list ul li.color-fechado .user-options.ticket-user-options {
  width: calc(84px + 30px);
  padding-left: 29px;
}

.dashboard-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: #A5A920;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-left: 30px;
}

.top-margin {
  margin-top: 20px;
}

#equipmentList li.no-mark {
  list-style-type: none;
  margin-top: 20px;
}

#equipmentList li.no-mark-only {
  list-style-type: none;
}

.operation-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  position: relative;
}

.operation-margin {
  margin-left: 20px;
}

.operation-item .status {
  margin-left: auto;
  padding-left: 10px;
  padding-right: 20px;
}

li.operation-item:before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 28%;
  border-radius: 50%;
  left: -16px;
  margin-top: 0.5px;
  width: 7px;
  height: 7px;
  background: #A5A920;
}

.plan-form-list #equipmentList ul {
  padding-left: 20px;
}

.user-form select.status-dropdown {
  width: calc(110px - 1px);
  margin-bottom: 0;
  margin-top: 0;
}

textarea#observations {
  width: calc(100% - 40px);
  margin-left: 20px;
}

.pad {
  padding-right: 20px;
  width: calc(100% - 20px);
}

#loading-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

#loading-icon {
  border: 4px solid #f3f3f3; 
  border-top: 4px solid #3498db; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

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

#photo-previews, #reply-photo-previews {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: flex-start;
  margin-top: 20px;
}

.photo-preview {
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
}

.photo-preview .remove-photo{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding-left: 5px;
  padding-right: 5px;
}

.reply-content {
  margin-bottom: 20px;
}

li.no-mark p, li.no-mark label {
  padding-left: 0;
}


.operation-item .select2-container {
  width: 60% !important;
  max-width: 120px !important;
}

/* ---- QR CODE ---- */

#qr-code-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px;
  background-color: transparent;
  width: 850px;
  height: 400px;
  /* position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff; */
}

#qr-code {
  margin-bottom: 0px;
  margin-right: 10px;
  display: flex;
}

#qr-info {
  display: flex;
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  height: calc(100% - 10px);
  padding-left: 10px;
}

#qr-info div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#qr-name {
  font-size: 37px;
  line-height: 39px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

#qr-designacao {
  font-size: 37px;
  line-height: 39px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

#qr-kilo {
  font-size: 37px;
  line-height: 39px;
  font-weight: 700;
  color: #000;
}

#qr-logo {
  font-size: 52px;
  line-height: 58px;
  font-weight: 700;
  color: #000;
  margin-top: auto; 
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

.modal-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.modal-button {
  background-color: #B73A38;
  color: #fff;
  border: 0px solid #000;
  padding: 10px 20px;
  margin: 10px 20px;
  border-radius: 0px;
  cursor: pointer;
  font-size: 16px;
}


.modal-button:hover {
  background-color: #B73A38;
  color: #fff;
}

.close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-top: -22px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}


