/*=== Reuseable CSS ===*/

body {
  font-size: 14px;
  font-family: din-regular;
}

strong,
b {
  font-weight: normal;
  font-family: din-bold;
}

.dif-font {
  font-family: vidaloka-regular;
}

a {
  color: #000;
}

a:hover,
a:focus {
  color: #cf0a2c;
}

img {
  max-width: 100%;
}

/*--- List content ---*/

ul {
  padding-left: 20px;
}

ul.lower-alpha {
  list-style-type: lower-alpha;
}

ul.text-spacing,
ol.text-spacing {
  padding-left: 15px;
}

ul.text-spacing li,
ol.text-spacing li {
  padding-left: 30px;
}

.list-separator li:not(:last-child):after {
  content: "";
  display: inline-block;
  height: 10px;
  width: 1px;
  background: black;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.list-checked li {
  padding-left: 35px;
}

.list-checked li:before {
  content: "\f00c";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 0.5rem;
  color: #cf0a2c;
  margin-left: -20px;
}

.list-plus li {
  padding-left: 35px;
}

.list-plus li:before {
  content: "\f067";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 0.5rem;
  margin-left: -20px;
}

/*--- Forms ---*/

label {
  margin-bottom: 0.5rem;
}

.form-control {
  font-size: 1em;
  border-radius: 5px;
  font-family: din-regular;
  border: 1px solid #cacaca;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.form-control:hover,
.form-control:focus {
  background: rgba(255, 255, 255, 0.8);
}

.select-wrapper:before {
  content: "\f107";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  color: grey;
  right: 30px;
  margin-top: 12px;
}

select.custom-select {
  padding-right: 2.75rem;
  height: calc(2.05rem + 2px) !important;
  -webkit-appearance: none;
  appearance: none;
}

select:hover,
select:focus {
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center !important;
  background-size: 8px !important;
}

select.form-control:not([size]):not([multiple]) {
  -webkit-appearance: none;
  transition: unset;
}


/*--- Upload File input ---*/

.uploadfile {
  padding: 1rem;
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: -o-calc(100% - 30px);
  width: calc(100% - 30px);
}

.uploadfile span {
  display: block;
  float: left;
}

.uploadfile .label {
  background: transparent;
  padding: 3rem 0;
  font-size: 1em;
  color: #414201;
  width: 100%;
  border: 2px dashed #eee;
}

/*--- Color ---*/

.color-black {
  color: #000;
}

.color-white {
  color: #fff;
}

.color-grey {
  color: darkgrey;
}

.color-yellow {
  color: #FFE035;
}

.color-red {
  color: #cf0a2c;
}

.color-blue {
  color: #28a8e3;
}

.color-lightgreen {
  color: #93c524;
}

.color-lightblue {
  color: #95e7fb;
}

.color-lightred {
  color: #cf0a2c;
}

/*--- Background ---*/

.background-black {
  background: #000;
}

.background-white {
  background: #fff;
}

.background-lightgrey {
  background: #f5f5f5;
}

.background-grey {
  background: darkgrey;
}

.background-yellow {
  background: #FFE035;
}

.background-red {
  background: #cf0a2c;
}

.background-blue {
  background: #28a8e3;
}

.background-lightgreen {
  background: #93c524;
}

.background-lightblue {
  background: #95e7fb;
}

.background-lightred {
  background: #cf0a2c;
}

/*--- Border ---*/

.borderbot-grey {
  border-bottom: 1px solid grey;
}

/*--- Breadcrumb ---*/

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f105";
  padding-right: 1rem;
  padding-left: 1rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 1rem 0;
}

.breadcrumb-item {
  float: none;
  display: inline-block;
  color: #636c72 !important;
}

.breadcrumb-item.active {
  color: #cf0a2c !important;
  font-family: din-bold;
}

/*--- Tables ---*/

.table thead th {
  font-weight: normal;
  border: none;
  font-size: 12px;
  background: #f1f2f2;
  text-align: center;
}

.table thead th:last-child {
  border-right: none;
}

.table td {
  font-size: 12px;
  vertical-align: middle;
  text-align: center;
}

.table td:last-child {
  border-right: none;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: white;
}

.table-striped tbody tr:nth-of-type(even) {
  background: #EEFAFF;
}

.table tbody tr td:nth-child(1),
.table tbody tr td:nth-child(2) {
  font-family: din-bold;
}

.table td.delete {
  font-size: 18px !important;
  color: #ccc;
}

.table td.delete:hover,
.table td.delete:focus {
  color: #00ADEE;
}

/*--- Thumbnail Plugin ---*/

.thumb-items-border {
  border-right: 1px solid #00ADEE;
}

.thumb-items-border:last-child {
  border-right: none;
}

.thumb-items-border-2 {
  border-right: 1px solid #BEBEC0;
  border-bottom: 1px solid #BEBEC0;
  text-align: right;
}

.thumb-items-border-2:before {
  content: "\f1db";
  background: #F1F2F2;
  position: absolute;
  padding: 5px;
  bottom: -12px;
  left: -11.5px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 2;
  color: #BEBEC0;
}

.thumb-items-border-2:after {
  content: "\f1db";
  background: #F1F2F2;
  position: absolute;
  padding: 5px;
  bottom: -12px;
  right: -11.5px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 2;
  color: #BEBEC0;
}

.thumb-items-border-3 {
  border-right: 1px solid #BEBEC0;
  border-bottom: 1px solid #BEBEC0;
}

.thumb-items-border-3:before {
  content: "\f1db";
  background: #fff;
  position: absolute;
  padding: 5px;
  bottom: -12px;
  left: -11.5px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 2;
  color: #BEBEC0;
}

.thumb-items-border-3:after {
  content: "\f1db";
  background: #fff;
  position: absolute;
  padding: 5px;
  bottom: -12px;
  right: -11.5px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 2;
  color: #BEBEC0;
}

.thumb-items-border-3-grey {
  border-right: 1px solid #BEBEC0;
  border-bottom: 1px solid #BEBEC0;
}

.thumb-items-border-3-grey:before {
  content: "\f1db";
  background: #F1F2F2;
  position: absolute;
  padding: 5px;
  bottom: -12px;
  left: -11.5px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 2;
  color: #BEBEC0;
}

.thumb-items-border-3-grey:after {
  content: "\f1db";
  background: #F1F2F2;
  position: absolute;
  padding: 5px;
  bottom: -12px;
  right: -11.5px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 2;
  color: #BEBEC0;
}

/*--- Thumbnail Hover ---*/

.thumb-hover-white {}

.thumb-hover-white .overlay {
  border: 0.5rem solid transparent;
}

.thumb-hover-white .overlay-inside {
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
}

.thumb-hover-white .item .overlay {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.thumb-hover-white .item:hover .overlay {
  opacity: 1;
}

.thumb-hover-white .item .display {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thumb-hover-white .item:hover .display {
  opacity: 0;
}

.thumb-hover-white.no-carousel .item {
  margin-bottom: 1rem;
}

.thumb-hover-white.no-carousel .overlay {
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: -o-calc(100% - 30px);
  width: calc(100% - 30px);
  height: -webkit-calc(100% - 1rem);
  height: -moz-calc(100% - 1rem);
  height: -o-calc(100% - 1rem);
  height: calc(100% - 1rem);
}

.thumb-hover-white .display-inside p {
  margin-bottom: 0;
}

/**/

.thumb-hover {}

.thumb-hover .overlay {
  border: 0.5rem solid transparent;
}

.thumb-hover .overlay-inside {
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
}

.thumb-hover .item .overlay {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(237, 46, 36, 0.8);
  border-color: white;
  color: white;
}

.thumb-hover .item:hover .overlay {
  opacity: 1;
}

.thumb-hover .item .display {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thumb-hover .item:hover .display {
  opacity: 0;
}

.thumb-hover.no-carousel .item {
  margin-bottom: 1rem;
}

.thumb-hover.no-carousel .overlay {
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: -o-calc(100% - 30px);
  width: calc(100% - 30px);
  height: -webkit-calc(100% - 1rem);
  height: -moz-calc(100% - 1rem);
  height: -o-calc(100% - 1rem);
  height: calc(100% - 1rem);
}

.thumb-hover .display-inside p {
  margin-bottom: 0;
}

.no-hovereffect .item:hover .display {
  opacity: 1 !important;
}

.no-hovereffect .item .overlay,
.no-hovereffect .item:hover .overlay {
  opacity: 0 !important;
}

.striped-white:before {
  content: "";
  height: 3px;
  width: 20%;
  background: white;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/*--- Filter ---*/

.filter .custom-select {}

.filter .custom-select:hover,
.filter .custom-select:focus {
  border-color: #0F2E6E;
}

.filter li.active .btn-filter {
  background: #E8C31D;
  border-color: #E8C31D;
  color: #0F2E6E;
}

.filter .btn-filter {
  padding: 8px !important;
  background: #cf0a2c;
  color: #fff;
  border-radius: 50px;
  max-width: 100%;
  border-color: #cf0a2c;
  font-family: din-regular;
}

.filter li:first-child:before {
  display: none;
}

.filter li .form-group {
  margin-left: 10px;
}

.tile {
  display: block;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.scale-anm {
  display: none;
}

/*=== Diagonal ===*/

.diagonal {
  height: 200px;
  width: 100%;
  position: relative;
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
  overflow: hidden;
}

.diagonal .wrapper {
  -webkit-transform: skewX(15deg);
  transform: skewX(15deg);
  width: 140%;
  height: 100%;
  position: absolute;
  left: -20%;
  top: 0;
}

.diagonal .wrapper .image-nondiagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: center/cover no-repeat;
}

/*=== Button Styling ===*/

.btn {
  font-size: 14px;
}

.btn-red {
  background: #cf0a2c;
  color: #fff;
  padding: 6px 25px;
  max-width: 100%;
  border-color: #cf0a2c;
  font-family: din-regular !important;
}

.btn-red:hover,
.btn-red:focus {
  background: #fff;
  color: #cf0a2c !important;
  border-color: #cf0a2c;
}

.btn-redbordered {
  background: transparent;
  color: #cf0a2c;
  padding: 6px 25px;
  max-width: 100%;
  border-color: #cf0a2c;
  font-family: din-regular !important;
}

.btn-redbordered:hover,
.btn-redbordered:focus {
  background: #cf0a2c;
  color: #fff !important;
  border-color: #cf0a2c;
}

.btn-green {
  background: #37B44A;
  color: #fff;
  padding: 6px 25px;
  max-width: 100%;
  border-color: #37B44A;
  font-family: din-regular !important;
}

.btn-green:hover,
.btn-green:focus {
  background: #fff;
  color: #37B44A !important;
  border-color: #37B44A;
}

.btn-white {
  background: #fff;
  color: #cf0a2c;
  padding: 6px 25px;
  max-width: 100%;
  border-color: #fff;
  font-family: din-regular !important;
}

.btn-white:hover,
.btn-white:focus {
  background: #fff;
  color: #cf0a2c !important;
  border-color: #cf0a2c;
}

.btn-grey {
  background: #A9A9A9;
  color: #000;
  padding: 6px 0;
  max-width: 100%;
  border-color: #A9A9A9;
  font-family: din-regular !important;
}

.btn-grey:hover,
.btn-grey:focus {
  background: #fff;
  color: #cf0a2c !important;
  border-color: #cf0a2c;
}

/*=== Navigation ===*/

/*--- Navbar Brand ---*/

.navbar-brand img {
  height: 55px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;

}

.navbar-brand {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block;
}

/*--- Top Menu ---*/

.top-menu {
  background: transparent;
  text-align: center;
  height: 86px;
}

.top-menu .navbar-brand {
  margin: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.top-menu img {
  height: 70px;
}

/*--- Main Menu ---*/

.main-menu {
  background: rgba(207, 10, 27, 0.8);
  padding: 0;
}

.main-menu .navbar-nav li {
  margin: 0;
}

.main-menu li a {
  font-family: vidaloka-regular;
}

.main-menu .center-menu .nav-item .nav-link {
  padding: 0rem 0.75rem;
  margin: 1.2rem 0;
  line-height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  color: black;
  font-size: 16px;
}

.main-menu .center-menu .nav-item:not(:last-child) .nav-link {
  border-right: 1px solid black;
}

.main-menu .center-menu .nav-item.active .nav-link {
  color: white;
}

.main-menu .center-menu .nav-item:hover .nav-link,
.main-menu .center-menu .nav-item:focus .nav-link {
  color: white;
}

.main-menu .dropdown-menu {
  left: -60%;
  text-align: center;
  font-size: 14px;
  border: none;
  border-radius: 0;
  margin-top: 0px;
  background: rgba(180, 28, 49, 0.9);
  padding: 0;
}

.main-menu .dropdown-item {
  padding: 7px 3rem;
}

.main-menu .dropdown-item.active {
  color: white;
  background: transparent !important;
}

.main-menu .dropdown-item:hover,
.main-menu .dropdown-item:focus {
  background: transparent;
  color: white;
}

.main-menu .dropdown-toggle::after {
  display: none;
}

/*--- Left Main Menu ---*/

.left-mainmenu {
  position: absolute;
  right: 80px;
  top: 8px;
  bottom: 0;
}

.left-mainmenu li a {
  color: white;
}

.left-mainmenu li a:hover,
.left-mainmenu li a:focus {
  color: white;
}

.left-mainmenu ul,
.left-mainmenu li {
  margin-bottom: 0;
}

.left-mainmenu .cart {
  color: white;
  background: black;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-right: 5px;
}

.left-mainmenu .cart a i {
  font-size: 20px;
}

.left-mainmenu .dropdown-menu {
  left: -73%;
}

/*=== Owl Carousel ===*/

/*--- Sync carousel ---*/

#sync2 {
  margin-bottom: 1rem;
}

#sync1 .item img {
  max-height: 300px;
  width: auto;
  margin: 0 auto;
  height: 100%;
}

#sync2 .item img {
  max-height: 100px;
  width: auto;
  height: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}

#sync1 .item {
  margin: 5px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  padding: 20px;
}

#sync2 .item {
  margin: 5px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#sync2 .item h1 {
  font-size: 18px;
}

#sync2 .current .item {
  background: #f5f5f5;
}

.owl-theme .owl-nav {
  /*default owl-theme theme reset .disabled:hover links */
}

.owl-theme .owl-nav [class*='owl-'] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}

#sync1.owl-theme {
  position: relative;
}

#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width: 1rem;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}

#sync1.owl-theme .owl-prev {
  left: 10px;
}

#sync1.owl-theme .owl-next {
  right: 10px;
}


/*--- Owl Top Banner ---*/

.owl-topbanner .title-banner {
  color: white;
  margin-bottom: 3rem;
}

.owl-topbanner .title-banner p {
  margin-bottom:
}

.disabled {
  opacity: 0.3 !important;
}

.owl-thumb1 .owl-nav,
.owl-thumb2 .owl-nav,
.owl-thumb3 .owl-nav,
.owl-thumb4 .owl-nav,
.owl-thumb5 .owl-nav {}

.owl-thumb1 .owl-prev,
.owl-thumb2 .owl-prev,
.owl-thumb3 .owl-prev,
.owl-thumb4 .owl-prev,
.owl-thumb5 .owl-prev {
  color: ;
  font-size: 30px;
  padding: 2px 13px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
}

.owl-thumb1 .owl-next,
.owl-thumb2 .owl-next,
.owl-thumb3 .owl-next,
.owl-thumb4 .owl-next,
.owl-thumb5 .owl-next {
  color: ;
  font-size: 30px;
  padding: 2px 16px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  top: calc(50% - 20px);
  right: 0;
}

.owl-thumb1 .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center !Important;
}

.owl-topbanner .owl-prev,
.owl-topbanner .owl-next {
  color: #fff;
  font-size: 30px;
  padding: 10px;
  display: block;
  width: 40px;
  height: 40px;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  border: 1px solid transparent;
  background: transparent;
  padding: 3px 5px;
  display: inline-block;
  position: absolute;
  top: -webkit-calc(50% - 20px);
  top: -moz-calc(50% - 20px);
  top: -o-calc(50% - 20px);
  top: calc(50% - 20px);
}

.owl-topbanner .owl-prev {
  left: 15px;
}

.owl-topbanner .owl-next {
  right: 15px;
}

.owl-theme .owl-controls .owl-page {
  display: inline-block;
}

.owl-theme .owl-controls .owl-page span {
  background: none repeat scroll 0 0 #869791;
  border-radius: 20px;
  display: block;
  height: 12px;
  margin: 5px 7px;
  opacity: 0.5;
  width: 12px;
}

.owl-dots {
  margin: 0.5rem 0;
  text-align: right !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #cf0a2c;
  border-color: #cf0a2c;
}

.owl-theme .owl-dots .owl-dot span {
  border: 1px solid white;
  background: white;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  width: 20px;
  height: 20px;
}

/*=== Superslides ===*/

#slides {
  height: 100vh !Important;
}

#slides img {
  height: auto !important;
  width: calc(100%) !important;
  -webkit-width: calc(100%) !important;
  -moz-width: calc(100%) !important;
  -o-width: calc(100%) !important;
  left: 0 !important;
  top: calc(0% - 10%) !important;
}

.slides-navigation .prev {
  color: white;
  font-size: 40px;
  display: block;
  width: 50px;
  height: 50px;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  position: absolute;
  bottom: 100px;
  left: 30px !important;
  top: 50%;
  background: #242021;
  padding: 5px;
  border-radius: 100%;
  padding-right: 10px;
}

.slides-navigation .next {
  color: white;
  font-size: 40px;
  display: block;
  width: 50px;
  height: 50px;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  position: absolute;
  bottom: 100px;
  right: 30px !important;
  top: 50%;
  background: #242021;
  padding: 5px;
  border-radius: 100%;
  padding-left: 10px;
}

/*=== Flexslider ===*/

.flex-prev {
  color: #0F2E6E !important;
  font-size: 30px;
  display: block;
  width: 40px !important;
  height: 40px !important;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  text-align: center !important;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  border: 1px solid #0F2E6E;
  background: transparent;
  padding: 3px 5px;
  border-radius: 100%;
  padding-right: 8px;
}

.flex-next {
  color: #0F2E6E !important;
  font-size: 30px;
  display: block;
  width: 40px !important;
  height: 40px !important;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  text-align: center !important;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  border: 1px solid #0F2E6E;
  background: transparent;
  padding: 3px 5px;
  border-radius: 100%;
  padding-left: 8px;
}

.flex-direction-nav a:before {
  display: none !Important;
}

.flex-direction-nav a i {
  font-size: 30px !important;
}

/*=== Homepage ===*/

.scroll-down {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: white !Important;
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.main-content {
  padding: 5rem 0;
}

.desc-content {
  margin-bottom: 3rem;
}

.desc-content.without-margin {
  margin-bottom: 0;
}

.desc-content h1,
.desc-content h2,
.desc-content h3,
.desc-content h4,
.desc-content h5,
.desc-content h6 {
  color: #cf0a2c;
}

.desc-content.separator h1:after,
.desc-content.separator h2:after,
.desc-content.separator h3:after,
.desc-content.separator h4:after,
.desc-content.separator h5:after,
.desc-content.separator h6:after {
  content: "~";
  display: block;
  font-size: 2rem;
}

.read-more {
  font-family: din-bold;
}

.read-more:after {
  content: "...";
  display: inline-block;
}

.button {
  margin-top: 2rem;
}

.button .btn {
  width: 100%;
}

.overflow-box {
  background: #cf0a2c;
  text-align: right;
  color: white;
  padding: 4rem 4rem;
  margin-bottom: 1rem;
  position: absolute;
  width: calc(100% - 30px);
  bottom: 0;
}

.overflow-box h5:not(:last-child) {
  margin-bottom: 1.5rem;
}

.overflow-box h5:last-child:after {
  content: "~";
  display: block;
  font-size: 2rem;
  margin-top: 1.5rem;
}

.filtering {
  background: #f5f5f5;
  padding: 1rem;
  margin-bottom: 1rem;
}

.filtering .title {
  color: #cf0a2c;
  margin-bottom: 1rem;
}

.search-box:after {
  content: "\f002";
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  right: 2.5rem;
  margin-top: -1.6rem;
}

.search-box input {
  padding-right: 2rem;
  background: #e0e0e0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.check-box,
.sort-product {
  border-top: 1px solid #cf0a2c;
  border-bottom: 1px solid #cf0a2c;
  padding: 1rem 0;
  max-height: 210px;
  overflow: auto;
}

.check-box label {
  display: block;
}

.sort-product ul {
  margin-bottom: 0;
}

.sort-product li:not(:last-child) p {}

.sort-product li:last-child p {
  margin-bottom: 0;
}

.thumb-heading {
  border-bottom: 1px solid #cf0a2c;
  margin-bottom: 1rem;
}

.thumb-heading .title {
  color: #cf0a2c;
  font-family: din-bold;
}

.thumb-heading li {
  line-height: 33px;
}

.thumb-heading .filtering-info {
  margin: 1rem 0 1.5rem;
}

.thumb-heading .filtering-info a {
  background: #f5f5f5;
  padding: 0.5rem;
}

.thumb-heading .filtering-info a:after {
  content: "\f00d";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 5px;
}

.thumb-heading .form-inline label {
  margin: 0;
}

.thumb-heading .form-control {
  margin: 0 10px;
}

.thumb-heading select::-ms-expand {
  display: none;
}



.thumb-item {
  text-align: center;
  margin-bottom: 1rem;
}

.thumb-item .image {
  margin-bottom: 1rem;
}

.thumb-item .image img {
  width: 100%;
}

.thumb-item .name p {
  font-family: vidaloka-regular;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

#accordion .card {
  margin-bottom: 1rem;
  border-radius: 0;
  border-color: #f5f5f5;
}

#accordion .card-header {
  background: #f5f5f5;
  border-bottom: none;
  padding: 0;
}

#accordion .card-header a {
  color: #cf0a2c;
  font-size: 16px;
  font-family: din-bold;
  text-shadow: none;
  font-weight: normal;
  text-transform: uppercase;
  display: block;
  padding: 1.25rem;
}

#accordion .card-header a:after {
  content: "\f106";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  color: white;
  background: #cf0a2c;
  padding: 18.5px;
  top: 0;
  font-size: 20px;
}

#accordion .card-header a.collapsed:after {
  content: "\f107";
}

.line {
  width: 100%;
  height: 1px;
  background: #cf0a2c;
}

.line:before,
.line:after {
  width: 10px;
  height: 10px;
  background: #cf0a2c;
  content: "";
  display: inline-block;
  border-radius: 100%;
  margin-top: -5px;
}

.line:after {
  float: right;
}


/*--- Banner ---*/

#banner {
  margin-top: -140px;
}

/*--- Section Home ---*/

#home-about {
  text-align: center;
}

#home-about img {
  width: 100%;
}
#home-about video {
  height: auto;
  width: 100%;
}

#home-catalog {
  text-align: center;
}

.catalog-tabs .nav-tabs {
  border-bottom: 0;
}

.catalog-tabs .nav-tabs .nav-link {
  border: 1px solid #cf0a2c;
  border-radius: 0;
  background: white;
  color: #cf0a2c;
  font-size: 1rem;
}

.catalog-tabs .nav-item:first-child a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.catalog-tabs .nav-item:last-child a {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.catalog-tabs .nav-link.active,
.catalog-tabs .nav-link:hover,
.catalog-tabs .nav-link:focus {
  background: #cf0a2c;
  color: white;
  border-color: #cf0a2c;
}

.catalog-tabs .tab-content {
  padding: 3rem 0 0;
}

.catalog-tabs .tab-content a {
  margin-bottom: 1rem;
  display: block;
}

.catalog-tabs .tab-content a img {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.catalog-tabs .tab-content a img:hover,
.catalog-tabs .tab-content a img:focus {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

#home-partnership {
  text-align: center;
}

#home-partnership .owl-thumb4 {
  padding: 2rem 4rem;
  border: 2px solid #f5f5f5;
}

#home-article .desc-content {
  text-align: center;
}

.news-thumb {
  margin: 1.5rem 0;
}

.news-thumb .image {
  margin-bottom: 1rem;
}

.news-thumb .image img {
  width: 100%;
}

.news-thumb .content {
  margin-bottom: 1.5rem;
}

.news-thumb .date {
  text-align: center;
  font-family: din-bold;
  color: #cf0a2c;
}

.news-thumb .title h1,
.news-thumb .title h2,
.news-thumb .title h3,
.news-thumb .title h4,
.news-thumb .title h5,
.news-thumb .title h6 {
  font-family: din-bold;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.news-thumb .title p {
  border-top: 1px solid #9E9E9E;
  margin-bottom: 0;
  padding-top: 0.5rem;
}

.news-thumb .text {
  margin-top: 1rem;
}

/*=== Contact ===*/

.contact-form {
  padding: 2rem;
  background: #f5f5f5;
}

.contact-form label {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #cf0a2c;
}

.contact-form label:before {
  content: "";
  height: 3px;
  width: 30px;
  background: #cf0a2c;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 3px;
  vertical-align: middle;
}

/*=== News ===*/

.news-container .news-thumb {
  background: #f5f5f5;
  padding: 1.5rem;
  margin: 0 0 1rem;
}

.side-tabs {
  background: #f5f5f5;
  padding: 1rem;
  margin-bottom: 1rem;
}

.side-tabs p {
  color: #cf0a2c;
  font-size: 1.2rem;
}

.side-tabs ul {
  list-style-type: none;
}

.side-tabs li a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-left: -20px;
  margin-bottom: 1rem;
}

.side-tabs li a:before {
  content: "\f111";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-size: 8px;
  margin-right: 15px;
}

/*=== Career ===*/

.career-content {
  padding: 1.5rem;
  background: #f5f5f5;
  margin-bottom: 1rem;
}

#career .search-box:after {
  right: 1.8rem;
}

.apply-thumb {
  border: 1px solid #f5f5f5;
  margin-bottom: 1rem;
}

.apply-thumb .title {
  font-size: 16px;
  padding: 1.25rem;
  background: #f5f5f5;
  font-family: din-bold;
  color: #cf0a2c;
}

.apply-form {
  padding: 1.25rem;
}

.apply-form .notes {
  color: #cf0a2c;
}

.apply-form .form-control {
  border: 1px solid #cacaca;
  border-radius: 5px !important;
}

/*=== About ===*/

.about-content {
  padding: 1.5rem;
  background: #f5f5f5;
  margin-bottom: 1rem;
}

.list-thumb {
  margin: 2rem 0;
  text-align: center;
}

.list-thumb li:not(:last-child) {
  margin-bottom: 2rem;
}

.list-thumb img {
  margin-bottom: 1rem;
}

.list-thumb .desc-content h5:after {
  content: "";
  height: 3px;
  width: 30px;
  background: #424242;
  display: block;
  margin: 0.75rem auto 0;
}

#distributor .menu {
  background: #cf0a2c;
}

#distributor .content {
  padding: 1.5rem 2rem;
}

#distributor .tab-content {
  padding: 3rem 5rem;
  text-align: right;
}

#distributor .nav-tabs {
  border: none;
}

#distributor .nav-tabs .nav-link {
  border-radius: 0;
  border: none;
  color: white;
  padding: 1.5rem 1rem;
}

#distributor .nav-tabs .nav-link.active {
  background: #862d2c;
}

#distributor .nav-tabs .nav-link.active:before {
  content: '';
  margin: auto;
  position: absolute;
  left: -10px;
  width: 0;
  height: 0;
  border-right: 10px solid #862d2c;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
}

#distributor .tab-content li:not(:last-child) {
  margin-bottom: 1.5rem;
}

#distributor .tab-content .desc-content h5 {
  font-family: din-bold;
  text-transform: uppercase;
}

#distributor .tab-content .desc-content p {
  margin-bottom: 0;
}

.gallery-content {
  margin: 5rem 0 0;
}

.gallery-content .title {
  color: #cf0a2c;
  text-align: center;
}

.gallery-content .title:after {
  content: "~";
  display: block;
  font-size: 2rem;
}

.gallery-items .thumb {
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.gallery-items .thumb img {
  width: 100%;
}

.sponsor-content {
  margin: 5rem 0 0;
  text-align: center;
  border: 2px solid #f5f5f5;
  padding: 1.25rem;
}

.sponsor-content img {
  margin: 2rem 0;
  max-height: 200px;
}

.load-more {
  text-align: center;
  margin: 2rem 0;
}

/*=== Products ===*/

.category-list li {
  margin-bottom: 1rem;
}

.category-list .item.active {
  font-family: din-bold;
}

.category {
  border-bottom: 1px solid #cf0a2c;
  margin-bottom: 1rem;
}

.product-content .thumb-item {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  padding: 1rem;
  text-align: center;
}

.product-content .thumb-item:hover,
.product-content .thumb-item:focus {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.product-content .thumb-item a:hover,
.product-content .thumb-item a:focus {
  color: black;
}

.product-content .thumb-item .image {
  text-align: center;
}

.product-content .thumb-item .image img {
  width: auto;
  max-height: 180px;
}

.product-content .thumb-item .image {
  padding-bottom: 1rem;
  min-height: 200px;
}

.product-content .thumb-item .name p {
  color: #cf0a2c;
  margin-bottom: 0;
}

.product-content .thumb-item .desc p {
  margin-bottom: 0.5rem;
}

.product-content .thumb-item .price {
  font-family: din-bold;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f5f5f5;
}

.product-content .thumb-item .discount {
  position: absolute;
  top: 0;
  right: 30px;
  text-align: center;
  background: black;
  color: white;
  padding: 5px 10px 5px;
  width: 60px;
}

.product-content .thumb-item .discount:after {
  content: '';
  margin: auto;
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  bottom: -10px;
  border-bottom: 10px solid transparent;
  border-left: 30px solid black;
  border-right: 30px solid black;
}

.product-content .thumb-item .discount p {
  margin-bottom: 0;
}

.product-content .thumb-item .old-price {
  color: #cacaca;
  margin-right: 10px;
}

.product-content .thumb-item .old-price:after {
  width: 70px;
  height: 47px;
  content: "";
  border-bottom: 1px solid red;
  -webkit-transform: translateY(-33px) translateX(5px) rotate(-15deg);
  position: absolute;
  left: 60px;
  margin-top: -2px;
}

.detail-heading {
  margin-bottom: 1rem;
}

.detail-heading p {
  margin-bottom: 0.75rem;
  line-height: 100%;
}

.detail-heading .name {
  font-family: vidaloka-regular;
  font-size: 20px;
  color: #cf0a2c;
}

.detail-heading .desc {
  color: #cf0a2c;
}

.detail-heading .price {
  font-family: din-bold;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.detail-heading .rating {
  color: #38B54D;
  font-size: 16px;
}

.detail-action label {
  margin: 0;
  margin-bottom: 0.5rem;
}

.detail-action .form-control {
  min-width: 50px;
}

.detail-review {
  margin-top: 5rem;
}

.detail-review .nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.5rem 2rem;
}

.detail-review .nav-tabs .nav-link.active,
.detail-review .nav-tabs .nav-item.show .nav-link,
.detail-review .nav-tabs .nav-link:focus {
  color: #cf0a2c;
  border: none;
  border-bottom: 3px solid #cf0a2c;
}

.detail-review .nav-tabs .nav-link:hover {
  border: none;
  border-bottom: 3px solid #cf0a2c;
  color: black;
}

.detail-review .tab-content {
  padding: 1rem 0;
}

.more-product {
  margin-top: 3rem;
}

.more-product .thumb-item img {
  margin: 0 auto;
}

.more-product .thumb-item:hover,
.more-product .thumb-item:focus {
  box-shadow: none;
}

/*=== Login ===*/

.login#banner {
  margin-top: 0;
}

.login #banner .background-image {
  background-attachment: fixed;
}

.login-intro {
  color: white;
}

.login-container .nav-tabs .nav-link {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: #862d2c;
  color: white;
  border: none;
}

.login-container .nav-tabs .nav-link.active,
.login-container .nav-tabs .nav-item.show .nav-link,
.login-container .nav-tabs .nav-link:focus {
  background: #cf0a2c;
}

.login-container .tab-content {
  background: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.login-container .tab-pane {
  padding: 1rem;
}

.login-container .logo {
  text-align: center;
  margin: 2rem 0;
}

.login-container .form .form-control {
  border: none;
  border-bottom: 2px solid #cacaca;
  border-radius: 0;
}

/*=== Catalog ===*/

#catalog .thumb-item .image img {
  height: 200px;
  object-fit: contain;
}

/*=== Account ===*/

.account-container {
  border: 1px solid #cacaca;
}

.account-container .nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.5rem 2rem;
}

.account-container .nav-tabs .nav-link.active,
.account-container .nav-tabs .nav-item.show .nav-link,
.account-container .nav-tabs .nav-link:focus {
  color: #cf0a2c;
  border: none;
  border-bottom: 3px solid #cf0a2c;
}

.account-container .nav-tabs .nav-link:hover {
  border: none;
  border-bottom: 3px solid #cf0a2c;
  color: black;
}

.account-container .label p:after {
  content: ":";
  display: inline-block;
  float: right;
  margin-right: 1rem;
}

.account-container .label p {
  font-family: din-bold;
}

.account-container .label.with-notes p {
  margin-bottom: 0;
}

.account-container .label.with-notes {
  margin-bottom: 1rem;
}

.account-container .tab-content {
  padding: 2rem;
}

.account-password {
  border-top: 1px solid #cacaca;
  padding-top: 1rem;
}

.account-password .form-control {
  border: none;
  padding: 4px;
}

.address-thumb {
  border: 2px solid #f5f5f5;
  margin-bottom: 2rem;
}

.address-heading {
  background: #f5f5f5;
  padding: 1rem;
}

.address-heading p {
  margin-bottom: 0;
}

.address-content {
  padding: 1rem;
}

.address-content p {
  margin-bottom: 0;
}

.address-add {
  text-align: right;
}

.payment-conf input {
  border: none;
}

.logout-container,
.received-container,
.complain-container {
  text-align: center;
}

.purchase-container {
  border: 1px solid #cacaca;
}

.purchase-container .nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.5rem 2rem;
}

.purchase-container .nav-tabs .nav-link.active,
.purchase-container .nav-tabs .nav-item.show .nav-link,
.purchase-container .nav-tabs .nav-link:focus {
  color: #cf0a2c;
  border: none;
  border-bottom: 3px solid #cf0a2c;
}

.purchase-container .nav-tabs .nav-link:hover {
  border: none;
  border-bottom: 3px solid #cf0a2c;
  color: black;
}

.purchase-container .label p:after {
  content: ":";
  display: inline-block;
  float: right;
  margin-right: 1rem;
}

.purchase-container .content p {
  font-family: din-bold;
}

.purchase-container .label.with-notes p {
  margin-bottom: 0;
}

.purchase-container .label.with-notes {
  margin-bottom: 1rem;
}

.purchase-container .tab-content {
  padding: 2rem;
}

.purchase-container .confirm .btn-conf {
  background: #37B44A;
  color: white;
  border-radius: 5px;
  font-size: 12px;
  padding: 6px 25px;
  cursor: pointer;
}

.status-thumb {
  border: 2px solid #f5f5f5;
  margin-bottom: 2rem;
}

.status-heading {
  background: #f5f5f5;
  padding: 1rem;
}

.status-heading a {
  font-family: din-bold;
}

.status-heading p {
  margin-bottom: 0;
}

.status-content {
  padding: 1rem;
}

.status-content .waiting {
  color: #cf0a2c;
}

.received-container .rating {
  font-size: 2rem;
  color: #38B54D;
}

/*=== Shopping Cart ===*/

.shoppingcart-heading {
  margin-bottom: 3rem;
}

.shoppingcart-content {
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 1.5rem;
}

.shoppingcart-thumb {
  border: 1px solid #f5f5f5;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.shoppingcart-thumb .image {
  text-align: center;
  margin-bottom: 1rem;
}

.shoppingcart-thumb .image img {
  max-height: 150px;
  margin: 0 auto;
}

.shoppingcart-thumb .title {
  color: #cf0a2c;
}

.shoppingcart-thumb .delete-item a {
  font-size: 1rem;
  color: #cacaca !important;
}

.shoppingcart-thumb .price {
  font-family: din-bold;
}

.shoppingcart-thumb .quantity label {
  display: block;
}

.shoppingcart-thumb .quantity select {
  max-width: 100px;
}

.shipping-thumb {
  border: 1px solid #f5f5f5;
  margin-bottom: 1.5rem;
}

.shipping-thumb .title,
.shipping-thumb .desc {
  padding: 1.5rem;
}

.shipping-thumb .desc p {
  margin-bottom: 0;
}

.shipping-thumb .desc h6 {
  font-family: din-bold;
}

.shipping-thumb .total {
  background: #cf0a2c;
  color: white;
  text-align: center;
  padding: 35px 0;
}

.total-thumb {
  background: #f5f5f5;
  padding: 1.5rem;
}

.total-thumb h5 {
  margin-bottom: 1rem;
}

.total-thumb .total {
  border-top: 1px solid #cacaca;
  padding-top: 1rem;
  color: #cf0a2c;
}

.total-thumb .total h5 {
  margin-bottom: 0;
}

.shoppingcart-container .label p:after {
  content: ":";
  display: inline-block;
  float: right;
  margin-right: 1rem;
}

.method-thumb {
  margin-bottom: 1.5rem;
}

.method-thumb .title h6 {
  font-family: din-bold;
}

.method-thumb .content {
  font-family: din-bold;
}

.rekening {
  background: #f5f5f5;
  padding: 1.5rem;
  text-align: center;
}

.method-thumb .thumb {
  background: white;
  padding: 1.5rem;
  margin: 1rem 0;
}

.method-thumb .thumb img {
  max-height: 50px;
  margin-bottom: 1.5rem;
}

.method-thumb .thumb p {
  margin-bottom: 0;
}

/*=== Account ===*/

.account-detail {
  margin-bottom: 1rem;
}

#account .payment-conf input {
  border: 1px solid #cacaca;
}

/*=== Footer ===*/

footer {
  background: #f5f5f5;
}

/*--- Footer Menu ---*/

.footer-menu {
  padding: 3rem 0;
  text-align: center;
}

.footer-menu .logo {
  margin-bottom: 2rem;
}

.footer-menu .address {
  margin-bottom: 2rem;
}

/*--- Social Media ---*/

.socialmedia {
  margin-bottom: 2rem;
}

.socialmedia a {
  font-size: 1.5rem;
  color: #cf0a2c;
}

.socialmedia li:not(:last-child) {
  margin-right: 2rem;
}

/*--- Footer Menu ---*/

.menu {
  margin-bottom: 2rem;
}

.menu li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: black;
  border-radius: 100%;
  margin-left: 10px;
  vertical-align: middle;
}

/*--- Subscribe ---*/

.subscribe .form-control {
  width: calc(100% - 100px);
  display: inline-block;
  vertical-align: middle;
  padding: 0.75rem;
}

.btn-subscribe {
  background: #cf0a2c;
  color: white;
  border-radius: 0;
  padding: 0.2rem 1rem;
  font-size: 2rem;
  vertical-align: top;
  line-height: 2.15rem;
}

/*--- Copyright ---*/

.copyright p {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid #D5D5D5;
}

/*=== Social Media ===*/

/*=== Pagination ===*/

.page-link {
  border: none;
  padding: 0.85rem 1.2rem;
  color: black;
  background: #f2f2f2;
}

.page-link.active {
  background: #cf0a2c;
  color: white !important;
}

.page-item:first-child .page-link {
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
}

.page-item:last-child .page-link {
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
}

.page-link:hover,
.page-link:focus,
.page-item.active .page-link {
  color: white;
  background: #cf0a2c !important;
  border-color: #cf0a2c;
}

.page-next:hover,
.page-next:focus,
.page-prev:hover,
.page-prev:focus {
  border-color: #cf0a2c;
  color: white;
  background: #cf0a2c !important;
}

/*=== Back to Top ===*/

#backtop {
  display: block;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 15px;
  /* Place the button at the bottom of the page */
  right: 0px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: rgba(208, 17, 43, 0.9);
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px;
  /* Some padding */
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-radius: 0;
}

#backtop:hover {
  background-color: #cf0a2c;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.1);
}

/*=== Modal ===*/

.modal-content {
  border-radius: 1rem;
}

.modal .close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 1rem;
  color: black !important;
  opacity: 1;
}

.modal.in .modal-dialog {
  border-radius: 0px;
}

.modal.in .modal-dialog .modal-content {
  border-radius: 0px;
}

.modal.in .modal-dialog .modal-content .modal-header {
  border-radius: 0px;
  text-align: center;
}

.modal-header {
  border: none;
  text-align: center;
  font-size: 1rem;
  font-family: din-regular;
}

.modal-title-custom {
  text-align: center;
  font-family: din-bold;
  padding: 1rem 0;
}

#conf-payment input {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #cacaca;
}

#conf-payment small {
  display: block;
  text-align: right;
  margin-bottom: 0.5rem;
}

#checkout .modal-body {
  padding: 0;
}

#checkout .close {
  z-index: 1;
  height: 40px;
  width: 40px;
  background: white;
  border-radius: 100%;
  text-shadow: none;
  top: -15px;
  right: -15px;
}

#checkout .modal-title-custom {
  background: #cf0a2c;
  color: white;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  margin-bottom: 0;
}

.checkout-content {
  padding: 1.5rem;
  background: #f5f5f5;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.checkout-content .btn {
  width: 100%;
}

.checkout-content .notes {
  margin-bottom: 2rem;
}

.checkout-content .notes a {
  color: #cf0a2c;
}

.checkout-content .select-address {
  background: white;
  padding: 1rem;
  margin-bottom: 2rem;
}

.checkout-content .select-address h6 {
  font-family: din-bold;
}

.checkout-content .select-address p:not(:last-child) {
  margin-bottom: 0;
}

/*=== Loader ===*/

/* Paste this css to your style sheet file or under head tag */

/* This only works with JavaScript, 
if it's not present, don't show loader */

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/landing-page.jpg) center no-repeat;
}

.se-pre-con img {
  width: 75%;
}

.se-pre-con p {
  font-size: 22px;
}

/*=== Owl Carousel in Modal ===*/

.customNavigation a {
  position: absolute;
  top: 35;
  left: 0;
  right: auto;
  padding: 30px;
  float: left;
  font-size: 3em;
  cursor: pointer;
  z-index: 1;
}

.customNavigation a.next {
  left: auto;
  right: 0;
}

@media (min-width: 320px) {
  .customNavigation a {
    top: 20%;
  }
}

@media (min-width: 480px) {
  .customNavigation a {
    top: 25%;
  }
}

@media (min-width: 768px) {
  .customNavigation a {
    top: 30%;
  }
}

@media (min-width: 992px) {
  .customNavigation a {
    top: 35%;
  }
}

/*=== Forgot Password ===*/

#forget-form .btn {
  width: 100%;
}

.center {
  width: 150px;
  margin: 40px auto;

}
.input-group .input-number {
  width: 65px;
}

/*=== FAQ ===*/
#faq #accordion .card {
  border: none;
}
#faq #accordion .card-header {
  background: transparent;
  border: 1px solid #f5f5f5;
  border-radius: 0;
}
#faq #accordion .card-header .btn-link {
  font-family: din-regular;
  font-size: 1rem;
  color: black;
}
#faq #accordion .card-header .btn-link:focus {
  outline: none;
  box-shadow: none; 
}
#faq #accordion .card-header .btn-link:after {
  content: "-";
  position: absolute;
  right: 0;
  background: #cf0a2c;
  color: white;
  top: 0;
  padding: 1.5px 16px 6.5px;
  font-size: 26px;
  vertical-align: middle;
}
#faq #accordion .card-header .btn-link.collapsed:after {
  content: "+";
  position: absolute;
  right: 0;
  background: #cf0a2c;
  color: white;
  top: 0;
  padding: 1.5px 15px 6.5px;
  font-size: 26px;
  vertical-align: middle;
}
#faq #accordion .card-body {
  margin-top: 10px;
  background: #f5f5f5;
  padding: 1rem;
}

/*=== How to Buy ===*/
#howtobuy .steps {
  padding-bottom: 2rem;
}
#howtobuy .steps:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 2rem;
}
#howtobuy .steps .title {
  color: #cf0a2c;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 1rem 0;
}
#howtobuy .steps .desc p:last-child {
  margin-bottom: 0;
}

/*=== Partnership ===*/
#partnership .gallery-items .thumb img {
  height: 150px;
  object-fit: contain;
}

/*=== Maps ===*/
#maps iframe {
  width: 100% !important;
  max-width: auto !important;
}
