/**
 *
 *
 *  Impact button style
 *
 *
 */

/*
 *  Button
 */

.button {
	cursor: pointer;
}

.button:focus {
	outline: 0;
}

/*
 *  Button 50px height
 */

.button-35 {
    height: 35px;
    cursor: pointer;
}

button.button-white {
    border: none;
    border-radius: 5px;
    height: 35px;
    padding: 0 11px;
    outline: none;
}

.button-map {
    border: none;
    border-radius: 5px;
    width: 100px;
    height: 38px;
    padding: 4px 11px;
    outline: none;
}

.button-black {
    border: none;
    border-radius: 5px;
    padding: 10px 10px;
    height: 38px;
    width: 38px;
    outline: none;
}

.button-gear {
    border: none;
    border-radius: 5px;
    padding: 6px 8px;
    font-size: 27px;
    height: 38px;
    top: -1px;
    margin: 10px;
    width: 38px;
    outline: none;
}

.button-gear-txt {
    border: none;
    border-radius: 5px;
    padding: 6px 8px;
    font-size: 27px;
	display:flex;
	height: 38px;
	align-items:center;
    top: -1px;
    margin: 10px;
    outline: none;
}


.button-gear-txt:focus, .button-gear-txt:hover, .button-gear-txt:active {
	text-decoration:none;
}

.button-gear-txt div {
	display:inline;
}

/*
 *  Button 50px height
 */

.button-orange {
    cursor: pointer;
    background: orange;
    border-radius: 5px;
    min-height: 35px;
}

/*
 *  Button Hover Show Info
 */

.button-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 0px dotted black;
}

.button-tooltip .button-tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: orange;
    color: white;
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: -15px;
    left: 30px;

}

.brand-tooltip .brand-tooltiptext {
    visibility: hidden;
	width: 200px;
    background-color: orange;
    color: white;
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 63px;
    left: 90px;
}

.button-tooltip .button-tooltiptext::after, .brand-tooltip .brand-tooltiptext::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 100%;
    margin-top: 3px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent orange transparent transparent;
}

.button-tooltip:hover .button-tooltiptext, .brand-tooltip:hover .brand-tooltiptext {
    visibility: visible;
}

.button-tooltip:hover {
    color: orange;
}

.tooltip-container {
    display: inline-block;
    position: relative;
}


/*
 *  Button Hover Show Info Mobile
 */

 .button-tooltip-m {
    min-width: 300px;
    background: orange;
    color: white;
    margin: 0px 15px 15px 15px;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    top: 35px;
    left: -160px;
}


.button-tooltip-m .icon-close {
    position: absolute;
    right: 10px;
    top: 10px;
}

.button-tooltip-m::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 0;
    height: 0;
    border-bottom: 10px solid orange;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }

.clickable:hover {
    cursor:pointer;
}

.clickable:hover .block-content, .block-active .block-content{
    outline: 2px solid orange;
}

.button-basic:hover, .button-basic:hover [class*=" icon-"] {
	background : orange!important;
	color:white!important;
}




