.btn {
	width: auto;
	padding: .375rem .75rem;
	-webkit-appearance: none;
	-webkit-border-radius: 5;
}

.btn-circle {
	border-radius: 50% !important;
}

.btn-img {
	height: 38px;
}

.btn-primary {
	font-size: 14px;
	color: #ffffff !important;
	border-color: #4267b2 !important;
	background: #4267b2 !important;
}

.btn-primary:hover {
	border-color: #365899 !important;
	background: #365899 !important;
}

.btn-secondary, .btn-danger {
	font-size: 14px;
	color: #ffffff !important;
}

.btn-secondary:hover {
	
}

.btn-login {
	color: rgb(255, 255, 255) !important;
	border-color: rgb(20, 123, 199) !important;
	background: rgb(20, 138, 199) !important;
}

.btn-login:hover, .btn-login:focus {
	color: rgb(255, 255, 255) !important;
	border-color: rgb(20, 123, 199) !important;
	background: rgb(20, 123, 199) !important;
}

.btn-white {
	font-size: 14px !important;
	color: #000000 !important;
	border-color: #000000 !important;
	background: #FFFFFF !important;
}

.btn-black {
	font-size: 14px !important;
	color: #FFFFFF !important;
	border-color: #000000 !important;
	background: #000000 !important;
}

.btn-black:hover {
	border-color: #FFFFFF !important;
	background: #000000 !important;
}

.btn-black-bordered {
	border: 1px solid #FFFFFF !important;
}

.btn-black-bordered:hover {
	border: 1px solid #FFFFFF !important;
}

.btn-white {
	background: rgb(255, 255, 255) !important;
	font-size: 1.8rem !important;
	font-weight: 100;
	border-radius: 10px !important;
	border-color: rgb(0, 0, 0) !important;
	color: rgb(0, 0, 0) !important;
}

.btn-outline-black {
	background: rgba(0, 0, 0, 0) !important;
	font-size: 14px !important;
	font-weight: 100;
	border-color: #000000 !important;
	color: #000000 !important;
}

.btn-outline-white {
	background: rgba(0, 0, 0, 0) !important;
	font-size: 14px !important;
	font-weight: 100;
	border-color: #ffffff !important;
	color: #ffffff !important;
}

.text-limit {
    width: 220px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-top: 5px;
}

/* Customize the radio label (the container) */
.radio-container {
  display: block;
  font-size: 14px;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid #000000;
  color: #000000 !important;
  background-color: transparent;
}

.radio-container:hover input ~ .checkmark {
  background-color: transparent;
}
.radio-container input:checked ~ .checkmark {
  border: 2px solid #000000;
  background-color: transparent;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container input:checked ~ .checkmark:after {
  display: block;
}
.radio-container .checkmark:after {
  left: 4px;
  top: 0px;
  width: 7px;
  height: 12px;
  color: #000000 !important;
  border: solid #000000;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
