/*******************************/
/* INIT                        */
/*******************************/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

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

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

/**Primary Color*/
/**Secondary Color*/
/**Tertiary Color*/
/**Util Colors**/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

#tempAlert {
  width: 300px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999999999999999999999999;
  background: green;
  border-radius: 10px;
  padding: 30px;
}

#tempAlert span {
  font-size: 16px;
  color: #ffffff;
}
#tempAlert {
  display: none;
}

#tempAlert button {
  border: none;
  background: transparent;
  color: #ffffff;
  position: relative;
  top: 20;
  right: 20;
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::-moz-selection {
  color: #fff;
  background: #003e6c;
}

::selection {
  color: #fff;
  background: #003e6c;
}

body {
  font-weight: 400;
  line-height: 1.7;
  color: #434343;
  overflow-x: hidden;
  position: relative;
}

body.noScroll {
  overflow: hidden;
}

.clearfix {
  clear: both;
  overflow: auto;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*******************************/
/* UTILS                       */
/*******************************/
.p-r {
  position: relative;
}

.p-a {
  position: absolute;
}

.p-f {
  position: fixed;
}

.top-0 {
  top: 0;
}

.top-10 {
  top: 10%;
}

.top-20 {
  top: 20%;
}

.top-30 {
  top: 30%;
}

.top-40 {
  top: 40%;
}

.top-50 {
  top: 50%;
}

.bottom-10 {
  bottom: 10%;
}

.bottom-20 {
  bottom: 20%;
}

.bottom-30 {
  bottom: 30%;
}

.bottom-40 {
  bottom: 40%;
}

.bottom-50 {
  bottom: 50%;
}

.left-0 {
  left: 0;
}

.left-50 {
  left: 50%;
}

.right-0 {
  right: 0;
}

.right-50 {
  right: 50%;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

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

.mx-auto {
  margin: 0 auto;
}

.center-r-h {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.center-a-h {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.center-f-h {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.center-r-v {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.center-a-v {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.center-f-v {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.center-r-b {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.center-a-b {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.center-f-b {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mt-5 {
  margin-top: 0.5rem;
}

.mt-10 {
  margin-top: 1rem;
}

.mt-15 {
  margin-top: 1.5rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-25 {
  margin-top: 2.5rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mt-35 {
  margin-top: 3.5rem;
}

.mt-40 {
  margin-top: 4rem;
}

.mt-45 {
  margin-top: 4.5rem;
}

.mt-50 {
  margin-top: 5rem;
}

.mt-60 {
  margin-top: 6rem;
}

.mt-70 {
  margin-top: 7rem;
}

.mt-80 {
  margin-top: 8rem;
}

.mt-90 {
  margin-top: 9rem;
}

.mt-100 {
  margin-top: 10rem;
}

.mr-5 {
  margin-right: 0.5rem;
}

.mr-10 {
  margin-right: 1rem;
}

.mr-15 {
  margin-right: 1.5rem;
}

.mr-20 {
  margin-right: 2rem;
}

.mr-25 {
  margin-right: 2.5rem;
}

.mr-30 {
  margin-right: 3rem;
}

.mr-35 {
  margin-right: 3.5rem;
}

.mr-40 {
  margin-right: 4rem;
}

.mr-45 {
  margin-right: 4.5rem;
}

.mr-50 {
  margin-right: 5rem;
}

.mb-5 {
  margin-bottom: 0.5rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-15 {
  margin-bottom: 1.5rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-25 {
  margin-bottom: 2.5rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mb-35 {
  margin-bottom: 3.5rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.mb-45 {
  margin-bottom: 4.5rem;
}

.mb-50 {
  margin-bottom: 5rem;
}

.mb-60 {
  margin-bottom: 6rem;
}

.mb-70 {
  margin-bottom: 7rem;
}

.mb-80 {
  margin-bottom: 8rem;
}

.mb-90 {
  margin-bottom: 9rem;
}

.mb-100 {
  margin-bottom: 10rem;
}

.ml-5 {
  margin-left: 0.5rem;
}

.ml-10 {
  margin-left: 1rem;
}

.ml-15 {
  margin-left: 1.5rem;
}

.ml-20 {
  margin-left: 2rem;
}

.ml-25 {
  margin-left: 2.5rem;
}

.ml-30 {
  margin-left: 3rem;
}

.ml-35 {
  margin-left: 3.5rem;
}

.ml-40 {
  margin-left: 4rem;
}

.ml-45 {
  margin-left: 4.5rem;
}

.ml-50 {
  margin-left: 5rem;
}

.my-5 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-10 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-15 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-20 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-25 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-30 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-35 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.my-40 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-50 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-60 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-70 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.my-80 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.mx-5 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-10 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-15 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-20 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-25 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-30 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-35 {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.mx-40 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-50 {
  margin-left: 5rem;
  margin-bottom: 5rem;
}

.pt-5 {
  padding-top: 0.5rem;
}

.pt-10 {
  padding-top: 1rem;
}

.pt-15 {
  padding-top: 1.5rem;
}

.pt-20 {
  padding-top: 2rem;
}

.pt-25 {
  padding-top: 2.5rem;
}

.pt-30 {
  padding-top: 3rem;
}

.pt-35 {
  padding-top: 3.5rem;
}

.pt-40 {
  padding-top: 4rem;
}

.pt-45 {
  padding-top: 4.5rem;
}

.pt-50 {
  padding-top: 5rem;
}

.pr-5 {
  padding-right: 0.5rem;
}

.pr-10 {
  padding-right: 1rem;
}

.pr-15 {
  padding-right: 1.5rem;
}

.pr-20 {
  padding-right: 2rem;
}

.pr-25 {
  padding-right: 2.5rem;
}

.pr-30 {
  padding-right: 3rem;
}

.pr-35 {
  padding-right: 3.5rem;
}

.pr-40 {
  padding-right: 4rem;
}

.pr-45 {
  padding-right: 4.5rem;
}

.pr-50 {
  padding-right: 5rem;
}

.pb-5 {
  padding-bottom: 0.5rem;
}

.pb-10 {
  padding-bottom: 1rem;
}

.pb-15 {
  padding-bottom: 1.5rem;
}

.pb-20 {
  padding-bottom: 2rem;
}

.pb-25 {
  padding-bottom: 2.5rem;
}

.pb-30 {
  padding-bottom: 3rem;
}

.pb-35 {
  padding-bottom: 3.5rem;
}

.pb-40 {
  padding-bottom: 4rem;
}

.pb-45 {
  padding-bottom: 4.5rem;
}

.pb-50 {
  padding-bottom: 5rem;
}

.pb-60 {
  padding-bottom: 6rem;
}

.pb-70 {
  padding-bottom: 7rem;
}

.pb-80 {
  padding-bottom: 8rem;
}

.pl-5 {
  padding-left: 0.5rem;
}

.pl-10 {
  padding-left: 1rem;
}

.pl-15 {
  padding-left: 1.5rem;
}

.pl-20 {
  padding-left: 2rem;
}

.pl-25 {
  padding-left: 2.5rem;
}

.pl-30 {
  padding-left: 3rem;
}

.pl-35 {
  padding-left: 3.5rem;
}

.pl-40 {
  padding-left: 4rem;
}

.pl-45 {
  padding-left: 4.5rem;
}

.pl-50 {
  padding-left: 5rem;
}

.pa-5 {
  padding: 0.5rem;
}

.pa-10 {
  padding: 1rem;
}

.pa-15 {
  padding: 1.5rem;
}

.pa-20 {
  padding: 2rem;
}

.pa-25 {
  padding: 2.5rem;
}

.pa-30 {
  padding: 3rem;
}

.pa-35 {
  padding: 3.5rem;
}

.pa-40 {
  padding: 4rem;
}

.pa-45 {
  padding: 4.5rem;
}

.pa-50 {
  padding: 5rem;
}

.py-5 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-15 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-25 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-30 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-35 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-40 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-45 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.py-50 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-5 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-10 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-15 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-20 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-25 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-30 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-35 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.px-40 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-45 {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.px-50 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.br-r-1 {
  border-radius: 1px;
}

.br-r-2 {
  border-radius: 2px;
}

.br-r-2 {
  border-radius: 2px;
}

.br-r-3 {
  border-radius: 3px;
}

.br-r-4 {
  border-radius: 4px;
}

.br-r-5 {
  border-radius: 5px;
}

.br-r-6 {
  border-radius: 6px;
}

.br-r-7 {
  border-radius: 7px;
}

.br-r-8 {
  border-radius: 8px;
}

.br-r-9 {
  border-radius: 9px;
}

.br-r-10 {
  border-radius: 10px;
}

.br-r-11 {
  border-radius: 11px;
}

.br-r-12 {
  border-radius: 12px;
}

.br-r-13 {
  border-radius: 13px;
}

.br-r-14 {
  border-radius: 14px;
}

.br-r-15 {
  border-radius: 15px;
}

.br-r-16 {
  border-radius: 16px;
}

.br-r-17 {
  border-radius: 17px;
}

.br-r-18 {
  border-radius: 18px;
}

.br-r-19 {
  border-radius: 19px;
}

.br-r-20 {
  border-radius: 20px;
}

.br-r-50 {
  border-radius: 50%;
}

.btn:link,
.btn:visited,
.btn:hover,
.btn:focus,
.btn:active {
  outline: none;
  text-decoration: none;
}

.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #003e6c;
}

.btn-primary:hover {
  background-color: #002139;
}

.btn-secondary {
  background-color: #ee272e;
}

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

.btn-tertiary:link,
.btn-tertiary:visited,
.btn-tertiary:hover,
.btn-tertiary:focus,
.btn-tertiary:active {
  background-color: #ff5a19;
}

.btn-tertiary:hover {
  background-color: #e54100;
}

.transition-1 {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.transition-2 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.transition-3 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transition-4 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.transition-5 {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.transition-6 {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.transition-7 {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.transition-8 {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.transition-9 {
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.transition-10 {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.bg-primary {
  background-color: #003e6c;
}

.bg-secondary {
  background-color: #ee272e;
}

.bg-tertiary {
  background-color: #ee272e;
}

.bg-lg-1 {
  background-color: #eee;
}

.bg-lg-2 {
  background-color: #ccc;
}

.bg-lg-3 {
  background-color: #999;
}

.f-s-10 {
  font-size: 1rem;
}

.f-s-11 {
  font-size: 1.1rem;
}

.f-s-12 {
  font-size: 1.2rem;
}

.f-s-13 {
  font-size: 1.3rem;
}

.f-s-14 {
  font-size: 1.4rem;
}

.f-s-15 {
  font-size: 1.5rem;
}

.f-s-16 {
  font-size: 1.6rem;
}

@media (max-width: 576px) {
  .f-s-16 {
    font-size: 16px;
  }
}

.f-s-17 {
  font-size: 1.7rem;
}

.f-s-18 {
  font-size: 1.8rem;
}

.f-s-19 {
  font-size: 1.9rem;
}

.f-s-20 {
  font-size: 2rem;
}

.f-s-22 {
  font-size: 2.2rem;
}

.f-s-24 {
  font-size: 2.4rem;
}

.f-s-26 {
  font-size: 2.6rem;
}

.f-s-28 {
  font-size: 2.8rem;
}

.f-s-30 {
  font-size: 3rem;
}

.f-s-35 {
  font-size: 3.5rem;
}

.f-s-36 {
  font-size: 3.6rem;
}

.f-s-40 {
  font-size: 4rem;
}

.f-s-45 {
  font-size: 4.5rem;
}

.f-s-48 {
  font-size: 4.8rem;
}

.f-s-50 {
  font-size: 5rem;
}

.f-s-60 {
  font-size: 6rem;
}

.f-w-3 {
  font-weight: 300;
}

.f-w-4 {
  font-weight: 400;
}

.f-w-5 {
  font-weight: 500;
}

.f-w-6 {
  font-weight: 600;
}

.f-w-7 {
  font-weight: 700;
}

.f-w-8 {
  font-weight: 800;
}

.f-w-9 {
  font-weight: 900;
}

.text-color-primary {
  color: #003e6c;
}

.text-color-secondary {
  color: #ee272e;
}

.text-color-tertiary {
  color: #ff5a19;
}

.text-color-font {
  color: #434343;
}

.text-color-lg {
  color: #999;
}

.text-color-mg {
  color: #666;
}

.text-color-black {
  color: #000;
}

.text-color-white {
  color: #fff;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1366px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1340px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  -webkit-box-flex: 0;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
          order: -1;
}

.order-last {
  -ms-flex-order: 13;
  -webkit-box-ordinal-group: 14;
          order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  -webkit-box-ordinal-group: 1;
          order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
          order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  -webkit-box-ordinal-group: 5;
          order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  -webkit-box-ordinal-group: 6;
          order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  -webkit-box-ordinal-group: 7;
          order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  -webkit-box-ordinal-group: 8;
          order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  -webkit-box-ordinal-group: 9;
          order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  -webkit-box-ordinal-group: 10;
          order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  -webkit-box-ordinal-group: 11;
          order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  -webkit-box-ordinal-group: 12;
          order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  -webkit-box-ordinal-group: 13;
          order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
.detalis_descrpition{
  font-size: 1.8rem;
    color: black;
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
          flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  -webkit-box-flex: 1 !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  -webkit-box-flex: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  -webkit-box-flex: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  -webkit-box-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  -webkit-box-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  -webkit-box-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  -webkit-box-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  -webkit-box-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  -webkit-box-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  -webkit-box-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  -webkit-box-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}

/*******************************/
/* COMPONENTS                  */
/*******************************/
/*******************************/
/* VENDORS                     */
/*******************************/
/*******************************/
/* PAGES                       */
/*******************************/
@font-face {
  font-family: 'Rajdhani';
  src: url("../fonts/Rajdhani-Medium.woff2") format("woff2"), url("../fonts/Rajdhani-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url("../fonts/Rajdhani-Light.woff2") format("woff2"), url("../fonts/Rajdhani-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url("../fonts/Rajdhani-SemiBold.woff2") format("woff2"), url("../fonts/Rajdhani-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url("../fonts/Rajdhani-Regular.woff2") format("woff2"), url("../fonts/Rajdhani-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url("../fonts/Rajdhani-Bold.woff2") format("woff2"), url("../fonts/Rajdhani-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  width: 100%;
}

body {
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
  font-family: 'Rajdhani', sans-serif !important;
  padding-right: 0 !important;
}

body.modal-open {
  height: 100%;
  width: 100%;
}

body.modal-open, .modal {
  padding-right: 0 !important;
}

.modal.show {
  padding-right: 0 !important;
  overflow-y: auto;
}

/* Website Font Sizes */
/* End */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=checkbox] {
  position: relative;
  height: 2rem;
  width: 2rem;
}

input[type=checkbox]:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: white;
  border: 2px solid #404040;
  border-radius: 3px;
  content: '';
}

input[type=checkbox]:checked:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #404040 url("../img/check.svg") no-repeat;
  background-position: center;
  background-size: 70%;
  border-radius: 3px;
  content: '';
}

input[type=radio] {
  position: relative;
  height: 2rem;
  width: 2rem;
}

input[type=radio]:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: white;
  border: 2px solid #404040;
  border-radius: 3px;
  content: '';
}

input[type=radio]:checked:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #404040 url("../img/check.svg") no-repeat;
  background-position: center;
  background-size: 70%;
  border-radius: 3px;
  content: '';
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff url("../img/chevron-down.svg") no-repeat;
  background-position: right;
  background-position-y: 50%;
  background-origin: content-box;
  outline: none;
  border: none;
}

select option {
  border: 0px;
  outline: 0px;
}

/* HTML - Font Scaling */
@media only screen and (max-width: 1800px) and (min-width: 1601px) {
  html {
    font-size: 58.5%;
  }
}

@media only screen and (max-width: 1600px) and (min-width: 1401px) {
  html {
    font-size: 52.5%;
  }
}

@media only screen and (max-width: 1400px) and (min-width: 1201px) {
  html {
    font-size: 45.5%;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 992px) {
  html {
    font-size: 46.5%;
  }
}

@media only screen and (max-width: 991px) and (min-width: 568px) {
  html {
    font-size: 56.5%;
  }
}

@media only screen and (max-width: 567px) and (min-width: 411px) {
  html {
    font-size: 56.5%;
  }
}

@media only screen and (max-width: 410px) and (min-width: 361px) {
  html {
    font-size: 53.5%;
  }
}

@media only screen and (max-width: 360px) {
  html {
    font-size: 49.5%;
  }
}

/* END */
/* Font Scaling - Mobile */
@media only screen and (max-width: 576px) {
  .font-mobile-1 {
    font-size: 4.6rem !important;
  }
  .font-mobile-2 {
    font-size: 3.4rem !important;
  }
}

/* END */
/* --------------------------------------------- PRE-MADE CLASSES --------------------------------------------- */
/* Text Color */
.text-color-white {
  color: white;
}

.text-color-black {
  color: black;
}

.text-color-gray {
  color: #494949;
}

.text-color-main {
  color: #ed1c24;
}

.bg-color-main {
  color: #ed1c24;
}

/* Other */
.pd-0 {
  padding: 0;
}

.uppercase {
  text-transform: uppercase;
}

.l-s-3 {
  letter-spacing: 0.3rem;
}

.l-h-25 {
  line-height: 2.5rem;
}

.l-h-35 {
  line-height: 3.5rem;
}

.l-h-60 {
  line-height: 6rem;
}

.l-s-1 {
  letter-spacing: 0.1rem;
}

.l-h-1 {
  line-height: 1;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
  color: black;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
}

button:focus {
  outline: none !important;
}

input, textarea {
  outline: none !important;
}

.fit-cont {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.underline {
  text-decoration: underline;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
  color: black !important;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.tr-2 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tr-2:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tr-3 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tr-3:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) {
  .d-h {
    display: none !important;
  }
}

@media only screen and (min-width: 767px) {
  .d-h-3 {
    display: none !important;
  }
}

@media only screen and (min-width: 576px) {
  .d-h-2 {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .m-h {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .m-h-3 {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  .m-h-2 {
    display: none !important;
  }
}

.container-fluid {
  max-width: 100%;
  width: 192rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.container {
  max-width: 130rem !important;
  width: 100%;
}

/* ---- Top Bar ---- */
.top-bar {
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  z-index: 2;
}

.top-bar .brojevi-telefona a:hover {
  color: white !important;
}

.top-bar.scrolled {
  height: 0 !important;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.top-bar.scrolled .navbar.fixed-top {
  top: 0 !important;
}

/* END */
/* BURGER MENU */
.burger {
  padding: 0.2rem;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 5px;
  border-radius: 5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

/* END */
/* ---- NAVIGATION ---- */
.navbar.fixed-top {
  top: 5rem;
  left: auto;
  right: auto;
  width: 95%;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.navbar.fixed-top.top-change {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.navbar {
  padding: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

.navbar .container {
  min-height: 10rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-brand {
  width: 24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-brand img {
  height: auto;
  width: 100%;
}

.navbar .navbar-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-size: 1.9rem;
  font-weight: 700;
  margin-left: 3rem;
  margin-right: 3rem;
  color: black !important;
  text-transform: uppercase;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 10rem;
}

.navbar .navbar-nav .nav-item .nav-link:focus,
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #ed1c24 !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item.active > .nav-link,
.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link.show,
.navbar .navbar-nav .nav-item.show > .nav-link {
  color: #ed1c24 !important;
}

.navbar .navbar-nav .language-dropdown .language-switcher {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.navbar .navbar-toggler {
  padding: 0;
  outline: none;
  border: none;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  border: none;
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  min-width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-divider {
  margin: .5rem 1.5rem;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-item {
  color: white;
  padding: 1rem 1.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-item .nav-link {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-item:hover {
  background-color: transparent;
  color: #ed1c24 !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-item:focus {
  background-color: transparent;
  color: #ed1c24;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-item.active,
.navbar .navbar-nav .nav-item.dropdown .dropdown-item:active {
  color: #ed1c24;
  background-color: transparent;
}

.navbar .navbar-nav .nav-item.dropdown .language-dropdown .chevron-down {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.navbar .navbar-nav .nav-item.dropdown .language-dropdown:hover .chevron-down {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.navbar .navbar-nav .nav-item.dropdown .nav-link:focus img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.navbar .navbar-nav .nav-item.dropdown .active > .nav-link img,
.navbar .navbar-nav .nav-item.dropdown .nav-link.active img,
.navbar .navbar-nav .nav-item.dropdown .nav-link.show img,
.navbar .navbar-nav .nav-item.dropdown .show > .nav-link img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.navbar .navbar-nav .nav-item.dropdown .nav-link svg path {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item.dropdown .nav-link:hover svg path {
  fill: #ed1c24;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item.dropdown .nav-link:focus svg path {
  fill: #ed1c24;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .dropdown-menu-language {
  top: 75%;
  background-color: transparent !important;
  border: none;
  min-width: 100%;
}

.navbar .dropdown-menu-search {
  top: 85%;
  right: 0;
  left: auto;
  background-color: transparent !important;
  border: none;
  min-width: 100%;
}

.navbar .dropdown-menu-search input {
  border: 1px solid black;
  outline: none;
  padding: 0.5rem 1rem;
  height: 5rem;
  width: 35rem;
  border-radius: 10px;
}

.navbar.fixed-top.scrolled {
  background-color: white !important;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.navbar.fixed-top.scrolled .container {
  min-height: 8rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar.fixed-top.scrolled .navbar-brand {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar.fixed-top.scrolled .nav-item .nav-link {
  height: 8rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mobile-search-nav-item .form-inline {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-search-nav-item .form-inline input {
  width: 100%;
  height: 4rem;
  font-size: 1.7rem;
  padding: 0.5rem 3.5rem 0.5rem 1rem;
  color: black;
  border: 1px solid black;
  border-radius: 10px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff;
  background-position: calc(100% - 10px);
  background-position-y: 50%;
  background-size: 1.5rem 100%;
  outline: none;
}

.mobile-search-nav-item .form-inline input::-webkit-input-placeholder {
  font-size: 1.7rem;
  color: black;
}

.mobile-search-nav-item .form-inline input:-ms-input-placeholder {
  font-size: 1.7rem;
  color: black;
}

.mobile-search-nav-item .form-inline input::-ms-input-placeholder {
  font-size: 1.7rem;
  color: black;
}

.mobile-search-nav-item .form-inline input::placeholder {
  font-size: 1.7rem;
  color: black;
}

.mobile-search-nav-item .form-inline .modal-search-icon {
  position: absolute;
  right: 13px;
}

.menu .search-container {
  width: 4rem;
  height: 4rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid black;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .search-container svg path {
  fill: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .search-container:hover {
  background-color: white;
  border: 1px solid #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .search-container:hover svg path {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .search-container.search-container-js {
  background-color: white !important;
  border: 1px solid #ed1c24 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .search-container.search-container-js svg path {
  fill: #ed1c24 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .cart-container {
  width: 4rem;
  height: 4rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: black;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .cart-container svg {
  fill: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .cart-container .badge-container {
  position: absolute;
  top: 0.5rem;
  right: -2.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ed1c24;
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .cart-container:hover {
  background-color: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .cart-container:hover svg {
  fill: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .cart-container:hover .badge-container {
  background-color: black;
  color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.menu .language-container {
  background-color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 10px;
  border: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  color: black;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .language-container:hover {
  background-color: white;
  border: 1px solid #ed1c24;
  color: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu .language-container:focus {
  outline: none;
}

.menu .navbar .navbar-nav .registration-container,
.menu .navbar .navbar-nav .login-container {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid black;
  position: relative;
}

@media only screen and (min-width: 991px) {
  .navbar .nav-item .nav-border {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar .nav-item .nav-border:hover {
    border-bottom: 4px solid #ed1c24;
    border-top: 4px solid #ed1c24;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar .nav-item .nav-link {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
}

@media only screen and (max-width: 567px) {
  .navbar .container {
    min-height: 60px;
  }
  .navbar .mobile-bar {
    min-height: 60px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar .navbar-brand {
    width: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar.fixed-top.scrolled .container {
    min-height: 60px;
  }
  .navbar.fixed-top.scrolled .navbar-brand {
    width: 20rem;
  }
}

@media only screen and (max-width: 991px) and (min-width: 568px) {
  .navbar.fixed-top.scrolled .container {
    min-height: 80px;
  }
  .navbar.fixed-top.scrolled .navbar-brand {
    width: 24rem;
  }
  .navbar .container {
    min-height: 80px;
  }
  .navbar .mobile-bar {
    min-height: 80px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar .navbar-brand {
    width: 24rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .burger {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@media only screen and (max-width: 991px) {
  .top-bar {
    display: none;
  }
  .navbar.fixed-top {
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0px;
  }
  .navbar.fixed-top.scrolled .nav-item {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .navbar.fixed-top {
    top: 0;
    -webkit-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
  }
  .navbar.navbar-mobile-bg {
    background-color: white !important;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  .navbar.navbar-mobile-bg.change {
    background-color: white !important;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  .navbar.fixed-top.scrolled .dropdown-menu {
    margin-top: 0 !important;
  }
  .navbar .navbar-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px !important;
    height: 5rem !important;
  }
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    background-color: rgba(0, 0, 0, 0);
  }
  .navbar .navbar-collapse {
    border-top: 1px solid black;
  }
  .navbar .mobile-bar {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar .language-switcher {
    display: none;
  }
  .navbar .dropdown-menu-language {
    margin-top: 0 !important;
    top: 100%;
  }
  .menu .mobile-bar-icons .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu .mobile-bar-icons .search-container,
  .menu .mobile-bar-icons .cart-container,
  .menu .mobile-bar-icons .language-container {
    width: 3.6rem;
    height: 3.6rem;
  }
  .menu .mobile-bar-icons .language-container {
    font-size: 1.3rem;
  }
  .menu .mobile-bar-icons .korpa-link {
    margin-right: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-section .spacer-15 {
  height: 15rem;
  width: 100%;
}

.footer-section .footer-bg {
  /* min-height: 72.5rem; */
  background-color: black;
}

.footer-section .footer-bg .row-1 .contact-info {
  margin-bottom: 3rem;
}

.footer-section .footer-bg .row-1 .contact-info .robna-kuca {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 11rem;
  width: 100%;
  border-radius: 15px;
  z-index: 2;
}

.footer-section .footer-bg .row-1 .contact-info .robna-kuca .mapa {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background-color: #ed1c24;
  z-index: 3;
  border-radius: 15px;
  opacity: 0;
}

.footer-section .footer-bg .row-1 .contact-info .robna-kuca .mapa img {
  height: auto;
  width: 1.6rem;
}

.footer-section .footer-bg .row-1 .contact-info .robna-kuca .mapa .text-container {
  width: 8rem;
}

.footer-section .footer-bg .row-1 .contact-info .robna-kuca .mapa .text-container span {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.footer-section .footer-bg .row-1 .contact-info .robna-kuca:hover .mapa {
  opacity: 1;
}

/* .footer-section .footer-bg .row-1 .contact-info .contact .title {
  width: 32rem;
} */

.footer-section .footer-bg .row-1 .contact-info .contact .title span {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.footer-section .footer-bg .row-1 .contact-info .contact ul {
  margin-bottom: 0;
}

.footer-section .footer-bg .row-1 .contact-info .contact ul li a {
  font-size: 1.8rem;
  color: white;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.footer-section .footer-bg .row-1 .contact-info .contact ul li a .link {
  height: 3rem;
}

.footer-section .footer-bg .row-1 .contact-info .contact ul li a .link .icon-container {
  width: 1.6rem;
}

.footer-section .footer-bg .row-1 .contact-info .contact ul li a .link .icon-container img {
  height: auto;
  width: 100%;
}

.footer-section .footer-bg .row-1 .contact-info .contact ul li a .link span {
  line-height: 1;
}

.footer-section .footer-bg .row-1 .contact-info .contact ul li a:hover {
  color: white !important;
}

.footer-section .footer-bg .line {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.footer-section .footer-bg .row-2 .excellent {
  height: 100%;
  width: 11rem;
}

.footer-section .footer-bg .row-2 .excellent img {
  height: auto;
  width: 100%;
}

/* .footer-section .footer-bg .row-2 .radno-vrijeme {
  height: 100%;
} */

.footer-section .footer-bg .row-2 .radno-vrijeme .icon-container {
  width: 3.8rem;
}

.footer-section .footer-bg .row-2 .radno-vrijeme .icon-container img {
  height: auto;
  width: 100%;
}

.footer-section .footer-bg .row-2 .radno-vrijeme .text-container span {
  font-size: 1.8rem;
  color: white;
}

.footer-section .footer-bg .row-2 .korisnicki-servis {
  /* height: 100%; */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer-section .footer-bg .row-2 .korisnicki-servis .logo-container {
  width: 24rem;
}

.footer-section .footer-bg .row-2 .korisnicki-servis .logo-container img {
  height: auto;
  width: 100%;
}

.footer-section .footer-bg .row-2 .korisnicki-servis .text-container a {
  font-size: 1.7rem;
  color: white;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.footer-section .footer-bg .row-2 .korisnicki-servis .text-container a:hover {
  color: #ed1c24 !important;
}

.footer-section .footer-bg .m-row {
  margin-top: 3rem;
}

.footer-section .footer-bg .m-row .m-social .icon-container {
  height: 4rem;
  width: 4rem;
  background-color: white;
  border-radius: 5px;
}

.footer-section .footer-bg .m-row .m-social .icon-container svg path {
  fill: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section .footer-bg .m-row .m-social .icon-container:hover {
  background-color: #4267B2;
}

.footer-section .footer-bg .m-row .m-social .icon-container:hover svg path {
  fill: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section .footer-bg .m-row .text-container a {
  font-size: 1.7rem;
  color: white;
  text-transform: uppercase;
  display: block;
}

.footer-section .footer-bg .m-row .text-container a:hover {
  color: white !important;
}

.footer-section .footer-bg .row-3 {
  min-height: 7.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-section .footer-bg .row-3 .copyright span, .footer-section .footer-bg .row-3 .copyright span a {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.5);
	transition: all .4s ease;
}
.footer-section .footer-bg .row-3 .copyright span a:hover{
	transition: all .4s ease;
	text-decoration: underline;
	color: #fff !important;
}

.footer-section .footer-bg .row-3 .social {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer-section .footer-bg .row-3 .social .icon-container {
  height: 4rem;
  width: 4rem;
  background-color: white;
  border-radius: 5px;
}

.footer-section .footer-bg .row-3 .social .icon-container svg path {
  fill: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section .footer-bg .row-3 .social .icon-container:hover {
  background-color: #4267B2;
}

.footer-section .footer-bg .row-3 .social .icon-container:hover svg path {
  fill: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-section .footer-bg .bottom-bar {
  height: 0.7rem;
  width: 100%;
  background-color: #ed1c24;
}

@media only screen and (max-width: 991px) {
  .footer-section .footer-bg .row-1 .contact-info .robna-kuca {
    height: 11rem;
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer-section .footer-bg .row-1 .contact-info .contact .title {
    width: 100%;
  }
  .footer-section .footer-bg .row-2 .radno-vrijeme {
    padding: 4rem 0 3rem 0;
  }
  .footer-section .footer-bg .row-2 .excellent-2 {
    height: 100%;
    width: 6rem;
  }
  .footer-section .footer-bg .row-2 .excellent-2 img {
    height: auto;
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .footer-section .footer-bg .row-2 {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .footer-section .footer-bg .row-3 {
    min-height: 7.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-section .footer-bg .row-3 .row-3-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .footer-section .footer-bg .row-3 .row-3-1 .social {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .footer-section .footer-bg .row-3 .row-3-1 .scroll-to-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.slider-section {
  position: relative;
}

.slider-section #carousel-intro .slider-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 106.4rem;
  position: relative;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.slider-section #carousel-intro .slider-bg .slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slider-section .owl-theme .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 184.4rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 15px;
  padding-right: 15px;
  counter-reset: dots;
}

.slider-section .owl-theme .owl-dot {
  width: 2rem;
}

.slider-section .owl-theme .owl-dot:before {
  counter-increment: dots;
  content: "0" counter(dots);
  font-size: 1.8rem;
  font-weight: 700;
}

.slider-section .owl-theme .owl-dots .owl-dot.active span,
.slider-section .owl-theme .owl-dots .owl-dot.active:hover span {
  background: #ed1c24;
  width: 1px;
  height: 6rem;
  margin-left: 10px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.slider-section .owl-theme .owl-dots .owl-dot span,
.slider-section .owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.3);
  width: 0px;
  height: 0rem;
}

.slider-section .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

.slider-section .container .slider-content {
  width: 44.2rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  padding: 3rem;
  margin-bottom: 15rem;
}

.slider-section .container .slider-content .title {
  width: 31rem;
}

.slider-section .container .slider-content .title h1 {
  font-size: 6rem;
  color: #ed1c24;
  font-weight: 700;
  line-height: 1;
}

.slider-section .container .slider-content .title h1 span {
  color: black;
}

.slider-section .container .slider-content h2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: black;
}

.slider-section .container .slider-content a .katalog {
  height: 5rem;
  width: 30rem;
  border: 1px solid #ed1c24;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  background-color: #ed1c24;
  color: white;
}

.slider-section .container .slider-content a .katalog:hover {
  background-color: #ed1c24;
  color: white;
}

.kategorije-section {
  position: relative;
}

.kategorije-section .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
}

.kategorije-section .container #carousel-kategorije .owl-item > div {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.kategorije-section .container #carousel-kategorije .owl-item.center > div {
  cursor: auto;
  margin: 0;
}

.kategorije-section .container #carousel-kategorije .owl-item.center > div .text-container-front {
  display: block !important;
}

.kategorije-section .container #carousel-kategorije .owl-item.center .card-container {
  height: 62rem;
  width: 100%;
  -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.3);
}

.kategorije-section .container #carousel-kategorije .owl-item:not(.center) .card-container {
  height: 55.5rem;
  width: 40rem;
  pointer-events: none;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.kategorije-section .container #carousel-kategorije .owl-nav {
  display: block;
  position: absolute;
  width: 100%;
  margin-top: 0;
  bottom: 1rem;
}

.kategorije-section .container #carousel-kategorije .owl-nav button.owl-next {
  margin-left: 2rem;
}

.kategorije-section .container #carousel-kategorije .owl-nav button.owl-prev {
  margin-right: 2rem;
}

.kategorije-section .container #carousel-kategorije .owl-nav button svg path {
  fill: #acacac;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.kategorije-section .container #carousel-kategorije .owl-nav button:hover path {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.kategorije-section .container #carousel-kategorije .owl-nav [class*=owl-]:hover {
  background: 0 0 !important;
}

.kategorije-section .container #carousel-kategorije .container-center {
  min-height: 82rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kategorije-section .container #carousel-kategorije .card-container {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.kategorije-section .container #carousel-kategorije .card-container .card-front {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 25px;
  height: 100%;
  width: 100%;
  position: relative;
}

.kategorije-section .container #carousel-kategorije .card-container .card-front .card-body {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 3rem;
}

.kategorije-section .container #carousel-kategorije .card-container .card-front .card-body .text-container h3 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.kategorije-section .container #carousel-kategorije .card-container .card-front .card-body .text-container .line {
  height: 1px;
  width: 6rem;
  background-color: #ed1c24;
}

.kategorije-section .container #carousel-kategorije .card-container .card-front .card-body .text-container span {
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  color: white;
  text-transform: uppercase;
}

.kategorije-section .container #carousel-kategorije .card-container .card-front .card-body .text-container-front {
  display: none;
}

.kategorije-section .container #carousel-kategorije .card-container .card-back {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 70%;
  background-color: #ed1c24;
  border-radius: 25px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
}

.kategorije-section .container #carousel-kategorije .card-container .card-back .card-body {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 3rem;
}

.kategorije-section .container #carousel-kategorije .card-container .card-back .card-body .text-container h3 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.kategorije-section .container #carousel-kategorije .card-container .card-back .card-body .text-container .line {
  height: 1px;
  width: 6rem;
  background-color: white;
}

.kategorije-section .container #carousel-kategorije .card-container .card-back .card-body .text-container ul li {
  margin-bottom: 2rem;
}

.kategorije-section .container #carousel-kategorije .card-container .card-back .card-body .text-container ul li a {
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  pointer-events: none;
}

.kategorije-section .container #carousel-kategorije .card-container .card-back .card-body .text-container ul li a:hover {
  font-weight: 700;
  color: white !important;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.kategorije-section .container #carousel-kategorije .card-container:hover .card-back {
  opacity: 1;
}

.kategorije-section .container #carousel-kategorije .card-container:hover .card-back .card-body .text-container ul li a {
  pointer-events: visible;
}

.separator .spacer {
  height: 44.5rem;
}

.separator .line {
  height: 1px;
  width: 100%;
  background-color: #e8e8e8;
}

.preporucujemo-section .title {
  min-height: 14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.preporucujemo-section .title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.preporucujemo-section .preporucujemo-card {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 4rem;
}

.preporucujemo-section .preporucujemo-card .img-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 28rem;
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
}

.preporucujemo-section .preporucujemo-card .img-container .detaljnije {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.preporucujemo-section .preporucujemo-card .img-container .detaljnije img {
  height: auto;
  width: 3rem;
}

.preporucujemo-section .preporucujemo-card .img-container .detaljnije .text-container span {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

.preporucujemo-section .preporucujemo-card .img-container:hover .detaljnije {
  opacity: 1;
}

.preporucujemo-section .preporucujemo-card .product .product-title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
}

.preporucujemo-section .preporucujemo-card .product .category {
  font-size: 2rem;
  color: black;
  text-transform: uppercase;
}

.preporucujemo-section .preporucujemo-card .line {
  height: 1px;
  width: 100%;
  background-color: #e8e8e8;
}

.preporucujemo-section .preporucujemo-card .price span {
  font-size: 2rem;
  color: black;
}

.preporucujemo-section .preporucujemo-card .price span .discount {
  font-size: 2rem;
  font-weight: 700;
  color: #ed1c24;
}

.preporucujemo-section .preporucujemo-card .price span .separator {
  font-size: 2rem;
  color: black;
}

.preporucujemo-section .preporucujemo-card .price span .original-price {
  text-decoration: line-through;
}

.preporucujemo-section .preporucujemo-card .cart-button button {
  height: 5rem;
  width: 88%;
  border-radius: 10px;
  border: 1px solid #ed1c24;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #ed1c24;
  margin: 1rem 1.5rem 2rem 1.5rem;
}

.preporucujemo-section .preporucujemo-card .cart-button button:hover {
  background-color: #ed1c24;
  color: white;
}

.preporucujemo-section .preporucujemo-card .cart-button button:focus {
  background-color: #c61017;
  color: white;
}

.preporucujemo-section .preporucujemo-card:hover {
  -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
}

.spacer-10 {
  height: 10rem;
}

.o-nama-section .o-nama-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 68rem;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.o-nama-section .o-nama-bg .container {
  position: absolute;
  top: -4rem;
}

.o-nama-section .o-nama-bg .left-side {
  position: relative;
  height: 54rem;
  width: 54rem;
  z-index: 1;
}

.o-nama-section .o-nama-bg .left-side .img-container {
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 47rem;
  width: 47rem;
  border-radius: 20px;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.o-nama-section .o-nama-bg .left-side .logo-container {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 24.5rem;
  width: 24.5rem;
  border-radius: 20px;
  background-color: white;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.o-nama-section .o-nama-bg .left-side .logo-container img {
  height: auto;
  width: 78%;
}

.o-nama-section .o-nama-bg .right-side-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.o-nama-section .o-nama-bg .right-side {
  height: 100%;
  width: 64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.o-nama-section .o-nama-bg .right-side h3 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
  margin-bottom: 0;
  line-height: 1;
}

.o-nama-section .o-nama-bg .right-side .line {
  height: 1px;
  width: 6rem;
  background-color: #ed1c24;
}

.o-nama-section .o-nama-bg .right-side p {
  font-size: 1.8rem;
  font-weight: 500;
  color: black;
}

.o-nama-section .o-nama-bg .right-side .detaljnije {
  margin-top: 6rem;
}

.o-nama-section .o-nama-bg .right-side .detaljnije button {
  height: 5rem;
  width: 22.5rem;
  border-radius: 10px;
  border: 1px solid #ed1c24;
  background-color: transparent;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #ed1c24;
}

.o-nama-section .o-nama-bg .right-side .detaljnije button:hover {
  background-color: #ed1c24;
  color: white;
}

.o-nama-section .o-nama-bg .right-side .detaljnije button:focus {
  background-color: #c61017;
  color: white;
}

.o-nama-section .o-nama-bg .spacer-10 {
  height: 10rem;
  width: 100%;
}

.brendovi-section {
  position: relative;
}

.brendovi-section .brendovi-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 16rem;
  background-color: #ed1c24;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 30px);
  max-width: 127rem !important;
}

.brendovi-section .brendovi-container #carousel-brendovi .logo-container {
  height: 12rem;
  width: 100%;
}

.brendovi-section .brendovi-container #carousel-brendovi .logo-container img {
  height: auto;
  width: 65%;
  max-width: 18rem;
}

@media only screen and (max-width: 991px) {
  .o-nama-section .o-nama-bg .container {
    position: relative;
    top: -4rem;
  }
  .o-nama-section .o-nama-bg .left-side {
    width: 100%;
    margin-bottom: 3rem;
  }
  .o-nama-section .o-nama-bg .left-side .img-container {
    width: 90%;
  }
  .o-nama-section .o-nama-bg .left-side .logo-container {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 24.5rem;
    width: 24.5rem;
    border-radius: 20px;
    background-color: white;
    -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
    z-index: 3;
  }
  .o-nama-section .o-nama-bg .right-side-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-nama-section .o-nama-bg .right-side {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media only screen and (max-width: 768px) {
  .kategorije-section .container #carousel-kategorije .owl-item.center .card-container {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}

@media only screen and (max-width: 567px) {
  .slider-section .container .slider-content {
    width: 100%;
  }
}

.namjestaj-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48rem;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.namjestaj-section .title {
  height: 14rem;
}

.namjestaj-section .title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.namjestaj-section .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.namjestaj-section .left-side #accordion-kategorije {
  width: 25rem;
}

.namjestaj-section .left-side #accordion-kategorije .card {
  border: none;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-header {
  padding: 0;
  height: 6rem;
  background-color: transparent;
  border-bottom: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-header h2 {
  width: 100%;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-header button {
  font-size: 2.1rem;
  font-weight: 700;
  color: black;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-header .accordion-toggle:after {
  height: 1.4rem;
  width: 1.4rem;
  background: transparent url("../img/chevron-up-solid.svg") no-repeat;
  background-position: right;
  background-position-y: 50%;
  background-origin: content-box;
  outline: none;
  border: none;
  content: " ";
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-header .accordion-toggle.collapsed:after {
  -webkit-transform-origin: center !important;
          transform-origin: center !important;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-position: left;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-body {
  padding: 0;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-body ul {
  margin-bottom: 2rem;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-body ul li {
  margin-bottom: 1rem;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-body ul li a {
  font-size: 1.7rem;
  color: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.namjestaj-section .left-side #accordion-kategorije .card .card-body ul li a:hover {
  color: #ed1c24 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.namjestaj-section .left-side #accordion-kategorije .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.namjestaj-section .right-side .title {
  min-height: 14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.namjestaj-section .right-side .title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.namjestaj-section .right-side .kategorija-title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ed1c24;
}

.namjestaj-section .right-side .kategorija-sort-align {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.namjestaj-section .right-side .kategorija-sort label {
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}

.namjestaj-section .right-side .kategorija-sort select {
  font-size: 1.8rem;
  height: 5rem;
  width: 29.4rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
}

.namjestaj-section .right-side .ponuda-card {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 4rem;
}

.namjestaj-section .right-side .ponuda-card .img-container {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 23rem;
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
}

.namjestaj-section .right-side .ponuda-card .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.namjestaj-section .right-side .ponuda-card .img-container .detaljnije {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.namjestaj-section .right-side .ponuda-card .img-container .detaljnije img {
  height: auto;
  width: 3rem;
}

.namjestaj-section .right-side .ponuda-card .img-container .detaljnije .text-container span {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

.namjestaj-section .right-side .ponuda-card .img-container:hover .detaljnije {
  opacity: 1;
}

.namjestaj-section .right-side .ponuda-card .product .product-title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  min-height: 6rem;
  -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.namjestaj-section .right-side .ponuda-card .product .category {
  font-size: 2rem;
  color: black;
  text-transform: uppercase;
}

.namjestaj-section .right-side .ponuda-card .line {
  height: 1px;
  width: 100%;
  background-color: #e8e8e8;
}

.namjestaj-section .right-side .ponuda-card .price span {
  font-size: 2rem;
  color: black;
}

.namjestaj-section .right-side .ponuda-card .price span .discount {
  font-size: 2rem;
  font-weight: 700;
  color: #ed1c24;
}

.namjestaj-section .right-side .ponuda-card .price span .separator {
  font-size: 2rem;
  color: black;
}

.namjestaj-section .right-side .ponuda-card .price span .original-price {
  text-decoration: line-through;
}

.namjestaj-section .right-side .ponuda-card .cart-button button {
  height: 5rem;
  width: 88%;
  border-radius: 10px;
  border: 1px solid #ed1c24;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #ed1c24;
  margin: 1rem 1.5rem 2rem 1.5rem;
}

.namjestaj-section .right-side .ponuda-card .cart-button button:hover {
  background-color: #ed1c24;
  color: white;
}

.namjestaj-section .right-side .ponuda-card .cart-button button:focus {
  background-color: #c61017;
  color: white;
}

.namjestaj-section .right-side .ponuda-card:hover {
  -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
}

.namjestaj-section .right-side .proizvodi-nav .pagination {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.namjestaj-section .right-side .proizvodi-nav .pagination .page-item .page-link {
  font-size: 1.7rem;
  font-weight: 600;
  height: 4rem;
  width: 4rem;
  border-radius: 5px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #231f20;
  background-color: transparent;
  border: 1px solid #e8e8e8;
}

.namjestaj-section .right-side .proizvodi-nav .pagination .page-item:first-child .page-link,
.namjestaj-section .right-side .proizvodi-nav .pagination .page-item:last-child .page-link {
  border: none;
}

.namjestaj-section .right-side .proizvodi-nav .pagination .page-item:first-child:hover .page-link,
.namjestaj-section .right-side .proizvodi-nav .pagination .page-item:last-child:hover .page-link {
  background-color: transparent;
  border: none;
}

.namjestaj-section .right-side .proizvodi-nav .pagination .page-item.active .page-link {
  border: 1px solid #ed1c24;
  color: #ed1c24 !important;
  outline: none !important;
}

.namjestaj-section .right-side .proizvodi-nav .pagination .page-item:hover .page-link {
  border: 1px solid #ed1c24;
  color: #ed1c24 !important;
}

.namjestaj-section .right-side .proizvodi-nav .pagination .page-item:focus .page-link {
  border: 1px solid #ed1c24;
  color: #ed1c24 !important;
  outline: none !important;
  border: none !important;
}

.namjestaj-section .right-side .proizvodi-nav .pagination .page-item.disabled .page-link svg path {
  fill: #6c757d;
  pointer-events: none;
  cursor: auto;
}

.namjestaj-section .spacer-15 {
  height: 15rem;
  width: 100%;
}

@media only screen and (max-width: 567px) {
  .namjestaj-section .right-side .kategorija-title {
    margin-bottom: 3rem;
  }
  .namjestaj-section .right-side .kategorija-sort-align {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .namjestaj-section .right-side .kategorija-sort {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .namjestaj-section .right-side .kategorija-sort label {
    width: 14rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .namjestaj-section .right-side .kategorija-sort select {
    width: 100%;
  }
  .namjestaj-section .right-side .proizvodi-nav .pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 991px) {
  .namjestaj-section .left-side #accordion-kategorije {
    width: 100%;
    margin-bottom: 5rem;
  }
}

.namjestaj-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48rem;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.namjestaj-detalji-section .title {
  height: 14rem;
}

.namjestaj-detalji-section .title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}
.namjestaj-detalji-section .title .prod-cat {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.namjestaj-detalji-section .title h2 {
  font-size: 1.8rem;
  color: black;
  text-transform: uppercase;
  margin-bottom: 0;
}

.namjestaj-detalji-section .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.namjestaj-detalji-section #carousel-namjestaj .namjestaj-bg {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 46rem;
  border-radius: 15px;
}

.namjestaj-detalji-section #carousel-namjestaj .namjestaj-bg img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}

.namjestaj-detalji-section #carousel-namjestaj-small .namjestaj-bg-small {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 11.5rem;
  border-radius: 10px;
  cursor: pointer;
}


.namjestaj-detalji-section #carousel-namjestaj-small .namjestaj-bg-small img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  border-radius: 10px;
}

.namjestaj-detalji-section #carousel-namjestaj-small .owl-item.current {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.namjestaj-detalji-section .namjestaj-desc .model .model-title h3 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.namjestaj-detalji-section .namjestaj-desc .model .model-title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.namjestaj-desscription p{
    font-size: 1.8rem;
    font-weight: 600;
    color: black;
	margin-bottom: 20px;
}

.namjestaj-detalji-section .namjestaj-desc .model .model-title span {
  font-size: 1.6rem;
  color: black;
}

.namjestaj-detalji-section .namjestaj-desc .model .share .share-text {
  text-align: end;
}

.namjestaj-detalji-section .namjestaj-desc .model .share .share-text span {
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}

.namjestaj-detalji-section .namjestaj-desc .model .share .social .icon-container {
  height: 4rem;
  width: 4rem;
  border: 1px solid #bebebe;
  border-radius: 7.5px;
}

.namjestaj-detalji-section .namjestaj-desc .model .share .social .icon-container svg path {
  fill: #bebebe;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.namjestaj-detalji-section .namjestaj-desc .model .share .social .icon-container:hover {
  border: 1px solid black;
}

.namjestaj-detalji-section .namjestaj-desc .model .share .social .icon-container:hover svg path {
  fill: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.namjestaj-detalji-section .namjestaj-desc ul {
  margin-bottom: 3rem;
}

.namjestaj-detalji-section .namjestaj-desc ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 1rem;
}

.namjestaj-detalji-section .namjestaj-desc ul li .custom-width {
  width: 15rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}

.namjestaj-detalji-section .namjestaj-desc ul li span {
  font-size: 1.8rem;
  color: black;
}
.namjestaj-detalji-section .desc-text {
  font-size: 1.8rem;
  color: black;
}

.namjestaj-detalji-section .namjestaj-desc .row-price {
  min-height: 10rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.namjestaj-detalji-section .namjestaj-desc .price span {
  font-size: 2.4rem;
  color: black;
}

.namjestaj-detalji-section .namjestaj-desc .price span .discount {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ed1c24;
}

.namjestaj-detalji-section .namjestaj-desc .price span .separator {
  font-size: 2rem;
  color: black;
}

.namjestaj-detalji-section .namjestaj-desc .price span .original-price {
  text-decoration: line-through;
}

.namjestaj-detalji-section .namjestaj-desc .cart-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.namjestaj-detalji-section .namjestaj-desc .cart-button button {
  height: 5rem;
  width: 27rem;
  border-radius: 10px;
  border: 1px solid #ed1c24;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #ed1c24;
}

.namjestaj-detalji-section .namjestaj-desc .cart-button button:hover {
  background-color: #ed1c24;
  color: white;
}

.namjestaj-detalji-section .namjestaj-desc .cart-button button:focus {
  background-color: #c61017;
  color: white;
}

.namjestaj-detalji-section .namjestaj-desc .cart-button .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.namjestaj-detalji-section .namjestaj-desc .cart-button .btn-group button {
  width: auto;
  white-space: nowrap;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: 1rem;
}

.namjestaj-detalji-section .namjestaj-desc .cart-button .btn-group button.request-btn {
  border: 1px solid black;
  color: black;
}
.namjestaj-detalji-section .namjestaj-desc .cart-button .btn-group button.request-btn:hover {
  color: white;
  background-color: black;
}
.namjestaj-detalji-section .namjestaj-desc .cart-button .btn-group button.request-btn:focus {
  color: white;
  background-color: black;
}

.namjestaj-detalji-section .namjestaj-desc .desc-text p, .namjestaj-detalji-section .namjestaj-desc .desc-text li{
  font-size: 1.8rem;
  color: black;
}

.namjestaj-detalji-section .nazad button {
  height: 5rem;
  width: 27rem;
  border-radius: 10px;
  border: 1px solid black;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: black;
}

.namjestaj-detalji-section .nazad button:hover {
  background-color: black;
  color: white;
}

.namjestaj-detalji-section .nazad button:focus {
  background-color: #1a1a1a;
  color: white;
}

.namjestaj-detalji-section .spacer-15 {
  height: 15rem;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .namjestaj-detalji-section .namjestaj-desc {
    margin-top: 4rem;
  }
}

@media only screen and (max-width: 576px) {
  .namjestaj-detalji-section .namjestaj-desc .group {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  .namjestaj-detalji-section .namjestaj-desc .cart-button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
  .namjestaj-detalji-section .namjestaj-desc .cart-button button {
    width: 100%;
  }
  .namjestaj-detalji-section .namjestaj-desc .cart-button .btn-group {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
  .namjestaj-detalji-section .namjestaj-desc .cart-button .btn-group button {
    margin-bottom: 15px;
  }
}

.korpa-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48rem;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.korpa-section .title {
  height: 14rem;
}

.korpa-section .title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.korpa-section .title h2 {
  font-size: 1.8rem;
  color: black;
  text-transform: uppercase;
  margin-bottom: 0;
}

.korpa-section .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.korpa-section .proizvod-row {
  margin-bottom: 3rem;
}

.korpa-section .proizvod-container {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  min-height: 22.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.korpa-section .proizvod-container .row {
  width: 100%;
}

.korpa-section .proizvod-container .d-close .close {
  position: absolute;
  top: 2rem;
  right: 0rem;
  z-index: 3;
  font-size: 4rem;
}

.korpa-section .proizvod-container .m-close {
  height: 7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.korpa-section .proizvod-container .m-close .close {
  font-size: 4rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.korpa-section .proizvod-container .proizvod-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 14rem;
  width: 100%;
  border-radius: 10px;
}

.korpa-section .proizvod-container .model {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.korpa-section .proizvod-container .model-title h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #ed1c24;
  margin-bottom: 1rem;
}

.korpa-section .proizvod-container ul {
  margin-bottom: 0;
}

.korpa-section .proizvod-container ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 0.5rem;
}

.korpa-section .proizvod-container ul li .custom-width {
  width: 15rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}

.korpa-section .proizvod-container ul li span {
  font-size: 1.8rem;
  color: black;
}

.korpa-section .proizvod-container ul li .original-price {
  text-decoration: line-through;
}

.korpa-section .proizvod-container ul li:last-child {
  margin-bottom: 0 !important;
}

.korpa-section .proizvod-container .text-container {
  width: 100%;
}

.korpa-section .proizvod-container .text-container .kolicina-cijena {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.korpa-section .proizvod-container .text-container .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.korpa-section .proizvod-container .text-container .kolicina span {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  margin-right: 1.5rem;
}

.korpa-section .proizvod-container .text-container .kolicina input {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  width: 6rem;
  border: none;
  outline: none;
  background-color: transparent !important;
  text-align: center;
}

.korpa-section .proizvod-container .text-container .kolicina input::-webkit-input-placeholder {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

.korpa-section .proizvod-container .text-container .kolicina input:-ms-input-placeholder {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

.korpa-section .proizvod-container .text-container .kolicina input::-ms-input-placeholder {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

.korpa-section .proizvod-container .text-container .kolicina input::placeholder {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

.korpa-section .proizvod-container .text-container .kolicina button {
  height: 1.8rem;
}

.korpa-section .proizvod-container .text-container .kolicina button svg {
  fill: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.korpa-section .proizvod-container .text-container .kolicina button:hover svg {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.korpa-section .proizvod-container .text-container .cijena {
  font-size: 2.4rem;
  font-weight: 700;
  color: black;
  line-height: 1;
}

.korpa-section .proizvod-container .text-container .cijena span {
  color: #ed1c24;
}

.korpa-section .ukupna-cijena {
  height: 16rem;
  font-size: 3rem;
  font-weight: 700;
  color: black;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.korpa-section .ukupna-cijena .cijena {
  color: #ed1c24;
}

.korpa-section .ukupna-cijena .pdv span {
  font-size: 1.6rem;
  font-weight: 400;
  color: black;
}

.korpa-section .nastavite {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.korpa-section .nastavite button {
  height: 5rem;
  width: 27rem;
  border-radius: 10px;
  border: 1px solid #ed1c24;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #ed1c24;
}

.korpa-section .nastavite button:hover {
  background-color: #ed1c24;
  color: white;
}

.korpa-section .nastavite button:focus {
  background-color: #c61017;
  color: white;
}

.korpa-section .nazad button {
  height: 5rem;
  width: 27rem;
  border-radius: 10px;
  border: 1px solid black;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: black;
}

.korpa-section .nazad button:hover {
  background-color: black;
  color: white;
}

.korpa-section .nazad button:focus {
  background-color: #1a1a1a;
  color: white;
}

.korpa-section .spacer-15 {
  height: 15rem;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .korpa-section .proizvod-row {
    margin-bottom: 3rem;
  }
  .korpa-section .proizvod-container {
    border: 1px solid #e4e4e4;
    min-height: 48rem;
  }
  .korpa-section .proizvod-container .proizvod-img {
    height: 20rem;
    width: 100%;
  }
  .korpa-section .proizvod-container .model {
    padding-top: 2rem;
  }
  .korpa-section .proizvod-container .text-container {
    width: 100%;
  }
  .korpa-section .proizvod-container .text-container .naziv-proizvoda {
    text-align: center;
    margin-top: 2rem;
  }
  .korpa-section .proizvod-container .text-container .line {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .korpa-section .proizvod-container .text-container .kolicina-cijena {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  .korpa-section .row-ch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .korpa-section .ukupna-cijena {
    height: 12rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .korpa-section .nastavite {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .korpa-section .nastavite button {
    height: 5rem;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ed1c24;
    background-color: white;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #ed1c24;
  }
  .korpa-section .nastavite button:hover {
    background-color: #ed1c24;
    color: white;
  }
  .korpa-section .nastavite button:focus {
    background-color: #c61017;
    color: white;
  }
  .korpa-section .nazad button {
    height: 5rem;
    width: 100%;
    border-radius: 10px;
    border: 1px solid black;
    background-color: white;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: black;
  }
  .korpa-section .nazad button:hover {
    background-color: black;
    color: white;
  }
  .korpa-section .nazad button:focus {
    background-color: #1a1a1a;
    color: white;
  }
}

.isporuka-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48rem;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.isporuka-section .title {
  height: 14rem;
}

.isporuka-section .title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.isporuka-section .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.isporuka-section .spacer-15 {
  height: 15rem;
  width: 100%;
}

.isporuka-section .licni-podaci {
  width: 56rem;
}

.isporuka-section .licni-podaci .kupujte h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ed1c24;
}

.isporuka-section .licni-podaci .radio-lica label {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0;
}

.isporuka-section .licni-podaci .user-details input {
  font-size: 1.8rem;
  color: black;
  height: 5rem;
  width: 100%;
  border: 1px solid #e4e4e4;
  padding: 0.5rem 1.25rem;
  outline: none;
  margin-bottom: 1.5rem;
  border-radius: 10px;
}

.isporuka-section .licni-podaci .user-details textarea {
  font-size: 1.8rem;
  color: black;
  height: 12.5rem;
  width: 100%;
  border: 1px solid #e4e4e4;
  padding: 0.5rem 1.25rem;
  outline: none;
  border-radius: 10px;
}

.isporuka-section .licni-podaci .user-details input::-webkit-input-placeholder {
  font-size: 1.8rem;
}

.isporuka-section .licni-podaci .user-details input:-ms-input-placeholder {
  font-size: 1.8rem;
}

.isporuka-section .licni-podaci .user-details input::-ms-input-placeholder {
  font-size: 1.8rem;
}

.isporuka-section .licni-podaci .user-details input::placeholder {
  font-size: 1.8rem;
}

.isporuka-section .licni-podaci .user-details textarea::-webkit-input-placeholder {
  font-size: 1.8rem;
}

.isporuka-section .licni-podaci .user-details textarea:-ms-input-placeholder {
  font-size: 1.8rem;
}

.isporuka-section .licni-podaci .user-details textarea::-ms-input-placeholder {
  font-size: 1.8rem;
}

.isporuka-section .licni-podaci .user-details textarea::placeholder {
  font-size: 1.8rem;
}

.isporuka-section .licni-podaci .user-details .pib-pdv {
  width: 100%;
}

.isporuka-section .licni-podaci .user-details .pib-pdv input {
  width: 49%;
}

.isporuka-section .licni-podaci .user-details .pravno-lice {
  display: none;
}

.isporuka-section .licni-podaci .nalog span {
  font-size: 1.8rem;
  color: black;
}

.isporuka-section .licni-podaci .nalog button {
  font-size: 1.8rem;
  color: black;
  text-decoration: underline;
}

.isporuka-section .proizvod-container {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  min-height: 24.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.isporuka-section .proizvod-container .row {
  width: 100%;
}

.isporuka-section .proizvod-container .d-close .close {
  position: absolute;
  top: 2rem;
  right: 0rem;
  z-index: 3;
  font-size: 4rem;
  cursor: pointer;
}
.isporuka-section .nalog span {
  cursor: pointer;
}

.isporuka-section .proizvod-container .m-close {
  height: 7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.isporuka-section .proizvod-container .m-close button.close {
  font-size: 4rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.isporuka-section .proizvod-container .proizvod-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.isporuka-section .proizvod-container .model {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.isporuka-section .proizvod-container .model-title h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #ed1c24;
  margin-bottom: 1rem;
}

.isporuka-section .proizvod-container ul {
  margin-bottom: 0;
}

.isporuka-section .proizvod-container ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.isporuka-section .proizvod-container ul li .custom-width {
  width: 13rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: black;
}

.isporuka-section .proizvod-container ul li span {
  font-size: 1.8rem;
  color: black;
}

.isporuka-section .proizvod-container ul li .original-price {
  text-decoration: line-through;
}

.isporuka-section .proizvod-container ul li .ukupno {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.isporuka-section .proizvod-container ul li:last-child {
  margin-bottom: 0 !important;
}

.isporuka-section .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.isporuka-section .cijena-row span {
  font-size: 2rem;
  color: black;
}

.isporuka-section .ukupna-cijena-row {
  color: black;
}

.isporuka-section .ukupna-cijena-row span {
  font-size: 2.6rem;
  font-weight: 700;
}

.isporuka-section .ukupna-cijena-row .cijena {
  color: #ed1c24;
}

.isporuka-section .pdv-text {
  width: 100%;
  max-width: 43rem;
}

.isporuka-section .pdv-text span {
  font-size: 1.6rem;
  color: black;
}

.isporuka-section .nacin-placanja .nacin-placanja-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ed1c24;
}

.isporuka-section .nacin-placanja label {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  padding-left: 1rem;
  margin-bottom: 0;
  cursor: pointer;
}

.isporuka-section .row-buttons {
  min-height: 16rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* .isporuka-section .prihvatam {
  height: 100%;
} */

.isporuka-section .prihvatam label {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 0;
}

.isporuka-section .prihvatam .toggle-popup {
  font-size: 1.8rem;
  color: black;
  text-decoration: underline;
  cursor: pointer;
}

.isporuka-section .potvrdite {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.isporuka-section .potvrdite button {
  height: 5rem;
  width: 27rem;
  border-radius: 10px;
  border: 1px solid #ed1c24;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #ed1c24;
}

.isporuka-section .potvrdite button:hover {
  background-color: #ed1c24;
  color: white;
}

.isporuka-section .potvrdite button:focus {
  background-color: #c61017;
  color: white;
}

.isporuka-section .nazad a {
  height: 5rem;
  width: 27rem;
  border-radius: 10px;
  border: 1px solid black;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.isporuka-section .nazad a:hover {
  background-color: black;
  color: white !important;
}

.isporuka-section .nazad a:focus {
  background-color: #1a1a1a;
  color: white !important;
}

@media only screen and (max-width: 991px) {
  .isporuka-section .licni-podaci {
    width: 100%;
  }
  .isporuka-section .row-ch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .isporuka-section .nazad button {
    margin-top: 3rem;
  }
}

@media only screen and (max-width: 576px) {
  .isporuka-section .proizvod-row {
    margin-bottom: 3rem;
  }
  .isporuka-section .proizvod-container {
    border: 1px solid #e4e4e4;
    min-height: 47rem;
  }
  .isporuka-section .proizvod-container .proizvod-img {
    height: 20rem;
    width: 100%;
  }
  .isporuka-section .proizvod-container .model {
    padding-top: 2rem;
  }
  .isporuka-section .proizvod-container ul {
    margin-bottom: 1.5rem;
  }
  .isporuka-section .row-ch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .isporuka-section .ukupna-cijena {
    height: 12rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .isporuka-section .prihvatam {
    height: auto;
    /* margin-top: 4rem; */
  }
  .isporuka-section .potvrdite {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .isporuka-section .potvrdite button {
    width: 100%;
    /* margin-top: 3rem; */
  }
  .isporuka-section .nazad button {
    width: 100%;
    margin-top: 3rem;
  }
  .isporuka-section .nazad a {
    width: 100%;
    margin-top: 3rem;
  }
}

.o-nama-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48rem;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.o-nama-section .title {
  height: 14rem;
}

.o-nama-section .title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.o-nama-section .o-nama-text .line {
  height: 1px;
  width: 6rem;
  background-color: #ed1c24;
}

.o-nama-section .o-nama-text p {
  font-size: 1.8rem;
  color: black;
}

.o-nama-section .o-nama-img-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.o-nama-section .o-nama-img {
  position: relative;
  height: 64rem;
  width: 56rem;
  z-index: 1;
}

.o-nama-section .o-nama-img .img-1-container {
  height: 47rem;
  width: 47rem;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.o-nama-section .o-nama-img .img-2-container {
  height: 38rem;
  width: 38rem;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 2rem;
  z-index: 3;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
}

.o-nama-section .o-nama-img .best-choice {
  position: absolute;
  top: 5rem;
  left: 0;
  z-index: 4;
  width: 17.5rem;
}

.o-nama-section .o-nama-img .best-choice img {
  height: auto;
  width: 100%;
}

.o-nama-section .video {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
}

.o-nama-section .video .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.o-nama-section .video .play-video svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.o-nama-section .video .play-video:hover svg path {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.o-nama-section .yt-video {
  border-radius: 20px;
  display: none;
}

.o-nama-section .brojke {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.o-nama-section .brojke .custom-width {
  width: 42rem;
}

.o-nama-section .brojke .text-container {
  height: 100%;
}

.o-nama-section .brojke .text-container .value {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
  line-height: 1;
}

.o-nama-section .brojke .text-container .value sup {
  font-size: 3rem;
}

.o-nama-section .brojke .text-container .text {
  font-size: 2.4rem;
  color: black;
}

.o-nama-section .brojke .icon-container {
  height: 100%;
  width: 6rem;
}

.o-nama-section .brojke .icon-container img {
  height: auto;
  width: 100%;
}

.o-nama-section .brojke .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.o-nama-section .spacer-10 {
  height: 10rem;
  width: 100%;
}

.o-nama-section .spacer {
  height: 20rem;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .o-nama-section .o-nama-text {
    margin-bottom: 6rem;
  }
  .o-nama-section .o-nama-img-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-nama-section .o-nama-img {
    width: 100%;
  }
  .o-nama-section .o-nama-img .img-1-container {
    width: 88%;
  }
  .o-nama-section .o-nama-img .img-2-container {
    width: 75%;
  }
  .o-nama-section .yt-video {
    border-radius: 25px;
    display: none;
  }
  .o-nama-section .brojke {
    padding-top: 8rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-nama-section .brojke .custom-width {
    width: 100%;
  }
  .o-nama-section .spacer {
    height: 15rem;
    width: 100%;
  }
}

.zaposlenje-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48rem;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.zaposlenje-section .title {
  height: 14rem;
}

.zaposlenje-section .title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.zaposlenje-section .line {
  height: 1px;
  width: 6rem;
  background-color: #ed1c24;
}

.zaposlenje-section .zaposlenje-row .img-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 38rem;
  width: 38rem;
  border-radius: 20px;
}

.zaposlenje-section .zaposlenje-row .text-container h2 {
  font-size: 3rem;
  font-weight: 700;
  color: black;
  margin-bottom: 3rem;
}

.zaposlenje-section .zaposlenje-row .text-container .desc {
  margin-bottom: 3rem;
}

.zaposlenje-section .zaposlenje-row .text-container p {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 0;
}

.zaposlenje-section .zaposlenje-row .text-container a {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

.zaposlenje-section .zaposlenje-divider {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.zaposlenje-section .spacer {
  height: 15rem;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .zaposlenje-section .zaposlenje-row .img-container {
    width: 100%;
    margin-bottom: 3rem;
  }
  .zaposlenje-section .spacer {
    height: 10rem;
    width: 100%;
  }
}

.kontakt-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48rem;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.kontakt-section {
  background-size: auto 50rem;
  background-position: bottom;
  background-repeat: no-repeat;
}

.kontakt-section .title {
  height: 14rem;
}

.kontakt-section .title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.kontakt-section .line {
  height: 1px;
  width: 6rem;
  background-color: #ed1c24;
}

.kontakt-section .contact-info {
  margin-bottom: 5rem;
}

.kontakt-section .contact-info .robna-kuca {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 15rem;
  width: 100%;
  border-radius: 15px;
  z-index: 2;
}

.kontakt-section .contact-info .robna-kuca .mapa {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background-color: #ed1c24;
  z-index: 3;
  border-radius: 15px;
  opacity: 0;
}

.kontakt-section .contact-info .robna-kuca .mapa img {
  height: auto;
  width: 1.6rem;
}

.kontakt-section .contact-info .robna-kuca .mapa .text-container {
  width: 8rem;
}

.kontakt-section .contact-info .robna-kuca .mapa .text-container span {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.kontakt-section .contact-info .robna-kuca:hover .mapa {
  opacity: 1;
}

.kontakt-section .contact-info .contact {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kontakt-section .contact-info .contact .robna-kuca-title {
  width: 32rem;
}

.kontakt-section .contact-info .contact .robna-kuca-title span {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

.kontakt-section .contact-info .contact ul {
  margin-bottom: 0;
}

.kontakt-section .contact-info .contact ul li a {
  font-size: 1.8rem;
  color: black;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.kontakt-section .contact-info .contact ul li a .link {
  height: 3rem;
}

.kontakt-section .contact-info .contact ul li a .link .icon-container {
  width: 1.6rem;
}

.kontakt-section .contact-info .contact ul li a .link .icon-container img {
  height: auto;
  width: 100%;
}

.kontakt-section .contact-info .contact ul li a .link span {
  line-height: 1;
}

.kontakt-section .contact-info .contact ul li a:hover {
  color: black !important;
}

.kontakt-section .right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.kontakt-section .right-side .custom-width {
  width: 54rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.kontakt-section .right-side form .form-title h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.kontakt-section .right-side form .form-title h3 .text-1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ed1c24;
}

.kontakt-section .right-side form .form-title h3 .text-2 {
  font-size: 3rem;
  font-weight: 500;
  color: black;
}

.kontakt-section .right-side form input {
  height: 5rem;
  width: 100%;
  font-size: 1.8rem;
  border: none;
  padding: 0.5rem 2rem;
  outline: none;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
}

.kontakt-section .right-side form textarea {
  height: 18rem;
  width: 100%;
  font-size: 1.8rem;
  border: none;
  padding: 1.5rem 2rem;
  outline: none;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
}

.kontakt-section .right-side form input::-webkit-input-placeholder {
  font-size: 1.8rem;
  font-weight: 300;
}

.kontakt-section .right-side form input:-ms-input-placeholder {
  font-size: 1.8rem;
  font-weight: 300;
}

.kontakt-section .right-side form input::-ms-input-placeholder {
  font-size: 1.8rem;
  font-weight: 300;
}

.kontakt-section .right-side form input::placeholder {
  font-size: 1.8rem;
  font-weight: 300;
}

.kontakt-section .right-side form textarea::-webkit-input-placeholder {
  font-size: 1.8rem;
  font-weight: 300;
}

.kontakt-section .right-side form textarea:-ms-input-placeholder {
  font-size: 1.8rem;
  font-weight: 300;
}

.kontakt-section .right-side form textarea::-ms-input-placeholder {
  font-size: 1.8rem;
  font-weight: 300;
}

.kontakt-section .right-side form textarea::placeholder {
  font-size: 1.8rem;
  font-weight: 300;
}

.kontakt-section .right-side form .form-send {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.kontakt-section .right-side form .form-send button {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  height: 5rem;
  width: 27rem;
  background-color: transparent;
  border: 1px solid #ed1c24;
  color: #ed1c24;
  border-radius: 10px;
}

.kontakt-section .right-side form .form-send button:hover {
  background-color: #ed1c24;
  color: white;
}

.kontakt-section .right-side form .form-send button:focus {
  background-color: #c61017;
  color: white;
}

.kontakt-section .right-side .custom-width-2 {
  width: 32rem;
}

.kontakt-section .right-side .logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.kontakt-section .right-side .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.kontakt-section .right-side .radno-vrijeme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.kontakt-section .right-side .radno-vrijeme .icon-container {
  width: 3.8rem;
}

.kontakt-section .right-side .radno-vrijeme .icon-container img {
  height: auto;
  width: 100%;
}

.kontakt-section .right-side .radno-vrijeme .text-container {
  text-align: end;
}

.kontakt-section .right-side .radno-vrijeme .text-container span {
  font-size: 1.8rem;
  color: black;
}

.kontakt-section .spacer {
  height: 15rem;
  width: 100%;
}

.kontakt-page-footer {
  min-height: 72.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.kontakt-page-footer .mapouter {
  position: relative;
  text-align: right;
  height: 64rem;
  width: 100%;
}

.kontakt-page-footer .gmap_canvas {
  background: none !important;
  height: 64rem;
}

.kontakt-page-footer .footer-content {
  background-color: #ed1c24;
}

.kontakt-page-footer .footer-content .row-3 {
  min-height: 7.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kontakt-page-footer .footer-content .row-3 .copyright {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kontakt-page-footer .footer-content .row-3 .copyright span, .kontakt-page-footer .footer-content .row-3 .copyright span a {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.kontakt-page-footer .footer-content .row-3 .social {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.kontakt-page-footer .footer-content .row-3 .social .icon-container {
  height: 4rem;
  width: 4rem;
  background-color: white;
  border-radius: 5px;
}

.kontakt-page-footer .footer-content .row-3 .social .icon-container svg path {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.kontakt-page-footer .footer-content .row-3 .social .icon-container:hover {
  background-color: #4267B2;
}

.kontakt-page-footer .footer-content .row-3 .social .icon-container:hover svg path {
  fill: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.kontakt-page-footer .footer-content .row-3 .text-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kontakt-page-footer .footer-content .row-3 .text-container a {
  font-size: 1.7rem;
  color: white;
  text-transform: uppercase;
}

.kontakt-page-footer .footer-content .row-3 .text-container a:hover {
  color: white !important;
}

@media only screen and (max-width: 991px) {
  .kontakt-section {
    background-image: none !important;
  }
  .kontakt-section .contact-info .contact .robna-kuca-title {
    height: 100%;
    width: 100%;
    margin-bottom: 2rem;
  }
  .kontakt-section .contact-info .contact .title {
    width: 100%;
  }
  .kontakt-section .right-side {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .kontakt-section .right-side .custom-width {
    width: 100%;
  }
  .kontakt-section .right-side .custom-width form {
    width: 100%;
  }
  .kontakt-section .right-side .custom-width-2 {
    width: 100% !important;
  }
}

@media only screen and (max-width: 576px) {
  .footer-section .kontakt-page-footer .row-3 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-section .kontakt-page-footer .row-3 .row-3-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    min-height: 7.5rem;
  }
  .footer-section .kontakt-page-footer .row-3 .row-3-1 .social {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .footer-section .kontakt-page-footer .row-3 .row-3-1 .scroll-to-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer-section .kontakt-page-footer .row-3 .row-3-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    height: 7.5rem;
  }
  .footer-section .kontakt-page-footer .row-3 .row-3-2 .social {
    height: 100%;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.korisnicki-servis-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 48rem;
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
}

.korisnicki-servis-section .title {
  height: 14rem;
}

.korisnicki-servis-section .title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

.korisnicki-servis-section .red-line {
  height: 1px;
  width: 6rem;
  background-color: #ed1c24;
}

.korisnicki-servis-section .placanje h2 {
  font-size: 3rem;
  font-weight: 700;
  color: black;
  margin-bottom: 2.5rem;
}

.korisnicki-servis-section .placanje p {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 2.5rem;
}

.korisnicki-servis-section .placanje span {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

.korisnicki-servis-section .placanje ul {
  margin-bottom: 0;
}

.korisnicki-servis-section .placanje ul li {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

.korisnicki-servis-section .prevoz h2 {
  font-size: 3rem;
  font-weight: 700;
  color: black;
  margin-bottom: 2.5rem;
}

.korisnicki-servis-section .prevoz p {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 2.5rem;
}

.korisnicki-servis-section .prevoz ol {
  list-style: none;
  counter-reset: li;
  margin-bottom: 5rem;
}

.korisnicki-servis-section .prevoz ol li {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  counter-increment: li;
}
.korisnicki-servis-section .prevoz ol li a {
  font-size: 1.8rem;
  font-weight: 700;
  color: black !important;
  transition: all 0.3s ease-in-out;
}
.korisnicki-servis-section .prevoz ol li a:hover {
  color: #ed1c24 !important;
}

.korisnicki-servis-section .prevoz ol li::before {
  content: counter(li) ".";
  color: black;
  display: inline-block;
  width: 3rem;
}

.korisnicki-servis-section .prevoz ul {
  list-style: inside;
  margin-bottom: 0;
}

.korisnicki-servis-section .prevoz ul li {
  font-size: 1.8rem;
  color: black;
  position: relative;
  padding-left: 3rem;
}

.korisnicki-servis-section .prevoz ul li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #ed1c24;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.korisnicki-servis-section .faq-container h2 {
  font-size: 3rem;
  font-weight: 700;
  color: black;
  margin-bottom: 2.5rem;
}

.korisnicki-servis-section .faq-container .faq {
  margin-bottom: 2.5rem;
}

.korisnicki-servis-section .faq-container .faq p {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 0;
}

.korisnicki-servis-section .faq-container .faq .question {
  font-weight: 700;
}

.korisnicki-servis-section .line {
  height: 1px;
  width: 100%;
  background-color: #e4e4e4;
}

.korisnicki-servis-section .spacer-15 {
  height: 15rem;
  width: 100%;
}

#modal-prijava .modal-content {
  border-radius: 20px;
}

#modal-prijava .modal-header {
  padding: 3rem 1.5rem 0 1.5rem;
  border-bottom: none;
}

#modal-prijava .modal-header .title-container {
  position: relative;
}

#modal-prijava .modal-header .title-container h5 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

#modal-prijava .modal-header .title-container .close {
  padding: 0.5rem;
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  right: 0rem;
}

#modal-prijava .modal-body {
  padding: 3rem 1.5rem;
}

#modal-prijava .modal-body .modal-form input[type=text], #modal-prijava .modal-body .modal-form input[type=email], #modal-prijava .modal-body .modal-form input[type=password] {
  font-size: 1.8rem;
  color: black;
  width: 100%;
  height: 5rem;
  border: 1px solid #e4e4e4;
  padding: 0.5rem 1.25rem;
  outline: none;
  margin-bottom: 1rem;
  border-radius: 10px;
}

#modal-prijava .modal-body .modal-form input::-webkit-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#modal-prijava .modal-body .modal-form input:-ms-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#modal-prijava .modal-body .modal-form input::-ms-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#modal-prijava .modal-body .modal-form input::placeholder {
  font-size: 1.8rem;
  color: black;
}

#modal-prijava .modal-body .modal-form .modal-form-button {
  width: 100%;
}

#modal-prijava .modal-body .modal-form a {
  color: black !important;
  transition: all 0.3s ease-in-out;
}
#modal-prijava .modal-body .modal-form a:hover {
  color: #ed1c24 !important;
}

#modal-prijava .modal-body .modal-form .modal-form-button button {
  width: 100%;
  height: 5rem;
  background-color: transparent;
  border: 1px solid #ed1c24;
  color: #ed1c24;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  border-radius: 10px;
}

#modal-prijava .modal-body .modal-form .modal-form-button button:hover {
  background-color: #ed1c24;
  color: white;
}

#modal-prijava .modal-body .modal-form .modal-form-button button:focus {
  background-color: #c61017;
  color: white;
}

#modal-prijava .modal-body .zaboravili-lozinku {
  width: 100%;
}

#modal-prijava .modal-body .zaboravili-lozinku span {
  font-size: 1.6rem;
  color: black;
}

#modal-prijava .modal-body .zaboravili-lozinku .nova-lozinka {
  font-size: 1.6rem;
  color: black;
  text-decoration: underline;
  margin-left: 0.25rem;
}

#modal-prijava .modal-body .zaboravili-lozinku .nova-lozinka:hover {
  text-decoration: underline !important;
}

#modal-registracija .modal-content {
  border-radius: 20px;
}

#modal-registracija .modal-header {
  border-bottom: none;
  padding: 3rem 1.5rem 0 1.5rem;
}

#modal-registracija .modal-header .title-container {
  position: relative;
}

#modal-registracija .modal-header .title-container h5 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

#modal-registracija .modal-header .title-container .close {
  padding: 0.5rem;
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  right: 0rem;
}

#modal-registracija .modal-body {
  padding: 3rem 1.5rem;
}

#modal-registracija .modal-body .modal-form label {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0;
}

#modal-registracija .modal-body .modal-form input[type=text], #modal-registracija .modal-body .modal-form input[type=email], #modal-registracija .modal-body .modal-form input[type=password] {
  font-size: 1.8rem;
  color: black;
  width: 100%;
  height: 5rem;
  border: 1px solid #e4e4e4;
  padding: 0.5rem 1.25rem;
  outline: none;
  margin-bottom: 1rem;
  border-radius: 10px;
}

#modal-registracija .modal-body .modal-form input::-webkit-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#modal-registracija .modal-body .modal-form input:-ms-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#modal-registracija .modal-body .modal-form input::-ms-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#modal-registracija .modal-body .modal-form input::placeholder {
  font-size: 1.8rem;
  color: black;
}

#modal-registracija .modal-body .modal-form .popup-pravno-lice {
  display: none;
}

#modal-registracija .modal-body .modal-form .input-half {
  width: 49% !important;
}

#modal-registracija .modal-body .modal-form .modal-form-button {
  width: 100%;
}

#modal-registracija .modal-body .modal-form .modal-form-button button {
  width: 100%;
  height: 5rem;
  background-color: transparent;
  border: 1px solid #ed1c24;
  color: #ed1c24;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  border-radius: 10px;
  margin-top: 1rem;
}

#modal-registracija .modal-body .modal-form .modal-form-button button:hover {
  background-color: #ed1c24;
  color: white;
}

#modal-registracija .modal-body .modal-form .modal-form-button button:focus {
  background-color: #c61017;
  color: white;
}

#modal-uspjesna-kupovina .modal-content {
  border-radius: 20px;
}

#modal-uspjesna-kupovina .modal-header {
  padding: 3rem 1.5rem 0 1.5rem;
  border-bottom: none;
}

#modal-uspjesna-kupovina .modal-header .title-container {
  position: relative;
}

#modal-uspjesna-kupovina .modal-header .title-container h5 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

#modal-uspjesna-kupovina .modal-header .title-container .uspjesna-kupovina span {
  font-size: 2.4rem;
  color: black;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}

#modal-uspjesna-kupovina .modal-header .title-container .close {
  padding: 0.5rem;
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  right: 0rem;
}

#modal-uspjesna-kupovina .modal-body {
  padding: 3rem 1.5rem;
}

#modal-uspjesna-kupovina .modal-body .text-container p {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 3rem;
}

#modal-uspjesna-kupovina .modal-body .text-container .hvala-vam span {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}

#modal-uspjesna-kupovina .modal-body .text-container .line {
  height: 1px;
  width: 100%;
  max-width: 30rem;
  background-color: #e4e4e4;
}

#modal-uspjesna-kupovina .modal-body .text-container .logo-container {
  width: 20rem;
}

#modal-uspjesna-kupovina .modal-body .text-container .logo-container img {
  height: auto;
  width: 100%;
}


#modal-uslovi-kupovine .modal-content {
  border-radius: 20px;
}

#modal-uslovi-kupovine .modal-header {
  border-bottom: none;
  padding: 3rem 1.5rem 0 1.5rem;
}

#modal-uslovi-kupovine .modal-header .title-container {
  position: relative;
}

#modal-uslovi-kupovine .modal-header .title-container h5 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

#modal-uslovi-kupovine .modal-header .title-container .close {
  padding: 0.5rem;
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  right: 0rem;
}

#modal-uslovi-kupovine .modal-body {
  padding: 3rem 1.5rem;
}

#modal-uslovi-kupovine .modal-body .text-container h6 {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 3rem;
}

#modal-uslovi-kupovine .modal-body .text-container p {
  font-size: 1.8rem;
  font-weight: 400;
  color: black;
  margin-bottom: 3rem;
}

#modal-uslovi-kupovine .modal-body .line {
  height: 1px;
  width: 30rem;
  background-color: #e4e4e4;
}

#modal-uslovi-kupovine .modal-body .logo-container {
  max-width: 24rem;
  width: 100%;
  margin-bottom: 5rem;
}

#modal-uslovi-kupovine .modal-body .logo-container img {
  height: auto;
  width: 100%;
}

@media only screen and (min-width: 576px) {
  #modal-prijava .modal-dialog {
    max-width: 460px;
    margin: 14rem auto auto auto;
  }
  #modal-registracija .modal-dialog {
    max-width: 460px;
    margin: 14rem auto auto auto;
  }
  #modal-uspjesna-kupovina .modal-dialog {
    max-width: 460px;
    margin: 14rem auto auto auto;
  }
  
   #modal-uslovi-kupovine .modal-dialog {
    max-width: 780px;
    margin: 14rem auto auto auto;
  }
}











.preporucujemo-section .preporucujemo-card .product-amount input {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
  border: none;
  height: 4rem;
  width: 4rem;
  text-align: center;
  font-size: 2rem;
  color: black;
  background-color: white;
}

.preporucujemo-section .preporucujemo-card .product-amount button {
  height: 4rem;
  width: 4rem;
}

.preporucujemo-section .preporucujemo-card .product-amount button svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.preporucujemo-section .preporucujemo-card .product-amount button:hover svg {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



.namjestaj-section .right-side .ponuda-card .product-amount input {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
  border: none;
  height: 4rem;
  width: 4rem;
  text-align: center;
  font-size: 2rem;
  color: black;
  background-color: white;
}

.namjestaj-section .right-side .ponuda-card .product-amount button {
  height: 4rem;
  width: 4rem;
}

.namjestaj-section .right-side .ponuda-card .product-amount button svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.namjestaj-section .right-side .ponuda-card .product-amount button:hover svg {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
}














.namjestaj-section .left-side .filteri {
  position: relative;
  margin-bottom: 4rem;
}

.namjestaj-section .left-side .filteri #filteri-btn,
.namjestaj-section .left-side .filteri #primjeni-btn {
  height: 4rem;
  width: 100%;
  background-color: #ed1c24;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.namjestaj-section .left-side .filteri #filteri-btn.focus,
.namjestaj-section .left-side .filteri #primjeni-btn.focus {
  background-color: #c61017;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.namjestaj-section .left-side .filteri #filteri-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
  border-radius: 10px;
}

.namjestaj-section .left-side .filteri #filteri-btn:after {
  content: url(../img/chevron-down-filteri.svg);
  height: 18px;
  width: 18px;
  margin-left: 0.2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.namjestaj-section .left-side .filteri #primjeni-btn {
  margin-bottom: 2rem;
  border-radius: 10px;
}

.namjestaj-section .left-side .filteri #zatvori-btn {
  height: 4rem;
  width: 100%;
  font-size: 1.7rem;
  color: black;
  text-decoration: underline;
  margin-bottom: 0rem;
  border-radius: 10px;
}

.namjestaj-section .left-side .filteri .filteri-content {
  position: absolute;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1028;
  background-color: white;
  max-width: calc(100% - 30px);
}

.namjestaj-section .left-side .filteri .filteri-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  margin: 2rem 0;
}

.namjestaj-section .left-side .filteri .filteri-content label {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.namjestaj-section .left-side .filteri .filteri-content select {
  font-size: 1.6rem;
  font-weight: 400;
  color: black;
  height: 4rem;
  width: 100%;
  padding: 0rem 1rem 0rem 1.25rem;
  border: 1px solid #e4e4e4;
  margin-bottom: 2rem;
  border-radius: 10px;
}

.namjestaj-section .left-side .filteri #filteri-content.on-c {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}










@media only screen and (min-width: 992px) {
  .namjestaj-section .left-side .filteri {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .namjestaj-section .left-side #accordion-kategorije {
    display: none;
  }
}












.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
}

.navbar .navbar-nav .nav-item .nav-link:before {
  content: ' ';
  height: 2rem;
  width: 1px;
  background-color: #ed1c24;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item .nav-link:after {
  content: ' ';
  height: 2rem;
  width: 1px;
  background-color: #ed1c24;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}



@media only screen and (min-width: 992px) {
  .navbar .navbar-nav .nav-item.active .nav-link:before,
  .navbar .navbar-nav .nav-item.active .nav-link:after {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar .navbar-nav .nav-item .nav-link:hover:before,
  .navbar .navbar-nav .nav-item .nav-link:focus:before {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navbar .navbar-nav .nav-item .nav-link:hover:after,
  .navbar .navbar-nav .nav-item .nav-link:focus:after {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}





.namjestaj-detalji-section .namjestaj-desc .product-amount input {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
  border: none;
  height: 4rem;
  /* width: 4rem; */
  width: 2rem;
  text-align: center;
  font-size: 2rem;
  color: black;
  background-color: white;
}

.namjestaj-detalji-section .namjestaj-desc .product-amount button {
  height: 4rem;
  width: 4rem;
}

.namjestaj-detalji-section .namjestaj-desc .product-amount button svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.namjestaj-detalji-section .namjestaj-desc .product-amount button:hover svg {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.footer-section .footer-bg .row-3 .social .icon-container:hover {
  background-color: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



.kontakt-page-footer .footer-content .row-3 .social .icon-container:hover {
  background-color: black;
}

.footer-section .footer-bg .row-2 .korisnicki-servis .logo-container {
	/* margin-bottom: 2rem; */
	margin-bottom: 3rem;
}

.zaposlenje-section .zaposlenje-row .text-container .kontakt-email {
	font-size: 1.8rem;
    color: black;
}

.zaposlenje-section .zaposlenje-row .text-container .kontakt-email a{
		-webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.zaposlenje-section .zaposlenje-row .text-container .kontakt-email a:hover {
	-webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #ed1c24 !important;
	
}

.fb-btn{
   border:none!important;
   outline: none !important;
   background-color: #3B5998!important;
   color: white !important;
}
.fb-btn:hover{
   background-color: #3B5998 !important;
   color: white !important;
}
.google-btn{
   background-color: #dd4b39!important;
   color: white !important;
   border:none!important;
   outline: none !important;
}

.search_form{
   position:relative;
}
.search_form button{
   position:absolute;
   right: 15px;
   top: 50%;
   transform: translateY(-50%);
   -webkit-transform: translateY(-50%);
}
.search_form2 button{
  right: 25px;
}


.requestModal .modal-content{
    background: #ed1c24;
}
.requestModal h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }

 .requestModal input,
  .requestModal textarea {
    width: 100%;
    font-size: 16px;
    color: #ed1c24;
    padding: 12px;
    border: none;
    margin-bottom: 10px;
    outline: none;
  }
  .requestModal textarea {
    height: 120px;
    resize: none;
  }
  .requestModal button {
    padding: 15px 60px;
    color: #ed1c24;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    background: #ffffff;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    border: none;
    outline: none;
    margin-bottom: 10px;
  }
.requestModal button:hover{
    background: #ed1c24;
    color: #ffffff;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.requestModal .modal-footer {
  border: none;
}

.diff_colors{
   display:flex;
   flex-wrap: wrap;
  border-radius: 10px;	
}
.diff_colors_img{
    width: 100px;
	margin-right: 20px;
		transition: all .4s ease;
	margin-bottom: 20px;
	border: 1px solid transparent;
}
.diff_colors_img:hover{
   border: 1px solid #ed1c24;
	transition: all .4s ease;
}
.diff_colors_img img{
    width: 100%;
	height: 100px;
	object-fit:  cover;
	object-position: center;
}

/* privremeno */
.o-nama-section .brojke {
	-ms-flex-pack: start !important;
  -webkit-box-pack: start !important;
          justify-content: flex-start !important;
}

.kategorije-section .container #carousel-kategorije .card-container .card-back {
	background-size: cover !important;
}



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



.f-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-cards-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.f-payment img {
  object-fit: contain;
  object-position: right;
  width: auto;
}



.loader-order {
  display: block;
  /* border: 4px solid rgba(0, 0, 0, 0.3); */
  border: 4px solid rgba(237, 28, 36, 0.3);
  /* border-top: 4px solid #2E3091; */
  border-top: 4px solid #ed1c24;


  /* border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white; */
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  animation: spin 2s linear infinite;
  margin-right: 1.5rem;
}
.loader-order.hidden {
  display: none;
}
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}
.submit-order-wrapper {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 576px) {
  .submit-order-wrapper {
    width: 100%;
    flex-direction: column;
    margin-top: 3rem;
  }
  .isporuka-section .potvrdite button {
    margin-top: 2rem;
  }
}

/* 
.isporuka-section .isporuka label {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 0;
  font-weight: 400;
} */

input[type=checkbox], input[type=radio] {
  cursor: pointer;
}

.company-info h4 {
  color: white;
  font-size: 3rem;
}
.company-info p {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.company-info a {
  font-size: 1.8rem;
  color: white !important;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1rem;

}
.company-info a .link .icon-container {
  width: 1.6rem;
}
.company-info a .link span {
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
.company-info a:hover span {
  color: #ed1c24 !important;
}
.namjestaj-detalji-section .namjestaj-desc .amount-txt {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  margin-right: 1.5rem;
}




.cat-list {
  width: 25rem;
}
.cat-list .main-cat {
  padding: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: transparent;
  border-bottom: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cat-list .main-li {
  border-bottom: 1px solid #e4e4e4;
}
.cat-list .sub-ul {
  margin-bottom: 2rem;
}
.cat-list .sub-li {
  margin-bottom: 1rem;
}
.cat-list .main-cat {
  width: 100%;
}
.cat-list .main-cat {
  font-size: 2.1rem;
  font-weight: 700;
  color: black;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.cat-list .card .card-body {
  padding: 0;
}
.cat-list .card .card-body ul {
  margin-bottom: 2rem;
}
.cat-list .card .card-body ul li {
  margin-bottom: 1rem;
}
.cat-list ul li a {
  font-size: 1.7rem;
  color: black;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cat-list ul li a.active {
  color: #ed1c24;
}
.cat-list ul li summary.active {
  color: #ed1c24;
}

@media only screen and (max-width: 576px) {
  .cat-list .main-cat {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .namjestaj-banner {
    height: 24rem;
  }
  .f-payment {
    flex-direction: column;
  }
  .f-payment .ws-pay {
    margin-bottom: 2rem;
    display: block;
  }
  .f-payment img {
    height: 4rem;
  }
}

.footer-section .footer-bg .row-2 .korisnicki-servis .radno-vrijeme .text-container {
  text-align: right;
}
.footer-section .footer-bg .row-2 .korisnicki-servis .text-container a {
  display: block;
  width: 100%;
  text-align: right;
}
.footer-section .footer-bg .row-2 .korisnicki-servis ul {
  margin-bottom: 0;
}
.footer-section .footer-bg .row-2 .korisnicki-servis .radno-vrijeme {
  margin-bottom: 2rem;
}






#requestModal .modal-content {
  border-radius: 20px;
}

#requestModal .modal-header {
  border-bottom: none;
  padding: 3rem 1.5rem 0 1.5rem;
}

#requestModal .modal-header .title-container {
  position: relative;
}

#requestModal .modal-header .title-container h5 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}

#requestModal .modal-header .title-container .close {
  padding: 0.5rem;
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  right: 0rem;
}

#requestModal .modal-body {
  padding: 3rem 1.5rem;
}

#requestModal .modal-body .modal-form label {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0;
}

#requestModal .modal-body .modal-form input[type=text], #requestModal .modal-body .modal-form input[type=email] {
  font-size: 1.8rem;
  color: black;
  width: 100%;
  height: 5rem;
  border: 1px solid #e4e4e4;
  padding: 0.5rem 1.25rem;
  outline: none;
  margin-bottom: 1rem;
  border-radius: 10px;
}
#requestModal .modal-body .modal-form textarea {
  font-size: 1.8rem;
  color: black;
  width: 100%;
  height: 15rem;
  border: 1px solid #e4e4e4;
  padding: 0.5rem 1.25rem;
  outline: none;
  margin-bottom: 1rem;
  border-radius: 10px;
}

#requestModal .modal-body .modal-form input::-webkit-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#requestModal .modal-body .modal-form input:-ms-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#requestModal .modal-body .modal-form input::-ms-input-placeholder {
  font-size: 1.8rem;
  color: black;
}

#requestModal .modal-body .modal-form input::placeholder {
  font-size: 1.8rem;
  color: black;
}

#requestModal .modal-body .modal-form .popup-pravno-lice {
  display: none;
}

#requestModal .modal-body .modal-form .input-half {
  width: 49% !important;
}

#requestModal .modal-body .modal-form .modal-form-button {
  width: 100%;
}

#requestModal .modal-body .modal-form .modal-form-button button {
  width: 100%;
  height: 5rem;
  background-color: transparent;
  border: 1px solid #ed1c24;
  color: #ed1c24;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  border-radius: 10px;
  margin-top: 1rem;
}

#requestModal .modal-body .modal-form .modal-form-button button:hover {
  background-color: #ed1c24;
  color: white;
}

#requestModal .modal-body .modal-form .modal-form-button button:focus {
  background-color: #c61017;
  color: white;
}
.namjestaj-section .title h1 span {
  color: black;
}


.no-search-products p {
  font-size: 2rem;
  color: black;
  text-transform: uppercase;
}














.member {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 4rem;
}

.member .img-container {
  height: 28rem;
  width: 100%;
  position: relative;
}

.member .img-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: left;
  -o-object-position: left;
}

.member .text-container h3 {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
}

.member .text-container a {
  margin-bottom: 0.5rem;
}

.member .text-container a,
.member .text-container p {
  display: block;
  font-size: 2rem;
  color: black !important;
}

.member .text-container a:hover {
  color: #ed1c24 !important;
}

.member .line {
  height: 1px;
  width: 100%;
  background-color: #e8e8e8;
}




.kontakt-page-footer .footer-content .row-3 .text-container ul {
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
}

.kontakt-page-footer .footer-content .row-3 .text-container ul li a {
  margin-right: 3rem;
}

.kontakt-page-footer .footer-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media only screen and (max-width: 991px) {
  .kontakt-page-footer .footer-content .row-3 .text-container ul {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .kontakt-page-footer .footer-content .row-3 .text-container ul li a {
    margin-bottom: 1rem;
    display: block;
    margin-right: 0;
  }
}
@media only screen and (max-width: 576px) {
  .footer-section .kontakt-page-footer .row-3 {
    flex-direction: column;
  }
}




a.home-btn {
  height: 5rem;
  width: 27rem;
  border-radius: 10px;
  border: 1px solid #ed1c24;
  background-color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #ed1c24 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

a.home-btn:hover {
  background-color: #ed1c24 !important;
  color: white !important;
}

a.home-btn:focus {
  background-color: #c61017 !important;
  color: white !important;
}


.isporuka-section .potvrdite form {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}


.black-bar {
  height: 15rem;
  width: 100%;
  background-color: #333333;
}
body.dark {
  background-color: #333333;
}
main.dark {
  background-color: #333333;
  padding-bottom: 10rem;
}
main .payment-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: white;
}


.payment-section.isporuka-section .title {
  height: auto;
  margin-bottom: 3rem;
}

.top-bar-small {
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  width: 100%;
  background-color: transparent;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  z-index: 2;
}

.top-bar-small .brojevi-telefona a:hover {
  color: white !important;
}
.top-bar-small .navbar-brand img {
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 567px) {
  .top-bar-small .navbar-brand {
    width: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .row-pay {
    flex-direction: column-reverse;
  }
}






















.discount-wrapper {
  display: flex;
  align-items: flex-end;
}
.discount-wrapper s {
  line-height: 1;
}
.discount-percentage {
  display: flex;
  margin-left: 1.5rem;
}
.namjestaj-detalji-section .namjestaj-desc .price .discount-value {
  background: #ed1c24;
  height: 20px;
  font-size: 1.5rem;
  color: white;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.triangle {
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
  background-color: #ed1c24;
  height: 20px;
  width: 10px;
  margin-right: -0.05rem;
}
.namjestaj-detalji-section .namjestaj-desc .price div {
  font-size: 2.4rem;
  color: black;
}
.namjestaj-detalji-section .namjestaj-desc .model .model-title span,
.namjestaj-detalji-section .namjestaj-desc .price span {
  font-size: 2rem;
  font-weight: 500;
}
.namjestaj-detalji-section .namjestaj-desc .price .current-price {
  font-size: 4.8rem;
  font-weight: 700;
  color: #ed1c24;
}
.namjestaj-detalji-section .line {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.namjestaj-detalji-section .namjestaj-desc .row-price {
  min-height: auto;
}

.namjestaj-detalji-section .namjestaj-desc ul {
  margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
  .namjestaj-detalji-section .namjestaj-desc .cart-button .btn-group button {
    margin-left: 0;
  }
}

.namjestaj-detalji-section .namjestaj-desc ul li .custom-width {
  width: auto;
  margin-right: 0.5rem;
}
.namjestaj-detalji-section .namjestaj-desc .model .share .social .icon-container svg path {
  fill: black;
}
.namjestaj-detalji-section .namjestaj-desc .model .share .social .icon-container {
  border: none;
}
.namjestaj-detalji-section .namjestaj-desc .model .share .social .icon-container:hover {
  border: none;
}

.namjestaj-detalji-section .namjestaj-desc .model .share .share-text span {
  font-weight: 400;
}

.namjestaj-detalji-section .namjestaj-desc .model .model-title h1 {
  color: black;
  font-weight: 500;
}
.namjestaj-detalji-section .namjestaj-desc .amount-txt,
.namjestaj-detalji-section .namjestaj-desc ul li span,
.namjestaj-detalji-section .namjestaj-desc ul li .custom-width {
  font-weight: 500;
  font-size: 2rem;
}

.namjestaj-detalji-section .namjestaj-desc .model .share .share-text span {
  font-size: 2rem;
}

.discount-wrapper s {
  font-size: 3rem;
}

.namjestaj-detalji-section .namjestaj-desc .price .discount-wrapper2 {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.card-price-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.namjestaj-section .right-side .ponuda-card .price span .separator {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.namjestaj-section .right-side .ponuda-card .price span.discount-percentage {
  margin-left: 0;
  margin-right: 0;
}

.korpa-section .pdv {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-top: 1rem;
}

@media only screen and (max-width: 767px) {
  .korpa-section .pdv {
    text-align: left;
  }
}