/*!
* MAIN STYLES
* 2018 - Biltek Development Kitchen
*/
@charset 'utf-8';

/* [SELECTION STYLES] */
::-moz-selection {
    background : #999;
    color: #fff 
}
::selection {
    background : #999;
    color: #fff 
}
/* /[SELECTION STYLES] */
 
/* [BASE STYLES] */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue-color);
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: #fafafa;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth !important;
}

@-ms-viewport {
    width: device-width;
}
 
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
 
body {
    margin: 0;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.428571;
    color: var(--main-text-color);
    text-align: left;
    background-color: var(--main-background-color);
    overflow-x: hidden;
}
 
[tabindex="-1"]:focus {
    outline: 0 !important;
}
 
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
 
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

 b,
strong {
    font-weight: bolder;
}
 
small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
 
sub {
    bottom: -.25em;
}
 
sup {
    top: -.5em;
}
 
a {
    color: var(--main-link-color);
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    transition: all .3s ease-in-out
}
 
a:hover {
    color: var(--main-link-hover-color);
    text-decoration: underline;
}
 
 a:not([href]):not([tabindex]) {
    text-decoration: none;
    color:  #fff;
}
 
a:not([href]):not([tabindex]):hover, 
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}
 
a:not([href]):not([tabindex]):focus {
    outline: 0;
}
 
a,
a:active,
a:focus,
a:hover {
text-decoration: none!important
}
 
*,
:focus {
    outline: 0!important;
}
 
*,
ul {
    margin: 0;
    padding: 0;
}
 
li {
    list-style: none;
}

::-moz-focus-inner {
    border: 0!important
}
 
img {
    max-width: 100%
}

p:last-child {
    margin: 0;
}
 
pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
    background: #292929;
    padding:  5px;
    color: #888787;
    border-radius: 5px;
    color: #e53885;
    line-height: 22px;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}
 
pre.code {
    background: #000;
    padding: 30px;
    border-radius: 17px;
    color: #b3dd00;
    background-color: #2d2d2d;
    letter-spacing: .1em;
    text-shadow: -1px 2px 1px #111, 2px -2px 1px #363636;
}
 
button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
    
     -webkit-appearance: none;
   -moz-appearance: none;
        appearance: none;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}
 
textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
 
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
 
[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}
 
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
 
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
 
[hidden] {
    display: none !important;
}
 
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 300;
    color: inherit;
    line-height: initial;
}
 
h1, .h1 {
    font-size: 2.539rem;
}

h2, .h2 {
    font-size: 2.077rem;
}

h3, .h3 {
    font-size: 1.769rem;
}

h4, .h4 {
    font-size: 1.308rem;
}

h5, .h5 {
    font-size: 1rem;
}

h6, .h6 {
    font-size: 0.923rem;
}
/* /[BASE STYLES] */

/* /[OTHER STYLES] */

.tooltip{
    font-family: var(--font-main) !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--user-menu-active-background-color);
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem var(--user-menu-active-background-color);
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--user-menu-active-background-color);
}
 
 /* [404]  */
.nf404 {
    position: relative;
    text-align: center;
    line-height: 75px;
}
.nf404 h2 {
    font-weight: 500;
    font-size: 65px;
}
.nf404 h3 {
    font-weight: 200;
    font-size: 23px;
}

.nf404 i.fa-exclamation-triangle {
    position: absolute;
    font-size: 25rem;
    -webkit-transform: rotate(-27deg);
            transform: rotate(-27deg);
    top: -10rem;
    left: 19rem;
    opacity: 0.1;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
/* /[404]  */
 
/* [BREADCRUMB]  */
.breadcrumb {
    margin:  0;
    padding:  0;
    background: none;
}

section.page-title {
    padding: 60px 0;
    position:  relative;
    background: #10100f;
}

.title-first h1 {
    margin-bottom: 10px;
    color:  #fff;
    font-weight:  600;
    text-transform:  uppercase;
}
ol.breadcrumb li a {
    color:  #fff;
}

.breadcrumb-item.active {
    color:  #fff;
    font-weight:  bold;
}

.bread-bg {
    position:  absolute;
    left:  0;
    top:  0;
    right:  0;
    bottom:  0;
    opacity:  0.5;
    background-size: cover !important;
    background-repeat:  no-repeat !important;
}

section.page-title .container {
    position:  relative;
}

ol.breadcrumb li a:hover {
    color: #999;
}

.breadcrumb-item+.breadcrumb-item::before {
    color:  #fff;
}
/* / [BREADCRUMB]  */

/* [SIGNATURE] */
.biltek a{ 
    font-size: 12px;
    color: #73828c;
    display: inline-block;
    line-height: 20px;
    position: relative;
    vertical-align: top;
}

.biltek a:nth-child(1){
    padding: 7px 0 0 0;
}

.biltek a:nth-last-child(1){
    margin: 0 0 0 5px;
    padding: 0 0 0 7px;
}

.biltek a:nth-last-child(1):before{
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 1px;
    height: 24px;
    background: rgba(115, 130, 140, .3);
}

.biltek a img{
    display: block;
    width: 65px;
    margin-top: 3px;
}

#preloader {
    display: none;
} 

#preloader .loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 80px;
    color: var(--dark-color);
    border-radius: 40px;
    font-size: 21px;
    font-weight: 400;
}

#preloader {
    text-align: center;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 20px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid var(--blue-color);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--blue-color) transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
/* /[SIGNATURE] */