﻿
body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #dfdfdf;
    font-family: 'Roboto', sans-serif;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
}



/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    width: 280px;
    border:0px;
    padding:8px !important;
}
    
.navbar {
    height: 117px;
}

.bottomRowMargin {
    margin-bottom: 18px;
}

.input-wrapper {
    position: relative;
}

.icon {
    position: absolute;
    top: 35%;
    left: 270px;
    z-index: 1;
    height: 10px;
    margin-top: -5px;
}

    .icon img {
        display: block;
        width: 16px;
    }

.text-box {
    padding-left: 20px;
    /*pointer-events: none;*/
}

.greenButton {
    padding: 12px;
    color: white;
    background-color: #51AE32;
}

.greenButtonSmall {
    padding: 6px;
    color: white;
    background-color: #51AE32;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.contentWrapper {
    margin-top: 140px;
}

input[type=submit], input[type=button] {
    background-color: #51AE32;
    border: 1px solid black;
    padding: 6px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    border: 0px;
    font-size: 18px;
    min-width: 120px;
}

.greenButtonLarge {
    background-color: #51AE32;
    border: 1px solid black;
    color: white !important;
    text-decoration:none !important;
    text-align:center;
    display:table-cell;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    border: 0px;
    font-size: 18px;
    width: 280px;
    padding: 10px !important;
}

h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
}

.headerFont {
    font-size: 32px !important;
}

.whiteFont {
    color: white !important;
}

.inputLabel {
    padding-right: 0px;
    padding-top: 12px;
}

.blackLink {
    color: black;
    text-decoration: underline;
}

.bookTripSection {
    border-bottom: 1px solid #CDCFCE;
    margin-bottom: 16px;
}

.divIcon {
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size:auto;
    color:red;
}

.divInlineIcon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-position:center;
    background-repeat:no-repeat;
}

.divIconName {
    background-image: url('../Images/Icons/Name.svg');
}

.divIconEmail {
    background-image: url('../Images/Icons/Email.svg');
}

.divIconLocation {
    background-image: url('../Images/Icons/Start-and-end-location.svg');
}

.divIconVehicleType {
    background-image: url('../Images/Icons/vehicle-type.svg');
}

.divIconNotes {
    background-image: url('../Images/Icons/Notes.svg');
}

.divIconBudgetCode {
    background-image: url('../Images/Icons/Budget-code.svg');
}

.divIconPercentageSplit {
    background-image: url('../Images/Icons/Percentage-split.svg');
}

.divIconDate {
    background-image: url('../Images/Icons/Start-and-end-date.svg');
}

.divIconTime {
    background-image: url('../Images/Icons/Start-and-end-time.svg');
}

.divIconOrganisation {
    background-image: url('../Images/Icons/Organisation.svg');
}

.divIconCountry {
    background-image: url('../Images/Icons/Country.svg');
}

.divIconMobile {
    background-image: url('../Images/Icons/Mobile.svg');
}

.divIconPassword {
    background-image: url('../Images/Icons/Password.svg');
}

.divIconPurpose {
    background-image: url('../Images/Icons/Purpose.svg');
}

.divIconProgramme {
    background-image: url('../Images/Icons/clipboard-text.svg');
}

.divIconTravelAuth {
    background-image: url('../Images/Icons/book.svg');
}

.divIconCargo {
    background-image: url('../Images/Icons/bag-checked.svg');
}

.divIconLocationDescStart {
    background-image: url('../Images/Icons/location-enter.svg');
}

.divIconLocationDescEnd {
    background-image: url('../Images/Icons/location-exit.svg');
}

.divIconPassenger {
    background-image: url('../Images/Icons/seatbelt.svg');
}

.divIconReturnTrip {
    background-image: url('../Images/Icons/rotate-right.svg');
}

.divIconLocationWaypoint {
    background-image: url('../Images/Icons/map-marker-radius.svg');
}

hr {
    color: red;
}

.topTab {
    width: 270px;
    background-color: white;
    color: black;
    height: 40px;
    padding: 10px;
    text-align: center;
    margin: 0px;
    font-weight: bold;
}

.tabSelected {
    background-color: #ecedee;
}



.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkboxContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ffffff;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
    background-color: #51AE32;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.requirement{
    color:red;
    font-size:12px;
    font-weight:bold;
    position:relative;
    top:-4px;
}

.helpSectionWrapper {
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 6px;
    margin-bottom:10px;
}

.helpSectionHead
{
    cursor:pointer;
}

.helpSectionContent {
    padding-top:10px;
    padding-bottom:10px;
}

.helpChevronPositioning {
    float: right;
    margin-right: 10px;
}

.cls_logo {
    float: left;
    margin-right: 6px;
}

.cls_logo_div {
    padding-right: 20px;
    border-right: 1px solid white;
    margin-top: 10px;
    float: left;
    margin-right: 20px;
}

.navbar-brand {
    line-height: 27px !important;
}

.ssoButtonLarge {
    background-color: white;
    border: 1px solid #51AE32;
    color: #51AE32 !important;
    text-decoration: none !important;
    text-align: center;
    display: table-cell;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 18px;
    width: 280px;
    padding: 10px !important;
}

.select-editable {
    position: relative;
    background-color: white;
    width: 280px;
    height: 37px;
}

    .select-editable select {
        position: absolute;
        top: 0px;
        left: 0px;
        border: none;
        width: 277px;
        margin: 0;
    }

    .select-editable input {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 258px;
        padding: 1px;
        border: none;
    }

        .select-editable select:focus, .select-editable input:focus {
            outline: none;
        }



.counter-container a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep the text color consistent */
}

    .counter-container a:hover {
        text-decoration: none; /* Ensure underline doesn't appear on hover */
        color: inherit; /* Prevent color change on hover */
    }

.counter-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    width: 120px;
    height: 39px;
    justify-content: space-between;
    border-radius: 5px;
    overflow: hidden;
}

.counter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    border: none;
    background-color: #f4f4f4;
}

    .counter-btn.increment {
        background-color: #28a745;
        color: white;
    }

    .counter-btn:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

.counter-input {
    width: 40px;
    text-align: center;
    font-size: 16px;
    border: none;
    outline: none;
}


.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.clsPassengerTbl table {
    width: 100%;
    border-collapse: collapse; /* Remove space between table cells */
    margin: 10px 0; /* Add margin-top 10px */
    background-color: #fff; /* White background for the table */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.clsPassengerTbl th, td {
    border: 1px solid #ddd; /* Light gray border for cells */
    padding: 12px; /* Add padding inside cells */
    text-align: left; /* Align text to the left */
}

.clsPassengerTbl th {
    background-color: #858585;
    color: white; /* Ensure text is visible on the green background */
    font-weight: bold;
}

.clsPassengerTbl tr {
    background-color: #f9f9f9; /* Alternate row color */
}

    .clsPassengerTbl tr:hover {
        background-color: #f1f1f1; /* Highlight row on hover */
    }

.trip_btn {
    background-color: #51AE32;
    border: 1px solid black;
    padding: 6px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    border: 0px;
    font-size: 18px;
    min-width: 120px;
}

.clsBorderBottom {
    border-bottom: 1px solid #CDCFCE;
    margin: 15px 0px 15px 0px;
}

.divIconDelete {
    background-image: url('../Images/Icons/Delete.svg');
}

.field-validation-valid {
    color: red !important;
    font-size: 14px !important;
}

.btn_search {
    margin-left: 40px;
}

.d-inline-flex {
    display: inline-flex !important;
}

.btn_passenger {
    width: 226px;
    margin: 10px 0px 2px 292px;
}