
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: rgb(18, 46, 92);
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bs-body-font-family: "Montserrat", sans-serif;
}

body {
    font-family: var(--bs-body-font-family);
    color: var(--text-dark);
    padding-top: 81px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

body.iframe {
    padding-top: 0px;
}


html, body {
  height: 100%;
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--text-dark);
}

main {
  flex: 1; 
}


/* Header Fisso */
.navbar {
    background: #00a3b4;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.logo_header {
    height: 55px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-custom {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Sezioni */
.section {
    padding: 30px 0px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Card Servizi */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Form Contatti */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control, 
.form-select {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-control:focus, 
.form-select:focus {
    border: 0px solid #e5e7eb !important;
}

textarea {
    resize: vertical;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    outline: none !important;
    padding: 10px !important;
}


.input-group-text {
    border: 2px solid #e5e7eb;
}

.inputgroup {
    padding: 1px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    outline: none;
    background: #FFF;
}

.input-group .form-control, 
.input-group .form-select {
    border-left: 0px solid #e5e7eb !important;
}


.input-group-text {
  background: #FFF;
}

.form-control:focus, .form-select:focus {
    border-color: none;
    box-shadow: none;
}

.form-control.on {
    background: #FC0;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
}

.btn-info.btn-round {
    min-width: 230px;
    border-radius: 22px;
    background: #00A9B4;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    box-shadow: inset -1px 2px 3px #fff, inset 2px -2px 2px rgba(0,0,0,.5);
    color: #FFF;
    border: 0px;
    font-size: 13px;
}


/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 0 1.5rem;
    font-size: 13px;
}

.logo_footer {
    width: 140px;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

footer .row {
    align-items: center;
}

.social-icons {
    margin-top: 0px;
}

.social-icons a {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 3px;
    transition: background 0.3s ease;
    font-size: 30px;
}


.bg-light-custom {
    background: var(--bg-light);
}

.list-group { 
    border-radius: 10px; 
    overflow: hidden;
    border: 1px solid #c3c7cf;
}

.passwordBox {
      position: relative;
      width: 100%;
}
.passweye {
    position: absolute;
    width: 40px;
    top: 0px;
    right: 3px;
    height: 100%;
    cursor: pointer;
    background: url('../../repository/images/eyeoff.png') center no-repeat;
    background-size: 30px;
}

.passweye[st="on"] {
    background: url('../../repository/images/eyeon.png') center no-repeat;
    background-size: 30px;
}

.smbtt {
    font-size: 11px;
    font-weight: bold;
    padding: 4px 12px;
    border: 1px solid #fff !important;
    color: #FFFFFF;
    margin-left: 15px;
}

.userbox {
    position: relative;
    width: 80%;
    text-align: right;
}

.col-sm-20p {
    width: 20%;
}

.col-sm-16p {
    width: 16.666667%;
    padding: 0px 4px;
}


@media (max-width: 992px) {

    .social-icons {
        margin-top: 20px;
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {

    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .social-icons {
        margin-top: 20px;
        margin-bottom: 0px;
    }
}



@media (max-width: 640px) {

    .social-icons {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .logo_footer {
        margin-bottom: 20px;
    }

    footer div {
        text-align: center;
    }
}

.uppercase {
  text-transform: uppercase;
}

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

.mb20 {
    margin-bottom: 20px;
}

.mb10 {
    margin-bottom: 10px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

/*eDIET*/
.new-title {
  border-top: 4px solid #DC6413;
  margin-top: 15px;
  margin-bottom: 30px;
}

.new-title .title {
  display: inline-block;
  background: #DC6413;
  color: #fff;
  font-weight: bold;
  padding: 5px 100px 7px 100px;
  font-size: 16px;
  border-radius: 0 0 20px 20px;
}

.new-title.new-graph .title {
  background: none;
  color: #DC6413;
  padding: 5px 0;
}

.col-form-label {
  font-style: italic;
  color: #969696;
  font-size: 14px;
}

.small, small {
  font-size: .7em;
}

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

/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.btn-wrapper-border {
  border-bottom: 1px solid #00A9B4;
  margin-bottom: 30px;
  width: calc(100% - 30px);
  margin-left: 15px;
}

.btn-wrapper-border button {
  margin-bottom: -20px;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.radio-toolbar input[type="radio"] {
  display: none;
}

.radio-toolbar label {
  display: inline-block;
  background-color: #ddd;
  padding: 8px 11px;
  font-size: 12px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  background-color: #969696;
  border-radius: 6px;
}

.radio-toolbar input[type="radio"]:checked + label {
  background: #00A9B4;
}

.trCeleste {
  background-color: #F4F4F4;
  border-bottom: 2px solid #fff;
}

table td {
    background: none !important;
    vertical-align: middle !important;
    font-size: 14px;
    padding: 10px 10px !important;
}

.valoreOk {
  background-color: #D7D7D7;
  font-weight: bold;
  font-size: 10pt;
  padding: 10px;
  display: inline-block;
  min-width: 70px;
  text-align: center;
}

.valoreNot, .valoreFatManuale {
  background-color: #FDAC00;
  width: 70px;
  border: 0px solid !important;
  text-align: center;
  font-weight: bold;
  font-size: 10pt;
  padding: 10px;
  color: #fff;
  display: inline-block;
  min-width: 70px;
}


.tipoPesoBlu {
  background-color: #D7D7D7;
  font-weight: bold;
  font-size: 12px;
  padding: 10px;
  min-width: 114px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  float: left;
  min-width: 100px;
  font-size: 11px;
  margin-right: 4px;
  border-radius: 6px;
}

.tipoPesoRed {
  font-weight: bold;
  font-size: 12px;
  padding: 10px;
  min-width: 114px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #00A9B4;
  position: relative;
  float: left;
  min-width: 100px;
  font-size: 11px;
  margin-right: 4px;
  border-radius: 6px;
}


.boxStati {
  background-color: #D7D7D7;
  font-weight: bold;
  width: 120px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  float: left;
  font-size: 11px;
  margin-right: 4px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  height: 40px;
  line-height: 14px;
}

.boxStati.on {
  background-color: #00A9B4;
}

input.pesoOb {
  background-color: #1393A4 !important;
  color: #fff !important;
  width: 70px;
  border: none;
  text-align: center;
}

.riassuntoD {
  color: #DC6413;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

.wrapper-mini-block.custom-wrapper-mini-block {
  padding: 12px 10px;
  background-color: #DC6413;
  color: #fff;
  text-align: center;
}

.wrapper-mini-block.custom-wrapper-mini-block h4 {
  margin-bottom: 0;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}

.wrapper-mini-block.newminiblock {
  color: #000;
  font-weight: bold;
  font-size: 12px;
  padding: 10px;
  background: #ddd;
}

input.mtdgtws, input[type="number"].mtdgtws {
  width: 60px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #AAA;
  border-radius: 3px;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  color: #666666;
}

.bmr_box {
  width: 310px;
  height: 35px;
  border: 1px solid #CCC;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.rappkcal_bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: #FC0;
}

.tdee_bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 60%;
  background: #AAA;
}

.bee_bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 50%;
  background: rgb(17, 167, 3);
    background-color: rgb(17, 167, 3);
}

.new-radio {
  list-style-type: none;
  margin: 5px 0 0 0;
  padding: 0;
}

.new-radio li {
  float: left;
  margin: 0 5px 5px 0;
  width: 70px;
  height: 38px;
  position: relative;
}

.new-radio label {
  border: 0px solid #DC6413;
  background: #d7d7d7;
  color: #777777;
  padding-top: 7px;
  font-weight: bold;
  border-radius: 6px;
}

.new-radio label, .new-radio input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.new-radio input[type="radio"]:checked + label {
  background: #DC6413;
  color: #fff;
  border-color: #DC6413;
}


.listcnt {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.select_list {
    width: 100%;
    height: 300px;
    background: #FFFFFF;
    border: 1px solid #AAA;
    position: relative;

}

.listcnt label {
  display: block;
  width: 100%;
  height: 30px;
  border-bottom: 1px solid #CCC;
  line-height: 28px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0px;
  font-size: 13px;
}

.select_list label:hover {
  background-color: #FC0;
}


input[type='checkbox'].checkb, 
input[type="radio"].checkb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    position: relative;
    border: 0 solid #455A64;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: inset 0 0 5px 0 rgba(90, 90, 90, .8);
    cursor: pointer;
    float: right;
    margin-top: 5px;
    width: 18px;
    height: 18px;
}

input[type='checkbox'].checkb.lft {
    float: left;
    margin-top: 2px;
    margin-right: 6px;
}



input.checkb[type='checkbox']::before,
  input.checkb[type='radio']::before {
	content: '';
	color: #fff;
	position: absolute;
	top: 4px;
	right: 4px;
	bottom: 4px;
	left: 4px;
	background-color: transparent;
	background-size: 14px;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 2px;
	-webkit-transform: scale(0);
			transform: scale(0);
	-webkit-transition: -webkit-transform 0.25s ease-in-out;
	transition: -webkit-transform 0.25s ease-in-out;
	transition: transform 0.25s ease-in-out;
	transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
	/* base64 encoded to make things easier to show 
		normally you would use an image or a font
	*/
	background-image: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjQ0OCIgaGVpZ2h0PSI0NDgiIHZpZXdCb3g9IjAgMCA0NDggNDQ4Ij4KPHRpdGxlPjwvdGl0bGU+CjxnIGlkPSJpY29tb29uLWlnbm9yZSI+CjwvZz4KPHBhdGggZD0iTTQxNy43NSAxNDEuNWMwIDYuMjUtMi41IDEyLjUtNyAxN2wtMjE1IDIxNWMtNC41IDQuNS0xMC43NSA3LTE3IDdzLTEyLjUtMi41LTE3LTdsLTEyNC41LTEyNC41Yy00LjUtNC41LTctMTAuNzUtNy0xN3MyLjUtMTIuNSA3LTE3bDM0LTM0YzQuNS00LjUgMTAuNzUtNyAxNy03czEyLjUgMi41IDE3IDdsNzMuNSA3My43NSAxNjQtMTY0LjI1YzQuNS00LjUgMTAuNzUtNyAxNy03czEyLjUgMi41IDE3IDdsMzQgMzRjNC41IDQuNSA3IDEwLjc1IDcgMTd6Ij48L3BhdGg+Cjwvc3ZnPgo=");
  }
  
  input.checkb[type='checkbox']:checked::before,
  input.checkb[type='radio']:checked::before  {
	-webkit-transform: scale(1);
			transform: scale(1);
  }


input.sel,
select.sel {
  background: #FC0;
}


@media (max-width: 768px) {
    .new-radio li {
        width: 50px;
    }
}

#home,
#misurazioni,
#risultati {
    border: 0px solid #000;
    padding-bottom: 70px;
}

#area-al option,
#area-al2 option,
#mainpatology option,
#patology2 option {
    display: none;
}

#area-al option[ref="0"],
#area-al2 option[ref="0"],
#patology2 option[ref="0"],
#mainpatology option[ref="0"] {
    display: block;
}

li.ui-menu-item {
    padding: 4px 20px;
    border-bottom: 1px solid #AAA;
}

li.ui-menu-item:hover {
    background: #FC0;
}

li.ui-menu-item:last-child {
    border-bottom: 0px solid #AAA;
}

li .ui-state-hover, 
li .ui-state-active {
    background-color: none !important;
}

.mtdgtload {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: url('../../repository/images/load-icon.gif') #ffffff9f center no-repeat;
  background-size: 40px;
}

.load_elaborazione {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #ffffffe6;
  z-index: 9999;
  display: none;
}

.icohourglass {
    width: 70px;
    height: 70px;
    background: url('../../repository/images/blue-hourglass.gif') center no-repeat;
    background-size: 70px;
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 35px);
    border: 1px solid #34475e;
    border-radius: 8px;
}

.load_text {
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 150px);
    width: 300px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #34475e;
}

.top-fast {
    background: #E6E6E6;
    border-radius: 0 0 40px 40px;
    padding: 35px 35px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn.btn-fast {
    border: 1px solid #fff !important;
    padding: 10px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: inset 2px -2px 4px rgba(0, 0, 0, .5);
    color: #00A3B4;
    font-weight: bold;
    font-size: 12px;
}


.headbox .btn:not(:disabled):not(.disabled) {
    /*cursor: not-allowed;*/
}

.headbox .col-sm-2 {
    padding-left: 2px;
    padding-right: 2px;
}

#canale-al option[ref="0"] {
    color: #555;
}

.radio-sm {
  width: 60px;
  float: left;
  margin-right: 10px;
  margin-top: 8px;
}

.listr {
  background: #FFF;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 8px;
}

.btn-ds-icon {
    color: #FFF;
    font-size: 18px;
    padding: 1px;
    width: 36px;
}

.mtdgt-group {
    position: relative;
    width: 100%;
    border: 0px solid #AAA;
}

.mtdgt-group-ico {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 45px;
    height: 100%;
    background: url('../../repository/images/ico-search.png') center no-repeat;
    background-size: 20px;
    text-align: center;
    line-height: 53px;
    font-size: 25px;
    display: none;
}

.mtdgt-group-ico[st="ON"] {
    display: block;
}

.mtdgt-group-ico svg {
    cursor: pointer;
}

.selcol {
    border-left: 1px solid #AAA;
    background: #EFEFEF;
    padding-top: 20px;
    padding-bottom: 20px;
}

.table-responsive th {
    text-align: inherit;
    text-align: -webkit-match-parent;
    font-size: 14px;
    font-weight: normal;
    
}

.table-responsive {
    overflow-x: visible !important;
}

.table>:not(caption)>*>* {
    background-color: #e5e7eb;
}

.selTab>:not(caption)>*>* {
    background-color: #00a9b4;
    color: #FFF;
}

.table td {
    color: #000;
}

h6.tit {
    color: #00a9b4;
}

.ui-autocomplete {
    overflow-y: scroll;
    max-height: 300px;
}

.rowprod {
    padding-top: 15px;
    border-bottom: 1px solid #CCC;
    padding-bottom: 15px;
}

.text-muted {
    font-size: .8em;
}

.dropdown-menu.show {
    display: block;
    background: #FFF;
    border: 2px solid #FC0;
    padding: 0px;
}

.dropdown-menu.show li {
    border-bottom: 1px solid #FC0;
    padding: 5px 0px;
}

.dropdown-menu.show li:last-child {
    border-bottom: 0px solid #FC0;
}


.dropdown-menu .bi::before {
    vertical-align: -0.3em;
    font-size: 24px;
    color: #dc3545;
}

.dropdown-item {
    cursor: pointer;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #fc0;
    border-color: #fc0;
}


button .dropdown-menu .bi::before {
    font-size: 20px;
    color: #FFF;
}


.icona_visual{
	width: 100%;
    height: 232px;
    margin-top: 0px;
    position: relative;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    background: url(../../repository/no-image.png) #FFF center 45px no-repeat;
    background-size: 100px;
}

.gestFile {
    position: absolute;
    width: 90%;
    bottom: 10px;
    text-align: center;
    height: 30px;
    cursor: pointer;
    line-height: 28px;
    background: #FFFFFF;
    left: 5%;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid #AAA;
    border-radius: 4px;
}

.delFile {
    right: 3px;
    position: absolute;
    width: 35px;
    top: 3px;
    text-align: center;
    height: 35px;
    cursor: pointer;
    line-height: 28px;
    color: #FF0000;
    font-size: 22px;
}

.mtdgtUploadBoxBar {
    position: absolute;
    width: 80%;
    height: 14px;
    border: 1px solid #000;
    top: 45%;
    left: 10%;
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

.mtdgtUploadBar {
    position: absolute;
    top: 0px;
    height: 14px;
    background: #1C2440;
    width: 0px;
    text-align: right;
    color: #FFF;
    border: 1px solid #000;
}

.mtdgtUploadBar.compl {
    background: #693;
}

#addFile {
    margin-top: 100px;
}

.dimFile {
    position: absolute;
    width: 80px;
    height: 25px;
    left: 10px;
    top: 10px;
    font-size: 12px;
}

.loadingFile {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
    background: url('../../repository/images/load-icon.gif') center no-repeat;
    background-size: 26px;
    display: none;
}

.modal-footer {
    align-items: center;
    justify-content: center;
}

.modal-footer button {
    width: 42%;
    margin-left: 4%;
    margin-right: 4%;
}

.dsbutton {
    display: inline;
    margin-left: 20px;
    margin-right: 20px;
}

.modal-footer button.selec,
.dsbutton {
    background: #0dcaf0;
    border: 1px solid #0dcaf0;
    font-size: 14px;
    height: 50px;
    font-weight: bold;
    line-height: 18px;
}

.modal-body {
    height: 160px;
}

.dslabel {
    background: #FFF;
    color: #00a3b4;
    font-weight: bold;
    border-radius: 30px;
    padding: 2px 12px;
}


@media (max-width: 992px) {

    #sitemenu {
      display: none;
    }
}

.gm-style-iw-ch {
    display: none;
}

.gm-style-iw-chr button {
    width: 28px !important;
    height: 28px !important;
    position: absolute !important;
    top: -7px !important;
    right: 10px !important;
}

.gm-style .gm-style-iw-d {
    margin-top: 15px;
}

.btn-group-sm>.btn, .btn-sm {
    cursor: pointer !important;
    background: #0dcaf0 !important;
    color: #1f235a !important;
    border: 1px solid #0dcaf0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.btn-group-sm>.btn, .btn-sm:hover {
    background: #FC0 !important;
    color: #000 !important;
    border: 1px solid #FC0 !important;
}

.deco-border {
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 4px;
  font-size: 13px;
}

.float-right {
  float: right !important;
}

.prot-n-sel, .lowCarbAl, .animAl, .altriAlim {
  font-weight: bolder;
}

.prod_row {
    border-bottom: 1px solid #CCCCCC;
    position: relative;
    width: 95%;
    margin-bottom: 5px;
    margin-left: 2%;
    color: #333333 !important;
    font-weight: bolder;
}

.prod_row .col:nth-child(1) {
    width: calc(100% - 100px) !important;
    float: left;
    margin-top: 3px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.plus_icon {
    width: 27px;
    height: 27px;
    display: inline-block;
    border: 1px solid #00A2B3;
    color: #00A2B3;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
    line-height: 26px;
    cursor: pointer;
    outline: none;
}

.minus_icon {
    width: 27px;
    height: 27px;
    display: inline-block;
    border: 1px solid #00A2B3;
    color: #00A2B3;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    margin-left: 0px;
    margin-right: 4px;
    margin-bottom: 4px;
    line-height: 26px;
    cursor: pointer;
    outline: none;
}

a, span {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

span.dist_col {
    width: 20px;
    display: inline-block;
    text-align: center;
}

.deactive {
    background: #c2c2c2;
    color: #fff;
    border: 1px solid #c2c2c2;
    opacity: 0.7;
}

.wrapper-mini-block.custom-wrapper-mini-block .mtdgt-group-ico {
  line-height: 42px;
}