:root {
  --header-yellow: #fdc112;
  --header-pale-yellow: #ffdc70;
  --footer-blue: #045088;
  --white: #ffffff;
  --font-blue: #1176b5;
  --font-blue-alt: #158add;
  --red-1: #ff5e5f;
  --blue-1: #ebf9ff;
  --font-grey: #a1a2a6;
  --plate_running: #bf93d4; 
  --plate_normal: #31a1f3; 
  --plate_bronze: #f2913a; 
  --plate_silver: #c0c0c0; 
  --plate_gold: #fdcd4c;
  --plate_special: #000;
  --cream: #fff8e2;
  --tab-bg-gray: #f6f7fb;
}

@font-face {
  font-family: museo;
  src: url('../fonts/museo/Fonts/MuseoSans_500.otf');
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Boogaloo&display=swap');

@font-face {
  font-family: Boogaloo;
  src: url('../fonts/boogaloo/Boogaloo-Regular.ttf');
}

@font-face {
  font-family: Jomhuria;
  src: url('../fonts/jomhuria/Jomhuria-Regular.ttf');
}

@font-face {
  font-family: Boogie;
  src: url('../fonts/boogie_boys/BoogieBoys.ttf');
}

@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');
/* plate colors bg */
.running_bg {
  background-color: var(--plate_running);
}
.normal_bg {
  background-color: var(--plate_normal);
}
.bronze_bg {
  background-color: var(--plate_bronze);
}
.silver_bg {
  background-color: var(--plate_silver);
}
.special_bg {
  background-color: var(--plate_special);
}
.gold_bg {
  background-color: var(--plate_gold);
}


.font-blue {
  color: var(--font-blue);
}

.btn-bg-blue {
  background-color: var(--footer-blue);
}
.font-red {
  color: var(--red-1);
}

.museo {
  font-family: museo;
}

.boogaloo-regular {
  font-family: Boogaloo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jomhuria-regular {
  font-family: "Jomhuria", serif;
}

.boogie {
  font-family: "Boogie", serif;
}

.cinzel {
  font-family: 'Cinzel', serif;
}

.cabin {
  font-family: "Cabin", sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.body-pad-1 {
  padding: 5% 5%;
}

.body-pad-2 {
  padding: 2% 5%;
}

.padding-v1 {
  padding: 2% 4% !important;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

.main-cont {
  font-family: museo;
}

.ipt_override_1 {
  width: 100%;
  background: white;
  padding: 7px;
  border: 1px solid lightgray;
  border-radius: 0.5rem;
}

.nomborku-header-cont {
  background-color: var(--header-yellow) !important;
  padding: 1.5% 2%;
  background-image: url("../assets/img/top-header.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 30% 100%;
}

nav.navbar.navbar-expand-lg.navbar-light.bg-light {
  background: none !important;
}
a.nav-link {
  cursor: pointer;
}

img.header-brand {
  height: 2rem;
}

.btn-red {
  color: white;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 10px 10px;
  background: var(--red-1);
  cursor: pointer;
}

button.btn-red:hover {
  color: black;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 10px 10px;
  background: var(--white);
  cursor: pointer;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
      flex-direction: row;
  }
}
li.nav-item {
  margin: 0px 2px;
  font-weight: 600;
  padding: 5px 10px;
  font-family: museo;
}
li.nav-item.btn-pale-yellow.dropdown {
  background: var(--header-pale-yellow);
  border-radius: 20px;
}

.main-banner {
  /* background-image: url("../assets/img/Bg-home-1.png"); */
  background-image: url("../assets/img_promo/fest_banner.png");
  min-height: 300px;
    padding: 5% 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


.secondary-banner {
  background-image: url(../assets/img/Bg-subheader.png);
  min-height: 400px;
    padding: 5% 5%;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 100% 100% / 0 0 40% 40%;
}

.main-footer {
  background-color: var(--footer-blue);
  color: var(--white);
  padding: 2% 4%;
  background-image: url("../assets/img/bottom-footer.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 60% 100%;
}

.select-adv-input {
  border-radius: 0px;
  padding: 10px;
  /* padding-right: 15px; */
  background: #f6f7fb;
  background: rgba(255,255,255,0.2);
  border: 1px solid #000;
  margin: 0px;
  width: 20%;
  text-align: center;
}


.footer-brand {
  height: 2rem;
}

img.thropy {
  height: 100px;
}

.center {
  text-align: center;
}

ul.footer-nav {
  display: inline-flex;
  width: 100%;
  margin: auto;
  list-style: none;
  text-align: center;
  font-size: 12px;
}

li.footer-nav-item {
  margin: auto;
  color: var(--white);
}


li.footer-nav-item a {
  margin: auto;
  color: var(--white);
  font-family: museo;
  text-decoration: none;
}

.btn-rounded {
  border-radius: 50px;
}

.btn-blue {
  background-color: var(--font-blue);
  color: var(--white);
  cursor: pointer;
}


.btn-blue:hover {
  background-color: var(--font-blue-alt);
  color: white;
}

/*  index    */
.hiw_cont {
  background: white;
  min-height: 100px;
  border-radius: 20px;
}

img.hiw-img {
  height: 150px;
  display: block;
  margin: auto;
}

.step_no {
  width: fit-content;
  padding: 10px;
  background: var(--header-yellow);
  border-radius: 20px 0px 20px 0px;
  font-size: larger;
  color: white;
}


.search-cont {
  background: rgba(255,255,255,0.8);
  padding: 0px 5%;
  width: 80%;
  margin: auto;
  margin-top: 10%;
  border-radius: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.search-cont-2 {
  background: rgba(255,255,255,0.5);
  padding: 0px 5%;
  width: 80%;
  margin: auto;
  margin-top: 5%;
  border-radius: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

/* search box */
.search-inner-cont {
  width: 100%;
  display: inline-flex;
  margin-top: 2%;
}

.search-inner-cont-2 {
  width: 100%;
  display: inline-flex;
  margin-top: 0%;
}

select.select-prefix {
  border-radius: 10px 0px 0px 10px;
  padding: 10px;
  padding-right: 15px;
  background: #f6f7fb;
  border: 1px solid #e7e8ed;
  margin: 0px;
  width: 20%;
}

select.select-prefix-2 {
  border-radius: 10px 0px 0px 10px;
  padding: 10px;
  padding-right: 15px;
  background: #fff;
  border: 1px solid #e7e8ed;
  margin: 0px;
  width: 20%;
}

input.search-input {
  border-radius: 0px;
  background: rgba(255,255,255,0.2);
  border: 1px solid #000;
  padding: 8px;
  width: 60%;
}

input.search-input-2 {
  border-radius: 0px;
  background: #fff;
  border: 1px solid #e7e8ed;
  padding: 8px;
  width: 60%;
}

button.search-btn {
  padding: 7px;
  margin: 0px;
  width: 20%;
  border-radius: 0 10px 10px 0px;
  background-color: var(--red-1);
  color: var(--white);
  border: 0px solid #e7e8ed;
  cursor: pointer;
}

.search-nav-item .nav-link {
  color: var(--font-grey);
  color: #8d8b8b;
  border-top: 5px solid white;
}

.search-nav-item .active {
  border-top: 5px solid var(--red-1);
  color: black;
}

/* plate_number */
.plate_num_cont {
  border-radius: 15px;
  padding: 7px;
  cursor: pointer;
}

.plate_num_inner_cont_1 {
  background: black;
  border-radius: 10px;
  padding: 5px;
}

.plate_num_inner_cont_2 {
  color: white;
  font-weight: 500;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 100%;
  padding: 2.5%;
  font-family: "Cabin", sans-serif;
}

.pricing_cont {
  display: inline-flex;
  width: 100%;
  font-size: 12px;
  padding: 0px 5px;
  cursor: pointer;
}

.pricing-left {
  text-align: left;
  color: var(--font-grey);
  width: 20%;
}

.pricing-right {
  width: 80%;
  text-align: right;
  font-weight: bold;
}


/* CLICK AND BUY CLASSES */
.cb-tab {
    display: table;
    width: 100%;
    margin-bottom: 0px !important;
    border-bottom: 2px solid var(--header-yellow);
}
.cb-tab .nav-item {
  text-align: center;
  display: table-cell;
  border: 2px solid white;
  border-bottom: none;
  padding: 0px;
}

.cb-tab .nav-item .nav-link {
  width: 100%;
  color: #919191;
  background: var(--tab-bg-gray);
  color: black !important;
  border-radius: 10px 10px 0 0;
}


.cb-tab .nav-item .active {
  color: white !important;
  background-color: var(--header-yellow) !important;
}


.cb-tab .nav-item .nav-link {
  width: 100%;
  color: #919191;
  background: var(--tab-bg-gray);
  color: black !important;
  border-radius: 10px 10px 0 0;
}

.cb-tab-content {
  background: var(--tab-bg-gray);
  padding: 2%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 0 0 10px 10px;
}

/* -------- FAQ ---------- */
.grey-box {
  background: var(--tab-bg-gray);
  border-radius: 15px;
  padding: 10px 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  min-height: 100%;
}

.grey-bg {
  
  background: var(--tab-bg-gray) !important;
}

ul#myTab {
  display: block;
  width: 100%;
}

.faq-tab .nav-item .nav-link {
  color: var(--font-grey);
  width: 100%;
  text-align: left;
}

.faq-tab .nav-item .active {
  color: black;
  font-weight: bold;
  border-left: 5px solid var(--red-1);
}

.bg-blue {
  background-color: var(--blue-1);
}
/* -------- FAQ ---------- */


/*----------CLICK AND BUY ------------*/
img.car-bg {
  width: 100%;
  object-fit: contain;
}

.table-cnb>tbody>tr>td {
  background: var(--tab-bg-gray)!important;
}
.car-img-cont {
  position: relative;
}

.floating-plate {
    position: absolute;
    color: #b5b5b5;
    width: 100%;
    top: 240px;
    /* background: red; */
    text-align: center;
    left: 2%;
    font-family: "Cabin", sans-serif;
    /*text-shadow: -1px -1px 1px #fff, 1px 1px 1px #3e3d3d;*/
}

/*--------CLICK AND BID -----------------------*/
.bid-plate-cont {
  background: black;
  border-radius: 15px;
  padding: 5px;
  width: fit-content;
  margin: auto;
}

.bid-plate-inner-cont {
  border: 1px solid white;
  border-radius: 15px;
  padding: 10px 30px;    
  text-align: center;
  width: fit-content;
}

span.bid-plate-prefix {
  color: white;
  margin-right: 10px;
  font-size: 2rem;
}

input.bid-plate-input {
  text-align: center;
  /* padding: 10px; */
  width: 30%;
  font-size: 2rem;
}

.payment-cont {
  width: 100%;
  display: inline-flex;
  text-align: center;
}

.method-cont {
  width: 30%;
  padding: 20px;
  margin: auto;
}
.pm-1 {
  background-color: white;
  border-radius: 15px;
  border: 5px solid var(--white);
  cursor: pointer;
}

.pm-2 {
  background-color: white;
  border-radius: 15px;
  border: 5px solid var(--white);
  cursor: pointer;
}

.pm-checked {
  border: 5px solid var(--header-yellow);
  border-radius: 15px;
}
img.pm-1-img {
  width: 50%;
}img.pm-2-img {
  width: 50%;
}

.unchecked {
  background: #ebebeb;
  border: none;
}

input.voucher_code_ipt {
  font-size: 2rem;
  margin: auto;
  display: block;
  border: none;
  text-align: center;
}

.res-modal-bg {
  width: 100%;
  height: 200px;
  background: green;
  border-radius:0 0 120% 120% / 0 0 120% 120%;
  background-color: rgba(11,191,89,0.2);
  padding: 5%;
}

.res-modal-bg-2 {
  width: 100%;
  height: 200px;
  background: red;
  border-radius:0 0 120% 120% / 0 0 120% 120%;
  background-color: rgba(229,78,62,0.2);
  padding: 5%;
}

/*---------- SEARCH --------------------------*/
.plate_num_inner_cont_1_search {
  width: 120px;
  background: black;
  color: white;
  border-radius: 5px;
  text-align: center;    
  padding: 5px;
}

.plate_num_inner_cont_2_search.cabin {
  border: 1px solid white;
  border-radius: 5px;
  padding: 2px 10px;
}

.price-old {
  font-size: 0.8rem;
  text-decoration: line-through red;
}

.btn-view {
  border: 1px solid var(--footer-blue);
  color: var(--footer-blue);
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
}


.btn-view:hover {
  color: white;
  background-color: var(--footer-blue) !important;
}

.btn-buy-now {
  border: 1px solid var(--footer-blue);
  background-color: var(--footer-blue);
  color: var(--white);
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
}


.btn-buy-now:hover {
  color: var(--footer-blue);
  background-color: var(--white);
}

.result_dl_btn {
  border: 1px solid #1377b5;
  color: #1377b5;
  border-radius: 5px;
  padding: 5px 15px;
  text-decoration: none;
}


.result_dl_btn:hover {
  border: 1px solid #1377b5;
  background-color: #1377b5;
  color: #fff;
  border-radius: 5px;
  padding: 5px 15px;
  text-decoration: none;
}



/* MEDIA QUERIES ------------------------------------------------ */
/* MEDIA QUERIES ------------------------------------------------ */

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 0; 
      padding-left: 0; 
  }
}

@media only screen and (max-width: 600px) {
  

.method-cont {
  width: 50%;
  padding: 0px;
  margin: auto;
}

  .main-footer {
    background-color: var(--footer-blue);
    color: var(--white);
    padding: 2% 4%;
    background-image: url("../assets/img/bottom-footer.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: 0%;
  }

  .row.nomborku-header-cont {
    background-image: none;
}

  ul.footer-nav {
    display: block !important;
    margin: auto;
    list-style: none;
    margin-top: 15px !important;
}

.main-banner {
  background-image: url(../assets/img/Bg-home-1.png);
  min-height: 300px;
  padding: 5% 5%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
  
.search-inner-cont {
  width: 100%;
  display: inline-flex;
  margin-top: 2%;
  font-size: 12px !important;
}

select.select-prefix {
  border-radius: 10px 0px 0px 10px;
  padding: 10px;
  padding-right: 15px;
  margin: 0px;
  width: 35% !important;
}


.search-cont-2 {
  padding: 0px 5%;
  width: 100% !important;
  margin: 0 !important;
  margin-top: 5% !important;
  border-radius: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
input.search-input {
  border-radius: 0px;
  padding: 8px;
  width: 50% !important;
}
.pricing-left {
  display: none !important;
}

.cb-tab .nav-item {
  background: var(--tab-bg-gray);
  color: black !important;
  border-radius: 10px 10px 0 0;
  text-align: center;
  display: inline-table;
  border: 2px solid white;
  border-bottom: none;
}

/* mobile */

img.caro-img {
  object-fit: cover;
  width: 100%;
  height: 50vh;
  object-position: bottom;
}

.bodypadhome
{
  margin-top: 5vh;
}

}

/* HAVAL */
.floating-plate {
  position: absolute;
  color: #b5b5b5;
  width: 100%;
  top: 57.5%;
  text-align: center;
  left: 2%;
  font-family: "Cabin", sans-serif;
  font-weight: bold;
  /*text-shadow: -1px -1px 1px #fff, 1px 1px 1px #3e3d3d;*/
}