@charset "UTF-8";
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-moz-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-o-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.c-product-widget {
  padding: 0;
  box-shadow: 0 10px 10px 0 rgba(77, 90, 95, 0.1);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  margin: 0 0 44px;
  height: calc(100% - 44px);
}
.c-product-widget > a {
  flex: 1;
}
.c-product-widget:hover {
  opacity: 1;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.c-product-widget:hover .c-product-widget__image--alt {
  opacity: 1;
}
.c-product-widget:hover .c-product-widget__image img {
  transform: scale(1.2);
}
.c-product-widget__image-wrapper {
  position: relative;
}
.c-product-widget__image {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.c-product-widget__image img {
  transition: 0.5s;
  width: 100%;
  object-fit: cover;
}
.c-product-widget__offer-image {
  position: absolute;
  left: 10px;
  bottom: calc(100% - 20px);
  max-width: 120px;
  z-index: 1;
}
.c-product-widget__info {
  padding: 20px 15px;
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  border-radius: 0 0 6px 6px;
}
.c-product-widget__reserved, .c-product-widget__discount {
  font-family: "Roboto", sans-serif;
  font-size: 0.875em;
  line-height: normal;
  font-weight: bold;
  border-radius: 12.5px;
  position: absolute;
  top: -15px;
  left: 14px;
  padding: 4px 10px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .c-product-widget__reserved, .c-product-widget__discount {
    left: -10px;
  }
}
.c-product-widget__reserved img, .c-product-widget__discount img {
  display: inline-block;
  margin-right: 10px;
}
.c-product-widget__reserved {
  color: #ffffff;
  background: #7f9db6;
}
.c-product-widget__discount {
  color: #ffffff;
  background: #ff4438;
}
.c-product-widget__title {
  font-family: "Mulish", sans-serif;
  font-size: 1em;
  font-weight: bold;
  color: #000000;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-right: 30px;
}
.c-product-widget__version {
  font-weight: normal;
}
.c-product-widget__features {
  font-size: 0.875em;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #585858;
  margin: 0 0 20px;
  line-height: 1.43;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  position: relative;
  top: 20px;
}
@media (max-width: 1199.98px) {
  .c-product-widget__features {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}
.c-product-widget__feature {
  position: relative;
  padding-left: 15px;
  word-break: break-word;
}
.c-product-widget__feature:before {
  content: "·";
  color: #ff4438;
  font-size: 40px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 20px;
}
.c-product-widget__favourite {
  position: absolute;
  right: 15px;
  bottom: -42px;
  transition: 0.5s;
  z-index: 1;
}
.c-product-widget__extras {
  width: fit-content;
}
.c-product-widget__extra {
  display: inline-block;
}
.c-product-widget__extra img {
  width: 26px;
}
.c-product-widget__price-container {
  width: 100%;
  text-align: right;
  padding: 0 0 20px;
}
.c-product-widget__price {
  font-family: "Roboto", sans-serif;
  font-size: 1.625em;
  font-weight: bold;
  color: #000000;
  margin: 0 0 10px;
  line-height: normal;
}
@media (max-width: 1199.98px) {
  .c-product-widget__price {
    font-size: 1.3em;
  }
}
.c-product-widget__old-price {
  font-size: 1em;
  font-weight: 500;
  color: #ff4438;
  text-decoration: line-through;
  display: inline-block;
}
.c-product-widget__quote {
  position: absolute;
  bottom: 44px;
  right: 0;
  border-radius: 6px 0 6px 0;
  background-image: linear-gradient(102deg, #eb0045, #ff4438);
  color: #ffffff;
  font-size: 1.125em;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: normal;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-product-widget__info-image {
  overflow: hidden;
}
.c-product-widget__info-image img {
  width: 100%;
  transition: all ease-in-out 0.4s;
}
.c-product-widget__links {
  text-align: center;
}
.c-product-widget__wishlist {
  display: block;
  z-index: 5;
  width: 22px;
  height: 22px;
  outline: none;
  border: none;
  background: url("/wp-content/themes/gougo/img/icons/favourite.svg") no-repeat center center;
  background-size: contain;
}
.c-product-widget__wishlist:hover {
  cursor: pointer;
}
.c-product-widget__favourite-wrapper {
  position: absolute;
  right: 0;
  top: calc(100% + 7px);
}
.c-product-widget__favourite-wrapper .c-popover__wrapper:after, .c-product-widget__favourite-wrapper .c-popover__wrapper:before {
  content: none;
}
.c-product-widget__button:hover {
  opacity: 1;
}
.c-product-widget__button:hover > div {
  display: block;
  opacity: 1;
  pointer-events: all;
}
.c-product-widget__table-hover-box {
  padding: 35px 20px;
  position: absolute;
  bottom: 3px;
  right: -25px;
  z-index: 10;
  opacity: 0;
  transition: 0.3s all;
  pointer-events: none;
  font-size: initial;
}
.c-product-widget__table-container {
  padding: 30px 25px 25px 30px;
  width: 390px;
  box-shadow: 0 20px 33px -20px rgba(0, 0, 0, 0.26);
  background-image: linear-gradient(67deg, #780010 -10%, #a21521 88%, #a31622 88%);
  border-radius: 5px;
  position: relative;
  background: #a31622;
}
@media (max-width: 1199.98px) {
  .c-product-widget__table-container {
    width: 31vw;
  }
}
@media (max-width: 767.98px) {
  .c-product-widget__table-container {
    width: 45vw;
  }
}
@media (max-width: 575.98px) {
  .c-product-widget__table-container {
    width: 90vw;
  }
}
.c-product-widget__table-container:after {
  top: calc(100% - 1px);
  right: 17px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(163, 22, 34, 0);
  border-top-color: #a31622;
  border-width: 11px;
  margin-left: -11px;
}
.c-product-widget__table {
  color: white;
  font-size: 0.8125em;
  width: calc(100% + 6px);
  margin-left: -3px;
}
.c-product-widget__table table {
  width: 100%;
  margin-bottom: 20px;
}
.c-product-widget__table th {
  font-weight: normal;
  text-align: left;
  padding: 2px 3px;
}
.c-product-widget__table td {
  text-align: right;
  padding: 2px 3px;
}
.c-product-widget__table tr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.c-product-widget__table tr:first-child {
  border-top: none;
}
.c-product-widget__tax {
  padding-right: 15px;
}
.c-product-widget__show-conditions {
  margin-bottom: 0;
}
.c-product-widget__info-link {
  display: flex;
  gap: 5px;
  justify-content: center;
  cursor: pointer;
}
.c-product-widget__link-icon svg {
  width: 16px;
  height: 16px;
}
.c-product-widget__link-text {
  text-decoration: underline;
}

.ie .c-product-widget {
  display: block;
}