/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2020-08-13, 21:45:18
    Author     : Marcin
*/
/**/

@font-face{
  font-family: "barlow-bold";
  src: url("../fonts/Barlow-Bold.ttf") format("truetype");
}

@font-face{
  font-family: "barlow-regular";
  src: url("../fonts/Barlow-Regular.ttf") format("truetype");
}

@font-face{
  font-family: "pt-sans-bold";
  src: url("../fonts/PTSans-Bold.ttf") format("truetype");
}

@font-face{
  font-family: "pt-sans-regular";
  src: url("../fonts/PTSans-Regular.ttf") format("truetype");
}

@font-face{
  font-family: "futura-pt-cond-book";
  src: url("../fonts/Futura-PT-Cond-Book.ttf") format("truetype");
}

@font-face{
  font-family: "futura-pt-condensed";
  src: url("../fonts/futura-condensed-pt-medium.otf") format("truetype");
}


html {
    height: 100%;
}

body {
    min-height: 100vh;
    position: relative;
    font-size: 1rem;
    padding-bottom: 200px;
}

@media(max-width:768px) {
    body {
        padding-bottom: 270px;
    }
}

html, body {
    font-family: pt-sans-regular, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0rem;
}

hr {
    border-bottom: 2px solid #d2d2d2;
}

.bg-yellow {
    background-color: #fd0 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-success {
    background-color: #9fe2cc !important;
    color: #064a34;
    border: 1px solid #9fe3cd;
}

.bg-warning {
    background-color: #fdecce !important;
    color: #623f04;
    border: 1px solid 1px solid #fbd89d;
}
    

.bg-primary a {
    color: #fff;
}

.ajax_loading p {
    position: absolute;
    left: 0;
    right: 0;
    top: 55%;
}
.ajax_loading {
    display:    none;
    position:   fixed;
    z-index:    9999;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    font-weight: 600;
    text-align: center;
    font-size: 34px;
    padding-top: 337px;
    background: rgba( 0, 0, 0, .1 ) 
        url('../images/loader.png') 
        50% 50% 
        no-repeat;
}

body.loading {
    overflow: hidden;   
}

body.loading .ajax_loading {
    display: block;
}

a {
    color: #113DAD;
}

a:hover {
    color: #0B1D45;
}

h1, h2, h3, h4, h5, h6 {
    font-family: pt-sans-bold;
}

h1 {
    font-size: 2.5rem;
    margin-top: 10px;
}

h2 {
    font-size: 2rem;
}
h2, h3, h4, h5 {
    color: #231F20;
}

.fs-7 {
    font-size: 14px;
}

.h-title {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
/* MENU */

.navbar-nav {
    width: 100%;
    gap: 1rem;
}

.navbar-nav .nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.navbar-nav .link-active {
    border-bottom: 2px solid #fbbd00;
    color: #ffffff;
}

.navbar-nav .nav-link:hover {
    /** border-bottom: 2px solid #ffffff;*/
}

.navbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* odległość od tekstu */
  width: 0;
  height: 2px;
  background-color: #ffffff; /* kolor podkreślenia */
  transition: width 0.3s ease;
}

/* Efekt hover – linia rozwija się od lewej do prawej */
.navbar-nav a:hover::after {
  width: 100%;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23fbbd00' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem #fbbd00;
}
/* ./ menu */

body.loading {
    overflow: auto;   
}

body.loading .ajax_loading {
    display: block;
}
.img-thumb {
    border: 3px solid #fff;
}
/* FORM */
.form-control {
    box-shadow: none;
    border-radius: 0px;
    border: 0;
    border-bottom: 2px solid #76767d;
    padding: 0.375rem 0.75rem;
}

.form-control:focus {
    border-color: rgba(0,78,168,0.8);
}

.bs-searchbox .form-control {
    border-bottom: 2px solid #86b7fe;
    background: #efefef;
}

.form-control-border-bottom {
    border-radius: 0;
    border: 0;
    border-bottom: 2px solid #76767d;
}

.form-select {
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid #76767d;
}


label {
    font-family: pt-sans-regular, sans-serif;
    font-size: .875rem;
    font-weight: 700;
}

form label.required:after {
    content: '*';
}
.invalid-feedback {
    color: #aa000c;
}

.form-control.is-invalid {
    background-position: right calc(0.675em + 0.3875rem) center;
    border-color: #aa000c;
}
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    border-color: #aa000c;
    background-position: top calc(0.375em + 0.1875rem) right calc(0.675em + 0.3875rem);
}

.input-group .is-invalid ~ .input-group-text i {
  color: #aa000c;
}

.form-check-input.is-invalid ~ .form-check-label {
    color: #aa000c;
}

.btn-label {
	position: relative;
	left: -12px;
	display: inline-block;
	padding: 6px 12px;
}

.btn-labeled {
	padding-top: 0;
	padding-bottom: 0;
}
/* ./ form */

a {
    text-decoration: none;
}

/* ./ ajax_loader */
.login-box {
    font-size: 0.85rem;
    text-align: right;
    float: right;
    background-color: #231f20;
    border-bottom: 0.375rem solid #FBBD00;
    color: #aaa;
}

.login-box .form-control {
    border: 0;
}

#header {
    background: #0B1D45;
    border-top: 7px solid #231f20;
    
}

#header-banner {
    background: url('../images/banner-top.jpg') center top no-repeat;
    min-height: 500px;
}

.navbar-toggler-icon {
    background-image: url('../assets/bootstrap-icons/icons/list.svg');
}

.navbar-brand, .footer-logo {
    background: url('../images/gy-logo-new-2.png') no-repeat 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    width: 168px;
    height: 29px;
}

.table tbody td {
    vertical-align: middle;
}

.table-bordered th, .table-bordered td {
    border: 1px solid #eee;
}

.table thead {
    border-bottom: 1px solid #dee2e6;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: #F3F5FB;
    
}

caption {
    caption-side: top;
}

.boxes {
    margin-top: 20px;
}

.item_box {
    background: #0b1d45;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    color: #fff;
    
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    text-align: center;
}

.item_box a {
    padding: 45px 10px 45px 10px;
}

.item_box:hover {
    color: #fbbd00;
    background-color: #0B2974;
}

.item_box:hover figure {
    color: #fbbd00;
}

.item_box h4 {
    font-weight: normal;
}

.header-wrapper {
    
}

.overlay {
    background-color: rgba( 0, 0, 0, .2 )
    
}
.header-title {
    font-size: 3rem; 
    font-family: pt-sans-bold;
    font-weight: 700;
    line-height: 3.5rem;
    color: #fff;
    padding-bottom: 15px;
}

.header-text {
    font-size: 110%;
    color: #fff;
}

#box-steps {
    background: #ededed;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 80px;
    margin-bottom: 80px;
}

#box-steps .box {
    background-color: #fff;
    padding: 25px 15px;
}

#box-steps .box .title {
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: center;
    color: #000;
}
@media(min-width:768px) {
    #box-steps {
        background: #ededed url(../images/truck_bg.png) center top;
        background-size: cover;
    }
}
.box a:after {
  display:block;
  content: '';
  border-bottom: solid 2px #0B1D45;  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
  
}
.box a:hover:after {
    transform: scaleX(1);
   /* transform-origin:100% 50%;*/
    
}
.btn {
    border-radius: 0;
    /*white-space: nowrap;*/
    border-radius: 25px;
}
.btn-primary, .btn-secondary, .btn-danger {
    border-radius: 25px;
    font-weight: bold;
}

.btn-primary {
    color: #231F20;
    background: #FBBD00;
    border: 0px solid transparent;
    padding: .375rem 1.375rem;
}

.btn-primary:hover {
    color: #231F20;
    background-color: #d58f02;
    border-color: transparent;
    text-decoration: none;
}

.btn-primary:focus, .btn-primary:active:focus {
    color: #231F20;
    background-color: #d58f02;
    border-color: #FBBD00;
    box-shadow: none;
}

.btn-secondary {
    border: 0;
    background-color: #113dad;
}

.btn-secondary:hover {
    background-color: #0b2974;
}

.btn-secondary:focus, .btn-secondary:active:focus {
    background-color: #0b2974;
    box-shadow: none;
}

.btn-link {
    color: #113dad;
}

.btn-log-in {
    border-radius: 0 15px 15px 0;
}
.btn-selectpicker {
    border-radius: 0 !important;
}

.btn-no-wrap {
    white-space: nowrap;
}
.bootstrap-select {
    padding: 0 !important;
}
.bootstrap-select>.dropdown-toggle.bs-placeholder {
    min-height: 34px;
}
.bootstrap-select .dropdown-toggle::after {
    display: none; /* Hide the arrow */
}
.bootstrap-select .no-results {
    padding: 5px 8px !important;
}

.link-primary {
    color: #fff;
    text-decoration: none;
}

.link-primary:hover, .link-primary:focus {
    color: #fff;
    text-decoration: none;
}

.link-primary:focus {
    color: #D2D2D2;
}

.link-secondary, .link-secondary:hover {
    color: #fbbd00;
}

.color-primary {
    color: #fbbd00;
}

.alert {
    border-radius: 0;
    border: 1px solid transparent;
    font-size: .875rem;
    /*box-shadow: 1px 5px 6px 1px rgba(0,0,0,0.4);*/
    margin: 2px 0;
}
.alert-success {
    /**
    background: #3AC47D;
    color: #fff;
    */
}

.alert-danger {
    border-color: #e7b8bb;
    background: #fbf3f3;
    color: #aa000c;
}

.alert-danger-bordered {
    color: #ee0011;
    background-color: #f5f5f5;
    border-color: #ee0011;
    border-radius: 0;
}
.alert-info {
    background-color: #F3F5FB;
    border-color: #EFEFEF;
}

footer {
    background-color: #0B1D45;
    border-top: 5px solid #fbbd00;
    color: #fff;
    position: absolute;
    bottom: 0;
}
/* truck box */
.text-shadow {
    text-shadow: 1px 1px 2px black;
}

.truck-container {
    color: #fff;
    font-size: 16px;
}
.truck-bg {
    background: url('../images/bg_volvo.jpg') center no-repeat;
    background-size: cover;
}

.box-txt-2 {
    background-color: rgba(29,29,29,0.5);
    padding: 8px;
}

.card {
    box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03), 0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
    
    transition: all .2s;
}

.page-link:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #0B1D45;
    border-color: #0B1D45;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0B1D45;
    border-color: #0B1D45;
}

.page-item.disabled .page-link {
    background-color: #fff;
    border-color: #dee2e6;
}

.page-link {
    /*color: #000;*/
}

.modal-footer, .modal-header {
    border: 0;
}
 .modal-scrollable {
    max-height: 75vh; 
    overflow-y: scroll;
 }
 
.stepper {
    font-size: 18px;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: right;
}

.stepper .step {
    background-color: #FBBD00;
    padding: 5px 0px;
    border-radius: 25px;
    color: #0B1D45;
    font-weight: bold;
    display: inline-block;
    width: 2em;
    text-align: center;
}

.stepper .step-outline {
    border: 1px solid #FBBD00;
    background-color: transparent;
}

.register-option-box {
    
}

.register-option-link {
    text-decoration: none;
    border-radius: 0;
}
.register-option-link:hover {
    border-bottom: 3px solid #FBBD00;
    text-decoration: none;
}

.omnitrac-bg {
    background: url(../images/omnitrac.jpg);
    background-size: cover;
}


.omnitrac-bg {
    min-height: 695px;
}

.omnitrac-bg a {
    color: #ffcf00;
}

.omnitrac-header {
    color: #fff;
    font-size: 33px;
    line-height: 30px;
}

@media(max-width:576px) {
    .omnitrac-header{
        font-size: 22px;
    }
}    

.accordion-button:not(.collapsed) {
    background-color: #fd0;
}    

.accordion-button:focus {
    z-index: 3;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.btn-primary, .btn-secondary {
	display: inline-block;
	transition: all 0.25s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	text-decoration: none;
}
.btn-primary:after, .btn-secondary:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	z-index: -2;
}
.btn-primary:before, .btn-secondary:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	transition: all 0.25s;
	border-radius: 25px;
	z-index: -1;
}

.btn-primary:after {
    background-color: #FBBD00;
}

.btn-primary:before {
    background-color: #D58F02;
}

.btn-secondary:after {
    
    background-color: #113DAD;
}

.btn-secondary:before {
    background-color: #0b2974;
}

.btn-primary:hover:before, .btn-secondary:hover:before {
	width: 100%;
}