


/* CALENDAR
 * -------------------------------------------------- */
 
 .nlg-calendar{
    display: block;
    position: relative;
}

/* content */
.nlg-calendar .calendar-content{
    display: block;
    position: relative;
}

/* content > month */ 
.nlg-calendar .calendar-content{
    background-clip: border-box;
    background-color: #fff;
    border-radius: .25rem;  
    box-shadow: 0 1px 3px rgba(3,0,71,.09);
    padding: 0;
    user-select: none; 
    overflow: hidden;
}

/* content > month (STANDARD) */ 
.nlg-calendar .calendar-content .calendar-header,
.nlg-calendar .calendar-content .calendar-labels,
.nlg-calendar .calendar-content .calendar-weeks .calendar-week{
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}
.nlg-calendar .calendar-content .calendar-labels:before,
.nlg-calendar .calendar-content .calendar-labels:after,
.nlg-calendar .calendar-content .calendar-weeks .calendar-week:before,
.nlg-calendar .calendar-content .calendar-weeks .calendar-week:after {
    content: '';
    display: table;
    position: relative;
    width: 100%;
    height: 0;
    clear: both;
}
.nlg-calendar .calendar-content .calendar-labels .calendar-label,
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day{
    display: block;
    position: relative;
    float: left;
    width: 14.2857%;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* content > month > header */ 
.nlg-calendar .calendar-content .calendar-header{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #DDD;
    padding: 15px;
}

/* content > month > header > controls */
.nlg-calendar .calendar-content .calendar-header .calendar-controls {
    margin-right: 30px;
}
.nlg-calendar .calendar-content .calendar-header .calendar-controls .calendar-control{
    display: inline-block;
    margin:  0;
    padding: 5px 15px;
    line-height: 20px;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #DDD;
    background-color: #FFF;
    background: transparent;
}
.nlg-calendar .calendar-content .calendar-header .calendar-controls .calendar-control:first-child {
    margin-right: 15px;
}
.nlg-calendar .calendar-content .calendar-header .calendar-controls .calendar-control + .calendar-control {
    margin-left: 5px;
}
.nlg-calendar .calendar-content .calendar-header .calendar-controls .calendar-control.calendar-nav{
    width: 32px;
    padding: 5px 0;
    font-size: 16px;
}
.no-touch .nlg-calendar .calendar-content .calendar-header .calendar-controls .calendar-control:hover{
    box-shadow: 1px 2px 6px rgba(0,0,0,0.15);
}

/* content > month > header > title */
.no-touch .nlg-calendar .calendar-content .calendar-header .calendar-title {
    font-size: 18px;
}

/* content > month > header > tools */
.no-touch .nlg-calendar .calendar-content .calendar-header .calendar-tools {
    flex: 1 1 auto;
    text-align: right;
    margin-left: 30px;
}

/* content > month > labels */
.nlg-calendar .calendar-content .calendar-labels .calendar-label{
    color: #666;
    font-weight: 400;
    padding: 3px 5px 0;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}
.nlg-calendar .calendar-content .calendar-labels .calendar-label + .calendar-label {
    border-left: 1px solid #EEE;
}

/* content > month > days */
.nlg-calendar .calendar-content .calendar-weeks{
    display: block;
    position: relative;
}

/* content > month > days > week */
.nlg-calendar .calendar-content .calendar-weeks .calendar-week{
    display: block;
    position: relative;
    width: 100%;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week + .calendar-week {
    border-top: 1px solid #EEE;
}

/* content > month > days > week > day */
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day{
    border: 1px solid #FFF;
    z-index: 10;
    min-height: 1px;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day + .calendar-day {
    border-left: 1px solid #EEE;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day .head {
    top: 0;
    font-size: 13px;
    color: #222;
    font-weight: 700;
    padding: 3px 5px 0;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day.calendar-monthout .head {
    color: #666;
    font-weight: 400;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day .head span {
    height: 25px;
    text-align: center;
    line-height: 26px;
    display: inline-block;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day.calendar-today .head span{
    width: 26px;
    background-color: #4ecb4a;
    border-radius: 50%;
    color: #FFF;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day.calendar-today.calendar-monthout .head span {
    background-color: #87CE85;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day .inner{
    display: block;
    position: relative;
    height: 100px;
    overflow: auto;
    padding: 5px 5px 3px;
}
.nlg-calendar .calendar-content .calendar-weeks .calendar-week .calendar-day.calendar-day-unselectable{
    color: #DDD;
    pointer-events: none;
}
.no-touch .nlg-calendar .calendar-content .calendar-weeks .calendar-week  .calendar-day.calendar-day-unselectable:hover{
    z-index: 10;
}

/* Multi month */
.nlg-calendar .calendar-content.calendar-multi-month{
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months {    
    display: flex;
    flex-wrap: wrap;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month {    
    flex: 1 1 33.333%;
    padding: 15px;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-title {
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 15px;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-labels {
    margin-bottom: 10px;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-labels .calendar-label {
    border: none !important;
    text-transform: lowercase;
    padding: 0 3px;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-weeks .calendar-week {
    border: none !important;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-weeks .calendar-week .calendar-day {
    border: 1px solid #EEE;
    margin-left: -1px;
    margin-top: -1px;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-weeks .calendar-week:first-child .calendar-day {
    margin-top: 0;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-weeks .calendar-week .calendar-day:first-child{
    margin-left: 0;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-weeks .calendar-week .calendar-day.calendar-monthout {
    border: none !important;
}
.nlg-calendar .calendar-content.calendar-multi-month .calendar-months .calendar-month .calendar-weeks .calendar-week .calendar-day .inner{
    height: 24px;
    font-size: 12px;
    padding: 3px;
}

/* Cella tariffa */
.nlg-calendar .calendar-day .rate {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 3px;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.no-touch .nlg-calendar .calendar-day .rate:hover {
    filter: grayscale(.4);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}
.nlg-calendar .calendar-day .rate + .rate {
    margin-top: 3px;
}
.nlg-calendar .calendar-day .rate .name {
    color: #000;
    display: block;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nlg-calendar .calendar-day .rate .val {
    display: block;
    flex: 0 0 auto;
    margin-left: 5px;
    margin: 3px 0 0;
    text-align: right;
}

.nlg-calendar .calendar-day .rate:nth-child(10n+1) { background-color: #e1c9f8 }
.nlg-calendar .calendar-day .rate:nth-child(10n+2) { background-color: #ffbb8f }
.nlg-calendar .calendar-day .rate:nth-child(10n+3) { background-color: #d2dadf }
.nlg-calendar .calendar-day .rate:nth-child(10n+4) { background-color: #ffb8b5 }
.nlg-calendar .calendar-day .rate:nth-child(10n+5) { background-color: #f3e0a5 }
.nlg-calendar .calendar-day .rate:nth-child(10n+6) { background-color: #b1ecd6 }
.nlg-calendar .calendar-day .rate:nth-child(10n+7) { background-color: #f8dcc9 }
.nlg-calendar .calendar-day .rate:nth-child(10n+8) { background-color: #c9f4f8 }
.nlg-calendar .calendar-day .rate:nth-child(10n+9) { background-color: #dfeac1 }
.nlg-calendar .calendar-day .rate:nth-child(10n+9) { background-color: #dfeac1 }

.nlg-calendar .calendar-day .rate.available {
    filter: saturate(1.5);
}
.nlg-calendar .calendar-day .rate.available .name {
    font-weight: 700;
}
.nlg-calendar .calendar-day .rate.available .val {
    font-weight: bold;
}
.nlg-calendar .calendar-day .rate.unavailable {
    filter: saturate(0.6);
    opacity: .8;
}

.nlg-calendar .calendar-multi-month .calendar-day {
    cursor: pointer;
}
.nlg-calendar .calendar-multi-month .calendar-day:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.nlg-calendar .calendar-multi-month .calendar-day.mini-rate-available:after {
    background-color: #4ecb4a;
}
.nlg-calendar .calendar-multi-month .calendar-day.mini-rate-booked:after {
    background-color: #f5cd6d;
}
.nlg-calendar .calendar-multi-month .calendar-day.mini-rate-unavailable:after {
    background-color: #f5996d;
}

/* Rate tooltip */
.nlg-rate-tooltip.show{ opacity: 1}
.nlg-rate-tooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.nlg-rate-tooltip.bs-tooltip-top .tooltip-arrow::before{border-top-color:#f9f9f9}
.nlg-rate-tooltip.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.nlg-rate-tooltip.bs-tooltip-end .tooltip-arrow::before{border-right-color:#f9f9f9}
.nlg-rate-tooltip.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.nlg-rate-tooltip.bs-tooltip-bottom .tooltip-arrow::before{border-bottom-color:#f9f9f9}
.nlg-rate-tooltip.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.nlg-rate-tooltip.bs-tooltip-start .tooltip-arrow::before{border-left-color:#f9f9f9}
.nlg-rate-tooltip .tooltip-inner{background-color:#f9f9f9;color: #222;box-shadow:2px 2px 4px rgba(0,0,0,0.1)}

.nlg-rate-tooltip-big .tooltip-inner{min-width:300px}

.nlg-rate-tooltip .nlg-rate-table{
    text-align: left;
    font-size: 13px;
}
.nlg-rate-tooltip .nlg-rate-table div {
    padding: 5px 0;
}
.nlg-rate-tooltip .nlg-rate-table div + div {
    border-top: 1px solid #EEE;
}


/* Scheda Veicolo > Details dialog
------------------------------------------------------------ */

.nlg-vehicle-details-dialog .bee-dialog-inner {
    max-width: 1200px;
    border-radius: 6px;
}
.nlg-vehicle-details-dialog .title {
    font: normal normal bold 32px/24px Nunito Sans;
    color: #000000;
    margin: 0;
}
.nlg-vehicle-details-dialog .group-title {
    font-size: 18px;
    text-align: left;
    padding: 30px 0 5px;
    color: #000;
    font-weight: bold;
    border-bottom: 1px solid #EEE;
}
.nlg-vehicle-details-dialog .info {
    font: normal normal normal 16px/24px Nunito Sans;
    color: #000000;
    margin: 20px 0 0;
}
.nlg-vehicle-details-dialog .table > :not(caption) > * > * {
    padding: 3px 0;
}
.nlg-vehicle-details-dialog .table tbody td {
    font-size: 13px;
    vertical-align: middle;
}
.nlg-vehicle-details-dialog .table tbody td:first-child {
    padding-right: 10px;
}
.nlg-vehicle-details-dialog .table tbody td:last-child {
    padding-left: 10px;
    font-weight: bold;
    text-align: right;
}
.nlg-vehicle-details-dialog .table tbody .group td {
    font-size: 18px;
    text-align: left;
    padding: 30px 0 5px;
    color: #000;
}
.nlg-vehicle-details-dialog .table tbody .text td {
    text-align: left;
    padding: 5px 0;
    font-weight: normal;
}
.nlg-vehicle-details-dialog .table tfoot td {
    color: #000000;
    font-size: 13px;
}
.nlg-vehicle-details-dialog .table tfoot td:last-child {
    text-align: right;  
    font-weight: bold;
}
.nlg-vehicle-details-dialog .table tfoot .resume td {
    border-bottom: 1px solid #000;
}
.nlg-vehicle-details-dialog .table tfoot .total td {
    font: normal normal bold 16px/22px Nunito Sans;
    padding: 15px 0 5px;
    border: none;
}
.nlg-vehicle-details-dialog .table tfoot .total td:last-child {
    font: normal normal bold 25px/25px Nunito Sans;
    color: #72C85D;
}
.nlg-vehicle-details-dialog .table tfoot .deposit td {
    font: normal normal bold 16px/22px Nunito Sans;
    border: none;
}
.nlg-vehicle-details-dialog .table tfoot .deposit td:last-child {
    font: normal normal bold 25px/25px Nunito Sans;
    color: #F6A814;
}
.nlg-vehicle-details-dialog .resume {
    background-color: #f9f9f9;
    margin: 30px 0 0;
    padding: 15px;
}
.nlg-vehicle-details-dialog .resume .table {
    margin: 0;
}
.nlg-vehicle-details-dialog .resume .table td {
    font: normal normal bold 16px/22px Nunito Sans;
    border: none;
    padding: 5px;
}
.nlg-vehicle-details-dialog .resume .table td:last-child {
    font: normal normal bold 25px/25px Nunito Sans;
    text-align: right;
}
.nlg-vehicle-details-dialog .resume .table .total td:last-child {
    color: #72C85D;
}
.nlg-vehicle-details-dialog .resume .table .deposit td:last-child {
    color: #F6A814;
}
.nlg-vehicle-details-dialog .book {
    display: block;
    margin: auto;
    font: normal normal bold 20px/24px Nunito Sans;
    padding: 15px;
    min-width: 40%;
    border: none;
    margin-top: 45px;
}
.nlg-vehicle-details-dialog .diclaimer {
    padding-left: 20px;
    position: relative;
    font: normal normal normal 12px/16px Nunito Sans;
}
.nlg-vehicle-details-dialog .diclaimer p {
    margin: 0 0 3px;
}
.nlg-vehicle-details-dialog .diclaimer i {
    position: absolute;
    top: 3px;
    left: 0;
}


/* Scheda prenotazione
------------------------------------------------------------ */

.nlg-booking-details .nlg-booking-head {
    display: flex;
    align-items: center;
}
.nlg-booking-details .nlg-booking-head .id {
    font-weight: 700;
}
.nlg-booking-details .nlg-booking-head .name {
    flex: 1 0 auto;
}
.nlg-booking-details .nlg-booking-head .dates {
    flex: 0 0 120px;
    font-size: 0.8em;
    text-align: right;
}
.nlg-booking-details .nlg-booking-head .status {
    flex: 0 0 auto;
    text-align: center;
}
.nlg-booking-details .nlg-booking-head .total {
    flex: 0 0 100px;
    font-size: 1.2em;
    text-align: right;
}
.nlg-booking-details .nlg-booking-opts {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: #f9f9f9;
}
.nlg-booking-details .nlg-booking-opts .opt {
    padding: 10px 5px;
    background-color: #fff;
    border: 1px solid #EEE;
    border-radius: 8px;
    text-align: center;
    margin: 0 10px;
    min-width: 130px;
}
.nlg-booking-details .nlg-booking-opts .opt .nam {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}
.nlg-booking-details .nlg-booking-opts .opt .val {
    font-size: 14px;
    line-height: 1.2;
    margin: 5px 0 0;
}
.nlg-booking-details .nlg-booking-opts .opt .big {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin: 5px 0 0;
}
.nlg-booking-details .nlg-booking-opts .opt .not {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    margin: 5px 0 0;
}
.nlg-booking-details .nlg-booking-content .title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.nlg-booking-details .nlg-booking-content address {
    margin: 8px 0 0;
    font-size: .9em;
}
.nlg-booking-details .nlg-booking-content table.resume td {
    font-size: .9em;
    padding: 5px 10px;
}
.nlg-booking-details .nlg-booking-content table.resume td:last-child{
    text-align: right;
    font-weight: 600;
}
.nlg-booking-details .nlg-booking-content .terms {
    font-size: .9rem
}
.nlg-booking-details .nlg-booking-content .bee-readmore-control {
    border-radius: 4px;
    border: 1px solid #eae7f5;
    padding: 8px 24px;
    color: #000;
    font-size: 0.9rem;
    font-weight: 400;
    background-color: #FFF;
}


/* Scheda prenotazione APP
------------------------------------------------------------ */

.nlg-booking-details .nlg-booking-app {
    align-items: stretch;
    border-top: 1px solid #EEE;
}
.nlg-booking-details .nlg-booking-app .booking-info {
    border-right: 1px solid #EEE;
    padding-bottom: 20px;
}
.nlg-booking-details .nlg-booking-app .booking-info .item {
    padding: 10px 30px;
}
.nlg-booking-details .nlg-booking-app .booking-info .item .label {
    font-size: 14px;
}
.nlg-booking-details .nlg-booking-app .booking-info .item .value {
    font-weight: bold;
    font-size: 16px;
}
.nlg-booking-details .nlg-booking-app .booking-info .item button {
    display: block;
    width: 100%;
}
.nlg-booking-details .nlg-booking-app .booking-info .item + .item {
    border-top: 1px solid #f9f9f9;
}
.nlg-booking-details .nlg-booking-app .booking-chat {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}
.nlg-booking-details .nlg-booking-app .booking-chat .status {
    padding: 15px;
    border-bottom: 1px solid #EEE;
}
.nlg-booking-details .nlg-booking-app .booking-chat .status h4,
.nlg-booking-details .nlg-booking-app .booking-chat .status p {
    margin: 0;
}
.nlg-booking-details .nlg-booking-app .booking-chat .status button {
    margin: 0;
}
.nlg-booking-details-messages {
    min-height: 200px;
    max-height: 600px;
    padding: 15px;
}
.nlg-booking-details-messages,
.nlg-booking-details .nlg-booking-app .booking-chat .messages {
    flex: 1 1 auto;
    background: #f2f7f7;
    overflow: auto;
    height: 1px;
    padding: 30px;
}
.nlg-booking-details-messages .message,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message {
    margin: auto;
    min-width: 300px;
    max-width: 60%;
    position: relative;
    margin-top: 10px;
}
.nlg-booking-details-messages .message .title,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .title {
    font-size: 16px;
    display: block;
    font-weight: 700;
    color:#041c11;
}
.nlg-booking-details-messages .message.dealer + .message.deale,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message.dealer + .message.dealer,
.nlg-booking-details-messages .message.customer + .message.customer,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message.customer + .message.customer {
    margin-top: 30px;
}
.nlg-booking-details-messages .message .content,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .content {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 15px;
}
.nlg-booking-details-messages .message .content p,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .content p {
    margin: 0;
}
.nlg-booking-details-messages .message .content::before,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-bottom: 15px solid transparent;
    top: 0;
}
.nlg-booking-details-messages .message .content .offer-vehicle,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .content .offer-vehicle {
    width: 100%;
    margin: 10px 0 0;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 12px;
    background-color: #54d38a;
    color: #000;
}
.nlg-booking-details-messages .message .content .offer-vehicle p,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .content .offer-vehicle p {
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 10px;
}
.nlg-booking-details-messages .message .meta strong,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .meta strong {
    color: #666;
    margin-right: 3px;
}
.nlg-booking-details-messages .message .meta,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .meta {
    display: block;
    font-size: 12px;
    color: #adbdbd;
    margin: 3px 15px 0;
}
.nlg-booking-details-messages .message .meta strong,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message .meta strong {
    color: #666;
    margin-right: 3px;
}
.nlg-booking-details-messages .message.dealer,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message.dealer {
    text-align: left;
    margin-left: 0;
}
.nlg-booking-details-messages .message.dealer .content,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message.dealer .content {
    background: #fff;
    color: #2b3033;
}
.nlg-booking-details-messages .message.dealer .content::before,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message.dealer .content::before {
    border-left: 15px solid transparent;
    border-right: 10px solid #ffffff;
    border-top: 26px solid #ffffff;
    border-radius: 5px 0 0;
    left: -10px;
}
.nlg-booking-details-messages .message.customer,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message.customer {
    text-align: right;
    margin-right: 0;
}
.nlg-booking-details-messages .message.customer .content,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message.customer .content {
    background: #54d38a;
    color: #fff;
}
.nlg-booking-details-messages .message.customer .content::before,
.nlg-booking-details .nlg-booking-app .booking-chat .messages .message.customer .content::before {
    border-left: 10px solid #54d38a;
    border-right: 15px solid transparent;
    border-top: 26px solid #54d38a;
    border-radius: 0 5px 0 0;
    right: -10px;
}
.nlg-booking-details .nlg-booking-app .booking-chat .composer {
    display: flex;
    align-items: center;
    padding: 0;
    border-top: 1px solid #EEE;
}
.nlg-booking-details .nlg-booking-app .booking-chat .composer .text {
    flex: 1 1 auto;
    height: 78px;
    font-size: 16px;
    outline: none !important;
    padding: 15px;
    resize: none;
    border: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.nlg-booking-details .nlg-booking-app .booking-chat .composer .send {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #666;
}
html.no-touch .nlg-booking-details .nlg-booking-app .booking-chat .composer .send:hover {
    color:#4ecb4a
}
.nlg-booking-details .nlg-booking-app .booking-chat .tools {
    padding: 15px;
    border-bottom: 1px solid #EEE;
    display: flex;
    align-items: center;
}
.nlg-booking-details .nlg-booking-app .booking-chat .tools .label {
    flex: 1 1 auto;
    font-weight: 700;
}
.nlg-booking-details .tools .btn + .btn {
    margin-left: 10px;
}


/* Responsive
------------------------------------------------------------ */

@media all and (max-width:767px) {
    .nlg-booking-details .nlg-booking-opts{
        display: block;
    }
    .nlg-booking-details .nlg-booking-opts .opt {
        margin: 0;
    }
    .nlg-booking-details .nlg-booking-opts .opt + .opt {
        margin-top: 10px;
    }
    .nlg-booking-details .nlg-booking-content table,
    .nlg-booking-details .nlg-booking-content table tbody,
    .nlg-booking-details .nlg-booking-content table tfoot,
    .nlg-booking-details .nlg-booking-content table tr,
    .nlg-booking-details .nlg-booking-content table td {
        display: block;
        width: 100%;
    }
    .nlg-booking-details .nlg-booking-content table.resume td {
        padding: 0;
    }
    .nlg-booking-details .nlg-booking-content table td {
        padding: 0;
        border: none;
    }
    .nlg-booking-details .nlg-booking-content table thead {
        display: none;
    }
    .nlg-booking-details .nlg-booking-content table tr + tr {
        border-top: 1px solid #EEE;
        margin-top: 10px;
        padding-top: 10px;
    }
    .nlg-booking-details .nlg-booking-content table tfoot tr + tr {
        border-top: 1px solid #000;
    }
    .nlg-booking-details .tools .btn {
        display: block;
        width: 100%;
    }
    .nlg-booking-details .tools .btn + .btn {
        margin-left: 0;
        margin-top: 10px;
    }
}
@media all and (max-width:575px) {
    .nlg-vehicle-details-dialog .table tfoot .total td {
        font-size: 14px;
        line-height: 1.2;
    }
    .nlg-vehicle-details-dialog .info {
        font-size: 14px;
        line-height: 1.4;
    }
    .nlg-vehicle-details-dialog .table,
    .nlg-vehicle-details-dialog .table thead,
    .nlg-vehicle-details-dialog .table tbody,
    .nlg-vehicle-details-dialog .table tfoot,
    .nlg-vehicle-details-dialog .table tr,
    .nlg-vehicle-details-dialog .table td,
    .nlg-vehicle-book-dialog form .resume .table td {
        display: block;
    }
    .nlg-vehicle-details-dialog .table {
        margin: 20px 0 0;
    }
    .nlg-vehicle-details-dialog .table td {
        border: none !important;
        padding: 5px !important;
    }
    .nlg-vehicle-details-dialog .table td:empty {
        padding: 0 !important;
    }
    .nlg-vehicle-details-dialog .table tbody tr + tr {
        border-top: 1px solid #EEE;
    }
    .nlg-vehicle-details-dialog .table tfoot tr {
        border-top: 1px solid #000;
    }
    .nlg-vehicle-details-dialog .book,
    .nlg-vehicle-book-dialog form .book {
        display: block;
        width: 100%;
        margin-top: 20px;
    }
}