@import url(https://fonts.googleapis.com/css?family=Anton);
@import url(https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i,900,900i);
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);
@import url(https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:300,400,500,700);


@font-face {
    font-family: 'Roboto';
    src: url("/fonts/Roboto/Roboto-Medium.ttf") format("ttf");
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url("/fonts/Roboto/Roboto-Regular.ttf") format("ttf");
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto';
    src: url("/fonts/Roboto/Roboto-Light.ttf") format("ttf");
    font-weight: 300;
}

@font-face {
    font-family: 'Roboto';
    src: url("/fonts/Roboto/Roboto-Thin.ttf") format("ttf");
    font-weight: 200;
}

* {
    font-family: 'Roboto';
}

html,
body {
    width: 100%;
}

body {
    background-color: #fcfcfc;
}

.dark-gray {
    color: #384655 !important;
}

.red {
    color: #d0021b !important;
}

a {
    color: #555;
    text-decoration: none;
}

a:hover, a.blu {
    color: #2a79d5;
}

a:hover {
    text-decoration: none;
}

.row-no-padding [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer-position {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

.footer-position-desktop {
    padding: 15px 0px;
    width: 100%;
    text-align: center;
}

.navbar {
    border-top: solid 4px #c60e7b;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}

/* OVERRIDE */
.custom-select.is-valid, .form-control.is-valid, .was-validated .custom-select:valid, .was-validated .form-control:valid {
    border-top: 1px solid #e5eced;
    border-bottom: 1px solid #e5eced;
    border-right: 1px solid #e5eced;
}

.container {
    width: 400px;
    margin: auto;
    margin-top: 100px;
}

.desktop-body .invalid-feedback {
    display: block;
    height: 19px;
}

/* FORM */
.form {
    width: 100%;
    max-width: 450px;
    padding: 15px;
    margin: 0 auto;
    position: relative;
}

.form.form-desktop {
    max-width: 100%;
}

.form legend {
    font-size: 22px;
    color: #384655;
}

.form p, .p {
    color: #939393;
    font-size: 16px;
    line-height: 1.44;
}

.form .row {
    margin: 0;
}

.form .form-control {
    display: block;
    width: 100%;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e5eced;
    box-shadow: 0 11px 4px -10px #e5eced;
    border-radius: 5px;
    height: 55px;
    font-size: 14px;
    border-left: 3px solid #a6afba;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form .form-control:focus {
    border-left: 3px solid #2a79d5;
}

.form textarea.form-control {
    height: 80px;
}

.form .form-control:focus {
    z-index: 2;
}

.form input[type="email"] {
    margin-bottom: -1px;
}

.form input[type="password"] {
    margin-bottom: 10px;
}

.form .small-text {
    font-size: 13px;
    line-height: 1.4;
    color: #939393;
    font-weight: 300;
}

.form #checkBox {
    width: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    border: solid 1px #979797;
}

.form .checkbox-text {
    font-size: 15px;
    line-height: 1.4;
    color: #939393;
    font-weight: 300;
}

.form .form-action {
    position: absolute;
    right: 0;
    top: 70px;
    width: 80px;
    line-height: 1;
}

/* FLOATING LABELS */
.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > label {
    padding: 16px 10px;
}

.form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    /* Override default `<label>` margin */
    margin-left: 3px;
    line-height: 1.5;
    color: #555555;
    border: 1px solid transparent;
    font-size: 14px;
    transition: all .1s ease-in-out;
}

.ie-edge .form-label-group {
    margin-top: 2rem !important;
}

.ie-edge .form-label-group > label {
    top: -35px;
    font-size: 12px;
}

.form-label-group input::-webkit-input-placeholder {
    color: transparent;
}

.form-label-group input:-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-moz-placeholder {
    color: transparent;
}

.form-label-group input::placeholder {
    color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
    padding-top: 26.66667px;
    padding-bottom: 5.33333px;
}

.form-label-group input:not(:placeholder-shown) ~ label {
    padding-top: 8px;
    padding-bottom: 5.33333px;
    font-size: 11px;
    color: #2a79d5;
}

.form-label-group input:not(:placeholder-shown).is-valid ~ label {
    color: #28a745;
}

.form-label-group input:not(:placeholder-shown).is-invalid ~ label {
    color: #dc3545;
}

.form-check-label {
    line-height: 1.5;
    color: #555555;
    border: 1px solid transparent;
    font-size: 14px;
    transition: all .1s ease-in-out;
}

.form .form-navigation a {
    color: #aaafb4;
}

.form .form-select {
    font-size: 20px;
}

.form .form-select .btn {
    border-radius: 0;
}

.form .form-select .active {
    border-bottom: 3px solid #2a79d5;
    color: #2a79d5;
}

.input-group .form-control {
    width: auto;
}

.input-group-append {
    height: 55px;
}

.form .hint {
    font-size: 16px;
}

form.was-validated .form-control.is-invalid {
    border-color: #dc3545;
}

form.was-validated .form-control.is-valid {
    border-color: #28a745;
}

/* HR */
.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    color: #939393;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.strike > span {
    position: relative;
    display: inline-block;
}

.strike > span:before,
.strike > span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    height: 1px;
    background: #dbdbdb;
}

.strike > span:before {
    right: 100%;
    margin-right: 15px;
}

.strike > span:after {
    left: 100%;
    margin-left: 15px;
}

/* BUTTONS */
button.btn, a.btn {
    box-shadow: 0 2px 4px 0 #dbdbdb;
    font-size: 12px;
    border-radius: 5px;
    box-shadow: 0 11px 4px -10px #b7b7b7;
    font-size: 17px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.btn-green, a.btn-green {
    color: white;
    --bs-btn-hover-bg: #1ac483;
    background-color: #1ac483;
}

button.btn-yellow, a.btn-yellow {
    color: white;
    --bs-btn-hover-bg: #a58103;
    background-color: #daa520;
}

button.btn-social {
    background-color: #f3f3f3;
    --bs-btn-hover-bg: #f3f3f3;
    padding: 10px 10px;
}

button.btn-social .fab {
    color: #939393;
    font-size: 28px;
}

button.btn-light, a.btn-light {
    color: #2a79d5;
    background-color: #f7f7f7;
    --bs-btn-hover-bg: #f7f7f7;
}

button.btn-icon, a.btn-icon {
    justify-content: start;
    align-items: center;
    padding: 0 25px;
    font-size: 19px;
}

.icon-button img {
    width: 40px;
    margin-right: 20px;
}

/* FLOATING BUTTON */
.floating-container {
    position: absolute;
    bottom: -25px;
    left: 15px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    background-color: #2a79d5;
    cursor: pointer;
}

.floating-label {
    padding-left: 10px;
    color: #2a79d5;
}

/* CARDS */
.card {
    box-shadow: 0 11px 4px -10px #e5eced;
    border-radius: 5px;
}

.card-bg {
    background-size: cover;
    background-position: 50% 50%;
    height: 115px;
}

.card-body h3 {
    font-size: 15px;
    color: #273d52;
}

.card-body p {
    font-size: 12px;
    color: #273d52;
    margin: 0;
}

.card .btn {
    width: auto;
    float: right;
    font-size: 14px;
    height: auto;
    /* border: solid 1px $border-gray; */
}

.card-image {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-column {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

/* MODAL */
.modal {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.modal-title {
    font-size: 22px;
    color: #384655;
}

/* MAP */
#edicole-map {
    width: 100%;
    height: 300px;
}

.map-element {
    border-top: 2px solid #2a79d5;
}

.map-element .card-body {
    align-items: flex-end;
}

.map-element .btn {
    width: auto;
    float: right;
    font-size: 14px;
    height: auto;
    /* border: solid 1px $border-gray; */
}

/* .map-element .title {
  font-size: 15px;
  color: #273d52;
}

.map-element .subtitle {
  font-size: 12px;
} */
/* VARIOUS */
.hightlight {
    width: 100%;
    background-color: #f2f8ff;
    padding: 20px;
    border: 1px solid #e5eced;
}

html,
body {
    width: 100%;
    height: 100%;
}

.desktop-body {
    background-image: url(../images/797872bb1d9ea56fce1d8e3c16c905b1-bkground-skille-03-a2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.desktop {
    max-width: 900px;
    display: table;
    margin: 30px auto 30px auto;
}

.boxform {
    padding: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 0 17px 0 rgba(164, 164, 164, 0.5);
}

.colonna01-form {
    max-width: 400px;
}

.headerskille {
    height: 57px;
    width: 100%;
    margin: 20px 0px 20px 0px;
    background-size: cover;
    display: block;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABMAAAAA5CAYAAADQmFdUAAAAAXNSR0IArs4c6QAAERFJREFUeAHt3Xl0lNUZx/HfTGYyZA+BJEQkxIiGrQjCcaEVrUBPbatUqae2RVtrrYLVLtbWVmrtYpC6a49dUI/V0g1P61JbwSptjxtIjoop+75mI0L2yTLT944kZGDmnYVxJsD3njPkfd/73OX98N9z7nuvY1VxiV8UBBCIS2BK7V5HXA1phAACCCCAAAIIIIAAAggggAACSRNwJm0kBkIAAQQQQAABBBBAAAEEEEAAAQQQQCAFAiTAUoDOkAgggAACCCCAAAIIIIAAAggggAACyRMgAZY8a0ZCAAEEEEAAAQQQQAABBBBAAAEEEEiBAAmwFKAzJAIIIIAAAggggAACCCCAAAIIIIBA8gRIgCXPmpEQQAABBBBAAAEEEEAAAQQQQAABBFIgQAIsBegMiQACCCCAAAIIIIAAAggggAACCCCQPAESYMmzZiQEEEAAAQQQQAABBBBAAAEEEEAAgRQIkABLATpDIoAAAggggAACCCCAAAIIIIAAAggkT4AEWPKsGQkBBBBAAAEEEEAAAQQQQAABBBBAIAUCJMBSgM6QCCCAAAIIIIAAAggggAACCCCAAALJEyABljxrRkIAAQQQQAABBBBAAAEEEEAAAQQQSIEACbAUoDMkAggggAACCCCAAAIIIIAAAggggEDyBEiAJc+akRBAAAEEEEAAAQQQQAABBBBAAAEEUiBAAiwF6AyJAAIIIIAAAggggAACCCCAAAIIIJA8ARJgybNmJAQQQAABBBBAAAEEEEAAAQQQQACBFAiQAEsBOkMigAACCCCAAAIIIIAAAggggAACCCRPgARY8qwZCQEEEEAAAQQQQAABBBBAAAEEEEAgBQIkwFKAzpAIIIAAAggggAACCCCAAAIIIIAAAskTIAGWPGtGQgABBBBAAAEEEEAAAQQQQAABBBBIgQAJsBSgMyQCCCCAAAIIIIAAAggggAACCCCAQPIESIAlz5qREEAAAQQQQAABBBBAAAEEEEAAAQRSIEACLAXoDIkAAggggAACCCCAAAIIIIAAAgggkDwBV/KGStJITqc8paXynFKm7sZGdWzeIl9LS5IGZxgEEEAAAQQQQAABBBBAAAEEEEAAgYEmEDIBljZ4sPJnzlDezJnyjCyVq7BQ7qFD5XC75fN61dPcoq6averYuFHt69arZcUKta6qkr+7O6Xvlzv9QpVWVgbm3DsRM6e6xx7XnoUL5Wtr733MXwQQQAABBBBAAAEEEEAAAQQQQACBE0TAsaq4xN/7rp5TT9WIn/5EuRecL0daWu/jqP72tLap6ZVXtG/JEh3418vKPGOC1UfI/FpQf9379sm7dWvQs3huMidM0Oh/vhB23g2LF2v7zbcEdT3otFFKy8sPehbqxm8l/dree6+vatDppyktN6/vPtyFr6ND7dXV4ap5fhwITKnd6zgOXoNXQAABBBBAAAEEEEAAAQQQQOC4FvggAWYlu0puulHDvvVNOT2eo37hNdNnaMyypWGTUf0H2LfkaW278ab+j+K6HrX498qzVoCFK36/X9Vnn6POHTv7Qka/8HdlTT6z7z7chXfbNlWfM7WvevTSF5VlJfgilY5Nm/S/j02LFEb9MSxAAuwY/s9j6ggggAACCCCAAAIIIIAAAieMQGCJVunCBSqcMydhL+0uKo4q+ZWwAa2OMsePs+3O4XAoY8zYoARYurVXWDzFUzoinma0QQABBBBAAAEEEEAAAQQQQAABBBBIgYCz6NprE5r8Mu/gLilJ+quYfcsiFVfBoRhnZobchUMjNTmi3pmdLVcUYx3RkAcIIIAAAggggAACCCCAAAIIIIAAAikRcJ58x+0JHzi9ZFjC+4zUoXdL5H3E+sekj4hvFZc5YZKCAAIIIIAAAggggAACCCCAAAIIIHDsCDij2ey+u7FRza+/of3LXlLLypXWKZDNtm/Y/Oab2vOLu+XdvsM2LpGVTcuX23bXVd8QtJF9586d2vH9W9X69ju27Q6vNPuB7bj1B2p9593Dq7hHAAEEEEAAAQQQQAABBBBAAAEEEBiAAs5Ic6p79DGtnjRZGy6brc1XfVnrL/msNl99jW0zc7Lj3vvu1//OmxYxWWbbUQyVe+65VyY5Far4fT7t/NGP5Gtr66v2tbWr/ndPat1Fn1Lza6/3PY90Yfqof+J3WvfJi9SyYkWkcOoRQAABBBBAAAEEEEAAAQQQQAABBFIsYJsA62lqshJHt8vv9QZNs2PjxqD7cDf+zk71tLSEq07oc19rq9ZcOEM1D/8ysNKrx7r3Wic+7l+6LJDkev+ZZ8OOZxJ28ZSuONvFMxZtEEAAAQQQQAABBBBAAAEEEEAAAQTiEwicAhmuqd/vD5zm6O/uDgrpqq+XWVXlcNrmz4LaJOPGrM7afWdl4JeM8RgDAQQQQAABBBBAAAEEEEAAAQQQQGDgC9gmwFx5eSr57s3ac9fC4Dexkl/dVhLMXVwc/DyRdw6H0nJyQvbos1ak9V+VlpabGzLu8Ie+jg6ZVWkDrXjKy5V1xhlyDRlivXO29dloi7rq69RaVaXOXbsH2nSZDwIIIIAAAggggAACCCCAAAIIIHBMCdgmwMyblHzrm8o9/3xr36sn9P4L/5Dv4CeN6y6+xEqADZPbStqYxE3gN7Qg8NdnJXCOpjg8Hp366CLlzZwRspuahx7W7soFgTqTPBr/+qsh4w5/aNqYtgOhuAoKVHj1VzT0yjlKHxb+1Mz2detV+8gj2rfkaclakUdBAAEEEEAAAQQQQAABBBBAAAEEEIhNIGICzHSXNWmi9XtAI++5W+aEx/3/+Kf2W8mw1rfeim20KKKdWVka9dSTypl6bhTRkqe0NKq4gRSU/5lPq+y+exXNyrWM0RUqe+hBDZ41S1vnzpPZl42CAAIIIIAAAggggAACCCCAAAIIIBC9QEybeDncbuWed55KF1TqI+++rYrnntGQKz4v8zwRJW3wYJ3+9JKok19mzPTSEYkYOml9FN8wL7C6LZrkV/9J5U2/UOWPLZKsT0MpCCCAAAIIIIAAAggggAACCCCAAALRC8SUAOvfrcNKxGSfdZbKHrhf4994TXkzpvevjvnaXVSkir/9NbDaLJbGnpEjYwlPaWz+pz+l4fNvi3sOJvlY9PVr425PQwQQQAABBBBAAAEEEEAAAQQQQOBEFIg7AdYfK/3kkzXq90/ppO/d0v9x1NdmFVfF88/KfO4XrphP/8wJjxu/+CXV/tZaCXWwNC1frgOvLJe/p6f30YD868zIUGnlndYCrqNbwVU89/qErbgbkFBMCgEEEEAAAQQQQAABBBBAAAEEEEiwgLPp3/9OWJcl3/m2iq+/Lqb+PKeUWZ9SPiu7lVzdjY3aMPty1Tz8SzVZya7uhoa+MZpffU2brKTY+otn9T0biBeFX74q4qmZu63TNjdf8zV5t20L+wpmw/yc8z4Wtp4KBBBAAAEEEEAAAQQQQAABBBBAAIFgAefmr16jlqqq4KdHcXfS979nm8w6vOvsKVNsT0HsqqvT+ksvU9t77x3eNOi+fcOGoPuBdpN/8Wdsp2QSeTUPPBg4XGDv/Q/YxmaffZZtPZUIIIAAAggggAACCCCAAAIIIIAAAocEnL62dm24dLb23H2PfB0dh2rivDKf+hV+9eo4Wx/ZrHPXbnWsH9jJrSNnHfwkLS/P2ttsUvDDw+7aqqv7nnh37Oi7DnWROW58qMc8QwABBBBAAAEEEEAAAQQQQAABBBAIIRDYA8zf2am9996n6nOmaveCu9SxeXOI0OgfDbY2e09UyTpzkrLPPSdR3aWkH0/5KXI47bdbG/KFKzR+5YrAr/zXv7Kdp8s6LZOCAAIIIIAAAggggAACCCCAAAIIIBCdgKt/WFdNjWoefCjwM3ty5Zw/TebkwZyPTpWroKB/qO212RTf4XLJ391tGxdt5bB587TpjTejDR9wce6hQyPOyWWtEjO/aEpafnRx0fRFDAIIIIAAAggggAACCCCAAAIIIHC8C7jGLn/5iHfccPnn5d2+Xd4nn1KD9bOOLlTutGkquvZrypsx/Yj4UA8cbnfCEmC51piDKk4/Zj+FdGZlhyKK/9lRniQZ/8C0RAABBBBAAAEEEEAAAQQQQAABBI49AWfGmDE6/Gc+Owwqfr+a/vMfbZpzpWoesf88r69dWlrfZaQLu1MPTVuHlfApnjs3UjcDtr57376Ezs3X0pLQ/ugMAQQQQAABBBBAAAEEEEAAAQQQOJ4Fgj6B7H3RrIkTdWDZS723QX/rfrtIw+ZFkYzq6QlqF+6mZcUKK7F2lT5S9ZbScnPDhangsku1566FMp9pHmulqzbynFtWrtRe6xTIaErP/v3RhBGDAAIIIIAAAggggAACCCCAAAIIIGAJhEyAZU6aGBbH6fGEreut8FvJL5/X23tr+9e7Y6d6mpvV8Ic/qvj668LGOtPTA59g7v7Zz8PGDNSKrpraiFNzFxWp6ZXlEeMIQAABBBBAAAEEEEAAAQQQQAABBBCITSDk0YRZk6xPIEN8wujMztaIBZURR2hfu1by+SLG9Q+oe/xx+SO0KbzqSpk5HGulp6lJHZs22U7bU1amouu+HjImLSdHeZ+YqRGVdyrH2ouNggACCCCAAAIIIIAAAggggAACCCAQvUDIFWCu/HxVPPeM2teslfnczmxon37SScr9+AUyyZhIpd5snB9j6bRWgh1YulT5F10UtqUZ2yTBaqPdhyxsT8mvaPjTn3Xy/NtsBx7xkztUMGuWWt99V/7OTqUPH64Ma/N/z6hRgX3QTGN3cbGa//tf236oRAABBBBAAAEEEEAAAQQQQAABBBA4JBAyAWaqsydPDvwOhUZ31blrl/b98U+BlVqmD9eQIbYNM0ZXKHPCBLWvW6faRY/aJsBMR8O+cYNaV1WppapKOrjPmKugILBCynYgqzJr8pkadNoodWzeElih5rA+q8wYaw4BGG3b1FVYqJyPTrUSU6tlNqAPtBs31kpOVdi2M581Zk89V21Wu8a/LNHwH9wqR4iVdf07MQcQHHEIQb8Acwqn2SvNrCqjIIAAAggggAACCCCAAAIIIIAAAghEFnD4rRI5LPqIrTfepPefe16Ttm3pW7UUTeu26mqtnfEJjXn5JWWOGxexidlnbPedldr/4lKNf/3ViPH9AxoWL9b2m2/RmGUvBpJv/evsrg3VO+WjVPHC88ocO9YuNKjOtHu7tCzwCWPhlXOC6uK5MXM370BJvcCU2r2O1M+CGSCAAAIIIIAAAggggAACCCCAgJ1AyD3A7BrY1e388R1qXPJ0IMThiDEv4PxgKnXWKrBoillJlWbtB+Y42C6aNn0xjoOvHWPbwDtZr+Xobd/Xof3FB+0c2nX7j9W2erV9cBS1BZ+bHUUUIQgggAACCCCAAAIIIIAAAggggAACRiDsJ5Cx8JgTH3f+cH5CViU1/u0ZDZ8/X+6h9p9OxjK/gRLra2/XhtmXq3zRb5R7wQVxTcvX0SHvtm0mCycldvFeXPM50RutKi5J6ArKE92T90cAAQQQQAABBBBAAAEEEEDgwxA4qhVgJvFV99jjqj773IQkv8wL+q0+G56KfRP9DwPnw+izp7lZG6/4orbOvSHq1WD+7m41v/qadtw2X6snnqnt3/4Oya8P4z+HPhFAAAEEEEAAAQQQQAABBBBA4LgUcFSNGBn3ChaTmJHPFxImI4Y9skwHgZVNW6zN6a3izMyUp6wscG33T1d9vXoOHNAg65TEWEq3dbJl15498pSXyzloUCxN1b527QftPJ7Y2q1ZEzLeM3KknFlZIet6H5qDBdj0vleDvwgggAACCCCAAAIIIIAAAggggEBsAv8HJgx//Y5OsrsAAAAASUVORK5CYII=);
    background-position: left top;
}

.desktop-logo {
    position: relative;
}

.desktop-header {
    height: 75px;
}

.desktop-header h3 {
    font-size: 22px;
    color: #384655;
}

.desktop-header p {
    color: #939393;
    font-size: 16px;
    line-height: 1.44;
}

.desktop-container {
    width: 100%;
    height: calc(100% - 100px);
}

.desktop .row {
    margin: 0;
}

.col-left {
    border-right: 1px solid #dbdbdb;
}

/* * {
  outline: 1px solid red;
} */
#article header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
    margin-bottom: 0px;
    height: 60px;
    position: fixed;
    top: 0;
    transition: top .7s ease;
    z-index: 500;
    width: 100%;
}

.article-navigation {
    width: 100%;
    margin-bottom: 30px;
    border-bottom: solid 1px #d9d9d9;
}

.article-navigation-top {
    width: 100%;
    border-bottom: 5px solid #cc1719;
}

.article-navigation-top-logo {
    width: 208px;
    height: 57px;
    background-color: #cc1719;
    font-family: "Anton";
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 50px;
}

.article-navigation-bottom {
    width: 100%;
    display: flex;
}

.article-navigation-bottom-element {
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto";
    font-size: 14px;
    text-transform: uppercase;
}

.nav-up {
    top: -60px;
}

.no-padding {
    padding: 0;
}

.dropcap {
    font-size: 53px;
    padding-right: 7px;
    font-family: "Merriweather";
    color: #515151;
    font-weight: 200;
    display: block;
    position: relative;
    float: left;
    margin-top: 33px;
    margin-bottom: 0px;
    line-height: 0px;
}

footer {
    margin-top: 60px;
    background-color: #323232;
    height: 200px;
}

.article-header {
    height: calc(100% - 60px);
    width: 100%;
    background-color: gray;
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
}

.article-header-title, .article-home-header-title {
    width: 100%;
}

.article-header-title-container {
    max-width: 1250px;
    margin: 0 auto;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 3;
}

.article-header-background {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-image: linear-gradient(to bottom, transparent, rgba(13, 44, 66, 0.75));
}

.article-header-2 {
    max-width: 1250px;
    margin: 60px auto;
}

.article-header-2 h1 {
    font-family: "Anton";
    font-size: 53px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: left;
}

.article-header-2 h1 .red {
    font-family: "Anton";
    font-size: 53px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: left;
    color: #cc1719;
}

.article-header-2 h2 {
    font-family: "Roboto";
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 300;
    font-style: normal;
    font-stretch: semi-condensed;
    letter-spacing: normal;
    text-align: left;
}

.article-header-2 p {
    font-family: "Merriweather";
    font-size: 16px;
    line-height: 1.9;
    color: #515151;
    margin: 0px 0px 30px 0;
    font-weight: 200;
}

.article-header-2 a {
    color: #2a79d5;
    font-weight: 300;
    font-family: "Merriweather";
    text-decoration: underline;
}

.box-nota {
    background-color: #e5eced;
    padding: 20px;
    display: block;
}

.box-nota ul {
    font-size: 14px;
}

.box-nota .lista-res li {
    font-family: "Merriweather";
    margin: 0px 0px 0px 0px;
    font-weight: 200;
}

/* Custom, iPhone Retina */
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
.article-header-title h1 {
    font-family: "Anton";
    font-size: 63px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
}

.article-home-header-title h1 {
    font-family: "Anton";
    font-size: 50px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
}

.article-header-title .red {
    font-family: "Anton";
    font-size: 63px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: left;
    color: #cc1719;
}

.article-home-header-title .red {
    font-family: "Anton";
    font-size: 50px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: left;
    color: #cc1719;
}

.article-header-title h2 {
    font-family: "Roboto";
    font-size: 24px;
    font-weight: 300;
    font-style: normal;
    font-stretch: semi-condensed;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
}

.article-home-header-title h2 {
    font-family: "Roboto";
    font-size: 21px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
}

.article-main {
    max-width: 1250px;
    margin: 0 auto;
}

.article-main b {
    color: #cc1719;
    font-family: "Merriweather";
    font-weight: 600;
}

.article-home {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    padding: 15px;
}

.article-home b {
    color: #cc1719;
    font-family: "Merriweather";
    font-weight: 600;
}

.article-main h3 {
    font-family: "Anton";
    font-size: 23px;
    color: #4a4a4a;
    margin: 0px 0px 25px 0px;
}

.article-main h4 {
    font-family: "Merriweather";
    font-size: 18px;
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.56;
    color: #4a4a4a;
    margin: 0px 0px 5px 0px;
}

.article-main p {
    font-family: "Merriweather";
    font-size: 16px;
    line-height: 1.9;
    color: #515151;
    margin: 0px 0px 30px 0;
    font-weight: 200;
}

.article-main figure {
    margin-bottom: 30px;
}

.article-main figure figcaption {
    font-size: 13px;
    font-family: "Merriweather";
    font-weight: 200;
    line-height: 1.8em;
    font-style: italic;
    color: #939393;
    padding: 10px;
}

.article-main .lista-res li {
    font-family: "Merriweather";
    margin: 0px 0px 20px 0px;
    font-weight: 200;
}

.article-main span.res-red {
    color: #d0021b;
    font-size: 25px;
    font-weight: 600;
    font-family: "Merriweather";
}

.fixed-col-calculated {
    flex: 0 0 calc(100% - 330px);
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.fixed-col-300 {
    width: 330px;
    flex: 0 0 330px;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .fixed-col-300 {
        display: none;
    }

    .fixed-col-calculated {
        flex: 0 0 100%;
    }
}

.highlight-box {
    margin-top: 25px;
    margin-bottom: 50px;
    background-color: #f6f6f6;
    padding: 25px 50px;
    border-right: solid 5px #d0021b;
}

.highlight-text {
    font-family: Roboto;
    font-size: 34px;
    font-weight: 200;
    font-style: italic;
    line-height: 1.32;
    text-align: right;
    color: #4a4a4a;
}

.line-separator {
    width: 70px;
    height: 4px;
    background-color: #cc1719;
    margin: 60px 0 0 0;
}

.article-author {
    display: flex;
    justify-content: start;
    align-items: center;
}

.article-author-name {
    font-family: Roboto;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    color: #303030;
    padding-left: 10px;
}

.article-author-img {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    overflow: hidden;
    background-size: cover;
}

.article-box {
    background-color: #fafafa;
    width: 100%;
}

.article-box-title {
    color: #cc1719;
    font-family: Roboto;
    font-size: 12px;
}

.article-box ul {
    padding: 0;
    margin: 0;
}

.article-box li {
    font-family: Roboto;
    font-size: 14px;
    color: #4a4a4a;
    border-bottom: solid 1px #dedede;
    list-style: none;
    padding: 15px;
}

.article-box li:first-child {
    border-top: solid 3px #cc1719;
}

.article-box-list-title {
    font-family: Roboto;
    font-size: 11px;
    color: #cc1719;
}

/* PROGRESS BAR */
.KW_progressContainer {
    left: 0;
    width: 100%;
    height: 4px;
    margin-top: 0;
    z-index: 2000;
    position: absolute;
    bottom: -4px;
    overflow: hidden;
    background-color: transparent;
    content: "";
    display: table;
    table-layout: fixed;
}

.KW_progressBar {
    width: 0;
    float: left;
    height: 100%;
    z-index: 2000;
    max-width: 100%;
    background-color: #cc1719;
}

.followup-box {
    text-align: right;
    padding-right: 10px;
    border-right: solid 1px #cc1719;
}

.followup-box figure {
    max-width: auto;
}

.followup-box figure img {
    width: 80%;
}

.followup-box figcaption p {
    font-size: 10px;
    line-height: 1.3em;
    margin: 0px;
}

.followup-box-text {
    margin-top: 10px;
    text-align: right;
    line-height: 1.25;
    color: #787878;
    font-size: 12px;
}

.article-home-header-title {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.article-home-header-title .article-title {
    border-bottom: solid 1px #d9d9d9;
}

.article-section-h-title {
    font-family: "Merriweather";
    font-weight: 700;
    font-size: 24px;
}

.article-section-category {
    font-family: "Roboto";
    font-size: 13px;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #cc1719;
    text-transform: uppercase;
}

.article-section-date {
    font-family: "Roboto";
    text-align: left;
    font-size: 14px;
    color: #2d2d2d;
    font-weight: 300;
    font-style: italic;
}

.article-section-title {
    font-family: "Merriweather";
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.article-section-paragraph {
    font-family: "Merriweather";
    font-size: 17px;
    font-weight: 300;
}

.article-section-divider {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto";
    border-bottom: 4px solid #cc1719;
    padding-left: 15px;
}

.article-full-section {
    margin-top: 60px;
    background-color: blue;
    width: 100%;
    height: 600px;
}


/* */

/*
MODIFICARE LA REGOLA ALLA RIGA 1449 DEL FILE main.bundle.css CON QUESTA:

.was-validated .form-control:not(.is-invalid):valid:focus,
.form-control.is-valid:not(.is-invalid):focus,
.was-validated .custom-select:not(.is-invalid):valid:focus,
.custom-select.is-valid:not(.is-invalid):focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
*/

/* FIX PANNELLO CON PULSANTE TONDO */
.floating-btn.floating-btn-mini {
    width: 30px;
    height: 30px;
    font-size: 22px;
}

.floating-container-2 {
    padding-bottom: 0px;
}

.floating-container-2 .floating-btn.floating-btn-mini {
    /*margin-left:20px;*/
    display: inline-block;
    padding: 4px 9px;
    line-height: 1;
}

.floating-container-2 .floating-label {
    display: inline-block;
}

/* FIX PULSANTE VERDE */

.card .btn {
    font-size: 12px;
}

/* SCHERMATA CARICAMENTO */
.mfp-wrap {
    position: absolute;
    background: rgba(245, 245, 245, 0.9);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    text-align: center;
    padding-top: 20vh;
    cursor: progress;
}

.mfp-container {
    background: #fff;
    padding: 20px;
}

/* FORM CONTROL CARTA DI CREDITO */

.form-group.form-group-cc-cardexpiring {
    height: auto;
    position: relative;
    display: block;
    width: 100%;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e5eced;
    box-shadow: 0 11px 4px -10px #e5eced;
    border-radius: 5px;
    font-size: 14px;
    border-left: 3px solid #a6afba;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding: 30px 10px 10px 10px;
}

.form-group.form-group-cc-cardexpiring > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    margin-left: 3px;
    line-height: 1.5;
    border: 1px solid transparent;
    transition: all .1s ease-in-out;
    font-size: 11px;
    color: #2a79d5;
    display: block;
    padding: 8px 10px 8px 5.33333px;
}

.form-group.form-group-cc-cardexpiring select.form-control {
    display: inline-block;
    width: 80px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #e5eced;
    border-radius: 5px;
}

.form-group.form-group-cc-cardexpiring select.form-control + span {
    padding: 0 6px;
}

.form-group.form-group-cc-cardexpiring select.form-control ~ select.form-control {
    width: 90px;
}

.form-group.form-group-cc-cardexpiring label:first-child + .form-control + label {
    display: none !important;
}

/* SELEZIONE CARTA DI CREDITO ESISTENTE */
.cc-selection {
    position: relative;
    margin: 0 !important;
}

.cc-selection .form-check + input {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    /*display: block;*/
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #e5eced;
    box-shadow: 0 11px 4px -10px #e5eced;
    border-radius: 5px;
    font-size: 14px;
    border-left: 3px solid #a6afba;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding: 6px 10px;
}

.cc-selection .form-check.form-checked + input.cc-selection-ccv {
    display: block;
}

/* FIX MESSAGGI ERRORE */

.form-label-group > label.error,
.form-label-group > .invalid-feedback,
input.cc-selection-ccv + label.error {
    color: #d80027 !important;
    top: 0;
    position: relative;
    left: 0;
    padding: 4px 0px;
    font-size: initial !important;
}


/* Nuovi elementi Jody */
.product-item {

}

.product-item h

3
{
    color: #498fe2
;
    font-weight: bold
;
}

.product-item .product-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.product-item .product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #dc3545;
    cursor: pointer;
    z-index: 10;
}

.product-item .product-details-toggle {
    text-align: right;
    font-size: 12px;

    bottom: 6px;
    right: 6px;
    color: #acacac;
    font-weight: bold;
}

.product-item .product-scegli {
    text-align: left;
    font-size: 12px;

    bottom: 6px;
    color: #acacac;
    font-weight: bold;
    text-decoration: underline;
}

.product-item .product-regala {
    text-align: left;
    font-size: 12px;

    color: #acacac;
    font-weight: bold;
    text-decoration: underline;
}

.product-item .product-details {

    /*margin:12px 6px 6px 6px;*/
    border-top: 1px solid #d8d8d8;
    color: #aaa;
    font-size: 12px;
    width: 100%;
    padding: 10px;
}


/* PRODUCT INFO */
.product-info {
    margin-top: 10px !important;
}

.product-info > div {
    width: 100%;
    display: flex;
    justify-content: space-around;
    color: #777;
    padding: 4px !important;
}

.product-info > div > span {
    display: inline-block;
    width: 32%;
    text-align: center;
    padding: 2px 10px;
    line-height: 1.1;
}

.product-info > div > span + span {
    border-left: 1px solid #ddd;
}

.product-info > div > span[data-part=duration] {
    font-size: 20px;
}

.product-info > div > span[data-part=price] {
    font-size: 20px;
}

.product-info > div > span[data-part=other] {
    font-size: 12px;
    text-align: left;
}

/* PRODUCT SWITCH */
label.product-switch {
    display: inline-block;
    line-height: 0;
    margin: 0 0 0 4px;
    vertical-align: bottom;
    cursor: pointer;
}

label.product-switch > input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    float: left;
}

label.product-switch > span {
    display: inline-block;
    width: 34px;
    height: 12px;
    background: #ccc;
    border-radius: 100px;
    position: relative;
    padding-top: 0px;
    white-space: nowrap;
    margin: 0 0 4px 6px;
    line-height: 1.4;
    vertical-align: middle;
}

label.product-switch > span::after {
    display: block;
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
    box-shadow: 0 1px 3px #888;
}

label.product-switch > input:checked + span {
    background: #498fe280;
}

label.product-switch > input:checked + span::after {
    left: calc(100%);
    transform: translateX(-100%);
    background: #498fe2;
}

label.product-switch > input:not([disabled]) + span:active::after {
    width: calc(60% - 2px);
}

label.product-switch > input[disabled] + span {
    opacity: 0.5;
    cursor: default;
}

.product-item .card-body {
    min-height: 120px;
}

.navbar-bergamo {
    border-top: solid 4px #c60e7b;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}

.navbar-como {
    border-top: solid 4px #38689a;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}

.navbar-lecco {
    border-top: solid 4px #38689a;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}

.navbar-sondrio {
    border-top: solid 4px #38689a;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}

.navbar-orobie {
    border-top: solid 4px #c60e7b;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}

.navbar-sesaab {
    border-top: solid 4px #c60e7b;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}


.navbar-monza {
    border-top: solid 4px #f60;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}

.navbar-lodi {
    border-top: solid 4px #38689a;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}

.navbar-spm {
    border-top: solid 4px #38689a;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(192, 192, 192, 0.5);
}


.bar-top .menu-skille {
    max-width: 1200px;
    align-items: center;
    color: #757575;
    font-family: "Roboto";
    font-size: 14px;
    position: absolute;
    right: 20px;
    list-style: none;
    display: flex;
}

.bar-top .menu-skille li {
    list-style: none;
    margin-bottom: unset;
}

h3.title-pack {
    color: #000000;
    font-weight: 900;
    font-size: 22px;
}

.red-title {
    color: #cd071e;
}

.mini-title-pack {
    font-size: 12px;
    margin-left: 10px;
    color: #8e8e8e;
    font-weight: 600;
}

.description-pack p {
    font-size: 13px;
    color: #3d3d3d;
    margin: 0;
}

/* lista pacchetto */

.product-det-dr {
    border-top: 1px dotted #878787;
    padding-top: 10px;
    margin-top: 10px;
    padding: 1.25rem;
}

ul.lista-pack {

    font-size: 12px;
    color: #3d3d3d;
    margin: 0;
    padding: 0px;

}

.price-pack, .duration-pack {

    font-weight: 800;
    color: #636363;
    font-size: 18px !important;
    line-height: 25px !important;

}

.auto-pack {
    /* font-size: 12px!important;
    line-height: 12px!important;
    line-height: 25px!important; */
}

.total-pack {


    font-size: 22px;
    font-weight: 800;


}

.total-pack .totale {

    font-size: 15px;
    color: #636363;


}

.yellow {
    color: #ffa200;
}


.product-switch {

}


.product-info-abbonamento {
    padding: 6px;
    font-family: Roboto;
}

.product-info-abbonamento p {
    opacity: 0.7;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.29;
    color: #273d52;
}

.product-info-abbonamento .abbonamento-note {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.29;
    color: #2a79d5;
}

.product-info-abbonamento [data-part=status] {
    display: block;
    opacity: 0.8;
    font-size: 16px;
    font-weight: 500;
    margin: 4px 0;
}

.product-info-abbonamento [data-part=status].abbonamento-stato-attesa {
    color: #d0021b;
}

.product-info-abbonamento [data-part=status].abbonamento-stato-attivo {
    color: #1ac483;
}

.product-info-abbonamento [data-part=status].abbonamento-stato-scaduto {
    color: #ffcccc;
}

.product-info-abbonamento .btn {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    height: auto;
}

.product-info-abbonamento .btn-success {
    background-color: #1ac483;
}

.product-info-abbonamento .btn-warning {
    background-color: #f5a623;
}

.product-info-abbonamento .btn-danger {
    background-color: #d0021b;
}

.Nome-Edicola {

    height: 18px;
    opacity: 0.9;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #273d52;
}

.Indirizzo-Edicola {
    height: 14px;
    opacity: 0.7;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #273d52;
}

.btn-action {

    background: #FFFFFF;
    border: 1px solid #4A90E2;
    box-shadow: 0 2px 11px 0 rgba(203, 207, 211, 0.50) !important;
    border-radius: 5px;
    color: #4A90E2;
    font-weight: 600;
    height: 50px;
    font-size: 15px !important;
    position: relative;


}

.btn-action:after {
    /* content: url(right-arrow.svg); */
    margin: 3px 6px 0px 10px;
    vertical-align: middle;
    position: absolute;
    right: 10px;


}

.btn-action-dx:after {
    content: url('/static/images/right-arrow.svg');
    vertical-align: middle;
}

.btn-action-sx:after {
    content: url('/static/images/right-arrow.svg');
    vertical-align: middle;
    margin: 0px 6px 0px 10px;
    transform: rotate(180deg);


}

.btn-action-up:after {
    content: url('/static/images/right-arrow.svg');
    vertical-align: middle;
    transform: rotate(270deg);
    margin: 0px 6px 0px 10px;


}

.btn-action-down:after {
    content: url('/static/images/right-arrow.svg');
    vertical-align: middle;
    transform: rotate(90deg);
    margin: 0px 6px 0px 10px;
    right: 15px;

}


.btn-action:before {

    margin: 0px 6px 0px 0px;
    height: 35px !important;
    vertical-align: middle;
    position: absolute;
    left: 0px;
}

.btn-ico-trovaedicola:before {
    content: url('/static/images/ico-trovaedicola.svg');
    margin: 0px 6px 0px 0px;
    height: 35px !important;
    vertical-align: middle;
    transform: scale(.70);
}

.btn-ico-mappaedicola:before {
    content: url('/static/images/ico-mappaedicole.svg');
    margin: 0px 6px 0px 0px;
    height: 35px !important;
    vertical-align: middle;
    transform: scale(.70);
}

.btn-ico-direzioniedicole:before {
    content: url('/static/images/ico-direzioniedicole.svg');
    margin: 0px 4px 0px 0px;
    height: 35px !important;
    vertical-align: middle;
    transform: scale(.65);
}

.pw-line {
    border-top: 1px solid #E9E9E9;
    margin: 5px 10px 0px 10px;
    width: auto !important;
}

.pw-add-info {
    font-size: 14px;
    text-align: center;
    margin: -5px 10px 5px 10px;
    padding: 0px 0px 0px 0px !important;
    font-style: italic;
}

.duration {
    margin-top: 1px;
}

.price {
    font-size: 16px !important;
    margin-top: 4px;
}

.other {
    margin-top: 6px;
    text-align: center;
}


.ui-helper-hidden-accessible {
    display: none;
}

.ui-autocomplete {
    background-color: #ffffff;
    width: 10%;
}

.ui-menu-item {
    list-style-type: none;
}

.ui-menu .ui-menu-item a {
    border-radius: 0px;
}

.card-footer h3 {
    font-size: 15px;
    color: #273d52;
}

.card-footer p {
    font-size: 12px;
    color: #273d52;
    margin: 0;
}



/* Pagian Profilo */
.product-item h3 {
            color: #498fe2;
            font-weight: bold;
        }

        .product-item .product-image {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: 50% 50%;
        }

        .product-item .product-remove {
            position: absolute;
            top: 10px;
            right: 10px;
            color: #dc3545;
            cursor: pointer;
            z-index: 10;
        }

        .product-item .product-details-toggle {
            text-align: right;
            font-size: 12px;
            position: absolute;
            bottom: 6px;
            right: 6px;
            color: #acacac;
            font-weight: bold;
        }


        .product-item .product-details {


            margin: 12px 0 32px 0;
            border-top: 1px solid #d8d8d8;
            border-bottom: 1px solid #d8d8d8;
            color: #aaa;
            font-size: 12px;
            width: 100%;
            padding: 10px;
        }

        .product-item.product-details-show .product-details {
            display: block;
        }

        /* PRODUCT INFO */
        .product-info {
            margin-top: 10px !important;
        }

        .product-info > div {
            width: 100%;
            display: flex;
            justify-content: space-around;
            color: #777;
            padding: 4px !important;
        }

        .product-info > div > span {
            display: inline-block;
            width: 32%;
            text-align: center;
            padding: 2px 10px;
            line-height: 1.1;
        }

        .product-info > div > span + span {
            border-left: 1px solid #ddd;
        }

        .product-info > div > span[data-part=duration] {
            font-size: 20px;
        }

        .product-info > div > span[data-part=price] {
            font-size: 20px;
        }

        .product-info > div > span[data-part=other] {
            font-size: 12px;
            text-align: left;
        }

        /* PRODUCT SWITCH */
        label.product-switch {
            display: inline-block;
            line-height: 0;
            margin: 0 0 0 4px;
            vertical-align: bottom;
            cursor: pointer;
        }

        label.product-switch > input[type=checkbox] {
            height: 0;
            width: 0;
            visibility: hidden;
            float: left;
        }

        label.product-switch > span {
            display: inline-block;
            width: 34px;
            height: 12px;
            background: #ccc;
            border-radius: 100px;
            position: relative;
            padding-top: 0px;
            white-space: nowrap;
            margin: 0 0 4px 6px;
            line-height: 1.4;
            vertical-align: middle;
        }

        label.product-switch > span::after {
            display: block;
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            width: 16px;
            height: 16px;
            background: #fff;
            border-radius: 90px;
            transition: 0.3s;
            box-shadow: 0 1px 3px #888;
        }

        label.product-switch > input:checked + span {
            background: #498fe280;
        }

        label.product-switch > input:checked + span::after {
            left: calc(100%);
            transform: translateX(-100%);
            background: #498fe2;
        }

        label.product-switch > input:not([disabled]) + span:active::after {
            width: calc(60% - 2px);
        }

        label.product-switch > input[disabled] + span {
            opacity: 0.5;
            cursor: default;
        }

        /* Lista abbonamenti */

        .profile {
            font-family: Roboto;
            font-style: normal;
            font-stretch: normal;
            letter-spacing: normal;
        }

        .profile-label {

            height: 23px;
            font-size: 13px;
            font-weight: 900;
            line-height: 1.77;
            margin-bottom: 0px;
            color: #2a79d5;
        }

        .profile-big {
            height: 38px;
            font-size: 29px;
            font-weight: normal;
            line-height: 0.79;
            color: #555555;
            border-bottom: 1px solid #e4e4e4;
        }

        .profile-normal {
            height: 25px;
            opacity: 0.7;
            font-size: 16px;
            font-weight: 500;
            line-height: normal;
            color: #273d52;
            border-bottom: 1px solid #e4e4e4;
        }

        .form [readonly].form-control:focus {
            border: none;
        }

        .form-group {
            /*border-bottom: 1px solid #e9e9e9;*/
            padding-bottom: 2px;
            margin-bottom: 10px;
        }

        /*.form-group input {*/
        /*    padding-left: 0;*/
        /*    padding-right: 0;*/
        /*}*/

        /*.form-group label {*/
        /*    padding-left: 0;*/
        /*    padding-right: 0;*/
        /*    border: none;*/
        /*}*/

        .form-label-group input:not(:placeholder-shown) ~ label {
            padding-top: 8px;
            padding-bottom: 5.33333px;
            font-size: 13px;
            font-weight: bold;
            line-height: 23px;
            color: #2a79d5;
            margin-left: 0;
        }

        .form-label-group.form-group-big input:not(:placeholder-shown) {
            font-size: 29px;
            font-weight: normal;
            font-style: normal;
            font-stretch: normal;
            line-height: 0.79;
            letter-spacing: normal;
            color: #555555;
            height: 70px;
        }

        .form-label-group input:not(:placeholder-shown) {
            font-size: 16px;
            font-weight: 500;
            font-style: normal;
            font-stretch: normal;
            line-height: normal;
            letter-spacing: normal;
            color: #667684;
        }

        a.abbonamenti-accordion-header,
        a.abbonamenti-accordion-header:visited {
            display: block;
            font-family: Roboto;
            font-size: 16px;
            font-weight: 500;
            font-style: normal;
            font-stretch: normal;
            line-height: normal;
            letter-spacing: normal;
            color: #555555;
            padding: 14px 23px;
            background: #fff;
            border: 1px solid #e4e4e4;
            text-decoration: underline;
        }

        a.abbonamenti-accordion-header + a.abbonamenti-accordion-header {
            border-top: none;
        }

        a.abbonamenti-accordion-header.active {
            color: #2a79d5;
        }

        .color-red {
            color: #d0021b;
        }

        .product-item.product-item-abbonamento {
            font-family: Roboto;
        }

        .product-item.product-item-abbonamento h3 {
            color: #1f1f1f;
        }

        .product-item.product-item-abbonamento .product-description {
            font-size: 12px;
            font-weight: 500;
            line-height: 1.33;
            color: #273d52;
            opacity: .7;
        }

        .product-item.product-item-abbonamento .product-details-toggle {
            bottom: 0;
            right: 8px;
        }

        label.product-switch-arrows {
            cursor: pointer;
            margin: 0;
            font-size: 12px;
            line-height: 1.4;
            background: #f7f7f7;
            color: #2a79d5;
            padding: 4px 6px;
            border-radius: 5px 5px 0 0;
        }

        label.product-switch-arrows > input {
            height: 0;
            width: 0;
            visibility: hidden;
            float: left;
        }

        label.product-switch-arrows > input + i,
        label.product-switch-arrows > input + i + i {
            margin-left: 4px;
        }

        label.product-switch-arrows > input + i + i {
            display: none;
        }

        label.product-switch-arrows > input:checked + i {
            display: none;
        }

        label.product-switch-arrows > input:checked + i + i {
            display: inline;
        }

        .product-info-abbonamento {
            padding: 6px;
            font-family: Roboto;
        }

        .product-info-abbonamento p {
            opacity: 0.7;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.29;
            color: #273d52;
        }

        .product-info-abbonamento .abbonamento-note {
            font-size: 14px;
            font-weight: 900;
            line-height: 1.29;
            color: #2a79d5;
        }

        .product-info-abbonamento [data-part=status] {
            display: block;
            opacity: 0.8;
            font-size: 16px;
            font-weight: 500;
            margin: 4px 0;
        }

        .product-info-abbonamento [data-part=status].abbonamento-stato-attesa {
            color: #d0021b;
        }

        .product-info-abbonamento [data-part=status].abbonamento-stato-attivo {
            color: #1ac483;
        }

        .product-info-abbonamento .btn {
            color: #ffffff;
            font-size: 17px;
            font-weight: 500;
            height: auto;
        }

        .product-info-abbonamento .btn-success {
            background-color: #1ac483;
        }

        .product-info-abbonamento .btn-warning {
            background-color: #f5a623;
        }

        .product-info-abbonamento .btn-danger {
            background-color: #d0021b;
        }
        /* Fine lista abbonamenti */