.no-scrlbar::-webkit-scrollbar {
    width: 0;
    visibility: hidden;
}
/* alert box */
#alert-comparison .modal-body{
  width: 320px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  border-radius: .25rem;
}
.view {
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.view header#header {
  width: 90%;
  max-width: 69em;
  margin: 0 auto;
  padding: 6em 1.875em 1.875em;
  text-align: center;
  color: #ffffff;
}
.view header#header h1 {
  color: #e97b7a;
  font-size: 3.125em;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0;
}
.view header#header h3 {
  margin: 5px 0 0 0;
}

.action {
  display: inline-block;
  font-size: 1em;
  white-space: nowrap;
  padding: 0.85em 1.25em;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: center;
}
.action .invisible {
  display: none;
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 auto;
  padding: 4em 1em;
  max-width: 1200px;
  text-align: center;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
      height: auto !important;
}

.product {
  position: relative;
  margin: 0 .75em 1.5em;
  padding: 1.5em .5em;
  border-radius: 5px;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15em;
          flex: 0 0 15em;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.product .product-info {
  color: #ffffff;
  -webkit-perspective: 650px;
          perspective: 650px;
}
.product .product-info [class*="company-"]{
  box-shadow: 0px 2px 5px 2px rgb(0 0 0 / .6);
  -webkit-box-shadow: 0px 2px 5px 2px rgb(0 0 0 / .6);
}
.product .product-info h3 {
  min-height: 46px;
}
.product .product-info .extra {
  display: none;
}
.product .product-info .product-image {
  -webkit-transform-style: preserve3d;
          transform-style: preserve3d;
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  opacity: 0.8;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.product .product-info span {
  display: block;
}
.product .product-info button {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 1em;
  background: #2C2D34;
  color: #fff;
  border-radius: 2px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.product label.compare {
  position: absolute;
  top: 10px;
  right: 5px;
  color: #ffffff;
  cursor: default;
}
.product label.compare .check-hidden {
  position: absolute;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  left: 18px;
}
.product label.compare .fa-check, .product label.compare input[type=checkbox]:checked ~ .fa-plus {
  display: none;
}
.product label.compare input[type=checkbox]:checked ~ .fa-check {
  display: block;
  color: #13c0ca;
}
.product.selected {
  border: 1px solid #13c0ca;
}
.product:hover .product-info .product-image {
  opacity: 1;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.compare-basket {
  position: absolute;
  padding: 0.75em;
  width: 1055px;
  max-width: 100%;
  left: 50%;
  opacity: 0;
  display:none;
  z-index: 998;
  -webkit-transform: translate3d(-50%, -100%, 0);
          transform: translate3d(-50%, -100%, 0);
  text-align: right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}
.compare-basket .product-icon {
  display: inline-block;
  vertical-align: middle;
  background: #cdaff1;
  width: 90px;
  height: 50px;
  padding: 5px;
  margin: 0 3px;
  border-radius: 2px;
  position: relative;
}
.compare-basket .product-icon .fa {
  cursor: pointer;
}
.compare-basket .product-icon .product-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.compare-basket .product-icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: -1;
}
.compare-basket .product-icon button {
  position: absolute;
  overflow: hidden;
  color: #ddd;
  top: 0px;
  right: 0;
  padding: 0;
  font-size: 0.65em;
  width: 100%;
  height: 100%;
}
.compare-basket .product-icon button i{
  position: absolute;
  top: 2px;
  right: 3px;
}
.compare-basket .product-icon button:hover,
.compare-basket .product-icon button:focus {
  outline: 0;
}
.compare-basket .product-icon button span {
  font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: .813em;
  vertical-align: middle;
  display: inline-block;
}
.compare-basket .product-icon button span.invisible {
  position: absolute;
  top: 100%;
  opacity: 0;
  pointer-events: none;
}
.compare-basket .full {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: opacity 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  padding-bottom: 1rem;
}
.compare-basket.basket-full .full {
  color: #e53935;
  opacity: 1;
  font: bold 1.5rem 'Montserrat', sans-serif;
}
.compare-basket.basket-full .product-icon .fa {
  color: #e53935;
}
.compare-basket.basket-full .product-icon:after {
  display: none;
}
.compare-basket.show {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);

}
.compare-basket.show .company-140[class*="bg-"] {
  width: 50px;
  height: 40px;
  background: transparent;
  margin: 0 auto;
}
.compare-basket.show .logo-betfair{filter: invert(1);}
.compare-basket.show [class*="logo-"], .compare-basket.show [class*="oplogo-"] {
  transform: scale(1.5);
}
.compare-basket button {
  background: none;
}
.compare-basket button.action {
  color: #fff;
  background-color: #7900e8;;
  border-radius: 4px;
  box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.6);
  font: bold 1.75rem 'Montserrat', sans-serif;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 200px;
  max-width: 100%;
}
.compare-basket button.action:hover,
.compare-basket button.action:focus {
  background-color: #4600e5;
  outline: 0;
}
.compare-basket button.action span {
  margin-left: 1em;
}
@media screen and (max-width: 575px) {
  .compare-basket button.action {
    position: absolute;
    bottom: -80%;
}
.compare-basket.show{position: relative;}
}
.compare-view::-webkit-scrollbar:horizontal,
[class*='lg-list']::-webkit-scrollbar:horizontal,
.extra::-webkit-scrollbar:horizontal {
  height: .5rem;
}
.compare-view::-webkit-scrollbar:vertical {
  width: .25rem;
}
.compare-view {
  position: fixed;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: 1001;
  -webkit-transition: height 0s 0.4s;
  transition: height 0s 0.4s;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  justify-content: center;
}
.compare-view:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.view-compare + .compare-view {
  pointer-events: auto;
  height: 100%;
  -webkit-transition: none;
  transition: none;
  overflow-y: auto;
  background: #111D5E;
  color: #fff;
}

.view-compare + .compare-view .compare-item:nth-child(odd),
.view-compare + .compare-view .compare-item:nth-child(even) {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.compare-effect {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1), opacity 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1), opacity 1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}
.compare-effect h3 {
  color: #e97b7a;
  font-size: 150%;
}
.compare-effect span {
  color: #ffffff;
  font-size: 150%;
}
.compare-effect .extra {
  display: block;
  padding: .25rem 0 .75rem;
  font-size: 15px;
}
.compare-effect .extra:last-child {
  padding-bottom: 2rem;
}

.compare-item:nth-child(odd) .compare-effect {
  -webkit-transform: translate3d(0, -250px, 0);
          transform: translate3d(0, -250px, 0);
}

.compare-item:nth-child(even) .compare-effect {
  -webkit-transform: translate3d(0, 250px, 0);
          transform: translate3d(0, 250px, 0);
}

.view-compare + .compare-view .compare-item:nth-child(odd) .compare-effect,
.view-compare + .compare-view .compare-item:nth-child(even) .compare-effect {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.compare-item {
  height: 100%;
  width: 25%;
  text-align: center;
  cursor: default;
  padding: 2em 0;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.compare-item:nth-child(odd) {
  -webkit-transform: translate3d(0, -100vh, 0);
          transform: translate3d(0, -100vh, 0);
}
.compare-item:nth-child(even) {
  -webkit-transform: translate3d(0, 100vh, 0);
          transform: translate3d(0, 100vh, 0);
}
.compare-item .product__price {
  color: #CECECE;
}
.compare-item .action.compare {
  display: none;
}
.compare-item .company-140 {
    width: 100%;
    height: 60px;
    max-width: 100%;
    padding: 1.5rem;
    border-radius: 0;
}

.compare-item .go-btn {
 width: 200px;
 max-width: 100%;
 background: #7b00e9;
 color: #cdaff1;
 font-size: 1.5rem;
}
.compare-item .go-btn:hover {
 color: #7b00e9;
 background: #cdaff1;
}

.view-compare + .compare-view .action-close {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition-delay: 0.4s, 0s;
          transition-delay: 0.4s, 0s;
}
.view-compare + .compare-view .action-close:focus,
.view-compare + .compare-view .action-close:hover,
.compare-view .action-close:focus,
.compare-view .action-close:hover {
  outline: 0;
}

.action-buy {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 1em;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.action-button {
  background: #2C2D34;
  color: #fff;
  border-radius: 2px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.action-remove {
  position: absolute;
  overflow: hidden;
  color: #ddd;
  top: 0px;
  right: 2px;
  padding: 0;
  font-size: 0.65em;
  border: 0;
}

.action-close {
  position: fixed;
  overflow: hidden;
  top: -15px;
  right: 5px;
  font-size: 1.5em;
  color: #ddd;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s, background 0.2s;
  transition: opacity 0.3s, background 0.2s;
  z-index: 1;
  width: 50px;
}

.view-compare + .compare .action-close {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition-delay: 0.4s, 0s;
          transition-delay: 0.4s, 0s;
}

.compare-item:first-of-type:nth-last-of-type(3),
.compare-item:first-of-type:nth-last-of-type(3) ~ .compare-item,
.compare-item:first-of-type:nth-last-of-type(4),
.compare-item:first-of-type:nth-last-of-type(4) ~ .compare-item {
  width: 25%;
}

.animate-rotateFall {
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-animation: rotateFall 1s both ease-in;
  animation: rotateFall 1s both ease-in;
}

@-webkit-keyframes rotateFall {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  20% {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  60% {
    -webkit-transform: rotateZ(-3deg);
            transform: rotateZ(-3deg);
  }
  100% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
}

@keyframes rotateFall {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  20% {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  60% {
    -webkit-transform: rotateZ(-3deg);
            transform: rotateZ(-3deg);
  }
  100% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
}
.compare-item:not(:last-child) .extra:not(.border-0){
  border-right: 1px solid #ccc;
}
/* product features */
[class*='expand-button']{
  cursor: pointer;
  display: table;
  margin: .25rem auto;
  border-radius: 4px;
  background-color: #8fb77b;
  color: #fff;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  padding: 0.25rem 1rem;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
[class*='expand-button']:hover, 
[class*='expand-button']:active, 
[class*='expand-button']:focus {
  background-color: #668357;
  box-shadow: 0px 3px 3px rgb(0 0 0 / .5);
}
.lg-list ,
.lg-list-1,
.lg-list-2,
.lg-list-3,
.lg-list-4,
.lg-list-5,
.lg-list-6{
  font-weight: normal;
}
.lg-list .d-none,
.lg-list-1 .d-none,
.lg-list-2 .d-none,
.lg-list-3 .d-none,
.lg-list-4 .d-none,
.lg-list-5 .d-none,
.lg-list-6 .d-none{
  display: none;
}
.lg-list-2.expanded,
.lg-list-5.expanded,
.lg-list-3.expanded {
  max-height: 108px;
  min-height: 108px;
  padding: 0 1rem;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.lg-list-2,
.lg-list-5,
.lg-list-3{
  width: 200px;
  max-width: 98%;
  margin: .5rem auto;
}
.lg-list-2:not(.expanded) li:not(.secondary),
.lg-list-5:not(.expanded) li:not(.secondary),
.lg-list-3:not(.expanded) li:not(.secondary) {
  display: inline-block;
}
.lg-list-2.expanded li,
.lg-list-5.expanded li{
  margin-bottom: 4px;
  flex-direction: column;
  flex: 0 25%;
  display: flex;
}
.lg-list-3.expanded li {
  margin-bottom: 4px;
  flex-direction: column;
  flex: 0 20%;
  display: flex;
}
.lg-list-2.expanded li,
.lg-list-5.expanded li,
.lg-list-3.expanded li {
  margin-right: 4px;
}
.lg-list.expanded,
.lg-list-1.expanded,
.lg-list-4.expanded{
  max-height: 135px;
  min-height: 135px;
  width: 98%;
}
.lg-list-6.expanded{
  max-height: 86px;
  min-height: 86px;
  width: 98%;
}
.lg-list.expanded,
.lg-list-1.expanded,
.lg-list-2.expanded,
.lg-list-3.expanded,
.lg-list-4.expanded,
.lg-list-5.expanded,
.lg-list-6.expanded{
  overflow-y: scroll;
  margin: 0 auto 1rem;
}
.lg-list-4.expanded,
.lg-list-6.expanded{
  overflow-x: scroll;
}
.extra{
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: bold;
}
.extra i{
  font-size: 18px;
  position: relative;
  top: 3px;
}
.extra i.d-none{
  display: none;
}
.extra .fa-plus,
.extra .fa-minus{
  font-size: 13px;
  position: relative;
  top: 2px;
}
.extra .fa-times{
  color: #fff;
}
.extra .fa-check{
  color: #4bf5ff;
}
.extra.go{
  background: #fff;
  height: 125px;
  opacity: .75;
}
.extra.go.simple{
  position: relative;
}
.extra.go.simple .v-align{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.extra.go span{
  color: #333;
}
.extra .go-i{
  color: #fff;
  font-weight: normal;
}
.extra span.go-i.rev{
  display: inline-block;
  margin: 0 auto .25rem;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  text-align: center;
}
.extra .go-i:hover{
  color: #ff9d02;
}
.extra .go-i.rev{
  color: #ff9d02;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.extra .go-i.rev:hover{
  color: #fff;
}
.extra .go-i.rev:after{
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  bottom: 0;
  right: 0;
  background: #fff;
  transition: width .25s ease;
  -webkit-transition: width .25s ease;
}
.extra .go-i.rev:hover:after{
  width: 100%;
  left: 0;
}
.extra.go .go-o{
  font-size: 18px;
  padding: 0 2rem;
}
.extra.go .go-o.mob-btn {
  font-size: 16px;
  padding: 0 1rem;
}
.extra.go .terms{
  color: #333;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 1rem;
  font-weight: normal;
}
.extra:nth-child(odd):not(.go){
  background: rgb(255 255 255 / .2);
}
.extra.bonus{
  color: #fff;
  font-size: 20px;
}
.extra .rec-rating span{height: 25px;}
.extra span:not(.regulates-1){
  font-weight: normal;
  font-size: 12px;
  font-style: italic;
  padding-right: 10px;
  display: block;
}
.extra .text-muted{
  display: inline-block!important;
  opacity: .3;
}
.extra span.regulates-1{
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
}
.extra.mobile [class*='fa-']{
  font-size: 2rem;
  color: #fff;
  position: relative;
  top: 3px;
  font-style: normal;
  display: inline-block;
  left: -3px;
}
.extra.mobile [class*='fa-'].none{
  opacity: .3;
}
.extra .top-rev-v{
  transform: scale(.8);
  height: 25px;
  margin: 0 auto 10px;
}
.extra .mga-small{
  background-color: #fff;
  border-radius: 3px;
}
.extra .payment{
  width: 45px;
  height: 30px;
  background-color: #fff;
  padding: 2px;
  border-radius: 3px;
}
.product label.compare i{
  position: absolute;
  top: 0;
  right: 7px;
}
.view-compare + .compare-view .company-140,
.view-compare + .compare-view [class*="logo-"],
.view-compare + .compare-view [class*="oplogo-"]{
 transition: all .2s ease-in-out;
}

/* .company-140.fixed{
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 20;
  border-radius: 0;
  width: 100%;
  height: 50px;
  box-shadow: 0px 2px 5px rgb(0 0 0 / .4);
}
.company-140.fixed  [class*="logo-"] {
  width: 100%;
  height: 30px;
  position: absolute;
  top: 10px;
} */
label.action {
  display: block;
  width: 100%;
  height: 100%;
}
.extra.go.custom-scrlbar{
  overflow-y: scroll;
}
.compare-view .swipe-icon{
  display: none;
  opacity: 0;
}
.view-compare + .compare-view .swipe-icon {
  opacity: 1;
  background-color: #0b3195;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 10px;
  left: 46.5%;
  display: none;
  z-index: 1;
  padding: 2px 6px;
  animation: swing 4s 1.3s linear infinite;
  -webkit-animation: swing 4s 1.3s linear infinite;
  box-shadow: 0 0 5px 2px rgb(0 0 0 / .5);
}
.view-compare + .compare-view .swipe-icon span{
  background: url('/assets/images/icon/hand.svg') no-repeat center center;
  background-size: contain;
  width: 100%;
  height:	100%;
  filter: invert(1);
  -webkit-filter: invert(1);
  text-indent: -9999px;
    display: block;
}

@media screen and (max-width: 359px){
  .compare-item,
  .compare-item:first-of-type:nth-last-of-type(3), .compare-item:first-of-type:nth-last-of-type(3) ~ .compare-item, .compare-item:first-of-type:nth-last-of-type(4), .compare-item:first-of-type:nth-last-of-type(4) ~ .compare-item {
    width: 70%;
  }

}
@media screen and (max-width: 499px){
  .grid{
    padding: 4em .25em;
  }
}
@media screen and (max-width: 575px){
  .product label.compare i {
    top: 3px!important;
    font-size: 10px!important;
  }

  .compare-effect .extra:not(.bonus) {
    overflow-x: scroll;
  }
  .lg-list.expanded,
  .lg-list-1.expanded,
  .lg-list-2.expanded,
  .lg-list-3.expanded {
    width: 100%;
  }
  .lg-list-4.expanded {
    overflow-x: scroll!important;
  }
  .product {
    padding: 1em .2em;
    margin: 0 .5em 1em;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1em;
    flex: 0 0 1em;
  }
  /* .company-140:not(.fixed)[class*="bg-"] {
    width: 100px;
    height: 40px;
  } */
  /* .view-compare + .compare-view .company-140:not(.fixed)[class*="bg-"] {
    width: 140px;
    height: 70px;
  } */
  .product label.compare {
    top: 0;
    right: 0x;
  }
  .product label.compare i{
    font-size: 12px;
    right: 0;
  }
}
@media screen and (max-width: 767px){
  .compare-effect .extra:not(.bonus) {
    font-size: 13px;
  }
  .view-compare + .compare-view .swipe-icon{
    display: block;
  }
}
@media screen and (max-width: 915px){
  button.action {
    display: block;
    margin: 1rem auto;
  }
  .compare-basket.show{
    margin: 1rem auto;
    text-align: center;
   }
  .compare-basket .product-icon {
    width: 65px;
  }
  .compare-basket .full {
      top: 0;
      left:50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
  } 
}
@media screen and (min-width: 915px) and (max-width: 1300px){
  .compare-basket.show{
    width: 90%;
  }
}
@media screen and (min-width: 360px) and (max-width: 1200px){
  .compare-item,
  .compare-item:first-of-type:nth-last-of-type(3), .compare-item:first-of-type:nth-last-of-type(3) ~ .compare-item, .compare-item:first-of-type:nth-last-of-type(4), .compare-item:first-of-type:nth-last-of-type(4) ~ .compare-item {
    width: 50%;
  }
}

@media screen and (max-width: 1200px){
  .action-close {
    top: -27px;
    right: 0;
  }
  .view-compare + .compare-view{
    overflow-x: scroll;
    white-space: nowrap;
    z-index: 99999;
  }
  .view-compare + .compare-view .extra:not(.simple) .terms{
    white-space: initial!important;
  }
  .compare-view{
    justify-content: start;
  }
  .compare-effect .extra {
    padding: .25rem .5rem .75rem;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1300px){
  .extra.go.simple .v-align {
    width: 55%;
  }
}
/* Mobile comparison */
.extra.mobile.apps{ height: 116px;}
.extra.mobile.apps ul{ 
  display: table;
  margin: 0 auto;}
.extra.mobile.apps li {
  font-weight: 400;
  display: table;
}
@-webkit-keyframes swing{15%{-webkit-transform:translateX(5px);transform:translateX(5px)}30%{-webkit-transform:translateX(-5px);transform:translateX(-5px)}50%{-webkit-transform:translateX(3px);transform:translateX(3px)}65%{-webkit-transform:translateX(-3px);transform:translateX(-3px)}80%{-webkit-transform:translateX(2px);transform:translateX(2px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes swing{15%{-webkit-transform:translateX(5px);transform:translateX(5px)}30%{-webkit-transform:translateX(-5px);transform:translateX(-5px)}50%{-webkit-transform:translateX(3px);transform:translateX(3px)}65%{-webkit-transform:translateX(-3px);transform:translateX(-3px)}80%{-webkit-transform:translateX(2px);transform:translateX(2px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@-moz-keyframes bounce{0%,100%,20%,50%,80%{-moz-transform:translateY(0);transform:translateY(0)}40%{-moz-transform:translateY(-15px);transform:translateY(-15px)}60%{-moz-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}60%{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@keyframes bounce{0%,100%,20%,50%,80%{-moz-transform:translateY(0);-ms-transform:translateY(0);-webkit-transform:translateY(0);transform:translateY(0)}40%{-moz-transform:translateY(-15px);-ms-transform:translateY(-15px);-webkit-transform:translateY(-15px);transform:translateY(-15px)}60%{-moz-transform:translateY(-5px);-ms-transform:translateY(-5px);-webkit-transform:translateY(-5px);transform:translateY(-5px)}}
.swing:hover {
    -webkit-animation: swing 1s ease;
    animation: swing 1s ease;
    -webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}