/* TABS */
/*
horizontal tabs -> class="tabs" //default: left top, optional: bottom, center, right
vertical tabs -> class="tabs vertical" //default: top left optional: right, center, bottom 
<ul class="tabs">
	<li class="selected"><span>Tab 1</span></li>
	<li><span>Tab 2</span></li>
	<li><span>Tab 3</span></li>
	<li><i class="tab-icon icon-fb"></i><span>Tab 4</span></li> // optional icon
</ul>
*/
/* line 16, assetic_compassAXAC2g.scss */
.productTab {
  position: fixed;
  width: 500px;
  height: 100%;
  top: 0;
  z-index: 100;
  background: white;
  right: -500px;
  transition: right 0.3s ease;
}
@media screen and (max-width: 800px) {
  /* line 16, assetic_compassAXAC2g.scss */
  .productTab {
    right: 0;
    bottom: -100vh;
    top: auto;
    transition: bottom 0.3s ease;
    width: 100%;
  }
}
/* line 32, assetic_compassAXAC2g.scss */
.productTab.open {
  right: 0;
  transition: right 0.3s ease;
  overflow: auto;
}
@media screen and (max-width: 800px) {
  /* line 32, assetic_compassAXAC2g.scss */
  .productTab.open {
    bottom: 0;
    top: auto;
    transition: bottom 0.3s ease;
  }
}
/* line 42, assetic_compassAXAC2g.scss */
.productTab .comment_hr {
  background: #C4C4C4;
  opacity: 0.3;
  height: 1px;
}
/* line 47, assetic_compassAXAC2g.scss */
.productTab .drawer_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
}
@media screen and (max-width: 800px) {
  /* line 47, assetic_compassAXAC2g.scss */
  .productTab .drawer_header {
    padding: 0 16px;
  }
}
/* line 56, assetic_compassAXAC2g.scss */
.productTab .drawer_header h2 {
  font-size: 20px;
  padding: 0;
  font-family: 'empikProBold';
}
/* line 61, assetic_compassAXAC2g.scss */
.productTab .drawer_header img {
  width: 20px;
  cursor: pointer;
}
/* line 66, assetic_compassAXAC2g.scss */
.productTab hr {
  margin: 0;
  border-top: 1px solid #ECECEC;
}
/* line 71, assetic_compassAXAC2g.scss */
.productTab .drawer_content {
  padding: 0 32px;
  margin-top: 32px;
}
@media screen and (max-width: 800px) {
  /* line 71, assetic_compassAXAC2g.scss */
  .productTab .drawer_content {
    padding: 0 16px;
  }
}
/* line 78, assetic_compassAXAC2g.scss */
.productTab .drawer_content.details li:nth-child(even) {
  background: #FAFAFA;
}
/* line 82, assetic_compassAXAC2g.scss */
.productTab .drawer_content.legend {
  margin-top: 16px;
  font-size: 15px;
}
/* line 86, assetic_compassAXAC2g.scss */
.productTab .drawer_content ul {
  list-style: none;
  padding: 0;
}
/* line 89, assetic_compassAXAC2g.scss */
.productTab .drawer_content ul .details_item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  color: #000000;
}
/* line 95, assetic_compassAXAC2g.scss */
.productTab .drawer_content ul .details_item .drawer_content_title {
  flex: 1;
  font-family: empikProBold;
  margin: 0;
  align-items: center;
  display: flex;
}
/* line 102, assetic_compassAXAC2g.scss */
.productTab .drawer_content ul .details_item .drawer_content_value {
  flex: 1;
  margin: 0;
  font-family: empikProRegular;
}
/* line 110, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list li {
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  /* line 110, assetic_compassAXAC2g.scss */
  .productTab .drawer_content .typeOfPaper_list li {
    display: flex;
    justify-content: center;
  }
}
/* line 117, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  display: block;
  padding: 0;
  padding-bottom: 10px;
}
/* line 127, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container.checked {
  border: 2px solid #FF5747;
}
/* line 131, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container--redesign {
  border: none;
  padding: 0;
}
/* line 136, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container--redesign .typeOfPaper_info {
  border: 1px solid #E5E5E5;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
/* line 142, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container--redesign .typeOfPaper_info .typeOfPaper_detail {
  padding-bottom: 10px;
}
@media screen and (max-width: 800px) {
  /* line 117, assetic_compassAXAC2g.scss */
  .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container {
    max-width: 343px;
    width: 100%;
    height: 277px;
  }
  /* line 153, assetic_compassAXAC2g.scss */
  .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container--redesign {
    height: auto;
  }
}
/* line 158, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container label {
  position: relative;
  cursor: pointer;
}
/* line 163, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_radio, .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_image {
  position: relative;
  height: 215px;
  max-width: 500px;
  width: 100%;
  background: #F6F6F6;
  padding: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
@media screen and (max-width: 800px) {
  /* line 163, assetic_compassAXAC2g.scss */
  .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_radio, .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_image {
    height: 155px;
  }
}
/* line 177, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_radio input, .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_image input {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  z-index: 1;
  border-radius: 45px;
  border: 1px solid #E5E5E5;
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  right: 0;
  cursor: pointer;
  margin-top: 24px;
  margin-right: 24px;
}
/* line 192, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_radio input:checked, .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_image input:checked {
  background: #FF5747 url("https://static.empikfoto.pl/drawer/paperType/checked.svg") no-repeat center;
}
/* line 197, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_radio img, .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_image img {
  width: 100%;
  left: 0;
  top: -30px;
  position: relative;
}
@media screen and (max-width: 800px) {
  /* line 197, assetic_compassAXAC2g.scss */
  .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_radio img, .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_image img {
    max-width: 297px;
    top: -20px;
  }
}
@media screen and (max-width: 800px) {
  /* line 209, assetic_compassAXAC2g.scss */
  .productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_image img {
    max-width: 100%;
  }
}
/* line 215, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info {
  flex-direction: column;
  width: 100%;
  justify-content: flex-end;
  display: flex;
  padding: 0 23px;
}
/* line 222, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info .typeOfPaper_header {
  width: 100%;
  font-size: 18px;
  font-family: 'empikProBold';
  letter-spacing: 0.3px;
  line-height: 24px;
  padding: 16px 0;
  padding-bottom: 0;
  justify-content: space-between;
  display: flex;
}
/* line 232, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info .typeOfPaper_header .typeOfPaper_priceInfo {
  position: relative;
  display: flex;
}
/* line 235, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info .typeOfPaper_header .typeOfPaper_priceInfo .tooltip {
  display: flex;
  margin-left: 4px;
  justify-content: center;
  align-items: center;
}
/* line 240, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info .typeOfPaper_header .typeOfPaper_priceInfo .tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: white;
  color: black;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  border-radius: 8px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -45px;
  left: -60px;
  font-family: empikProRegular;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
}
/* line 259, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info .typeOfPaper_header .typeOfPaper_priceInfo .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/* line 265, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info .typeOfPaper_header p {
  margin: 0;
}
/* line 270, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info .typeOfPaper_detail {
  flex-direction: column;
  font-size: 12px;
  font-family: 'empikProRegular';
  letter-spacing: 0.4px;
  line-height: 16px;
  color: #575757;
  padding-top: 5px;
}
/* line 278, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfPaper_list .typeOfPaper_container .typeOfPaper_info .typeOfPaper_detail p {
  margin: 0;
  margin-top: 4px;
}
/* line 286, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  overflow: hidden;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  display: block;
  padding: 0;
}
/* line 297, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container.checked {
  border: 2px solid #FF5747;
}
@media screen and (max-width: 800px) {
  /* line 286, assetic_compassAXAC2g.scss */
  .productTab .drawer_content .typeOfCover_container {
    max-width: 343px;
    width: 100%;
    height: 277px;
  }
}
/* line 307, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container label {
  position: relative;
  cursor: pointer;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
/* line 315, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container .typeOfCover_radio {
  position: relative;
  height: auto;
  max-width: 50px;
  width: 100%;
  background: transparent;
  padding: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
@media screen and (max-width: 800px) {
  /* line 315, assetic_compassAXAC2g.scss */
  .productTab .drawer_content .typeOfCover_container .typeOfCover_radio {
    height: 155px;
  }
}
/* line 329, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container .typeOfCover_radio input {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  z-index: 1;
  border-radius: 45px;
  border: 1px solid #E5E5E5;
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  right: 0;
  cursor: pointer;
  margin-top: 24px;
  margin-right: 24px;
}
/* line 345, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container .typeOfCover_radio input:checked {
  background: #FF5747 url("https://static.empikfoto.pl/drawer/paperType/checked.svg") no-repeat center;
}
/* line 351, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container .typeOfCover_info {
  flex-direction: column;
  height: inherit;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 23px;
}
/* line 360, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container .typeOfCover_info .typeOfCover_header {
  width: 100%;
  font-size: 18px;
  font-family: 'empikProBold';
  letter-spacing: 0.3px;
  line-height: 24px;
  flex-direction: column;
  padding: 16px 0;
  padding-bottom: 0;
  justify-content: space-between;
  display: flex;
}
/* line 371, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container .typeOfCover_info .typeOfCover_header p {
  margin: 0;
}
/* line 374, assetic_compassAXAC2g.scss */
.productTab .drawer_content .typeOfCover_container .typeOfCover_info .typeOfCover_header .typeOfCover_price {
  margin-top: 10px;
  font-size: 16px;
}
/* line 383, assetic_compassAXAC2g.scss */
.productTab .opinions {
  width: 100%;
  font-family: empikProRegular;
}
/* line 386, assetic_compassAXAC2g.scss */
.productTab .opinions .rating {
  display: flex;
  flex: 1;
}
/* line 390, assetic_compassAXAC2g.scss */
.productTab .opinions .rating .value span {
  font-size: 38px;
}
/* line 395, assetic_compassAXAC2g.scss */
.productTab .opinions .link {
  margin-bottom: 2px;
}
/* line 397, assetic_compassAXAC2g.scss */
.productTab .opinions .link .review-btn {
  height: 36px;
  display: flex;
  align-items: center;
  border-radius: 58px;
  width: 100%;
  letter-spacing: 0.3px;
  font-size: 15px;
  justify-content: center;
  min-width: 121px;
  max-width: 132px;
}
/* line 411, assetic_compassAXAC2g.scss */
.productTab .more_opinions {
  display: flex;
  justify-content: center;
}
/* line 414, assetic_compassAXAC2g.scss */
.productTab .more_opinions .review-btn {
  height: 36px;
  display: flex;
  align-items: center;
  border-radius: 58px;
  width: 100%;
  letter-spacing: 0.3px;
  font-size: 1.2rem;
  justify-content: center;
  min-width: 121px;
  max-width: 170px;
}
/* line 427, assetic_compassAXAC2g.scss */
.productTab .bar_rating {
  margin: 0 1em 0 0;
  width: 70px !important;
  height: 14px !important;
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  margin-left: 8px;
}
/* line 435, assetic_compassAXAC2g.scss */
.productTab .bar_rating .rating_wrapper {
  width: inherit;
  height: inherit;
}
/* line 439, assetic_compassAXAC2g.scss */
.productTab .bar_rating p {
  margin: 0;
}
/* line 442, assetic_compassAXAC2g.scss */
.productTab .bar_rating .mask {
  background-image: url("../../../icon/stars-rating.svg");
  width: inherit;
  height: inherit;
  position: relative;
  z-index: 1;
  background-size: 105% 105%;
  background-position: center;
}
/* line 452, assetic_compassAXAC2g.scss */
.productTab .bar_rating .value {
  position: absolute;
  z-index: 0;
  height: 80%;
  max-width: 100%;
  top: 8%;
  left: 0;
  background-color: black;
}
/* line 463, assetic_compassAXAC2g.scss */
.productTab .user_comment .bar_rating {
  width: 70px !important;
  margin-top: 0;
  margin-left: 0;
}

/* line 471, assetic_compassAXAC2g.scss */
.standardTab_overlay {
  position: fixed;
  background: #000000;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear;
}
/* line 482, assetic_compassAXAC2g.scss */
.standardTab_overlay.open {
  opacity: 0.6;
  visibility: visible;
  transition: all 0.5s linear;
}

/*<editor-fold defaultstate="collapsed" desc="TABS HORIZONTAL">*/
/* line 489, assetic_compassAXAC2g.scss */
.tabs {
  list-style: none;
  padding: 0 10px;
  margin: 2px 0 0 0;
  font-size: 0;
  line-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  /*</editor-fold >*/
  /*<editor-fold defaultstate="collapsed" desc="TABS HORIZONTAL BOTTOM">*/
  /*</editor-fold >*/
  /*<editor-fold defaultstate="collapsed" desc="TABS VERTICAL">*/
  /*</editor-fold >*/
}
/* line 499, assetic_compassAXAC2g.scss */
.tabs.center {
  text-align: center;
}
/* line 502, assetic_compassAXAC2g.scss */
.tabs.right {
  text-align: right;
}
/* line 505, assetic_compassAXAC2g.scss */
.tabs > li {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  line-height: 1em;
  padding: 0.9em 1.7em;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  -webkit-transition: all 0.2s ease 0;
  -moz-transition: all 0.2s ease 0;
  -ms-transition: all 0.2s ease 0;
  -o-transition: all 0.2s ease 0;
  transition: all 0.2s ease 0;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*        &:hover:after {
              background-color: $blueDeep;
              color: $blueDeep;
          }*/
}
/* line 516, assetic_compassAXAC2g.scss */
.tabs > li:last-child {
  border-right: 1px solid #CCCCCC;
}
/* line 519, assetic_compassAXAC2g.scss */
.tabs > li:after {
  content: "\4e";
  display: block;
  position: absolute;
  font-family: empikfoto;
  font-size: inherit;
  text-align: center;
  line-height: 0.9em;
  width: calc(100% + 2px);
  height: 0.25em;
  background-color: transparent;
  color: transparent;
  top: -0.25em;
  left: -1px;
  -webkit-transition: all 0.2s ease 0;
  -moz-transition: all 0.2s ease 0;
  -ms-transition: all 0.2s ease 0;
  -o-transition: all 0.2s ease 0;
  transition: all 0.2s ease 0;
}
/* line 539, assetic_compassAXAC2g.scss */
.tabs > li:active:after {
  background-color: #FF5747;
  color: #FF5747;
}
/* line 543, assetic_compassAXAC2g.scss */
.tabs > li.selected {
  background-color: #ffffff;
  font-family: roboto;
  font-weight: bold;
  cursor: default;
}
/* line 548, assetic_compassAXAC2g.scss */
.tabs > li.selected:after {
  background-color: #FF5747;
  color: #FF5747;
}
/* line 552, assetic_compassAXAC2g.scss */
.tabs > li.selected:hover:after {
  background-color: #FF5747;
  color: #FF5747;
}
/* line 556, assetic_compassAXAC2g.scss */
.tabs > li.selected:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  bottom: -1px;
  left: 0;
  -webkit-transition: all 0.2s ease 0;
  -moz-transition: all 0.2s ease 0;
  -ms-transition: all 0.2s ease 0;
  -o-transition: all 0.2s ease 0;
  transition: all 0.2s ease 0;
  z-index: 1;
}
/* line 568, assetic_compassAXAC2g.scss */
.tabs > li.selected a {
  color: #333333;
}
/* line 572, assetic_compassAXAC2g.scss */
.tabs > li a {
  color: #666666;
}
/* line 576, assetic_compassAXAC2g.scss */
.tabs > li > .tab-icon {
  display: inline-block;
  position: relative;
  right: 0.62em;
  font-size: 2.4em;
  height: 0.16em;
  line-height: 0;
  vertical-align: middle;
}
/* line 584, assetic_compassAXAC2g.scss */
.tabs > li > .tab-icon > span:before {
  font-size: 1em;
}
/* line 590, assetic_compassAXAC2g.scss */
.tabs.bottom {
  margin: 0 0 2px 0;
  border-top: 1px solid #CCCCCC;
  border-bottom: none;
}
/* line 594, assetic_compassAXAC2g.scss */
.tabs.bottom > li {
  border-top: none;
  border-bottom: 1px solid #CCCCCC;
}
/* line 597, assetic_compassAXAC2g.scss */
.tabs.bottom > li:after {
  top: auto;
  bottom: -0.25em;
  transform: rotate(180deg);
}
/* line 602, assetic_compassAXAC2g.scss */
.tabs.bottom > li.selected {
  border-top: none;
  border-bottom: 1px solid transparent;
}
/* line 605, assetic_compassAXAC2g.scss */
.tabs.bottom > li.selected:before {
  top: -1px;
  bottom: 0;
}
/* line 610, assetic_compassAXAC2g.scss */
.tabs.bottom > li:hover {
  border-top: none;
  border-bottom: 1px solid transparent;
}
/* line 618, assetic_compassAXAC2g.scss */
.tabs.vertical {
  padding: 0;
  position: relative;
  margin: 0;
  width: auto;
  height: 100%;
  border: none;
  text-align: left;
  /*</editor-fold >*/
  /*<editor-fold defaultstate="collapsed" desc="TABS VERTICAL RIGHT">*/
}
/* line 626, assetic_compassAXAC2g.scss */
.tabs.vertical:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  border-right: 1px solid #CCCCCC;
}
/* line 636, assetic_compassAXAC2g.scss */
.tabs.vertical.center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
/* line 641, assetic_compassAXAC2g.scss */
.tabs.vertical.bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  margin: 0 0 0 2px;
  border-top: none;
  border-bottom: none;
}
/* line 648, assetic_compassAXAC2g.scss */
.tabs.vertical.bottom > li {
  border-top: 1px solid #CCCCCC;
  border-bottom: none;
}
/* line 651, assetic_compassAXAC2g.scss */
.tabs.vertical.bottom > li:last-child:after {
  bottom: 0;
}
/* line 654, assetic_compassAXAC2g.scss */
.tabs.vertical.bottom > li:after {
  bottom: -1px;
}
/* line 657, assetic_compassAXAC2g.scss */
.tabs.vertical.bottom > li:hover {
  border-top: 1px solid #CCCCCC;
  border-bottom: none;
}
/* line 661, assetic_compassAXAC2g.scss */
.tabs.vertical.bottom > li.selected {
  border-top: 1px solid #CCCCCC;
  border-bottom: none;
}
/* line 664, assetic_compassAXAC2g.scss */
.tabs.vertical.bottom > li.selected:before {
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
}
/* line 673, assetic_compassAXAC2g.scss */
.tabs.vertical > li {
  display: block;
  left: 19%;
  padding: 0.75em 0.5em;
  height: 2.5em;
  width: 81%;
}
/* line 679, assetic_compassAXAC2g.scss */
.tabs.vertical > li:hover {
  left: 0;
  width: 100%;
}
/* line 682, assetic_compassAXAC2g.scss */
.tabs.vertical > li:hover > span {
  top: 125%;
  opacity: 1;
  visibility: visible;
}
/* line 688, assetic_compassAXAC2g.scss */
.tabs.vertical > li > .tab-icon {
  right: 0.16em;
  font-size: 2.1em;
  height: 0.22em;
  bottom: 1px;
}
/* line 694, assetic_compassAXAC2g.scss */
.tabs.vertical > li:last-child {
  border-right: none;
}
/* line 697, assetic_compassAXAC2g.scss */
.tabs.vertical > li:after {
  content: "";
  width: 100%;
  height: 0;
  background-color: transparent;
  color: transparent;
  border-bottom: 1px solid #CCCCCC;
  top: auto;
  bottom: -1px;
  left: -1px;
  transform: none;
}
/* line 708, assetic_compassAXAC2g.scss */
.tabs.vertical > li > span {
  display: block;
  position: absolute;
  top: 150%;
  right: 1.4em;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #CCCCCC;
  background-color: #ffffff;
  box-shadow: 1px 1px 1px #CCCCCC;
  width: auto;
  height: auto;
  padding: 0.66em 0.9em 0.43em;
  transform: translate(50%, 0);
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
/* line 727, assetic_compassAXAC2g.scss */
.tabs.vertical > li > span:hover {
  top: 150% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: none;
}
/* line 733, assetic_compassAXAC2g.scss */
.tabs.vertical > li > span:after {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 7px solid transparent;
}
/* line 747, assetic_compassAXAC2g.scss */
.tabs.vertical > li > span:before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #CCCCCC;
  border-left: 7px solid transparent;
}
/* line 762, assetic_compassAXAC2g.scss */
.tabs.vertical > li.selected {
  left: 0;
  font-family: roboto;
  width: 100%;
}
/* line 766, assetic_compassAXAC2g.scss */
.tabs.vertical > li.selected:before {
  width: 1px;
  height: 100%;
  bottom: 0;
  right: 0;
  left: auto;
}
/* line 777, assetic_compassAXAC2g.scss */
.tabs.vertical.right {
  margin: 0;
  border: none;
}
/* line 780, assetic_compassAXAC2g.scss */
.tabs.vertical.right:after {
  right: auto;
  left: 0;
}
/* line 784, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li {
  display: block;
  border-left: none;
  border-right: 1px solid #CCCCCC;
  left: auto;
  right: 0;
  text-align: center;
  width: 81%;
}
/* line 792, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li:hover {
  right: 0;
  left: auto;
  width: 100%;
}
/* line 796, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li:hover > .tab-icon {
  right: -0.14em;
  left: auto;
}
/* line 801, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li:last-child {
  border-right: 1px solid #CCCCCC;
  border-left: none;
}
/* line 805, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li:after {
  left: auto;
  right: -1px;
}
/* line 809, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li > span {
  right: auto;
  left: 1.4em;
  transform: translate(-50%, 0);
}
/* line 814, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li > .tab-icon {
  right: 0.14em;
  left: auto;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
/* line 819, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li.selected {
  right: 0;
  left: auto;
  width: 100%;
}
/* line 823, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li.selected:before {
  right: auto;
  left: 0;
}
/* line 827, assetic_compassAXAC2g.scss */
.tabs.vertical.right > li.selected > .tab-icon {
  right: auto;
  left: 0.14em;
}

@media (max-width: 800px) {
  /* line 842, assetic_compassAXAC2g.scss */
  .rwd-page .boxes .tabs {
    margin: 2px 0 5px 0;
    padding: 0;
  }
  /* line 845, assetic_compassAXAC2g.scss */
  .rwd-page .boxes .tabs > li {
    border: 1px solid #CCCCCC;
    border-bottom: none;
    width: 100%;
    padding: 0 1.7em;
    height: 40px;
    line-height: 40px;
    position: inherit;
  }
  /* line 853, assetic_compassAXAC2g.scss */
  .rwd-page .boxes .tabs > li:last-child {
    border-bottom: 1px solid #CCCCCC;
  }
  /* line 856, assetic_compassAXAC2g.scss */
  .rwd-page .boxes .tabs > li.selected:before {
    display: none;
  }
  /* line 859, assetic_compassAXAC2g.scss */
  .rwd-page .boxes .tabs > li a br {
    display: none;
  }
  /* line 865, assetic_compassAXAC2g.scss */
  .rwd-page .boxes .tab img {
    max-width: 100%;
    height: auto;
  }
}
/*</editor-fold >*/

.footer-widget {
    max-width: 1180px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.footer-widget .padding-wrapper {
    max-width: 675px;
    width: 100%;
    flex-shrink: 2;
}

.footer-widget .footer-left {
    height: 443px;
    background: #FAEDED;
    display: flex;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-widget .footer-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.footer-widget .footer-left .footer-big-image {
    padding: 0 8px;
    height: 400px !important;
    max-width: unset !important;
}

.footer-widget .footer-mobile-app-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 330px;
    align-items: flex-start;
    padding: 0 24px;
    flex: 1;
}

.footer-widget .small-image-footer {
    width: 40px;
}

.footer-widget .text-title {
    font-size: 26px !important;
    padding: 0 !important;
    font-family: 'empikProBold', Roboto, 'roboto', sans-serif;
    margin: 30px 0 0 0;
}

.footer-widget .text-describe {
    max-width: 270px;
    font-size: 15px !important;
    padding: 0 !important;
    font-family: 'empikProRegular', Roboto, 'roboto', sans-serif;
    color: #575757;
    line-height: 24px;
    margin: 15px 0 28px 0;
}

.footer-widget .download-app-image {
    width: 130px;
    height: 40px;
    margin: 0 10px 10px 0;
    margin-left: 0;
    cursor: pointer;
}

.footer-widget p {
    margin: 0;
}

.footer-widget .footer-right {
    display: flex;
    height: 443px;
}

.footer-widget .footer-list-container {
    display: flex;
    flex-wrap: wrap;
    font-family: empikProRegular, Roboto, 'roboto', sans-serif;
    font-size: 14px;
    line-height: 16px;
    justify-content: flex-end;
}

.footer-widget .expand-menu {
    display: none;
}

.footer-widget .footer-list-container .list {
    list-style: none;
    padding: 0;
    height: auto !important;
    max-width: 200px;
    width: 100%;
}

.footer-widget .sublist {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    order: 3;
    margin-top: 25px;
}

.footer-widget .payments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.footer-widget .payments > .title {
    grid-column: 1/-1;
}

.footer-widget .payments > .second-list-element {
    text-align: center;
}


.footer-widget .payments .footer-list-image {
    max-width: 72px !important;
    height: 40px;
    width: auto;
}

.footer-widget .alternate-list {
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.footer-widget #first-list {
    order: 0
}

.footer-widget #second-list {
    order: 2
}

.footer-widget #third-list {
    order: 1;
    max-width: 140px;
    width: 100%;
    margin-left: 14%;
}

.footer-widget #fourth-list {
    order: 3;
}

.footer-widget .list li,
.footer-widget .alternate-list li {
    margin-bottom: 10px;
}

.footer-widget .title {
    font-family: empikProBold, Roboto, 'roboto', sans-serif;
    color: black;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 12px;
}

.footer-widget .footer-list-image {
    width: 72px;
    height: 33px;
}

.footer-widget .fourth-list-sublist {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    order: 2;
    max-width: 140px;
    width: 100%;
    margin-left: 14%;
}

.footer-widget .second-list-element {
    margin: 0;
}

.footer-widget .special {
    color: #FF5747;
}


@media screen and (max-width: 1220px) {
    .footer-widget .list {
        max-width: 140px;
    }

    .footer-widget {
        padding: 0 32px;
    }

    .footer-widget .footer-list-container .list {
        max-width: 150px;
    }
}

.footer-widget.no-redesign .text-title {
    font-family: Roboto, 'roboto', sans-serif;
    font-weight: 500;
}

.footer-widget.no-redesign .text-describe {
    color: #575757;
    font-family: Roboto, 'roboto', sans-serif;
    font-weight: 400;
}

.footer-widget.no-redesign .link-alt:hover {
    color: #333333;
    font-weight: 600;
    text-decoration: underline;
}


@media screen and (max-width: 920px) and (min-width: 800px) {
    .footer-widget .text-title {
        font-size: 20px !important;
    }

    .footer-widget .text-describe {
        font-size: 14px !important;
    }

    .footer-widget .footer-mobile-app-text {
        padding: 0;
    }
}

@media screen and (max-width: 900px) {
    .footer-widget .footer-list-container {
        margin-left: 3%;
    }

    .footer-widget .list {
        max-width: 120px;
    }
}

@media screen and (max-width: 800px) {
    .footer-widget {
        flex-direction: column;
        padding: 40px 0 0;
        margin-bottom: 40px;
    }

    .footer-widget .padding-wrapper {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }

    .footer-widget .footer-image-wrapper {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .footer-widget .footer-left .footer-big-image {
        padding: 0;
        width: auto;
        height: 400px;
    }

    .footer-widget .footer-full-mobile-img {
        transform: translateX(50%);
    }

    .footer-widget .expand-menu {
        display: block;
        z-index: 10;
        position: relative;
    }

    .footer-widget .footer-right {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .footer-widget .footer-list-container {
        flex-wrap: nowrap;
        flex-direction: column;
        margin-left: 0;
        margin: 30px 0;
    }

    .footer-widget .title {
        display: flex;
        font-size: 18px;
        align-items: center;
        justify-content: space-between;
    }

    .footer-widget .list li,
    .footer-widget .alternate-list li {
        width: 100%;
        padding: 0 16px;
    }

    .footer-widget .list li:nth-child(n+2) {
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 1;
        position: relative;
        visibility: hidden;
    }

    .footer-widget .list.open li:nth-child(n+2) {
        opacity: 1;
        transition: opacity 0.3s;
        visibility: visible;
    }

    .footer-widget .footer-list-container .list {
        margin: 0;
        max-width: 100%;
    }

    .footer-widget .footer-list-container .list.third-list {
        margin-top: 30px;
        width: 100%;
        max-width: 100%;
    }

    .footer-widget #third-list > ul > li {
        opacity: 1;
        visibility: visible;
    }

    .footer-widget .footer-mobile-app-text {
        flex-basis: 220px;
        width: 220px;
        flex: none;
    }

    .footer-widget .text-title {
        font-size: 20px !important;
    }

    .footer-widget #second-list {
        order: 2;
    }

    .footer-widget #third-list {
        order: 3;
        border-top: 2px solid #F2F2F2;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        font-size: 18px;
    }

    .footer-widget .fourth-list-sublist {
        max-width: 100%;
        margin-left: 0;
    }

    .footer-widget .third-list > ul {
        margin-top: 32px;
    }

    .footer-widget #fourth-list {
        order: 1;
    }

    .footer-widget .fourth-list > .list {
        max-width: 100%;
    }

    .footer-widget .first-list,
    .footer-widget .second-list,
    .footer-widget .fourth-list {
        height: auto !important;
        max-height: 72px;
        transition: max-height 0.3s;
        display: flex;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        padding: 20px 0 !important;
        margin: 0;
        border-top: 2px solid #F2F2F2;
    }

    .footer-widget .first-list.open,
    .footer-widget .second-list.open,
    .footer-widget ul.fourth-list.open {
        max-height: 280px;
        transition: max-height 0.5s;
    }

    .footer-widget .open > li {
        opacity: 1;
        transition: opacity 1s;
        display: flex;
        visibility: visible;
    }

    .footer-widget .alternate-list {
        display: flex;
    }

    .footer-widget .alternate-list .title {
        font-size: 15px;
    }

    .footer-widget .sublist {
        display: none;
    }

    .footer-widget .footer-list-container ul.open li img {
        opacity: 0;
    }

    .footer-widget .footer-list-container ul.open li.title {
        position: relative;
    }

    .footer-widget .footer-list-container ul.open li.title::before {
        content: "";
        display: block;
        border: 1px solid #e6e6e6;
        background-color: #fff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 0;
        right: 16px;
        cursor: pointer;
    }

    .footer-widget .footer-list-container ul.open li.title::after {
        content: "";
        display: block;
        border: 1px solid #838383;
        width: 12px;
        height: 0;
        position: absolute;
        right: 25px;
    }

}

@media screen and (max-width: 374px) {
    .footer-widget .footer-mobile-app-text {
        width: 170px;
    }

    .footer-widget .footer-mobile-app-text {
        padding: 0 8px;
    }
}