/*
 * CloudCraze OOTB Bootstrap3 CSS changes
 *
 * Created by CloudCraze Software, LLC
 * Copyright 2017 CloudCraze Software, LLC. All rights reserved.
 * Redistribution and use in source or binary forms, with or without
 * modification is PROHIBITED.
 *
 */
/* ANYTHING THAT GOES HERE SHOULD BE MINIMAL AND ONLY TO CORRECT OBVIOUS VISUAL ISSUES   */

/*
	CCRZ-5538
	http://stackoverflow.com/questions/18023493/bootstrap-3-dropdown-sub-menu-missing/18024991#18024991

	TopMenu with modifications from above
*/
.dropdown-submenu {
	position:relative;
}

.dropdown-submenu > .dropdown-menu {
	top:0;
	left:100%;
	margin-top:-6px;
	margin-left:-1px;
	-webkit-border-radius:0 6px 6px 6px;
	-moz-border-radius:0 6px 6px 6px;
	border-radius:0 6px 6px 6px;
}

.dropdown-submenu > a:after {
	display:block;
	content:" ";
	float:right;
	width:0;
	height:0;
	border-color:transparent;
	border-style:solid;
	border-width:5px 0 5px 5px;
	border-left-color:#cccccc;
	margin-top:5px;
	margin-right:-10px;
}

.dropdown-submenu:hover > a:after {
	border-left-color:#ffffff;
}

.dropdown-submenu.pull-left > .dropdown-menu {
	left:-100%;
	margin-left:10px;
	-webkit-border-radius:6px 0 6px 6px;
	-moz-border-radius:6px 0 6px 6px;
	border-radius:6px 0 6px 6px;
}

.dropdown-submenu.pull-left {
	float:none !important;
}

/*
	CCRZ-5622
	Carousel controls
*/
.carousel-control {
	color: #9d9d9d;
}

.carousel-control {
	color: #9d9d9d;
}

.carousel-control.right {
	background-image: none;
}

.carousel-control.left {
	background-image: none;
}

.carousel-indicators li {
	border: 1px solid #9d9d9d;
}

/*
	CCRZ-5627
	Y overflow on bulk move items panel - LLI checkout
*/
.cc_lli_move_items_panel {
	max-height: 400px;
	overflow-y: auto;
}

/*
	CCRZ-6801
	Setting min width of the quantity column in ADC modal window
 */
.cc_attribute_qty {
	min-width: 150px;
}

/*
	Change text on collapse/expand of BS3 accordion
*/
.cc_collapse_button[aria-expanded=false] .text-expanded {
	display: none;
}

.cc_collapse_button[aria-expanded=true] .text-collapsed {
	display: none;
}

/* my account Datepicker higher z-index Hack
	ported from capricorn theme */

.datepicker {
	z-index: 5000 !important;
}