/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */



body{
    font-family: 'Open Sans', sans-serif;
    width:100%;
    min-width: 780px;
    font-size: 0.8em;
    line-height: 1.3em;
}

.swal2-popup{
    width: auto !important;
    max-width: 50em !important;
    min-width: 32em !important;
}

a{
    cursor: pointer;
}


.form_generico textarea.normale{
    width: 100% !important;
}

.login_container{
    text-align: center;
    width: 100%;
    background-color: #fef2f2;
}

.login_container form {
    padding: 80px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 180px;
    display: inline-block;
    font-size: 16px;
}

.login_container form label{
    display: block;
    margin: 18px 0 6px;
}

.login_container form input{
    background-color: white;
    border: none;
    padding: 6px;
    min-width: 200px;
    text-align: center;
    box-sizing: border-box;
}

.login_container form input[type="submit"]{
    box-sizing: content-box;
    margin-top: 20px;
    transition: all 0.2s;
}

.login_container form input[type="submit"]:hover{
    border-radius: 8px;
    background-color: #efefef !important;
}


#loaderBig {
    background-color: rgba(0, 0, 0, 0.8);
    background-image: url("../img/loadingBig.gif");
    background-position: center center;
    background-repeat: no-repeat;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000;
}

header{
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    position: relative;
    background-color: #fef2f2;
}

header span{
    position: absolute;
    right: 20px;
    top: 40px;
    color: #666;
    font-size: 18px;
}

header #logo img{
    height: 40px;
    margin-top: 30px;
    margin-left: 20px;
}

.flex_container{
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-height: calc(100vh - 160px);
    width: 100%;
}

nav{
    -ms-flex: 0 0 160px;
    -webkit-flex: 0 0 160px;
    flex: 0 0 160px;
    border-right: 1px solid #ccc;
    font-size: 16px;
}

main{
    padding: 20px;
    width: 100%;
    position: relative;
}

nav section div {
    overflow: hidden;
    transition:all 0.3s;
    height: auto;
    max-height: 0;
}

nav section a:hover {
    text-decoration: none;
}

nav section:target div {
    max-height: 500px;
    transition:all 0.3s;
}

nav section a{
    display: block;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    padding-left: 20px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

nav section a:hover{
    background: #ddd;
}

nav section > a{
    background-color: #eee;
    padding-left: 10px;
}

footer{
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-top: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    background-color: #fef2f2;
}

footer a{
    text-decoration: none;
    color: #555;
}/* Applica stile coerente sia a <button> che a <a> con classi DataTables */
.dt-button,
a.dt-button {
    display: inline-block;
    padding: 4px 12px;
    margin: 2px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

/* Hover/focus */
.dt-button:hover,
a.dt-button:hover,
.dt-button:focus,
a.dt-button:focus {
    background-color: #e9e9e9;
    border-color: #bbb;
    color: #111;
    text-decoration: none;
}

/* Active state */
.dt-button:active,
a.dt-button:active {
    background-color: #ddd;
    border-color: #999;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    color: #000;
}

/* Disabled state */
.dt-button.disabled,
a.dt-button.disabled,
.dt-button:disabled,
a.dt-button:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}


button.dt-button, div.dt-button, a.dt-button{
    margin-left: 6px;
    margin-right: 0;
}

.dataTables_wrapper{
    width: 100%;
    margin-top: 40px;
}

#myTable a{
    text-decoration: none;
}

#myTable th, #myTable td{
    text-align: left;
    padding-left: 10px;
}

#myTable tr td:last-child, #myTable tr th:last-child{
    text-align: center;
    width: 80px;
}

.flex-header{
    display:flex;
    width: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

div.dt-buttons, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_length{
    float:none;
}

.dataTables_wrapper .dt-buttons{
    text-align: right;
    margin-top: 10px;
}

.colonne_container {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}

.form_generico{
    position: relative;
}

.form_generico.immutabile:after{
    position: absolute;
    top: 0;
    bottom: -20px;
    right: 0;
    left: 0;
    content: " ";
    display: block;
    cursor: not-allowed;
    z-index: 1000;
    opacity: 0.20;
    background-color: #fff;
}

.form_generico label:not(.switch):not(.abbinamento){
    display:block;
    margin: 10px 0 5px 0;
    font-weight: bold;
}

.form_generico label.abbinamento{
    display: inline-block;
    margin: 0 15px 10px 0;
}

.form_generico label.abbinamento input{
    width: auto;
}

.form_generico input, .form_generico select, .form_generico textarea{
    width: calc(100%);
    max-width: 600px;
    text-align: left;
    border: 1px solid #ccc;
    background-color: white;
    padding: 4px;
    box-sizing:border-box;
}

.form_generico textarea{
    height: 120px;
}

.form_generico input[type="submit"]{
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin-top: 20px;
    padding: 0.5em 3em;
    border: 1px solid #999;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.88em;
    line-height: 1.6em;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    background-color: #e9e9e9;
    background-image: -webkit-linear-gradient(top, #fff 0%, #e9e9e9 100%);
    background-image: -moz-linear-gradient(top, #fff 0%, #e9e9e9 100%);
    background-image: -ms-linear-gradient(top, #fff 0%, #e9e9e9 100%);
    background-image: -o-linear-gradient(top, #fff 0%, #e9e9e9 100%);
    background-image: linear-gradient(to bottom, #fff 0%, #e9e9e9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#e9e9e9');
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    outline: none;
    width: auto;
}

.form_generico input.number{
    max-width: 240px;
}

.colonne_container div.colonna{
    flex: 1 0 400px;
    position: relative;
    box-sizing: border-box;
}

.colonne_container div.colonna:first-child{
    margin-right: 30px;
}

.colonne_container div.colonna.disabled :after{
    content: " ";
    display: block;
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color: rgba(255,255,255,0.3);
    z-index: 998;
}

.button-aggiungi{
    float:none;
    padding: 12px 20px !important;
    font-size: 18px !important;
    font-weight: normal !important;
    vertical-align: top !important;
}

.button-aggiungi-small{
    float:right;
    padding: 0;
    font-size: 14px !important;
    position: relative;
    top: -12px;
}

.button-aggiungi a, .button-aggiungi-small a{
    text-decoration: none;
    color: #222;
    display:inline-block;
    padding: 0.5em 1em;
    box-sizing: border-box;
}

.button-aggiungi-small a{
    padding: 0.3em 0.7em;
}

.separe{
    width: 100%;
    height: 1px;
    margin: 40px 0;
    background-color: #ddd;
    clear:both;
}

.form_generico .separe{
    max-width: 400px;
}

h1{
    border-bottom: 1px solid #ddd;
}

h1 .dt-button{
    top: -22px !important;
    position: relative;
    position: relative;
}

h1 select{
    position: absolute;
    font-size: 18px;
    font-weight: normal;
    padding: 8px;
    min-width: 120px;
    text-align: left;
    background-color: white;
    border: 1px solid #ccc;
    top: 22px;
    right: 20px;
}

h2{

}

#swal-form{
    margin-bottom: 20px;
}

table.small{
    width: 100%;
}

table.small th{
    padding: 5px;
    background-color: #c6c6c6;
    color: white;
    border-right: 1px solid white;
    text-align: left;
}

table.small td{
    padding: 5px;
}

table.small td.tabellavuota{
    font-weight: bold;
    font-style: italic;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

table.small tr:nth-child(even) td{
    background-color: #eee;
}

/* The switch - the box around the slider */
label.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    float:right;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked + .slider {
    background-color: green;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px green;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.switch .slider.round {
    border-radius: 34px;
}

.switch .slider.round:before {
    border-radius: 50%;
}

.sinistra_label{
    display: inline-block !important;
    vertical-align: bottom;
    height: 38px;
    line-height: 38px;
    margin-right: 15px;
    font-weight: bold;
}

.switch_container{
    margin-top: 20px;
    width: calc(100% - 20px);
    max-width: 600px;
}

.swal2-popup .switch_container{
    max-width: 240px;
    margin: 20px auto auto;
    text-align: left;
}

.swal2-popup input{
    text-align: center;
}

div.nascosto{
    display:none;
}

label.labelToggle{
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}

label.labelToggle:before, label.labelToggle:after {
    content: "";
    display: block;
    width: 11px;
    height: 3px;
    background: #666;
    position: absolute;
    top: 12px;
    transition: transform .5s;
}

label.labelToggle:before {
    right: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transform: rotate(45deg);
}

label.labelToggle:after {
    right: 3px;
    transform: rotate(-45deg);
}

label.labelToggle.active:before {
    transform: rotate(-45deg);
}

label.labelToggle.active:after {
    transform: rotate(45deg);
}

label.stretta{
    position:relative;
    padding: 15px 0;
    margin: 0 !important;
    border-bottom: 1px solid #ccc;
}

label.stretta span{
    display: inline-block;
    width: 120px;
    font-weight: normal;
    position: absolute;
    right: 0;
    top: 10px;
}

label.stretta span input{
    margin-right: 5px;
    text-align: right;
    width: calc(100% - 20px);
}

div.preview_container{
    margin-top: 30px;
}

div.preview_container a{
    color:white;
}

div.preview_container img{
    width: 150px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
}

div.preview_container span{
    display: inline-block;
    width: calc(100% - 175px);
    vertical-align: middle;
}

div.preview_container input{
    width: 100%;
    max-width: calc(600px - 175px);
}


#loadingTable{
    background-color: rgba(255, 255, 255, 1);
    background-image: url("../img/loader.gif");
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100000;
}

.toReplace{
    position: relative;
}

.toReplace:after{
    transition: all 0.2s;
}

.loading:after{
    content: " ";
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
    background-image: url("../img/loader.gif");
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 100000;
}

.tabella_ordine_container{
    position: relative;
}

.tabella_ordine_container:after{
    transition: all 0.2s;
}

.tabella_ordine_riga{
    width: 100%;
    flex-grow: 1;
    clear:both;
    display: table;
}

.tabella_ordine_riga > div{
    width: 15%;
    float:left;
    text-align: center;
    margin-top: 20px;
    height: 40px;
    line-height: 40px;
    display: table-cell;
    white-space: nowrap;
}

.tabella_ordine_riga > div:first-child{
    width:35%;
    text-align: left;
}

.tabella_ordine_riga > div:last-child{
    width:5%;
}

.form_generico .tabella_ordine_riga input.number{
    max-width: 60px !important;
    text-align: center;
}

.tabella_riassortimento_riga > div{
    width: 15%;
    float:left;
    text-align: center;
    margin-top: 20px;
    height: 40px;
    line-height: 40px;
    display: table-cell;
}

.tabella_riassortimento_riga > div:first-child{
    width:60%;
    text-align: left;
}

.tabella_riassortimento_riga > div:last-child{
    width:10%;
    text-align: center;
}

.tabella_riassortimento_header div{
    background-color: #f2f2f2;
    padding-left: 6px;
    padding-right: 6px;
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: bold;
}

.form_generico .tabella_riassortimento_riga input.number{
    max-width: 60px !important;
    text-align: center;
}

.nominativo_container{
    padding-bottom: 60px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    position: relative;
}


.pulsanti_container{
    position: absolute;
    bottom:-5px;
    right: 0;
}

.jqte{
    /* max-width: 600px; */
}

.dt-button.disattivo{
    opacity: 0.4;
    cursor: not-allowed;
}

label.container {
     display: block;
     position: relative;
     padding-left: 35px;
     margin-bottom: 12px;
     cursor: pointer;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
    font-weight: normal !important;
 }

/* Hide the browser's default radio button */
label.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
label.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
label.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
label.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
label.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

#ordine_totali_container{
    width: 100%;
    border: 1px solid #d6d6d6;
    padding-bottom: 6px;
}


#ordine_totali_container div{
    text-align: center;
}

#ordine_totali_container > div{
    width: 14.28%;
    float:left;
    box-sizing: border-box;
}

#ordine_totali_container div div{
    background-color: #d6d6d6;
    padding: 6px 0;
    margin-bottom: 6px;
}

.ordine_bottoni_container{
    margin-top: 40px;
}

.ordine_stock_tabella{
    width: 100%;
}

.ordine_stock_tabella th{
    padding: 8px 6px;
    text-align: left;
    background-color: #d6d6d6;
}

.ordine_stock_tabella td{
    padding: 6px;
    border-bottom: 1px solid #d6d6d6;
    transition: all 0.1s;
}

.ordine_stock_tabella tr.verde{
    color: darkgreen;
}

.ordine_stock_tabella tr.giallo{
    color: #b7ad0c;
}

.ordine_stock_tabella tr.rosso{
    color: darkred;
}

.ordine_stock_tabella tr:hover td{
    background-color: #efefef;
}

.ordine_stock_tabella tr.totali{
    background-color: #dedede;
    font-size: 16px;
    padding: 8px;
    border-top: 1px solid white;
    text-align: right;
}

.ordine_stock_tabella tr.totali td{
    padding: 12px 6px;
    border-top: 1px solid white !important;
}

.ordine_stock_tabella td.adestra, .ordine_stock_tabella th.adestra{
    text-align: right;
}

.selectize-input{
    max-width: 600px !important;
    background-color: white !important;
    box-shadow: none !important;
    background-image: none !important;
    border-radius: 0 !important;
}

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 18px;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control__indicator {
    position: absolute;
    top: -1px;
    left:0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #ccc;
}
.control input:checked ~ .control__indicator {
    background: #2aa1c0;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: #0e647d;
}
.control input:disabled ~ .control__indicator {
    opacity: 0.6;
    pointer-events: none;
}
.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control__indicator:after {
    display: block;
}
.control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
}

.table-alert{
    width: 100%;
}

.table-alert p{
    margin: 0;
    padding: 3px 0;
}

.table-alert td{
    font-size: 14px;
    line-height: 14px;
    text-align: left;
    padding: 6px 0;
}

.table-alert tr:nth-child(odd){
    background-color: #eee;
}

.table-alert tr td:first-child{
    font-weight: bold;
    padding-right: 30px;
    white-space: nowrap;
}

input.omaggio{
    width: 0px;
    height: 0px;
}

input.omaggio:before { cursor: pointer; content:""; display:inline-block; width:20px; height:20px; background:red; position: relative; top: -18px; background: url(../img/omaggio.png) no-repeat left center;}
input.omaggio:checked:before { background: url(../img/omaggio.png) no-repeat right center;}

.swal2-popup{
    font-size: 0.8rem;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

.selectize-dropdown .optgroup-header, .selectize-dropdown-content div:not([data-selectable]){
    padding: 5px 8px;
    color: #aaa;
}
