body {
    height: 800px;
    background-color: #eeeeee;
}

/* CSS for sticky navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Adjust the z-index as needed */
    /* Add other styles (background color, padding, etc.) as per your design */
}

 /* Create a container with a fixed width */
 .container-top-width {
    width: 800px;
    text-align: center;
}

/* Style the two inner divs */
.inner-div {
    width: 45%; /* Adjust the width as needed */
    display: inline-block;
    background-color: #f0f0f0;
    padding: 20px;
    margin: 5px;
}

.container-margin-top{
    margin-top: 75px;
}

.main-container{
    min-height: 1080px;
}

.cursor-pointer-change{
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* CSS for the green "Added" button */
.added-button {
    background-color: green;
    color: white;
    border: none;
}

.item-image img{
    height: auto;
 }

 .color-scheme{
    color:#336699;
    font-weight: bold;
 }
/* CSS for the sliding form container */
.checkout-form-container {
    position: fixed;
    top: 0;
    right: -500px; /* Initially hidden */
    width: 350px;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

/* CSS for the sliding form content */
.checkout-form {
    padding: 20px;
}

/* CSS to make the modal backdrop semi-transparent */
.modal-backdrop {
    opacity: 0.7;
}

.color-green{
    color: rgb(25, 128, 25);
}

.color-blue{
    color: #336699;
}

.color-red{
    color: #cc0000;
}

.color-grey{
    color: #666666;
}

.color-orange{
    color: #e66605;
}

.show-button{
    display: inline-block !important;
}
.red-badge{
    position: absolute;
    top: 5px;
    right: 40px;
    background-color: rgb(214, 10, 10);
}

.cart-size{
    display: block;
    position: absolute;
    top: 15px;
    right: 50px;
}

.font-size-icon{
    font-size: 25px;
    color: #ffffff;
}

.font-large{
    font-size: 24px;
}

.font-size-icon:hover{
    color: #cccccc;
}

.font-size-icon-info{
    font-size: 18px;
    color: rgb(136, 13, 13);
}

.navbar-bg-color{
    background-color: #336699 !important;
}

.navbar-brand{
    color: #ffffff !important;
}

.screenLoader{
	position: fixed;
	left: 0px;
	top: 50px;
	width: 100%;
	height: 100%;
	z-index: 9992;
	color: #fff;
	background: url(../images/loader.gif) center no-repeat;
	background-color:#fff !important;
	opacity: 1;
}
.screenLoaderAdmin{
	position: fixed;
	left: 50px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9992;
	color: #fff;
	background: url(../images/loader.gif) center no-repeat;
	background-color:#fff !important;
	opacity: 1;
}

/* CSS for product items */
.item-select {
    transition: opacity 0.3s ease; /* Add fade transition */
}

/* Show products with opacity */
.item-select.show {
    display: block;
    opacity: 1;
}

.thumbnail{
    margin-left: 0px;
    box-shadow: 3px 0px 10px rgba(0,0,0, .2);
}

.thumbnail:hover{
    background-color: #eeeeee;
    box-shadow: 8px 0px 22px rgba(0,0,0, .2);
}

.button-shadow{
    box-shadow: 5px 0px 10px rgba(0,0,0, .2);
}

.booking-style{
    border:1px solid:#666666;
    box-shadow: 5px 0px 10px rgba(0,0,0, .2);
    padding: 15px;
    border-radius: 10px;
    margin-bottom:10px;
}

.add-to-cart{
    color: #ffffff !important;
}

.add-to-cart:hover{
    background-color: #336699 !important;
}

.img-thumb{
    width: 110px;
    height: 110px;
}

.img-thumb-small{
    width: 75px;
    height: 75px;
}

.image-padding-override{
    padding: 0px !important;
    margin: -4px;
    height: 100%;
}

.font-price-large{
    font-weight: bold;
    color: rgb(17, 112, 17);
}

.font-price{
    font-size: 18px;
    font-weight: bold;
    color: rgb(17, 112, 17);
}

.font-details{
    font-size: 14px;
    font-weight: bold;
    color: rgb(80, 96, 149);
}

.font-bold-style{
    font-weight: bold;
}

.font-bold-sm{
    font-size: 16px;
    font-weight: bold;
    color: #777777;
}


/* CSS for shopping cart items */
.cart-item {
    display: flex; /* Align items horizontally */
    justify-content: space-between; /* Space items evenly */
    align-items: center; /* Vertically center items */
    background-color: white; /* White background color */
    border: 1px solid #e0e0e0; /* Light grey border */
    padding: 10px; /* Add padding for spacing */
    margin-bottom: 10px; /* Add margin for spacing between items */
}

/* Align the price text to the right */
.cart-item p {
    margin: 0;
    text-align: right;
}

/* Style the remove button if needed */
.cart-item .remove-from-cart {
    /* Add button styles as needed */
}

.div-hover-color a{
    color: #888888;
}

.div-hover-color a:hover{
    color: #666666;
    box-shadow: 7px 0px 15px rgba(0,0,0, .4);
}

.heart-icon{
    color:red;
}

.navbar-icon-custom{
    color:#ffffff;
}

.navbar-icon-custom:hover{
    color:#cccccc;
}
/* CSS to remove link color changes within item-select */
.item-select-color-change .item-hover-color a {
    text-decoration: none; /* Remove underlines */
    /*color: inherit;*/ /* Inherit the color from the parent element (item-select) */
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* Optional: Add a different color for links on hover */
.item-select-color-change .item-hover-color a:hover {
    color: #336699; /* Change to your preferred hover color */
}

.modal-header{
    background-color: #336699 !important;
    color: #ffffff;
}

.close{
    color: #ffffff !important;
    opacity: 1 !important;
}

#checkoutFormContainer {
    padding-top: 50px;
    overflow-y: auto;
}


.CallToActionTitle {
	color:#fff;
	font-size:25px;
	font-weight:300;
}
.CTAButton {
	border:1px solid;
	margin-left:25px;
	padding:10px 20px;
}

.footer ul.social-iconsfooter li {
	display:inline-block;
	float:none;
	position:relative;
	background:transparent;
	margin-right:5px;
	border:1px solid #333;
}
.footer ul.social-iconsfooter li a {
	color:#fff !important;
	width:60px;
	height:60px;
	line-height:60px;
	display:inline-block;
}
.footer ul.social-iconsfooter li:hover {
	border:1px solid #ccc;
	color: #336699;
}
.footer {
	background:#222;
	color:#999;
	font-size:14px;
	padding:60px 0 40px 0;
	margin-top:0px;
}
ul,ol {
	-moz-padding-start:0px;
	-webkit-padding-start:0px;
	-khtml-padding-start:0px;
	-o-padding-start:0px;
	padding-right:0px;
	padding-left:0px;
}
.footernote {
	font-size:28px;
	color:#fff;
}
.footer a {
	color:#ffffff;
}
.footer a:hover {
	color:#cccccc;
}


/*******************************

Product Page

*******************************/

/* Custom CSS for the container */
.custom-container {
    text-align: center;
}

.custom-image {
    min-width: 300px;
    height: auto;
    margin: 0 auto; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 
}

.custom-content {
    text-align: left;
}

.custom-title {
    color: #0c2742;
    font-family: "Comic Sans MS", cursive;
}

/* Styles for the scroll-to-top button */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

#scrollToTopBtn:hover {
    background-color: #0056b3;
}

/**********************************************************
Layout for Slider 1
**********************************************************/
/**********BOOTSTRAP SWITCH TOGGLE**************/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #336699;
}

input:focus + .slider {
    box-shadow: 0 0 1px #336699;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}

.custom-upload-button {
    background-color: #cc0000; 
    color: #fff; 
    border: none; 
}

/* Style the file input to be hidden */
.custom-file-input {
    display: none !important;
}

 /* Style for the image preview */
 .image-preview {
    max-width: 300px; /* Set the maximum width of the preview image */
    max-height: 300px; /* Set the maximum height of the preview image */
    margin-top: 10px; /* Add some spacing */
    display: none; /* Initially hide the preview */
}

/* Basic styles for the sidebar */
.sidebar {
    height: 100vh; /* Full screen height */
    width: 50px; /* Adjust the width as needed for icons */
    background-color: #333; /* Sidebar background color */
    position: fixed; /* Fixed position to stay on the left */
    top: 0;
    left: 0;
    padding: 20px 0; /* Adjust top and bottom padding as needed */
    display: flex;
    flex-direction: column; /* Stack icons vertically */
    align-items: center; /* Center icons horizontally */
}

/* Style for sidebar icons */
.sidebar a {
    text-decoration: none;
    color: #fff; /* Icon color */
    font-size: 24px; /* Adjust icon size */
    margin-bottom: 20px; /* Spacing between icons */
    transition: 0.3s; /* Smooth hover transition */
}

/* Change icon color on hover */
.sidebar a:hover {
    color: #ff5722; /* Hover color */
}

.container-left{
    margin-left: 60px;
}

.scroller{
	overflow: hidden;
	max-height: 350px;
}
.scroller:hover{
	transition: .5s;
	overflow-y: scroll;
}

.image-preview-New-Asset{
    max-width: 250px;
}

.icons-below-dropdown {
    position: relative;
    top: 0;
    transition: top 0.3s ease; /* Add a smooth transition effect */
}

.open .icons-below-dropdown {
    top: 30px; /* Adjust the value to your desired position */
}

/*****************************
*Calendar styles for admin
*****************************/
 /* Add your CSS styles here */
 .calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
    padding: 5px;
    position: relative; /* Required for overlay */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 255, 0.5); /* Blue overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden by default */
}

.day.checked .overlay {
    opacity: 1; /* Show overlay when day is checked */
}

.day.checked {
    background-color: #007bff; /* Blue background when checked */
    color: #fff; /* White text when checked */
}

.checkbox-hidden {
    display: none; /* Hide the default checkbox */
}

.checkmark {
    font-size: 20px;
}


@media screen and (max-width: 600px) {
    .checkout-form-container {
        width: 100%;
    }
  }