/* FONT DEFINATIONS */
@font-face {
    font-family: 'poppins'; /* Name the font */
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype'); /* Path to the TTF file */
    font-weight: normal; /* Normal weight, or can be adjusted */
    font-style: normal; /* Normal style, or you can adjust (italic, etc.) */
  }
  @font-face {
    font-family: 'poppins-bold'; /* Name the font */
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype'); /* Path to the TTF file */
    font-weight: normal; /* Normal weight, or can be adjusted */
    font-style: normal; /* Normal style, or you can adjust (italic, etc.) */
  }
  @font-face {
    font-family: 'poppins-semibold'; /* Name the font */
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype'); /* Path to the TTF file */
    font-weight: normal; /* Normal weight, or can be adjusted */
    font-style: normal; /* Normal style, or you can adjust (italic, etc.) */
  }
/* DEFAULT SETTINGS FOR HTML TAGS */
body{
    font-family:'poppins' !important;
    background: #000428;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */    
}
a{
    text-decoration:none;
    font-family: 'poppins-semibold' !important;
    color:#FC6B22 !important;
}
a:hover{
    text-decoration:none !important;
    color:goldenrod;
    transition:0.4s color;
}

h1,h2,h3,h4,h5{
    font-family:'poppins-bold' !important;
}
button{
    font-family:'poppins-semibold' !important;
    border-radius:12px !important;
}
input{
    border-radius:15px !important;
    font-size:12px !important;
}
textarea{
    border-radius:15px !important;
    font-size:11px !important;
}
.form-control{
    font-size:11px !important;
}

/* CLASSES CONNECT PAGE */
.wallet-icon{
    border-radius:12px !important;
}

/* BUTTONS */
.btn-custom{
    background-color: #FC6B22;
    color:whitesmoke;
    /* text-transform: uppercase; */
}
.btn-custom:hover{ 
    background-color: darkorange;
    transition:0.3s background-color;
}
.btn{
    border-radius:12px !important;
}

/* HELPER CLASSES */
.default-radius{
    border-radius:15px !important;
}
.bold{
    font-family:'poppins-semibold' !important;
}

