﻿:root {
    /* COLORS */

    --clr-jv-black: #000;
    --clr-jv-white: #fff;
    --clr-jv-teal_dark: #015962;
    --clr-jv-teal_light: #3aadb4;
    --clr-jv-pink: #e56e69;
    --clr-jv-yellow: #ffe84c;
    --clr-jv-pink_light: #facfc7;
    --clr-jv-grey: #a6b8c4;
    --crl-jv-orange_dark: #ed6942;
    --crl-jv-orange_light: #f0a642;
    --crl-jv-green_light: #21b096;
    --clr-jv-purple: #8f2457;
    /* FONTS */
    --ff-jv-title: Unbounded, Verdana, system-ui, sans-serif;
    --ff-jv-subtitle: Trirong, Georgia, serif;
    --ff-jv-body: Figtree, Arial, system-ui, sans-serif;
    /*
    fs - FONT SIZE;
    ls - LETTER SPACING;
    lh - LINE HEIGHT
   */
    /*
    PARAGRAPH: font-family: Figtree; font-weigth: 400;
   */

    --fs-jv-paragraph: clamp(1rem, 0.9583rem + 0.1852vw, 1.125rem);
    --ls-jv-paragraph: clamp(0.03rem, 0.0287rem + 0.0056vw, 0.03375rem);
    --lh-jv-paragraph: clamp(1.375rem, 1.3333rem + 0.1852vw, 1.5rem);
    /*
    PARAGRAPH BIG: font-family: Unbounded; font-weigth: 300;
   */
    --fs-jv-pbig: clamp(1.4375rem, 1.3333rem + 0.463vw, 1.75rem);
    --ls-jv-pbig: clamp(0.02875rem, 0.0267rem + 0.0093vw, 0.035rem);
    --lh-jv-pbig: clamp(2.3125rem, 2.0896rem + 0.9907vw, 2.98125rem);
    /*
    TITLES: font-family: Unbounded; font-weight: 400;
   */

    --fs-jv-title-xl: clamp(2.8125rem, 2.2917rem + 2.3148vw, 4.375rem);
    --ls-jv-title-xl: clamp(0.02813rem, -0.0062rem + 0.1528vw, 0.13125rem);
    --lh-jv-title-xl: clamp(3.1875rem, 2.625rem + 2.5vw, 4.875rem);
    --fs-jv-title-lg: clamp(1.75rem, 1.2917rem + 2.037vw, 3.125rem);
    --ls-jv-title-lg: clamp(0.035rem, 0.0258rem + 0.0407vw, 0.0625rem);
    --lh-jv-title-lg: clamp(2.1875rem, 1.6458rem + 2.4074vw, 3.8125rem);
    --fs-jv-title-md: clamp(1.5rem, 1.3702rem + 0.5769vw, 2.0625rem);
    --ls-jv-title-md: clamp(0.03rem, 0.0274rem + 0.0115vw, 0.04125rem);
    --lh-jv-title-md: clamp(1.75rem, 1.6058rem + 0.641vw, 2.375rem);
    --fs-jv-title-sm: clamp(1.125rem, 1.0417rem + 0.3704vw, 1.375rem);
    --ls-jv-title-sm: clamp(0.0225rem, 0.0208rem + 0.0074vw, 0.0275rem);
    --lh-jv-title-sm: normal;
    --fs-jv-title-xs: clamp(1rem, 0.9167rem + 0.3704vw, 1.25rem);
    --ls-jv-title-xs: clamp(0.03375rem, 0.0313rem + 0.0111vw, 0.0375rem);
    --lh-jv-title-xs: clamp(1.25rem, 1.0833rem + 0.7407vw, 1.6875rem);
    /*ACCENT TEXT/SUBTITLES: font-family: Trirong; font-weight: 700 */

    --fs-jv-kicker: clamp(1.125rem, 1.0417rem + 0.3704vw, 1.375rem);
    --ls-jv-kicker: clamp(0.03375rem, 0.0313rem + 0.0111vw, 0.04125rem);
    --lh-jv-kicker: clamp(1.25rem, 1.0833rem + 0.7407vw, 1.75rem);
    --fs-jv-subtitle: clamp(1rem, 0.9167rem + 0.3704vw, 1.25rem);
    --ls-jv-subtitle: clamp(0.03375rem, 0.0313rem + 0.0111vw, 0.0375rem);
    --lh-jv-subtitle: clamp(1.25rem, 1.0833rem + 0.7407vw, 1.6875rem);
    /* BORDER RADIUS */
    --br-jv-sm: 0.94rem;
    --br-jv-md: 1.56rem;
    --br-jv-lg: 1.875rem;
}

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");


/* CSS Document */

body {
    margin: 0px;
    padding: 0px;
    background: #ffffff;
    font-family: var(--ff-jv-body);
    color: #393939;
}

textarea, button, select, input[type="search"], input[type="text"] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

img {
    max-width: 100%;
}

.disabled {
    cursor: default !important;
}

a {
    color: #002972;
    text-decoration: none;
    outline: none !important;
}

    a:hover {
        color: var(--clr-jv-teal_dark);
        text-decoration: none;
    }

.clearfix:after {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    height: 0;
    clear: both;
    padding: 0;
    margin: 0;
}

.bottom-space-20 {
    padding-bottom: 20px;
}

#wrapper {
    margin: 0 auto;
    width: 100%;
}

.txt-align-center {
    text-align: center;
}

.txt-align-left {
    text-align: left;
}

.txt-align-right {
    text-align: right;
}

input[type="text"],
button,
textarea,
select,
input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.fl-lft {
    float: left;
}

.fl-rht {
    float: right;
}

/*--Start header--*/
.header {
    width: 100%;
    background: #FFFFFF;
    padding: 5px 0;
}

.logo {
    padding: 0;
}

.logo-agri {
    float: right;
}

.account-menu {
    float: right;
    padding: 0px 0;
    line-height: 40px;
}

    .account-menu ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .account-menu ul li {
            display: inline-block;
            font-weight: bold;
            color: #ffffff;
            font-size: 12px;
            text-transform: uppercase;
            padding: 0 8px 0 10px;
            background: url(../images/dot-line.png) left center no-repeat;
        }

            .account-menu ul li:first-child {
                background: none;
            }

            .account-menu ul li i {
                /*font-size: 18px;*/
                vertical-align: middle;
            }

            .account-menu ul li a {
                color: white !important;
                text-decoration: none;
            }

                .account-menu ul li a:hover {
                    color: var(--clr-jv-teal_dark);
                }

            .account-menu ul li.active a {
                color: var(--clr-jv-teal_dark);
            }

            .account-menu ul li.name {
                font-weight: normal;
                text-transform: none;
            }

                .account-menu ul li.name span {
                    font-weight: bold;
                }

/*--End header--*/

/*--Start Nav--*/
.nav-con {
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c0aa69+0,ac9550+100 */
    background: var(--clr-jv-teal_dark); /* Old browsers */
}

.nav-custom {
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c0aa69+0,ac9550+100 */
    background: inherit; /* IE6-8 */
}

    .nav-custom .navbar-collapse {
        padding: 0;
        margin: 0;
    }

    .nav-custom .navbar-nav > li {
        font-size: 13px;
        color: #ffffff;
        position: relative;
    }

        .nav-custom .navbar-nav > li > a {
            color: #c3c3c3;
            padding: 16px 12px;
            display: block;
        }

            .nav-custom .navbar-nav > li > a:hover, .nav-custom .navbar-nav > li > a:focus {
                color: rgba(239,63,54,1);
                font-weight: bold;
            }

    .nav-custom .navbar-nav > .active > a, .nav-custom .navbar-nav > .active > a:hover, .nav-custom .navbar-nav > .active > a:focus {
        background-color: rgba(0, 0, 0, 0);
        color: #393939;
    }

    .nav-custom .navbar-nav > .open > a, .nav-custom .navbar-nav > .open > a:hover, .nav-custom .navbar-nav > .open > a:focus {
        background-color: rgba(0, 0, 0, 0);
        color: #393939;
    }

    .nav-custom .navbar-nav > li ul {
        display: none;
        position: absolute;
        left: 0px;
        top: 52px;
        z-index: 200;
        padding: 10px 5px;
        background-color: black;
        margin: 0px;
        width: auto;
        min-width: 150px;
        max-width: 300px;
        list-style: none;
    }


        .nav-custom .navbar-nav > li ul > li > a {
            display: block;
            padding: 5px;
            color: #FFFFFF;
        }

            .nav-custom .navbar-nav > li ul > li > a:hover {
                background-color: rgba(239,63,54,1);
                color: #FFFFFF;
            }

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 30px;
}

    .embed-container iframe, .embed-container object, .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.inline-text p {
    padding-bottom: 20px;
    margin: 0;
    color: #393939;
    font-size: 16px;
    line-height: 20px;
}

.position-r {
    position: relative;
}

.lang-bx {
    width: 100%;
}

/*--End Nav--*/

/*--start Slider--*/
.slider-con {
    width: 100%;
}
/*--End Slider--*/

/*--start Body--*/
.body-con {
    padding: 30px 0;
}

.indxbdy-bx {
    padding: 40px 55% 26px 26px;
    background-color: #f0f0f0;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 30px;
    min-height: 264px;
}


    .indxbdy-bx h2 {
        color: #393939;
        font-weight: bold;
        font-size: 20px;
        line-height: 22px;
        height: 66px;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

        .indxbdy-bx h2 span {
            width: 48px;
            height: 2px;
            background: #c0aa69;
            display: block;
            margin: 18px 0 15px 0;
        }

    .indxbdy-bx p {
        color: #393939;
        font-size: 12px;
        line-height: 14px;
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 20px 0;
    }

.vai-btn {
    padding: 14px 14px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    background: var(--clr-jv-teal_dark);
    color: #ffffff;
    text-decoration: none;
}

    .vai-btn:hover, .vai-btn:focus {
        background: black;
        color: #ffffff;
        text-decoration: none;
    }
/*--End Body--*/

/*--Start footer--*/
.footer {
    width: 100%;
    background: #393939;
    padding-top: 30px;
    padding-bottom: 30px;
}

    .footer .socials {
        text-align: left;
    }

.ftr-socal {
    text-align: right;
}

    .ftr-socal li {
        display: inline-block;
        color: #888888;
        font-size: 22px;
        margin: 0 0 0 14px;
    }

        .ftr-socal li a {
            color: #888888;
        }

            .ftr-socal li a:hover {
                color: var(--clr-jv-teal_dark);
            }

.footer .quicklinks {
    text-align: left;
}

    .footer .quicklinks ul {
        margin: 0px;
        padding: 0px;
    }

        .footer .quicklinks ul li {
            display: inline;
        }

@media(max-width:767px) {
    .footer .quicklinks ul li {
        display: block;
        text-align: center;
    }

        .footer .quicklinks ul li:after {
            content: "" !important;
        }
}

.footer .quicklinks ul li:after {
    content: " - ";
    color: var(--clr-jv-teal_dark);
}

.footer .quicklinks ul li:last-child:after {
    content: "";
}

.footer .quicklinks ul li a {
    color: var(--clr-jv-teal_dark);
    font-size: 13px;
    font-weight: normal;
}

    .footer .quicklinks ul li a:hover {
        text-decoration: underline;
    }

/*--End footer--*/

/*--Start inner page--*/
.inner-bdy-hed-con {
    width: 100%;
    background: #f0f0f0;
    padding: 20px 0;
}

    .inner-bdy-hed-con h1 {
        font-size: 32px;
        color: #393939;
        padding: 0;
        margin: 8px 0 0 0;
    }

.rht-btn {
    float: right;
}

.innerbody-con {
    width: 100%;
}

.innerbdy-area {
    padding: 70px 0;
}

.inner-area {
    padding: 0 98px;
}

    .inner-area p {
        padding-bottom: 20px;
        margin: 0;
        color: #393939;
        font-size: 16px;
        line-height: 20px;
    }

    .inner-area h2 {
        margin: 0;
        padding: 0 0 30px 0;
        font-size: 32px;
        font-weight: normal;
    }

    .inner-area .img-bx {
        margin-bottom: 20px;
    }

    .inner-area .doc-down-btn {
        padding: 0;
        margin: 20px 0 0 0;
        list-style: none;
        border-top: 1px solid #f0f0f0;
    }

        .inner-area .doc-down-btn li {
            margin: 0;
            font-size: 16px;
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
        }

            .inner-area .doc-down-btn li i {
                padding-right: 2px;
                vertical-align: text-top;
                font-size: 18px;
            }

            .inner-area .doc-down-btn li a {
                display: block;
                color: #393939;
                text-decoration: none;
            }

                .inner-area .doc-down-btn li a:hover {
                    color: var(--clr-jv-teal_dark);
                }


.login-con .col-md-6 {
    margin: 0 auto;
    float: none;
}

.log-icon-bx {
    width: 165px;
    height: 165px;
    border-radius: 100%;
    background-color: #E5352D;
    margin: 0 auto 50px auto;
    text-align: center;
    padding: 42px 28px;
    color: #ffffff;
    font-size: 16px;
}

    .log-icon-bx span {
        padding-bottom: 15px;
        display: block;
        font-size: 20px;
    }

    .log-icon-bx p {
        color: #ffffff;
        font-size: 16px;
        line-height: 16px;
        font-weight: bold;
    }

.logfrm-bx {
    margin-bottom: 30px;
    text-align: center;
}

    .logfrm-bx p {
        color: #393939;
        font-size: 13px;
    }

        .logfrm-bx p a {
            color: #393939;
            text-decoration: none;
        }

            .logfrm-bx p a:hover {
                color: var(--clr-jv-teal_dark);
            }

.gray label {
    color: #393939;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
}

.red label {
    color: #ff0000;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
}

.logfrm-bx input[type="text"], .logfrm-bx input[type="password"] {
    text-align: center;
}

.login-btn {
    background: var(--clr-jv-teal_dark) !important;
    font-family: var(--ff-jv-body);
    text-align: center;
    font-size: 15px;
    color: #ffffff !important;
    border: none;
    text-transform: uppercase;
    padding: 15px 50px;
    text-decoration: none !important;
    border-radius: 60px;
}

    .login-btn i {
        font-size: 18px;
        padding-left: 5px;
    }

    .login-btn:hover {
        background: var(--clr-jv-teal_dark);
        color: #ffffff !important;
    }

    .login-btn:focus {
        color: #ffffff !important;
        text-decoration: none !important;
    }

.input-white {
    background: #ffffff;
    border: 1px solid #CCCCCC;
    width: 100%;
    padding: 0 10px;
    font-size: 13px;
    color: #393939;
}

.input-gray {
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
    padding: 0 10px;
    font-size: 13px;
    color: #393939;
    display: inline-block;
    width: 100%;
}

.input-data {
    width: auto;
}

.input-red {
    background: #ffcccc;
    border: 1px solid #ff0000;
    width: 100%;
    padding: 0 10px;
    font-size: 13px;
    color: #c32929;
}

.input-h50 {
    height: 50px;
    line-height: 50px;
    font-size: 13px;
}

input[type="file"].input-h50 {
    padding: 20px;
    height: auto;
    line-height: normal;
}

.input-h30 {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}

.input-h80 {
    height: 80px;
    font-size: 12px;
}

.select-option {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

    .select-option i {
        cursor: pointer;
        font-size: 18px;
        pointer-events: none;
        position: absolute;
        z-index: 2;
    }

    .select-option select {
        background: #f0f0f0;
        border: 1px solid #f0f0f0;
        border-radius: 0;
        color: #393939;
        cursor: pointer;
        font-size: 13px;
        outline: medium none;
        padding-left: 10px;
        position: relative;
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .select-option select::-ms-expand {
            display: none;
        }


.select-opt-h40 {
    height: 40px;
}

.select-opt-h30 {
    height: 30px;
}

.select-opt-h40 select {
    height: 40px;
    font-size: 13px;
}

.select-opt-h30 select {
    height: 30px;
    font-size: 12px;
}

.select-opt-h30 i {
    font-size: 18px;
    right: 8px;
    top: 5px;
}

.select-opt-h40 i {
    font-size: 20px;
    right: 15px;
    top: 15px;
}

.select-gray select {
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
    color: #393939;
}

.select-red select {
    background: #ffcccc;
    border: 1px solid #ff0000;
    color: #c32929;
}

.select-white select {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    color: #393939;
}

.select-gray {
    color: #393939;
}

.select-red {
    color: #c32929;
}

.select-white {
    color: #393939;
}


.uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: bold;
}

.font-normal {
    font-weight: normal;
}

.gray-txt-label {
    color: #393939;
    display: inline-block;
}

.red-txt-label {
    color: #ff0000;
    display: inline-block;
}

.yellow-txt-label {
    color: var(--clr-jv-yellow);
    display: inline-block;
}

.tealdark-txt-label {
    color: var(--clr-jv-teal_dark);
    display: inline-block;
}

.big-red-txt-label {
    color: #ff0000;
    display: inline-block;
    font-size:xx-large;
}

.big-yellow-txt-label {
    color: var(--clr-jv-yellow);
    display: inline-block;
    font-size: xx-large;
}

.select-h30 {
    height: 30px;
}

.btn-fullwidth {
    width: 100%;
    padding: 15px 5px;
}

.btn-blue {
    background: transparent;
    line-height: 30px;
    color: #212121;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
    border: 3px solid black;
}

a.btn-blue:hover, a.btn-blue:focus,
button.btn-blue:hover, button.btn-blue:focus {
    background: black;
    color: #ffffff;
    text-decoration: none;
}

.btn-darkgray {
    background: #393939;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0;
}

    .btn-darkgray:hover, .btn-darkgray:focus {
        background: var(--clr-jv-teal_dark);
        color: #ffffff;
    }

    .btn-darkgray.disabled:hover, .btn-darkgray.disabled:focus {
        background: #393939;
    }

.btn-yellow {
    background: var(--clr-jv-yellow);
    color: var(--clr-jv-black);
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0;
}

    .btn-yellow:hover, .btn-yellow:focus {
        background: black;
        color: #ffffff;
    }

.btn-w165 {
    min-width: 165px;
    margin: 1px;
}

.btn-w100 {
    min-width: 100px;
    margin: 1px;
}

.btn-w250 {
    min-width: 250px;
}

.btn {
    letter-spacing: 0.5px;
}

.btn2 {
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 13px;
}

.btn2 i {
    font-size: 13px;
}


.Standard-frm {
    padding: 40px 0;
}

.Standard-frm-list {
    margin-bottom: 20px;
}

    .Standard-frm-list label {
        font-size: 12px;
    }

.Standard-mt10 {
    margin-top: 10px;
}

.Standard-mb10 {
    margin-bottom: 10px;
}

.Standard-pt10 {
    padding-top: 10px;
}

.Standard-pb10 {
    padding-bottom: 10px;
}



.Standard-th {
    background-color: #f0f0f0;
    border-bottom: 1px solid #e7e7e7;
    padding: 20px 0;
}

.Standard-tr {
    background-color: #ffffff;
    border-bottom: 1px solid #e7e7e7;
    padding: 20px 0;
}

.Standard-tr-area {
    content: " ";
    display: table;
    margin-left: -15px;
}

.Standard-t-col {
    display: table-cell;
    width: 11.1%;
}


.Standard-table-area {
    font-size: 12px;
    color: #393939;
}

    .Standard-table-area .ev-btn {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .Standard-table-area .ev-btn li {
            display: inline-block;
        }

            .Standard-table-area .ev-btn li a {
                display: inline-block;
                padding: 7px;
                border: 1px solid #e7e7e7;
                color: #cccccc;
                color: #434343;
                width: 32px;
                height: 32px;
                text-align: center;
                line-height: 14px;
                font-size: 16px;
                display: block;
            }

                .Standard-table-area .ev-btn li a:hover {
                    color: var(--clr-jv-teal_dark);
                }

    .Standard-table-area table tr th {
        background-color: #f0f0f0;
        border-bottom: 1px solid #e7e7e7;
        padding: 20px 15px;
        vertical-align: top;
    }

        .Standard-table-area table tr th p {
            padding: 0;
            margin: 0;
        }

    .Standard-table-area table tr td {
        border: 1px solid #e7e7e7;
        padding: 7px;
        vertical-align: middle;
        min-width: 44px;
    }

        .Standard-table-area table tr td a {
            text-align: center;
            margin-bottom: 0;
        }

        .Standard-table-area table tr td i {
            position: relative;
        }

        .Standard-table-area table tr td p {
            padding: 0;
            margin: 0;
        }

        .Standard-table-area table tr td .t-ckbx {
            text-align: center;
        }


.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

.pt55 {
    padding-top: 55px;
}

.pb55 {
    padding-bottom: 55px;
}

.pt40 {
    padding-top: 40px;
}

.pb40 {
    padding-bottom: 40px;
}

.pt30 {
    padding-top: 30px;
}

.pb30 {
    padding-bottom: 30px;
}

.pt20 {
    padding-top: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.pt15 {
    padding-top: 15px;
}

.pb15 {
    padding-bottom: 15px;
}

.mt100 {
    margin-top: 100px;
}

.mb100 {
    margin-bottom: 100px;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.label-b {
    display: block;
    font-size: 13px;
    color: #393939;
    font-weight: bold;
}

.Standard-edit-list {
    margin-bottom: 20px;
}

    .Standard-edit-list label {
        display: block;
        font-size: 13px;
        color: #393939;
    }

.Standard-edit-top {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 20px;
}

    .Standard-edit-top .col-md-6 {
        float: none;
    }

.Standard-edit-btm-btn a {
    margin: 0 8px 0 0;
}

.dettagli-listcon {
    padding: 14px 0;
}

    .dettagli-listcon p {
        margin: 0;
        font-size: 13px;
        color: #393939;
    }



.premio-bx-new .left h2 {
    font-size: 32px;
    color: #393939;
    font-weight: bold;
    padding-bottom: 15px;
    margin: 0;
}

.premio-bx-new .left p {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 35px;
    margin: 0;
    color: #393939;
}

.premio-bx-new .right {
    border: solid 2px var(--clr-jv-teal_dark);
    padding: 10px;
    background: #FFFFFF;
}

    .premio-bx-new .right img {
        display: block;
        width: 100%;
    }

@media(max-width:767px) {
    .premio-bx-new .left .btn2 {
        margin-bottom: 20px;
    }
}

.listato-bx {
    background: #f0f0f0;
    min-height: 313px;
    margin-bottom: 30px;
}

    .listato-bx h3 {
        text-align: center;
        padding: 45px 20px;
        margin: 0;
        color: #393939;
        font-size: 22px;
        line-height: 26px;
        font-weight: bold;
        height: 142px;
        overflow: hidden;
    }

        .listato-bx h3 a {
            color: #393939;
            display: block;
            height: 52px;
            overflow: hidden;
        }

    .listato-bx .img-bx {
        text-align: center;
        padding: 0 20px;
        margin-bottom: 20px;
    }

        .listato-bx .img-bx a {
            display: inline-block;
            margin: auto;
            width: 100%;
            border: solid 2px var(--clr-jv-teal_dark);
            background-color: #FFFFFF;
            padding-top: 100%;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: contain;
        }

            .listato-bx .img-bx a img {
                display: block;
                padding: 0px;
                margin: 0px;
                margin: auto;
            }

.listato-bluebx {
    position: relative;
    min-height: 50px;
    background-color: var(--clr-jv-teal_dark);
}

    .listato-bluebx a {
        background-color: var(--clr-jv-teal_dark);
        display: block;
    }

        .listato-bluebx a:hover {
            background-color: #002972;
        }

    .listato-bluebx h4 {
        text-align: center;
        padding: 12px 20px;
        margin: 0;
        color: #ffffff;
        font-style: italic;
        font-size: 22px;
        line-height: 26px;
        font-weight: bold;
    }

.zoom-img {
    background: #393939;
    position: absolute;
    top: 0;
    right: 0;
}

    .zoom-img a {
        display: block;
        background: #393939;
        height: 50px;
        width: 50px;
        text-align: center;
        font-size: 13px;
        color: #ffffff;
        padding: 15px;
    }

        .zoom-img a:hover {
            background: var(--clr-jv-teal_dark);
        }




.premio-bx {
    margin-bottom: 100px;
    background: #f0f0f0;
}

.premio-flt {
    padding: 45px 0 45px 100px;
}

    .premio-flt h2 {
        font-size: 32px;
        color: #393939;
        font-weight: bold;
        padding-bottom: 15px;
        margin: 0;
    }

    .premio-flt p {
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 35px;
        margin: 0;
        color: #393939;
    }

.richiedi-btn a {
    font-size: 16px;
}

    .richiedi-btn a.disabled {
        cursor: default;
    }

    .richiedi-btn a i {
        font-size: 18px;
    }

.premio-rht {
    padding: 105px 15px 0 15px;
    position: relative;
    text-align: center;
}

.img-punti-bx {
    position: absolute;
    width: 155px;
    height: 155px;
    border: 10px solid #f0f0f0;
    border-radius: 100%;
    background: #002972;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
    padding: 50px 10px;
    text-align: center;
    top: 15px;
    left: 50%;
    margin-left: -77px;
}

.pagina-menu {
    display: inline-block;
    margin-right: 40px;
    margin-bottom: 10px;
}

    .pagina-menu ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .pagina-menu ul li {
            display: inline-block;
            vertical-align: middle;
            font-size: 12px;
            line-height: 14px;
            padding: 0 3px;
            color: #393939;
        }

            .pagina-menu ul li i {
                font-size: 18px;
            }

            .pagina-menu ul li a {
                color: #393939;
                display: block;
            }

                .pagina-menu ul li a:hover {
                    color: var(--clr-jv-teal_dark);
                }

            .pagina-menu ul li.active-no {
                border: 1px solid #e7e7e7;
                padding: 6px 10px;
            }

.pagina-selecebx {
    width: 60px;
}



.aggiorna-btn {
    float: right;
}

.carrello-con h3 {
    color: #393939;
    font-size: 28px;
    margin: 0;
    padding: 0 0 30px 0;
}

.frmbxl {
    margin-bottom: 20px;
}

.cart-table {
    width: 100%;
}

.cart-tr {
    padding: 0 85px;
    border-bottom: 1px solid #ffffff;
    display: table;
    background: #f0f0f0;
    width: 100%;
}

.cart-td {
    display: table-cell;
    vertical-align: middle;
}

.cart-t-img {
    width: 100px;
    padding: 0 15px;
    width: 195px;
}

.cart-t-txt {
    padding: 15px 15px;
    width: 590px;
}

.cart-t-qut {
    width: 190px;
    padding: 15px 15px;
}

.cart-t-txt h3 {
    color: #393939;
    font-size: 22px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.border-none {
    border: none !important;
}

    .border-none select {
        border: none !important;
    }


.dati-bx {
    border-bottom: 1px solid #e7e7e7;
}

.dati-title {
    border-bottom: 2px solid #e7e7e7;
}

    .dati-title h3 {
        color: #393939;
        font-size: 28px;
        margin: 0;
        padding: 55px 0 15px 0;
    }

.ckbx-h50 {
    min-height: 50px;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 0;
}

    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.up-file-list {
    margin-bottom: 20px;
}

    .up-file-list ul {
        padding: 0 0 0 12px;
        margin: 0;
        list-style: none;
        border-bottom: 1px solid #ffffff;
        background: #f0f0f0;
        position: relative;
    }

        .up-file-list ul:before, .up-file-list ul:after {
            display: table;
            clear: both;
            content: '';
        }

        .up-file-list ul li {
            display: inline-block;
            position: relative;
            padding: 14px 15px;
            font-size: 13px;
            font-weight: bold;
            color: #393939;
        }

            .up-file-list ul li a {
                color: #393939;
            }

                .up-file-list ul li a:hover {
                    color: var(--clr-jv-teal_dark);
                }

            .up-file-list ul li.rht-elimina {
                float: right;
            }

.pno-w {
    width: 40px;
}

/*--End inner page--*/


.multiple-checbox {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

    .multiple-checbox li {
        width: 50%;
        font-weight: normal;
    }

        .multiple-checbox li input,
        .multiple-checbox li label {
            display: inline;
            margin-right: 5px;
            font-weight: normal;
        }

@media(max-width:767px) {
    .multiple-checbox li {
        width: 100%;
    }
}



.homepage-box {
    background-color: #f0f0f0;
    margin-bottom: 30px;
}

    .homepage-box:after {
        content: "";
        display: block;
        clear: both;
    }

@media(max-width:992px) {
    .homepage-box .image:after {
        content: "";
        display: block;
        padding-top: 100%;
    }
}

@media(max-width:767px) {
    .homepage-box .content,
    .homepage-box .image {
        float: none !important;
        width: 100% !important;
    }
}

.homepage-box .content {
    box-sizing: border-box;
    padding: 20px;
    float: left;
    width: 50%;
}

    .homepage-box .content h2 {
        color: #393939;
        font-weight: bold;
        font-size: 20px;
        line-height: 22px;
        padding: 0px 0px 10px 0px;
        margin: 0px 0px 10px 0px;
        border-bottom: solid 2px var(--clr-jv-teal_dark);
        display: block;
    }

    .homepage-box .content p {
        color: #393939;
        font-size: 12px;
        line-height: 14px;
        margin: 0px;
        padding: 0px 0px 10px 0px;
    }

    .homepage-box .content a {
        padding: 14px 14px;
        font-size: 12px;
        font-weight: bold;
        display: inline-block;
        background: var(--clr-jv-teal_dark);
        color: #ffffff;
        text-decoration: none;
    }

        .homepage-box .content a:hover {
            background: black;
        }

.homepage-box .image {
    box-sizing: border-box;
    padding: 20px;
    float: right;
    width: 50%;
    min-height: 250px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

/*  RIMUOVERE QUESTA REGOLA SE NON FUNZIONA */
.homepage-box .image {
    background-size: contain;
    background-position: center center;
}
/*  RIMUOVERE QUESTA REGOLA SE NON FUNZIONA */
@media(max-width:767px) {
    .fullwidth {
        width: 100%;
        display: block;
    }
}


.fa-lightsalmon {
    color: lightsalmon;
}

.fa-darksalmon {
    color: darksalmon;
}

.fa-lightgreen {
    color: lightgreen;
}

.fa-forestgreen {
    color: forestgreen;
}

.paddingLeft td label {
    padding-left: 8px;
    padding-right: 25px;
}


.form-control:hover {
    box-shadow: none;
    border-color: #e5352d;
}

div:empty {
    display: none;
}

.btn-appuntamento i {
    font-size: 20px;
    color: #e5352d;
    vertical-align: middle;
    margin-right: 3px;
}

.btn-appuntamento span {
    vertical-align: middle;
    margin-right: 10px;
}

.download-pdf {
    border-radius: 3px;
    padding: 10px 0px;
    font-weight: bold;
    background: #e7443c;
    color: white;
    cursor: pointer;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    display: block;
    font-family: var(--ff-jv-body);
    width: 250px;
}

.doverosso-bg {
    background: #e7443c;
}

.doverosso-col {
    color: #e7443c;
}

.download-pdf:hover {
    color: #e7443c;
    background: #101010;
}

.bg-dark {
    background: var(--clr-jv-teal_dark) !important;
    font-weight: bold;
    line-height: 35px;
}

.check-box {
    text-transform: uppercase;
    color: var(--clr-jv-teal_dark);
    display: block;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    margin-bottom: 20px;
    font-family: var(--ff-jv-body);
    background: #f0f0f0;
    border-radius: 8px;
    background-color: var(--clr-jv-yellow);
    min-height: 40px;
}

    .check-box i {
        position: absolute;
        right: 10px;
        font-size: 30px;
        width: 30px;
    }

.radio-row a {
    text-align: center;
    font-size: 11px !important;
}

.radio-row span {
    display: block;
}

.radio-row i {
    position: relative;
}

.checked {
    color: var(--clr-jv-teal_dark);
}

h4 {
    width: 100%;
    text-align: center;
}

    h4 i {
        margin-right: 10px;
    }

.panel-room {
    font-weight: bold;
    height: 100%;
    font-size: .7rem;
    line-height: 30px;
    text-transform: uppercase;
    border-radius:15px;
    border-color:var(--clr-jv-teal_dark);
    border-width:2px;
    border-style:solid;
}

    .panel-room img {
        height: 30px;
        width: 30px;
    }

    .panel-room .row {
        height: 30px;
        white-space: nowrap;
        line-height: 30px;
    }

.btn-add {
    font-weight: bold;
    font-size: .9rem;
    line-height: 38px;
    text-align: center;
    background: #212121;
    border-radius: 3px;
    display: block;
    color: white;
}

.form-control {
    border-radius: 3px !important;
}


.dates div {
    line-height: 20px;
    height: 20px;
}

.dates {
    height: auto !important;
    margin-bottom: 5px;
}

.dateDisp {
    font-size: 17px
}

.dateCop {
    font-weight: normal !important;
    font-style: italic;
    height: 15px !important;
    line-height: 15px !important;
}


.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.loginTitle {
    font-size: 2.5rem;
    font-family: var(--ff-jv-title);
    text-transform: uppercase;
    font-weight: bold;
}

.loginTitleContainer {
    border-bottom: 1px solid #393939;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.stanza-btn {
    width: 100%;
    background: #e7e7e7;
    text-align: center;
    color: #212121;
    font-family: var(--ff-jv-body);
    padding: 7px;
    display: block;
    margin-bottom: 5px;
    border-left: 5px solid #7B7B7B;
    border-radius: 3px
}

.linkGoogleMaps {
    padding: 0 9px;
    color: #393939;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 11px
}

.linkGoogleMaps {
    border-radius: 50px;
    border: 1px solid
}




.bodyFoto {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

#loader {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: white;
    color: #212121;
    font-family: var(--ff-jv-body);
    font-size: 30px;
    text-align: center;
    padding-top: 150px;
    display: none;
}

.deletePic {
    color: white;
    background: var(--clr-jv-teal_dark);
    border-radius: 0 0 5px 5px;
    margin-top: 0;
    display: block;
    padding: 3px;
}


/* LOGIN */
.login-con .col-md-6 {
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    position: absolute;
    width: 80%;
    max-width: 480px;
    padding: 30px 60px 70px 60px;
    
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.35);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.35);
    box-shadow: 0 2px 5px rgba(0,0,0,.35);
}

.login-logo {
    
    display: block !important;
    content: "%23ef4136";
    background-size: 100% !important;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 auto;
    margin-bottom: 40px;
}

.logfrm-bx {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.input-login, .input-form {
    height: 35px !important;
    font-size: 20px !important;
}

.login-content, .form-content {
    position: relative;
}

    .login-content label, .form-content label {
        color: #9e9e9e;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        font-size: 1rem;
        cursor: text;
        -webkit-transition: -webkit-transform .2s ease-out;
        transition: -webkit-transform .2s ease-out;
        transition: transform .2s ease-out;
        transition: transform .2s ease-out, -webkit-transform .2s ease-out;
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        text-align: initial;
        -webkit-transform: translateY(7px);
        transform: translateY(7px);
        pointer-events: none;
        font-size: 20px;
    }

.label-select {
    top: -10px !important;
}


.login-content label:not(.label-icon).active, .form-content label:not(.label-icon).active,
.login-content label:not(.label-icon).always-active, .form-content label:not(.label-icon).always-active {
    font-size: 12px;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
    color: var(--clr-jv-yellow);
}

.login-content input {
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 20px 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: left;
    height: 35px !important;
    font-size: 20px !important;
    color: #666;
    text-align: left !important;
}

.login-content .submit-btn {
    display: block;
    margin: 0 auto;
    font-family: var(--ff-jv-body);
    font-weight: 700;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    padding: 10px;
    width: 100%;
    letter-spacing: .3px;
    color: var(--clr-jv-teal_dark);
    background: var(--clr-jv-yellow);
    border: 1px solid var(--clr-jv-yellow);
    text-align: center !important;
    box-sizing: border-box;
    height: auto !important;
}

.login-content input:focus {
    border-bottom: 1px solid var(--clr-jv-teal_dark);
    box-shadow: 0 1px 0 0 var(--clr-jv-teal_dark);
}

@-webkit-keyframes autofill {
    to {
        color: #666;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.input-field label {
    color: #9e9e9e;
    position: absolute;
    top: 0.8rem;
    left: 0;
    font-size: 1rem;
    cursor: text;
    transition: .2s ease-out;
}


#ErrorContainer {
    background: var(--clr-jv-teal_dark);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    font-family: var(--ff-jv-body);
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    padding: 12px 15px 5px 12px;
    text-align: center;
}

*, :after, :before {
    outline: 0;
    -webkit-font-smoothing: antialiased;
}

.section-top-page {
    background: #ededed;
    border-bottom: 2px solid var(--clr-jv-yellow);
    padding-bottom: 50px;
    font-family: var(--ff-jv-body);
    margin-bottom: 30px
}

    .section-top-page input, .section-top-page select, .section-top-page option, .section-top-page textarea {
        font-weight: 600;
        background: white;
        border-radius: 8px;
        height: 40px;
        border: 0;
        text-align: left;
        padding: 0.375rem 0.75rem;
    }

        .section-top-page input[type="checkbox"] {
            height: 15px !important;
        }

    .section-top-page textarea {
        height: auto;
    }



.filters-container {
    padding: 0 50px;
}

.filter-row {
    margin-bottom: 10px;
}

.section-top-page h4 {
    font-weight: bold;
    padding-bottom: 5px;
    position: relative;
    font-family: var(--ff-jv-body);
}

    .section-top-page h4:after {
        position: absolute;
        bottom: -5px;
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
        border-bottom: 2px solid var(--clr-jv-yellow);
        content: "";
    }

    .section-top-page h4.no-border:after {
        position: absolute;
        bottom: -5px;
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
        border-bottom: none;
        content: "";
    }

.label-search {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    font-family: var(--ff-jv-body);
}

.text-info-custom {
    font-family: var(--ff-jv-body);
    text-transform: uppercase;
    text-align: right;
    font-size: 10px;
    font-weight: 900;
}

.btn-prosegui {
    bottom: 65px !important;
}

.btn-visitabase {
    border-radius: 30px;
    background: #e0e0e0;
    padding: 10px;
    font-family: var(--ff-jv-body);
    font-weight: 400;
    display: block;
    color: black;
    font-size: var(--fs-jv-paragraph);
    position: relative;
    padding-top: 18px;
    width: 100%;
    /*margin-top: 10px;*/
}

.partial-button {
    background: var(--clr-jv-yellow) !important;
    color: var(--clr-jv-teal_dark) !important;
}

.completed-button {
    background-color: var(--clr-jv-teal_dark) !important;
    color: var(--clr-jv-white) !important;
}


.checkout-bg {
    background-color: var(--clr-jv-grey);
}

.btn-bg-yellow {
    background-color: var(--clr-jv-yellow);
    
}
.checkin-bg-inelaborazione {
    background-color: var(--clr-jv-pink_light);
}
.checkin-bg-standby {
    background-color: var(--clr-jv-purple);
    color: var(--clr-jv-white);
}
.checkin-bg-aperta {
    background-color: var(--clr-jv-pink);
}

.btn-visitabase i {
    color: var(--clr-jv-teal_dark);
}

small i {
    font-size: 5px;
    vertical-align: -webkit-baseline-middle;
    margin-top: -5px;
    padding-bottom: 5px;
    display: inline-block;
}

.btn-visitabase .user {
    margin-top: 10px;
    position: absolute;
    background: #797979;
    padding: 0px 10px;
    border-radius: 80px;
    top: -10px;
    font-family: 14px;
    color: white;
    right: 5px;
    font-family: var(--ff-jv-body);
    text-transform: uppercase;
    font-weight: normal;
    font-size: 12px
}

.btn-visitabase .time {
    position: absolute;
    top: -25px;
    font-size: 14px;
    color: var(--clr-jv-white);
}

.dettagli-list strong {
    font-family: var(--ff-jv-body);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
}

    .dettagli-list strong i {
        width: 20px;
        text-align: center
    }

.dettagli-list p {
    text-align: right;
    font-family: var(--ff-jv-body);
    font-weight: 600
}

.dettagli-list .row {
    border-bottom: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0
}

.dettagli-list a {
    color: var(--clr-jv-teal_dark)
}

.dettagli-list img {
    margin-bottom: 5px;
    max-height: 100px;
    max-width: 100px;
    border-radius: 8px;
}

.foto-big {
    background-color: rgba(255,255,255,.8);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

    .foto-big img {
        height: 100%;
        width: 100%;
    }

.btn-base {
    background-color:var(--clr-jv-yellow);
    border-radius: 8px;
    text-align: center;
    
    display: block;
    padding: 10px;
    font-family: var(--ff-jv-body);
    font-weight: 400;
    font-size: 13px;
}

    .btn-base:hover {
        color: var(--clr-jv-white);
        background-color:var(--clr-jv-teal_dark)
        
    }

    .btn-base i {
        font-size: 25px;
        vertical-align: middle;
        /*background: rgba(0,0,0,.5);*/
        /*color: white;*/
        padding: 10px;
        border-radius: 40px;
        vertical-align: baseline;
    }

/* FOTO */
.aggiungi-foto {
    width: 250px;
    height: 250px;
    text-transform: uppercase;
    font-weight: bold;
    background: #ededed;
    border-radius: 8px;
    margin: 0 auto;
    padding-top: 50px !important;
    margin-bottom: 30px;
    box-shadow: 0 1px 4px #212121;
    color: #212121;
    position: relative;
    text-align: center;
    display: block;
    font-family: var(--ff-jv-body);
    font-size: 18px;
    padding: 8px !important;
}

    .aggiungi-foto i {
        display: block;
        font-size: 50px;
        margin-top: 35px;
    }

.delete-foto {
    position: absolute;
    line-height: 40px;
    border-radius: 50px;
    font-size: 20px;
    color: #ededed;
    background: var(--clr-jv-teal_dark);
    width: 40px;
    height: 40px;
    text-align: center;
    top: 5px;
    right: 50%;
    transform: translateX(120px);
    box-shadow: 0 0 4px #212121;
}

    .delete-foto:hover {
        background: #212121;
    }


.foto-documento {
    max-width: 200px;
    max-height: 200px;
}

.apt-in-gestione {
    text-align: center;
    background: #555;
    border-top: 1px solid var(--clr-jv-yellow);
    /*border-radius: 0 0 10px 10px;*/
    font-family: var(--ff-jv-body);
    color: white;
    font-style: normal;
    font-size: 15px;
    padding: 5px
}

    .apt-in-gestione a {
        color: white;
    }

    .apt-in-gestione i {
        color: var(--clr-jv-yellow);
    }

.btn-base.aspNetDisabled {
    color: #b5b5b5 !important;
    background: var(--clr-jv-teal_dark);
}

.btn-enabled {
    color: #393939;
    font-weight: bold;
    font-family: var(--ff-jv-body);
    box-shadow: 0 0 3px black;
}

.status-checkout {
    margin-top: 30px;
    background: #CCCCCC;
    border-radius: 8px;
}

    .status-checkout .completed {
        color: #4da949;
    }

    .status-checkout .uncompleted {
        color: var(--clr-jv-teal_dark);
    }

    .status-checkout strong {
        border-bottom: 1px solid #939393;
        width: 100%;
        display: block;
        margin-bottom: 5px
    }

.btn-fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align:center;
}



.btn-fixed-bottom-second {
    position: fixed;
    bottom: 70px;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none
}

.btn-success {
    background: var(--clr-jv-teal_dark);
    color: white;
}

    .btn-success:hover {
        background: var(--clr-jv-teal_dark) !important;
        color: white;
    }

.icons-check {
    position: absolute;
    right: 5px;
    bottom: 2px;
    text-align: right;
}


/* LOADING */
.loading-container {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #fff;
    background: rgba(255,255,255,.9);
}

.loading {
    top: auto;
    left: auto;
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    position: absolute;
    display: block;
    background: transparent;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

.loading-icon {
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    position: absolute;
    z-index: 1;
    width: 120px;
    height: 120px;
}

.row {
    margin-right: 0px !important;
}

.w-97 {
    width: 97% !important;
}

.w-95 {
    width: 95% !important;
}

.noResize {
    resize:none;
}

.backgroundTealLight {
    background-color: var(--clr-jv-teal_light);
}

.backgroundTealDark {
    background-color: var(--clr-jv-teal_dark);
}

.backgroundYellow {
    background-color: var(--clr-jv-yellow);
}
.backgroundPink {
    background-color: var(--clr-jv-pink);
}
.backgroundGreen {
    background-color: var(--crl-jv-green_light);
}
.backgroundGray {
    background-color: lightgray;
}
.fine-visita {
    background-color:var(--clr-jv-yellow);
    color:var(--clr-jv-teal_dark);
    font-size:var(--fs-jv-title-sm);
}
.floatLeft
{
    float:left;
}

.marginleft15
{
    margin-left: 15px;
}

.accompagnatore
{
    font-weight:bold;
    color:var(--clr-jv-teal_dark);
}