/* .bookingTitle{
    font-size:2.5rem;
    text-align: center;
    background-color: #00a794; 
    padding-top: 10px; 
    padding-right: 0px; 
    padding-bottom: 10px; 
    padding-left: 0px;
    color: white;
} */

.bookingWrap {
    display: flex;
    justify-content: space-between;
    background-color: #00a794; 
    padding-top: 10px; 
    padding-right: 10px; 
    padding-bottom: 10px; 
    padding-left: 10px;
    color: white;
    align-items: center;

  }

  .bookingText {
    overflow: hidden;
    text-align: left;
    position: relative;
    height: 60px;
  }

/* The container */
.bookingContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.bookingContainer  input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.bookingCheckmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #d6d6d6;
    border-radius: 50%;
}

/* On mouse-over, add a blue background color */
.bookingContainer:hover input ~ .bookingCheckmark {
    background-color: #00a794;
}

/* When the radio button is checked, add a purple background */
.bookingContainer input:checked ~ .bookingCheckmark {
    background-color: #7413dc;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.bookingCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.bookingContainer input:checked ~ .bookingCheckmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.bookingContainer .bookingCheckmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* CheckBox */
/* The container */
.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -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;
}

/* Create a custom checkbox */
.checkboxCheckmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #d6d6d6;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkboxCheckmark {
    background-color: #00a794;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkboxCheckmark {
    background-color: #7413dc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkboxCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkboxCheckmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkboxCheckmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Drop Down Boxes */
select {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #ccc;
}

/* Test Area */
.bookingTextarea {
    border-radius: 4px;
}

/* Next Buttons */
.bookingButton {
    background-color: #7413dc; /* Green */
    border: none;
    color: #7413dc;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    border-radius: 12px;
    cursor: pointer;
}

.bookingButton1 {
    background-color: #7413dc; 
    color: white; 
    border: 2px solid white;
}

.bookingButton1:hover {
    background-color: #00a794;
    color: white;
}

/* Header indicating Current Step */
.stepHeader {
   background-color: #74d1dc;
   color: white;
   padding: 10px; 
   border-radius: 5px;
}

/* Main Area Coloured Table */
.bookingMainAreaTable {
    background-color: #ffe627;
    width: 80%;
    align-items: center;
    border-radius: 5px;
}

/* Border of Table */
.bookingMainAreaTableBorder{
   border: 1px solid #7413dc;
   border-radius: 5px;
}

/* Text Input Field*/
.bookingInput {
    padding: 10px 20px ! important;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* According Stuff in Group Bookings */
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 1px solid #d3d3d3;
    background: #7413dc url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
    font-weight: normal;
    color: #555555;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: #7413dc;
}

.accordion-button, .collapsed {
    background-color: #ffe627;
}

.bootstrap-touchspin-down {
    background-color: #00a794;
    border-color: #00a794
}

.bootstrap-touchspin-up {
    background-color: #00a794;
    border-color: #00a794
}

.bootstrap-touchspin-down:hover{
    background-color: #7413dc;
}

.bootstrap-touchspin-up:hover{
    background-color: #7413dc;
}

.nav-link.active{
    background-color: #ffe627 !important;
    color: black !important;
}
