html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/*****Theme****/

/*background*/
.bg-theme {
    background-color: #F15A29;
}

/*button*/
.btn-theme {
    color: #fff;
    background-color: #F15A29;
    border-color: #F15A29;
}

.btn-theme:hover {
    color: #fff;
    background-color: #cf4d23;
    border-color: #ba441e;
}

.btn-theme:focus, .btn-theme.focus {
    color: #fff;
    background-color: #cf4d23;
    border-color: #ba441e;

    /*shadow blur and colour opacity*/
    box-shadow: 0 0 0 0.25rem rgba(240, 120, 81, 0.5);
}

.btn-theme.disabled, .btn-theme:disabled {
    color: #fff;
    background-color: #F15A29;
    border-color: #F15A29;
}

/*.btn-theme:not(:disabled):not(.disabled):active, .btn-theme:not(:disabled):not(.disabled).active,
.show > .btn-theme.dropdown-toggle {
color: #fff;
background-color: #0062cc;
border-color: #005cbf;
}

.btn-theme:not(:disabled):not(.disabled):active:focus, .btn-theme:not(:disabled):not(.disabled).active:focus,
.show > .btn-theme.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(38, 143, 255, 0.5);
}*/