.navbar {
	font-weight: bold;
	color: #fff;
	background-image: linear-gradient(to bottom, #7d92b0, #7dacb0);
	background-image: linear-gradient(to bottom, #46515e, #53516e);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 0 0 10px 10px;
}
.navbar .navbar-brand, .navbar .navbar-toggler-icon, .navbar .nav-link.dropdown-toggle {
	color: #fff;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar .nav-link.dropdown-toggle:hover {
	color: #ccc;
}
.tab-shadow {
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(143, 143, 143, 0.3) 100%);
}
h3 {
	text-transform: capitalize;
}
.gridjs-table {
	border-top: 1px solid #ccc;
}

.photo-card:hover {
	transform: scale(1.1);
	z-index: 9;
}
.photo-card {
	transition: transform .3s;
}
.photo-col {
	background: rgba(0,0,0,0) no-repeat top center;
	background-size: contain; 
	height: 70vh
}

.orderForm {
	background: #E2EAF4;
	background: linear-gradient(167deg, #E2EAF4 0%, #c6d9f0 100%);
	padding: 20px;
	margin-bottom: 3;
	border-radius: 10px;
}
.orderForm .row {
	padding-top: 3px;
	transition: background-color 1s ease;
	border-radius: 10px;
}
.orderForm .row:hover {
	background-color: rgba(255, 255, 255,.3);
}

.needsInfo {
	transition: all 1s ease;
	box-shadow: 0px 1px 16px 4px rgba(255,0,0,0.3);
	border: 1px solid red;
}

/* Custom toast styles */
.toast-container {
	width: 50%;
}
.toast {
	max-width: 100%;
	width: 100%;
	max-height: 350px;
	overflow: auto;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {.toast-container {
	width: 100%;
}}

/* Toggle Button */
/* .form-switch {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	border: 0;
	outline: 0;
	cursor: pointer;
	margin: 5px;
}


/* To create surface of toggle button */
/* .form-switch:after {
	content: '';
	width: 60px;
	height: 28px;
	display: inline-block;
	background: rgba(196, 195, 195, 0.55);
	border-radius: 18px;
	clear: both;
} */


/* Contents before checkbox to create toggle handle */
/* .form-switch:before {
	content: '';
	width: 32px;
	height: 32px;
	display: block;
	position: absolute;
	left: 0;
	top: -3px;
	border-radius: 50%;
	background: rgb(255, 255, 255);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
} */


/* Shift the handle to left on check event *
.form-switch:checked:before {
	left: 32px;
	box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.6);
}
/* Background color when toggle button will be active *
.form-switch:checked:after {
	background: #16a085;
} */

.totalrow {
	background-color: #fff;
	font-weight: bold;
}

.alert {
	max-height: 300px;
	overflow: auto;
}

.cognitoOrderBox {
	padding-top: 20px;
	border-radius: 10px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;	
}


/* Grid JS styles */
.gridjs-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}
.gridjs-table td.gridjs-td, 
.gridjs-table th.gridjs-th {
	padding: 6px 12px;
    vertical-align: middle;
}
.gridjs-table tr.gridjs-tr{
	transition: background-color 1s ease;
}
.gridjs-table .gridjs-tbody, td.gridjs-td {
	background-color: transparent;
}
.gridjs-table tbody tr.gridjs-tr:hover, .gridjs-table tr.selected {
	background-color: rgb(204, 255, 204);
}

/**
 * Notifications container
 */
#notifications {
	position: fixed;
	padding: 10px;
	z-index: 999;
	width: 400px;
	max-width: 90%;
	bottom: 10px;
	right: 0;
	left: auto;
}
@media only screen and (max-width: 767px) {
    #notifications {
    	width: 100%;
    }
}
#notifications .alert {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


/**
 * Slider Switch
 */

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
	opacity: 0;
	width: 0;
	height: 0;
  }
  
  /* The slider */
  .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: #2196F3;
  }
  
  input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
	border-radius: 34px;
  }
  
  .slider.round:before {
	border-radius: 50%;
  }

/**
 * Dfault danger select
 */
.default-danger option.default{color:red;}
.default-danger option{color:#000;}

/**
 * Autocomplete CSS
 */
 * { box-sizing: border-box; }
 body {
   font: 16px Arial;
 }
 .autocomplete {
   /*the container must be positioned relative:*/
   position: relative;
   display: inline-block;
 }
 .autocomplete-items {
   position: absolute;
   border: 1px solid #d4d4d4;
   border-bottom: none;
   border-top: none;
   z-index: 99;
   /*position the autocomplete items to be the same width as the container:*/
   top: 100%;
   left: 0;
   right: 0;
 }
 .autocomplete-items div {
   padding: 10px;
   cursor: pointer;
   background-color: #fff;
   border-bottom: 1px solid #d4d4d4;
 }
 .autocomplete-items div:hover {
   /*when hovering an item:*/
   background-color: #e9e9e9;
 }
 .autocomplete-active {
   /*when navigating through the items using the arrow keys:*/
   background-color: DodgerBlue !important;
   color: #ffffff;
 }

 /**
* TAB Dropdown styles
*/
 .tab-dropdown {
    background-color: #fff;
    border-radius: 5px 5px 0 0;
    border: 1px solid #ccc;
    border-bottom: none;;
}

.my-box-shadow {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

/**
 * Preorder Pqage Styles
 */
.graduate-regular {
    font-family: "Graduate", serif;
    font-weight: 400;
    font-style: normal;
}

.item {
    overflow: hidden;
    height: auto;
    height: 38px;
    transition: height 0.5s ease;
}
.item.hidden {
    height: 0px;
}

.form-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.form-title {
    /* color: #0d6efd;
    border-bottom: 2px solid #0d6efd; */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.required-field::after {
    content: " *";
    color: red;
}