.my-form-input {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555555;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px !important;
  outline: 0;
  height: 34px;
  min-height: 34px !important;
  line-height: 1.428571429 !important;
  padding: 6px 24px 6px 12px !important;
  text-transform: uppercase;
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    max-width: 1200px;
  }
}

.my-form-input:focus {
  box-shadow: rgb(0 0 0 / 8%) 0px 1px 1px inset, rgb(102 175 233 / 60%) 0px 0px 8px !important;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s !important;
  border-color: rgb(102, 175, 233) !important;
}

.my-typeahead[readonly] {
  cursor: pointer !important;
}

@media only screen and (min-width: 760px) {
  .no-overflow-x {
    overflow-x: visible;
  }
}

.disabled-select {
  background-color: #d5d5d5;
  opacity: 0.5;
  border-radius: 3px;
  cursor: not-allowed;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.fc-content{
  padding:3px !important;
}

.fc-title {
  white-space: break-spaces !important;
  padding:3px !important;
}

.fc-event-container {
  padding: 5px !important;
}

.has-success .twitter-typeahead .tt-input,
.has-success .twitter-typeahead .tt-hint {
  border-color: #00c292 !important;
  box-shadow: rgb(0 0 0 / 8%) 0px 1px 1px inset;
}

.has-success .select2-container--bootstrap .select2-dropdown,
.has-success .select2-container--bootstrap .select2-selection {
  border-color: #00c292 !important;
}

.tooltip-content5 {
  position: absolute;
  z-index: 9999;
  width: 200px;
  left: 50%;
  bottom: 90%;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
  color: #fff;
  background: transparent;
  opacity: 0;
  margin: 0 0 20px -100px;
  cursor: default;
  pointer-events: none;
  transition: opacity 0.3s 0.3s;
}

.tooltip-inner2 {
  background: #2b2b2b;
  padding: 10px;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.3s;
}

/*table.dataTable tbody tr:hover {
  background-color: #f8f9fa;
}

table.dataTable tbody tr:hover>.sorting_1 {
  background-color: #f8f9fa;
}*/

.right {
  float: right;
}

div.dataTables_filter {
  margin-left: 20px;
}

/* For 1024 Resolution */
@media only screen and (min-device-width : 768px) {

  .dataTable {
    width: 100% !important;
  }

}

@media only screen and (min-width: 1370px) {
  /* STYLES GO HERE */

  .dataTable {
    width: 100% !important;
  }
}

.dataTables_scrollHead,
.dataTables_scrollHeadInner {
  width: auto !important;
}

/*.dataTables_scrollBody {
  min-height: 16rem;
}*/

/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
  text-transform: uppercase !important;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 230px;
  text-align: center;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
  border-top: 0;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform: translateY(-12px);
  transform: translateY(-12px);
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform: translateX(-12px);
  transform: translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform: translateY(12px);
  transform: translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform: translateX(12px);
  transform: translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}

.dropdown-menu {
  margin: 0;
  padding: 0;
}

/*
Template Name: Admin Template
Author: Wrappixel

File: scss
*/
@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);

/*Theme Colors*/
/**
 * Table Of Content
 *
 * 	1. Color system
 *	2. Options
 *	3. Body
 *	4. Typography
 *	5. Breadcrumbs
 *	6. Cards
 *	7. Dropdowns
 *	8. Buttons
 *	9. Typography
 *	10. Progress bars
 *	11. Tables
 *	12. Forms
 *	14. Component
 */
/*******************
Vertical tabs
******************/
.vtabs {
  display: table;
}

.vtabs .tabs-vertical {
  width: 150px;
  border-bottom: 0px;
  border-right: 1px solid #e9ecef;
  display: table-cell;
  vertical-align: top;
}

.vtabs .tabs-vertical li .nav-link {
  color: #343a40;
  margin-bottom: 10px;
  border: 0px;
  border-radius: 0.25rem 0 0 0.25rem;
}

.vtabs .tab-content {
  display: table-cell;
  padding: 20px;
  vertical-align: top;
}

.tabs-vertical li .nav-link.active,
.tabs-vertical li .nav-link:hover,
.tabs-vertical li .nav-link.active:focus {
  background: #fb9678;
  border: 0px;
  color: #fff;
}

/*Custom vertical tab*/
.customvtab .tabs-vertical li .nav-link.active,
.customvtab .tabs-vertical li .nav-link:hover,
.customvtab .tabs-vertical li .nav-link:focus {
  background: #fff;
  border: 0px;
  border-right: 2px solid #fb9678;
  margin-right: -1px;
  color: #fb9678;
}

.tabcontent-border {
  border: 1px solid #ddd;
  border-top: 0px;
}

.customtab2.nav-tabs {
  margin: 0.5em;
}

.customtab2 li a.nav-link {
  border: 0px !important;
  margin-right: 3px !important;
  color: #212529 !important;
}

.customtab2 li a.nav-link.active {
  background: #fb9678;
  color: #fff;
}

.customtab2 li a.nav-link:hover {
  color: #fff;
  background: #fb9678;
}

.wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px;
  height: 80px;
}

.list {
  position: absolute;
  left: 0px;
  top: 0px;
  min-width: 110%;
  margin-top: 0px;
}

.list li {
  display: table-cell;
  position: relative;
  text-align: center;
  cursor: grab;
  cursor: -webkit-grab;
  color: #efefef;
  vertical-align: middle;
}

.scroller {
  text-align: center;
  cursor: pointer;
  display: none;
  padding: 0.5em;
  color: gray;
  white-space: no-wrap;
  vertical-align: middle;
  background-color: #fff;
  font-size:20px;
}

.scroller i {
  filter:drop-shadow(3px 0px 2px black);
}

.scroller-right {
  float: right;
}

.scroller-left {
  float: left;
}

.wrapper-tabs {
  background-color: #2b2b2bcc;
  height:60px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 13px;
  font-weight: bolder;
}

.hr-tabs-line {
  margin-top: 0px;
  border-top : 1px solid black;
}

.simple-list {
  list-style: none;
  padding-left: 0 !important;
  max-height: 200px;
  overflow: auto;
}

.simple-list li {
  background: #f2f2f2;
  -moz-border-radius: 0.417em;
  -webkit-border-radius: 0.417em;
  -webkit-background-clip: padding-box;
  border-radius: 0.417em;
  padding: 0.75em;
  color: #333333;
  margin-bottom: 0.25em;
}

.simple-list li a, .simple-list li span {
  display: block;
  margin: -0.75em;
  padding: 0.75em;
  color: #333333;
  background-repeat: no-repeat;
  background-position: 0.667em center;
  -moz-border-radius: 0.417em;
  -webkit-border-radius: 0.417em;
  -webkit-background-clip: padding-box;
  border-radius: 0.417em;
}

.with-icon.icon-noallegato a, .with-icon.icon-noallegato span, 
.with-icon .icon-noallegato a, .with-icon .icon-noallegato span {
  background-image: url(../images/icon/cross-small.png) !important;
  background-repeat: no-repeat;
  padding-left: 2.5em;
}

.with-icon.icon-allegato a, .with-icon.icon-allegato span, 
.with-icon .icon-allegato a, .with-icon .icon-allegato span {
  background-image: url(../images/icon/tick-small.png) !important;
  background-repeat: no-repeat;
  padding-left: 2.5em;
}

table.dataTable tbody tr:hover {
  background-color: #cccccca8 !important;
}

table.dataTable tbody tr.selected {
  background-color: #cccccca8 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.popover {
  max-width: 320px !important;
}

td.centerBlue {
  color: blue;
  border:1px solid #ccc;
  text-align:center;
  font-weight:bold;
}
td.centerBlueFestivo {
  color: blue;
  border:1px solid #ccc;
  text-align:center;
  background-color:#eae8e8;
  font-weight:bold;
}
td.centerGrey {
  color: grey;
  background-color:white;
  border:1px solid #ccc;
  text-align:center;
  font-weight:bold;
}
.centerBlack {
  color: black;
  border:1px solid #ccc;
  text-align:center;
  font-weight:bold;
}
.centerBlackFestivo {
  color: black;
  border:1px solid #ccc;
  background-color:#eae8e8;
  text-align:center;
  font-weight:bold;
}
td.centerGrey_Festivo {
  color: black;
  background-color:#eae8e8;
  border:1px solid #ccc;
  text-align:center;
  font-weight:bold;
}
td.paziente {
  border:1px dotted #ccc;
  width:220px;
  font-size: 10pt;
}

.column-body-cale-personale {
  padding-bottom:3px !important; 
  padding-top:3px !important; 
  vertical-align:middle !important; 
  text-align:center !important; 
}

.column-head-cale-personale {
  padding-bottom:0 !important; 
  padding-top:0 !important; 
  vertical-align:middle !important; 
  text-align:center !important; 
  border-top: 1px solid #dee2e6 !important;
}

.no-padding {
  padding: 0 !important;
}

.dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 1px 1px;
  border: 1px solid black;
}

#cale-personale-table tbody tr:hover {
  background-color: white !important;
}

.dataTables_wrapper {
  padding: 0 !important; 
}

.dt-body-center {
  text-align: center;
}

.label-filter {
  margin-bottom:5px;
  font-weight:400;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300 !important;
  text-transform: uppercase !important;
}

.functionality-box {
  min-height: 190px;
}

.ms-auto {
  margin-left: auto !important;
}

.square {
  position: relative;
  width: 100%;
  height: 30px;
}

.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
}

.position-notifications {
  position: relative;
  bottom: 15px;
  left: -20px;
}

.dropdown-notifications {
  font-size: 0.750rem !important;
  min-width: 32rem !important;
}

/**
SWITCH
 */
.form-check {
  display: block;
  min-height: 1.14em;
  padding-left: 1.66em;
  margin-bottom: .125rem
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.66em
}

.form-check-input {
  width: 1.16em;
  height: 1.16em;
  margin-top: .17em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0,0,0,.25);
  appearance: none;
  color-adjust: exact
}

.form-check-input[type=checkbox] {
  border-radius: .25em
}

.form-check-input[type=radio] {
  border-radius: 50%
}

.form-check-input:active {
  filter: brightness(90%)
}

.form-check-input:focus {
  border-color: rgba(0,0,0,.1);
  outline: 0;
  box-shadow: transparent
}

.form-check-input:checked {
  background-color: #fb9678;
  border-color: #fb9678
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #fb9678;
  border-color: #fb9678;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: .5
}

.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label {
  opacity: .5
}

.form-switch {
  padding-left: 2.5em
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
  .form-switch .form-check-input {
    transition: none
  }
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.1%29'/%3e%3c/svg%3e")
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem
}

.btn-check {
  position: absolute;
  clip: rect(0,0,0,0);
  pointer-events: none
}

.btn-check:disabled+.btn,.btn-check[disabled]+.btn {
  pointer-events: none;
  filter: none;
  opacity: .65
}


.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-donna,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-donna {
  color: #fff;
  background: #F28CD9;
}