/* If content is added to sitefootertop or sitefooterbottom then margin-bottom
   must be changed to accomodate the new height to ensure the footer stays
   at the bottom of the screen. #footer height must also be changed to the
   same value as margin-bottom.
*/
body {
	/* Margin bottom by footer height */
	margin-bottom: 40px;
}

#footer {
	/* Set the fixed height of the footer here */
	height: 40px;
}

/*Colour of boxes*/

.bg-panel {
    background-color: #ec671a!important;
}
 
.bg-primary {
    background-color: #ec671a!important;
}

/*buttons*/

.btn-primary {

    color: #ffffff;

    background-color: #ec671a;

    border-color: #ec671a;

}
 
.btn-primary:hover {

color: #ec671a;

background-color: #ffffff;

border-color: #ec671a;

}
 
.btn-action {

   color: #ffffff;

    background-color: #ec671a;

    border-color: #ec671a;

}
 
.btn-action:hover {

color: #ec671a;

background-color: #ffffff;

border-color: #ec671a;

}
 
.btn-outline-return {

    color: #ffffff;

background-color: #ec671a;

    border-color: #ec671a;

}
 
.btn-outline-return:hover {

color: #ec671a;

background-color: #ffffff;

border-color: #ec671a;

}
 
 
.btn-action.disabled {

   color: #ffffff;

    background-color: #ec671a;

    border-color: #ec671a;

}
 
.btn-action.disabled:hover {

color: #ec671a;

background-color: #ffffff;

border-color: #ec671a;

}
 