/*
BUTTONS USED ACROSS THE PORTAL.
*/

button{
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

button:focus{
	outline:none;
}

.btn-css{
    font-size: 15px;
    font-weight: 500;
	padding:9px 8px 9px 8px;
	margin-top: 2px; /*to compensate for the padding*/
    border-radius: 4px;
	border: 1.5px solid #ef7d00;
	background-color: #ef7d00;
	color:#fff;
	outline: none;
	transition: all .4s;
	transform:translateY(-2px);
}

.btn-css--margined-to-end{
	margin-right:24px;
}

@media all and (max-width: 480px) {
	.btn-css--margined-to-end{
		margin-right:0px;
	} 
}

.btn-css--s{
	padding:unset;
	width:24px;
	height: 24px;
}

.btn-css--xxxlg{
	height:36px;
	padding: 6px 8px 6px 8px;
}

.btn-css--long{
	height:48px;
}

.btn-css:hover{
	color: #fff;
	border: 1.5px solid rgb(214, 118, 45);
	background-color: rgb(214, 118, 45); 
	text-decoration: none;
}

.btn-css--disabled:hover{
	color:#808486;
	background-color: #c2cace;
	border-color: #c2cace;
}

.btn-css:active{
	transform:translateY(0px);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); 
}

.btn-css--icon{
	width: 40px;
	height: 40px;
}


.btn-css--reversed{
	background-color: #fff;
	color:#ef7d00;
}

.btn-css--reversed:hover{
	color: #fff;
	background-color: #ef7d00;
	border-color: #ef7d00;
}

.btn-css--disabled{
	color:#808486;
	background-color: #c2cace;
	border-color: #c2cace;
	cursor: no-drop;
}

.btn-css--disabled:hover{
	color:#808486;
	background-color: #c2cace;
	border-color: #c2cace;
}

.btn-css--white{
    background-color:#fff;
    border:0;
    padding:0;
    transition:all .2s;
	border: 1.5px solid #fff;
}

.btn-css--white:hover{
    background-color:#fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.28);
    border: 1.5px solid #fff;
}

.btn-css--white__text{
    color:#000;
    display:inline-block;
    padding:0px;
    margin:0px;

}

.btn-css--white__icon{
    color:#ef7d00;
    vertical-align: middle;
}

.btn-css--transparent{
	background-color:transparent;
	border: unset;
}

.btn-css--transparent:hover{
	background-color:transparent;
	border: unset;
}
.btn-css--xxxxlg{
	padding:9px 42px 9px 42px;
}

.btn-css--med{
	padding:9px 20px 9px 20px;
}