@font-face {
    font-family: Rubik_Regular;
    src: url(Kalam-Regular.ttf);
}
@font-face {
    font-family: Rubik_Bold;
    src: url(Kalam-Bold.ttf);
}
@font-face {
    font-family: Rubik_Italic;
    src: url(Kalam-Light.ttf);
}
a {
    font-family: Rubik_Regular;
}
button {
    font-family: Rubik_Regular;
}
input {
    font-family: Rubik_Regular;
}
h1 {
    font-family: Rubik_Regular;
}
h2 {
    font-family: Rubik_Regular;
}
h3 {
    font-family: Rubik_Regular;
}
h4 {
    font-family: Rubik_Regular;
}
h5 {
    font-family: Rubik_Regular;
}
p {
    font-family: Rubik_Regular;
}
span {
    font-family: Rubik_Regular;
}
b {
    font-family: Rubik_Bold;
}
strong {
    font-family: Rubik_Bold;
}
i {
    font-family: Rubik_Italic;
}
label {
    font-family: Rubik_Regular;
}
ul {
    font-family: Rubik_Regular;
}
li {
    font-family: Rubik_Regular;
}

.remove_style{
	text-decoration: none;
	color: white;
}

.btn-custom {
  color: #fff;
  background-color: #ff935a;/*#0d6efd;*/
  /*border-color: #0d6efd;*/
}
.btn-custom:hover {
  color: #fff;
  background-color: #f17636;/*#0b5ed7;*/
  /*border-color: #0a58ca;*/
}
.btn-check:focus + .btn-custom, .btn-custom:focus {
  color: #fff;
  background-color: #f17636;
  border-color: #f17636;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-custom, .btn-check:active + .btn-custom, .btn-custom:active, .btn-custom.active, .show > .btn-custom.dropdown-toggle {
  color: #fff;
  background-color: #f17636;
  border-color: #f17636;
}
.btn-check:checked + .btn-custom:focus, .btn-check:active + .btn-custom:focus, .btn-custom:active:focus, .btn-custom.active:focus, .show > .btn-custom.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-custom:disabled, .btn-custom.disabled {
  color: #fff;
  background-color: #ff935a;
  border-color: #ff935a;
}

.btn-grey {
  color: #fff;
  background-color: #737373;/*#0d6efd;*/
  /*border-color: #0d6efd;*/
}
.btn-grey:hover {
  color: #fff;
  background-color: #454444;/*#0b5ed7;*/
  /*border-color: #0a58ca;*/
}
.btn-check:focus + .btn-grey, .btn-grey:focus {
  color: #fff;
  background-color: #454444;
  border-color: #454444;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-grey, .btn-check:active + .btn-grey, .btn-grey:active, .btn-grey.active, .show > .btn-grey.dropdown-toggle {
  color: #fff;
  background-color: #454444;
  border-color: #454444;
}
.btn-check:checked + .btn-grey:focus, .btn-check:active + .btn-grey:focus, .btn-grey:active:focus, .btn-grey.active:focus, .show > .btn-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-grey:disabled, .btn-grey.disabled {
  color: #fff;
  background-color: #737373;
  border-color: #737373;
}

#button {
  display: inline-block;
  background-color: #737373;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 500px) {
  #button {
    margin: 30px;
  }
}