/************ BUTTONS **************/

button[data-link] {
	cursor: pointer;
	transition: 0.3s all;
}

button[data-link]:hover {
	color: #fac100 !important;
}

/************ HEADER STYLING **************/

.fusion-tb-header .fusion-image-element img {
	max-width: fit-content;
	height: auto;
	max-height: 38px;
}


/************ MAIN MENU **************/

nav.awb-menu a {
	font-family: "museo-sans", museo, sans-serif !important;
	font-size: 15px !important;
}

.awb-menu__open-nav-submenu-hover {
	padding-inline-start: 0.35em !important;
}

nav.awb-menu .awb-menu__sub-ul a {
	font-family: "museo", sans-serif !important;
}


/************ DROPDOWN SELECT MENU **************/

div.custom-select {
	width: 90%;
	position: relative;
}

div.custom-select select {
	background: #f6f6f6;
    padding: 12px 15px 12px 18px;
    margin-bottom: 0;
    font-size: 16px;
	font-family: museo, "fira sans" !important;
    color: #888;
	cursor: pointer;
	border: 1px solid #cecece;
	width: 100%;
	height: 47px;
	box-shadow: 1px 1px 7px 2px rgba(0,0,0,0.05) inset;	
	transition: 0.3s all;
}

div.custom-select select li {
	padding: 4px 5px;	
}

div.custom-select::before {
	font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    float: right;
    margin-left: 7px;
    font-size: 18px;
    color: #bbb;
    top: 12px;
    line-height: 24px;
    background: rgba(0, 0, 0, 0.05);
    width: 24px;
    text-align: center;
    border-radius: 100%;
    transition: 0.4s all;
    cursor: pointer;
    height: 24px;
    position: absolute;
    right: 9px;
    font-weight: 900;
	pointer-events: none;
}

div.custom-select::before {
	top: 11px;	
}

div.custom-select:hover::before {
	color: white;
	background: silver;
}

div.custom-select select option:disabled {
	background: #3a595c;
	color: white;
}

/**************** ARMORY MULTI-SELECT DROPDOWN ****************/

.armory-dropdown, .ui-template {
	font-size: 14px;
	color: #333;
	max-width: 430px;
	width: 100%;
	position: relative;
	padding: 6px;
	box-sizing: border-box;
	border-radius: 5px;
	margin-bottom: 18px;
	background: #f8f8f8;
}

.armory-targets { /* Target selection dropdown */
    border: 1px solid #cecece;
	background: #fff;
	transition: transform 0.15s ease-in-out 0.15s;
	text-align: left;
	max-height: 300px;
	position: fixed;
	opacity: 1;
	z-index: 1000;
	padding: 0;
}

.armory-targets .innerwrap {
	padding: 23px 30px 25px 30px;
	text-align: left;
}

.armory-dropdown .armory-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 500;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    transform: scale(1, 0);
    transform-origin: top center;
    transition: transform 0.2s ease;
    padding: 5px 0;
}

.armory-dropdown .armory-dropdown-option {
    opacity: 0;
    transition: opacity 0.15s ease;
    display: block;
    padding: 6px 12px;
}

.armory-dropdown.armory-targets .armory-dropdown-list {
	position: relative;
	top: 0;
	box-shadow: none;
	transform: none;
	max-height: 100%;
	padding: 10px;
	overflow-y: hidden;
}

.armory-dropdown.armory-targets.hide {
	display: block !important;
	opacity: 0;
	max-height: 1px;
	z-index: -1;
}
.armory-dropdown.armory-targets label.armory-dropdown-option {
	opacity: 1;
}


.armory-targets h4 {
	margin: 0 auto;
	display: inline-block;
	text-align: center;
	width: 100%;
	padding: 16px 0 11px 0;
	font-size: 18px !important;
	font-weight: bold;
	font-family: "Fira Sans", sans-serif;
}

.armory-targets p {
	text-align: center;
	margin: 12px 0 20px 0;
}

.armory-targets .armory-dropdown-option {
	display: block;
	padding: 8px 12px;
	opacity: 0;
	transition: opacity 0.15s ease-in-out;
	width: 96%;
	margin-left: 2%;
	font-weight: 400;
	font-family: "Fira Sans", sans-serif;
}

.armory-dropdown .armory-dropdown-option:last-of-type {
	border-bottom: none !important;
} 

.armory-dropdown label:nth-child(even) {
	background: #f8f8f8;
}

.armory-dropdown .armory-dropdown-label {
	width: 100%;
	cursor: pointer;
	text-align: left;
	height: 30px;
	overflow: hidden;
	font-family: museo, "fira sans", sans-serif;
	font-weight: 400;
	color: #888;
	display: flex;
	align-items: center;
}

.armory-dropdown .armory-dropdown-label::before, .select_wrapper::before {
	font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    float: right;
    margin-left: 7px;
    font-size: 18px;
    color: #bbb;
    top: 11px;
    line-height: 24px;
    background: rgba(0,0,0,0.05);
    width: 24px;
    text-align: center;
    border-radius: 100%;
    transition: 0.4s all;
    cursor: pointer;
    height: 24px;
    position: absolute;
    right: 9px;	
	font-weight: 900;
}
.armory-dropdown .armory-dropdown-label:hover::before, .select_wrapper:hover::before {
	transform: scale(0.95);
	background: #999;
	color: white;
}
.armory-dropdown.on .armory-dropdown-list {
	transform: scale(1, 1);
	transition-delay: 0s;
}
.armory-dropdown.on .armory-dropdown-list .armory-dropdown-option {
	opacity: 1;
	transition-delay: 0.2s;
	border-bottom: 1px dotted #aaa;
}
.armory-dropdown.on .armory-dropdown-list .armory-dropdown-option:hover {
	cursor: pointer;
}

.armory-dropdown.on .armory-dropdown-label:before {
	content: "\f0d8";
}

.armory-dropdown label.disabled {
	color: silver;
} 

.armory-dropdown [type=checkbox] {
	position: relative;
	top: -1px;
	margin-right: 7px;
	width: auto !important;
}

#armory-settings .armory-dropdown {
	background: #f6f6f6;
	color: #888;
	padding: 9px 10px 9px 15px;
	margin-bottom: 0;
	font-size: 15px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

#armory-settings .armory-dropdown.on {
	background: white;
	color: #333;
}

/************ DROPDOWN SELECT MENU **************/

button:hover * {
	cursor: pointer;
}
