/*==============================================================*/
/*  Autore     : Giuseppe Rossino                               */
/*  Copyright  : © 2025 Giuseppe Rossino                        */
/*  Licenza    : Tutti i diritti riservati. Vietata la          */
/*               copia, la distribuzione, la modifica           */
/*               o l'uso non espressamente autorizzato.         */
/*==============================================================*/

@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900,100italic,300italic,400italic);
@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url(https://fonts.googleapis.com/css?family=Oswald:700,400,300);

*,
*::before,
*::after {
box-sizing: border-box;
}
   
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
}

body {
    font-family: "Montserrat", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif!important;
    background-color: var(--grey-light1)!important;
    color: var(--black-dark)
}

td,
th {
    padding: 0;
}

td div[contenteditable] {
    outline: none;       /* rimuove il bordo di focus */
    min-width: 50px;     /* opzionale, per evitare celle troppo piccole */
    padding: 8px;    /* opzionale, un po' di spazio interno */
}

td div[contenteditable]:focus {
    background-color: #f0f0f0;  /* leggero highlight al focus */
}

.fa-xl{font-size: 1.35em !important;}

.span1 {
    width: 8.3333%
}

.span2 {
    width: 16.6666%
}

.span3 {
    width: 25%
}

.span4 {
    width: 33.3333%
}

.span5 {
    width: 41.6666%
}

.span6 {
    width: 50%
}

.span7 {
    width: 58.3333%
}

.span8 {
    width: 66.6666%
}

.span9 {
    width: 75%
}

.span10 {
    width: 83.3333%
}

.span11 {
    width: 91.6666%
}

.span12 {
    width: 100%
}

.offset1 {
    margin-left: 8.3333%
}

.offset2 {
    margin-left: 16.6666%
}

.offset3 {
    margin-left: 25%
}

.offset4 {
    margin-left: 33.3333%
}

.offset5 {
    margin-left: 41.6666%
}

.offset6 {
    margin-left: 50%
}

.offset7 {
    margin-left: 58.3333%
}

.offset8 {
    margin-left: 66.6666%
}

.offset9 {
    margin-left: 75%
}

.offset10 {
    margin-left: 83.3333%
}

.offset11 {
    margin-left: 91.6666%
}

.offset12 {
    margin-left: 100%
}

.panel-footer, .upper {
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

/* Effetto riga animata sotto il bottone */
.hover-expand-effect {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Riga che appare al passaggio del mouse */
.hover-expand-effect::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: white;
  transition: width 0.4s ease, left 0.4s ease;
  transform: translateX(-50%);
}

/* Espansione della riga */
.hover-expand-effect:hover::after {
  width: 100%;
  opacity: 0.8;
}

button, 
.btn  {
  position: relative;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.primary-btn:before, .btn:before {
  transition: 0.3s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';

  z-index: -1;
}
.primary-btn:before {
   background-color: #366899;
}
.primary-btn.add:before {
  background-color: #57A55A;
}
.primary-btn.red:before {
  background-color: var(--primary-color);
}
.btn:before { 
background-color:var(--grey-dark);
}

.primary-btn:hover, .primary-btn:focus, .btn:hover, .btn:focus {
  color: white;
  border:1px solid white
}

.primary-btn:hover:before, .primary-btn:focus:before, .btn:hover:before, .btn:focus:before {
  transition: 0.2s all ease;
  left: 0;
  right: 0;
  opacity: 1;
  border-radius: .45rem;
}

.primary-btn:active, .btn:active {
  transform: scale(0.97);
}
/*
.btn::after {
  position: absolute;
  content: '';
  width: 17px;
  height: 17px;
  background-color: var(--grey-dark);
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: .2s;
  opacity: 0;
}

.btn::before {
  position: absolute;
  z-index: 0;
  content: '';
  width: 17px;
  height: 17px;
  background-color: var(--grey-dark);
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: .2s;
  opacity: 0;
}

.btn:hover::after {
  z-index: -1;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 1;
}

.btn:hover::before {
  z-index: -1;
  left: 0;
  width: 50%;
  height: 100%;
  opacity: 1;
}

.btn:hover {
  color: #fff;
  border: 1px solid var(--grey-dark);
}

.btn:active {
  transform: scale(0.97);
}*/


hr{
   margin-bottom:30px
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.j-row:before,
.j-row:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.panel-body:before,
.panel-body:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.j-row:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.panel-body:after {
    clear: both;
}


abbr,acronym,address,applet,article,aside,audio,b,big,
blockquote,body,canvas,caption,cite,code,dd,del,
details,dfn,dl,dt,em,embed,fieldset,figcaption,
figure,footer,header,hgroup,html,iframe,img,ins,
kbd,legend,mark,menu,nav,object,output,pre,q,ruby,
s,samp,section,small,span,strike,strong,sub,summary,
sup,time,tt,u,var,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%!important;
    font: inherit;
    vertical-align: baseline
}

i,ol {
    border: 0;
    font: inherit;
    vertical-align: baseline
}

i {
    margin: 0
}

ol,ul,li {
    list-style: none;
    margin: 0
}

ol {
    font-size: 100%!important
}

li {
    padding: 0;
}


#checkboxes label,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}


blockquote,q {
    quotes: none
}

blockquote:after,blockquote:before,q:after,q:before {
    content: none
}

li.logo-menu {
    margin: 50px 30px 50px 10px;
    text-align: center;
}

li.logo-menu img{
    max-width: 75%
}

i {
    font-size: 18px!important
}

.container,i,ol,ul {
    padding: 0
}

a {
    background-color: transparent;
    text-decoration: none;
    color:var(--primary-color);
}

a:active,a:focus,a:hover,a:visited {
    text-decoration: none!important
}

a.btn-custom-blue,
button.btn-custom-blue {
    background-color: var(--primary-color)!important;
    color: white;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
    margin-top: 0px!important;
    text-decoration:none; 
    padding:10px 20px;
    border-radius:.35rem;
}

a.btn-custom-blue:hover,
button.btn-custom-blue:hover,
button.btn-default:hover {
    background-color: var(--grey-dark) !important;
    color: white!important
}

/* Overlay */
#overlay {
 position:absolute!important;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SVG dimensioni */
#overlay-check {
  width: 140px;
  height: 140px;
  transform: scale(0);
  animation: popIn 0.35s ease forwards;
}

/* Cerchio */
#overlay-check circle {
  stroke: var(--primary-color);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.7s ease forwards 0.1s;
}

/* Check */
#overlay-check path {
  stroke: var(--primary-color);
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.6s;
}

/* Animazioni */
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

body.fade-blur {
  filter: blur(8px);
  opacity: 0;
  transition: filter 0.7s ease, opacity 0.7s ease;
}

body.slide-up {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.pull-left {
    float: left !important;
}

p {
    margin: 0 0 10px;
}

h1,
.h1 {
    font-size: 37px;
}

h2,
.h2 {
    color: var(--black-dark);
    font-size: 30px;
    text-align: center;
    font-weight:bold;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
    text-transform: uppercase;
}

h5,
.h5 {
    font-size: 14px;
}
h6,
.h6 {
    font-size: 12px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 400;
    line-height: 1.1;
    color: inherit;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
    margin: 20px 0 40px;
    color: var(--grey-steel)
}

.top h4 {
    margin: 15px 5px;
    font-size: 14px;
}

.titolo, .titolo2, .titolo3, .titolo4 {
    display: block;
    position: relative;
    font-weight: 700;
}

.titolo {
    background-color: var(--grey-light1);
    padding: 10px 0;
    font-size: 16px;
    text-align: center;
    color: var(--grey-steel);
    margin: 10px 0 30px;
    border-radius: .35rem!important
}

.titolo2 {
    border-bottom: 1px solid var(--primary-color);
    padding: 12px;
    font-size: 14px;
    color: var(--primary-color);
    margin: 10px 0 30px;
}

.titolo3 {
    background-color: var(--blue-soft);
    padding: 12px;
    font-size: 14px;
    color: var(--blue-primary);
    margin: 20px 0 35px 0;
    border-radius: .35rem !important;
}

.titolo4 {
    background-color: var(--primary-gradient);
    padding: 12px;
    font-size: 14px;
    color: var(--primary-color);
    margin: 20px 0 35px 0;
    border-radius: .35rem !important;
    text-align: center;
    text-transform: uppercase;
}


.titolo>i {
    color: white;
    font-size: 31px;
    float: left;
    padding: 31px 15px 0 25px
}

.titolo p {
    color: white;
    margin: 0;
    padding: 12px 0;
    font-size: 17px;
    text-align: center
}
.titolo,.titolo p,.titolo2, .titolo3 {
    text-transform: uppercase
}

.titolo3.red {
    background: var(--red-light);
    color: var(--red); 
}

.titolo>i {
    color: white;
    font-size: 31px;
    float: left;
    padding: 31px 15px 0 25px
}

.titolo p {
    color: white;
    margin: 0;
    padding: 12px 0;
    font-size: 17px;
    text-align: center
}
.titolo3 .plus-btn {
    color: var(--blue-primary);
}

.titolo3.red .plus-btn {
    color: var(--red);

}

.plus-btn {
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    transition: 0.2s ease;
}


.plus-btn:hover, .toggle-attivo:hover i {
    filter: brightness(1.5);
    transition: 0.2s ease;
}
.toggle-attivo.toggled {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}


label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

.logo {
    display: block;
    margin: 0 auto;
    text-align: center
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.wrapper {
    margin: 0 auto;
    outline: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    max-width: 1080px
}

.wrapper-full {
    width: 90%;
    margin: 0 auto
}

.form-control {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #a2a0a0;
    outline: none;
    color: #212121;
    margin: 14px 0px;
    background-color: #FFFFFF;
}


::-webkit-scrollbar {
    height: 10px;
    width: 0
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    opacity: .6
}

/* Effetto hover sulla thumb */
::-webkit-scrollbar-thumb:hover {
  background: var(--black-dark);
}

::-moz-selection, ::selection {
    background: var(--black-dark);
    color: white
}

input[type="search"] {
    -webkit-appearance: none;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #a2a0a0;
    outline: none;
    color: #212121;
    margin: 14px 0px;
    background-color: #FFFFFF;
    height: 30px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
}

input[type="search"]:focus {
    border-bottom:2px solid var(--primary-color);

}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;

}

select.input-sm {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm, select[multiple].input-sm {
    height: auto;
}

.frm-input input[type=email].disabled,.frm-input input[type=text].disabled {
    background-color: var(--grey-light2)!important;
    border: 1px solid var(--grey-muted)
}

.frm-info a {
    float: right;
    font-size: 15px;
    letter-spacing: 1px;
    padding-top: 8px;
    color: var(--primary-color);
    font-style: italic;
}

.frm-info {
    padding: 0 0 20px
}

.frm-info a:hover {
    text-decoration: underline
}

#countdown {
    color:var(--red-strong); 
    font-weight:bold; 
    font-size:30px!important
}

.not_found{
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 80px;
}

.not_found p{
    font-size:25px; 
    text-align:center; 
    text-transform: uppercase;
    margin-top:40px
}

.white {
    background:white; 
    color: var(--black-dark);

}

.totale {
    font-size:15px;
    letter-spacing: 0.06em;
}

.panel.panel-default.hover-expand-effect .badge {
    position: absolute!important;
    top: 10px!important;
    right: 10px!important;
    font-size: 12px!important;
}
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    border-radius: 10px;
    background-color: var(--red)!important;
}
.badge-scaricata {
    background-color: var(--green)!important;
}

.flex {
    display: flex;
    flex-direction: row; 
    gap: 10px;
    margin: 15px 0;
    justify-content: center; 
    align-items: center; 
}

.expired {
    display: none !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #fbfbfb;
}

.selected {
    background: var(--blue-dark)!important;
    opacity: .9
}

.hidden {
    display: none!important
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

.text-light,.text-white {
    color: white!important
}

.text-light, .text-center {
    font-weight:500;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.upper {
    text-transform: uppercase
}

.text-normal,label {
    font-weight: 400
}

.text-thin {
    font-weight: 100
}

.text-sm {
    font-size: 13px
}

.text-lg {
    font-size: 18px
}

.text-xl {
    font-size: 1.6em
}

.text-2x {
    font-size: 2em
}

.text-3x {
    font-size: 2.4em
}

.text-4x {
    font-size: 3em
}

.link-white a {
    color: white
}

.text-grey {
    color: var(--grey-mid)
}

.text-dgrey {
    color: var(--grey-muted)
}

.text-brand {
    color: var(--blue-ocean)
}

.title .line {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--black-mid)
}

.header {
    padding: 25px 0
}

.minori {
    padding: 15px 0 0;
    margin-bottom: -15px
}
.no-minori {
    background-color: var(--grey-cloud)!important;
    opacity: 0.4;
    font-style:italic;
}

.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .35rem;
}

a.label:hover,
a.label:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.label:empty {
    display: none;
}

.btn .label {
    position: relative;
    top: -1px;
}

.clickable-row, .link {
    cursor: pointer;
}

.clickable-row:hover, .tr-hover:hover {
    color: var(--primary-color) !important;
    font-weight: bold !important;
    font-size: 1.03em;
    transition: font-size 0.1s ease, transform 0.3s ease;
}

.bg-success {
    background-color: #dff0d8;
}

.bg-info {
    background-color: #d9edf7;
}

.bg-warning {
    background-color: #fcf8e3;
}

.bg-danger {
    background-color: #f2dede;
}

#password-status,.errorWrap,.succWrap,.status-msg, .error-message,.info-message,.success-message,.warning-message {
    border-radius: .35rem!important;
    display: block;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.error-message i,.info-message i,.success-message i,.warning-message i {
    font-size: 18px;
    float: left;
    height: 24px;
    line-height: 24px;
    padding-right: 10px
}

span.error-view, span.info-view, span.success-view, span.warning-view {
    display: block;
    font-size: 12px!important;
    height: 14px;
    line-height: 14px;
    margin-top: 5px;
    padding: 0 2px
}
.success-message,.status-msg.success,.strong-password,.succWrap {
    background: var(--green-light);
    color: var(--green-dark)
}

.errorWrap,.error-message,.weak-password {
    background: var(--red-light);
    color: var(--red-dark)
}
   
.warning-message,.medium-password {
    background: var(--yellow-soft);
    color: var(--orange)
}

.frm-input.error p,.status-msg.error {
    background: var(--red-light);
    border: 0;
    color: var(--red-dark);
    border-radius: .35rem
}

.error-view {
    color: var(--red-dark);
    font-weight: 700
}

.stripe {
    background: var(--grey-dark);
    display: block;
    position: relative;
    padding: 10px 0;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: white;
    border-radius:.35rem;
    margin:20px 0;
}

a.dt-button span.dt-down-arrow,button.dt-button span.dt-down-arrow,div.dt-button span.dt-down-arrow,input.dt-button span.dt-down-arrow {
    color: white!important;
    font-size: 80%!important
    
}

.sfondo {
    padding: 25px;
    margin-bottom: 25px;
    background-color: white;
    border-radius: .45rem;
    box-shadow: 0 2px 3px 0 rgb(0 0 0/10%),0 2px 3px 0 rgb(0 0 0/10%)!important;
    -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0/10%),0 2px 3px 0 rgb(0 0 0/10%)!important;
    text-align: center
}

#qr {
     position: relative;
     height: 100vh;
 }
 
#qr .qr-bg {
     position: absolute;
     width: 100%;
     height: 100%;       
 }
 
#qr .qr {
     position: absolute;
     left: 50%;
     top: 50%;
     -webkit-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
 }
 
.qr {
     width: 100%;
     line-height: 1.4;
     text-align: center;
 }
 
.qr .qr-testo {
     position: relative;
     height: 200px;
 }
 
.qr h2 {
     font-family: 'Montserrat', sans-serif;
     font-size: 52px;
     font-weight: 900;
     text-transform: uppercase;
     color: white;
     margin-top: 20px;
     margin-bottom: 15px;
 }

.content-box {
    padding: 15px
}

.block-anchor {
    display: block
}

.pl {
    padding-left: 20px
}

.page-title {
    padding: 1em 0
}

.bottom {
    background: var(--grey-dark);
}

.bottom p a, h2 {
    letter-spacing: 1px;
    text-transform: uppercase
}

.bottom p {
    font: 15px "Roboto", sans-serif !important;
    color: white;
    padding: 15px 0;

}

.bottom p a {
    font-size: 14px;
    text-decoration: underline;
    color: white;
    padding: 10px
}

.bottom p a:active,.bottom p a:hover,.j-forms .footer p a:hover {
    color: var(--blue-dark)
}



/*---------------------------------------------------------------------------------*/
/*                                    CHART                                        */
/*---------------------------------------------------------------------------------*/

.chart-dot-list {
    display: block;
    margin-top: 60px;
    margin-left: 20px
}

.chart-dot-list li {
    margin-bottom: 4px
}

.chart-dot-list li:before {
    content: "";
    height: 12px;
    width: 12px;
    margin-right: 6px;
    display: inline-block;
    background: var(--black-mid);
    border-radius: 50%
}

.chart-dot-list li.a1:before {
    background: var(--red)
}

.chart-dot-list li.a2:before {
    background: var(--green-cyan)
}

.chart-dot-list li.a3:before {
    background: var(--orange)
}

.chart-doughnut {
    padding: 41px 0
}



/*---------------------------------------------------------------------------------*/
/*                                    BRAND                                        */
/*---------------------------------------------------------------------------------*/

.dashboard-header {
    margin: 20px;
}

.dashboard-header a {
    color: white;
    text-decoration: none;
}

.brand {
    background: var(--primary-color);
    z-index: 3;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 3px 0 rgb(0 0 0/16%),0 2px 3px 0 rgb(0 0 0/12%)!important;
    -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0/16%),0 2px 3px 0 rgb(0 0 0/12%)!important;
    z-index: 999999;
}

.brand .logo {
    box-sizing: border-box;
    padding: 20px;
    float: left;
    display: block;
    width: 200px
}

.brand .logo img {
    height: 20px
}

.brand .menu-btn,
.brand .cog-btn {
    float: right;
    text-align: center;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
}

.brand .cog-btn {
    padding: 19px;
}
.brand .menu-btn {
        padding: 12px;
}
.brand .cog-btn:hover {
    transform: rotate(90deg);
}

.menu {
  background-color: transparent;
  border: none;
  
}
.line {
  fill: none;
  stroke: white;
  stroke-width: 9;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 9;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 9;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 9;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 9;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 9;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 9;
}

.brand .ts-profile-nav {
    float: right;
    display: none
}

.brand .ts-profile-nav li {
    float: left;
    position: relative
}

.brand .ts-profile-nav li a {
    display: block;
    padding: 20px;
    color: white
}

.brand .ts-profile-nav li ul {
    visibility: hidden;
    opacity: 0;
    right: 0;
    position: absolute
}

.brand .ts-profile-nav li ul li {
    float: none;
    width: 180px
}

.brand .ts-profile-nav li ul li a {
    padding: 10px 20px;
    background: var(--black-mid)
}

.brand .ts-profile-nav .ts-account>a {
    width: 180px;
    background: var(--primary-color)
}

.brand .ts-profile-nav .ts-account .ts-avatar {
    border-radius: 50%;
    height: 30px;
    margin: -10px 10px -10px 0
}

.brand .ts-profile-nav .ts-account:hover ul {
    visibility: visible;
    opacity: 1
}

.brand .ts-profile-nav .ts-account .fa-angle-down,.dataTables_length {
    float: right
}

.hr-green {
    height: 2px;
    background: var(--blue-ocean)
}

.hr-grey {
    height: 2px;
    background: var(--grey-light2)
}

.hr-dashed {
    background-color: transparent;
    border-top: 1px dotted var(--grey-cloud);
    color: transparent;
    height: 1px;
    margin: 20px 0
}

.brdr {
    border: 1px solid var(--grey-light2)
}

.content-format strong,.text-bold {
    font-weight: 700
}

/*---------------------------------------------------------------------------------*/
/*                                   BK-PANEL                                      */
/*---------------------------------------------------------------------------------*/

.bk-coach .icon-bg {
    left: -56px;
    top: 51%;
    font-size: 8vw !important;
}

.bk-coach { background-color: var(--primary-color) !important; }
.bk-summer { background-color: var(--blue-dark)!important; }
.bk-primary { background-color: var(--blue-primary); }
.bk-warning { background-color: var(--orange-soft); }
.bk-success { background-color: var(--green); }
.bk-danger { background-color: var(--red); }
.bk-info { background-color: var(--blue-light); }
.bk-dark { background-color: var(--grey-steel); }


.bk-light,.bk-white {
    margin: 0 auto;
    background: var(--grey-light2);
    box-shadow: 0 2px 5px 0 rgb(0 0 0/16%),0 2px 10px 0 rgb(0 0 0/12%)
}

.bk-brand {
    background: var(--blue-ocean)
}

.bk-blue {
    background: var(--blue-dark)
}

.bk-alt {
    background: white
}

.bk-ghost {
    background: 0 0
}

.bk-img {
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.bk-fixed {
    background-attachment: fixed
}

.bk-summer + .panel-footer,
.bk-primary + .panel-footer,
.bk-success + .panel-footer,
.bk-warning + .panel-footer,
.bk-danger + .panel-footer,
.bk-info + .panel-footer,
.bk-dark + .panel-footer {
    font-style: italic;
}

/* Colori specifici */
.bk-summer + .panel-footer {
    background-color:var(--summer-footer);
}

.bk-primary + .panel-footer {
    background-color: var(--primary-footer);
}

.bk-success + .panel-footer {
    background-color: var(--green-success);
}

.bk-warning + .panel-footer {
    background-color: var(--orange-warning);
}

.bk-danger + .panel-footer {
    background-color: var(--red-danger);
}

.bk-info + .panel-footer {
    background-color: var(--blue-info);
}

.bk-dark + .panel-footer {
    background-color: var(--grey-footer);
}

.bk-coach + .panel-footer {
    background-color: var(--coach-footer);
}

.no-bg-image {
    background-image: none !important;
}


/*---------------------------------------------------------------------------------*/
/*                                      MAP                                        */
/*---------------------------------------------------------------------------------*/

#map {
   width: 100%;
   height: 70vh;
   max-height: 100%;
   z-index: 1;  
   border-radius: .45rem;
}


#indirizzoInput {
   position: absolute;
   top: 10px;
   right: 10px;
   z-index: 1000;
   padding: 10px;
   width: 300px;
   border-radius: 5px;
   border: 1px solid rgba(0, 0, 0, 0.2)!important;
   background: white;
   z-index: 2;
}

@media (max-width: 768px) {
    #indirizzoInput {
        width: 90% !important;
        text-align: center;
        top: 10px !important;
        left: 50% !important;
        transform: translateX(-50%);
        right: auto !important;
    }
}

.salvaBtn, .modificaBtn {
   color: white;
   border: none;
   padding: 8px 16px;
   font-size: 16px;
   border-radius: .45rem;
   cursor: pointer;
   transition: background-color 0.3s ease;
   width:100%
}

.salvaBtn {
    background-color: var(--red-strong)    
}

.modificaBtn { 
    background-color: var(--primary-color);   
}

#toolbarContainer {
   margin:20px 0px 30px 0px;
   padding:20px 20px 10px 20px;
} 

#toast {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--green-light);
    color: var(--green-dark);
    padding: 12px 25px;
    border-radius: .45rem;
    font-weight: bold;
    font-size: 15px;
    z-index: 9999;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.autocomplete-wrapper {
   position: relative;
   flex-grow: 1;
   }


.suggestions-box {
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   max-height: 250px;
   overflow-y: auto;
   background: white;
   border: 1px solid var(--grey-mid);
   border-radius: .35rem;
   box-shadow: 0 2px 6px rgba(0,0,0,0.2);
   z-index: 1000;
   display: none;
}

.suggestions-box div {
   padding: 5px 5px 5px 8px;
   cursor: pointer;
   font-size: 12px;
   border-bottom: 1px solid var(--grey-light2);
}
 
.suggestions-box div:last-child {
   border-bottom: none;
}

.suggestions-box div:hover {
   background-color: var(--grey-light2);
}



/*---------------------------------------------------------------------------------*/
/*                                   BODY CLASS                                    */
/*---------------------------------------------------------------------------------*/

body.public {
    color: var(--text-public);
    background: linear-gradient(
        to right,
        var(--gradient-left) 50%,
        var(--gradient-right) 50%
    ) padding-box;
}

body.public .container {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

body.public .titolo {
   
    background-color: var(--grey-light1);
    border-radius: .0rem !important;
    margin: 0px;
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
}

body.public .titolo p {
    color: var(--primary-color)!important;
    padding: 5px!important;
}
body.public .wrapper .content,
body.public .j-forms .content {
    padding: 25px 30px 25px!important;
}

body.public a {
    color: var(--primary-color);
}

body.public .titolo2 {
    margin: 15px 0 35px 0;
}

body.public .wrapper {
    margin: 0 auto;
    outline: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    max-width: 1080px;
    border-top:5px solid var(--primary-color);
    background: white;
    box-shadow: 0 2px 5px 0 rgb(0 0 0/16%),0 2px 10px 0 rgb(0 0 0/12%);
}

body.public .j-forms, body.public .wrapper {
    -webkit-border-radius: 0 0 5px 5px ;
    -moz-border-radius: 0 0 5px 5px ;
    -o-border-radius: 0 0 5px 5px ;
    border-radius: 0 0 5px 5px ;
}

body.public .wrapper h2 {
    color: var(--black-dark);
    font-size: 22px;
    padding-bottom: 15px
}

body.public .bottom p a,body.public .wrapper h2,body.public h2 {
    letter-spacing: 1px;
    text-transform: uppercase
}

body.public .bottom p a {
    font-size: 15px;
    text-decoration: underline;
    color: white;
    padding: 10px;
    letter-spacing: 2px;
}

body.public .bottom p a:hover{
    text-decoration: underline!important; 
    color: var(--grey-dark)!important}

body.public .bottom p a:active,body.public .bottom p a:hover,body.public .j-forms .footer p a:hover {
    color: var(--red)
}

body.public .bottom {
    background: var(--grey-dark);
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    border-radius: 0.25rem;
}

body.public .j-forms .footer { 
    padding: 20px 0 20px 0;
}

body.public .j-forms input[type=email], 
body.public .j-forms input[type=password], 
body.public .j-forms input[type=text], 
body.public .j-forms select {
  
    border: 1px solid var(--grey-mid);
    border-radius: .35rem;
}

body.public .j-forms input[type=email]:focus, 
body.public .j-forms input[type=password]:focus, 
body.public .j-forms input[type=text]:focus, 
body.public .j-forms select:focus {
   
   border: 1px solid var(--primary-color);
}


body.admin h1, body.admin .h1 {
    font-size: 30px!important;
    margin-top: 0px!important;
}

body.user .h1 {
    text-transform: uppercase; 
    margin-top: 6px;
    font-size: 20px;
    font-weight: 700;
}

body.user .h2 {
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
}

body.user .upper,
body.admin .upper
 {
    font-size: 14px;
}

body.user .panel .panel-footer {
    line-height: 22px;
    font-weight:800;
    letter-spacing: .05rem;
    font-size:12px!important;
}

body.user .dataTables_paginate a.paginate_button {
  padding: 10px 18px!important;
}

body.user .dataTables_paginate a.previous,
body.user .dataTables_paginate a.next {
  padding: 9px 18px!important;
}

body.user .j-forms .append-big-btn .file-button, .j-forms .prepend-big-btn .file-button {
   width: 130px;
}  

body.user div.dataTables_wrapper div.dataTables_paginate {
   margin: 15px 0;
  
}




/*---------------------------------------------------------------------------------*/
/*                                     PAGINATE                                    */
/*---------------------------------------------------------------------------------*/


.dataTables_paginate {
  display: flex;
  justify-content: flex-end; /* ⬅️ sposta i bottoni a destra */
  align-items: center;
  margin-top: 30px !important;
  user-select: none;
}

.dataTables_paginate a.paginate_button {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid var(--grey-border);
  background-color: var(--grey-light2);
  color: var(--grey-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.dataTables_paginate a.paginate_button:hover:not(.current):not(.disabled) {
  background-color: var(--grey-light1);
  border-color: var(--grey-mid);
  color: var(--black-light);
  cursor: pointer;
}

.dataTables_paginate a.paginate_button.current {
  background-color: var(--grey-light1);
  color: var(--black-dark);
  border-color: var(--grey-border);
  font-weight: bold;
  cursor: default;
}

.dataTables_paginate a.paginate_button.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.dataTables_paginate a.previous,
.dataTables_paginate a.next {
  padding: 10px 18px;
  font-size: 16px;
  line-height: 1;
  background-color: var(--grey-light2);
}

.dataTables_paginate a.previous {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.dataTables_paginate a.next {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.dataTables_paginate a.paginate_button {
  margin: 0;
  border-right: none;
}

.dataTables_paginate a.paginate_button:last-child {
  border-right: 1px solid var(--grey-border);
}


.pagination {
    font-size: 11px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 12px 16px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #98978b;
    background-color: #fbfbfb;
    border: 1px solid #dfd7ca;
    margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #8e8c84;
    background-color: #dfd7ca;
    border-color: #dfd7ca;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #8e8c84;
    background-color: #f1f1f1;
    border-color: #dfd7ca;
    cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #dfd7ca;
    background-color: #fbfbfb;
    border-color: #dfd7ca;
    cursor: not-allowed;
}



/*---------------------------------------------------------------------------------*/
/*                                      BUTTONS                                    */
/*---------------------------------------------------------------------------------*/


.btn {
    font-weight: 600!important;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    font-size: 14px;
    border-radius: .45rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 25px; 
    color:white;
    text-transform: uppercase;
    padding: 12px;
 /*   box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%), 0 2px 3px 0 rgb(0 0 0 / 10%) !important;
    -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%), 0 2px 3px 0 rgb(0 0 0 / 10%) !important;*/
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    -ms-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s;
    margin-top: 25px;
      -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%), 0 2px 3px 0 rgb(0 0 0 / 10%) !important;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%), 0 2px 3px 0 rgb(0 0 0 / 10%) !important;
}

.primary-btn {
    width: auto;
    font-weight:600!important;
    margin-top: 10px!important;
    position: relative;
    background-color: var(--primary-color);
    font-size: 14px;
    color: white;
    line-height: 42px!important;
    height: 42px!important;
    padding: 0px 16px!important;
    letter-spacing: .5px;
    cursor: pointer;
    outline: 0;
    border: 0;
    text-transform: uppercase;
    border-radius: .45rem;
    margin-bottom: 10px;
   /* box-shadow: 0 2px 3px 0 rgb(0 0 0/12%),0 2px 3px 0 rgb(0 0 0/10%)!important;
    -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0/12%),0 2px 3px 0 rgb(0 0 0/10%)!important;*/
      -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%), 0 2px 3px 0 rgb(0 0 0 / 10%) !important;
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%), 0 2px 3px 0 rgb(0 0 0 / 10%) !important;
}

.primary-btn.red {
    color:white!important;
    background-color: var(--red-strong) !important;
}

.primary-btn.summer {
    color:var(--primary-color)!important;
    background-color: var(--grey-light1);
    border: 1px solid var(--primary-color);
}


button.cf {
    font-size: 11px!important; 
    border: 1px solid var(--grey-steel);
    color: var(--grey-steel);
    cursor:pointer;
    border-radius: .25rem !important;
    line-height: 15px!important;
    background:white;
}


.genera-ricevuta-btn {
    font-weight:600!important;
    background-color: var(--primary-color);
    font-size: 10px;
    color: white;
    line-height: 25px;
    letter-spacing: .4px;
    cursor: pointer;
    outline: 0;
    border: 0;
    text-transform: uppercase;
    border-radius: .25rem;
    padding:0 12px;
    width: auto;
}

button.btn-default {
    background-color: var(--grey-cloud);
    color: black;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s;
    margin-top:0px!important
}

/*
button.btn-default:hover {
    filter: brightness(1.15);
    color: black
}*/


.btn i {
    position: relative;
    top: -2px
}

.btn.text-left,.ui-timepicker-div dl {
    text-align: left
}

.btn-brand {
    background: var(--blue-ocean);
    color: white
}

.btn-dark {
    background: var(--black-mid);
    color: white
}

.btn-red {
    background: var(--red);
    color: white
}

.btn-alt {
    background: var(--grey-light2);
    color: var(--black-mid)
}

.btn-social>:first-child {
    width: 42px;
    line-height: 46px
}

.btn-social {
    padding-left: 58px
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.428571429
}

.btn-circle.btn-lg,.btn-circle.btn-xl {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 18px;
    line-height: 1.33
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    font-size: 24px
}
.utenti, .rate, .ricevute, .config, .delete, .delete2 {
    width:100%; 
}

.delete2 {background-color:var(--grey-steel);}
.utenti {background-color:var(--blue-primary);}
.rate {background-color:var(--orange-soft);}
.ricevute {background-color:var(--blue-light);}
.config {background-color:var(--green);}


.ricevuta {
    background-color: var(--grey-steel)
}

.add {
    background: var(--green-material)!important
}

.update{
    background: var(--grey-dark)!important;
}

.active {
    background-color: var(--green-dark)
}

.unactive {
    background-color: var(--orange)
}

.view {
    background-color: var(--primary-color)
}

.delete {
    background-color: var(--red)
}

.delete_multiple_btn {
    background-color: var(--red)!important;
}

.export {
    padding: 10px 28px 10px 25px;
    background-color: var(--primary-color)
}



.btn-brand:hover,.btn-dark:hover, .btn-alt:hover {
    color: white;
    background: var(--blue-ocean)
}


button.cf:hover {
    background: var(--grey-dark);
    color:white
}


/*---------------------------------------------------------------------------------*/
/*                                      TABS                                       */
/*---------------------------------------------------------------------------------*/

.tabs {
     padding:0px 
}
    
.tabs .row {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    flex-wrap: nowrap; 
    }
    
.tabs .tab {
    flex: 1;
    text-align: center; 
    }
    
.tabs a {
    display: inline-block;
    padding: 15px 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--grey-dark);
    background-color: var(--grey-light1);
    border-bottom: 1px solid var(--grey-border);
    border-top: 1px solid var(--grey-border);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%; 
    text-align: center; 
    }
    
.tabs a.active {
    background-color: var(--primary-color)!important;  
    color: white!important;
    border-color: var(--primary-color);
    }
    
.tabs a:hover {
    background-color: var(--grey-cloud);
    color: var(--primary-color);
    }
    

/*---------------------------------------------------------------------------------*/
/*                                  ANIMATIONS                                     */
/*---------------------------------------------------------------------------------*/

@-webkit-keyframes animatetop {
    0% {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    0% {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@-webkit-keyframes animatetopHide {
    0% {
        top: 0;
        opacity: 1
    }

    to {
        top: -300px;
        opacity: 0
    }
}

@keyframes animatetopHide {
    0% {
        top: 0;
        opacity: 1
    }

    to {
        top: -300px;
        opacity: 0
    }
}

@-webkit-keyframes bgAnimatetopHide {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes bgAnimatetopHide {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes pop-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(.5)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes pop-in {
    0% {
        opacity: 0;
        -moz-transform: scale(.5)
    }

    to {
        opacity: 1;
        -moz-transform: scale(1)
    }
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(.5)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@-webkit-keyframes processing {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@-moz-keyframes processing {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@-ms-keyframes processing {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@-o-keyframes processing {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes processing {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@-webkit-keyframes popup-list-open {
    0% {
        -webkit-transform: translate(0,-10px);
        transform: translate(0,-10px)
    }

    to {
        -webkit-transform: translate(0,0);
        transform: translate(0,0)
    }
}

@-moz-keyframes popup-list-open {
    0% {
        -moz-transform: translate(0,-10px);
        transform: translate(0,-10px)
    }

    to {
        -moz-transform: translate(0,0);
        transform: translate(0,0)
    }
}

@-ms-keyframes popup-list-open {
    0% {
        -ms-transform: translate(0,-10px);
        transform: translate(0,-10px)
    }

    to {
        -ms-transform: translate(0,0);
        transform: translate(0,0)
    }
}

@-o-keyframes popup-list-open {
    0% {
        -o-transform: translate(0,-10px);
        transform: translate(0,-10px)
    }

    to {
        -o-transform: translate(0,0);
        transform: translate(0,0)
    }
}

@keyframes fancybox-rotate {
    to {
        transform: rotate(360deg)
    }
}

@keyframes bounce {
    0% {
        transform: translate3d(0,0,0) rotate(0deg)
    }

    25% {
        transform: translate3d(0,-185px,0) rotate(90deg)
    }

    50% {
        transform: translate3d(0,0,0) rotate(180deg)
    }

    75% {
        transform: translate3d(0,-185px,0) rotate(270deg)
    }

    to {
        transform: translate3d(0,0,0) rotate(360deg)
    }
}

@keyframes scale {
    0%,50%,to {
        transform: scaleX(1)
    }

    25%,75% {
        transform: scaleX(.7)
    }
}

@-webkit-keyframes bugfix {
    0%,to {
        padding: 0
    }
}

@keyframes lampeggia {
   0% {
      opacity: 1; 
      visibility: visible;
      box-shadow: 0 2px 3px 0 rgb(0 0 0 / 16%), 0 2px 3px 0 rgb(0 0 0 / 12%) !important;
   }
   50% {
      opacity: 0; 
      visibility: hidden; 
      box-shadow: none !important;
   }
   100% {
      opacity: 1; 
      visibility: visible;
      box-shadow: 0 2px 3px 0 rgb(0 0 0 / 16%), 0 2px 3px 0 rgb(0 0 0 / 12%) !important; 
   }
}
.blink {
   animation: lampeggia 2s infinite;
}



/*---------------------------------------------------------------------------------*/
/*                                      SIDEBAR                                       */
/*---------------------------------------------------------------------------------*/


.ts-sidebar {
    z-index: 0;
    box-shadow: 2px 1px 3px 1px rgb(0 0 0/16%),2px 2px 3px 1px rgb(0 0 0/16%)
}


.ts-sidebar::-webkit-scrollbar-track {
    background-color: transparent
}

.ts-sidebar::-webkit-scrollbar {
    width: 5px;
    background-color: transparent
}

.ts-sidebar::-webkit-scrollbar-thumb {
    background-color: var(--grey-muted)
}

.ts-sidebar {
    background: var(--black-mid);
    max-height: 0;
    transition: max-height .3s;
    overflow: hidden;
    position: fixed;
    width: 100%;
    bottom: 0;
    top: 60px;
    overflow-y: auto
}

.accordion input,.ts-sidebar .hidden-side {
    display: none
}

.ts-sidebar .ts-sidebar-search {
    width: 100%;
    background: var(--grey-dark);
    border: 0;
    padding: 10px 15px;
    color: white
}

.ts-sidebar-menu .ts-label {
    color: var(--grey-dark);
    font-weight: 700;
    padding: 8px 15px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
    margin-top: 10px
}

.ts-sidebar-menu a {
    display: block;
    text-decoration: none;
    padding: 12px 15px;
    color: var(--grey-muted);
    position: relative;
    transition: padding-left 0.3s ease;
}

.ts-sidebar-menu a:hover {
    background-color: var(--grey-dark);
    padding-left: 20px;
    text-decoration: none;
}

.ts-sidebar-menu a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.ts-sidebar-menu a:hover:before {
    width: 4px;
}

.ts-sidebar-menu li {
    position: relative;
    font-size:15px;
}

.ts-sidebar-menu li i {
    color: var(--grey-muted);
    margin-right: 10px;
    font-size: 17px !important;
}

.ts-sidebar-menu li ul {
    display: block;
    background: rgba(255,0,0,.12);
    background: rgba(0,0,0,.32);
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease
}

.menu-open,.ts-sidebar-menu .open>ul {
    max-height: 2000px
}

.ts-sidebar-menu .open>a {
    background: rgba(51,56,62,.35)
}

.ts-sidebar-menu>.open>a {
    background: var(--black-light);
    border-left: 3px solid var(--blue-ocean)
}

.ts-sidebar-menu .open>.more i {
    transform: rotate(180deg)
}

.more i {
    color: white;
    padding: 15px;
    transition: transform .3s
}

.more {
    float: right;
    min-width: 10%;
    cursor: pointer
}

.ts-main-content .content-wrapper {
    padding-top: 15px;
    margin-top: 60px
}

.accordion {
    margin: auto
}

.arrows section .box-title {
    padding-left: 44px;
    width: 100%
}

.arrows section .box-title:before {
    position: absolute;
    display: block;
    content: "›";
    font-size: 18pt;
    left: 20px;
    top: -2px;
    transition: transform .15s ease-in-out;
    color: rgba(0,0,0,.54)
}

input:checked+section.box .box-title:before {
    transform: rotate(90deg)
}


/*---------------------------------------------------------------------------------*/
/*                                CUSTOM CHECKBOX                                  */
/*---------------------------------------------------------------------------------*/

#checkboxes {
    border: 1px var(--grey-border) solid
}

#checkboxes label:hover {
    background-color: var(--blue-ocean)
}

.checkbox-cell {
    text-align: center; 
    vertical-align: middle; 
    height: 30px;
}

.custom-checkbox {
    width: 20px; 
    height: 20px; 
    cursor: pointer; 
    appearance: none; 
    border: 2px solid var(--grey-mid); 
    border-radius: 4px;
    outline: none;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s; 
}

.custom-checkbox:checked {
    background-color: rgb(34, 106, 178); 
    border-color: rgb(34, 106, 178); 
}

.custom-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px; 
    width: 4px; 
    height: 8px; 
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
    
.custom-checkbox:focus {
    outline: none; 
    box-shadow: 0 0 0 2px rgba(34, 106, 178, 0.5); 
}




/*---------------------------------------------------------------------------------*/
/*                                    DATATABLE                                    */
/*---------------------------------------------------------------------------------*/



table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 13px;
    background-color: transparent;
}
.table {
  /*  width: 100%;*/
    max-width: 100%;
    margin-bottom: 20px;

}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 13px;
    line-height: 1.42857143;
    vertical-align: middle;
    border-top: 1px solid #dfd7ca;
}
.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #dfd7ca;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}
.table > tbody + tbody {
    border-top: 2px solid #dfd7ca;
}
.table .table {
    background-color: #ffffff;
}

.table-hover > tbody > tr:hover {
    background-color: #fbfbfb;
}
table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #fbfbfb;
}


table.dataTable {
    clear: both;
    margin-top: 6px!important;
    margin-bottom: 6px!important;
    max-width: none!important
}

table.dataTable td,table.dataTable th {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    text-align: center
}

table.dataTable.nowrap td,table.dataTable.nowrap th {
    white-space: nowrap
}

div.dataTables_wrapper div.dataTables_length select {
    width: 75px;
    display: inline-block
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: right
}

div.dataTables_wrapper div.dataTables_filter label,div.dataTables_wrapper div.dataTables_length label {
    font-weight: 400;
    white-space: nowrap;
    text-align: left
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: .5em;
    display: inline-block;
    width: auto
}

div.dataTables_wrapper div.dataTables_info {
    padding-top: 8px;
    white-space: nowrap
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin: 2px 0;
    white-space: nowrap
}

div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0
}

table.dataTable thead>tr>td.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc {
    padding-right: 20px;
    text-align: center
}

table.dataTable thead>tr>td:active,table.dataTable thead>tr>th:active {
    outline: 0
}

table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative
}

table.dataTable thead .sorting:after {
    position: absolute;
    bottom: 12px;
    right: 1px;
    display: block;
}

table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_desc_disabled:after {
    position: absolute;
    bottom: 12px;
    right: 8px;
    display: block;
    opacity: .5
}

table.dataTable thead .sorting:after {
    opacity: .2;
    content: "▲▼"
}

table.dataTable thead .sorting_asc:after {
    content: "▲"
}

table.dataTable thead .sorting_desc:after {
    content: "▼"
}

table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after {
    color: var(--grey-light2)
}

div.dataTables_scrollBody table {
    border-top: none;
    margin-top: 0!important;
    margin-bottom: 0!important
}

div.dataTables_scrollBody table tbody tr:first-child td,div.dataTables_scrollBody table tbody tr:first-child th {
    border-top: none
}

div.dataTables_scrollFoot table {
    margin-top: 0!important;
    border-top: none
}

table.dataTable.table-condensed>thead>tr>th {
    padding-right: 20px
}

table.dataTable.table-condensed .sorting:after,table.dataTable.table-condensed .sorting_asc:after,table.dataTable.table-condensed .sorting_desc:after {
    top: 6px;
    right: 6px
}

table.table-bordered.dataTable {
    border-collapse: separate!important
}

table.table-bordered.dataTable td,table.table-bordered.dataTable th {
    border-left-width: 0
}

table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable th:last-child {
    border-right-width: 0
}

div.dataTables_scrollHead table.dataTable {
    margin-bottom: 0!important;
}

div.dataTables_scrollHead table.table-bordered,table.table-bordered.dataTable tbody td,table.table-bordered.dataTable tbody th {
    border-bottom-width: 0
}

div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child {
    padding-left: 0
}

div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child {
    padding-right: 0
}


a.dt-button:first-child,button.dt-button:first-child,div.dt-button:first-child,input.dt-button:first-child {
    margin-left: 0
}


a.dt-button,button.dt-button,div.dt-button,input.dt-button {
    display: inline-block;
    font-weight: 600!important;
    padding: 7px 25px;
    margin: 3px;
    font-size: 13px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: .35rem;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 3px 0 rgb(0 0 0/12%),0 2px 3px 0 rgb(0 0 0/10%)!important;
    -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0/12%),0 2px 3px 0 rgb(0 0 0/10%)!important;
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    -ms-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s;
}

a.dt-button:active:not(.disabled),button.dt-button:active:not(.disabled),div.dt-button:active:not(.disabled),input.dt-button:active:not(.disabled) {
    background-color: rgba(0,0,0,.1);
    box-shadow: inset 1px 1px 3px var(--grey-muted)
}

a.dt-button:active:not(.disabled):hover:not(.disabled),button.dt-button:active:not(.disabled):hover:not(.disabled),div.dt-button:active:not(.disabled):hover:not(.disabled),input.dt-button:active:not(.disabled):hover:not(.disabled) {
    box-shadow: inset 1px 1px 3px var(--grey-muted);
    filter: brightness(1.15);
}

a.dt-button:hover,button.dt-button:hover,div.dt-button:hover,input.dt-button:hover {
    text-decoration: none
}

a.dt-button:hover:not(.disabled),button.dt-button:hover:not(.disabled),div.dt-button:hover:not(.disabled),input.dt-button:hover:not(.disabled) {
filter: brightness(1.15);
    color: white
}

a.dt-button:focus:not(.disabled),button.dt-button:focus:not(.disabled),div.dt-button:focus:not(.disabled),input.dt-button:focus:not(.disabled) {
    border: 1px solid var(--blue-ocean);
    text-shadow: 0 1px 0#c4def1;
    outline: 0;
    background-color: var(--blue-light)
}

div.dt-button-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 2001
}

div.dt-button-collection {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    margin-top: 3px;
    margin-bottom: 3px;
    padding: 4px 4px 2px;
    border: 1px solid var(--grey-mid);
    border: 1px solid rgba(0,0,0,.4);
    background-color: white;
    overflow: hidden;
    z-index: 2002;
    border-radius: .35rem;
    box-shadow: 3px 4px 10px 1px rgba(0,0,0,.3);
    box-sizing: border-box
}

div.dt-button-collection a.dt-button,div.dt-button-collection button.dt-button,div.dt-button-collection div.dt-button {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    float: none;
    margin: 4px 0 2px
}

div.dt-button-collection a.dt-button:first-child,div.dt-button-collection button.dt-button:first-child,div.dt-button-collection div.dt-button:first-child {
    margin-top: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

div.dt-button-collection a.dt-button:last-child,div.dt-button-collection button.dt-button:last-child,div.dt-button-collection div.dt-button:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px
}

div.dt-button-collection div.dt-btn-split-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
    margin: 4px 0 2px
}

div.dt-button-collection div.dt-btn-split-wrapper button.dt-button {
    margin: 0;
    display: inline-block;
    width: 0;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 50px;
    border-radius: 0
}

div.dt-button-collection div.dt-btn-split-wrapper button.dt-btn-split-drop {
    min-width: 20px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 0
}

div.dt-button-collection div.dt-btn-split-wrapper:first-child {
    margin-top: 0
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,div.dt-button-collection div.dt-btn-split-wrapper:first-child button.dt-button {
    border-top-left-radius: 3px
}

div.dt-button-collection div.dt-btn-split-wrapper:first-child button.dt-btn-split-drop {
    border-top-right-radius: 3px
}

div.dt-button-collection div.dt-btn-split-wrapper:last-child button.dt-button {
    border-bottom-left-radius: 3px
}

div.dt-button-collection div.dt-btn-split-wrapper:last-child button.dt-btn-split-drop {
    border-bottom-right-radius: 3px
}

div.dt-button-collection div.dt-btn-split-wrapper.active:not(.disabled) button.dt-button,div.dt-button-collection div.dt-btn-split-wrapper:active:not(.disabled) button.dt-button {
    background-color: var(--grey-border);
    box-shadow: inset 0 0 4px var(--grey-dark)
}

div.dt-button-collection div.dt-btn-split-wrapper.active:not(.disabled) button.dt-btn-split-drop,div.dt-button-collection div.dt-btn-split-wrapper:active:not(.disabled) button.dt-btn-split-drop {
    box-shadow: none
}

div.dt-button-collection.fixed .dt-button:first-child {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

div.dt-button-collection.fixed .dt-button:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

div.dt-button-collection.fixed {
    position: fixed;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -75px;
    border-radius: .35rem;
    background-color: white
}

div.dt-button-collection.fixed.two-column {
    margin-left: -200px
}

div.dt-button-collection.fixed.three-column {
    margin-left: -225px
}

div.dt-button-collection.fixed.four-column {
    margin-left: -300px
}

div.dt-button-collection.fixed.columns {
    margin-left: -409px
}


div.dt-button-collection.fixed>:last-child {
    max-height: 100vh;
    overflow: auto
}

div.dt-button-collection.four-column>:last-child,div.dt-button-collection.three-column>:last-child,div.dt-button-collection.two-column>:last-child {
    display: block!important;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    -ms-column-gap: 8px;
    -o-column-gap: 8px;
    column-gap: 8px
}

div.dt-button-collection.four-column>:last-child>*,div.dt-button-collection.three-column>:last-child>*,div.dt-button-collection.two-column>:last-child>* {
    -webkit-column-break-inside: avoid;
    break-inside: avoid
}

div.dt-button-collection.two-column {
    width: 400px
}

div.dt-button-collection.two-column>:last-child {
    padding-bottom: 1px;
    column-count: 2
}

div.dt-button-collection.three-column {
    width: 450px
}

div.dt-button-collection.three-column>:last-child {
    padding-bottom: 1px;
    column-count: 3
}

div.dt-button-collection.four-column {
    width: 600px
}

div.dt-button-collection.four-column>:last-child {
    padding-bottom: 1px;
    column-count: 4
}

div.dataTables_wrapper div.dataTables_filter input,div.dt-button-collection .dt-button {
    border-radius: 0
}

div.dt-button-collection.columns {
    width: auto
}

div.dt-button-collection.columns>:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    width: 818px;
    padding-bottom: 1px
}

div.dt-button-collection.columns>:last-child .dt-button {
    min-width: 200px;
    flex: 0 1;
    margin: 0
}

div.dt-button-collection.columns.dtb-b1>:last-child,div.dt-button-collection.columns.dtb-b2>:last-child,div.dt-button-collection.columns.dtb-b3>:last-child {
    justify-content: space-between
}

div.dt-button-collection.columns.dtb-b3 .dt-button {
    flex: 1 1 32%
}

div.dt-button-collection.columns.dtb-b2 .dt-button {
    flex: 1 1 48%
}

div.dt-button-collection.columns.dtb-b1 .dt-button {
    flex: 1 1 100%
}

div.dt-button-info {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    margin-top: -100px;
    margin-left: -200px;
    background-color: white;
    border: 1px solid var(--primary-color)!important;
    box-shadow: 3px 4px 10px 1px rgba(0,0,0,.3);
    border-radius: .35rem;
    text-align: center;
    z-index: 21
}

div.dt-button-info h2 {
    padding: .5em;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    border-bottom: 1px solid var(--grey-border);
    background-color: var(--primary-color)!important;
    color: white
}

div.dt-button-info>div {
    padding: .9em
}

div.dt-button-collection a.dt-button.active:not(.disabled),div.dt-button-collection a.dt-button:active:not(.disabled),div.dt-button-collection button.dt-button.active:not(.disabled),div.dt-button-collection button.dt-button:active:not(.disabled),div.dt-button-collection div.dt-button.active:not(.disabled),div.dt-button-collection div.dt-button:active:not(.disabled) {
    box-shadow: none!important;
    background-color: white;
    color: var(--black-dark)
}



/*---------------------------------------------------------------------------------*/
/*                                       PANEL                                     */
/*---------------------------------------------------------------------------------*/

.panel {
    overflow: hidden;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 2px 3px 0 rgb(0 0 0/12%),0 2px 3px 0 rgb(0 0 0/10%)!important;
    -webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0/12%),0 2px 3px 0 rgb(0 0 0/10%)!important;
    border-radius: .45rem
}

.panel .panel-footer {
    font-size: 13px!important;
    line-height: 24px;
    text-transform: uppercase;
}

.panel-footer {
    padding: 10px 15px;
    background-color: white;
    border-top: 1px solid var(--neutral-light);
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel-default{ 
    position: relative;
    overflow: hidden;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px
}

.panel-body {
    padding: 15px;
}

.panel-body .icon-bg {
    position: absolute;
    left: -55px;
    top: 48%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.10);
    pointer-events: none;
    font-size: 10vw !important; 
    -webkit-mask-image: linear-gradient(to right, black 60%, rgba(0,0,0,0.5) 78%, transparent 100%);
    mask-image: linear-gradient(to right, black 60%, rgba(0,0,0,0.5) 78%, transparent 100%);
}

.panel-default > .panel-heading {
    background-color: #FFF;
    border-color: #dfd7ca;
}

.panel-heading {
    color: var(--primary-color)!important;
    padding: 15px!important;
    text-align:center!important;
    font-weight:600!important;
    border-bottom: 1px solid transparent;
    border-top-right-radius: .45rem;
    border-top-left-radius: .45rem;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
}

.panel-heading img {
    max-width: 50%
}

.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a {
    color: inherit
}

.panel>.list-group,.panel>.panel-collapse>.list-group {
    margin-bottom: 0
}

.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.panel-heading+.list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group+.panel-footer {
    border-top-width: 0
}

.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table {
    margin-bottom: 0
}

.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption {
    padding-left: 15px;
    padding-right: 15px
}

.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body,.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body {
    border-top: 1px solid var(--neutral-light)
}

.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th {
    border-top: 0
}

.panel>.table-bordered,.panel>.table-responsive>.table-bordered {
    border: 0
}

.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child {
    border-left: 0
}

.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child {
    border-right: 0
}

.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th {
    border-bottom: 0
}

.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
    border-bottom: 0
}

.panel>.table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel+.panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid var(--neutral-light)
}

.panel-default {
    border-color: var(--neutral-light)
}

.panel-default .panel-footer {
    color: white!important;
    border-top: 1px solid rgba(0,0,0,.125)
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--neutral-light)
}

.panel-default>.panel-heading .badge {
    color: var(--grey-light1);
    background-color: var(--black-light)
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--neutral-light)
}

.panel-primary {
    border-color: var(--blue-special)
}

.panel-primary>.panel-heading {
    color: white;
    background-color: var(--blue-special);
    border-color: var(--blue-special)
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--blue-special)
}

.panel-primary>.panel-heading .badge {
    color: var(--blue-special);
    background-color: white
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--blue-special)
}

.panel-success,.panel-success>.panel-heading {
    border-color: var(--green-light)
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--green-light)
}

.panel-success>.panel-heading,.panel-success>.panel-heading .badge {
    color: var(--green);
    background-color: var(--green)
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--green-light)
}

.panel-info,.panel-info>.panel-heading {
    border-color: var(--blue-soft)
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--blue-soft)
}

.panel-info>.panel-heading,.panel-info>.panel-heading .badge {
    color: var(--blue-light);
    background-color: var(--blue-light)
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--blue-soft)
}

.panel-warning,.panel-warning>.panel-heading {
    border-color: var(--red-light)
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--red-light)
}

.panel-warning>.panel-heading,.panel-warning>.panel-heading .badge {
    color: var(--orange-soft);
    background-color: var(--orange-soft)
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--red-light)
}

.panel-danger,.panel-danger>.panel-heading {
    border-color: var(--red-light)
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--red-light)
}

.panel-danger>.panel-heading,.panel-danger>.panel-heading .badge {
    color: var(--red);
    background-color: var(--red)
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--red-light)
}



/*---------------------------------------------------------------------------------*/
/*                                    J-FORM                                       */
/*---------------------------------------------------------------------------------*/

.j-forms {
    background-color: white;
    box-sizing: border-box;
    color: rgba(0,0,0,.54);
    line-height: 1
}

.j-forms,.j-forms .input,.j-forms .unit {
    position: relative
}

.j-forms .unit {
    margin-bottom: 25px
}

.j-forms .link {
    border-bottom: 1px solid var(--blue-light);
    color: var(--primary-color);
    font-size: 14px;
    line-height: inherit;
    text-decoration: none;
    background: white;
    border-radius: .35rem!important
}

.j-forms .mod {
    border: 1px solid var(--grey-border);
    color: var(--grey-muted);
    font-size: 14px;
    line-height: inherit;
    text-decoration: none;
    background: white;
    border-radius: .35rem!important;
    padding: 15px 17px 15px 10px;
    cursor:pointer;
    margin-left:7px;
}
.j-forms .link:hover {
    border-bottom: none
}

.j-forms .inline-group {
    display: inline-block
}

.j-forms .hidden,.j-forms .token {
    display: none
}

.j-forms input[type=email]:read-only,.j-forms input[type=text]:read-only {
    background-color: var(--grey-light2)!important;
    border: 1px solid var(--grey-border);
    border-radius: .35rem;
    color:var(--grey-muted)
}

.j-forms input[type=search]::-webkit-search-cancel-button,.j-forms input[type=search]::-webkit-search-decoration,.j-forms input[type=search]::-webkit-search-results-button,.j-forms input[type=search]::-webkit-search-results-decoration {
    display: none
}

.j-forms input[type=button],.j-forms input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.j-forms input[type=button],.j-forms input[type=search],.j-forms input[type=submit],.j-forms select {
    -webkit-tap-highlight-color: transparent;
}

.wrapper .content,
.j-forms .content {
    padding: 5px 25px 0
}

.j-forms .content:after,.popup-list:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden
}

.j-forms .footer {
    font-size: 15px;
    text-align: center
}

.footer p {
    text-align: center;
    font-size: 14px;
    padding: 2em 0;
    color: var(--grey-dark);
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1.8;    
}

.footer p span {
    font-style: italic;
    font-size: 12px!important;
    letter-spacing: 2px;
}

.footer a {
    color: var(--blue-ocean)
}

.footer a:active,.footer a:hover {
    color: var(--black-dark)
}

.j-forms .footer {
    display: block;
    padding: 20px 0 35px!important;
    color: white;
    letter-spacing: 1px;
}

.j-forms .footer p,.j-forms .footer p a {
    font-size: 15px;
    letter-spacing: 1px;
    color: white;
    padding: 10px
}

.j-forms .footer p a {
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: underline
}

.j-forms .divider,.j-forms .divider-text {
    border-top: 1px solid var(--grey-muted);
    height: 0
}

.j-forms .divider-text {
    text-align: center
}

.j-forms .divider-text span {
    border: 1px solid var(--grey-muted);
    background-color: white;
    color: var(--grey-dark);
    font-size: 16px;
    padding: 2px 15px;
    position: relative;
    top: -9px;
    white-space: nowrap
}

.j-forms .gap-top-20 {
    margin-top: 20px
}

.j-forms .gap-top-45 {
    margin-top: 45px
}

.j-forms .gap-bottom-45 {
    margin-bottom: 45px
}

.j-forms .gap-bottom-25 {
    margin-bottom: 25px
}

.j-forms label {
    display: block;
    color: inherit;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0
}

.j-forms .label {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    text-transform: uppercase
}

.j-forms .label-center {
    height: 48px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 0
}

.j-forms .j-row>.label {
    padding-left: 10px
}

.j-forms .checkbox,.j-forms .checkbox-toggle,.j-forms .radio,.j-forms .radio-toggle {
    color: rgba(0,0,0,.87);
    cursor: pointer;
    font-size: 15px;
    height: 15px;
    margin-bottom: 4px;
    position: relative;
    line-height: 20px
}

.j-forms .checkbox,.j-forms .inline-group .checkbox,.j-forms .inline-group .radio,.j-forms .radio {
    padding: 9px 0 8px 32px
}

.j-forms .checkbox-toggle,.j-forms .inline-group .checkbox-toggle,.j-forms .inline-group .radio-toggle,.j-forms .radio-toggle {
    padding: 9px 0 8px 58px
}

.j-forms .checkbox-toggle:last-child,.j-forms .checkbox:last-child,.j-forms .radio-toggle:last-child,.j-forms .radio:last-child {
    margin-bottom: 0
}

.j-forms .inline-group .checkbox,.j-forms .inline-group .checkbox-toggle,.j-forms .inline-group .radio,.j-forms .inline-group .radio-toggle {
    display: inline-block;
    margin-right: 25px
}

.j-forms .checkbox input,.j-forms .checkbox-toggle input,.j-forms .radio input,.j-forms .radio-toggle input {
    position: absolute;
    left: -9999px
}

.j-forms .checkbox i,.j-forms .checkbox-toggle i,.j-forms .radio i,.j-forms .radio-toggle i {
    background-color: white;
    border: 2px solid rgba(0,0,0,.26);
    display: block;
    height: 18px;
    left: 0;
    outline: 0;
    position: absolute;
    top: 7px;
    -webkit-transition: border-color .2s;
    -moz-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    transition: border-color .2s
}

.j-forms .checkbox i,.j-forms .radio i {
    width: 18px
}

.j-forms .checkbox-toggle i,.j-forms .radio-toggle i {
    width: 44px
}

.j-forms .checkbox i,.j-forms .checkbox-toggle i {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
}

.j-forms .radio i,.j-forms .radio i:after,.j-forms .radio-toggle i:before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%
}

.j-forms .radio-toggle i {
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -o-border-radius: 13px;
    border-radius: 13px
}

.j-forms .checkbox-toggle i:before {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px
}

.j-forms .radio i:after {
    background-color: rgba(34,106,178,.9);
    content: "";
    height: 8px;
    top: 5px;
    left: 5px;
    opacity: 0;
    position: absolute;
    width: 8px
}

.j-forms .checkbox i:after {
    border-width: 0 0 3px 3px;
    border-bottom: solid var(--primary-color);
    border-left: solid var(--primary-color);
    content: "";
    height: 5px;
    top: 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 3px;
    opacity: 0;
    position: absolute;
    width: 10px
}

.j-forms .checkbox input:checked+i:after,.j-forms .radio input:checked+i:after {
    opacity: 1
}

.j-forms .checkbox-toggle i:before,.j-forms .radio-toggle i:before {
    border: 0;
    background-color: var(--primary-color);
    content: "";
    display: block;
    height: 14px;
    left: 2px;
    position: absolute;
    top: 2px;
    width: 14px
}

.j-forms .checkbox-toggle input:checked+i:before,.j-forms .radio-toggle input:checked+i:before {
    left: 28px
}

.j-forms .checkbox-toggle i:after,.j-forms .checkbox-toggle input:checked+i:after,.j-forms .radio-toggle i:after,.j-forms .radio-toggle input:checked+i:after {
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 10px;
    position: absolute;
    top: 4px
}

.j-forms .checkbox-toggle i:after,.j-forms .radio-toggle i:after {
    content: "NO";
    left: 22px
}

.j-forms .checkbox-toggle input:checked+i:after,.j-forms .radio-toggle input:checked+i:after {
    content: "SI";
    left: 6px
}

.j-forms .checkbox-toggle:hover i,.j-forms .checkbox:hover i,.j-forms .radio-toggle:hover i,.j-forms .radio:hover i {
    border: 2px solid rgba(34,106,178,.6)
}

.j-forms .checkbox input:checked+i,.j-forms .radio input:checked+i {
    color: rgba(34,106,178,.6)
}

.j-forms .checkbox-toggle input:checked+i,.j-forms .radio-toggle input:checked+i {
    background-color: var(--blue-soft)
}

.j-forms .select,.j-forms .widget {
    position: relative
}

.j-forms .widget .addon,.j-forms .widget .addon-btn {
    background: var(--grey-border);
    border: 0;
    color: rgba(0,0,0,.56);
    display: block;
    font: 16px"Open Sans",Helvetica,Arial,sans-serif;
    height: 48px;
    line-height: 48px;
    padding: 0;
    position: absolute;
    outline: 0;
    overflow: hidden;
    text-align: center;
    top: 0;
    z-index: 5
}

.j-forms .widget .addon-btn,.j-forms .widget .addon-btn i {
    cursor: pointer;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.j-forms .widget .addon-btn:focus,.j-forms .widget .addon-btn:hover {
    background-color: var(--grey-border);
    color: rgba(0,0,0,.87)
}

.j-forms .widget .addon-btn:focus i,.j-forms .widget .addon-btn:hover i {
    color: rgba(0,0,0,.61)
}

.j-forms .widget .adn-left {
    left: 0
}

.j-forms .widget .adn-right {
    right: 0
}

.j-forms .widget .addon i,.j-forms .widget .addon-btn i {
    color: rgba(0,0,0,.34);
    font-size: 17px;
    z-index: 2
}

.j-forms .widget .adn-50 {
    width: 50px
}

.j-forms .widget .adn-130 {
    width: 130px
}

.j-forms .widget.right-50 .input {
    padding-right: 50px
}

.j-forms .widget.left-50 .input {
    padding-left: 50px
}

.j-forms .widget.right-130 .input {
    padding-right: 130px
}

.j-forms .widget.left-130 .input {
    padding-left: 130px
}

.j-forms .widget .adn-left,.j-forms .widget.right-130 .input input,.j-forms .widget.right-50 .input input {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px
}

.j-forms .widget .adn-right,.j-forms .widget.left-130 .input input,.j-forms .widget.left-50 .input input {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -o-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0
}

.j-forms .widget.left-130.right-130 .input input,.j-forms .widget.left-130.right-50 .input input,.j-forms .widget.left-50.right-130 .input input,.j-forms .widget.left-50.right-50 .input input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.j-forms input[type=email],.j-forms input[type=password],.j-forms input[type=search],.j-forms input[type=text],.j-forms input[type=url],.j-forms textarea, .j-forms input[type=number] {
    padding: 10px 15px
}

.j-forms input[type=date], .j-forms input[type=email],.j-forms input[type=password],.j-forms input[type=search],.j-forms input[type=text],.j-forms input[type=url],.j-forms select,.j-forms textarea, .j-forms input[type=number] {
    background: white;
    border: 0;
    border-bottom: 1px solid var(--grey-muted);
    color: rgba(0,0,0,.87);
    display: block;
    font-size: 14px;
    height: 48px;
    width: 100%;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.j-forms input[type=email]:hover,.j-forms input[type=password]:hover,.j-forms input[type=search]:hover,.j-forms input[type=text]:hover,.j-forms input[type=url]:hover,.j-forms select:hover,.j-forms textarea:hover, .j-forms input[type=number]:hover {
    border-bottom: 1px solid var(--primary-color)
}

.j-forms input[readonly] {
  pointer-events: none;
}

.j-forms .input textarea {
    overflow: auto;
    resize: vertical
}

.j-forms .input textarea:focus {
    height: 50px
}

.j-forms input::-webkit-input-placeholder,.j-forms textarea::-webkit-input-placeholder {
    color: rgba(0,0,0,.54)
}

.j-forms input::-moz-placeholder,.j-forms textarea::-moz-placeholder {
    color: rgba(0,0,0,.54)
}

.j-forms input:-moz-placeholder,.j-forms textarea:-moz-placeholder {
    color: rgba(0,0,0,.54)
}

.j-forms input:-ms-input-placeholder,.j-forms textarea:-ms-input-placeholder {
    color: rgba(0,0,0,.54)
}

.j-forms input:focus::-webkit-input-placeholder,.j-forms textarea:focus::-webkit-input-placeholder {
    color: rgba(0,0,0,.36)
}

.j-forms input:focus::-moz-placeholder,.j-forms textarea:focus::-moz-placeholder {
    color: rgba(0,0,0,.36)
}

.j-forms input:focus:-moz-placeholder,.j-forms textarea:focus:-moz-placeholder {
    color: rgba(0,0,0,.36)
}

.j-forms input:focus:-ms-input-placeholder,.j-forms textarea:focus:-ms-input-placeholder {
    color: rgba(0,0,0,.36)
}

.j-forms select {
    padding: 10px 15px 10px 13px
}

.j-forms .multiple-select select {
    height: auto
}

.j-forms .select i {
    height: 18px;
    position: absolute;
    pointer-events: none;
    top: 14px;
    right: 14px;
    width: 14px
}

.j-forms .select i:after,.j-forms .select i:before {
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
    position: absolute;
    right: 3px
}

.j-forms .select i:after {
    border-top: 6px solid rgba(0,0,0,.4);
    bottom: 1px
}

.j-forms .select i:before {
    border-bottom: 6px solid rgba(0,0,0,.4);
    top: 3px
}

.j-forms .icon-left,.j-forms .icon-right {
    color: var(--black-mid);
    font-size: 17px;
    height: 38px;
    line-height: 38px!important;
    opacity: .6;
    position: absolute;
    text-align: center;
    top: 5px;
    width: 42px;
    z-index: 2
}

.j-forms .icon-left {
    left: 3px
}

.j-forms .icon-right {
    border-left: 1px solid rgba(0,0,0,.54);
    right: 3px
}

.j-forms .icon-left~input,.j-forms .icon-left~textarea {
    padding-left: 44px
}

.j-forms .icon-right~input,.j-forms .icon-right~textarea {
    padding-right: 58px
}

.j-forms .file-button input {
    bottom: -1px;
    font-size: 34px;
    opacity: 0;
    position: absolute;
    width: 108px;
    z-index: 0
}

.j-forms .prepend-big-btn .file-button input,.j-forms .prepend-small-btn .file-button input {
    left: 0
}

.j-forms .append-big-btn .file-button input,.j-forms .append-small-btn .file-button input {
    right: 0
}

.j-forms .append-small-btn .file-button,.j-forms .prepend-small-btn .file-button {
    width: 64px
}

.j-forms .append-big-btn .file-button,.j-forms .prepend-big-btn .file-button {
    width: 106px
}

.j-forms .prepend-big-btn .file-button,.j-forms .prepend-small-btn .file-button {
    left: 4px
}

.j-forms .append-big-btn .file-button,.j-forms .append-small-btn .file-button {
    right: 4px
}

.j-forms .append-big-btn .file-button,.j-forms .append-small-btn .file-button,.j-forms .prepend-big-btn .file-button,.j-forms .prepend-small-btn .file-button {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px
}

.j-forms .prepend-big-btn input[type=text] {
    padding-left: 123px
}

.j-forms .append-big-btn input[type=text] {
    padding-right: 123px
}

.j-forms .prepend-small-btn input[type=text] {
    padding-left: 81px
}

.j-forms .append-small-btn input[type=text] {
    padding-right: 81px
}

.j-forms .input input[type=file] {
    cursor: pointer
}


.j-forms .content .primary-btn,.j-forms .content .secondary-btn,.j-forms .error-message ul,.j-forms .info-message ul,.j-forms .success-message ul,.j-forms .warning-message ul,div.table-responsive>div.dataTables_wrapper>div.row {
    margin: 0
}

.j-forms .file-button {
    color: white;
    display: block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    outline: 0;
    overflow: hidden;
    position: absolute;
    text-align: center;
    top: 4px;
    z-index: 1;
    border-radius: .45rem!important
}

.j-forms .file-button,.j-forms .primary-btn,.j-forms .secondary-btn {
    
    background: var(--primary-color);
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    -ms-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s
}

.j-forms .primary-btn:hover.processing {
    background: var(--blue-dark);
    cursor: wait
}

.j-forms .file-button:hover+input {
    border: 2px solid rgba(0,52,103,.6)
}

.j-forms .secondary-btn,.j-forms .secondary-btn:active,.j-forms .secondary-btn:hover {
    opacity: .5
}

.j-forms .primary-btn.processing:before {
    background: rgba(255,255,255,.4);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: processing 3s ease-in-out infinite;
    -moz-animation: processing 3s ease-in-out infinite;
    -ms-animation: processing 3s ease-in-out infinite;
    -o-animation: processing 3s ease-in-out infinite;
    animation: processing 3s ease-in-out infinite
}

.j-forms .tooltip,.j-forms .tooltip-image {
    background-color: var(--primary-color);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    display: block;
    left: -9999px;
    opacity: 0;
    position: absolute;
    z-index: 20px
}

.j-forms .tooltip {
    color: white;
    font: 600 13px"Open Sans",Helvetica,Arial,sans-serif;
    line-height: 20px;
    padding: 5px 10px
}

.j-forms .tooltip-image {
    padding: 2px 2px 1px
}

.j-forms .input input:focus+.tooltip,.j-forms .input input:focus+.tooltip-image,.j-forms .input textarea:focus+.tooltip,.j-forms .input textarea:focus+.tooltip-image,.j-forms .select select:focus+.tooltip,.j-forms .select select:focus+.tooltip-image {
    opacity: 1;
    z-index: 5
}

.j-forms .tooltip-left-top,.j-forms .tooltip-right-top {
    bottom: 100%;
    margin-bottom: 8px
}

.j-forms .tooltip-left-top:before {
    border-color: var(--primary-color) transparent;
    border-style: solid;
    border-width: 8px 7px 0;
    bottom: -6px;
    content: "";
    left: 16px;
    position: absolute
}

.j-forms .input input:focus+.tooltip-left-top,.j-forms .input textarea:focus+.tooltip-left-top,.j-forms .select select:focus+.tooltip-left-top {
    left: 0;
    right: auto
}

.j-forms .tooltip-right-top:before {
    border-color: var(--primary-color) transparent;
    border-style: solid;
    border-width: 8px 7px 0;
    bottom: -6px;
    content: "";
    position: absolute;
    right: 16px
}

.j-forms .input input:focus+.tooltip-right-top,.j-forms .input textarea:focus+.tooltip-right-top,.j-forms .select select:focus+.tooltip-right-top {
    left: auto;
    right: 0
}

.j-forms .tooltip-left-bottom,.j-forms .tooltip-right-bottom {
    margin-top: 8px;
    top: 100%
}

.j-forms .tooltip-left-bottom:before {
    border-color: var(--primary-color) transparent;
    border-style: solid;
    border-width: 0 7px 8px;
    top: -6px;
    content: "";
    left: 16px;
    position: absolute
}

.j-forms .input input:focus+.tooltip-left-bottom,.j-forms .input textarea:focus+.tooltip-left-bottom,.j-forms .select select:focus+.tooltip-left-bottom {
    left: 0;
    right: auto
}

.j-forms .tooltip-right-bottom:before {
    border-color: var(--primary-color) transparent;
    border-style: solid;
    border-width: 0 7px 8px;
    top: -6px;
    content: "";
    right: 16px;
    position: absolute
}

.j-forms .input input:focus+.tooltip-right-bottom,.j-forms .input textarea:focus+.tooltip-right-bottom,.j-forms .select select:focus+.tooltip-right-bottom {
    left: auto;
    right: 0
}

.j-forms .tooltip-right-side {
    margin-left: 8px;
    top: 8px;
    white-space: nowrap
}

.j-forms .tooltip-right-side:before {
    border-color: transparent var(--primary-color);
    border-style: solid;
    border-width: 7px 8px 7px 0;
    content: "";
    left: -6px;
    position: absolute;
    top: 8px
}

.j-forms .input input:focus+.tooltip-right-side,.j-forms .input textarea:focus+.tooltip-right-side,.j-forms .select select:focus+.tooltip-right-side {
    left: 100%
}

.j-forms .tooltip-left-side {
    margin-right: 8px;
    top: 8px;
    white-space: nowrap
}

.j-forms .tooltip-left-side:before {
    border-color: transparent var(--primary-color);
    border-style: solid;
    border-width: 7px 0 7px 8px;
    content: "";
    right: -6px;
    position: absolute;
    top: 8px
}

.j-forms .input input:focus+.tooltip-left-side,.j-forms .input textarea:focus+.tooltip-left-side,.j-forms .select select:focus+.tooltip-left-side {
    left: auto;
    right: 100%
}


.j-forms span.hint {
    display: block;
    font-size: 13px;
    color: inherit;
    height: 25px;
    line-height: 25px;
    margin-top: 5px;
    padding: 0 2px
}

.j-forms .checkbox-toggle.disabled-view,.j-forms .checkbox.disabled-view,.j-forms .file-button.disabled-view,.j-forms .input.disabled-view,.j-forms .primary-btn.disabled-view,.j-forms .radio-toggle.disabled-view,.j-forms .radio.disabled-view,.j-forms .secondary-btn.disabled-view,.j-forms .select.disabled-view,.j-forms .widget.disabled-view {
    cursor: default;
    opacity: .5
}

.j-forms .input.disabled-view input[type=file] {
    cursor: default
}

.j-forms .input.disabled-view input,.j-forms .input.disabled-view textarea,.j-forms .select.disabled-view select,.j-forms .widget.disabled-view input {
    border-color: rgba(0,0,0,.12)!important
}

.j-forms .checkbox-toggle.disabled-view i,.j-forms .checkbox.disabled-view i,.j-forms .radio-toggle.disabled-view i,.j-forms .radio.disabled-view i {
    border-color: rgba(0,0,0,.26)!important
}

.j-forms .disabled-view .file-button,.j-forms .primary-btn.disabled-view,.j-forms .secondary-btn.disabled-view {
    background: var(--primary-color)
}

.j-forms .widget.disabled-view .addon-btn:focus,.j-forms .widget.disabled-view .addon-btn:hover {
    background: var(--grey-border);
    cursor: default;
    color: rgba(0,0,0,.56)
}

.j-forms .widget.disabled-view .addon-btn i {
    color: rgba(0,0,0,.24)!important
}

.j-forms .error-view .checkbox i,.j-forms .error-view .checkbox-toggle i,
.j-forms .error-view .radio i,.j-forms .error-view .radio-toggle i,
.j-forms .error-view input,
.j-forms .error-view select,
.j-forms .error-view textarea {
    background: var(--red-light)!important;
    
}

.j-forms .error-view input,
.j-forms .error-view select,
.j-forms .error-view textarea {
    border: none!important;
    border-radius: .35rem;
}

.j-forms label.error-view input.file_input {
    border-bottom: 1px solid var(--red-dark) !important;
}

.j-forms .select.error-view i {
    background-color: var(--red-light);
    -webkit-box-shadow: 0 0 0 12px var(--red-light);
    -moz-box-shadow: 0 0 0 12px var(--red-light);
    -o-box-shadow: 0 0 0 12px var(--red-light);
    box-shadow: 0 0 0 12px var(--red-light)
}

.j-forms .error-view .icon-left,.j-forms .error-view .icon-right {
    border-color: var(--red)
}

.j-forms .error-message i,.j-forms .error-view .icon-left,.j-forms .error-view .icon-right,.j-forms span.error-view {
    color: var(--red-dark);
    font-weight: 700
}

.j-forms .warning-view .checkbox i,.j-forms .warning-view .checkbox-toggle i,.j-forms .warning-view .radio i,.j-forms .warning-view .radio-toggle i,.j-forms .warning-view input,.j-forms .warning-view select,.j-forms .warning-view textarea {
    background: var(--yellow-soft)!important
}

.j-forms .select.warning-view i {
    background-color: var(--yellow-soft);
    -webkit-box-shadow: 0 0 0 12px var(--yellow-soft);
    -moz-box-shadow: 0 0 0 12px var(--yellow-soft);
    -o-box-shadow: 0 0 0 12px var(--yellow-soft);
    box-shadow: 0 0 0 12px var(--yellow-soft)
}

.j-forms .warning-view .icon-left,.j-forms .warning-view .icon-right {
    border-color: var(--yellow-soft)
}

.j-forms .warning-message i,.j-forms .warning-view .icon-left,.j-forms .warning-view .icon-right,.j-forms span.warning-view {
    color: var(--orange)
}

.j-forms .info-view .checkbox i,.j-forms .info-view .checkbox-toggle i,.j-forms .info-view .radio i,.j-forms .info-view .radio-toggle i,.j-forms .info-view input,.j-forms .info-view select,.j-forms .info-view textarea {
    background: var(--blue-soft)!important
}

.j-forms .select.info-view i {
    background-color: var(--blue-soft);
    -webkit-box-shadow: 0 0 0 12px var(--blue-soft);
    -moz-box-shadow: 0 0 0 12px var(--blue-soft);
    -o-box-shadow: 0 0 0 12px var(--blue-soft);
    box-shadow: 0 0 0 12px var(--blue-soft)
}

.j-forms .info-view .icon-left,.j-forms .info-view .icon-right {
    border-color: var(--blue-special)
}

.j-forms .info-message i,.j-forms .info-view .icon-left,.j-forms .info-view .icon-right,.j-forms span.info-view {
    color: rgba(0,0,0,.87)
}

.j-forms .info-message {
    background: var(--blue-soft);
    border-color: color: rgba(0, 0, 0, .87);
    color: rgba(0,0,0,.87)
}

.j-forms .rating-group {
    color: rgba(0,0,0,.87);
    height: 30px;
    line-height: 30px;
    margin-bottom: 4px
}

.j-forms .rating-group:last-child {
    margin-bottom: 0
}

.j-forms .rating-group .label {
    float: left;
    font-size: 15px;
    height: 15px;
    line-height: 15px;
    margin-bottom: 0
}

.j-forms .rating-group .ratings {
    float: right;
    height: 30px;
    line-height: 30px
}

.j-forms .ratings input {
    left: -9999px;
    position: absolute
}

.j-forms .ratings input+label {
    color: rgba(0,0,0,.26);
    cursor: pointer;
    font-size: 20px;
    float: right;
    padding: 0 2px;
    -webkit-transition: color .2s;
    -moz-transition: color .2s;
    -ms-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

.j-forms .ratings input+label:hover,.j-forms .ratings input+label:hover~label,.j-forms .ratings input:checked+label,.j-forms .ratings input:checked+label~label {
    color: var(--black-dark)
}

.j-forms .social-btn,.j-forms .social-icon {
    margin-bottom: 6px;
    position: relative
}

.j-forms .social-icon {
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px
}

.j-forms .social-center,table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty {
    text-align: center
}

.j-forms .social-btn i,.j-forms .social-icon i {
    background-color: rgba(0,0,0,.15);
    color: white;
    cursor: pointer;
    font-size: 22px;
    left: 0;
    line-height: 48px;
    position: absolute;
    text-align: center;
    width: 48px;
    z-index: 2
}

.j-forms .captcha-group .captcha,.j-forms .social-btn i,.j-forms .stepper input {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px
}

.j-forms .social-btn button,.j-forms .social-icon button,.j-forms .social-icon i {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
}

.j-forms .social-btn button,.j-forms .social-icon button {
    border: 0;
    color: white;
    cursor: pointer;
    font: 16px"Open Sans",Helvetica,Arial,sans-serif;
    padding: 0 0 0 48px;
    outline: 0;
    overflow: hidden;
    height: 48px;
    white-space: nowrap;
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    -ms-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s
}

.j-forms .social-btn button {
    width: 100%
}

.j-forms .social-icon button {
    width: 48px
}

.j-forms .social-btn.vk button,.j-forms .social-icon.vk button {
    background: var(--black-dark)
}

.j-forms .social-btn.vk:hover button,.j-forms .social.vk:hover button {
    background: rgba(47,80,112,.85)
}

.j-forms .social-btn.skype button,.j-forms .social-icon.skype button {
    background: var(--blue-light)
}

.j-forms .social-btn.skype:hover button,.j-forms .social-icon.skype:hover button {
    background: rgba(19,176,237,.85)
}

.j-forms .social-btn.yahoo button,.j-forms .social-icon.yahoo button {
    background: var(--purple)
}

.j-forms .social-btn.yahoo:hover button,.j-forms .social-icon.yahoo:hover button {
    background: rgba(112,14,156,.85)
}

.j-forms .social-btn.flickr button,.j-forms .social-icon.flickr button {
    background: var(--red)
}

.j-forms .social-btn.flickr:hover button,.j-forms .social-icon.flickr:hover button {
    background: rgba(254,59,147,.85)
}

.j-forms .social-btn.tumblr button,.j-forms .social-icon.tumblr button {
    background: var(--grey-steel)
}

.j-forms .social-btn.tumblr:hover button,.j-forms .social-icon.tumblr:hover button {
    background: rgba(56,72,83,.85)
}

.j-forms .social-btn.google button,.j-forms .social-icon.google button {
    background: var(--blue-ocean)
}

.j-forms .social-btn.google:hover button,.j-forms .social-icon.google:hover button {
    background: rgba(8,104,185,.85)
}

.j-forms .social-btn.twitter button,.j-forms .social-icon.twitter button {
    background: var(--blue-light)
}

.j-forms .social-btn.twitter:hover button,.j-forms .social-icon.twitter:hover button {
    background: rgba(44,168,210,.85)
}

.j-forms .social-btn.youtube button,.j-forms .social-icon.youtube button {
    background: var(--red-dark)
}

.j-forms .social-btn.youtube:hover button,.j-forms .social-icon.youtube:hover button {
    background: rgba(206,51,44,.85)
}

.j-forms .social-btn.facebook button,.j-forms .social-icon.facebook button {
    background: var(--blue-dark)
}

.j-forms .social-btn.facebook:hover button,.j-forms .social-icon.facebook:hover button {
    background: rgba(48,88,145,.85)
}

.j-forms .social-btn.linkedin button,.j-forms .social-icon.linkedin button {
    background: var(--blue-light)
}

.j-forms .social-btn.linkedin:hover button,.j-forms .social-icon.linkedin:hover button {
    background: rgba(68,152,200,.85)
}

.j-forms .social-btn.pinterest button,.j-forms .social-icon.pinterest button {
    background: var(--red-dark)
}

.j-forms .social-btn.pinterest:hover button,.j-forms .social-icon.pinterest:hover button {
    background: rgba(200,40,40,.85)
}

.j-forms .social-btn.google-plus button,.j-forms .social-icon.google-plus button {
    background: var(--red-dark)
}

.j-forms .social-btn.google-plus:hover button,.j-forms .social-icon.google-plus:hover button {
    background: rgba(206,77,57,.85)
}

.j-forms .captcha-group {
    position: relative
}

.j-forms .captcha-group .captcha {
    background-color: var(--grey-border);
    border: 0;
    height: 48px;
    line-height: 48px;
    position: absolute;
    outline: 0;
    text-align: center;
    top: 0;
    width: 90px
}

.j-forms .captcha-group .input {
    padding-left: 90px
}

.j-forms .captcha-group .input input,.j-forms .stepper .stepper-wrapper {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -o-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0
}

.j-forms .stepper {
    position: relative;
    padding-right: 40px
}

.j-forms .stepper .stepper-wrapper {
    bottom: 0;
    outline: 0;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    width: 40px
}

.j-forms .stepper input::-webkit-inner-spin-button,.j-forms .stepper input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.j-forms .stepper .stepper-arrow {
    background-color: var(--grey-border);
    cursor: pointer;
    display: block;
    height: 50%;
    -webkit-transition: background-color .4s;
    -moz-transition: background-color .4s;
    -ms-transition: background-color .4s;
    -o-transition: background-color .4s;
    transition: background-color .4s
}

.j-forms .stepper .stepper-arrow:hover {
    background-color: var(--grey-border)
}

.j-forms .stepper .stepper-arrow.down {
    bottom: 0
}

.j-forms .stepper .stepper-arrow.down:after,.j-forms .stepper .stepper-arrow.up:after {
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: "";
    position: absolute;
    right: 16px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.j-forms .stepper .stepper-arrow.down:after {
    border-top: 7px solid rgba(0,0,0,.56);
    bottom: 13px
}

.j-forms .stepper .stepper-arrow.up:after {
    border-bottom: 7px solid rgba(0,0,0,.56);
    top: 13px
}

.j-forms .stepper .stepper-arrow:hover.down:after {
    border-top: 7px solid rgba(0,0,0,.87)
}

.j-forms .stepper .stepper-arrow:hover.up:after {
    border-bottom: 7px solid rgba(0,0,0,.87)
}

.j-forms .slider-group {
    font: 15px"Open Sans",Helvetica,Arial,sans-serif;
    height: 48px;
    line-height: 48px;
    padding: 0 2px;
    margin-bottom: 5px;
    white-space: nowrap
}

.j-forms .slider-group label {
    display: inline-block;
    color: rgba(0,0,0,.87);
    padding: 0 4px
}

.j-forms fieldset {
    border: 0;
    outline: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    opacity: 0;
    left: -9999px;
    top: 0;
    -webkit-transform: translateY(-4%);
    -moz-transform: translateY(-4%);
    -ms-transform: translateY(-4%);
    -o-transform: translateY(-4%);
    transform: translateY(-4%);
    -webkit-transition: opacity .3s,-webkit-transform .3s;
    -moz-transition: opacity .3s,-moz-transform .3s;
    -ms-transition: opacity .3s,-ms-transform .3s;
    -o-transition: opacity .3s,-o-transform .3s;
    transition: opacity .3s,transform .3s
}

.j-forms .steps {
    border: 1px solid rgba(0,0,0,.12);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    margin: 30px 0;
    text-align: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    height: 80px;
    padding-top: 10px
}

.j-forms .active-fieldset {
    left: 0;
    position: relative;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.j-forms fieldset .j-row,.j-forms fieldset .unit,.popup-btm-400 #popup-input-close,.popup-btm-400 #popup-input-open,.popup-btm-640 #popup-input-close,.popup-btm-640 #popup-input-open {
    display: none
}

.j-forms .active-fieldset .j-row,.j-forms .active-fieldset .unit {
    display: block;
    margin-top: 2px
}

.j-forms .steps p {
    color: rgba(0,0,0,.56);
    font-size: 14px;
    height: 30px;
    line-height: 25px;
    margin: 0;
    padding: 10px
}

.j-forms .steps span {
    color: rgba(0,0,0,.56);
    font-size: 13px;
    height: 13px;
    line-height: 13px
}

.j-forms .active-step .steps {
    background: var(--primary-color);
    color: white
}

.j-forms .passed-step .steps {
    background: rgba(34,106,178,.1);
    border: 1px solid rgba(34,106,178,.4)
}

.j-forms .passed-step .steps p,.j-forms .passed-step .steps span {
    color: rgba(34,106,178,.9)
}

.j-forms.j-multistep .input textarea:focus,.popup-btm-400 .j-forms .input textarea:focus,.popup-btm-640 .j-forms .input textarea:focus,.popup-list-open .j-forms .input textarea:focus {
    height: 112px
}

#j-forms a.step-link,#j-forms a.step-link:active,#j-forms a.step-link:focus,#j-forms a.step-link:hover {
    color: inherit;
    text-decoration: none
}

.modal-block {
    background-color: white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -o-box-shadow: 0 0 15px rgba(0,0,0,.4);
    box-shadow: 0 0 15px rgba(0,0,0,.4);
    color: rgba(0,0,0,.54);
    font-size: 15px;
    margin: 0 auto;
    max-width: 320px;
    outline: medium;
    padding: 20px
}

.modal-block .modal-link {
    border-bottom: 1px solid var(--blue-light);
    color: var(--blue-dark);
    font-size: 14px;
    line-height: inherit;
    text-decoration: none
}

.modal-block .modal-link:hover {
    border-bottom: none
}

.modal-form {
    background-color: rgba(103,119,129,.5);
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow-y: scroll;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 1040
}

.modal-form.modal-visible {
    opacity: 1;
    visibility: visible
}

.modal-scroll,body.compensate-for-scrollbar {
    overflow: hidden
}

.j-forms .modal-close {
    background-color: rgba(0,0,0,.3);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 11px;
    -webkit-transition: background-color .15s;
    -moz-transition: background-color .15s;
    -ms-transition: background-color .15s;
    -o-transition: background-color .15s;
    transition: background-color .15s
}

.j-forms .modal-close:focus,.j-forms .modal-close:hover {
    background-color: rgba(0,0,0,.6)
}

.j-forms .modal-close i,.popup-btm-400 .popup-btm-close i,.popup-btm-640 .popup-btm-close i {
    display: block;
    height: 22px;
    width: 23px
}

.j-forms .modal-close i:after,.j-forms .modal-close i:before {
    background-color: white;
    content: "";
    height: 3px;
    position: absolute;
    right: 1px;
    top: 10px;
    width: 21px
}

.j-forms .modal-close i:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.j-forms .modal-close i:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.popup-menu {
    padding: 0 15px
}

.popup-list {
    background-color: var(--grey-light1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -o-box-shadow: 0 0 15px rgba(0,0,0,.4);
    box-shadow: 0 0 15px rgba(0,0,0,.4);
    max-width: 100%
}

.popup-list>ul {
    font-size: 0;
    float: right;
    outline: 0;
    padding: 5px
}

.popup-list>ul>li {
    border-left: 1px solid rgba(0,0,0,.12);
    display: inline-block;
   /* font-family: "Open Sans",Helvetica,Arial,sans-serif;*/
    font-size: 16px;
    line-height: 45px;
    padding: 0 20px;
    list-style-type: none
}

.popup-list>ul>li:hover {
    background-color: var(--blue-soft)
}

.popup-list,.popup-list-open {
    position: relative
}

.popup-list-open .j-forms {
    margin: 10px auto 0;
    z-index: 999
}

.popup-list-open .popup-list-wrapper {
    display: none;
    opacity: 0;
    position: absolute;
    left: -9999px;
    width: 400px;
    -webkit-animation: popup-list-open .4s both;
    -moz-animation: popup-list-open .4s both;
    -ms-animation: popup-list-open .4s both;
    -o-animation: popup-list-open .4s both;
    animation: popup-list-open .4s both
}

to {
    transform: translate(0,0)
}

.popup-btm-400,.popup-btm-640 {
    bottom: 0;
    position: fixed;
    -webkit-transition: width .3s;
    -moz-transition: width .3s;
    -ms-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    right: 1%;
    z-index: 1000
}

.popup-btm-400 {
    width: 400px
}

.popup-btm-640 {
    width: 640px
}

.popup-btm-400 .popup-btm-wrapper,.popup-btm-640 .popup-btm-wrapper {
    bottom: -500px;
    height: auto;
    position: absolute;
    right: 0;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    width: 100%;
    z-index: 1000
}

.popup-btm-400 input#popup-input-open:checked~.popup-btm-label,.popup-btm-640 input#popup-input-open:checked~.popup-btm-label {
    opacity: 0;
    cursor: default
}

.popup-btm-400 .popup-btm-wrapper,.popup-btm-400 input#popup-input-close:checked~.popup-btm-wrapper,.popup-btm-640 .popup-btm-wrapper,.popup-btm-640 input#popup-input-close:checked~.popup-btm-wrapper {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%)
}

.popup-btm-400 input#popup-input-open:checked~.popup-btm-wrapper,.popup-btm-640 input#popup-input-open:checked~.popup-btm-wrapper {
    bottom: 5px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.popup-btm-400 .popup-btm-label,.popup-btm-640 .popup-btm-label {
    background-color: var(--grey-light1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,.4);
    -o-box-shadow: 0 0 15px rgba(0,0,0,.4);
    box-shadow: 0 0 15px rgba(0,0,0,.4);
    bottom: 0;
    cursor: pointer;
    color: rgba(0,0,0,.87);
    display: block;
    font: 16px"Open Sans",Helvetica,Arial,sans-serif;
    height: 35px;
    text-align: center;
    opacity: 1;
    line-height: 35px;
    padding: 0 30px;
    position: fixed;
    right: 1%;
    -webkit-transition: opacity .4s ease-in-out .05s;
    -moz-transition: opacity .4s ease-in-out .05s;
    -ms-transition: opacity .4s ease-in-out .05s;
    -o-transition: opacity .4s ease-in-out .05s;
    transition: opacity .4s ease-in-out .05s;
    white-space: nowrap;
    z-index: 9999
}

.popup-btm-400 .popup-btm-close,.popup-btm-640 .popup-btm-close {
    background-color: rgba(0,0,0,.6);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -25px;
    -webkit-transition: background-color .15s;
    -moz-transition: background-color .15s;
    -ms-transition: background-color .15s;
    -o-transition: background-color .15s;
    transition: background-color .15s
}

.popup-btm-400 .popup-btm-close:focus,.popup-btm-400 .popup-btm-close:hover,.popup-btm-640 .popup-btm-close:focus,.popup-btm-640 .popup-btm-close:hover {
    background-color: rgba(0,0,0,.8)
}

.popup-btm-400 .popup-btm-close i:after,.popup-btm-400 .popup-btm-close i:before,.popup-btm-640 .popup-btm-close i:after,.popup-btm-640 .popup-btm-close i:before {
    background-color: white;
    content: "";
    height: 3px;
    position: absolute;
    right: 1px;
    top: 10px;
    width: 21px
}

.popup-btm-400 .popup-btm-close i:before,.popup-btm-640 .popup-btm-close i:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.popup-btm-400 .popup-btm-close i:after,.popup-btm-640 .popup-btm-close i:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.j-forms [class*=span] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    position: relative
}

.j-forms .j-row {
    margin: 0-10px
}

.j-forms .j-row:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden
}

.j-forms .checkbox,.j-forms .checkbox-toggle,.j-forms .radio,.j-forms .radio-toggle {
    margin-top: 0
}

.j-forms .label {
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.j-forms .checkbox,.j-forms .checkbox *,.j-forms .checkbox i:after,.j-forms .checkbox i:before,.j-forms .checkbox-toggle,.j-forms .checkbox-toggle *,.j-forms .checkbox-toggle i:after,.j-forms .checkbox-toggle i:before,.j-forms .radio,.j-forms .radio *,.j-forms .radio i:after,.j-forms .radio i:before,.j-forms .radio-toggle,.j-forms .radio-toggle *,.j-forms .radio-toggle i:after,.j-forms .radio-toggle i:before {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.j-forms .form-details {
    font: 15px/25px"Open Sans",Helvetica,Arial,sans-serif;
    margin-bottom: 5px
}

.j-forms .form-details p {
    display: inline-block;
    margin: 0;
    padding: 0
}

 .j-forms .price {
     border: 3px solid var(--green-light);
     color: var(--green-dark);
     -webkit-border-radius: .35rem;
     -moz-border-radius: .35rem;
     -o-border-radius: .35rem;
     border-radius: .35rem;
     text-align: center;
     padding: 10px 0;
     }
     
         
.j-forms .total-price {
    border: 3px solid var(--green-light);
    background: var(--green-light);
    color: var(--green-dark);
    -webkit-border-radius: .35rem;
    -moz-border-radius: .35rem;
    -o-border-radius: .35rem;
    border-radius: .35rem;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}

.j-forms .form-details.total-price span {
    font-size: 17px
}

.j-forms .content .clone-btn-left,.j-forms .content .clone-btn-right {
    font-size: 14px;
    height: 48px;
    padding: 0;
    position: absolute;
    margin: 0;
    width: 47px
}

.j-forms .j-row>.clone-btn-right {
    bottom: 25px;
    right: 10px
}

.j-forms .j-row>.clone-btn-right.delete {
    right: 60px
}

.j-forms .unit>.clone-btn-right {
    bottom: 0;
    right: 0
}

.j-forms .unit>.clone-btn-right.delete {
    right: 50px
}

.j-forms .j-row>.clone-btn-left {
    bottom: 25px;
    left: 10px
}

.j-forms .j-row>.clone-btn-left.delete {
    left: 60px
}

.j-forms .unit>.clone-btn-left {
    bottom: 0;
    left: 0
}

.j-forms .unit>.clone-btn-left.delete {
    left: 50px
}

.j-forms .toclone .link {
    display: inline-block;
    padding-bottom: 3px;
    margin: 0 5px 5px 0
}

.toclone-widget-right {
    padding-right: 100px;
    position: relative
}

.toclone-widget-left {
    padding-left: 100px;
    position: relative
}

.ui-autocomplete {
    background: white;
    border-color: rgba(0,0,0,.12);
    border-style: none solid solid;
    border-width: 0 2px 2px;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    -o-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    cursor: default;
    display: block;
    font: 16px"Open Sans",Helvetica,Arial,sans-serif;
    left: 0;
    list-style: none;
    margin: 0;
    max-height: 110px;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    top: 0;
    z-index: 10000
}

.ui-autocomplete,.ui-autocomplete .ui-menu {
    position: absolute
}

.ui-autocomplete .ui-menu-item {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,.12);
    cursor: pointer;
    margin: 0;
    min-height: 0;
    padding: 8px 15px;
    position: relative
}

.ui-autocomplete .ui-menu-item:hover {
    background: rgba(0,0,0,.06)
}

.ui-helper-hidden-accessible {
    position: absolute;
    left: -999em
}

.j-forms .input .mce-tinymce {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border: 2px solid rgba(0,0,0,.12)!important;
    -webkit-transition: border .4s;
    -moz-transition: border .4s;
    -ms-transition: border .4s;
    -o-transition: border .4s;
    transition: border .4s
}

.j-forms .input .mce-tinymce:hover {
    border: 2px solid rgba(0,52,103,.6)!important
}

.j-tabs-container input[type=radio],.j-tabs-section {
    display: none
}

#tab1:checked~#tabs-section-1,#tab2:checked~#tabs-section-2,#tab3:checked~#tabs-section-3 {
    display: block
}

.j-tabs-container .j-tabs-label {
    border: 1px solid rgba(0,0,0,.12);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background: white;
    display: inline-block;
    margin: 0 0 30px;
    font: 14px"Open Sans",Helvetica,Arial,sans-serif;
    padding: 11px 97px 13px;
    opacity: .95;
    transition: border-top .2s
}

.j-tabs-container .j-tabs-label i,.j-tabs-container .j-tabs-label span {
    padding: 1px
}

.j-tabs-container .j-tabs-label i {
    font-size: 16px
}

.j-tabs-container .j-tabs-label i,.j-tabs-container .j-tabs-label span,.j-tabs-container input[type=radio]:checked+.j-tabs-label i {
    color: rgba(0,0,0,.54)
}

.j-tabs-container .j-tabs-label:hover {
    cursor: pointer
}

.j-tabs-container input[type=radio]:checked+.j-tabs-label {
    border: 1px solid var(--primary-color);
    background-color: var(--blue-soft);
    opacity: 1
}

.j-tabs-container input[type=radio]:checked+.j-tabs-label span {
    color: var(--primary-color)
}

.j-forms .checkbox-block,.j-forms .radio-block {
    color: rgba(0,0,0,.87);
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 8px;
    position: relative
}

.j-forms .checkbox-block:last-child,.j-forms .radio-block:last-child {
    margin-bottom: 0
}

.j-forms .checkbox-block input,.j-forms .radio-block input {
    position: absolute;
    left: -9999px
}

.j-forms .checkbox-block i,.j-forms .radio-block i {
    display: block;
    height: 18px;
    outline: 0;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 18px;
    z-index: 10
}

.j-forms .checkbox-block i {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
}

.j-forms .checkbox-block i:after {
    border-width: 0 0 3px 3px;
    border-bottom: solid var(--primary-color);
    border-left: solid var(--primary-color);
    content: "";
    height: 5px;
    top: 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 3px;
    opacity: 0;
    position: absolute;
    width: 10px
}

.j-forms .radio-block i,.j-forms .radio-block i:after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%
}

.j-forms .radio-block i:after {
    background-color: rgba(0,52,103,.9);
    content: "";
    height: 8px;
    top: 5px;
    left: 5px;
    opacity: 0;
    position: absolute;
    width: 8px
}

.j-forms .checkbox-block input:checked+i,.j-forms .radio-block input:checked+i {
    color: rgba(0,52,103,.9);
    border: 2px solid rgba(0,52,103,.9)
}

.j-forms .checkbox-block input:checked+i:after,.j-forms .radio-block input:checked+i:after {
    opacity: 1
}

.j-forms .checkbox-block span,.j-forms .radio-block span {
    display: block
}

.j-forms .checkbox-block .block-image,.j-forms .radio-block .block-image {
    position: relative;
    border: 0
}

.j-forms .checkbox-block .block-content img,.j-forms .radio-block .block-content img {
    height: auto;
    display: block;
    width: 100%
}

.j-forms .checkbox-block .block-content:hover,.j-forms .checkbox-block input:checked~.block-content,.j-forms .radio-block .block-content:hover,.j-forms .radio-block input:checked~.block-content {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px
}

.j-forms .checkbox-block .block-content:hover,.j-forms .radio-block .block-content:hover {
    background: rgba(232,234,246,.5)
}

.j-forms .checkbox-block input:checked~.block-content,.j-forms .radio-block input:checked~.block-content {
    background: var(--blue-soft)
}

.j-forms .checkbox-block .block-text-title,.j-forms .radio-block .block-text-title {
    color: rgba(0,0,0,.87);
    font-size: 17px;
    margin: 5px 0
}

.j-forms .checkbox-block .block-text-desc,.j-forms .radio-block .block-text-desc {
    color: rgba(0,0,0,.54);
    font-size: 13px;
    padding-right: 5px;
    line-height: 1.2;
    margin: 5px 0 10px;
    word-spacing: 3px
}

.j-forms .checkbox-block .block-content,.j-forms .checkbox-block .block-image-title,.j-forms .radio-block .block-content,.j-forms .radio-block .block-image-title {
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    -ms-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s
}

.j-forms .checkbox-block .block-image-title,.j-forms .radio-block .block-image-title {
    background: rgba(0,0,0,.34);
    bottom: 0;
    color: white;
    font-size: 13px;
    padding: 10px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 20;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.j-forms .checkbox-block .block-content:hover .block-image-title,.j-forms .radio-block .block-content:hover .block-image-title {
    background: rgba(0,0,0,.57)
}

.j-forms .checkbox-block input:checked~.block-content .block-image-title,.j-forms .radio-block input:checked~.block-content .block-image-title {
    background: rgba(0,0,0,.77)
}

.j-forms .error-view .ms-parent .ms-choice {
    background: var(--red-light)
}

.j-forms .success-view .ms-parent .ms-choice {
    background: var(--green-light)
}

.j-forms .warning-view .ms-parent .ms-choice {
    background: var(--yellow-soft)
}

.j-forms .info-view .ms-parent .ms-choice {
    background: var(--blue-soft)
}

.j-forms .ms-parent {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 100%!important
}

.j-forms .ms-choice {
    background-color: white;
    border: 2px solid rgba(0,0,0,.12);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    display: block;
    color: rgba(0,0,0,.87);
    font: 16px/48px"Open Sans",Helvetica,Arial,sans-serif;
    height: 48px;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    padding: 0;
    white-space: nowrap;
    width: 100%;
    -webkit-transition: border .4s;
    -moz-transition: border .4s;
    -ms-transition: border .4s;
    -o-transition: border .4s;
    transition: border .4s
}

.j-forms .ms-choice:hover {
    border: 2px solid rgba(0,52,103,.6)
}

.j-forms .ms-choice:focus {
    border: 2px solid rgba(0,52,103,.9)
}

.j-forms .ms-choice.disabled {
    background-color: white;
    background-image: none;
    border: 2px solid rgba(0,0,0,.12)!important;
    cursor: default
}

.j-forms .ms-choice>span,.j-forms .ms-drop ul>li.multiple label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.j-forms .ms-choice>span {
    padding-left: 18px;
    position: absolute;
    top: 0;
    left: 0;
    right: 20px
}

.j-forms .ms-choice>span.placeholder {
    color: rgba(0,0,0,.36)
}

.j-forms .ms-drop {
    background: white;
    border: 1px solid rgba(0,0,0,.12);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    color: rgba(0,0,0,.87);
    display: none;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 1000
}

.j-forms .ms-drop.bottom {
    top: 100%;
    -webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15);
    -moz-box-shadow: 0 4px 5px rgba(0,0,0,.15);
    -o-box-shadow: 0 4px 5px rgba(0,0,0,.15);
    box-shadow: 0 4px 5px rgba(0,0,0,.15)
}

.j-forms .ms-drop.top {
    bottom: 100%;
    -webkit-box-shadow: 0-4px 5px rgba(0,0,0,.15);
    -moz-box-shadow: 0-4px 5px rgba(0,0,0,.15);
    -o-box-shadow: 0-4px 5px rgba(0,0,0,.15);
    box-shadow: 0-4px 5px rgba(0,0,0,.15)
}

.j-forms .ms-search {
    display: inline-block;
    margin: 0;
    min-height: 26px;
    padding: 4px;
    position: relative;
    white-space: nowrap;
    width: 100%;
    z-index: 9999
}

.j-forms .ms-search,.j-forms .ms-search input {
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

.j-forms .ms-drop ul {
    overflow: auto;
    margin: 0;
    padding: 5px 8px
}

.j-forms .ms-drop ul>li {
    list-style: none;
    display: list-item;
    background-image: none;
    position: static
}

.j-forms .ms-drop ul>li .disabled {
    opacity: .35
}

.j-forms .ms-drop ul>li.multiple {
    display: block;
    float: left
}

.j-forms .ms-drop ul>li.group {
    clear: both
}

.j-forms .ms-drop ul>li.multiple label {
    width: 100%
}

.j-forms .ms-drop ul>li label {
    font-weight: 400;
    display: block;
    white-space: nowrap
}

.j-forms .ms-drop ul>li label.optgroup {
    font-weight: 700
}

.j-forms .ms-drop input[type=checkbox] {
    vertical-align: middle
}

.j-forms .ms-drop .ms-no-results {
    display: none
}


/*---------------------------------------------------------------------------------*/
/*                                     LOADER                                      */
/*---------------------------------------------------------------------------------*/


.basketball {
    position: relative;
    top: 50px;
    left: -50px
}

.ball,.lines {
    border: 3px solid var(--grey-light2)
}

.ball {
    position: absolute;
    background-color: var(--orange);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
    animation: bounce 1.5s ease-in infinite
}

.ball:after,.ball:before {
    content: "";
    position: absolute;
    background-color: var(--grey-light2);
    width: 110px;
    height: 3px;
    top: 50px;
    left: -5px
}

.ball:before {
    transform: rotate(45deg)
}

.ball:after {
    transform: rotate(-45deg)
}

.lines {
    width: 70px;
    height: 70px;
    left: -20px;
    top: -20px
}

.lines,.lines:before,.shadow {
    position: absolute;
    border-radius: 50%
}

.lines:before {
    content: "";
    border: 3px solid var(--grey-light2);
    width: 70px;
    height: 70px;
    top: 65px;
    left: 60px
}

.shadow {
    width: 100px;
    height: 15px;
    background-color: rgba(0,0,0,.2);
    top: 95px;
    z-index: -1;
    left: 3px;
    animation: scale 1.5s ease-in infinite
}

.loader {
    background: var(--grey-light2);
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: hidden;
    z-index: 1200;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}


/*---------------------------------------------------------------------------------*/
/*                                    ACCORDION                                    */
/*---------------------------------------------------------------------------------*/

.wrap {
    display: block;
    width: 100%;
    padding: 20px;
}

.wrap ::-webkit-scrollbar {
    height: 10px;
    width: 10px
}

.question-section {
    display: inline-block;
    font-size: 1rem;
   /* padding: 1em;*/
    position: relative;
    vertical-align: top;
    width: 100%
}

div[class^=cat] {
    width: 100%
}

div[class^=cat]>label {
    background: var(--grey-light1);
    font-weight: 700;
    color: var(--black-dark);
    cursor: pointer;
    display: block;
    line-height: 1.4;
    margin-bottom: .8em;
    padding: .75em;
    transition: all .55s;
    border-radius: .35rem
}

div[class^=cat]>label:hover {
    background: var(--grey-dark);
    color: white
}

div[class^=cat]>input {
    position: absolute;
    z-index: -999
}

div[class^=cat]>input:focus+label {
    background: var(--grey-dark);
    color: white;
    letter-spacing: 1px
}

div[class^=cat] .question-wrap {
    height: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .75s cubic-bezier(.19,1,.22,1);
    width: 100%
}

div[class^=cat]>input:checked~.question-wrap {
    max-height: 1500px;
    opacity: 1;
    transition: all 1.95s cubic-bezier(.19,1,.22,1);
    margin-bottom:20px;
}

.question-wrap .question {
    margin: 1em 0
}

.question-wrap label {
    color: var(--blue-dark);
    cursor: pointer;
    display: block;
    font-weight: 700;
    margin-bottom: .5em
}

.question-wrap input {
    position: absolute;
    z-index: -999;
    top: -10000px
}

.question-wrap input:focus+label {
    color: var(--blue-special)
}

.question-wrap input:not(:checked)~p {
    height: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .75s cubic-bezier(.19,1,.22,1)
}

.question-wrap input:checked~p {
    max-height: 500px;
    opacity: 1;
    transition: all 1.95s cubic-bezier(.19,1,.22,1)
}



.ucontent {
    padding: 10px;
    float: left;
    width: 96%
}

.head-menu,span.menu {
    position: relative
}

.menu-tle {
    padding: 1em 0;
    text-align: center
}

.menu-tle h2 {
    font-size: 1.3em;
    color: var(--grey-dark)
}

.top-nav {
    position: absolute;
    top: 28%;
    right: 6%;
    padding-bottom: 1em;
    z-index: 999
}

span.menu {
    cursor: pointer
}

ul.nav1 {
    display: none;
    position: absolute;
    top: 92%;
    right: -167%;
    background: var(--black-mid);
    width: 155px;
    height: auto;
    text-align: center;
    z-index: 9
}

.top-nav ul li {
    display: block;
    padding: 8px 5px;
    border-bottom: 1px solid var(--grey-muted)
}

.top-nav ul li:last-child {
    border-bottom: none
}

.top-nav ul li:hover {
    background-color: var(--grey-steel)
}

.right-pnl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    width: 40%;
    float: left;
    text-align: center;
    padding: 55px 0; 
}

.right-pnl img {
    width: 100%;
    height: auto;
    max-width: 210px;
    aspect-ratio: 1 / 1; /* forza proporzioni quadrate */
    object-fit: cover;
    object-position: center;    
    display: block;
    margin: 0 auto;   
    border: 2px solid var(--orange-soft) !important;
    background-color: white;
    padding: 5px;
    border-radius: .35rem !important;
}

.left-pnl h3,.right-pnl h2 {
    font-size: 18px;
    margin: 5px 0;
    text-transform: uppercase
}

.right-pnl p {
    font-size: 13px;
    letter-spacing: 1px
}

.left-pnl {
    float: right;
    width: 58%;
    border-left: 1px solid var(--neutral-light);
    padding: 5% 0 0 8%;
}

.ac-info {
    margin-bottom: 2em;
    padding-left: 20px;
    text-align: left
}

.ac-info p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .9px;
    margin-bottom: 0.5em
}

.ac-info p b {
    font-weight: 600;
    text-transform: uppercase
}

a.view-btn {
    font-size: 17px;
    padding: 8px 20px;
    display: inline-block;
    color: var(--green-cyan);
    border: 2px solid var(--green-cyan);
    border-radius: 3px;
    outline: 0
}

a.view-btn:hover {
    color: white;
    background-color: var(--green-cyan)
}



/*---------------------------------------------------------------------------------*/
/*                                     JCONFIRM                                    */
/*---------------------------------------------------------------------------------*/

.jconfirm.jconfirm-modern .jconfirm-box {
    border-top: 7px solid var(--primary-color);
}

.iframe-popup .jconfirm-title {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight:800;
}

.iframe-popup .jconfirm-title-c {
    text-align: center;
    padding-bottom:15px;
    border-bottom: 1px solid #dfd7ca;
}

.custom-iframe,
.iframe-popup iframe.custom-iframe {
    width:100%;
    border: none;
    overflow: hidden; 
}

.iframe-popup iframe.custom-iframe::-webkit-scrollbar {
   height: 0px; 
   width: 0px; 
}

.iframe-popup iframe.custom-iframe {
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.jconfirm.iframe-popup .jconfirm-box {
    border-radius: .35rem; 
}

.jconfirm-closeIcon {
    font-size: 48px!important; 
    transition: color 0.2s ease-in-out;
}

.jconfirm-closeIcon:hover {
    cursor: pointer;
}

@-webkit-keyframes jconfirm-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes jconfirm-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes type-blue {
    1%,to {
        border-color: var(--primary-color)
    }

    50% {
        border-color: var(--blue-main)
    }
}

@keyframes type-blue {
    1%,to {
        border-color: var(--primary-color)
    }

    50% {
        border-color: var(--blue-main)
    }
}

@-webkit-keyframes type-green {
    1%,to {
        border-color: var(--green)
    }

    50% {
        border-color: var(--green-cyan)
    }
}

@keyframes type-green {
    1%,to {
        border-color: var(--green)
    }

    50% {
        border-color: var(--green-cyan)
    }
}

@-webkit-keyframes type-red {
    1%,to {
        border-color: var(--red)
    }

    50% {
        border-color: var(--red-soft)
    }
}

@keyframes type-red {
    1%,to {
        border-color: var(--red)
    }

    50% {
        border-color: var(--red-soft)
    }
}

@-webkit-keyframes type-orange {
    1%,to {
        border-color: var(--yellow-gold)
    }

    50% {
        border-color: var(--yellow-bright)
    }
}

@keyframes type-orange {
    1%,to {
        border-color: var(--yellow-gold)
    }

    50% {
        border-color: var(--yellow-bright)
    }
}

@-webkit-keyframes type-purple {
    1%,to {
        border-color: var(--purple)
    }

    50% {
        border-color: var(--purple-light)
    }
}

@keyframes type-purple {
    1%,to {
        border-color: var(--purple)
    }

    50% {
        border-color: var(--purple-light)
    }
}

@-webkit-keyframes type-dark {
    1%,to {
        border-color: var(--grey-dark)
    }

    50% {
        border-color: var(--grey-steel)
    }
}

@keyframes type-dark {
    1%,to {
        border-color: var(--grey-dark)
    }

    50% {
        border-color: var(--grey-steel)
    }
}

@-webkit-keyframes shake {
    10%,90% {
        -webkit-transform: translate3d(-2px,0,0);
        transform: translate3d(-2px,0,0)
    }

    20%,80% {
        -webkit-transform: translate3d(4px,0,0);
        transform: translate3d(4px,0,0)
    }

    30%,50%,70% {
        -webkit-transform: translate3d(-8px,0,0);
        transform: translate3d(-8px,0,0)
    }

    40%,60% {
        -webkit-transform: translate3d(8px,0,0);
        transform: translate3d(8px,0,0)
    }
}

@keyframes shake {
    10%,90% {
        -webkit-transform: translate3d(-2px,0,0);
        transform: translate3d(-2px,0,0)
    }

    20%,80% {
        -webkit-transform: translate3d(4px,0,0);
        transform: translate3d(4px,0,0)
    }

    30%,50%,70% {
        -webkit-transform: translate3d(-8px,0,0);
        transform: translate3d(-8px,0,0)
    }

    40%,60% {
        -webkit-transform: translate3d(8px,0,0);
        transform: translate3d(8px,0,0)
    }
}

@-webkit-keyframes glow {
    0%,to {
        -webkit-box-shadow: 0 0 0 red;
        box-shadow: 0 0 0 red
    }

    50% {
        -webkit-box-shadow: 0 0 30px red;
        box-shadow: 0 0 30px red
    }
}

@keyframes glow {
    0%,to {
        -webkit-box-shadow: 0 0 0 red;
        box-shadow: 0 0 0 red
    }

    50% {
        -webkit-box-shadow: 0 0 30px red;
        box-shadow: 0 0 30px red
    }
}

body[class*=jconfirm-no-scroll-] {
    overflow: hidden!important
}

.jconfirm,.jconfirm .jconfirm-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.jconfirm {
    z-index: 99999999;
    font-family: inherit;
    overflow: hidden;
    -webkit-perspective: 400px;
    perspective: 400px
}

.jconfirm .jconfirm-bg {
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.jconfirm .jconfirm-bg.jconfirm-bg-h {
    opacity: 0!important
}

.jconfirm .jconfirm-scrollpane {
    -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-perspective-origin: center;
    perspective-origin: center;
    display: table;
    width: 100%;
    height: 100%
}

.jconfirm .jconfirm-row {
    display: table-row;
    width: 100%
}

.jconfirm .jconfirm-cell {
    display: table-cell;
    vertical-align: middle
}

.jconfirm .jconfirm-holder {
    max-height: 100%;
    padding: 50px 0
}

.jconfirm .jconfirm-box-container {
    -webkit-transition: -webkit-transform;
    transition: transform;
    transition: transform,-webkit-transform
}

.jconfirm .jconfirm-box-container.jconfirm-no-transition {
    -webkit-transition: none!important;
    transition: none!important
}

.jconfirm .jconfirm-box {
    background: white;
    border-radius: .35rem;
    position: relative;
    outline: 0;
    padding: 15px 15px 0;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto
}

.jconfirm .jconfirm-box.jconfirm-type-animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.jconfirm .jconfirm-box.jconfirm-type-blue {
    border-top: solid 7px var(--primary-color);
}

.jconfirm .jconfirm-box.jconfirm-type-green {
    border-top: solid 7px var(--green);
    -webkit-animation-name: type-green;
    animation-name: type-green
}

.jconfirm .jconfirm-box.jconfirm-type-red {
    border-top: solid 7px var(--red);
    -webkit-animation-name: type-red;
    animation-name: type-red
}

.jconfirm .jconfirm-box.jconfirm-type-orange {
    border-top: solid 7px var(--yellow-gold);
    -webkit-animation-name: type-orange;
    animation-name: type-orange
}

.jconfirm .jconfirm-box.jconfirm-type-purple {
    border-top: solid 7px var(--purple);
    -webkit-animation-name: type-purple;
    animation-name: type-purple
}

.jconfirm .jconfirm-box.jconfirm-type-dark {
    border-top: solid 7px var(--grey-dark);
    -webkit-animation-name: type-dark;
    animation-name: type-dark
}

.jconfirm .jconfirm-box.loading {
    height: 120px
}

.jconfirm .jconfirm-box.loading:before {
    content: "";
    position: absolute;
    left: 0;
    background: white;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 1
}

.jconfirm .jconfirm-box.loading:after {
    opacity: .6;
    content: "";
    height: 30px;
    width: 30px;
    border: solid 3px transparent;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    border-radius: 50%;
    -webkit-animation: jconfirm-spin 1s infinite linear;
    animation: jconfirm-spin 1s infinite linear;
    border-bottom-color: var(--blue-ocean);
    top: 50%;
    margin-top: -15px;
    z-index: 2
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon {
    color: var(--primary-color);
    height: 30px;
    width: 30px;
    position: absolute;
    right: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 45px!important;
    line-height: 14px!important;
    display: none;
    z-index: 1
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon:empty,.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content:empty,.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c:empty,.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title:empty {
    display: none
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .fa,.jconfirm .jconfirm-box div.jconfirm-closeIcon .glyphicon,.jconfirm .jconfirm-box div.jconfirm-closeIcon .zmdi {
    font-size: 16px
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon:hover {
    opacity: 0.6
}

b, strong {
    font-weight: bold;
}

/*
.jconfirm .jconfirm-box div.jconfirm-title-c {
    display: block;
    font-size: 22px;
    line-height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    padding: 0 5px 15px;
}*/

.jconfirm .jconfirm-box div.jconfirm-title-c.jconfirm-hand {
    cursor: move
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    font-size: inherit;
    display: inline-block;
    vertical-align: middle
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c i {
    vertical-align: middle
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: inherit;
    font-family: inherit;
    display: inline-block;
    vertical-align: middle
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
    /*margin-bottom: 15px;*/
    height: auto;
    -webkit-transition: height .4s ease-in;
    transition: height .4s ease-in;
    display: inline-block;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto
}

.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll {
    overflow-y: hidden
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar {
    width: 3px
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-track {
    background: rgba(0,0,0,.1)
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-thumb {
    background: var(--grey-dark);
    border-radius: .35rem
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
    overflow: auto;
    margin-bottom: 2.5rem;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content img {
    max-width: 100%;
    height: auto
}

.jconfirm .jconfirm-box .jconfirm-buttons {
    padding-bottom: 11px
}

.jconfirm .jconfirm-box .jconfirm-buttons>button {
    margin-bottom: 4px;
    margin-left: 2px;
    margin-right: 2px
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
    display: inline-block;
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: .45rem;
    min-height: 1em;
    -webkit-transition: opacity .1s ease,background-color .1s ease,color .1s ease,background .1s ease,-webkit-box-shadow .1s ease;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease,-webkit-box-shadow .1s ease;
    -webkit-tap-highlight-color: transparent;
    border: 0;
    background-image: none
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue {
    background-color: var(--primary-color);
    color: white;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover {
    background-color: var(--primary-color);
    color: white
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green,.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
    background-color: var(--green);
    color: white;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover {
    background-color: var(--green);
    color: white
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
    background-color: var(--red)
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
    background-color: var(--red-dark);
    color: white
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default,.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange {
    background-color: var(--yellow-gold);
    color: white;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover {
    background-color: var(--orange);
    color: white
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background-color: var(--grey-cloud);
    color: black;
    margin-top:0px!important
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background-color: var(--grey-dark) !important;
    color: white!important;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark,.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple {
    background-color: var(--purple);
    color: white;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover {
    background-color: var(--purple);
    color: white
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark {
    background-color: var(--grey-steel)
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark:hover {
    background-color: var(--black-dark);
    color: white
}

.jconfirm .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c {
    color: var(--red)!important
}

.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c {
    color: var(--primary-color)!important
}

.jconfirm .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c {
    color: var(--green)!important
}

.jconfirm .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c {
    color: var(--purple)!important
}

.jconfirm .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c {
    color: var(--yellow-gold)!important
}

.jconfirm .jconfirm-box.jconfirm-type-dark .jconfirm-title-c .jconfirm-icon-c {
    color: var(--grey-dark)!important
}

.jconfirm .jconfirm-clear {
    clear: both
}

.jconfirm.jconfirm-rtl {
    direction: rtl
}

.jconfirm.jconfirm-rtl div.jconfirm-closeIcon {
    left: 5px;
    right: auto
}

.jconfirm.jconfirm-light .jconfirm-bg,.jconfirm.jconfirm-white .jconfirm-bg {
    background-color: var(--black-light);
    opacity: .2
}

.jconfirm.jconfirm-light .jconfirm-box,.jconfirm.jconfirm-white .jconfirm-box {
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,.2);
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    border-radius: .35rem
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,.jconfirm.jconfirm-white .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons,.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons {
    float: right
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button,.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-shadow: none;
    box-shadow: none !important;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default,.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--black-light)
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: var(--grey-border)
}

.jconfirm.jconfirm-light.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,.jconfirm.jconfirm-white.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0
}

.jconfirm.jconfirm-black .jconfirm-bg,.jconfirm.jconfirm-dark .jconfirm-bg {
    background-color: var(--grey-steel);
    opacity: .4
}

.jconfirm.jconfirm-black .jconfirm-box,.jconfirm.jconfirm-dark .jconfirm-box {
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,.2);
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    background: var(--black-light);
    border-radius: .35rem;
    color: white
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button {
    border: 0;
    background-image: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-shadow: none;
    -webkit-transition: background .1s;
    transition: background .1s;
    color: white
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default,.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: white;
    background: 0 0
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: var(--grey-dark)
}

.jconfirm.jconfirm-black.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,.jconfirm.jconfirm-dark.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-supervan.jconfirm-rtl .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0
}

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow,.jconfirm .jconfirm-box.hilight.jconfirm-hilight-shake {
    -webkit-animation: shake .82s cubic-bezier(.36,.07,.19,.97) both;
    animation: shake .82s cubic-bezier(.36,.07,.19,.97) both;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow {
    -webkit-animation: glow .82s cubic-bezier(.36,.07,.19,.97) both;
    animation: glow .82s cubic-bezier(.36,.07,.19,.97) both
}

.jconfirm .jconfirm-box {
    opacity: 1;
    -webkit-transition-property: all;
    transition-property: all
}

.jconfirm .jconfirm-box.jconfirm-animation-bottom,.jconfirm .jconfirm-box.jconfirm-animation-left,
.jconfirm .jconfirm-box.jconfirm-animation-none,.jconfirm .jconfirm-box.jconfirm-animation-opacity,
.jconfirm .jconfirm-box.jconfirm-animation-right,.jconfirm .jconfirm-box.jconfirm-animation-rotate,
.jconfirm .jconfirm-box.jconfirm-animation-rotatex,.jconfirm .jconfirm-box.jconfirm-animation-rotatey,
.jconfirm .jconfirm-box.jconfirm-animation-scale,.jconfirm .jconfirm-box.jconfirm-animation-scalex,
.jconfirm .jconfirm-box.jconfirm-animation-scaley,.jconfirm .jconfirm-box.jconfirm-animation-top,
.jconfirm .jconfirm-box.jconfirm-animation-zoom {
    opacity: 0
}

.jconfirm .jconfirm-box.jconfirm-animation-rotate {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatex,.jconfirm .jconfirm-box.jconfirm-animation-rotatexr {
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatexr {
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg)
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatey,.jconfirm .jconfirm-box.jconfirm-animation-rotateyr {
    -webkit-transform: rotatey(90deg);
    transform: rotatey(90deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

.jconfirm .jconfirm-box.jconfirm-animation-rotateyr {
    -webkit-transform: rotatey(-90deg);
    transform: rotatey(-90deg)
}

.jconfirm .jconfirm-box.jconfirm-animation-scaley {
    -webkit-transform: scaley(1.5);
    transform: scaley(1.5);
    -webkit-transform-origin: center;
    transform-origin: center
}

.jconfirm .jconfirm-box.jconfirm-animation-scalex {
    -webkit-transform: scalex(1.5);
    transform: scalex(1.5);
    -webkit-transform-origin: center;
    transform-origin: center
}

.jconfirm .jconfirm-box.jconfirm-animation-top {
    -webkit-transform: translate(0,-100px);
    transform: translate(0,-100px)
}

.jconfirm .jconfirm-box.jconfirm-animation-left {
    -webkit-transform: translate(-100px,0);
    transform: translate(-100px,0)
}

.jconfirm .jconfirm-box.jconfirm-animation-right {
    -webkit-transform: translate(100px,0);
    transform: translate(100px,0)
}

.jconfirm .jconfirm-box.jconfirm-animation-bottom {
    -webkit-transform: translate(0,100px);
    transform: translate(0,100px)
}

.jconfirm .jconfirm-box.jconfirm-animation-zoom {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.jconfirm .jconfirm-box.jconfirm-animation-scale {
    -webkit-transform: scale(.5);
    transform: scale(.5)
}

.jconfirm .jconfirm-box.jconfirm-animation-none {
    visibility: hidden
}

.jconfirm.jconfirm-supervan .jconfirm-bg {
    background-color: rgba(33,43,54,.95)
}

.jconfirm.jconfirm-supervan .jconfirm-box {
    background-color: transparent
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-blue,
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-dark,
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-green,
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-orange,
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-purple,
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-red {
    border: 0
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-closeIcon {
    color: white
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c {
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: 400
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c>* {
    padding-bottom: 25px
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane {
    margin-bottom: 25px
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content {
    text-align: center;
    color: white
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons {
    text-align: center
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button {
    font-size: 16px;
    border-radius: .35rem;
    background: var(--black-dark);
    text-shadow: none;
    border: 0;
    color: white;
    padding: 10px;
    min-width: 100px
}

.jconfirm.jconfirm-material .jconfirm-bg {
  background-color: rgba(255, 255, 255, 0.67);
}

.jconfirm.jconfirm-material .jconfirm-box {
    background-color: white;
    -webkit-box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);
    box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);
    padding: 30px 25px 10px
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-closeIcon {
    color: rgba(0,0,0,.87)
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-title-c {
    color: rgba(0,0,0,.87);
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 15px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-closeIcon,.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-content {
    color: rgba(0,0,0,.87)
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons {
    text-align: right
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons button {
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: none !important;
}

.jconfirm.jconfirm-material.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0
}

.jconfirm.jconfirm-bootstrap .jconfirm-bg {
    background-color: rgba(0,0,0,.21)
}

.jconfirm.jconfirm-bootstrap .jconfirm-box {
    background-color: white;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0,0,0,.2);
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.2);
    border: solid 1px rgba(0,0,0,.4);
    padding: 15px 0 0
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    margin-right: 8px;
    margin-left: 0
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-title-c {
    color: rgba(0,0,0,.87);
    font-size: 22px;
    font-weight: 700;
    padding-left: 15px;
    padding-right: 15px
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-content {
    color: rgba(0,0,0,.87);
    padding: 0 15px
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons {
    text-align: right;
    padding: 10px;
    margin: -5px 0 0;
    border-top: solid 1px var(--grey-border);
    overflow: hidden;
    border-radius: 0 0 4px 4px
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons button {
    font-weight: 500
}

.jconfirm.jconfirm-bootstrap.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
    margin-left: 8px;
    margin-right: 0
}

.jconfirm.jconfirm-modern .jconfirm-bg {
    background-color: var(--grey-steel);
    opacity: .6
}

.jconfirm.jconfirm-modern .jconfirm-box {
    background-color: white;
    -webkit-box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);
    box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);
    padding: 20px 25px 15px
}


/*
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
    color: rgba(0,0,0,.87);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}*/

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    -webkit-transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s,-webkit-transform .5s;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: block;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 5px;
    font-size: 69px;
    color: var(--grey-mid)
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
    text-align: center;
    font-size: 15px;
    color: var(--grey-muted);
    margin-bottom: 5px
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons {
    text-align: center
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: background .1s;
    transition: background .1s;
    padding: 10px 20px
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button+button {
    margin-left: 4px
}

.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
    -webkit-transform: scale(1);
    transform: scale(1)
}





















.ui-datepicker {
    background-color: white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.26);
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,.5);
    -o-box-shadow: 0 0 2px rgba(0,0,0,.5);
    box-shadow: 0 0 2px rgba(0,0,0,.5);
    color: rgba(0,0,0,.54);
    display: none;
    font: 16px"Open Sans",Helvetica,Arial,sans-serif;
    text-align: center;
    padding: 10px 0;
    width: 300px;
    z-index: 1100!important
}

.ui-datepicker-header {
    background-color: var(--grey-light2);
    line-height: 1.5;
    margin: -2px 0 12px;
    padding: 10px;
    position: relative
}

.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year {
    width: 100px;
    height: 40px;
    border: 2px solid rgba(0,0,0,.12);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    color: rgba(0,0,0,.87);
    /*font-family: inherit;*/
    font-size: 16px;
    padding: 6px 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.ui-datepicker-next,.ui-datepicker-prev {
    cursor: pointer;
    display: block;
    font-size: 15px;
    height: 30px;
    position: absolute;
    text-decoration: none;
    top: 18px;
    width: 55px
}

.ui-datepicker-prev {
    border-right: 1px solid;
    left: 0
}

.ui-datepicker-next {
    border-left: 1px solid;
    right: 0
}

.ui-datepicker-calendar {
    border-collapse: collapse;
    line-height: 1.5;
    width: 100%
}

.ui-datepicker-calendar th span {
    color: rgba(0,0,0,.26);
    font-weight: lighter
}

.ui-datepicker-calendar a,.ui-datepicker-calendar span {
    color: rgba(0,0,0,.54);
    display: block;
    font-size: 16px;
    margin: 0 auto;
    text-decoration: none;
    width: 28px
}

.ui-datepicker-calendar .ui-state-active,.ui-datepicker-calendar a:hover {
    background-color: var(--grey-border)
}

.ui-datepicker-today a {
    outline: 1px solid rgba(0,0,0,.54)
}

.ui-datepicker-inline {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid rgba(0,0,0,.12);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    width: 100%
}

.ui-state-disabled span {
    color: rgba(0,0,0,.26)
}

.ui-timepicker-div .ui-widget-header {
    background-color: var(--grey-light2);
    margin-bottom: 8px;
    padding: 10px 0
}

.ui-timepicker-div dl dt {
    float: left;
    clear: left;
    padding: 9px 0 0 25px
}

.ui-timepicker-div td {
    font-size: 90%
}

.ui-tpicker-grid-label {
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0
}

.ui-timepicker-rtl {
    direction: rtl
}

.ui-timepicker-rtl dl {
    text-align: right;
    padding: 0 5px 0 0
}

.ui-timepicker-rtl dl dt {
    float: right;
    clear: right
}

.ui-timepicker-rtl dl dd {
    margin: 0 40% 10px 10px
}

.ui-timepicker-div {
    font-size: 15px
}

.ui-timepicker-div dl {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 16px 5px;
    margin: 16px 0 0
}

.ui-timepicker-div .ui_tpicker_time {
    margin: 0 10px 10px 40%
}

.ui-timepicker-div .ui_tpicker_hour,.ui-timepicker-div .ui_tpicker_minute {
    margin: 16px 10px 10px 40%
}

.ui-datepicker-buttonpane,.ui-timepicker-div dl {
    border-top: 1px solid rgba(0,0,0,.26)
}

.ui-datepicker-buttonpane button {
    background: var(--grey-border);
    border: 0;
    color: rgba(0,0,0,.56);
    font: 14px"Open Sans",Helvetica,Arial,sans-serif;
    padding: 5px 10px;
    margin: 10px 5px 0;
    -webkit-transition: all .15s;
    -moz-transition: all .15s;
    -ms-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s
}

.ui-datepicker-buttonpane button:hover {
    background: var(--grey-border);
    color: rgba(0,0,0,.87)
}

.ui-slider {
    position: relative
}

.ui-slider .ui-slider-range {
    border: 0;
    display: block;
    font-size: 11px;
    position: absolute;
    overflow: hidden;
    z-index: 1
}

.ui-datepicker-buttonpane button,.ui-slider .ui-slider-handle {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    outline: 0
}

.ui-slider .ui-slider-handle {
    background-color: var(--grey-border);
    border: 1px solid rgba(0,0,0,.36);
    height: 16px;
    position: absolute;
    left: -5px;
    width: 16px;
    z-index: 2
}

.ui-slider-horizontal {
    height: 7px
}

.ui-slider-vertical {
    height: 100px;
    width: 7px
}

.ui-slider-horizontal .ui-slider-handle {
    top: -5px;
    margin-left: -10px
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%
}

.ui-slider.ui-widget-content {
    background-color: white;
    border: 2px solid var(--grey-border);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
}

.ui-slider-horizontal .ui-widget-header,.ui-slider-vertical .ui-widget-header {
    background-color: var(--grey-light2)
}
