:root {

  --ts-rgb-color-one:217, 169, 40;
  --ts-rgb-color-two:60, 86, 84;
  --ts-rgb-color-three:153, 93, 67;
  --ts-rgb-color-four:139, 184, 168;
  --ts-rgb-color-five:255, 255, 255;
  --ts-rgb-bg-color:227, 237, 235;

  --ts-color-one:rgb(var(--ts-rgb-color-one));
  --ts-color-two: rgb(var(--ts-rgb-color-two));
  --ts-color-three: rgb(var(--ts-rgb-color-three));
  --ts-color-four: rgb(var(--ts-rgb-color-four));
  --ts-color-five: rgb(var(--ts-rgb-color-five));

  --ts-text: rgb(0, 0, 0);
  --ts-bg-color: rgb(var(--ts-rgb-bg-color));

}

@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap');
body {
 /* font-family: 'Poppins', "Helvetica Neue",Helvetica,Arial,sans-serif;*/
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/*attivare scroll sulle pagine
#page-content-wrapper{
  min-height: calc(100vh - 145px);
  overflow: unset;
  height: auto;
}*/

.ts-btn-primary{
  color: var(--ts-text);
  border-color: var(--ts-color-one);
  background-color: var(--ts-color-one);
}

.ts-btn-secondary{
  color: var(--ts-color-five);
  border-color: var(--ts-color-two);
  background-color: var(--ts-color-two);
}

.ts-btn-secondary:hover{
  color: var(--ts-color-one);
}

.ts-card{
  border-radius: 7px;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  background: var(--ts-color-five);
}
.ts-card-hov:hover{
  transform:scale(1.01);
}
/*
input,select{
  background: transparent!important;
  color:var(--ts-text) !important;
  border:1px solid var(--ts-color-two)!important;
}*/

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border:1px solid var(--ts-color-two)!important;
}

.input-group-text{
  color: #fff;
  background-color: var(--ts-color-two);
  border: 1px solid var(--ts-color-two);
}

.ts-col-smallpad {
  padding: 0 5px;
}
.button:focus,.button:active,.btn:focus,.btn:active {
  outline: none !important;
  box-shadow: none;
}