html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #404040;
  background-color: #e2e8f0;
  background-image: linear-gradient(to bottom, #e2e8f0 0px, #e2e8f0 290px, #fff 180px);
}
body.body-home {
  background: none !important;
  background-color: #e2e8f0 !important;
}

@media (min-width: 1230px) {
  .container {
    width: 1230px;
  }
}
hr {
  border-color: #c8c8c8;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

h1 {
  color: #002f5c;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

ul, li {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 30px;
}

a {
  color: #002f5c;
  text-decoration: underline;
}
a:hover {
  color: #002f5c;
}

.btn {
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  background: none;
  border: none;
}

.btn-blue {
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: #002f5c;
  padding: 17px 65px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-blue:hover {
  color: #fff;
  background-color: #dc0814;
}

.btn.active, .btn:active, .btn:focus {
  box-shadow: none;
}

.row-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.row-flex > [class*=col-] {
  display: flex;
  flex-direction: column;
}
.row-flex > [class*=col-] > div {
  height: 100%;
}

.vertical-align {
  display: flex;
  align-items: center;
}

.horizontal-align {
  display: flex;
  justify-content: center;
}

.bottom-50, .bottom-30 {
  margin-bottom: 30px !important;
}

@media (min-width: 768px) {
  .bottom-50 {
    margin-bottom: 50px !important;
  }

  .bottom-30 {
    margin-bottom: 30px !important;
  }
}
.text-red {
  color: #dc0814;
}

.text-blue {
  color: #002f5c;
}

/* 5THS */
.col-xs-5ths, .col-sm-5ths, .col-md-5ths, .col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
/* END 5THS */
/* NAVBAR */
.navbar {
  position: relative;
  min-height: unset;
  margin-bottom: 0px;
  border: none;
  border-radius: 0;
  margin: 10px -15px;
  background: #e2e8f0;
}

.navbar-nav {
  margin: 7.5px -15px;
}

.navbar-brand {
  height: auto;
  padding: 0px 15px;
  font-size: 18px;
  line-height: 1;
}
.navbar-nav > li {
  width: 100%;
  float: left;
  padding: 5px;
  text-align: center;
}
.navbar-nav > li > a {
  padding: 0px;
  color: #002f5c;
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.navbar-nav > li > a::after {
  height: 3px;
  background-color: #dc0814;
  position: absolute;
  bottom: 0px;
  left: 50%;
  right: 50%;
  opacity: 0;
  transition: all 0.3s;
  content: "";
}
.navbar-nav > li.active > a::after, .navbar-nav > li > a:hover::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.nav > li > a:focus, .nav > li > a:hover {
  text-decoration: none;
  background-color: transparent;
}
.nav .open > a {
  background-color: transparent;
  border: none;
}
.nav .open > a:focus, .nav .open > a:hover {
  background-color: transparent;
  border: none;
}

.navbar-toggle {
  float: right;
  padding: 9px 10px;
  margin-top: 0px;
  margin-right: 15px;
  margin-bottom: 0px;
  border: 1px solid #000;
  border-radius: 0px;
}
.navbar-toggle .icon-bar {
  width: 22px;
  height: 2px;
  border-radius: 0px;
  background: #000;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .navbar-collapse {
    padding: 0;
  }

  .navbar {
    margin: 0;
  }

  .navbar-nav {
    margin: 0;
    margin-left: -15px;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }

  .navbar-nav > li {
    padding: 0;
    padding-right: 15px;
    width: auto;
  }
  .navbar-nav > li > a {
    padding: 0;
    text-decoration: none;
    position: relative;
  }
  .navbar-nav > li > a::after {
    bottom: -7px;
  }
  .navbar-nav > li.active > a::after, .navbar-nav > li > a:hover::after {
    left: 0;
    right: 0;
    opacity: 1;
  }
}
@media (min-width: 991px) {
  .navbar-nav > li {
    padding-right: 60px;
  }
}
/* END NAVBAR */
/* header */
.header-bg {
  min-height: 110px;
  background-color: #002f5c;
  width: 100%;
  margin: 0 auto;
}

.header-logo {
  margin-top: 24px;
  display: block;
}
.header-logo img {
  max-width: 158px;
}

.top-menu {
  float: right;
  margin-top: 35px;
}
.top-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}
.top-menu > ul > li {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  padding-right: 30px;
  position: relative;
}
.top-menu > ul > li:first-child::after {
  position: absolute;
  top: 0;
  right: 15px;
  content: "|";
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
}
.top-menu .top-icons li:first-child::after {
  display: none;
}
.top-menu > ul > li > a {
  color: #ffffff !important;
  font-size: 14px;
  line-height: 1;
  padding: 8px 0px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

.cart-link {
  color: #ffffff !important;
  font-size: 14px;
  line-height: 1;
  padding: 8px 0px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

.top-menu > ul > li.login-top > a {
  padding-left: 36px;
  max-width: 200px;
}

.login-top .dropdown-toggle {
  position: relative;
  padding-right: 15px;
}
.login-top .dropdown-toggle::before {
  color: #dc0814;
  font-size: 16px;
  margin-left: 5px;
  content: "\f0d7";
  position: absolute;
  right: 0;
  top: 8px;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
}

.top-menu > ul > li.login-top > a::after {
  content: "\f007";
  font-family: "Font Awesome 5 Pro";
  color: #dc0814;
  font-size: 24px;
  font-weight: 400;
  position: absolute;
  width: 23px;
  height: 30px;
  left: 0px;
  top: 0;
  right: auto;
  line-height: 1.3;
}
.top-menu > ul > li.cart-top > a {
  padding-left: 40px;
}
.top-menu > ul > li.cart-top > a .icon {
  font-family: "Font Awesome 5 Pro";
  color: #dc0814;
  font-size: 24px;
  font-weight: 400;
  position: absolute;
  width: 27px;
  height: 30px;
  left: 0px;
  top: 0;
  right: auto;
  line-height: 1.3;
}
.top-menu > ul > li.cart-top > a .icon span {
  position: absolute;
  right: -3px;
  top: 0;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  z-index: 1;
  content: "";
  font-size: 8px;
  color: #002f5c;
  text-align: center;
  border-radius: 50%;
}
.top-menu > ul > li.cart-top .dropdown-toggle {
  position: relative;
  padding-right: 15px;
}
.top-menu > ul > li.cart-top .dropdown-toggle::before {
  color: #dc0814;
  font-size: 16px;
  margin-left: 5px;
  content: "\f0d7";
  position: absolute;
  right: 0;
  top: 8px;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
}

.cart-top > a > span, .cart-link span {
  font-weight: 700;
}

.cart-top .item-img {
  display: block;
  float: left;
  width: 30px;
}
.cart-top ul > li {
  color: #002f5c;
  display: block;
  float: left;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #c8c8c8;
  padding-left: 20px;
  padding-right: 20px;
}
.cart-top ul > li:nth-last-child(2) {
  border-bottom: none;
}
.cart-top .item-name {
  display: block;
  float: left;
  width: calc(100% - 130px);
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  padding-top: 5px;
}
.cart-top .item-name a {
  text-decoration: none;
}
.cart-top .item-price {
  display: block;
  float: left;
  width: 60px;
  margin-right: 20px;
  font-size: 12px;
  padding-top: 5px;
}
.cart-top .item-del {
  display: block;
  float: left;
  width: 20px;
  font-size: 20px;
  margin-top: -2px;
}
.cart-top .bottom {
  height: 75px;
  background-color: #e2e8f0;
  border-bottom: 0;
  padding-top: 15px;
  text-align: center;
}
.cart-top .bottom .btn-blue {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background-color: #002f5c;
  padding: 14px 55px;
  display: inline-block;
}
.cart-top .bottom .btn-blue:hover {
  color: #fff;
  background-color: #dc0814;
}

@media (max-width: 991px) {
  .header-logo-wrap {
    float: left;
    width: 140px;
  }

  .header-menu-wrap {
    float: left;
    width: calc(100% - 140px);
  }
}
@media (max-width: 767px) {
  .top-menu {
    margin-top: 10px;
  }
  .top-menu > ul {
    clear: both;
    float: right;
  }
  .top-menu > ul:first-child {
    margin-bottom: 10px;
  }
  .top-menu > ul > li {
    display: block;
    padding: 0px;
    position: relative;
    text-align: right;
  }
  .top-menu > ul > li:first-child {
    padding-right: 10px;
  }
  .top-menu > ul > li:first-child::after {
    display: none;
  }
  .top-menu > ul > li.login-top {
    clear: both;
  }
}
@media (max-width: 600px) {
  .top-menu {
    margin-top: 0px;
  }
  .top-menu > ul:first-child {
    margin-bottom: 5px;
  }
  .top-menu > ul.top-icons {
    text-align: right;
  }
  .top-menu > ul.top-icons > li {
    width: 100%;
    padding: 0;
  }
  .top-menu > ul > li.login-top {
    clear: both;
    margin-bottom: 5px;
  }
  .top-menu > ul > li.cart-top {
    clear: both;
  }
  .top-menu > ul > li.login-top a::after {
    left: 3px;
  }

  .header-logo-wrap {
    float: left;
    width: 140px;
  }

  .header-menu-wrap {
    float: left;
    width: calc(100% - 140px);
  }
}
@media (max-width: 339px) {
  .header-logo-wrap {
    float: left;
    width: 120px;
  }

  .header-menu-wrap {
    float: left;
    width: calc(100% - 120px);
  }
}
/* Dropdown */
.dropdown-menu {
  top: calc(100% + 25px);
  left: 0;
  min-width: 250px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  padding: 0px 20px;
  margin: 0;
  text-align: left;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.dropdown-menu::before {
  position: absolute;
  top: -15px;
  left: 30px;
  content: "\f0d8";
  width: 25px;
  height: 20px;
  color: #fff;
  font-family: "Font Awesome 5 Pro";
  font-size: 35px;
  font-weight: 900;
  line-height: 20px;
}

.cart-top .dropdown-menu {
  left: auto;
  right: 0;
  width: 410px;
  padding: 0px;
}
.cart-top .dropdown-menu::before {
  left: auto;
  right: 30px;
}

.dropdown-menu > li {
  margin-top: 10px;
}
.dropdown-menu > li > a {
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  color: #002f5c;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  color: #000;
  background-color: #fff;
}
.dropdown-menu .divider {
  margin: 15px 0px;
  background: #c8c8c8;
}

@media (max-width: 767px) {
  .dropdown-menu {
    left: auto;
    right: 0;
    top: calc(100% + 10px);
  }
  .dropdown-menu::before {
    top: -15px;
    left: auto;
    right: 30px;
  }
}
/* END Dropdown */
/* end header */
.bg-white {
  background: #fff;
  padding: 20px 15px;
  margin-left: -15px;
  margin-right: -15px;
}

.border-solid {
  border: 1px solid #c8c8c8;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .bg-white {
    padding: 40px 70px;
    margin: 0;
  }
}
.text-styled-ul ul {
  text-align: left;
  list-style: none !important;
  margin: 0;
  padding: 0;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 50px;
}
.text-styled-ul ul li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.text-styled-ul ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 10px;
  font-weight: 400;
  color: #002f5c;
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
}

#signin-form {
  clear: both;
  /*padding: 0 15px;*/
}
#signin-form table {
  width: 100%;
}
#signin-form table th {
  display: none;
}
#signin-form table .signin_remember_row thX {
  display: block;
}

.row-forgotpass table th, .row-forgotpass table td {
  display: block;
}

.in-profile form {
  margin-bottom: 30px;
}
.in-profile table, .in-profile button {
  clear: both;
}

@media (min-width: 992px) {
  #registration-form table, #profile-edit-logins {
    width: 100%;
  }

  #registration-form tr, #profile-edit-logins tr {
    display: block;
    width: 33%;
    float: left;
    padding-right: 15px;
  }

  .tabDivRowWrap {
    float: left;
    width: 33%;
    padding-right: 15px;
  }

  .in-profile form {
    margin-bottom: 50px;
  }
}
.clear, .reg-gdpr, #is-subscriber-box, .address_company_name_row {
  clear: both;
}

#is-subscriber-box {
  position: relative;
}

.form-wrap-address .tabDivRowWrap .tabDivRow2, #signin-form table td input, .row-forgotpass .text-input, .form-group {
  margin-bottom: 20px;
}

.form-wrap-address .tabDivRowWrap {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.form-wrap-address .tabDivRow1 {
  display: none;
}

.form-control, #signin-form .text-input, .row-forgotpass .text-input, .bootstrap-select button, .form-wrap-address .form-group .text-input {
  width: 100%;
  max-width: 310px;
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #404040;
  border: none;
  border-radius: 4px;
  background-color: #e2e8f0;
  box-shadow: none;
}

.bootstrap-select button {
  padding-top: 14px;
}
.bootstrap-select .dropdown-menu a.selected {
  background-color: white;
  color: black;
  font-weight: 700;
}

.form-control:focus {
  box-shadow: none;
}

textarea.form-control {
  max-width: 379px;
  height: 120px;
  border-radius: 4px;
  background-color: #e2e8f0;
  padding: 10px;
}

/* check */
.check-styled {
  position: relative;
  margin-top: 0px;
  margin-bottom: 20px;
  display: block;
  float: left;
  width: 100%;
}

input[type=checkbox] {
  visibility: hidden;
  display: block;
  position: absolute;
}
input[type=checkbox] + label {
  display: block;
  width: 100%;
  margin: 0;
  float: left;
  min-height: 20px;
  margin: 0;
  vertical-align: middle;
  padding-left: 30px;
  cursor: pointer;
  font-weight: normal;
  padding-top: 0px;
  line-height: 1.2;
  color: #002f5c;
  font-size: 16px;
  font-weight: 300;
}
input[type=checkbox] + label::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  color: #002f5c;
  /*color: #e2e8f0;*/
  background: #ffff;
  font-weight: 200;
  font-size: 20px;
  line-height: 1;
  content: "\f0c8";
  font-family: "Font Awesome 5 Pro";
}
input[type=checkbox]:checked + label::before {
  position: absolute;
  color: #002f5c;
  content: "\f14a";
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
}

/* end check */
/* radio */
.radio-styled {
  position: relative;
  margin-top: 0px;
  margin-bottom: 20px;
  display: block;
  float: left;
  width: 100%;
}

input[type=radio] {
  visibility: hidden;
  display: block;
  position: absolute;
}
input[type=radio] + label {
  display: block;
  width: 100%;
  margin: 0;
  float: left;
  min-height: 20px;
  margin: 0;
  vertical-align: middle;
  padding-left: 30px;
  cursor: pointer;
  font-weight: normal;
  padding-top: 0px;
  position: relative;
  background: url("/images/abus/radio.svg") no-repeat;
  background-size: 15px auto;
  background-position: left top 2px;
  color: #002f5c;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}
input[type=radio]:checked + label {
  background: url("/images/abus/radio_check.svg") no-repeat;
  background-size: 15px auto;
  background-position: left top 2px;
}
input[type=radio]:disabled + label {
  color: grey !important;
  cursor: not-allowed !important;
}

/* end radio */
/* table */
.small-table {
  float: left;
  width: 100%;
  max-width: 510px;
  margin-top: 40px;
}

.full-border-table .table > tbody > tr > td, .full-border-table .table > tbody > tr > th {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  padding: 0px 18px;
  height: 50px;
  vertical-align: middle;
}
.full-border-table .table > tfoot > tr > td, .full-border-table .table > tfoot > tr > th {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  padding: 0px 18px;
  height: 50px;
  vertical-align: middle;
}
.full-border-table .table > thead > tr > td, .full-border-table .table > thead > tr > th {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  padding: 0px 18px;
  height: 50px;
  vertical-align: middle;
}

.table > tbody > tr > td, .table > tbody > tr > th {
  border-bottom: 1px solid #c8c8c8;
  border-top: none;
  background-color: #ffffff;
  padding: 0px 18px;
  height: 50px;
  vertical-align: middle;
}
.table > tfoot > tr > td, .table > tfoot > tr > th {
  border-bottom: 1px solid #c8c8c8;
  border-top: none;
  background-color: #ffffff;
  padding: 0px 18px;
  height: 50px;
  vertical-align: middle;
}
.table > thead > tr > td {
  border-bottom: 1px solid #c8c8c8;
  border-top: none;
  background-color: #ffffff;
  padding: 0px 18px;
  height: 50px;
  vertical-align: middle;
}
.table > thead > tr > th {
  border-bottom: 1px solid #c8c8c8;
  border-top: none;
  background-color: #ffffff;
  padding: 0px 18px;
  height: 50px;
  vertical-align: middle;
  vertical-align: middle;
  background-color: #e2e8f0;
  border-bottom: 0;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  padding: 0px 10px;
  height: 30px;
}
.table td a {
  text-decoration: none;
}

/* end table */
/* login */
.recover-pass {
  position: relative;
  text-decoration: none;
  padding-left: 25px;
  display: inline-block;
}
.recover-pass::before {
  content: "\f059";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  font-size: 20px;
  color: #002f5c;
  line-height: 1;
}

@media (max-width: 767px) {
  .recover-pass {
    margin-top: 20px;
  }
}
/* end login */
/* footer */
.footer-bg {
  height: 110px;
  background-color: #002f5c;
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1;
  color: #e2e8f0;
  font-weight: 300;
}
.footer-bg > .container > .row {
  height: 110px;
}
.footer-bg a {
  color: #e2e8f0;
}

footer p {
  margin-bottom: 0;
  width: 100%;
}

/* end footer */
/* thanks */
.thanks-text {
  text-align: center;
}
.thanks-text .icon {
  font-size: 60px;
  color: #dc0814;
  font-weight: 400;
  margin: 0 auto;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 35px;
}
.thanks-text p {
  color: #002f5c;
  font-size: 24px;
  font-weight: 700;
}
.thanks-text .btn-blue {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .thanks-text .btn-blue {
    padding: 17px 20px;
  }
  .thanks-text p {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .thanks-text .btn-blue {
    margin-top: 10px;
    margin-bottom: 60px;
  }
}
/* end thanks */
/* search */
.search .form-control {
  display: block;
  float: left;
  width: calc(100% - 235px);
  max-width: 100%;
}
.search .btn-blue {
  display: block;
  float: left;
  width: 205px;
  margin-left: 30px;
}

.search-input {
  max-width: 880px;
}

@media (max-width: 500px) {
  .search .form-control {
    display: block;
    float: left;
    width: calc(100% - 110px);
    max-width: 100%;
  }
  .search .btn-blue {
    display: block;
    float: left;
    width: 100px;
    padding: 17px 15px;
    margin-left: 10px;
  }
}
/* end search */
/* order-view */
.order-view {
  margin-top: 30px;
}
.order-view table {
  font-size: 12px;
  color: #404040;
}
.order-view table a {
  text-decoration: none;
}

/* end order-view */
/* cart-top */
.cart-top {
  padding: 40px 15px;
  margin-bottom: 30px;
}
.cart-top .item {
  position: relative;
}
.cart-top .item:nth-child(1) {
  width: 22%;
}
.cart-top .item:nth-child(2) {
  width: 23%;
}
.cart-top .item:nth-child(3) {
  width: 26%;
}
.cart-top .item:nth-child(4) {
  width: 29%;
}
.cart-top .item:nth-child(4)::after {
  display: none;
}
.cart-top .obr {
  color: #002f5c;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 15px;
}
.cart-top .name {
  color: #002f5c;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.cart-top .item.active .obr, .cart-top .item.active .name {
  color: #dc0814;
}

@media (min-width: 768px) {
  .cart-top .item:nth-child(1), .cart-top .item:nth-child(2) {
    width: 23%;
  }
  .cart-top .item:nth-child(3) {
    width: 30%;
  }
  .cart-top .item:nth-child(4) {
    width: 24%;
  }
  .cart-top .item::after {
    color: #e3e3e3;
    font-size: 36px;
    line-height: 30px;
    font-weight: 400;
    position: absolute;
    right: -8px;
    top: 50%;
    height: 33px;
    transform: translateY(-50%);
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
  }
}
@media (max-width: 991px) {
  .cart-top .obr {
    font-size: 30px;
  }
  .cart-top .name {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .cart-top .obr {
    font-size: 25px;
  }
  .cart-top .name {
    font-size: 13px;
    font-weight: 300;
  }
}
/* end cart-top */
/* form */
.form-20 > .row {
  margin-left: -10px;
  margin-right: -10px;
}
.form-20 > .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 330px;
}

.form-wrap {
  margin-bottom: 30px;
}
.form-wrap .check-styled {
  margin-top: 10px;
  margin-bottom: 30px;
}
.form-wrap .btn-blue {
  margin-top: 10px;
}

/* end form */
/* cart-bottom */
.cart-bottom {
  margin-bottom: 30px;
}
.cart-bottom .btn-blue {
  max-width: 350px;
  width: 100%;
  padding: 17px 10px;
}

@media (min-width: 768px) {
  .cart-bottom {
    margin-bottom: 90px;
  }
  .cart-bottom .btn-blue {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .cart-bottom .btn-blue {
    margin-bottom: 20px;
  }
  .cart-bottom > .row > [class*=col-] {
    text-align: left;
  }
}
/* end cart-bottom */
/* cart-table */
@media (min-width: 992px) {
  .left-30 {
    padding-left: 45px;
  }
}
.cart-table {
  margin-left: 0px;
}
.cart-table table {
  font-size: 12px;
}
.cart-table table td:first-child {
  padding-left: 0 !important;
  text-align: left;
}

table td img {
  max-width: 30px;
  max-height: 30px;
  margin-right: 40px;
}

.cart-del .icon {
  color: #002f5c;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

/* end cart-table */
/* under-table */
.under-table {
  border-top: 1px solid #c8c8c8;
  margin-top: -15px;
  padding-top: 30px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .under-table {
    margin-bottom: 40px;
  }
}
.full-price {
  color: #002f5c;
  font-size: 16px;
  border: 1px solid #c8c8c8;
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
}
.full-price .row {
  margin-left: 0;
  margin-right: 0;
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 10px;
  padding-top: 10px;
}
.full-price .row > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.full-price .row:first-child {
  padding-top: 0;
}
.full-price .row:last-child {
  font-weight: 700;
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .full-price-small {
    max-width: 410px;
    margin: 0 auto;
    float: right;
  }
}
@media (max-width: 767px) {
  .full-price {
    margin-top: 20px;
  }
}
.cart-checks .check-styled {
  margin-bottom: 10px;
}

/* end under-table */
/* udaje */
.udaje-box {
  border: 1px solid #c8c8c8;
  padding: 15px 20px;
  margin-bottom: 30px;
}

/* end udaje */
/* radio-box */
.radio-box {
  border: 1px solid #c8c8c8;
  padding: 15px 20px;
  float: left;
  width: 100%;
}
.radio-box .radio-styled {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c8c8c8;
}
.radio-box .row > [class*=col-]:last-child .radio-styled {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-styled .span {
  display: block;
  float: left;
}
.radio-styled .price {
  float: right;
}

.radio-box input[type=radio]:checked + label {
  font-weight: 700;
}

/* radio-box */
/* location */
.location-input {
  float: left;
}

.location-checks {
  float: left;
  margin-left: 30px;
  margin-right: 30px;
}

.location-btn {
  float: left;
}

.location-checks .check-styled:first-child {
  margin-left: 0;
}
.location-checks li, .location-checks .check-styled {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
  float: left;
  width: auto;
  margin-left: 20px;
}
.location-checks li input {
  top: 0;
  left: 0;
}
.location-checks li label {
  padding-left: 12px;
}

.location-btn .btn-blue {
  padding: 17px 30px;
}

@media (max-width: 1200px) {
  .location-input {
    float: left;
    width: 100%;
  }

  .location-checks {
    float: left;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }

  .location-btn {
    float: left;
    width: 100%;
  }

  .location-checks .check-styled {
    margin-top: 0px;
    margin-right: 20px;
    margin-left: 0;
  }
}
.map {
  margin-top: 20px;
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

.border-table {
  border: 1px solid #c8c8c8;
}

.location-table {
  font-size: 14px;
}
.location-table table .vendor-tel {
  min-width: 160px;
}

.btn-send {
  position: relative;
  padding-left: 22px;
}
.btn-send::after {
  content: "\f1d8";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  color: #002f5c;
}

/* location */
/* categories */
.cat-table table {
  font-size: 16px;
}
.cat-table img {
  display: inline-block;
  padding-left: 10px;
}
.cat-table table th {
  font-size: 12px;
  white-space: nowrap;
}
.cat-table table td {
  padding: 10px 15px !important;
}
.cat-table table td:first-child {
  padding-left: 0 !important;
  text-align: left;
  min-width: 160px;
}
.cat-table td.name {
  text-align: left;
  word-break: break-word;
}
.cat-table table td.cat-table-inputs {
  min-width: 120px;
  padding-right: 0 !important;
  text-align: right;
}

.cat-table-inputs-wrap {
  float: right;
}

.cat-table-inputs input.num {
  width: 30px;
  height: 35px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  text-align: center;
  display: block;
  float: left;
  margin-right: 7px;
}
.cat-table-inputs .check-styled {
  float: left;
  width: auto;
  margin-bottom: 0;
  margin-top: 7px;
}
.cat-table-inputs .check-styled input[type=checkbox] + label {
  padding-left: 20px;
}
.cat-table-inputs .btn-add {
  width: 35px;
  height: 35px;
  border-radius: 4px;
  background-color: #002f5c;
  text-align: center;
  display: block;
  float: left;
  margin-right: 10px;
  color: #ffffff;
  font-size: 18px;
  padding: 0;
}
.cat-table-inputs .btn-add .icon {
  margin-left: -3px;
}

/* cat-bottom */
.cat-bottom {
  margin-bottom: 30px;
}

#basket-window #basket-window-basketlink, .cat-bottom .btn-blue {
  margin-top: 20px;
  margin-bottom: 10px;
  max-width: 230px;
  width: 100%;
  padding: 17px 10px;
  font-size: 14px;
}

#basket-window #basket-window-close {
  margin-top: 20px;
  margin-bottom: 10px;
  max-width: 230px;
  width: 100%;
  padding: 17px 10px;
  font-size: 14px;
  background-color: #e2e8f0;
  color: #404040 !important;
}
#basket-window #basket-window-close:hover {
  background-color: #dc0814 !important;
  color: white !important;
}

@media (min-width: 768px) {
  .cat-bottom {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .cat-bottom .btn-blue {
    margin-bottom: 20px;
  }
  .cat-bottom > .row > [class*=col-] {
    text-align: left;
  }
}
.cat-bottom .icon {
  font-size: 18px;
  margin-right: 9px;
}

/* end cat-bottom */
/* end categories */
/* Breadcrumb */
.breadcrumb, #breadcrumbs ul {
  padding: 0px;
  margin-bottom: 0px;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 30px;
}

.breadcrumb > li, #breadcrumbs ul > li {
  display: inline-block;
  font-size: 14px;
  color: #002f5c;
  font-style: italic;
  text-decoration: none;
}

.breadcrumb > li a, #breadcrumbs li a {
  text-decoration: none;
}

.breadcrumb > li + li::before, #breadcrumbs li + li::before {
  padding: 0 8px;
  color: #002f5c;
  content: "\f101";
  font-family: "Font Awesome 5 Pro";
}

.breadcrumb > .active, #breadcrumbs .active {
  color: #002f5c;
}

@media (max-width: 767px) {
  .breadcrumb, #breadcrumbs ul {
    padding-top: 10px;
  }
}
/* END Breadcrumb */
/* left-menu */
.left-menu {
  border: 1px solid #c8c8c8;
  margin-bottom: 30px;
}
.left-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.left-menu .component-box > ul > li {
  position: relative;
}
.left-menu .component-box > ul > li > a {
  padding: 17px 20px;
  padding-right: 35px;
  display: block;
  text-decoration: none;
  color: #002f5c;
  position: relative;
}
.left-menu .component-box > ul > li > a::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 30px;
  top: 17px;
  font-weight: 900;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.left-menu .component-box > ul > li a {
  text-decoration: none;
}
.left-menu .component-box > ul > li.active > a {
  background-color: #002f5c;
  color: #fff;
  position: relative;
}
.left-menu .component-box > ul > li:last-child::before {
  display: none;
}
.left-menu .component-box > ul > li::before {
  height: 1px;
  border-bottom: 1px solid #c8c8c8;
  background-color: #ffffff;
  position: absolute;
  content: "";
  left: 20px;
  right: 20px;
  bottom: 0;
}
.left-menu .component-box > ul > li.active > a::after {
  transform: rotate(90deg);
}
.left-menu .component-box > ul > li > ul {
  display: none;
  padding-top: 25px;
}
.left-menu .component-box > ul > li.open > ul {
  background-color: #e2e8f0;
  display: block;
}
.left-menu .component-box > ul > li > ul > li {
  padding: 0px 40px;
  padding-right: 30px;
}
.left-menu .component-box > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding-bottom: 10px;
}
.left-menu .component-box > ul > li > ul > li > a::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0px;
  top: 0px;
  font-weight: 900;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.left-menu .component-box > ul > li > ul > li.active > a::after {
  transform: rotate(90deg);
}
.left-menu .component-box > ul > li > ul > li > ul {
  display: none;
  margin-bottom: 25px;
}
.left-menu .component-box > ul > li > ul > li.open > ul, .left-menu .component-box > ul > li > ul > li.active > ul {
  display: block;
}
.left-menu .component-box > ul > li > ul > li.open > a, .left-menu .component-box > ul > li > ul > li.active > a {
  font-weight: 700;
}
.left-menu .component-box > ul > li > ul > li > ul > li {
  padding-left: 10px;
  padding-bottom: 8px;
}
.left-menu .component-box > ul > li > ul > li > ul > li.active > a {
  font-weight: 700;
  color: #dc0814;
}
.left-menu #category-main-menu li a span {
  padding-right: 10px;
}

/* end left-menu */
/* detail-info */
.detail-info table {
  max-width: 380px;
}
.detail-info .table-responsive {
  border: none;
}
.detail-info table td:nth-child(2) {
  text-align: right;
}

/* end detail-info */
/* detail-images */
.detail-images {
  max-width: 440px;
}

.img-big {
  border: 1px solid #c8c8c8;
  background-color: #ffffff;
  float: right;
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 5px;
}

.img-small {
  background-color: #ffffff;
  float: left;
  border: 1px solid #c8c8c8;
  padding: 5px;
  width: 70px;
  height: 70px;
  margin: 5px;
}
.img-small:first-child {
  margin-left: 0;
}

.img-gal {
  background-color: #ffffff;
  float: left;
  border: 1px solid #c8c8c8;
  padding: 5px;
  width: 70px;
  height: 70px;
  margin: 5px;
  text-align: center;
  color: #002f5c;
  font-size: 16px;
  padding-top: 42px;
  line-height: 1;
  position: relative;
  cursor: pointer;
}
.img-gal::before {
  content: "\f083";
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 10px;
  font-size: 24px;
  color: #002f5c;
  font-weight: 300;
  font-family: "Font Awesome 5 Pro";
}
.img-gal:hover {
  color: #dc0814;
}
.img-gal:hover::before {
  color: #dc0814;
}

#table-buy-item {
  display: inline-block;
  float: left;
}
#table-buy-item th {
  display: none;
}

#basket-window .ui-spinner, .variant-table .ui-spinner, #basket-window .ui-spinner, #basket-products .ui-spinner, #table-buy-item .ui-spinner, .detail-info-bottom .num {
  height: 50px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  display: block;
  float: left;
  width: 85px;
  margin-right: 20px;
}

.variant-table .ui-spinner, #basket-window .ui-spinner, #basket-products .ui-spinner {
  width: 65px;
  height: auto;
  margin-right: 0px;
}

#basket-window .ui-spinner input.spinner, .variant-table .ui-spinner input.spinner, #basket-products .ui-spinner input.spinner, #table-buy-item .ui-spinner input.spinner {
  width: 100%;
  outline: 0;
  padding: 11px 16px;
}

.variant-table .ui-spinner input.spinner {
  padding: 6px 16px;
}

#basket-products .ui-spinner input.spinner {
  padding: 7px 16px;
  font-size: 1.1em;
}

.detail-info-bottom .btn-blue {
  padding: 17px 10px;
  width: calc(100% - 105px);
  max-width: 275px;
  display: block;
  float: left;
}
.detail-info-bottom .icon {
  font-size: 20px;
  margin-right: 20px;
  font-weight: 300;
}

.detail-text {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .detail-info {
    margin-bottom: 30px;
  }

  .detail-info-bottom .num {
    margin-right: 10px;
  }
  .detail-info-bottom .btn-blue {
    padding: 17px 5px;
    width: calc(100% - 95px);
  }
  .detail-info-bottom .icon {
    font-size: 18px;
    margin-right: 5px;
  }
}
/* end detail-images */
#hp {
  margin: 0;
  padding: 0;
  background: none;
}

#hp-cols {
  width: 100%;
}
#hp-cols .hp-box {
  display: block;
  position: relative;
  padding: 0;
  background: center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
#hp-cols .box-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px 55px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#hp-cols .box-label .label-text {
  font-family: "ABUS Fago Pro";
  font-weight: 900;
  font-style: normal;
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  color: #FFF;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0px 0px 2px black;
}
#hp-cols .box-label .label-text:after {
  display: block;
  margin: 13px auto 0;
  width: 60px;
  height: 2px;
  content: " ";
  background: #D40828;
}
#hp-cols .box-label .box-button {
  display: block;
  width: 100%;
  max-height: 0;
  opacity: 0;
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-transition: margin-top 0.25s, max-height 0.25s, opacity 0.25s ease-in-out;
  transition: margin-top 0.25s, max-height 0.25s, opacity 0.25s ease-in-out;
}
#hp-cols .hp-box:hover .box-button {
  opacity: 1 !important;
}
#hp-cols .box-label .button {
  font-family: "ABUS Fago Pro";
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 10px 0 0 0;
  width: 100%;
  max-width: 220px;
  padding: 11px 32px 9px;
  border: 3px solid #D40828;
  background: transparent;
  color: #D40828;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: color 0.25s, background-color 0.25s, border-color 0.25s ease-in-out;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s ease-in-out;
  will-change: color, background-color, border-color;
}
#hp-cols .box-label .button:hover {
  background-color: #D40828;
  color: #FFF;
}

@media (min-width: 768px) {
  #hp-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    height: 100vh;
  }
  #hp-cols img {
    display: none;
  }
  #hp-cols .hp-box {
    margin-top: 0;
    padding-bottom: 100vh;
  }
  #hp-cols .box-label {
    padding: 0 30px 40px;
  }
  #hp-cols .hp-box:hover .box-label {
    padding-bottom: 80px !important;
  }

  .box-cyklo {
    background-image: url("/images/abus/hp-cyklo-h.jpg") !important;
  }

  .box-domov {
    background-image: url("/images/abus/hp-domov-h.jpg") !important;
  }

  .box-zakaznici {
    background-image: url("/images/abus/hp-zakaznici-h.jpg") !important;
  }
}
@media (min-width: 992px) {
  #hp-cols .box-label .label-text {
    font-size: 40px;
  }
}
#hp-logo {
  position: absolute;
  left: 15px;
  left: calc(50% - 52px);
  top: 15px;
  z-index: 10;
}
#hp-logo img {
  width: 104px;
}

@media (min-width: 768px) {
  #hp-logo {
    top: 40px;
    left: calc(2.5% + 26px);
  }
  #hp-logo img {
    width: 128px;
  }
}
/*
@media screen and (min-width: 961px)
.top-bar--basic .top-bar__logo {
    width: 128px;
}

.top-bar--basic .top-bar__logo {
    width: 104px;
}
@media screen and (min-width: 1024px)
.top-bar__logo {
    margin-left: calc(2.5% + 26px);
}
*/
/* varianty */
.variant-table {
  margin-top: 30px;
}
.variant-table .cat-table-inputs {
  /*width: 245px;*/
}
.variant-table .cat-table-inputs .btn-add {
  /*width: 170px;*/
  /*text-align: left;*/
  /*padding-left: 18px;*/
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  float: none;
  margin-right: 0;
}
.variant-table .cat-table-inputs .btn-add i {
  /*margin-right: 10px;*/
  font-size: 18px;
  display: inline-block;
  float: none;
}
.variant-table .cat-table-inputs .cat-table-inputs-wrap {
  width: 100%;
}
.variant-table .cat-table-inputs input.num {
  display: inline-block;
  float: none;
}
.variant-table table td img {
  max-width: 45px;
  max-height: 45px;
  margin-right: 30px;
}
.variant-table h2 {
  text-align: left;
  margin: 0;
  margin-bottom: 20px;
}

.btn-blue.variant .icon {
  margin-right: 0;
  margin-left: 10px;
  font-weight: 700;
  font-size: 18px;
}

.variant-row td:first-child i {
  width: 30px;
  margin-right: 40px;
  padding-left: 15px;
  font-size: 24px;
}
.variant-row td:last-child {
  text-align: right;
  padding-right: 0 !important;
}
.variant-row .btn-add {
  width: 125px;
  height: 35px;
  border-radius: 4px;
  background-color: #002f5c;
  text-align: center;
  display: inline-block;
  float: none;
  margin-right: 0px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  text-transform: uppercase;
}
.variant-row .btn-add i {
  font-size: 16px;
  margin-left: 5px;
  transform: rotate(0deg);
}
.variant-row .btn-add.collapsed i {
  transform: rotate(-90deg);
}

.variant-row-wrap > td:first-child {
  padding-right: 0 !important;
  border-bottom: none;
  background-color: #f8f8f8;
}
.variant-row-wrap > td:first-child .table {
  background: none;
}
.variant-row-wrap > td:first-child .table td {
  background: none;
}

/* end varianty  */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-nav .dropdown-menu::before {
    right: 30px;
    left: auto;
  }
}
@media (max-width: 767px) {
  .navbar-nav .dropdown-menu::before {
    display: none;
  }
  .navbar-nav .dropdown-menu > li > a:focus, .navbar-nav .dropdown-menu > li > a:hover {
    background: none;
  }
}
#vendors-map {
  height: 600px;
}

#basket-addresses-switch input[type=checkbox] + label::before {
  color: #002f5c;
  content: "\f14a";
  font-weight: 900;
}
#basket-addresses-switch input[type=checkbox]:checked + label::before {
  color: #e2e8f0;
  font-weight: 200;
  content: "\f0c8";
}
#basket-addresses-switch p {
  font-size: 14px;
}

#basket-gdpr-box {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  #abusSlideshow .modal-dialog {
    width: 900px;
  }
}
@media (min-width: 1200px) {
  #abusSlideshow .modal-dialog {
    width: 1006px;
  }
}
#abusSlideshow .modal-body p {
  margin-bottom: 15px;
}
#abusSlideshow .modal-body p:last-child {
  margin-bottom: 0;
}

.bold {
  font-weight: 700;
}

@media (min-width: 768px) {
  .ui-dialog {
    width: 500px !important;
  }
}
@media (min-width: 992px) {
  .ui-dialog {
    width: 600px !important;
  }
}
.avail {
  font-size: 14px;
}

.avail-available {
  color: green;
}

.avail-unavailable {
  color: red;
}

.avail-available_supplier {
  color: orange;
}

.fa-badge-percent.red {
  color: red;
}

.col-moc {
  min-width: 115px;
}

.tooltip-ster {
  cursor: help;
}

.vendor-logo {
  min-width: 110px;
}

.vendor-web, .vendor-email {
  min-width: 100px;
}

#basket-window .col-xs-2.col-sm-1 {
  padding-top: 10px;
}
#basket-window .basket-window-remove {
  font-size: 20px;
}

.cat-5 a {
  color: #dc0814;
}

#invoice-list table {
  width: 100%;
}
#invoice-list table th, #invoice-list table td {
  padding: 5px;
}

#invoice-product-list {
  clear: both;
  padding-top: 30px;
}
#invoice-product-list table {
  width: 100%;
}
#invoice-product-list table th, #invoice-product-list table td {
  padding: 5px;
}

.invoice-buttons {
  list-style: none;
  margin: 0;
}
.invoice-buttons li {
  float: left;
  margin-left: 20px;
}
.invoice-buttons li:first-child {
  margin-left: 0;
}
.invoice-buttons .btn-blue {
  padding: 17px 25px;
}

.vyprodej .btn-add {
  background-color: orange;
}

.filter-block {
  display: flex;
  margin-bottom: 20px;
  position: relative;
  align-items: center;
}

#availability-filter {
  margin-right: 30px;
}

.filter-block strong {
  margin-right: 10px;
  color: #002f5c;
}

.container-filter-wrap {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  align-items: center;
}

.styled-select {
  width: 200px;
  overflow: hidden;
  position: relative;
  height: 40px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #404040;
  border: none;
  border-radius: 4px;
  background-color: #e2e8f0;
  box-shadow: none;
}
.styled-select:After {
  font-size: 16px;
  margin-left: 5px;
  content: "\f0d7";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  color: #002f5c;
}
.styled-select select {
  padding-left: 20px;
  padding-right: 30px;
  width: 100%;
  height: 3.6rem;
  border: none;
  background-color: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/*  cookies */
.show--consent:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  opacity: 0.5;
  z-index: 1200;
}

#cm.box.center {
  bottom: 10%;
}

#cc_div #cm .close-cookie {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 0;
  font-size: 23px;
}

#cc_div #cm .close-cookie:before, #cc_div #cm .close-cookie:after {
  content: "";
  position: absolute;
  left: 0.82em;
  top: 0.58em;
  height: 0.6em;
  width: 1.5px;
  background: #444d53;
  background: var(--cc-btn-secondary-text);
  transform: rotate(45deg);
  border-radius: 1em;
  margin: 0 auto;
}

#cc_div #cm .close-cookie:after {
  transform: rotate(-45deg);
}

#c-bns #c-s-bn {
  display: none;
}

.cookie-link {
  background: none;
  border: none;
  padding: 0 3px;
  color: #fff;
}

#c-bns button:first-child, #s-bns button:first-child {
  background: #002f5c;
  color: #fff;
}

#c-bns button:first-child:hover, #s-bns button:first-child:hover {
  background: #002f5c;
}

.cc_div .c-bn {
  background: #f2f2f2;
}

#s-bl .c-bl.b-ex {
  background: #f2f2f2;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg {
  background: #34d762;
}

.cookie-page h2 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.cookie-page h4 {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

.cookie-table {
  margin-bottom: 50px;
}

#s-bns #s-sv-bn {
  background: #002f5c;
  color: #fff;
}

#s-bns #s-all-bn {
  background: #f2f2f2;
  color: #40505a;
}
#s-bns #s-all-bn:hover {
  background: #d8e0e6;
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro {
  opacity: 0.3;
}

.cookie-table table {
  width: 100%;
}
.cookie-table table td {
  padding: 10px;
  width: 25%;
  border-bottom: 1px solid #e7e7e7;
}
.cookie-table table th {
  background: #e7e7e7;
  padding: 10px;
}

.cookie-page {
  margin-top: 30px;
}

@media (max-width: 767px) {
  #cm, #cm.cloud, #cm.left, #cm.right {
    padding: 10px !important;
  }

  #c-txt {
    font-size: 10px;
  }

  .cc_div #c-bns {
    margin-top: 10px;
  }

  .cc_div .c-bn {
    padding: 8px 10px;
  }

  .cc_div #c-bns button {
    margin: 2px;
  }

  #cm.box, #cm.cloud {
    left: 10px;
    right: 10px;
  }

  #cm.bottom {
    bottom: 10px;
  }
}

/*# sourceMappingURL=frontend.css.map */
