:root{
	--sbc: #0a0a0a;
	--mc: #ffe400;
	--hc: #fff;
	--bc: #ccc;
	--hff: 'Heebo', sans-serif;
	--bff: 'Nunito', sans-serif;
	--eff: 'Open Sans', sans-serif;
	--extra-color: #666;
}

body {
  background-color:#000;
  text-align:center;
}

a {
  color: #ffcc00;
  text-decoration:none;
  font-family: Arial;
  font-size: 12px;
}

.btn-link{
  border:none;
  outline:none;
  background:none;
  cursor:pointer;
  color:#ffcc00;
  padding:0;
  text-decoration:none;
  font-family:Arial;
  font-size:12px;
}

.packages {
  display: inline-block;
  position:absolute;
  top:50%;
  left:50%;
  -ms-transform:translate(-50%,-50%);
  -webkit-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
}

h1 {
  font-weight: bold;
  color: #fff;
  font-family: Arial;
  font-size: 32px;
}

h2 {
  font-weight: bold;
  color: #fff;
  font-family: Arial;
  font-size: 14px;
}

h3 {
  font-weight: bold;
  color: #fff;
  font-family: Arial;
  font-size: 12px;
}

.input-field {
  position: center;
}
.input-field input {
  width: 320px;
  height: 20px;
  border-radius: 6px;
  font-size: 12px;
  padding: 0 15px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
  text-align:center;
}
input:focus {
  border: 2px solid #ffcc00;
}
input:focus ~ label,
input:valid ~ label {
  top: 0;
  left: 15px;
  font-size: 16px;
  padding: 0 2px;
  background: #353842;
}


/* Main Button */
.osiris_button{
	display: block;
	width: 100;
	max-width: 100%;
	text-decoration: none;
	color: var(--bc);
	font-size: 12px;

	font-family: var(--hff);
	border: 2px solid var(--extra-color);
	border-radius: 5px;
	line-height: 46px;
	padding: 0 20px 0 73px;
	position: relative;
	text-align: center;
	letter-spacing: .5px;
}
.osiris_button .text{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.osiris_button.only_text{
	padding: 0 28px;
}
.osiris_button.full{
	width: 100%;
	line-height: 66px;
}
.osiris_button .icon{
	display: block;
	position: absolute;
	left: 14px;
	top: 50%;
	margin-top: -11px;
}
.osiris_button .icon:after{
	content: '';
	width: 2px;
	height: 26px;
	background-color: var(--extra-color);
	left: 100%;
	margin-left: 14px;
	top: 50%;
	margin-top: -13px;
	position: absolute;
}
.osiris_button .icon:before{
	content: '';
	width: 2px;
	height: 0;
	background-color: var(--mc);
	left: 100%;
	margin-left: 14px;
	top: -2px;
	position: absolute;
	z-index: 3;
	transition: all .3s ease;
}
.osiris_button .fn__svg{
	width: 22px;
	height: 22px;
	display: block;
}
.osiris_button:hover{
	border-color: var(--mc);
	color: #eee;
}
.osiris_button:hover .icon:after{
	opacity: 0;
}
.osiris_button:hover .icon:before{
	height: 26px;
}