/* COLORS USAGE */
/* COMMON */
body {
  font-family: "Roboto Condensed", sans-serif;
  color: #0F0024;
  margin: 0;
  line-height: initial;
}

.overflow-hidden {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

.container-full {
  /* koment */
  width: 100%;
  padding: 0 20px;
  max-width: 1440px;
  margin: auto;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
  width: 100%;
}

a {
  text-decoration: none;
}

i {
  /* koment */
}

hr {
  width: 66px;
  height: 2px;
  background: #a61e03;
  border: none;
  margin: 15px auto;
}

span {
  /* koment */
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  /* koment */
}

p {
  line-height: 20px;
}

h1, h2 {
  font-size: 45px;
  text-align: center;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 27px;
  color: #0F0024;
  position: relative;
  font-weight: 600;
}
h1 span, h2 span {
  font-size: 35px;
  font-weight: 300;
}
h1:after, h2:after {
  position: absolute;
  content: "";
  width: 66px;
  height: 2px;
  background: #a61e03;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 960px) {
  h1, h2 {
    font-size: 50px;
  }
}
@media (max-width: 680px) {
  h1, h2 {
    font-size: 40px;
  }
}

h2 {
  font-size: 32px;
}

h3 {
  font-weight: 300;
  font-size: 30px;
  text-align: center;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 27px;
  color: #0F0024;
  position: relative;
}

.subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  width: 100%;
  max-width: 600px;
  margin: auto;
  line-height: 30px;
}
@media (max-width: 480px) {
  .subtitle {
    font-size: 17px;
  }
}

.wrapper {
  height: calc(100vh - 182px);
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 2px;
  margin-top: 182px;
  scroll-behavior: smooth;
}
@media (max-width: 960px) {
  .wrapper {
    height: calc(100vh - 113px);
    margin-top: 113px;
  }
}
@media (max-width: 480px) {
  .wrapper {
    height: calc(100vh - 94px);
    margin-top: 113px;
  }
}
@media (min-width: 2000px) {
  .wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}

.benefits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  max-width: 960px;
  margin-top: 90px;
}
.benefits .benefit-item {
  text-align: center;
  margin: 0 20px;
}
.benefits .benefit-item img {
  height: 55px;
  width: auto;
  margin-bottom: 14px;
}
.benefits .benefit-item span {
  display: block;
  font-size: 19px;
}
@media (max-width: 1250px) {
  .benefits {
    max-width: 680px;
  }
  .benefits .benefit-item img {
    height: 40px;
  }
  .benefits .benefit-item span {
    font-size: 15px;
  }
}
@media (max-width: 820px) {
  .benefits {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    align-items: flex-start;
  }
  .benefits .benefit-item {
    text-align: center;
    margin: 30px;
    max-width: 120px;
  }
}
@media (max-width: 480px) {
  .benefits {
    justify-content: space-around;
  }
  .benefits .benefit-item {
    width: 100%;
    margin-bottom: 40px;
    max-width: inherit;
  }
  .benefits .benefit-item img {
    height: 60px;
  }
  .benefits .benefit-item span {
    font-size: 21px;
  }
}

.modal {
  position: fixed;
  background: #000000a3;
  width: 100%;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  align-items: center;
  justify-content: center;
  display: none;
  overflow-x: auto;
  overflow-y: auto;
}
.modal.active {
  display: flex;
}
.modal .container {
  overflow: auto;
  max-height: 100vh;
  padding: 20px;
}
.modal .container .modal-box {
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000017;
  margin-bottom: 22px;
  overflow: hidden;
  max-width: 480px;
  margin: auto;
}
.modal .container .modal-box .modal-header {
  padding: 15px;
  position: relative;
}
.modal .container .modal-box .modal-header h3 {
  margin-bottom: 15px;
}
.modal .container .modal-box .modal-header hr {
  /* koment */
}
.modal .container .modal-box .modal-header h4 {
  text-align: center;
  margin: 0;
  font-weight: 400;
  font-size: 18px;
}
.modal .container .modal-box .modal-header .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
}
.modal .container .modal-box .modal-header .close-btn img {
  width: 15px;
}
.modal .container .modal-box .modal-content {
  padding: 10px 15px 0 15px;
}
.modal .container .modal-box .modal-content form {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-around;
}
.modal .container .modal-box .modal-content form input {
  /* koment */
}
.modal .container .modal-box .modal-content form input::placeholder {
  /* koment */
}
.modal .container .modal-box .modal-content form textarea {
  /* koment */
}
.modal .container .modal-box .modal-content form textarea::placeholder {
  /* koment */
}
.modal .container .modal-box .modal-content form .input-wrap {
  display: block;
  width: 50%;
  padding: 12px 10px;
}
.modal .container .modal-box .modal-content form .input-wrap input {
  box-shadow: 0 0 7px #00000026;
  border-radius: 5px;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 300;
  min-height: 42px;
  display: block;
  width: 100%;
  border: 1px solid #0000001f;
  min-width: 100%;
}
.modal .container .modal-box .modal-content form .input-wrap input::placeholder {
  color: #0F0024;
}
.modal .container .modal-box .modal-content form .input-wrap input::-webkit-input-placeholder {
  color: #0F0024;
}
.modal .container .modal-box .modal-content form .input-wrap input::-moz-placeholder {
  color: #0F0024;
}
@media (max-width: 560px) {
  .modal .container .modal-box .modal-content form .input-wrap {
    width: 100%;
    min-width: 100%;
  }
}
.modal .container .modal-box .modal-content form .collector-input-name {
  width: 100%;
}
.modal .container .modal-box .modal-content form .textarea-wrap {
  width: 100%;
  min-width: 100%;
  display: block;
  padding: 12px 10px;
}
.modal .container .modal-box .modal-content form .textarea-wrap textarea {
  width: 100%;
  min-width: 100%;
  border: none;
  box-shadow: 0 0 7px #00000026;
  border-radius: 5px;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 300;
  min-height: 42px;
  display: block;
  border: 1px solid #0000001f;
  min-width: 100%;
}
.modal .container .modal-box .modal-content form .check-wrap {
  width: 100%;
  display: flex;
  padding: 3px 10px 15px;
  align-items: center;
}
.modal .container .modal-box .modal-content form .check-wrap input[type=checkbox] {
  margin: 5px 6px 5px 0;
}
.modal .container .modal-box .modal-content form .check-wrap label {
  font-size: 14px;
  color: #585858;
}
.modal .container .modal-box .modal-content form .submit-wrap {
  width: 100%;
  display: block;
  padding: 0;
  margin-left: -30px;
}
.modal .container .modal-box .modal-content form .submit-wrap button {
  width: calc(100% + 30px);
  background: #a61e03;
  border: none;
  padding: 15px 10px;
  color: #FFF;
  text-transform: uppercase;
  margin: 0 auto;
}
.modal .container .modal-box .modal-content form .submit-wrap button span {
  /* koment */
}
.modal .container .modal-reservation {
  max-width: 1010px;
  padding: 2rem 4rem;
}
@media (max-width: 820px) {
  .modal .container .modal-reservation {
    padding: 0;
  }
}
.modal .container .modal-reservation p {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 0;
}
.modal .container .modal-reservation .modal-header {
  padding: 0;
  border-bottom: 0;
  justify-content: space-between;
  margin-bottom: 20px;
}
.modal .container .modal-reservation .modal-header h3 {
  font-size: 28px;
  font-weight: bold;
  padding: 0 20px;
}
.modal .container .modal-reservation .modal-header h3:not(:last-child):after {
  content: "";
  width: 2px;
  background: #0F0024;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.modal .container .modal-reservation .modal-header h3 span {
  font-weight: 300;
}
.modal .container .modal-reservation .modal-header > * {
  flex-grow: 1;
}
.modal .container .modal-reservation .modal-header .close-btn {
  top: 0;
  right: 0;
}
@media (max-width: 820px) {
  .modal .container .modal-reservation .modal-header {
    padding: 10px;
    background: #0F0024;
  }
  .modal .container .modal-reservation .modal-header h3 {
    font-size: 14px;
    color: white;
    font-weight: 500;
    padding: 0 5px;
  }
  .modal .container .modal-reservation .modal-header .close-btn {
    top: 8px;
    right: 8px;
  }
  .modal .container .modal-reservation .modal-header .close-btn img {
    filter: invert(1);
    width: 12px;
  }
}
.modal .container .modal-reservation .modal-content {
  padding: 0;
  border: 0;
}
.modal .container .modal-reservation .modal-content .reservation-arrows .res-arrow {
  border: 0;
  position: absolute;
  top: 70px;
  background: none;
  z-index: 99;
}
.modal .container .modal-reservation .modal-content .reservation-arrows .res-arrow-prev {
  left: -30px;
  display: none;
}
.modal .container .modal-reservation .modal-content .reservation-arrows .res-arrow-next {
  right: -30px;
}
@media (max-width: 820px) {
  .modal .container .modal-reservation .modal-content {
    padding: 0 10px;
  }
  .modal .container .modal-reservation .modal-content .reservation-arrows .res-arrow-prev {
    left: -4px;
  }
  .modal .container .modal-reservation .modal-content .reservation-arrows .res-arrow-next {
    right: -4px;
  }
}
.modal .container .modal-reservation .modal-content form {
  display: block;
  position: relative;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper {
  min-height: 213px;
  transition: all 0.5s ease 0s;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper {
  display: flex;
  height: fit-content;
  overflow-y: hidden;
  overflow-x: scroll;
  padding: 10px 0;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
@media (max-width: 820px) {
  .modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper {
    justify-content: left;
    margin: 0 10px;
  }
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper::-webkit-scrollbar {
  display: none;
  /* SAFARI AND CHROME */
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper p.time-header {
  position: absolute;
  top: 160px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .day-box {
  text-align: center;
  color: #0F0024;
  font-weight: bold;
  font-size: 15px;
  background: #E5E5EF;
  padding: 5px 15px;
  margin: 5px;
  border-radius: 5px;
  width: 100px;
  transition: all 0.4s ease;
  border: 0.5px #E5E5EF solid;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .day-box .day-number {
  font-size: 40px;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .day-box:hover {
  border: 0.5px #0F0024 solid;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .day-input {
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: -9999;
  clip: rect(0 0 0 0);
  left: 0;
  top: 0;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .day-input[type=radio]:focus ~ label {
  color: white;
  background: #0F0024;
  z-index: 2;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .day-input[type=radio]:checked ~ label {
  color: white;
  background: #0F0024;
  z-index: 2;
  transition: all 0.4s ease;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day [type=radio]:checked ~ label ~ .reservation-times-wrapper {
  z-index: 1;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day [type=radio]:checked ~ label ~ .reservation-times-wrapper > * {
  opacity: 1;
  transform: translateX(0);
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .reservation-times-wrapper {
  position: absolute;
  top: 185px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: -5;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .reservation-times-wrapper [type=radio]:focus ~ label {
  color: white;
  background: #B71F00;
  z-index: 2;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .reservation-times-wrapper [type=radio]:checked ~ label {
  color: white;
  background: #B71F00;
  z-index: 2;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .reservation-times-wrapper > * {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .reservation-times-wrapper .time-input {
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: -9999;
  clip: rect(0 0 0 0);
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .reservation-times-wrapper .time-box {
  color: white;
  background: #0F0024;
  font-size: 17px;
  padding: 5px;
  border-radius: 5px;
  margin: 4px;
  transition: all 0.4s ease;
}
.modal .container .modal-reservation .modal-content form .reservation-wrapper .reservation-day-wrapper .reservation-day .reservation-times-wrapper .time-box:hover {
  background: #474556;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper {
  display: flex;
  flex-wrap: wrap;
  background: #0F0024;
  border-radius: 10px;
  margin-top: 10px;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-first {
  width: 30%;
  padding: 10px;
  align-self: center;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-second {
  width: 42%;
  padding: 10px;
  align-self: center;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-second label {
  color: white;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper .input-wrap {
  width: 100%;
  padding: 5px;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper .input-wrap input {
  min-height: 34px;
  height: 34px;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-third {
  width: 28%;
  flex-grow: 2;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-third .submit-button {
  margin: 0;
  height: 100%;
  width: 100%;
  font-size: 34px;
  font-weight: bold;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: #E5E5EF;
  padding: 15px;
  transition: all 0.6s ease;
}
.modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-third .submit-button:hover {
  background: #d5d5de;
  transition: all 0.6s ease;
}
@media (max-width: 820px) {
  .modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-third {
    padding: 10px;
  }
  .modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-third .submit-button {
    font-size: 18px;
    border-radius: 10px;
    padding: 8px;
  }
}
@media (max-width: 820px) {
  .modal .container .modal-reservation .modal-content form .personal-data-wrapper {
    margin: 10px;
  }
  .modal .container .modal-reservation .modal-content form .personal-data-wrapper .personal-data-item {
    width: 100%;
  }
}
.modal .container .modal-thank-you {
  max-width: 700px;
  padding: 20px 40PX;
  /* THANK YOU PAGE (MODAL) FOR RESERVATION FORM */
}
@media (max-width: 820px) {
  .modal .container .modal-thank-you {
    padding: 20px 10px;
  }
}
.modal .container .modal-thank-you .thank-you .thank-you-info {
  background: #0F0024;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
.modal .container .modal-thank-you .thank-you .thank-you-info p {
  margin-bottom: 0.8em;
  font-weight: 300;
}
.modal .container .modal-thank-you .thank-you .thank-you-info p span {
  font-weight: bold;
}
.modal .container .modal-thank-you .thank-you .thank-you-info p .green-text {
  font-size: 20px;
  color: #13CB51;
}
.modal .container .modal-thank-you .thank-you .thank-you-img-box {
  display: flex;
  column-gap: 4%;
  justify-content: center;
}
@media (max-width: 820px) {
  .modal .container .modal-thank-you .thank-you .thank-you-img-box {
    column-gap: 2%;
  }
}
.modal .container .modal-thank-you .thank-you .thank-you-img-box .thank-you-img-wrapper {
  width: 33%;
}
.modal .container .modal-thank-you .thank-you .thank-you-img-box .thank-you-img-wrapper img {
  width: 100%;
  height: auto;
}
.modal .res-container {
  padding: 10px;
  max-height: 100%;
}

/* casto kladene dotazy */
.casto-kladene-dotazy-section {
  margin: 40px 0;
  padding: 20px 0;
}
.casto-kladene-dotazy-section #accordion-dotazy {
  max-width: 1000px;
  padding: 40px;
  border-radius: 21px;
  margin: 35px auto;
  box-shadow: 0px 16px 48px rgba(15, 0, 36, 0.1254);
  background: white;
}
.casto-kladene-dotazy-section #accordion-dotazy .accordion-item {
  border-color: #980E1A;
}
.casto-kladene-dotazy-section #accordion-dotazy .accordion-item .accordion-header .accordion-button {
  font-size: 24px;
  font-weight: 200;
}
.casto-kladene-dotazy-section #accordion-dotazy .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #0F0024;
  box-shadow: none;
}
.casto-kladene-dotazy-section #accordion-dotazy .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  filter: brightness(0%);
}
.casto-kladene-dotazy-section #accordion-dotazy .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.casto-kladene-dotazy-section #accordion-dotazy .accordion-item .accordion-body {
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 480px) {
  .casto-kladene-dotazy-section #accordion-dotazy {
    padding: 15px;
  }
}

.opening-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.opening-item .address-row {
  font-size: 12px;
  margin-bottom: 0;
}
.opening-item .opened-status {
  width: 20px;
  height: 20px;
  background: #f00;
  border-radius: 100%;
  margin-right: 8px;
  position: relative;
}
.opening-item .opened-status:after {
  content: "";
  position: absolute;
  background: #f00;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  left: 3px;
  top: 3px;
}
.opening-item .opened-status.active {
  background: #7cdc79;
}
.opening-item .opened-status.active:after {
  background: #d7fbd6;
}
.opening-item span {
  display: inline-block;
  font-weight: 400;
}
@media (max-width: 680px) {
  .opening-item span {
    font-size: 12px;
  }
}

.svoz-btn {
  display: flex;
  padding: 10px 27px;
  background: #E5E5EF;
  color: #100125;
  text-transform: uppercase;
  font-size: 17px;
  height: 69px;
  text-align: center;
  transition: 200ms;
}
.svoz-btn img {
  width: 25px;
  height: auto;
  margin-right: 15px;
}
.svoz-btn span {
  font-size: 25px;
  font-weight: 600;
}
.svoz-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px #0f002438;
}
@media (max-width: 480px) {
  .svoz-btn {
    display: none;
  }
}
@media (max-width: 1380px) {
  .svoz-btn .btn-text {
    display: none;
  }
  .svoz-btn img {
    margin-right: 0;
  }
}

/* SIDEBAR BOXES */
.box {
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000017;
  margin-bottom: 22px;
  overflow: hidden;
}
.box.visit-us .top {
  padding: 21px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box.visit-us .top .title-venue {
  display: flex;
  align-items: center;
}
.box.visit-us .top .title-venue img {
  width: 18px;
  margin-right: 9px;
}
.box.visit-us .top .title-venue span {
  font-size: 15px;
  color: #a61e03;
}
.box.visit-us .top .title-servis {
  font-size: 15px;
}
.box.visit-us .content {
  text-align: center;
}
.box.visit-us .content h3 {
  font-weight: 300;
  font-size: 30px;
  margin: 0;
}
.box.visit-us .content p {
  margin: 10px auto;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
}
.box.visit-us .content #map {
  margin-bottom: -30px;
}
.box.visit-us .content .btns {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 26px;
}
.box.visit-us .content .btns a.contact-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.box.visit-us .content .btns a.contact-btn img {
  width: auto;
  height: 32px;
  margin-bottom: 10px;
  transition: 200ms;
}
.box.visit-us .content .btns a.contact-btn span {
  color: #000;
  display: block;
  width: 100%;
  font-size: 14px;
}
.box.visit-us .content .btns a.contact-btn:hover img {
  transform: scale(1.2);
}
.box.visit-us .cta-btn {
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  display: block;
  background: #a61e03;
  text-transform: uppercase;
  color: #FFF;
  font-size: 16px;
  transition: 200ms;
}
.box.visit-us .cta-btn span {
  /* koment */
}
.box.visit-us .cta-btn:hover {
  transform: scale(1.2);
}
.box.advantages {
  padding: 21px 15px;
  text-align: center;
}
@media (max-width: 960px) and (min-width: 480px) {
  .box.advantages {
    margin: 30px auto 50px;
  }
}
.box.advantages img {
  width: 50px;
}
.box.advantages h3 {
  font-weight: 400;
  font-size: 22px;
  margin: 25px 0;
  text-align: left;
}
.box.advantages h3 span {
  display: block;
}
.box.advantages h3 span:first-child {
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
}
.box.advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.box.advantages ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.box.advantages ul li img {
  width: 32px;
  margin-right: 10px;
}
.box.advantages ul li p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.box.advantages ul li p span {
  display: block;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 960px) {
  .box.advantages ul {
    display: flex;
    width: 100%;
    max-width: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .box.advantages ul li {
    padding: 10px 10px 10px 0;
    width: 50%;
    margin: 0;
  }
  .box.advantages ul li img {
    width: 25px;
  }
}
@media (max-width: 960px) {
  .box.advantages h3 {
    text-align: center;
  }
  .box.advantages h3 span {
    display: unset;
  }
}
.box.phone-info {
  background: none;
  box-shadow: none;
  text-align: center;
}
.box.phone-info img {
  max-width: 140px;
}
.box.phone-info hr {
  width: 66px;
  height: 2px;
  background: #a61e03;
  border: none;
  margin: 15px auto;
}
.box.phone-info h3 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}
.box.phone-info p {
  font-size: 14px;
}
@media (max-width: 960px) {
  .box.phone-info {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: center;
    flex-wrap: wrap;
  }
  .box.phone-info .content {
    margin-left: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    min-width: 200px;
  }
  .box.phone-info hr {
    margin: initial;
    order: 2;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .box.phone-info hr {
    margin: auto;
  }
}
@media (max-width: 960px) {
  .box.phone-info h3 {
    text-align: left;
    order: 1;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .box.phone-info h3 {
    text-align: center;
  }
}
@media (max-width: 960px) {
  .box.phone-info p {
    order: 3;
    max-width: 400px;
  }
}
@media (max-width: 960px) and (max-width: 600px) {
  .box.phone-info p {
    text-align: center;
  }
}
.box.call-us {
  background: none;
  box-shadow: none;
  text-align: center;
  background-image: url(../../img/background-phone.png);
  background-size: 80%;
  overflow: auto;
  padding: 80px 20px 95px;
  background-position: top center;
  margin-top: -50px;
  position: sticky;
  top: 0;
}
.box.call-us h3 {
  font-size: 25px;
  color: #8fc178;
  margin: 0 auto 9px;
}
.box.call-us a {
  font-weight: 600;
  font-size: 18px;
  color: #0F0024;
}
@media (max-width: 960px) {
  .box.call-us {
    background-size: contain;
    background-repeat: no-repeat;
    padding: 60px 20px 60px;
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
.box.lowest-price {
  padding: 1rem;
  background-image: url(../../img/lowest-price.svg);
  background-size: 21%;
  background-position: right 15px bottom 15px;
  background-repeat: no-repeat;
  border: 1.5px black dashed;
  cursor: pointer;
}
.box.lowest-price h3 {
  text-align: left;
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  padding-bottom: 25px;
}
.box.lowest-price h3 span:first-child {
  display: block;
  font-weight: 600;
}
.box.lowest-price img {
  height: 1em;
  width: auto;
  margin-left: 5px;
}
.box.lowest-price .more-info {
  font-weight: 600;
}
.box.lowest-price:hover {
  background-color: #fafafa;
}
.box.reviews h3 {
  text-align: left;
  padding: 0 15px;
  font-size: 24px;
  font-weight: 400;
}
.box.reviews h3 span:first-child {
  display: block;
  font-size: 32px;
}
.box.reviews .review-slides {
  font-family: "Nunito", sans-serif;
  margin: 0 auto;
  padding: 0 15px;
  overflow: hidden;
  margin-bottom: 15px;
}
.box.reviews .review-slides .splide__track {
  overflow: visible;
}
.box.reviews .review-slides .splide__track .splide__list {
  margin: 0 auto !important;
  width: 100% !important;
}
.box.reviews .review-slides .splide__track .review-box {
  font-size: 13px;
  border: #e8e8e8 1px solid;
  padding: 10px;
  border-radius: 8px;
  height: 100%;
  width: 95% !important;
  margin: 0 auto;
}
.box.reviews .review-slides .splide__track .review-box .review-header {
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.box.reviews .review-slides .splide__track .review-box .review-header .review-name {
  transform: translateZ(0);
  backface-visibility: hidden;
  margin-bottom: 0;
}
.box.reviews .review-slides .splide__track .review-box .review-header img {
  width: 20px;
  height: auto;
  margin-top: 5px;
}
.box.reviews .review-slides .splide__track .review-box .review-text {
  line-height: 1.2;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.box.reviews .review-slides .splide__track .is-active {
  transform: perspective(1px) scale(1.1);
  transition: all 400ms;
  background: #E5E5EF;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .box.reviews h3 {
    text-align: center;
  }
}

.checked-star {
  color: #FFC400;
}

/* DETAIL GRID */
.detail-grid {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  grid-template-rows: 1fr;
  gap: 0px 20px;
  grid-template-areas: "left-sidebar content right-sidebar";
}
@media (max-width: 960px) {
  .detail-grid {
    grid-template-areas: "content content right-sidebar" "left-sidebar left-sidebar left-sidebar";
    grid-row-gap: 50px;
  }
}
@media (max-width: 680px) {
  .detail-grid {
    grid-template-areas: "content" "right-sidebar" "left-sidebar";
    grid-template-columns: 1fr;
  }
}

.left-sidebar {
  grid-area: left-sidebar;
}

.content {
  grid-area: content;
}

.right-sidebar {
  grid-area: right-sidebar;
}

/* LOWEST PRICE MODAL */
#modal-lowest-price .container {
  padding-bottom: 80px;
}
#modal-lowest-price .modal-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 875px;
  padding: 48px 24px;
  background: #0F0024;
}
#modal-lowest-price .modal-box .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 999;
}
#modal-lowest-price .modal-box .close-btn img {
  width: 15px;
  filter: brightness(0) invert(1);
}
#modal-lowest-price .modal-box .modal-text {
  width: 55%;
  padding-right: 1.5rem;
}
#modal-lowest-price .modal-box .modal-text h3 {
  color: white;
  font-size: 40px;
}
#modal-lowest-price .modal-box .modal-text h3 span {
  font-weight: 600;
}
#modal-lowest-price .modal-box .modal-text p {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
  color: white;
  text-align: center;
}
#modal-lowest-price .modal-box .modal-text img {
  margin-top: 2rem;
  margin-bottom: -1.5rem;
  width: 100%;
  height: auto;
}
#modal-lowest-price .modal-box .modal-form {
  width: 45%;
  padding: 0 0 0 1.5rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  align-content: flex-end;
  justify-content: center;
}
#modal-lowest-price .modal-box .modal-form h4 {
  font-size: 30px;
  color: white;
  text-align: center;
  padding-bottom: 1rem;
}
#modal-lowest-price .modal-box .modal-form p {
  color: white;
  font-size: 18px;
  padding-bottom: 2rem;
  text-align: center;
  font-weight: 300;
}
#modal-lowest-price .modal-box .modal-form form {
  width: 100%;
}
#modal-lowest-price .modal-box .modal-form form .input-wrap {
  display: block;
  width: 100%;
  padding-bottom: 20px;
}
#modal-lowest-price .modal-box .modal-form form .input-wrap input {
  min-height: 34px;
  height: 34px;
  border-radius: 5px;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 300;
  display: block;
  width: 100%;
  border: 1px solid #0000001f;
  min-width: 100%;
}
#modal-lowest-price .modal-box .modal-form form button {
  margin-top: 10px;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  border: 0;
  border-radius: 5px;
  background: #E5E5EF;
  padding: 10px;
}
#modal-lowest-price .modal-box .modal-form form button:hover {
  background: #d5d5de;
}
#modal-lowest-price .modal-box .modal-form:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  border-left: white 1px dashed;
}
@media (max-width: 680px) {
  #modal-lowest-price .modal-box .modal-text {
    width: 100%;
    padding: 0;
    padding-bottom: 2rem;
  }
  #modal-lowest-price .modal-box .modal-text img {
    margin: 1rem 0 0 0;
  }
  #modal-lowest-price .modal-box .modal-form {
    width: 100%;
    padding: 0;
  }
  #modal-lowest-price .modal-box .modal-form:before {
    display: none;
  }
}

@media (min-width: 710px) {
  .hide-desktop {
    display: none;
  }
}
/* HEADER - NAVIGATION */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #FFF;
}
header .top-bar {
  background: #0F0024;
  color: #FFF;
  width: 100%;
  padding: 12px 0;
}
header .top-bar .container-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .top-bar .left, header .top-bar .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .top-bar .contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 35px;
}
header .top-bar .contact-item img {
  height: 18px;
  width: auto;
  margin-right: 10px;
}
header .top-bar .contact-item span {
  color: #FFF;
}
@media (max-width: 1024px) {
  header .top-bar .contact-item span {
    font-size: 14px;
  }
}
@media (max-width: 710px) {
  header .top-bar .contact-item {
    margin-right: 10px;
    flex-grow: 1;
  }
}
@media (max-width: 710px) {
  header .top-bar .hide-mobile {
    display: none;
  }
}
header .navigation-bar {
  box-shadow: 0 3px 5px #0f00240d;
  /* hide / show mobile and desktop menu */
  /* menu mobile styles */
  /* reservace and svoz buttons */
}
@media (max-width: 480px) {
  header .navigation-bar {
    height: 50px;
  }
}
header .navigation-bar .logo {
  display: flex;
  align-items: center;
}
header .navigation-bar .logo img {
  display: block;
  width: 120px;
}
@media (max-width: 680px) {
  header .navigation-bar .logo img {
    width: 100px;
  }
}
@media (max-width: 480px) {
  header .navigation-bar .logo img {
    width: 90px;
  }
}
header .navigation-bar .container-full {
  display: flex;
  justify-content: space-between;
  padding-right: 0;
  align-items: stretch;
}
@media (max-width: 480px) {
  header .navigation-bar .container-full {
    height: 100%;
  }
}
header .navigation-bar .disable-click {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff0;
  z-index: 10;
}
@media (max-width: 960px) {
  header .navigation-bar .disable-click {
    display: none !important;
  }
}
header .navigation-bar nav {
  flex-grow: 1;
  height: 69px;
  display: none;
  /* svoz, rezervace - buttony v mobilni navigaci */
  /* END - svoz, rezervace - buttony v mobilni navigaci */
  /* DESKTOP nav */
}
header .navigation-bar nav .mobile-nav-items {
  position: relative;
}
@media (min-width: 480px) {
  header .navigation-bar nav .mobile-nav-items {
    display: none;
  }
}
header .navigation-bar nav .mobile-nav-items .mobile-nav-item a {
  pointer-events: auto;
  display: flex;
  padding: 10px 27px;
  justify-content: center;
  text-transform: uppercase;
  font-size: 17px;
  height: 69px;
  text-align: center;
  align-items: center;
}
header .navigation-bar nav .mobile-nav-items .mobile-nav-item a .mobile-nav-img {
  min-width: 45px;
  text-align: center;
}
header .navigation-bar nav .mobile-nav-items .mobile-nav-item a .mobile-nav-img img {
  width: 35px;
  height: auto;
  display: block;
}
header .navigation-bar nav .mobile-nav-items .mobile-nav-item a .mobile-nav-text {
  min-width: 200px;
  text-align: center;
}
header .navigation-bar nav .mobile-nav-items .mobile-nav-item a .mobile-nav-text span {
  font-size: 25px;
  font-weight: 600;
}
header .navigation-bar nav .mobile-nav-items .mobile-nav-item a.reservation-mobile {
  color: white;
  background: #B71F00;
}
header .navigation-bar nav .mobile-nav-items .mobile-nav-item a.reservation-mobile img {
  width: 45px;
}
header .navigation-bar nav .mobile-nav-items .mobile-nav-item a.svoz-mobile {
  background: #E5E5EF;
  color: #100125;
}
header .navigation-bar nav .mobile-nav-items .pricelist-nav {
  padding: 10px 27px;
  text-transform: uppercase;
  font-size: 25px;
  align-items: center;
  font-weight: bold;
}
header .navigation-bar nav .mobile-nav-items .pricelist-nav div {
  width: fit-content;
  padding: 0 30px;
  background: white;
  margin: 0 auto;
}
header .navigation-bar nav .mobile-nav-items .pricelist-nav:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: black;
  bottom: 25px;
  left: 0;
  z-index: -1;
}
header .navigation-bar nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 960px) {
  header .navigation-bar nav ul {
    width: 100%;
    flex-wrap: wrap;
    display: block;
  }
}
header .navigation-bar nav ul li {
  text-align: center;
  width: 100%;
  /*@media(max-width: 960px) {
      width: 100%;
  }*/
}
header .navigation-bar nav ul li a {
  color: #0F0024;
  padding: 12px 10px 9px;
  display: block;
  transition: 300ms;
  position: relative;
}
header .navigation-bar nav ul li a img {
  width: auto;
  height: 22px;
  margin-bottom: 3px;
  max-width: 80px;
}
header .navigation-bar nav ul li a span {
  display: block;
}
header .navigation-bar nav ul li a:after {
  content: "";
  right: -10px;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d5d5d5;
  margin: 12px 10px 11px;
}
header .navigation-bar nav ul li a:hover {
  background: #E22600;
  color: #FFF;
  opacity: 1;
}
header .navigation-bar nav ul li a:hover span {
  color: #FFF;
}
header .navigation-bar nav ul li a:hover img {
  filter: brightness(2) grayscale(1) invert(1);
}
header .navigation-bar nav ul li a:hover:after {
  opacity: 0;
}
@media (max-width: 960px) {
  header .navigation-bar nav ul li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    pointer-events: none;
  }
  header .navigation-bar nav ul li a img {
    margin-right: 15px;
    height: 30px;
    display: none;
  }
  header .navigation-bar nav ul li a span {
    font-size: 20px;
  }
  header .navigation-bar nav ul li a:after {
    display: none;
  }
}
header .navigation-bar nav ul li.basic-link {
  height: 69px;
  display: flex;
  align-items: stretch;
}
header .navigation-bar nav ul li.basic-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
header .navigation-bar nav ul li.basic-link a span {
  /* koment */
}
header .navigation-bar nav ul li.basic-link a:hover {
  opacity: 1;
}
@media (max-width: 960px) {
  header .navigation-bar nav ul li.basic-link {
    height: auto;
  }
  header .navigation-bar nav ul li.basic-link a {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
}
header .navigation-bar nav ul li:hover .submenu {
  display: flex;
  justify-content: left;
  /* display first subsubmenu in current submenu */
  /* li:first-child .subsubmenu{
       display: flex;
   }*/
}
@media (max-width: 960px) {
  header .navigation-bar nav ul li:hover .submenu {
    display: none;
  }
}
header .navigation-bar nav ul li:last-child a:after {
  display: none;
}
header .navigation-bar nav ul li.active .submenu {
  display: block;
}
header .navigation-bar nav ul li.active .menu-link {
  background: #a61e03;
  color: #FFF;
}
header .navigation-bar nav .menu-contact-mobile {
  display: none;
}
@media (max-width: 960px) {
  header .navigation-bar nav .menu-contact-mobile {
    width: 100%;
    padding: 12px 20px;
    color: #FFF;
    background: #0F0024;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-size: 17px;
  }
  header .navigation-bar nav .menu-contact-mobile:hover {
    background: #a61e03;
  }
}
header .navigation-bar nav.active {
  display: flex;
  flex-direction: column;
  padding-bottom: 44px;
}
@media (max-width: 960px) {
  header .navigation-bar nav {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background: #FFF;
    z-index: 20;
    top: 113px;
    border-top: 1px solid #f7f8ff;
    padding: 0;
    height: calc(100vh - 113px);
    box-shadow: 0 10px 10px #00000008;
    overflow: auto;
  }
}
@media (max-width: 480px) {
  header .navigation-bar nav {
    top: 94px;
    height: calc(100vh - 94px);
  }
}
header .navigation-bar .toggle {
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  font-size: 18px;
  display: none;
  margin: 0 0 0 20px;
  transition: 300ms;
}
header .navigation-bar .toggle:hover {
  background: #f7f8ff;
}
header .navigation-bar .toggle:hover #menuToggle span {
  width: 26px;
}
@media (max-width: 960px) {
  header .navigation-bar .toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  header .navigation-bar .toggle {
    justify-content: flex-end;
    padding-right: 20px;
  }
}
header .navigation-bar #menuToggle span {
  display: block;
  width: 15px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #030826;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.33s ease;
}
header .navigation-bar #menuToggle span:first-child {
  transform-origin: 0% 0%;
  width: 26px;
}
header .navigation-bar #menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
  width: 26px;
}
header .navigation-bar #menuToggle.active span {
  opacity: 1;
  transform: rotate(-45deg) translate(-1px, -1px);
  background: #232323;
  width: 26px;
}
header .navigation-bar #menuToggle.active span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
header .navigation-bar #menuToggle.active span:nth-last-child(2) {
  transform: rotate(45deg) translate(-7px, -6px);
}
header .navigation-bar #menuToggle {
  margin-bottom: -7px;
  margin-left: 10px;
}
@media (max-width: 960px) {
  header .navigation-bar {
    /* menu mobile styles */
  }
  header .navigation-bar .menu-desktop {
    display: none;
  }
  header .navigation-bar .menu-mobile {
    display: block !important;
  }
}
header .navigation-bar .submenu {
  position: absolute;
  background: #FFF;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 1px solid #0f00241a;
  padding: 0 40px 30px 40px;
  display: none;
  box-shadow: 0 10px 15px #32323314;
  height: 430px;
  overflow: hidden;
  /* ---- NEW MENU ----- */
  /* OLD */
}
header .navigation-bar .submenu .submenu-img {
  position: absolute;
  bottom: -40%;
  right: -60px;
  width: auto;
}
header .navigation-bar .submenu #submenu-img-Apple {
  bottom: 0;
  right: -40px;
  width: 300px;
}
header .navigation-bar .submenu #submenu-img-Samsung {
  bottom: -15%;
  right: -60px;
}
header .navigation-bar .submenu #submenu-img-Xiaomi {
  bottom: -15%;
  right: -60px;
  width: 250px;
}
header .navigation-bar .submenu #submenu-img-Huawei {
  width: 350px;
}
header .navigation-bar .submenu #submenu-img-Realme, header .navigation-bar .submenu #submenu-img-Vivo {
  right: 0;
}
@media (max-width: 1200px) {
  header .navigation-bar .submenu #submenu-img-Sony {
    display: none;
  }
}
header .navigation-bar .submenu ul {
  height: 80px;
  align-items: flex-start;
  /* hide first display subsubmenu */
  /* display subsubmenu */
}
header .navigation-bar .submenu ul li {
  padding: 0 20px 0 0;
  width: auto;
  /* hover on subcategory */
}
header .navigation-bar .submenu ul li a {
  display: flex;
  align-items: center;
}
header .navigation-bar .submenu ul li a h2 {
  font-size: 24px;
  padding-right: 10px;
  margin: 15px 0;
  color: #939393;
}
@media (max-width: 1080px) {
  header .navigation-bar .submenu ul li a h2 {
    font-size: 20px;
  }
}
header .navigation-bar .submenu ul li a h2:after {
  position: unset;
}
header .navigation-bar .submenu ul li a:after {
  display: none;
}
header .navigation-bar .submenu ul li a:hover {
  background: transparent;
}
header .navigation-bar .submenu ul li .subsubmenu {
  width: 100%;
  height: 360px;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  padding: 20px 40px 30px 40px;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: baseline;
}
header .navigation-bar .submenu ul li .subsubmenu a {
  padding: 10px 20px 10px 10px;
}
header .navigation-bar .submenu ul li .subsubmenu a span {
  font-size: 15px;
}
header .navigation-bar .submenu ul li .subsubmenu a:hover span {
  color: #E22600;
}
header .navigation-bar .submenu ul li:hover .subsubmenu {
  display: flex;
}
header .navigation-bar .submenu ul li:hover h2 {
  color: #0F0024;
}
header .navigation-bar .submenu ul li:hover h2:after {
  position: absolute;
}
header .navigation-bar .submenu ul li:hover .arrow-down {
  stroke: #0F0024;
}
header .navigation-bar .submenu .submenu-row {
  width: 100%;
}
header .navigation-bar .submenu .submenu-row .container-full {
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}
header .navigation-bar .submenu .submenu-row h2 {
  text-align: left;
  font-weight: 300;
  font-size: 25px;
  width: 100%;
}
header .navigation-bar .submenu .submenu-row h2:after {
  display: none;
}
@media (max-width: 960px) {
  header .navigation-bar .submenu {
    position: relative;
    padding: 0;
  }
  header .navigation-bar .submenu .submenu-row .container-full {
    padding: 5px 10px 5px;
  }
  header .navigation-bar .submenu .submenu-row .container-full h2 {
    margin: 10px 7px;
  }
  header .navigation-bar .submenu .submenu-row .container-full .category-ul {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    display: flex;
  }
  header .navigation-bar .submenu .submenu-row .container-full .category-ul li {
    /*width: auto;*/
    display: block;
  }
  header .navigation-bar .submenu .submenu-row .container-full .category-ul li a {
    min-width: inherit;
    padding: 7px 7px !important;
    pointer-events: auto;
  }
  header .navigation-bar .submenu .submenu-row .container-full .category-ul li a img {
    height: 20px !important;
    display: block;
  }
  header .navigation-bar .submenu .submenu-row .container-full .category-ul li a span {
    font-size: 14px;
  }
}
header .navigation-bar .menu-mobile .submenu {
  position: relative;
  width: 100%;
  display: none;
  box-shadow: 0 10px 15px #32323314;
  max-height: calc(100vh - 200px);
  overflow: auto;
  padding: 0;
  height: auto;
}
header .navigation-bar .menu-mobile .submenu .category-ul {
  align-items: center;
  height: auto;
}
header .navigation-bar .menu-mobile .submenu .category-ul li {
  padding: 0;
}
header .navigation-bar .nav-contact {
  display: flex;
  gap: 36px;
  padding: 0 15px;
  background-color: #a61e03;
}
header .navigation-bar .nav-contact__box {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}
header .navigation-bar .nav-contact__box img {
  width: 38px;
  height: auto;
  max-height: 40px;
}
header .navigation-bar .nav-contact__box .text {
  max-width: 200px;
  color: white;
}
header .navigation-bar .nav-contact__box .text h6 {
  font-weight: bold;
  font-size: 15px;
}
header .navigation-bar .nav-contact__box .text p {
  font-size: 13px;
  line-height: 15px;
}
header .navigation-bar .nav-contact__box:not(:last-child):after {
  background-color: white;
  transform: skewX(-15deg) rotate(180deg);
  content: "";
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -21px;
}
header .navigation-bar .nav-contact__price {
  cursor: pointer;
}
header .navigation-bar .nav-contact__tel .text {
  width: 120px;
}
header .navigation-bar .nav-contact__adr .text {
  width: 120px;
}
@media (max-width: 1100px) {
  header .navigation-bar .nav-contact {
    display: none;
  }
}
header .navigation-bar .nav-buttons {
  display: flex;
}
header .navigation-bar .nav-buttons .cta-btn {
  padding: 10px 27px;
  background: #a61e03;
  color: #FFF;
  text-transform: uppercase;
  font-size: 17px;
  height: 69px;
  transition: 200ms;
}
header .navigation-bar .nav-buttons .cta-btn span {
  font-size: 25px;
  color: #FFF;
  font-weight: 600;
}
header .navigation-bar .nav-buttons .cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px #0f002438;
}
@media (max-width: 480px) {
  header .navigation-bar .nav-buttons .cta-btn {
    display: none;
  }
}
header .navigation-bar .nav-buttons .svoz-btn {
  display: flex;
  padding: 10px 27px;
  background: #0F0024;
  color: white;
  text-transform: uppercase;
  font-size: 17px;
  height: 69px;
  text-align: center;
  transition: 200ms;
}
header .navigation-bar .nav-buttons .svoz-btn img {
  width: 25px;
  height: auto;
  margin-right: 15px;
  filter: brightness(2) grayscale(1) invert(1);
}
header .navigation-bar .nav-buttons .svoz-btn span {
  font-size: 25px;
  font-weight: 600;
}
header .navigation-bar .nav-buttons .svoz-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px #0f002438;
}
@media (max-width: 480px) {
  header .navigation-bar .nav-buttons .svoz-btn {
    display: none;
  }
}
@media (max-width: 1380px) {
  header .navigation-bar .nav-buttons .svoz-btn .btn-text {
    display: none;
  }
  header .navigation-bar .nav-buttons .svoz-btn img {
    margin-right: 0;
  }
}
header .navigation-bar-full-width {
  background: #EDEDF9;
}
@media (max-width: 960px) {
  header .navigation-bar-full-width {
    display: none;
  }
}
header .navigation-bar-full-width nav {
  display: block;
}

.breadcrumbs {
  border-bottom: 1px solid #f1f1f1;
  padding: 12px 0;
}
.breadcrumbs .container-full {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 5px;
}
.breadcrumbs .breadcrumb-item {
  display: block;
  margin-right: 24px;
  font-size: 14px;
  color: #888;
  font-weight: 400;
  position: relative;
  padding-left: 0;
}
.breadcrumbs .breadcrumb-item:after {
  content: "";
  background-image: url(../../img/arrow-right.svg);
  position: absolute;
  width: 10px;
  height: 10px;
  background-size: 4px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  margin: auto;
  right: -16px;
  bottom: -2px;
  opacity: 0.2;
}
.breadcrumbs .breadcrumb-item:last-child:after {
  display: none;
}
.breadcrumbs .breadcrumb-item:hover {
  color: #0F0024;
}
.breadcrumbs .breadcrumb-item:before {
  content: none;
}

.display-first .subsubmenu {
  display: flex !important;
}
.display-first a h2 {
  color: #0F0024 !important;
}
.display-first a h2:after {
  position: absolute !important;
}
.display-first .arrow-down {
  stroke: #0F0024;
}

.footer {
  padding: 50px 0;
  background-image: url(../../img/detail-background.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 25px;
}
.footer .footer-col {
  position: relative;
}
.footer .footer-col img {
  width: 120px;
}
.footer .footer-col h3 {
  margin: 0 auto 15px;
}
.footer .footer-col p {
  text-align: center;
}
.footer .footer-col ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer .footer-col ul li {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.footer .footer-col ul li a {
  display: block;
  color: #0F0024;
  transition: 200ms;
}
.footer .footer-col ul li a:hover {
  color: #E22600;
}
.footer .footer-col:after {
  content: "";
  position: absolute;
  right: -15px;
  height: 100%;
  width: 1px;
  background: #ececec;
  top: 0;
  bottom: 0;
  margin: auto;
}
.footer .footer-col:last-child:after {
  display: none;
}
.footer .footer-col.about p {
  font-size: 16px;
  text-align: left;
  line-height: 25px;
  letter-spacing: 0.2px;
  font-weight: 400;
}
@media (max-width: 680px) {
  .footer .container {
    grid-template-columns: auto;
    text-align: center;
    max-width: 400px;
  }
  .footer .footer-col.about p {
    text-align: center;
  }
  .footer .footer-col:after {
    width: 80%;
    height: 1px;
    bottom: -12px;
    top: inherit;
    left: 0;
    right: 0;
  }
}

.pre-footer .benefits {
  margin-top: 40px;
}

/* PAGE COMPONENTS */
.algolia {
  height: 50px;
  width: 100px;
  vertical-align: middle;
}

/* HOMEPAGE */
.open-notice {
  right: 0;
  left: 0;
  max-width: 90%;
  bottom: 14px;
  margin: auto;
  padding: 13px;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
  box-shadow: 1px 1px 30px #00000026;
  background: #FFC107;
  position: absolute;
  color: #0F0024;
  display: flex;
  justify-content: center;
  align-items: center;
}
.open-notice img {
  width: auto;
  padding: 0 10px;
}

.home-hero {
  /*
   background-image: url(../../img/homepage-rect.svg);
   background-size: cover;
   background-repeat: no-repeat;
  */
  width: 100%;
  color: #FFF;
  display: flex;
  align-items: center;
  margin: 0 0 60px 0;
  position: relative;
  padding: 20px 0 150px 0;
  background: url(../../img/background-phones.webp) no-repeat left top;
  background-color: #0F0024;
  transition: all 0.5s ease-in-out;
}
.home-hero h1 {
  color: #FFF;
  /*margin-top: -115px;*/
  padding-bottom: 20px;
}
.home-hero h1:after {
  display: none;
}
.home-hero .content {
  width: 100%;
  display: flex;
}
.home-hero .content .col-form {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 3%;
  width: 50%;
}
@media (max-width: 960px) {
  .home-hero .content .col-form {
    width: 100%;
  }
}
.home-hero .content .col-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.home-hero .content .col-hero-benefits .benefit-2-item {
  display: flex;
  column-gap: 12px;
  justify-content: center;
  align-items: center;
  height: fit-content;
  font-weight: 300;
  padding: 15px 0;
  color: white;
}
.home-hero .content .col-hero-benefits .benefit-2-item img {
  width: 50px;
  height: auto;
}
.home-hero .content .col-hero-benefits .benefit-2-item h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.home-hero .content .col-hero-benefits:before {
  content: "";
  position: absolute;
  border-left: dashed 1px white;
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
}
.home-hero .content .col {
  width: 25%;
  margin: 60px 0;
  padding: 0 3%;
}
@media (max-width: 960px) {
  .home-hero .content .col {
    display: none;
  }
}
@media (max-width: 960px) {
  .home-hero {
    background-size: 0;
  }
}
@media (max-width: 680px) {
  .home-hero {
    height: auto;
    padding: 0 0 60px;
    margin-top: 0;
  }
  .home-hero .container {
    align-items: flex-start;
  }
  .home-hero h1 {
    margin: 0 auto 20px;
  }
  .home-hero form {
    flex-wrap: wrap;
  }
  .home-hero form select {
    width: 100%;
    margin: 10px auto;
    max-width: 400px;
    font-size: 18px;
    padding: 10px 23px 10px 11px;
  }
}
.home-hero__divider {
  position: absolute;
  bottom: 0;
  margin-bottom: -1px;
}

.search-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  z-index: 10;
}
.search-form .fulltext {
  width: 100%;
  max-width: 600px;
  margin: auto;
  position: relative;
}
.search-form .fulltext .fulltext-dropdown {
  position: absolute;
  width: 100%;
  background: #FFF;
  top: 38px;
  padding-top: 10px;
  border-radius: 0 0 8px 8px;
  display: none;
  box-shadow: 0 9px 10px #00000014;
}
.search-form .fulltext .fulltext-dropdown .fulltext-dropdown-item {
  border-bottom: 1px solid #e0e0e0;
  transition: 200ms;
}
.search-form .fulltext .fulltext-dropdown .fulltext-dropdown-item a {
  font-size: 16px;
  width: 100%;
  color: #000;
  padding: 10px 15px;
  display: block;
}
.search-form .fulltext .fulltext-dropdown .fulltext-dropdown-item:last-child {
  border: none;
}
.search-form .fulltext .fulltext-dropdown .fulltext-dropdown-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.search-form .fulltext .fulltext-dropdown .fulltext-dropdown-item:hover {
  background: #24173808;
}
.search-form .fulltext .fulltext-dropdown .fulltext-dropdown-item:hover a {
  color: #E22600;
}
.search-form .fulltext .fulltext-dropdown.active {
  display: block;
}
.search-form .row {
  width: 100%;
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-top: 10px;
}
.search-form p {
  font-weight: 300;
}
.search-form .select {
  width: 100%;
  display: grid;
  max-width: 600px;
  margin: auto;
  box-sizing: content-box;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 13px;
}
.search-form .select form {
  max-width: none;
}
@media (max-width: 480px) {
  .search-form .select {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.search-form form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.search-form form input {
  border-radius: 8px;
  padding: 13px 15px 10px 15px;
  font-family: "Yanone Kaffeesatz", sans-serif;
  border: none;
}
.search-form form input#fulltext-input {
  width: 100%;
  font-size: 18px;
  color: #0F0024;
  line-height: 22px;
}
.search-form form select {
  font-size: 15px;
  padding: 12px 23px 11px 14px;
  width: 100%;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-family: "Yanone Kaffeesatz", sans-serif;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../../img/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
  background: #FFF;
}
.search-form #snippet--typeSnippet {
  width: 100%;
}
.search-form #snippet--modelSnippet {
  width: 100%;
}
.search-form input[type=submit] {
  display: none;
}
.search-form #cant-find-btn {
  background: #ffffff17;
  color: #FFF;
  padding: 12px 10px 9px 10px;
  border-radius: 8px;
  margin-top: 15px;
  display: block;
  max-width: 180px;
  margin: auto;
  font-size: 14px;
  margin-top: 13px;
}
.search-form #cant-find-btn:hover {
  background: #FFF;
  color: #0F0024;
}

.parallax {
  position: relative;
  max-width: 2000px;
  margin: auto;
}
.parallax:after {
  content: " ";
  position: absolute;
  top: 100px;
  right: 0;
  left: 0;
  transform: translateZ(-0.4px) scale(1.5);
  background-size: 100%;
  z-index: -1;
}

.home-about {
  padding-top: 51px;
}
.home-about h1 {
  margin-top: -50px;
}
.home-about:after {
  background-image: url(../../img/pink-rect.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left -106px center;
  height: 700px;
  top: -122px;
}
.home-about #mobile-left {
  position: absolute;
  width: 700px;
  left: -270px;
  top: -185px;
}
@media (max-width: 1900px) {
  .home-about #mobile-left {
    width: 600px;
    left: -280px;
  }
  .home-about:after {
    height: 600px;
  }
}
@media (max-width: 1600px) {
  .home-about #mobile-left {
    width: 500px;
    left: -280px;
    opacity: 0.6;
  }
  .home-about:after {
    height: 500px;
  }
}
@media (max-width: 1024px) {
  .home-about #mobile-left {
    width: 430px;
    left: -290px;
    top: -150px;
  }
}
@media (max-width: 840px) {
  .home-about #mobile-left {
    display: none;
  }
}

.home-brands {
  padding-top: 184px;
}
.home-brands:after {
  background-image: url(../../img/blue-rect.svg);
  background-size: contain;
  background-position: right -120px center;
  background-repeat: no-repeat;
  height: 800px;
  transform: translateZ(0.6px) scale(0.8);
  top: -300px;
}
.home-brands #computer-right {
  position: absolute;
  width: 600px;
  right: -31px;
  top: -73px;
}
@media (max-width: 1900px) {
  .home-brands #computer-right {
    width: 400px;
    right: -31px;
  }
  .home-brands:after {
    height: 600px;
  }
}
@media (max-width: 1600px) {
  .home-brands #computer-right {
    width: 300px;
    right: -31px;
    opacity: 0.6;
  }
  .home-brands:after {
    height: 500px;
  }
}
@media (max-width: 1024px) {
  .home-brands {
    padding-top: 100px;
  }
  .home-brands #computer-right {
    width: 260px;
    right: -75px;
    top: -30px;
  }
  .home-brands:after {
    top: -100px;
  }
}
@media (max-width: 840px) {
  .home-brands {
    padding-top: 80px;
  }
  .home-brands #computer-right {
    display: none;
  }
}
@media (max-width: 480px) {
  .home-brands {
    padding-top: 30px;
  }
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 220px);
  grid-template-rows: repeat(3, 220px);
  margin: auto;
  width: fit-content;
  margin-top: 60px;
}
.brands-grid .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 300ms;
}
.brands-grid .brand-item .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.brands-grid .brand-item .inner span {
  display: block;
  margin-top: 10px;
  color: #0F0024;
  width: 100%;
}
.brands-grid .brand-item .inner img {
  width: auto;
  height: 50px;
  max-width: 80%;
}
.brands-grid .brand-item:hover {
  background: #E22600;
  color: #FFF;
  cursor: pointer;
}
.brands-grid .brand-item:hover span {
  color: #FFF;
}
.brands-grid .brand-item:hover img {
  filter: brightness(2) grayscale(1) invert(1);
}
@media (max-width: 1200px) {
  .brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* grid-template-columns: repeat(6, 100px);
     grid-template-rows: repeat(2, 100px);*/
  }
  .brands-grid .brand-item {
    width: 150px;
    height: 150px;
  }
  .brands-grid .brand-item .inner img {
    width: 50px;
    height: 30px;
    object-fit: scale-down;
  }
}

/* BANNER SECTION */
.slider {
  max-width: 100%;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
  height: 200px;
  /* BANNERS DESIGN */
  /* BANNER 1 */
  /* BANNER 2 */
  /* BANNER 3 */
  /* BANNER 4 */
}
@media (min-width: 900px) {
  .slider {
    height: 300px;
  }
  .slider .splide__slide.is-active .banner-box {
    box-shadow: 0 0 20px 0 #0000008f;
    transform: scale(1.02);
    transition: all 500ms;
  }
}
.slider #splide01-slide03 {
  transition: all 500ms;
}
.slider .banner-box {
  box-shadow: 0 0 5px 0 #00000033;
  transition: all 500ms;
  width: 484px;
  height: 220px;
  background: #0F0024;
  color: white;
  padding: 30px;
  margin: 40px 70px;
  border-radius: 21px;
}
.slider .banner-box h1 {
  margin: 0;
  text-align: left;
  font-size: 30px;
}
.slider .banner-box h1 span {
  font-size: 20px;
}
.slider .banner-box h1:after {
  display: none;
}
@media (max-width: 900px) {
  .slider .banner-box {
    width: 100vw;
    border-radius: 0;
    margin: 0;
  }
}
@media (min-width: 900px) {
  .slider .slider-arrow {
    background: none;
    width: 40px;
    height: 40px;
    opacity: 1;
  }
  .slider .slider-arrow svg {
    width: 40px;
    height: 40px;
    fill: #0F0024;
  }
}
@media (min-width: 900px) {
  .slider .splide__arrow--prev {
    left: calc(50% - 315px);
  }
  .slider .splide__arrow--next {
    right: calc(50% - 315px);
  }
}
.slider .banner-original-accessories {
  background-image: url(../../img/accessories-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.slider .banner-original-accessories h1 {
  color: white;
}
.slider .banner-original-accessories h1:after {
  display: none;
}
.slider .banner-change {
  background-image: url(../../img/change-banner-1.webp), url(../../img/change-banner-2.webp);
  background-size: 45%, 34%;
  background-repeat: no-repeat;
  background-position: bottom right 25px, bottom left 25px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .slider .banner-change {
    background-position: bottom right, bottom left;
  }
}
.slider .banner-change img {
  height: auto;
  width: 14px;
  margin-right: 5px;
  vertical-align: text-top;
}
.slider .banner-change .change-top {
  position: relative;
}
.slider .banner-change .change-top .cena {
  padding: 7px 18px;
  background: #B71F00;
  position: absolute;
  top: -30px;
  left: -30px;
  border-radius: 21px 0;
}
.slider .banner-change .change-top .cena span {
  font-weight: bold;
  font-size: 21px;
}
.slider .banner-change .change-top h1 {
  text-align: right;
  padding-bottom: 10px;
}
@media (max-width: 900px) {
  .slider .banner-change .change-top .cena {
    border-radius: 0 0 21px 0;
  }
  .slider .banner-change .change-top h1 {
    font-size: 25px;
    padding-left: 20%;
  }
}
.slider .banner-change .change-top .service-time {
  margin-right: 50px;
  color: #5c5c5c;
}
@media (max-width: 480px) {
  .slider .banner-change .change-top .service-time {
    margin: 0 10px 0 0;
  }
}
.slider .banner-change .change-price {
  font-size: 18px;
  font-weight: bold;
}
.slider .banner-change .change-price p {
  margin-bottom: 8px;
}
.slider .banner-change .change-price p:last-child {
  font-size: 25px;
  margin: 0;
}
.slider .banner-protect {
  background-image: url(../../img/protect-banner.webp);
  background-size: 80% auto;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.slider .banner-protect h1 {
  color: white;
}
.slider .banner-protect h1:after {
  display: none;
}
.slider .banner-service {
  background-color: white;
  background-image: url(../../img/servis-banner.webp);
  background-size: 32% auto;
  background-repeat: no-repeat;
  background-position: 15px bottom;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slider .banner-service img.brush {
  position: absolute;
  height: 55px;
  left: -7px;
  bottom: -15px;
  width: auto;
  z-index: -1;
}
.slider .banner-service .service-bottom {
  display: flex;
  align-items: center;
}
.slider .banner-service .service-bottom .first-col {
  width: 30%;
}
.slider .banner-service .service-bottom p {
  width: 70%;
  padding-left: 20px;
  color: black;
  line-height: 22px;
  font-size: 15px;
  font-weight: lighter;
}
@media (max-width: 900px) {
  .slider .banner-service .service-bottom img {
    height: 60%;
  }
  .slider .banner-service .service-bottom p {
    font-size: 14px;
    line-height: 1.3;
    padding-left: 10px;
  }
}
.slider .banner-rekonstrukce {
  background-color: white;
  background-image: url(../../img/slide-rekonstrukce.webp);
  background-size: 104%;
  background-repeat: no-repeat;
  background-position: center;
}
.slider .splide__pagination__page.is-active {
  background: #0F0024;
}

/* nejcastejsi problemy section*/
.nejcastejsi-problemy-section {
  height: 400px;
  max-width: 1000px;
  margin: 40px auto;
}
.nejcastejsi-problemy-section .splide__slide .slider-box {
  box-shadow: 0px 12px 30px 5px rgba(0, 0, 0, 0.13);
  padding: 20px;
  margin: 60px 35px;
  text-align: center;
  border-radius: 16px;
  height: 170px;
}
@media (max-width: 640px) {
  .nejcastejsi-problemy-section .splide__slide .slider-box {
    margin: 60px 15px;
  }
}
.nejcastejsi-problemy-section .splide__slide .slider-box .problem-img {
  height: 75px;
  width: auto;
}
.nejcastejsi-problemy-section .splide__slide .slider-box h3 {
  font-size: 19px;
  font-weight: 400;
}
.nejcastejsi-problemy-section .splide__arrow {
  background: white;
  box-shadow: 0 0 30px 16px rgba(0, 0, 0, 0.14);
}
.nejcastejsi-problemy-section .splide__arrow svg {
  fill: #8D0202;
}

/* phone modal */
#modal-phone .modal-box {
  max-width: 550px;
}
#modal-phone .modal-content {
  padding: 10px 30px 30px 30px;
}
#modal-phone .modal-content .call-us-box {
  background: white;
  box-shadow: 0 0 13px 3px #00000017;
  border-radius: 21px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
}
#modal-phone .modal-content .call-us-box a {
  font-size: 40px;
  font-weight: bold;
  color: #B71F00;
}
@media (max-width: 680px) {
  #modal-phone .modal-content .call-us-box a {
    font-size: 25px;
  }
}
#modal-phone .modal-content .call-you-box {
  background: white;
  box-shadow: 0 0 13px 3px #00000017;
  border-radius: 21px;
  padding: 20px;
  text-align: center;
}
#modal-phone .modal-content .call-you-box p {
  font-size: 18px;
  font-weight: lighter;
  line-height: 25px;
  margin-bottom: 25px;
}
@media (max-width: 680px) {
  #modal-phone .modal-content .call-you-box p {
    font-size: 16px;
  }
}
#modal-phone .modal-content .call-you-box input {
  width: 100%;
}
@media (max-width: 680px) {
  #modal-phone .modal-content h1 {
    font-size: 28px;
  }
}

/* small red banner - lowest price */
.mobile-lowest-price {
  display: none;
}
@media (max-width: 480px) {
  .mobile-lowest-price {
    background-color: #a61e03;
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    padding: 5px 10px;
  }
  .mobile-lowest-price img {
    width: 25px;
    height: auto;
  }
  .mobile-lowest-price .text {
    color: white;
  }
  .mobile-lowest-price .text h6 {
    font-weight: bold;
    font-size: 15px;
  }
  .mobile-lowest-price .text p {
    font-size: 13px;
    line-height: 15px;
  }
}

/* quick mobile navigation */
.mobile-quick-nav {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow: auto;
  padding: 10px;
  transition: all 0.5s ease-in-out;
  /* hide scrollbar */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  /* button for back to all brands */
  /* heading "Vyberte model" */
}
@media (max-width: 480px) {
  .mobile-quick-nav {
    display: flex;
  }
}
.mobile-quick-nav::-webkit-scrollbar {
  display: none;
}
.mobile-quick-nav .back-button {
  background: #0F0024;
  color: #EDEDF9;
  padding: 10px;
  height: fit-content;
  width: 80px;
  text-align: center;
  border-radius: 5px;
  display: none;
}
.mobile-quick-nav .back-button.active {
  display: block;
}
.mobile-quick-nav .choose-model {
  height: fit-content;
  padding: 10px;
  display: none;
}
.mobile-quick-nav .choose-model.active {
  display: block;
}
.mobile-quick-nav .quick-brand {
  width: calc(100% / 3);
  transition: all 0.5s ease-in-out;
}
.mobile-quick-nav .quick-brand .quick-brand-item {
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  background: #EDEDF9;
}
.mobile-quick-nav .quick-brand .quick-brand-item a {
  display: flex;
  align-items: center;
  color: black;
}
.mobile-quick-nav .quick-brand .quick-brand-item a img {
  height: 12px;
  width: auto;
  max-width: 35px;
}
.mobile-quick-nav .quick-brand .quick-brand-item a span {
  padding-left: 4px;
}
.mobile-quick-nav .quick-brand .quick-submenu {
  position: absolute;
  left: 0;
  display: flex;
  visibility: hidden;
  flex-wrap: wrap;
  background: #EDEDF9;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model {
  padding: 3px 5px;
  border-right: #0F0024 solid 1px;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model span {
  padding: 0 5px;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model span a {
  color: #0F0024;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model:last-child {
  border-right: 0;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model .quick-subsubmenu {
  padding: 5px 10px 5px;
  z-index: 9999;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: white;
  visibility: hidden;
  opacity: 0;
  transform-origin: left top;
  transform: scaleY(0);
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model .quick-subsubmenu .category-ul li a {
  min-width: inherit;
  padding: 7px 7px !important;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model .quick-subsubmenu .category-ul li a span {
  font-size: 14px;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model.active span {
  background: white;
  border-radius: 5px;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model.active span a {
  color: #0F0024;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model.active .quick-subsubmenu {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  transform: scaleY(1);
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-model.active .quick-subsubmenu span {
  background: none;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-all-models {
  z-index: 99;
  position: absolute;
  top: 60px;
  height: calc(100vh - 300px);
  background: #FFF;
  overflow: auto;
  width: 100%;
  box-shadow: 0 10px 15px #32323314;
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
  transform-origin: left top;
  transform: scaleY(0);
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-all-models .submenu-row h2 {
  margin: 15px;
  text-align: left;
  font-weight: 300;
  font-size: 25px;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-all-models .submenu-row h2 a {
  color: black;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-all-models .submenu-row h2:after {
  content: none;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-all-models .submenu-row .category-ul {
  padding: 0;
}
.mobile-quick-nav .quick-brand .quick-submenu .quick-all-models.active {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  transform: scaleY(1);
}
.mobile-quick-nav .quick-brand.active {
  height: 97px;
  width: auto;
}
.mobile-quick-nav .quick-brand.active .quick-brand-item {
  padding: 14px 10px;
  margin: 0;
  border-radius: 5px 5px 0 0;
}
.mobile-quick-nav .quick-brand.active .quick-brand-item a {
  color: #0F0024;
}
.mobile-quick-nav .quick-brand.active .quick-submenu {
  visibility: visible;
}

/* helper class */
.justify-space-between {
  justify-content: space-between;
}

.mobile-quick-nav:after, .mobile-quick-nav:before {
  background: gray;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4509513278) 0%, rgba(0, 0, 0, 0.1568336807) 36%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.4509513278) 0%, rgba(0, 0, 0, 0.1568336807) 36%, rgba(255, 255, 255, 0) 100%);
  display: block;
  height: 47px;
  position: absolute;
  top: 0;
  width: 40px;
  z-index: 99999;
}

.gradient-left:before {
  content: "";
  left: 0;
}

.gradient-right:after {
  content: "";
  transform: rotate(180deg);
  right: 0;
}

.detail {
  background-image: url(../../img/detail-background.svg);
  padding-top: 47px;
  background-position: left 30% top;
  background-repeat: no-repeat;
  background-size: contain;
  /* DETAIL HEAD */
  /* DETAIL PRICE LIST */
  /* DETAIL TEXT */
  /* related models */
}
.detail .container {
  max-width: 1440px;
}
@media (max-width: 480px) {
  .detail .container {
    padding: 0 10px;
  }
}
.detail .sticky {
  position: sticky;
  top: 20px;
}
.detail .detail-heading {
  margin-bottom: 45px;
}
.detail .detail-heading h1 {
  margin: 0 auto 30px;
  font-size: 40px;
}
.detail .detail-heading p.subtitle {
  /* koment */
}
.detail .detail-pricelist {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 12px #00000017;
  overflow: hidden;
  margin: 0 10px 22px 10px;
}
.detail .detail-pricelist .odd {
  background: #f7f7f7;
}
@media (max-width: 480px) {
  .detail .detail-pricelist {
    margin: 0 0 22px 0;
  }
}
.detail .detail-pricelist .pricelist-item {
  border-bottom: 1px solid #f1f1f1;
  position: relative;
  cursor: pointer;
  transition: background-color 300ms;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
  color: #0F0024;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href span.name {
  padding-left: 18px;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href span.sale {
  color: #a61e03;
  font-weight: bold;
  margin-right: auto;
  padding-right: 4px;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn {
  padding-right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 200px;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .stopwatch-box {
  display: flex;
  justify-content: center;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .stopwatch-box img {
  height: auto;
  width: 14px;
  margin-right: 5px;
  vertical-align: text-top;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .stopwatch-box .service-time {
  margin-right: 5px;
  color: #5c5c5c;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn span.price {
  min-width: 42px;
  font-weight: bold;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn span.sale-price {
  color: #a61e03;
}
.detail .detail-pricelist .pricelist-item .pricelist-item-href .arrow-box {
  display: none;
}
@media (max-width: 480px) {
  .detail .detail-pricelist .pricelist-item .pricelist-item-href {
    padding: 8px 0;
    min-height: 2em;
    justify-content: end;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href span.name {
    padding-left: 6px;
    font-size: 12px;
    max-width: 120px;
    margin-right: auto;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href span.sale {
    margin-left: auto;
    margin-right: 10px;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn {
    padding-right: 6px;
    min-width: 150px;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .stopwatch-box {
    padding-right: 10px;
    max-width: 120px;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .stopwatch-box img {
    width: 10px;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .stopwatch-box .service-time {
    font-size: 12px;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .price-box {
    display: flex;
    align-items: center;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .price-box span.price {
    font-size: 13px;
    text-align: right;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href .price-btn .price-box .reservation {
    position: relative;
    right: inherit;
    font-size: 11px;
    height: 100%;
    padding: 3px 6px 2px;
    border-radius: 3px;
    text-transform: inherit;
    margin-left: 5px;
  }
  .detail .detail-pricelist .pricelist-item .pricelist-item-href .arrow-box {
    display: flex;
    margin: 5px;
    padding: 5px;
    background: #E5E5EF;
    border-radius: 4px;
  }
}
.detail .detail-pricelist .pricelist-item .reservation {
  position: absolute;
  right: -100%;
  height: 100%;
  background: #0F0024;
  top: 0;
  z-index: 1;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: 350ms;
  font-size: 14px;
}
.detail .detail-pricelist .pricelist-item .reservation div, .detail .detail-pricelist .pricelist-item .reservation a {
  width: 120px;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 200;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.detail .detail-pricelist .pricelist-item .reservation div span, .detail .detail-pricelist .pricelist-item .reservation a span {
  font-weight: bold;
}
.detail .detail-pricelist .pricelist-item .reservation .stopwatch-box {
  width: fit-content;
  text-transform: none;
  color: white;
  font-size: 14px;
}
.detail .detail-pricelist .pricelist-item .reservation .stopwatch-box .service-time {
  color: white;
  font-weight: 200;
}
.detail .detail-pricelist .pricelist-item .reservation .stopwatch-box img {
  height: auto;
  width: 14px;
  margin-right: 5px;
  vertical-align: text-top;
}
.detail .detail-pricelist .pricelist-item .reservation .more-info-btn {
  background: #E5E5EF;
  color: #0F0024;
}
.detail .detail-pricelist .pricelist-item .reservation .more-info-btn:hover {
  background: #ccccd5;
}
.detail .detail-pricelist .pricelist-item .reservation .service-reservation-btn {
  background: #B51F01;
  color: white;
}
.detail .detail-pricelist .pricelist-item .reservation .service-reservation-btn:hover {
  background: #9d1d04;
}
.detail .detail-pricelist .pricelist-item .reservation .price {
  font-weight: bold;
  text-transform: none;
  width: fit-content;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .detail .detail-pricelist .pricelist-item .reservation {
    display: none;
  }
}
.detail .detail-pricelist .pricelist-item:hover {
  background: #0F0024;
  color: white;
}
@media (min-width: 480px) {
  .detail .detail-pricelist .pricelist-item:hover {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='19' viewBox='0 0 8 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 9.5L7.52318e-07 19L7.52318e-07 0L8 9.5Z' fill='white'/%3E%3C/svg%3E%0A");
    background-position: left center;
    background-repeat: no-repeat;
  }
}
.detail .detail-pricelist .pricelist-item:hover .pricelist-item-href {
  color: white;
}
.detail .detail-pricelist .pricelist-item:hover .reservation {
  right: 0;
}
.detail .detail-text {
  text-align: center;
}
.detail .detail-text p {
  font-weight: 300;
  line-height: 32px;
}
.detail .detail-text p b {
  /* koment */
}
.detail .detail-text p br {
  /* koment */
}
.detail .detail-text .contact-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.detail .detail-text .contact-items a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 20px;
}
.detail .detail-text .contact-items a img {
  width: 20px;
  margin-right: 10px;
}
.detail .detail-text .contact-items a span {
  color: #0F0024;
  font-size: 18px;
}
.detail .related-models {
  max-width: 630px;
  margin: 40px auto;
  padding: 35px;
  border-radius: 21px;
  box-shadow: 0 0 12px #00000017;
  background-image: url(../../img/iphone-related-2.png), url(../../img/ihpone-related.png);
  background-repeat: no-repeat;
  background-position: top -25px left -60px, bottom -70px right -90px;
  background-color: white;
}
@media (max-width: 860px) {
  .detail .related-models {
    background-image: none;
  }
}
.detail .related-models .splide__slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail .related-models .splide__slide p {
  margin: 0;
}
.detail .related-models .splide__slide p a {
  color: black;
  font-weight: 200;
  font-size: 20px;
}
.detail .related-models .splide__slide .selected-model a {
  color: #B31D00;
  font-weight: bold;
  font-size: 26px;
}
.detail .related-models .splide__arrow {
  background: transparent;
}
.detail .related-models .splide__arrow svg {
  fill: #0F0024;
}
.detail .related-models .splide__arrow--prev {
  top: -25px;
}
.detail .related-models .splide__arrow--next {
  bottom: -25px;
}

.shortlist-container {
  padding: 0;
  background-color: #E5E5EF;
  border-radius: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 350px;
  margin-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-image: url(../../img/character-1.svg), url(../../img/character-2.svg), url(../../img/shortlist-bg.svg);
  background-size: 17%, 20%, contain;
  background-repeat: no-repeat;
  background-position: bottom left 5px, bottom right 5px, top left;
  /* DETAIL SHORTLIST */
}
.shortlist-container .benefits-2 {
  background: transparent;
  padding: 15px 0;
  margin-top: 0;
}
.shortlist-container .benefits-2 .benefit-2-item {
  color: #0F0024;
  font-weight: 400;
}
@media (max-width: 1160px) {
  .shortlist-container .benefits-2 {
    display: none;
  }
}
.shortlist-container .detail-shortlist {
  color: white;
  background: #0F0024;
  border-radius: 20px 20px 0 0;
  padding: 10px;
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
}
@media (max-width: 820px) {
  .shortlist-container .detail-shortlist {
    border-radius: 20px;
    padding: 5px;
    /* margin: 10px 0 45px 0; */
  }
}
.shortlist-container .detail-shortlist.default-shortlist {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.shortlist-container .detail-shortlist.default-shortlist .shortlist-item {
  display: flex;
  align-items: center;
  position: relative;
  width: 50%;
  font-size: 18px;
  padding: 12px;
}
.shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-icon {
  padding: 4px;
  min-width: 90px;
  text-align: center;
}
.shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-icon img {
  height: 45px;
  width: auto;
  color: white;
}
.shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-text {
  padding: 5px 10px;
  color: white;
}
.shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-text p {
  margin-bottom: 10px;
}
.shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-text .shortlist-price {
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .shortlist-container .detail-shortlist.default-shortlist .shortlist-item {
    width: 50%;
    font-size: 14px;
    padding: 5px;
  }
  .shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-icon {
    min-width: 50px;
  }
  .shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-icon img {
    height: 40px;
  }
  .shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-text {
    padding: 5px;
  }
  .shortlist-container .detail-shortlist.default-shortlist .shortlist-item .shortlist-text p {
    margin-bottom: 5px;
  }
}
@media (max-width: 820px) {
  .shortlist-container .detail-shortlist.default-shortlist .shortlist-item:after {
    content: "";
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 10px;
  }
}
.shortlist-container .detail-shortlist.default-shortlist .shortlist-item:hover .shortlist-text {
  color: gainsboro;
}
.shortlist-container .detail-shortlist.default-shortlist #item-3 {
  order: 1;
}
.shortlist-container .detail-shortlist.default-shortlist #item-1 {
  order: 2;
}
.shortlist-container .detail-shortlist.default-shortlist #item-1:after {
  display: none;
}
.shortlist-container .detail-shortlist.default-shortlist #item-4 {
  order: 3;
}
.shortlist-container .detail-shortlist.default-shortlist #item-11 {
  order: 4;
}
.shortlist-container .detail-shortlist.default-shortlist #item-11:after {
  display: none;
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-text {
  padding: 8px 8px;
  flex-wrap: wrap;
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-text .shortlist-service-name p {
  margin-bottom: 5px;
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-text .shortlist-service-name p span {
  font-weight: bold;
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-text .shortlist-service-name p:first-child {
  margin-bottom: 0;
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-text .shortlist-service-name .change-quality {
  font-weight: 300;
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-text .shortlist-price {
  width: 100%;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 16px;
}
@media (max-width: 820px) {
  .shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item {
    flex-wrap: wrap;
    font-size: 14px;
    text-align: center;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-service-name {
    order: 2;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-service-name p {
    margin-bottom: 0;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item .shortlist-price {
    padding-bottom: 5px;
  }
}
.shortlist-container .detail-shortlist.advanced-shortlist .flex-box .shortlist-item:hover {
  transform: scale(1.02);
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box .shortlist-item {
  width: 30%;
  padding: 0;
  margin: 10px;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box .shortlist-item .shortlist-icon {
  padding: 8px 0 8px 8px;
  text-align: center;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box .shortlist-item .shortlist-icon img {
  height: 75px;
  width: auto;
  color: white;
}
@media (max-width: 820px) {
  .shortlist-container .detail-shortlist.advanced-shortlist .lcd-box .shortlist-item {
    width: 30%;
    margin: 5px;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .lcd-box .shortlist-item .shortlist-icon {
    padding: 0 0 0 8px;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .lcd-box .shortlist-item .shortlist-text {
    justify-content: center;
  }
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box #lcd-3 {
  background: white;
  color: #020202;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box #lcd-2 {
  background: rgba(255, 255, 255, 0.85);
  color: #0F0024;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box #lcd-1 {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
  justify-content: center;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 .shortlist-item {
  width: 40%;
  padding: 0 20px;
  margin: 10px 20px;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 .shortlist-item .shortlist-icon {
  padding: 8px 0px 8px 8px;
  text-align: center;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 .shortlist-item .shortlist-icon img {
  height: 75px;
  width: auto;
  color: white;
}
@media (max-width: 820px) {
  .shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 .shortlist-item {
    width: 43%;
    margin: 8px;
    padding: 0;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 .shortlist-item .shortlist-text {
    justify-content: center;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 .shortlist-item .shortlist-icon {
    width: 100%;
  }
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 #lcd-3 {
  background: white;
  color: #0F0024;
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 #lcd-3:after {
  content: "";
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 30%;
  right: -20px;
}
@media (max-width: 820px) {
  .shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 #lcd-3:after {
    display: none;
  }
}
.shortlist-container .detail-shortlist.advanced-shortlist .lcd-box-2 #lcd-2 {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box {
  padding-top: 10px;
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item {
  width: calc(100% / 3);
  padding: 10px;
  border-radius: 0;
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item .shortlist-icon {
  padding: 8px 12px 8px 0;
  text-align: center;
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item .shortlist-icon img {
  height: 45px;
  width: auto;
  color: white;
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item .shortlist-text {
  padding: 8px 0;
  color: white;
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item .shortlist-text p {
  margin: 0 0 5px 0;
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item .shortlist-text .shortlist-price {
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item {
    width: 33%;
    flex-wrap: wrap;
    font-size: 14px;
    padding: 4px;
    text-align: center;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item .shortlist-icon {
    padding: 0;
    width: 100%;
  }
  .shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item .shortlist-text {
    justify-content: center;
  }
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item:not(:last-child):after {
  content: "";
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 25%;
  right: 0;
}
.shortlist-container .detail-shortlist.advanced-shortlist .services-box .shortlist-item:hover .shortlist-text {
  color: gainsboro;
}
@media (max-width: 1160px) {
  .shortlist-container {
    min-height: unset;
  }
}

.all-services-header {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.all-services-header img {
  width: auto;
  height: 0.8em;
  margin: 0 4%;
}
.all-services-header p {
  margin: 0;
  line-height: 1.1;
}
.all-services-header span {
  font-weight: bold;
}

/* DPH BOX */
.dph-box {
  background: #B71F00;
  padding: 15px;
  width: 70%;
  margin: 0 auto;
  color: white;
  text-align: center;
  font-weight: bold;
  border-radius: 15px 15px 0 0;
  font-size: 16px;
}
@media (max-width: 480px) {
  .dph-box {
    width: auto;
    margin: 0;
  }
}

/*----------------- model-service DETAIL page -----------------  */
.model-service-detail-box {
  background: white;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(15, 0, 36, 0.13);
}
.model-service-detail-box .header {
  display: flex;
  justify-content: space-between;
}
.model-service-detail-box .header .headings {
  padding: 15px;
  padding-bottom: 0;
}
.model-service-detail-box .header .headings h3 {
  text-align: left;
  margin-bottom: 5px;
  margin-top: 5px;
}
.model-service-detail-box .header .headings h3:first-child {
  font-weight: 600;
}
.model-service-detail-box .header .buttons {
  display: flex;
  margin-bottom: 15px;
}
.model-service-detail-box .header .buttons a {
  display: flex;
  padding: 15px;
  color: white;
  font-size: 20px;
  font-weight: 300;
  align-items: center;
  background: #0F0024;
  border-radius: 0 20px 0 0;
}
.model-service-detail-box .header .buttons a .pointer {
  width: 30px;
  height: auto;
  padding-right: 10px;
}
.model-service-detail-box .header .buttons a .arrow-right {
  width: 30px;
  height: auto;
  padding-left: 10px;
}
.model-service-detail-box .header .buttons a p {
  margin-bottom: 0;
  line-height: 1.2;
}
.model-service-detail-box .header .buttons a p span {
  font-weight: 600;
}
.model-service-detail-box .header .buttons a:first-child {
  background: #B71F00;
  border-radius: 0 0 0 20px;
}
.model-service-detail-box .header .buttons a:first-child:hover {
  background: #9d1d04;
}
.model-service-detail-box .header .buttons a:first-child:hover .pointer {
  margin-top: -7px;
  transition: 200ms all;
}
.model-service-detail-box .header .buttons a:last-child:hover {
  background: rgba(15, 0, 36, 0.87);
}
.model-service-detail-box .header .buttons a:last-child:hover .arrow-right {
  padding-left: 15px;
  transition: 200ms all;
}
.model-service-detail-box .data-row {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
.model-service-detail-box .data-row .service-info {
  display: inline-flex;
  align-items: center;
}
.model-service-detail-box .data-row .service-info div {
  padding: 0 15px;
  position: relative;
}
.model-service-detail-box .data-row .service-info div:first-child {
  padding-left: 0;
}
.model-service-detail-box .data-row .service-info div:not(:last-child):after {
  content: "";
  width: 1px;
  height: 100%;
  background: #0F0024;
  position: absolute;
  top: 0;
  right: 0;
}
.model-service-detail-box .data-row .service-info .service-price span {
  font-weight: bold;
  color: #7EBC5D;
}
.model-service-detail-box .data-row .service-info .time {
  display: flex;
  align-items: center;
}
.model-service-detail-box .data-row .service-info .time img {
  width: 25px;
  height: auto;
  margin-right: 8px;
}
.model-service-detail-box .data-row .service-info .tooltip-availability {
  color: #7EBC5D;
  position: relative;
}
.model-service-detail-box .data-row .service-info .tooltip-availability span {
  border-bottom: 1px dashed #7EBC5D;
}
.model-service-detail-box .data-row .service-info .tooltip-availability:before {
  content: attr(data-text);
  /* here's the magic */
  position: absolute;
  /* vertically center */
  top: 50%;
  transform: translateY(-50%);
  /* move to right */
  left: 100%;
  /* basic styles */
  width: 150px;
  padding: 10px;
  border-radius: 10px;
  background: #0F0024;
  color: #fff;
  text-align: center;
  z-index: 100;
  line-height: 1.5;
  display: none;
  /* hide by default */
}
.model-service-detail-box .data-row .service-info .tooltip-availability:hover:before {
  display: block;
}
@media (max-width: 1160px) {
  .model-service-detail-box .data-row .opening-hours {
    display: none;
  }
}
.model-service-detail-box .service-content {
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px 15px 15px;
}
.model-service-detail-box .service-content .content-left {
  width: 38%;
  display: flex;
}
.model-service-detail-box .service-content .content-left .image-box {
  box-shadow: 0 16px 48px rgba(15, 0, 36, 0.13);
  background: white;
  margin: 15px 20px;
  border-radius: 10px;
  text-align: center;
  height: fit-content;
}
.model-service-detail-box .service-content .content-left .image-box img {
  width: 100%;
  height: auto;
}
.model-service-detail-box .service-content .content-left .service-benefit-mobile {
  display: none;
}
.model-service-detail-box .service-content .content-right {
  width: 62%;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}
.model-service-detail-box .service-content .content-right .service-description {
  line-height: 1.4;
  font-weight: 300;
  font-size: 18px;
  width: 100%;
}
.model-service-detail-box .service-content .content-right .buttons-bottom {
  display: flex;
  align-self: flex-end;
}
.model-service-detail-box .service-content .content-right .buttons-bottom .svoz-btn {
  display: flex;
  flex-wrap: wrap;
  margin-right: 10px;
  font-size: 17px;
  padding: 10px 20px;
}
.model-service-detail-box .service-content .content-right .buttons-bottom .svoz-btn:hover {
  color: #0F0024;
  background: #d3d3da;
  transform: none;
  box-shadow: none;
}
@media (max-width: 480px) {
  .model-service-detail-box .service-content .content-right .buttons-bottom .svoz-btn {
    display: none;
  }
}
.model-service-detail-box .service-content .content-right .buttons-bottom .cta-btn {
  padding: 10px 20px;
  background: #0F0024;
  color: #FFF;
  text-transform: uppercase;
  font-size: 17px;
  height: 69px;
  border: #0F0024 solid 1px;
}
.model-service-detail-box .service-content .content-right .buttons-bottom .cta-btn span {
  font-size: 25px;
  color: #FFF;
  font-weight: 600;
}
.model-service-detail-box .service-content .content-right .buttons-bottom .cta-btn:hover {
  background: rgba(15, 0, 36, 0.87);
}
.model-service-detail-box .service-content .content-right .buttons-bottom .cta-btn:hover span {
  color: white;
}
@media (max-width: 480px) {
  .model-service-detail-box .service-content .content-right .buttons-bottom .cta-btn {
    display: none;
  }
}
.model-service-detail-box .service-content .content-right .buttons-mobile {
  display: none;
}
@media (max-width: 1160px) {
  .model-service-detail-box .data-row .service-info .tooltip-availability:before {
    left: -40px;
    top: 70px;
  }
  .model-service-detail-box .service-content .content-left {
    width: 100%;
  }
  .model-service-detail-box .service-content .content-left .image-box {
    width: 40%;
    margin: 1rem auto;
  }
  .model-service-detail-box .service-content .content-left .image-box img {
    height: auto;
  }
  .model-service-detail-box .service-content .content-right {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .model-service-detail-box .header {
    justify-content: center;
    background: #E5E5EF;
    border-radius: 20px 20px 0 0;
  }
  .model-service-detail-box .header .headings {
    padding: 10px;
  }
  .model-service-detail-box .header .headings h3 {
    text-align: center;
    font-size: 25px;
  }
  .model-service-detail-box .header .buttons {
    display: none;
  }
  .model-service-detail-box .data-row {
    justify-content: center;
  }
  .model-service-detail-box .service-content {
    padding: 0;
  }
  .model-service-detail-box .service-content .content-left {
    width: 100%;
    padding: 0 15px;
  }
  .model-service-detail-box .service-content .content-left .image-box {
    margin: 1rem;
  }
  .model-service-detail-box .service-content .content-left .image-box img {
    width: 100%;
    height: auto;
  }
  .model-service-detail-box .service-content .content-left .service-benefit-mobile {
    display: flex;
    flex-wrap: wrap;
    width: 60%;
  }
  .model-service-detail-box .service-content .content-left .service-benefit-mobile .benefit-item {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    padding: 0 5px;
  }
  .model-service-detail-box .service-content .content-left .service-benefit-mobile .benefit-item span {
    font-weight: bold;
  }
  .model-service-detail-box .service-content .content-left .service-benefit-mobile .benefit-item img {
    width: 30px;
    height: auto;
    margin-right: 6px;
  }
  .model-service-detail-box .service-content .content-left .service-benefit-mobile .benefit-item:last-child {
    border: 1px dashed black;
  }
  .model-service-detail-box .service-content .content-right {
    width: 100%;
    padding-top: 10px;
  }
  .model-service-detail-box .service-content .content-right .service-description {
    padding: 0 15px;
  }
  .model-service-detail-box .service-content .content-right .service-benefits {
    display: none;
  }
  .model-service-detail-box .service-content .content-right .buttons-mobile {
    display: flex;
    flex-wrap: wrap;
  }
  .model-service-detail-box .service-content .content-right .buttons-mobile a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 1rem;
    color: #FFF;
    font-size: 17px;
  }
  .model-service-detail-box .service-content .content-right .buttons-mobile a img {
    width: 45px;
    height: auto;
    margin: 0 10px;
  }
  .model-service-detail-box .service-content .content-right .buttons-mobile a span {
    font-size: 20px;
    color: #FFF;
    font-weight: 600;
  }
  .model-service-detail-box .service-content .content-right .buttons-mobile a:first-child {
    background: #0F0024;
    color: white;
  }
  .model-service-detail-box .service-content .content-right .buttons-mobile a:last-child {
    background: #E5E5EF;
    color: #0F0024;
    border-radius: 0 0 20px 20px;
  }
  .model-service-detail-box .service-content .content-right .buttons-mobile a:last-child span {
    color: #0F0024;
  }
}

.benefits-2 {
  display: flex;
  border-radius: 10px;
  background: #0F0024;
  padding: 30px 0;
  margin-top: 3rem;
}
.benefits-2 .benefit-2-item {
  flex: 1;
  display: flex;
  column-gap: 12px;
  justify-content: center;
  align-items: center;
  height: fit-content;
  font-weight: 300;
  padding: 15px;
  color: white;
}
.benefits-2 .benefit-2-item img {
  width: 50px;
  height: auto;
}
.benefits-2 .benefit-2-item h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .benefits-2 {
    display: none;
  }
}

.how-to-reach {
  display: none;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .how-to-reach {
    display: block;
  }
}
.how-to-reach .thank-you-img-box {
  display: flex;
  column-gap: 4%;
  justify-content: center;
}
@media (max-width: 820px) {
  .how-to-reach .thank-you-img-box {
    column-gap: 2%;
  }
}
.how-to-reach .thank-you-img-box .thank-you-img-wrapper {
  width: 33%;
}
.how-to-reach .thank-you-img-box .thank-you-img-wrapper img {
  width: 100%;
  height: auto;
}

.service-benefits {
  width: 100%;
  margin-bottom: 1rem;
}
.service-benefits .benefit-row {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 0;
  margin: 5px 0;
  border-radius: 8px;
}
.service-benefits .benefit-row .benefit-item {
  flex-basis: calc(100%/3);
  display: flex;
  color: #0F0024;
  font-size: 14px;
  position: relative;
  padding: 0 5px;
}
.service-benefits .benefit-row .benefit-item span {
  font-weight: bold;
}
.service-benefits .benefit-row .benefit-item img {
  width: 30px;
  height: auto;
  margin-right: 6px;
}
.service-benefits .benefit-row .benefit-item:not(:last-child):after {
  content: "";
  width: 1px;
  height: 100%;
  background: #0F0024;
  position: absolute;
  top: 0;
  right: 0;
}
.service-benefits .benefit-row:first-child {
  background: #E5E5EF;
}
.service-benefits .benefit-row.model-page .benefit-item {
  flex-basis: auto;
}
.service-benefits .benefit-row.model-page .benefit-item.benefit-arrow {
  margin: 0 auto;
}
.service-benefits .benefit-row.model-page .benefit-item.benefit-arrow img {
  width: 20px;
}
@media (min-width: 480px) {
  .service-benefits .benefit-row.model-page {
    display: none;
  }
}

.category {
  margin: 47px auto;
}
.category .container {
  /* koment */
  max-width: 1440px;
}
.category .container .category-heading {
  text-align: center;
  margin-bottom: 50px;
}
.category .container .category-heading img {
  /* koment */
}
.category .container .category-heading img.brand {
  max-width: 100px;
}
.category .container .category-heading img.device {
  /* koment */
}
.category .container .category-heading h1 span {
  font-weight: normal;
}
.category .container .category-heading p {
  /* koment */
}
.category .container .category-list h2 {
  margin: 60px 0 20px 0;
}
.category .container .category-list .category-ul {
  justify-content: flex-start;
  margin: auto;
}
@media (min-width: 600px) {
  .category .container .category-list h2 {
    margin-bottom: 0;
    background: #0F0024;
    color: white;
    max-width: 300px;
    padding: 8px 20px;
    font-weight: 300;
    text-align: left;
    border-radius: 15px 15px 0 0;
  }
  .category .container .category-list h2::after {
    display: none;
  }
}

.category-ul {
  justify-content: flex-start;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 15px;
  flex-wrap: wrap;
  background: #E5E5EF;
  border-radius: 0 20px 20px 20px;
}
.category-ul li {
  flex-basis: 25%;
  min-width: 160px;
  border: rgba(255, 255, 255, 0.79) dashed 1px;
}
.category-ul li a {
  display: flex !important;
  align-items: center;
  padding: 15px 14px !important;
  height: 100%;
}
.category-ul li a img {
  margin-right: 6px !important;
  height: 20px !important;
  margin-bottom: 0 !important;
  width: auto;
}
.category-ul li a span {
  color: #0F0024;
}
.category-ul li a:hover {
  background: #E22600;
  color: #FFF;
  opacity: 1;
}
.category-ul li a:hover span {
  color: #FFF;
}
.category-ul li a:hover img {
  filter: brightness(2) grayscale(1) invert(1);
}
.category-ul li a:hover:after {
  opacity: 0;
}
@media (max-width: 600px) {
  .category-ul {
    background: none;
  }
  .category-ul li {
    flex-basis: 48%;
    display: block;
    margin: 1%;
    background: #f5f5f5;
    min-width: unset;
  }
  .category-ul li a {
    padding: 10px 10px !important;
    pointer-events: auto !important;
  }
  .category-ul li a:hover {
    background: #E22600;
  }
}
@media (max-width: 600px) and (max-width: 330px) {
  .category-ul li {
    flex-basis: 100%;
    margin-bottom: 2%;
  }
}

.search-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #0F0024;
  border-radius: 20px;
}
.search-box .search-form {
  width: auto;
  min-width: 60%;
  position: relative;
  padding: 0.5rem 2rem;
  margin: 1rem 0;
}
.search-box .search-form h3 {
  color: white;
  font-weight: 400;
}
.search-box .search-form h3 span {
  font-size: 22px;
}
.search-box .search-form form {
  padding-top: 15px;
}
.search-box .search-form form input {
  width: 80%;
}
.search-box .search-form:after {
  content: "";
  position: absolute;
  border-right: dashed 1px white;
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
}
@media (max-width: 1350px) {
  .search-box .search-form:after {
    display: none;
  }
}
.search-box .overview-button {
  min-width: 40%;
  padding: 0.5rem 2rem;
  margin: 1rem 0;
  display: flex;
}
.search-box .overview-button h3 {
  color: white;
  text-align: left;
  line-height: 1.3;
  font-size: 30px;
}
.search-box .overview-button h3 span {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
}
.search-box .overview-button img {
  width: 50px;
  filter: brightness(0) invert(1);
  margin-left: 2rem;
  transition: all 300ms;
}
.search-box .overview-button:hover h3 {
  color: #f3f3f3;
}
.search-box .overview-button:hover img {
  margin-bottom: -7px;
}
.search-box h3 {
  margin-bottom: 0;
  margin-top: 0;
  color: white;
}

/* FOOTER */
.contact {
  height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
@media (max-width: 680px) {
  .contact {
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
}
.contact .background {
  width: 100%;
  height: 100%;
  position: absolute;
}
.contact .background .image {
  background-image: url(../../img/pickup-servis.jpg);
  background-size: cover;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 960px) {
  .contact .background .image {
    background-position: -800px center;
  }
}
.contact .background .overlay {
  position: absolute;
  width: 50%;
  top: -100%;
  right: 0;
}
.contact .background .overlay img {
  width: 2000px;
  position: absolute;
  left: -420px;
  top: -50px;
}
@media (max-width: 680px) {
  .contact .background {
    height: 400px;
    position: relative;
    order: 2;
  }
  .contact .background .image {
    width: 100%;
    background-position: center;
  }
  .contact .background .overlay {
    display: none;
  }
}
.contact .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}
.contact .container .right {
  width: 50%;
  color: #FFF;
}
.contact .container .right h1 {
  color: #FFF;
}
@media (max-width: 960px) {
  .contact .container .right {
    margin-right: 5%;
  }
}
.contact .container .info {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -100px;
}
@media (max-width: 960px) {
  .contact .container .info {
    margin-bottom: -40px;
  }
}
.contact .container .info .info-item {
  text-align: center;
  width: 50%;
}
.contact .container .info .info-item span {
  font-size: 30px;
  font-weight: 300;
  margin-top: 15px;
  margin-bottom: 12px !important;
  color: #FFF !important;
  display: block;
}
.contact .container .info .info-item a {
  color: #FFF;
  line-height: 24px;
}
.contact .container .info .info-item table {
  margin: auto;
}
.contact .container .info .info-item table tr {
  line-height: 24px;
}
.contact .container .info .info-item table tr td {
  color: #FFF;
}
@media (max-width: 480px) {
  .contact .container .info .info-item {
    width: 100%;
    margin-bottom: 18px;
  }
  .contact .container .info .info-item h3 {
    display: none;
  }
}
.contact .container .map {
  display: block;
  z-index: 1;
  position: relative;
  margin-bottom: -100px;
  opacity: 0.9;
  transition: 300ms;
}
@media (max-width: 960px) {
  .contact .container .map {
    margin-bottom: -44px;
  }
}
.contact .container .map img {
  width: 100%;
}
.contact .container .map:hover {
  transform: scale(1.1);
  opacity: 1;
}
@media (max-width: 680px) {
  .contact .container {
    background: #0F0024;
    order: 1;
  }
  .contact .container .right {
    width: 100%;
    padding: 50px 0;
    margin: 0;
  }
}

/* SVOZ HERO */
.svoz-hero {
  margin: 60px 0 30px 0;
}
.svoz-hero .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.svoz-hero .container .hero-description {
  max-width: 40%;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}
.svoz-hero .container .hero-description .hero-title {
  position: relative;
}
@media (min-width: 840px) {
  .svoz-hero .container .hero-description .hero-title h1 {
    text-align: left;
    padding-bottom: 20px;
    font-size: 58px;
  }
  .svoz-hero .container .hero-description .hero-title h1 span {
    font-size: 45px;
  }
}
.svoz-hero .container .hero-description .hero-title h1:after {
  margin: 0;
}
.svoz-hero .container .hero-description .hero-title img {
  position: absolute;
  height: 50px;
  left: -15px;
  bottom: 18px;
  width: auto;
  z-index: -1;
}
@media (max-width: 840px) {
  .svoz-hero .container .hero-description .hero-title img {
    height: 40px;
    bottom: 5px;
  }
}
.svoz-hero .container .hero-description p {
  padding: 20px 0;
  line-height: 30px;
  font-size: 20px;
  font-weight: lighter;
  margin-top: 10px;
}
.svoz-hero .container .hero-description .cta-btn {
  padding: 10px 27px;
  background: #B71F00;
  color: #FFF;
  text-transform: uppercase;
  transition: 200ms;
  width: 220px;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
}
.svoz-hero .container .hero-description .cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #0f002438;
}
@media (max-width: 840px) {
  .svoz-hero .container .hero-description {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .svoz-hero .container .hero-description h1 {
    text-align: center;
    padding-bottom: 5px;
  }
  .svoz-hero .container .hero-description h1:after {
    display: none;
  }
  .svoz-hero .container .hero-description p {
    padding: 0 0 10px 0;
  }
}
.svoz-hero .container img.hero-image {
  position: absolute;
  width: 50vw;
  left: 38%;
  bottom: -11vw;
}
@media (max-width: 840px) {
  .svoz-hero .container img.hero-image {
    display: none;
  }
}
@media (max-width: 1200px) {
  .svoz-hero .container img.hero-image {
    bottom: 10%;
  }
}

/* SVOZ PROCES */
.svoz-process {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
}
.svoz-process .process-box {
  width: 100%;
  padding: 60px 30px;
  background: #0F0024;
  color: white;
  margin: 20px;
  border-radius: 22px;
  display: flex;
  justify-content: center;
}
@media (max-width: 840px) {
  .svoz-process .process-box {
    margin: 0;
    border-radius: 0;
  }
}
.svoz-process .process-box .container .benefits {
  margin-top: 0;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.svoz-process .process-box .container .benefits .benefit-item {
  min-width: 250px;
  width: 250px;
}
.svoz-process .process-box .container .benefits .benefit-item img {
  height: 90px;
  width: auto;
}
.svoz-process .process-box .container .benefits .benefit-item span {
  font-size: 35px;
  font-weight: bold;
}
.svoz-process .process-box .container .benefits .benefit-item p {
  font-size: 20px;
  font-weight: lighter;
  line-height: 31px;
}

/* SVOZ CONTACT */
.svoz-contact {
  background-image: url(../../img/detail-background.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.svoz-contact .container {
  margin: 40px auto;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.svoz-contact .container .contact-box {
  padding: 30px;
  margin: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
}
.svoz-contact .container .contact-box p {
  font-size: 20px;
  font-weight: lighter;
  line-height: 30px;
  margin-bottom: 45px;
}
.svoz-contact .container .contact-box .cta-btn {
  padding: 10px 27px;
  background: #B71F00;
  color: #FFF;
  text-transform: uppercase;
  transition: 200ms;
  width: 220px;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
}
.svoz-contact .container .contact-box .cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #0f002438;
}
.svoz-contact .container .contact-box a {
  font-size: 40px;
  font-weight: bold;
  color: #B71F00;
}
@media (min-width: 480px) {
  .svoz-contact .container .contact-box.middle {
    background: white;
    box-shadow: 0 0 13px 3px #00000017;
    border-radius: 21px;
  }
}

.svoz-about {
  padding: 10px 0 60px 0;
}

/* MODAL */
#modal-collector .modal-box {
  margin-bottom: 120px;
}

/* form */
.phone-form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.phone-form .input-phone input {
  border-radius: 5px 0 0 5px;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 300;
  min-height: 42px;
  border: 1px solid #0000001f;
}
.phone-form .submit-phone button {
  font-weight: bold;
  background-color: #B71F00;
  color: white;
  min-height: 42px;
  border-radius: 0 5px 5px 0;
  border: 0;
  padding: 10px 10px;
}

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