/* ==================================================
   UTC Design Tokens (CSS Variables)
   ================================================== */
:root {
    /* Brand palette */
    --utc-color-brand: #ffcd00;
    --utc-color-ink: #272727;
    --utc-color-black: #000000;
    --utc-color-white: #ffffff;

    /* Semantic */
    --utc-bg: var(--utc-color-black);
    --utc-surface: #11171c;
    --utc-surface-2: #0f1419;
    --utc-border: #2a3238;
    --utc-text: #e8edf2;
    --utc-text-sub: #a8b0b8;
    --utc-accent: var(--utc-color-brand);
    --utc-focus: #4f46e5;

    /* Typography */
    --utc-font-primary: "Blinker", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --utc-font-secondary: "Open Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Type sizes (ptâ†’rem @16px) */
    --utc-text-h1: 2.833rem;
    /* 34pt */
    --utc-text-h2: 1.833rem;
    /* 22pt */
    --utc-text-h3: 1.5rem;
    /* 18pt */
    --utc-text-body: 1.0625rem;
    /* 17px */
    --utc-text-body-sm: 0.9375rem;
    /* 15px */
    --utc-text-caption: 0.833rem;
    /* 10pt */

    /* Weights */
    --utc-weight-thin: 100;
    --utc-weight-extralight: 200;
    --utc-weight-regular: 400;
    --utc-weight-medium: 500;
    --utc-weight-semibold: 600;
    --utc-weight-bold: 700;
    --utc-weight-extrabold: 800;

    /* Layout tokens */
    --container-max: 1340px;
    --navbar-height: 78px;

    /* Radii & spacing */
    --radius-sm: 5px;
    --radius: 10px;
    --radius-lg: 15px;
    --space-1: 5px;
    --space-2: 10px;
    --space-3: 15px;
    --space-4: 20px;
    --space-5: 25px;
    --space-6: 30px;

    /* Gutters used in layout math */
    --gutter: 15px;
    --gutter-half: 7.5px;
    --gutter-sm: 10px;
    /* where original used 10px */

    /* Shadows */
    --utc-shadow-1: 0 1px 2px rgba(0, 0, 0, .2);
    --utc-shadow-2: 0 8px 24px rgba(0, 0, 0, .35);

    /* Body base size (pt) for parity with your file */
    --utc-body-pt: 14pt;

    --lug-radius: 16px;
    --lug-gap: 14px;
    --lug-pad: 14px;
    --lug-ctrl-h: 44px;
    --lug-ctrl-w: 84px;
    --lug-border: 2px;
}

/* ==================================================
   Global / Base
   ================================================== */
body {
    font-family: var(--utc-font-primary);
    font-size: var(--utc-body-pt);
    color: var(--utc-color-black);
}

/* Hide Show all in tariffs */
.tariffs-form .checkbox.pull-right {
  display: none !important;
}

a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
    color: var(--utc-color-ink);
    text-decoration: none;
    background: var(--utc-color-white);
    box-shadow: var(--utc-shadow-1);
}

.modal-backdrop.fade {
    opacity: 0;
     transition: none !important;
}

.modal-backdrop.in {
    background-color: var(--utc-color-ink);
    opacity: 0.75;
     transition: none !important;
}

/* ==================================================
   App Shell & Background Effects
   ================================================== */
#app {
    background: #272727;
    font-family: var(--utc-font-primary);
    font-size: var(--utc-body-pt);
    font-weight: var(--utc-weight-regular);
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    position: relative;
}

#app::before,
#app::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

#app::before {
  
    opacity: 0.8;
    /* warmth */
}

#app::after {
   
    mix-blend-mode: overlay;
}

#app>* {
    position: relative;
    z-index: 1;
}



/* HEADER */
.utc-header {
  height: 92px;                
  background: #000;
  position: relative;
  overflow: visible;      
  z-index: 10;
}

.utc-header-inner {
  height: 74%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* LOGO */
.utc-logo {
  position: absolute;
  left: 50%;
  top: 70%;                   
  transform: translate(-50%, -50%);
  width: 137px;
  height: 100px;
               
  pointer-events: none;
}

/* BACK BUTTON */
.back-btn {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
a.back-btn{
   text-decoration: none;
}

@media (max-width: 768px) {

.back-btn {
  line-height: 1;
  padding-bottom: 8px;
  font-size:30px
}

}



/* LANGUAGE */
.language-dropdown {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
 
}
.language-dropdown a {
  color:#fff;
 font-size:16px;
}

.language-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-dropdown img {
  width: 24px;
}
/**/

.booking-form {margin-top:40px}
.tariffs-form {margin-top:40px}

/* ==================================================
   Navigation
   ================================================== */
.bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background-color: var(--utc-color-black);
    z-index: 0;
    pointer-events: none;
}



.custom-nav-container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

.custom-nav {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--utc-color-white);
    position: relative;
    z-index: 4;
}

.custom-nav .logoimg img {
    width: 132px;
    padding-top: 10px;
    max-height: none;
}

/* Language Selection */
.custom-nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: -25px 0 0 0;
    padding: 0 0 3px var(--space-3);
    gap: 30px;
    list-style: none;
}

.custom-nav .right-align-link {
    padding: 0;
    margin: 0;
}

.custom-nav .nav-links .right-align-link a {
    padding: 5px 10px;
    font-size: var(--utc-body-pt);
    font-weight: var(--utc-weight-regular);
}

.custom-nav .nav-links .right-align-link>a:nth-child(1) {
    color: var(--utc-color-white);
    padding: 0;
}

.custom-nav .right-align-link>a:nth-child(1):hover {
    color: var(--utc-color-brand);
}

/* Dropdown */
.dropdown-menu {
    min-width: 0 !important;
    padding: 0;
    margin: 0;
    right: 0;
    left: auto;
    top: calc(100% + var(--space-2));
    border-radius: var(--radius-sm);
    border-color: var(--utc-color-ink);
}

.open>.dropdown-menu {
    display: flex;
    flex-direction: column;
}

/* Hide unused dropdown items */
.dropdown-header,
.dropdown-menu>li:nth-child(2),
.dropdown-menu>li:nth-child(4),
.dropdown-menu>li:nth-child(5),
.dropdown-menu>li:nth-child(6),
.dropdown-menu>li:nth-child(7) {
    display: none !important;
}

.language-dropdown .dropdown-menu li a {
    color: var(--utc-color-black) !important;
    border-radius: var(--radius-sm);
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    color: var(--utc-color-black);
    text-decoration: none;
    background-color: rgba(39, 39, 39, .2);
}

/* Home button */
.home-btn {
    background-color: var(--utc-color-brand);
    border-radius: var(--radius-sm);
    color: var(--utc-color-black) !important;
    padding: 12px 40px !important;
    font-size: var(--utc-body-pt) !important;
    font-weight: var(--utc-weight-medium) !important;
}

.home-btn:hover {
    filter: brightness(85%);
}





/* ==================================================
   Wrapper & Tabs
   ================================================== */
.wrapper {
    margin-top: 50px;
    width: min(100%, 900px);
    max-width: none;
    min-height: 0;
}

.wrapper nav {
    /*lm-removed display: none;*/
}

.tab-content {
    background: var(--utc-color-brand);
    color: var(--utc-color-black);
    border: 1px solid var(--utc-color-ink);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-inline: var(--space-2);
}
#tab-trips, #tab-profile
{
    /*lm-removed display: none;*/
}

/*
.booking-form::before,
.tariffs-form::before {
    display: block;
    font-size: 22pt;
    font-weight: var(--utc-weight-bold);
    padding-bottom: 10px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--utc-color-ink);
}

.tariffs-form::before {
    margin-bottom: 20px;
}

html:lang(en) .booking-form::before {
    content: "Book Your Taxi";
}

html:lang(nl) .booking-form::before {
    content: "Boek Uw Taxi Online";
}
*/



/* Note below vehicle */
.booking-form form> :nth-child(8)> :nth-child(2) .form-group::after {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    font-size: 10pt;
    font-style: italic;
    color: var(--utc-color-ink);
    content: "";
}

@media (max-width: 900px) {
    .booking-form form> :nth-child(8)> :nth-child(2) .form-group .form-control {
        margin-bottom: 24px;
    }
}

/*
html:lang(en) .booking-form form> :nth-child(8)> :nth-child(2) .form-group::after {
    content: "Luggage? Choose a station car";
}

html:lang(nl) .booking-form form> :nth-child(8)> :nth-child(2) .form-group::after {
    content: "Bagage mee? Kies een station";
}
*/

/* Section heading labels */
.address-places::before,
form>*:nth-child(4)::before,
form>*:nth-child(7)::before {
    display: block;
    font-size: 18px;
    margin: 20px 0 5px;
    font-weight: 600;
}

.user-info,
.address-places-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom:10px;
}


html:lang(en) form>*:nth-child(7)::before {
    content: "Trip Details";
}


html:lang(nl) form>*:nth-child(7)::before {
    content: "Reisdetails";
}

html:lang(nl) form>*:nth-child(4)::before {
    content: "Passagiersgegevens";
}

/* ==================================================
   Booking Form: inputs & visuals
   ================================================== */
.booking-form {
    border-radius: var(--radius-lg);
}

.form-control {
    border-radius: var(--radius-sm) !important;
    margin-bottom: 5px;
    
    color: var(--utc-color-black) !important;
    font-size: var(--utc-body-pt) !important;
    background-color: var(--utc-color-white);
}



.form-control::placeholder {
    color: #2727275e;
  
}


::placeholder {
    font-size: 16px; 
    opacity: 1;      
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder {
    font-size: 16px;
}

/* Microsoft Edge (starije verzije) */
::-ms-input-placeholder {
    font-size: 16px;
}

.form-group input,
.form-control {
    padding: 6px 16px !important;
    height: auto !important;
}

.form-group .form-label {
    position: static !important;
    left: 0 !important;
    top: 0 !important;
}

.form-group .input-tag {
    /*lm-removed display: none;*/
}

.form-label {
    color: var(--utc-color-ink) !important;
    font-size: 10pt !important;
    font-weight: var(--utc-weight-medium) !important;
    font-style: normal !important;
}

.select-arrow {
    color: var(--utc-color-ink) !important;
}

/* Fix rows with two cols */
@media (min-width: 992px) {
    .booking-form .col-md-6 {
        width: calc(50% - var(--gutter-half));
    }

    .booking-form .col-md-6:nth-child(2) {
        margin-left: var(--gutter);
    }
}

.booking-form .col-xs-6 {
    width: calc(50% - var(--gutter-half));
}

.booking-form .col-xs-6:nth-child(2) {
    margin-left: var(--gutter);
}

/* ==================================================
   Form layout: ordering & container
   ================================================== */
.booking-form form {
    display: flex;
    flex-direction: column;
}

/* Move transport objects before passenger info */
.transport-objects,
.row.no-margin:nth-of-type(4) {
    order: 1;
}

/* Passenger info + submit */
.row.no-margin:nth-of-type(5),
.row.no-margin:nth-of-type(6) {
    order: 2;
}

/* Reset order for other blocks */
.address-places,
.row.no-margin:nth-of-type(3),
/*lm commentout .return-destination,*/
.row.no-margin:nth-of-type(7){
    order: 0;
}

/* Always: hide first child in 8th form row */
.booking-form form> :nth-child(8)> :nth-child(1) {
    /*lm-removed display: none;*/
}

/* ==================================================
   Buttons / Tables
   ================================================== */
.tab-pane .reset-btn,
.tab-pane .go-back-btn {
    background-color: var(--utc-color-ink);
    color: var(--utc-color-white);
    border:none;
}


.tab-pane .submit-btn {
    background-color: var(--utc-color-black);
    color: var(--utc-color-brand);
    border: none;
}

.tab-pane button {
    border-radius: 5px;
    padding: 16px 33px;
    font-size: var(--utc-body-pt);
}

.tab-pane table {
    margin-top: 10px;
}



/* ==================================================
   Intl Tel Input
   ================================================== */
.vti__dropdown,
.vti__flag {
    margin-left: 0;
}

.form-control input.vti__input {
    padding: 0 8px !important;
}

.vti__dropdown-arrow {
    margin-inline: 0 !important;
}

/* ==================================================
   Calendar component
   ================================================== */
.vdatetime-popup {
    color: var(--utc-color-black);
    border-radius: var(--radius-lg);
}

.vdatetime-popup__header {
    background-color: var(--utc-color-ink);
    color: var(--utc-color-brand);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.vdatetime-popup__actions__button {
    color: var(--utc-color-brand);
    background-color: var(--utc-color-ink);
    border-radius: var(--radius-sm);
}

.vdatetime-calendar__month__day--selected>span>span,
.vdatetime-calendar__month__day--selected:hover>span>span {
    background-color: var(--utc-color-ink);
    color: var(--utc-color-brand);
}

.vdatetime-month-picker__item--selected,
.vdatetime-year-picker__item--selected {
    color: var(--utc-color-brand);
}

.vdatetime-popup__actions__button:hover {
    color: var(--utc-color-brand);
    background-color: var(--utc-color-black);
}

.vdatetime-time-picker__item--selected {
    color: var(--utc-color-brand);
    font-weight: 700;
    font-size: 40px;
}

/* ==================================================
   Responsive â€” shared â‰¤900px
   ================================================== */
@media (max-width: 900px) {
    .custom-nav {
        width: 100%;
        padding: 0 var(--space-2);
        flex-direction: row;
        align-items: center;
    }

    .custom-nav .logoimg img {
        position: revert;
        transform: translateX(0%);
        z-index: 2;
        max-height: none;
    }

    /* Form row 2 and 3: shared flex rules */
    .booking-form form> :nth-child(2) {
        display: flex;
    }

    .booking-form form> :nth-child(3) {
        display: flex;
        flex-wrap: wrap;
    }

  

    .booking-form form> :nth-child(3)> :nth-child(2) {
        order: -1;
    }
}

/* ==================================================
   Responsive â€” tablet 600â€“900px
   ================================================== */
@media (min-width: 600px) and (max-width: 900px) {

    /* Row 2 */
    .booking-form form> :nth-child(2) {
        flex-direction: row-reverse;
    }

    .booking-form form> :nth-child(2)> :nth-child(2) {
        margin-left: 0;
        margin-right: var(--gutter);
    }

    /* Row 3 specifics */
    .booking-form form> :nth-child(3) {
        flex-direction: row;
    }

  

    .booking-form form> :nth-child(3)> :nth-child(3) {
        width: 100%;
    }
}

/* ==================================================
   Responsive â€” mobile â‰¤600px
   ================================================== */
@media (max-width: 600px) {
    .tab-content {
        padding: 15px;
    }

    /* Row 2 */
    .booking-form form> :nth-child(2) {
        flex-direction: column-reverse;
    }

    .booking-form form> :nth-child(2)>* {
        margin-left: 0 !important;
        width: 100%;
    }

    /* Row 3 */
    .booking-form form> :nth-child(3) {
        flex-direction: column;
    }

   

    /* Row 5 */
    .booking-form form> :nth-child(5) {
        display: flex;
        flex-direction: column-reverse;
    }

    .booking-form form> :nth-child(5)>* {
        margin-left: 0 !important;
        width: 100%;
    }

    /* Compact buttons */
    .tab-pane button {
        padding: 2px 10px;
    }
}

/* ==================================================
   Responsive â€” desktop â‰Ą900px
   ================================================== */
@media (min-width: 900px) {
    .booking-form form {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: var(--gutter);
        position: static;
    }

    /* Row 1â€“2 layout */
    .booking-form form> :nth-child(1) {
        flex: 0 0 calc(66.66% - var(--gutter-half));
    }

    .booking-form form> :nth-child(2) {
        flex: 0 0 calc(33.33% - var(--gutter-half));
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
		margin-top:0;
    }
	


    .booking-form form> :nth-child(2)>* {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .booking-form form> :nth-child(2)> :nth-child(2) {
        order: -1;
    }

    /* Rows from 3 onward default full width */
    .booking-form form> :nth-child(n+3) {
        flex-basis: 100%;
    }

    /* Row 7â€“9 thirds (using 10px gutter as in original) */
    .booking-form form> :nth-child(7),
    .booking-form form> :nth-child(8),
    .booking-form form> :nth-child(9) {
        flex-basis: calc(33.33% - var(--gutter-sm));
    }

  /*  .booking-form form> :nth-child(8),
    .booking-form form> :nth-child(9) {
        display: flex;
        align-items: flex-end;
    }
*/

    .booking-form form> :nth-child(9) {
        align-items: flex-end;
        margin-top:54px;
    }

    .booking-form form> :nth-child(8)> :nth-child(2) {
        margin-left: 0;
        width: 100%;
    }

    /* Row 4 & 5 */
    .booking-form form> :nth-child(4) {
        flex-basis: calc(33.33% - var(--gutter-half));
    }

    .booking-form form> :nth-child(5) {
        flex-basis: calc(66.66% - var(--gutter-half));
        display: flex;
    }

    .booking-form form> :nth-child(5)>* {
        margin-top: auto;
    }

}

/* ==================================================
   Responsive â€” small nav â‰¤782px
   ================================================== */
@media (max-width: 782px) {
    .custom-nav .nav-links .right-align-link>a:nth-child(1) {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0;
        /* hide text, keep icon */
    }

    .custom-nav .nav-links {
        gap: 15px;
    }

    .home-btn {
        padding: 5px 15px !important;
    }

    .fa-language {
        font-size: 17pt;
    }
}

/* ==================================================
   Footer
   ================================================== */
.footer {
    background-color: var(--utc-color-black);
    padding: 50px 5px !important;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.footer > * {
    /*lm-removed display: none;*/ 
}


#footer-copy-container {
    display: block !important;
    width: 100%;
    text-align: center !important;
}

#footer-copy-container p {
    margin: 0 !important;
    color: #7A7A7A; 
    font-size:16px;
    font-weight:400;
}

#footer-copy-container a {
    color: var(--utc-color-brand) !important;
    text-decoration: none;
}


footer {
    display: none !important;
}

/* hide default theme footer if present */

/* ==================================================
   Tariffs / Lists
   ================================================== */
.tariffs-form .list-group-item {
    background: var(--utc-color-white);
    border-radius: 5px;
    color: var(--utc-color-black);
    border: none;
}

.tariffs-form .list-group {
    margin-bottom:10px;
}

.tariffs-form .list-group-item.header {
    border-radius: var(--radius) !important;
    margin-bottom: var(--space-2);
}

.tariffs-form .list-group-item.header:nth-of-type(1) {
    /*lm-removed display: none;*/
}

.tariffs-form .vehicle-type-image,
.tariffs-form .vehicle-type-image img {
    padding: 0;
    max-height: 45px;
}

.list-group.return .list-group-item {
    margin-bottom: var(--space-2);
}

.list-group-item-heading {
    font-size: 14pt;
}

.list-group-item-heading small,
.list-group-item-text {
    font-size: 10pt;
}

/* ==================================================
   Modal
   ================================================== */
.modal-dialog {
    margin: 15px;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 738px;
        margin: 30px auto;
    }
}

.modal-content {
    background: var(--utc-color-white);
    border: 1px solid var(--utc-color-ink);
    border-radius: var(--radius);
    color: var(--utc-color-black) !important;
}

.bootstrap-dialog.type-default .bootstrap-dialog-title {
    color: var(--utc-color-black) !important;
}

.modal-content .modal-header {
    background-color: transparent !important;
    font-size: 22pt;
    font-weight: var(--utc-weight-bold);
}

.modal-footer .btn-group {
    display: flex;
    gap: var(--space-2);
    flex-direction: row-reverse;
}

.modal-footer>.btn-group>.btn {
    font-size: 14pt;
    padding: 10px 10px;
    background-color: var(--utc-color-black);
    color: var(--utc-color-brand);
    flex: 1;
    border: none;
    border-radius: var(--radius) !important;
}

.modal-footer>.btn-group>.btn:nth-child(2) {
    color: var(--utc-color-white);
    background-color: var(--utc-color-ink);
}

/*
@media (max-width: 767px) {
    .modal-footer .btn-group {
        flex-direction: column;
    }
}
*/
@media (max-width: 400px) {
    .modal-footer>.btn-group>.btn {
        font-size: 10pt !important;
    }
}

/* ==================================================
   Form Overlay / Misc
   ================================================== */
.blocker {
   
    border-radius: var(--radius-lg) !important;
    position: absolute !important;
    top: 0;
    left: var(--space-2);
    right: var(--space-2);
    width: calc(100% - 2 * var(--space-2));
    height: 100%;
    z-index: 10;

 
    background-color: rgba(255, 204, 0, 0.7) !important; 
    backdrop-filter: blur(4px) !important; 
    

    background-image: none !important; 
}


.blocker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #000; /* Crni vrh spinnera */
    border-radius: 50%;
    animation: utc-spin 0.8s linear infinite;
}

@keyframes utc-spin {
    to { transform: rotate(360deg); }
}

form {
    position: static !important;
}

.radio.pull-left {
    margin-block: 12.5px;
    display: none;

}

/* Terms and conditions */
.tariffs-message {
    font-size: 10pt;
    color: var(--utc-color-ink);
}

.tariffs-message a {
    color: var(--utc-color-black);
    text-decoration: none;
    font-weight: 400;
}

/* ==================================================
   Input Icons â€” Baseline & Autofill
   ================================================== */
/* Base: keep spacing on inputs for left icon */
.form-group input,
.form-group select,
.form-group textarea,
.form-control {
    padding: 6px 16px 6px 34px !important;
    /* room for icon on the left */
    box-sizing: border-box;
}

/* Focus/autofill styling */
.form-group input.form-control:is(:focus, :-webkit-autofill),
.form-control:is(:focus, :-webkit-autofill),
.form-group select:is(:focus, :-webkit-autofill),
.form-group textarea:is(:focus, :-webkit-autofill) {
    background-color: #f9f9f9 !important;
    box-shadow: var(--utc-shadow-1) !important;
    -webkit-text-fill-color: #000 !important;
    caret-color: #000;
}

/* Icon anchor */
.form-group {
    position: relative;
    /* anchor for the icon */
    --icon: none;
    /* default: no icon unless set below */
}

.form-group::before {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 2px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    background-image: var(--icon);
    pointer-events: none;
}

/* Textarea icon slightly higher */
.booking-form form> :nth-child(6)> :nth-child(1) .form-group::before {
    top: 25%;
    transform: translateY(-25%);
}

/* No icon + reduced padding for that single field */
.booking-form form> :nth-child(5)> :nth-child(1) .form-group {
    --icon: none;
}

/* Message to driver (adjust icon position on tall textarea) */
.booking-form form> :nth-child(6)> :nth-child(1) .form-group::before {
    top: 45px !important;
    bottom: auto !important;
}

.vue-tel-input {
    padding-left: 8px !important;
}

/* Extra UI helpers */
.clear-datetime,
.clear-input-icon {
    color: var(--utc-color-black);
    position: absolute;
	top: 5px;
    right: 11px;
	cursor: pointer;
}

.address-valid-indicator {
    color: var(--utc-color-black) !important;
}

/* ==================================================
   Column visibility overrides
   ================================================== */
.col-xs-3 {
    display: none !important;
}

.col-xs-9 {
    width: 100% !important;
}

span.form-label a.add-waypoint,
span.form-label a.add-waypoint:visited,
span.form-label a.add-waypoint:hover,
span.form-label a.add-waypoint:active {
  color: #000000 !important;
}
.tariffs-form .vehicle-type-image 
{
	display:none!important
}
.list-group-item-heading{
	margin-top:11px !important;
}
p.list-group-item-text {
    /*lm-removed display: none;*/
}



.booking-form form> :nth-child(7)> :nth-child(1) .form-group .form-label{
	display:block;
	padding-top: 5px;
}


/*Return trip checkbox*/

.return-checkbox {
  margin-top: 5px;
}

.booking-form label.return-checkbox {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.booking-form select[name="isReturnTrip"] + .return-checkbox { margin-left: 8px; }
.booking-form select[name="isReturnTrip"] { /*lm-removed display: none;*/ }
.booking-form select[name="isReturnTrip"] + .select-arrow { /*lm-removed display: none;*/ }

.booking-form form> :nth-child(2)> :nth-child(1) .form-group{
	height: 73px;
}




/*Bootstrap modals*/
.modal-dialog:has(.bootstrap-dialog-title) .modal-content {
  background: var(--utc-color-white);
  border: 1px solid var(--utc-color-ink);
  border-radius: var(--radius);
  color: var(--utc-color-black) !important;
  box-shadow: 3px 3px 10px rgba(0,0,0,.75);
}


.modal-dialog:has(.bootstrap-dialog-title) .modal-header {
  background: transparent !important;
  padding: 15px 20px;
}

.modal-dialog:has(.bootstrap-dialog-title) .bootstrap-dialog-title {
  font-size: 22pt;
  font-weight: var(--utc-weight-bold);
  color: var(--utc-color-black) !important;
}


.modal-dialog:has(.bootstrap-dialog-title) .modal-body {
  padding: 20px;
  color: var(--utc-color-black);
}


.modal-dialog:has(.bootstrap-dialog-title) .bootstrap-dialog-footer {
  border-top: none;
  padding: 15px 0;
}

.modal-dialog:has(.bootstrap-dialog-title) .bootstrap-dialog-footer-buttons {
  display: flex;
  gap: var(--space-2);
  flex-direction: row-reverse; 
}

.modal-dialog:has(.bootstrap-dialog-title) .bootstrap-dialog-footer-buttons .btn {
  font-size: 14pt;
  padding: 10px 10px;
  border: none;
  border-radius: var(--radius) !important;
}


.modal-dialog:has(.bootstrap-dialog-title) .bootstrap-dialog-footer-buttons .btn-danger {
  background-color: var(--utc-color-black);
  color: var(--utc-color-brand);
}


.modal-dialog:has(.bootstrap-dialog-title) .bootstrap-dialog-footer-buttons .btn-default {
  background-color: var(--utc-color-ink);
  color: var(--utc-color-white);
}

.modal-dialog:has(.bootstrap-dialog-title) button.close {
  color: var(--utc-color-black);
  opacity: 1;
}

.bootstrap-dialog .bootstrap-dialog-message {
  font-size: 18px;
}

.bootstrap-dialog-footer-buttons {
  display: flex;
  gap: var(--space-2);
  flex-direction: row-reverse;
  justify-content: stretch;
  width: 100%;
}

.bootstrap-dialog-footer-buttons .btn {
  font-size: 14pt;
  padding: 12px 0; 
  border: none;
  border-radius: var(--radius) !important;
  flex: 1; 
  text-align: center;
}

.bootstrap-dialog-footer-buttons .btn-danger {
  background-color: var(--utc-color-black) !important;
  color: var(--utc-color-brand) !important;
}

.bootstrap-dialog-footer-buttons .btn-default {
  background-color: var(--utc-color-ink) !important;
  color: var(--utc-color-white) !important;
}

.passenger-counter {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  
  width: 100%;
  height: 52px;      
  background: #fff;
  border-radius: 5px; 
  padding: 0 16px;
  box-sizing: border-box;
}


.pc-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}


.pc-controls {
  display: flex;
  align-items: center;
  gap: 12px; 
}

.pc-controls button {
  width: 32px;  
  height: 32px; 
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.btn-dec {
  background: #fdfcfb;
  border: 1px solid #000;
  color: #000;
}

.btn-inc {
  background: #222;
  border: none;
  color: #fff;
}


.pc-controls .count {
  font-size: 18px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.veh-hidden { /*lm-removed display: none !important;*/}



/* Kontejner za  prtljagu */
#bs-luggage .lug-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.lug-header {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-top:20px;
  margin-bottom: 5px;
  padding-left: 4px;  
}

#bs-luggage .lug-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


#bs-luggage .passenger-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 5px;
  padding: 10px 16px;
  height: auto; 
  min-height: 64px;
  box-sizing: border-box;
}


.pc-label-group {
  display: flex;
  align-items: center;
}

.pc-text {
  display: flex;
  flex-direction: column;
}

.pc-main-label {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}

.pc-sub-label {
  font-size: 14px;
  color: #555;
  font-weight: 400;
}


.pc-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}


.pc-controls button {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: none;
}

.btn-dec {
  background: #F8F5F2;
  border: 1px solid #000 !important;
  color: #000;
}

.btn-inc {
  background: #222;
  color: #fff;
}

.pc-controls .count {
  font-size: 16px;
  font-weight: 400;
  min-width: 20px;
  text-align: center;
}


.pc-controls button:not(:disabled) {
  background: #222 !important;
  color: #fff !important;
  border: none !important;
}

.pc-controls button:disabled {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  opacity: 1 !important;
  cursor: not-allowed;
}


#bs-luggage .lug-label, 
#bs-luggage .lug-help {
  /*lm-removed display: none;*/ 
}

.pc-main-section {
    width: 100%;
    margin-bottom: 20px;
}
.pc-section-header {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    display: block;
}

/*PAYMENT METHOD*/
.pm {display:none}

/* ==================================================
   UTC MOBILE SKIN — FINAL OVERRIDE
   ================================================== */

.utc-mobile-skin .wrapper{
  max-width: 470px !important;
  margin: 20px auto !important;
}


.utc-mobile-skin .booking-form form{
  display: block !important;
}


.utc-mobile-skin .booking-form form > *{
  display: block !important;
  width: 100% !important;
  flex: none !important;
}


.utc-mobile-skin .booking-form [class*="col-"]{
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
}

/* lm comment out
.utc-mobile-skin .booking-form .row,
.utc-mobile-skin .booking-form .row.no-margin{
  display: block !important;
}


.utc-mobile-skin .booking-form .form-group{
  margin-bottom: 14px;
}


.utc-mobile-skin .row.no-margin.return-destination {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: -9999px;
}


.utc-mobile-skin .row.no-margin.return-destination.is-open {
    visibility: visible;
    height: auto;
    overflow: visible;
    position: static;
    left: auto;
}
*/


.app-title{
 background: #FFE500;
  position: relative;
  border-radius: 10px 10px 0 0;
  height: 78px;
  margin-left: -20px;
  margin-top: -20px;
  width: calc(100% + 40px);
  padding: 15px;
  font-size: 32px;
  font-weight: 700;
   margin-bottom:20px;
}

.app-title-tariff{
 background: #FFE500;
  position: relative;
  border-radius: 10px 10px 0 0;
  height: 78px;
  margin-left: -20px;
  margin-top: -20px;
  width: calc(100% + 40px);
  padding: 15px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom:20px;
}

.tab-content {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

.utc-card {
  background: #ffcd00;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}


.booking-form .form-group::before,
.booking-form .form-group::after,
.booking-form .form-control::before,
.booking-form .form-control::after {
  content: none !important;
  background: none !important;
  display: none !important;
}


.booking-form .input-with-icon { 
  position: relative; 
}

/* LEFT ICON */
.booking-form .input-with-icon .input-icon{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.booking-form .input-with-icon .input-icon svg{
  width:18px;
  height:18px;
  display:block;
}


.booking-form .input-with-icon .clear-input-icon{
  position:absolute;
  top:50%;
  right:6px;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:10;
  -webkit-tap-highlight-color:transparent;
}


.booking-form .input-with-icon .clear-input-icon i{
  pointer-events:none;
  line-height:1;
  font-size:18px;
}


.booking-form .input-with-icon .form-control{
  padding-left:46px !important;
  padding-right:52px !important;
}


.booking-form .form-control{
  font-size:16px !important;
  font-weight:400 !important;
}



.booking-form .form-group-places.pickup input.form-control,
.booking-form .form-group-places.pickup input.form-control:focus {
  /*padding-left: 52px !important;
  
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/></svg>");
  background-repeat: no-repeat !important;
  background-position: 16px center !important;
  background-size: 18px !important;
  */
}

.booking-form .form-group-places.dropoff input.form-control,
.booking-form .form-group-places.dropoff input.form-control:focus {
  /*padding-left: 52px !important;
  
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M6 3c-.55 0-1 .45-1 1v17a1 1 0 1 0 2 0v-6h11l-3-5 3-5H6z'/></svg>");
  background-repeat: no-repeat !important;
  background-position: 16px center !important;
  background-size: 18px !important;
  */
}



.booking-form input[name="flightNumber"],
.booking-form input[name="flightNumber"]:focus {
	/*
  padding-left: 52px !important;

  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'>\
<path d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3-1 3 1v-1.5L13 19v-5.5l8 2.5z'/>\
</svg>");

  background-repeat: no-repeat !important;
  background-position: 16px center !important;
  background-size: 16px !important;
  */
}

.form-group-places.dropoff {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    position: relative;
    margin-top: 34px;
}

.add-waypoint {
    position: absolute;
    top: -22px;
    left: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight:400;
    display: flex;
    align-items: center;
    gap: 5px;
}
a.add-waypoint {
    color:#000;
    text-decoration:none;
}
.add-waypoint i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-weight:400;
  border-radius: 50%;
  border: 1px solid #000;
  font-size:11px;
}


.form-group-places.dropoff {
    position: relative;
    width: 100%;
}


.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}


.form-control.search {
    padding-left: 35px; 
    padding-right: 30px; 
    height: 45px;    
    box-sizing: border-box;
    margin-top:9px;
}

.clear-input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}


.booking-form .form-group-places.return-dropoff input.form-control,
.booking-form .form-group-places.return-dropoff input.form-control:focus {
  padding-left: 52px !important;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/></svg>");
  background-repeat: no-repeat !important;
  background-position: 16px center !important;
  background-size: 18px !important;
}

.booking-form select[name="isReturnAddressDifferent"],
.booking-form select[name="isReturnAddressDifferent"]:focus,
.booking-form select[name="isReturnAddressDifferent"]:active {
  padding-left: 52px !important;

  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'>\
<path d='M10 7V4L3 11l7 7v-3c5 0 8 1.5 10 5-1-6-4-10-10-10z'/>\
<circle cx='6' cy='19' r='1'/>\
<circle cx='9' cy='19' r='1'/>\
<circle cx='12' cy='19' r='1'/>\
</svg>");

  background-repeat: no-repeat !important;
  background-position: 16px center !important;
  background-size: 18px !important;
}



.utc-booking--v2 .form-group {
  position: relative;
  margin-bottom: 12px;
}


.utc-booking--v2 .js-transport-select {
  position: absolute;
  top: 0;
  left: 0;

  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;

  opacity: 0;
  pointer-events: none;
}

.utc-booking--v2 .transport-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px;          
  background: #fff;
  border-radius: 5px;

  box-sizing: border-box;    
}

.utc-booking--v2 .transport-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.utc-booking--v2 .transport-left i {
  font-size: 22px;
}

.utc-booking--v2 .transport-counter .transport-left .label {
  color: #000;
  font-weight: 400;
}

.utc-booking--v2 .transport-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.utc-booking--v2 .transport-counter button {
  width: 32px;
  height: 32px;

  border-radius: 10px;
  font-size: 18px;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0; 
}

.utc-booking--v2 .transport-counter .btn-dec {
  background: #fff;
  border: 1px solid #222;
  color: #222;
}

.utc-booking--v2 .transport-counter .btn-inc {
  background: #222;
  border: 1px solid #222;
  color: #fff;
}

.utc-booking--v2 .transport-counter button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.utc-booking--v2 .transport-counter .count {
  min-width: 24px;
  text-align: center;

  font-size: 20px;
  font-weight: 500;
}
.utc-booking--v2 .form-group {
  margin-bottom: 12px;
}

/*.utc-booking--v2 .form-group .form-label,*/
.utc-booking--v2 .form-group .select-arrow {
  /*lm-removed display: none;*/
}
.utc-booking--v2 .transport-select-group {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* select unutra – čisto radi sigurnosti */
.utc-booking--v2 .transport-select-group .js-transport-select {
  position: absolute;
  left: -9999px;
}




/* Vehicle dropdown – logika da, UI ne */
.utc-booking--v2 select[name="vehicleTypes"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  margin: 0 !important;
}




#bs-luggage .lug-counter {
  height: 52px;
  width: 100%;
}

#bs-luggage .lug-counter .btn-dec,
#bs-luggage .lug-counter .btn-inc {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

#bs-luggage .lug-counter .btn-dec {
  background: #f7f5f2;
  border: 2px solid #222;
}

#bs-luggage .lug-counter .btn-inc {
  background: #222;
  color: #fff;
}

#bs-luggage .lug-counter .count {
  font-size: 20px;
  font-weight: 500;
}



.address-places .col-xs-9 .form-label {
    color: transparent !important; 
    font-size: 0px !important;    
    line-height: 0 !important;
}


.address-places .form-label a {
    color: #ffcc00 !important;    
    font-size: 13px !important; 
    line-height: normal !important;
    visibility: visible !important;
    display: inline-block !important;
}


.address-places .form-label .remove-waypoint {
    color: #ff4d4d !important;   
}



.form-group-places.pickup .form-label {
    /*lm-removed display: none !important;*/
}


.address-places .col-xs-9 .form-label {
    position: relative !important; 
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important; 
    min-height: 0 !important;
}


.form-group-places.pickup .form-group {
    margin-bottom: 5px !important;
}

.help-block{
    font-size:14px;
    font-weight:400;
    border-left:1px solid #000;
    padding-left: 10px;
    margin-top: 10px;
    color: #000;
}

.lug-error{
    font-size:14px;
    font-weight:400;
    border-left:1px solid #000;
    padding-left: 10px;
    margin-top: 10px;
}




.list-group.original .radio,
.list-group.return .radio {
  /*lm-removed display: none;*/
}


.list-group.original .pull-left,
.list-group.original .pull-right {
  float: none !important;
}

.list-group.return .pull-left,
.list-group.return .pull-right {
  float: none !important;
}


.list-group.original .form-control-inline {
  width: 100%;
}

.list-group.return .form-control-inline {
  width: 100%;
}


.list-group.original .tariff-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.list-group.return .tariff-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.list-group.original .tariff-label {
  font-size:16px;
  font-weight: 400;
}

.list-group.return .tariff-label {
  font-size:16px;
  font-weight: 400;
}


.list-group.original .tariff-price {
  white-space: nowrap;
  font-size:16px;
  font-weight: 400;
}

.list-group.return .tariff-price {
  white-space: nowrap;
  font-size:16px;
  font-weight: 400;
}


.list-group.original .list-group-item-text,
.list-group.original .vehicle-type-image,
.list-group.original .clearfix {
  /*lm-removed display: none;*/
}


.list-group.return .list-group-item-text,
.list-group.return .vehicle-type-image,
.list-group.return .clearfix {
  /*lm-removed display: none;*/
}

.list-group-item.show-all-rt {
  display: none;
}


.booking-actions-table {
    width: 100%;
    border-collapse: collapse;
}

.booking-actions-table td {
    padding: 0;
}
.booking-actions-table td:first-child {
    width: 0 !important;
}

/* reset skriven */
.booking-actions-table .reset-btn.is-hidden {
    display: none !important;
}

/* submit full width */
.booking-actions-table .submit-btn {
    width: 100%;
    min-height: 60px;
    display: block;
}

.phone-highlight {
    color: #0088FF; 
}

.mt-user{
    margin-top:10px;
}

.booking-actions-table-submit {
    width: 100%;
    border-collapse: collapse; /* BITNO */
}

.booking-actions-table-submit td {
    padding: 0;
    vertical-align: middle;
}

.booking-actions-table-submit td:first-child {
    padding-right: 10px;
}

.booking-actions-table-submit .go-back-btn,
.booking-actions-table-submit .submit-btn {
    width: 100%;
    display: block;
    min-height:60px;
}


.utc-card .form-control {
    border: none !important;
    box-shadow: none !important; 
}

.address-places{
    margin-top: 10px;
}


/* Return trip chekbox */
.rt-check  {
    margin-top:20px;
}
.rt-check label {
    display: block;
    position: relative;
    padding-left: 35px; 
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    user-select: none;
}

.rt-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border-radius: 6px;
}
.rt-check:hover input ~ .checkmark {
    background-color: #f1f1f1;
}

.rt-check input:checked ~ .checkmark {
    background-color: #fff; 
}


.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


.rt-check input:checked ~ .checkmark:after {
    display: block;
}


.rt-check .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid #000; 
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}


.ui-helper-hidden-accessible{
    display:none;
}


.vti__dropdown{
  padding: 3px !important;

}
.vti__dropdown-list {
    margin-top:30px;
}

.utc-terms{
    font-size:14px;
    font-weight:400;
    margin-top:20px;
    margin-bottom: 20px;
}

.utc-terms a{
    color:#0088FF;
}

.vue-tel-input .vti__dropdown-item strong {
    font-weight: 400 !important;
}
.vti__dropdown-list {
    z-index: 4 !important;
}


.modal-footer .btn-group-justified .btn:last-child {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-footer .btn-group-justified .btn:first-child {
    white-space: nowrap;
    border: 2px solid #0088FF
}