.LoginBox {
  border-radius: 0;
  box-shadow: 0 0px 7px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.LoginArea {
  position: absolute;
  top: 176px;
  right: 20px;
  z-index: 10;
  max-width: 350px;
  width: 90%;
}
@media (max-width: 1080px) {
  .LoginArea {
    right: 50%;
    transform: translateX(50%);
  }
}

.LoginAvatar {
  display: flex;
  justify-content: center;
}
.LoginAvatar svg {
  display: block;
}

#ctl00_DivUserNotLoggedIn {
  box-shadow: unset;
}

.login-layout .widget-box .widget-main {
  padding: 30px;
  background: unset;
}

.login-box,
.forgot-box {
  background-color: var(--clr-white);
  border-radius: 9px;
}

.login_log {
  padding: 10px 0;
  font-size: 13px;
}

.widget-body-inside input {
  height: 40px;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 13px;
  border-radius: 5px;
  border: 1px solid;
}

.widget-body-inside button {
  width: 100%;
}

.login-box .toolbar {
  padding: 9px 18px 0;
}
.login-box .toolbar a {
  text-decoration: none;
}
.login-box .toolbar a:hover {
  text-decoration: underline;
}

#ctl00_DivUserLoggedIn {
  border-radius: 0;
}

.LogedinBtn .fa-power-off:before {
  background-color: var(--clr-primary);
}

#ctl00_DivUserLoggedIn,
#ctl00_cphMain_DivUserLoggedIn {
  box-shadow: 0 0px 7px 0px rgba(0, 0, 0, 0.1);
}

.css-banner p {
  margin: 0;
}
.css-banner img {
  width: 100%;
}

.upProgressSquare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(228, 50, 43, 0.5);
  z-index: 10;
}

.owl-stage-outer {
  padding: 0;
}
.owl-carousel {
  touch-action: manipulation;
}
.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  width: 30px;
  height: 30px;
}
@media (max-width: 960px) {
  .owl-prev, .owl-next {
    box-shadow: 0 0px 11px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3), 0 0 4px rgba(0, 0, 0, 0.2);
    top: 50%;
    width: 40px;
    height: 40px;
  }
}
.owl-prev::before, .owl-next::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 30px;
  height: 30px;
  /* border-top: 0; */
  /* border-left: 0; */
  /* border-right: 2px solid; */
  /* border-bottom: 2px solid; */
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 960px) {
  .owl-prev::before, .owl-next::before {
    width: 10px;
    height: 10px;
    border-right: 4px solid;
    border-bottom: 4px solid;
    border-color: var(--clr-primary);
  }
}
.owl-prev {
  left: -50px;
}
.owl-prev::before {
  background-image: url(/CMS/site/images/eshop7/arrow-left.svg);
}
@media (max-width: 960px) {
  .owl-prev::before {
    transform: translate(-30%, -50%) rotate(135deg);
    background-image: unset;
  }
}
@media (max-width: 960px) {
  .owl-prev {
    left: 0;
  }
}
.owl-next {
  right: -50px;
}
.owl-next::before {
  background-image: url(/CMS/site/images/eshop7/arrow-right.svg);
}
@media (max-width: 960px) {
  .owl-next::before {
    transform: translate(-70%, -50%) rotate(-45deg);
    background-image: unset;
  }
}
@media (max-width: 960px) {
  .owl-next {
    right: 0;
  }
}
.owl-dots {
  margin: 290px 0 75px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .owl-dots {
    margin: 75px 0 75px;
  }
}
.owl-dot {
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.37);
  border-radius: 50%;
}
.owl-dot.active {
  background-color: #fff;
}
.owl-dot:not(:last-child) {
  margin: 0px 45px 0 0;
}
@media (max-width: 991px) {
  .owl-dot:not(:last-child) {
    margin: 0px 25px 0 0;
  }
}

.slick-dots {
  list-style: none;
  display: flex !important;
  margin: 0;
}
.slick-dots li {
  margin: 10px;
  border: 1px solid var(--clr-primary);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-dots li.slick-active {
  background-color: var(--clr-primary);
}
.slick-dots li button {
  font-size: 0;
  border: unset;
}

.scroll-to-top {
  position: fixed;
  bottom: -100px;
  right: 30px;
  transition: bottom 300ms ease-in;
  z-index: 10;
}
.scroll-to-top.show {
  bottom: 50px;
  transition: bottom 300ms ease-in;
}
.scroll-to-top a {
  display: block;
  width: 40px;
}
.scroll-to-top a svg {
  width: 100%;
}

.masonry__layout {
  --columns: 1;
  --gap: 20px;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  grid-gap: var(--gap);
}
@media (max-width: 991px) {
  .masonry__layout {
    place-items: center;
  }
}
.masonry__layout.columns-1 {
  --columns: 1;
}
.masonry__layout.columns-2 {
  --columns: 2;
}
.masonry__layout.columns-3 {
  --columns: 3;
}
.masonry__layout.columns-4 {
  --columns: 4;
}
.masonry__layout img {
  max-width: 100%;
  width: 100%;
  display: block;
}
.masonry__item {
  margin-bottom: var(--gap);
}

.at-share-btn-elements {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 680px) {
  .at-share-btn-elements {
    justify-content: center;
  }
}
.at-share-btn-elements a {
  margin-bottom: 0 !important;
  background-color: var(--clr-primary) !important;
  border-radius: 6px !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--clr-secondary);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloader .pageprogress {
  position: fixed;
  z-index: 999999;
  display: block;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: 0;
  fill: transparent;
  transform: translate(-50%, -50%);
}
#preloader .pageprogress circle {
  fill: none;
  stroke-width: 3px;
}
#preloader .pageprogress circle.background {
  stroke: rgba(255, 255, 255, 0.1);
}
#preloader .pageprogress circle.foregroundp {
  stroke-dasharray: 2030px 2030px;
  stroke-dashoffset: 2030px;
  transform: rotate3d(0, 0, 1, -90deg);
  transform-origin: 50% 50%;
}

.displayBlock {
  display: none;
}

#cboxLoadedContent .displayBlock {
  display: block;
}

#cboxOverlay {
  background: none !important;
}

#cboxMiddleLeft,
#cboxTopLeft,
#cboxTopCenter,
#cboxTopRight,
#cboxMiddleRight,
#cboxBottomRight,
#cboxBottomCenter,
#cboxBottomLeft {
  height: 0 !important;
  width: 0 !important;
  background: none !important;
}

#cboxLoadedContent {
  margin-bottom: 0 !important;
}

#cboxContent {
  background: var(--clr-black-600) !important;
  padding: 45px 20px;
}

#cboxClose {
  top: 10px !important;
  right: 10px !important;
  background: url(/CMS/site/images/eshop5/colorbox-close.svg) !important;
  width: 25px !important;
  height: 25px !important;
}

#colorbox {
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.3);
}

#cboxPrevious,
#cboxNext {
  bottom: unset;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#cboxPrevious:hover,
#cboxNext:hover {
  background-position: unset;
}

#cboxPrevious {
  right: unset;
  left: 16px;
  background: unset;
}

#cboxNext {
  left: unset;
  right: 16px;
  background: unset;
}

#cboxCurrent {
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  background-color: #fff;
  padding: 5px 10px;
  color: #000;
}

.pagination {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 20px;
  margin-top: 40px;
  justify-content: center;
  background-color: #fff;
}
.pagination .page {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
}
.pagination .page a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  text-decoration: none;
  color: var(--clr-secondary);
}
.pagination .page.current {
  border: 1px solid;
  color: var(--clr-secondary);
}
.pagination .page.next, .pagination .page.last, .pagination .page.first, .pagination .page.prev, .pagination .page.arrow-prev, .pagination .page.arrow-double-prev, .pagination .page.arrow-next, .pagination .page.arrow-double-next {
  display: none;
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.accordion-section {
  margin-bottom: 10px;
  padding: 25px 30px;
  background-color: var(--clr-gray-300);
  border-radius: 20px;
}
@media (max-width: 991px) {
  .accordion-section {
    border-top: 4px solid var(--clr-blue);
  }
}
.accordion-section:last-child {
  margin-bottom: 0;
}
.accordion-section-content {
  display: none;
  padding: 25px 0 0;
  background-color: var(--clr-gray-300);
}
@media (max-width: 991px) {
  .accordion-section-content {
    padding: 30px 0px 0;
  }
}
.accordion-section-title {
  position: relative;
  width: 20px;
  height: 20px;
}
.accordion-section-title .arrows {
  pointer-events: none;
  position: absolute;
}
.accordion-section-title .arrow-props {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.accordion-section-title .arrow-down {
  background-image: url(/CMS/site/images/eshop7/arrow-down.svg);
}
.accordion-section-title .arrow-up {
  display: none;
  background-image: url(/CMS/site/images/eshop7/arrow-up.svg);
}
.accordion-section-title.active .arrow-up {
  display: flex;
}
.accordion-section-title.active .arrow-down {
  display: none;
}
.accordion-section-title-text {
  font-size: clamp(16px, 3vw, 19px);
  color: var(--clr-primary);
  font-weight: 700;
}

.social__media {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 680px) {
  .social__media {
    gap: 20px;
  }
}
.social__media a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  width: 15px;
  height: 15px;
}
.social__media a:hover {
  opacity: 0.7;
}
.social__media a i {
  color: var(--clr-black);
  font-size: 14px;
}/*# sourceMappingURL=plugins.css.map */