/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("https://www.starling.global/au/skin/frontend/default/sk24-mobile/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.owl-theme .owl-controls{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-controls .owl-nav [class*=owl-]{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#d6d6d6;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:#869791;color:#fff;text-decoration:none}.owl-theme .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
html {
    font-size: 14px;
    height: 100%;
}
body {
    font-family: Helvetica, sans-serif;
    font-size: 15px;
    line-height: 23px;
    color: #4c4c4c;
    font-weight: 300;
    background:#fff url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/pattern.png');
    position: relative;
    height: 100%;
}
a:focus,
a:hover {
    outline: 0;
    text-decoration: none;
}
.navbar {
    border-radius: 0;
    margin-bottom: 0;
}
.navbar-default {
    background-color: #fff;
    -webkit-box-shadow: 0 7px 33px rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 33px rgba(0, 0, 0, 0.1);

}
.navbar-brand {
    padding: 5px 0 0;
}
.navbar-default .navbar-nav > li > a {
    color: #232323;
    font-size: 15px;
}
.navbar-default .navbar-nav > li > a:hover {
    color: #3284cf;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #3284cf;
    background-color: transparent;
    text-decoration: underline;
}
@media (min-width: 768px) {
    .navbar-nav {
        float: right;
    }
    .navbar-nav > li > a {
        padding-left: 13px;
        padding-right: 13px;
    }
}
.glyphicon {
    margin-right: 5px;
}
.form-group.multiline {
    margin-bottom: 5px;
}
.form-group.multiline .form-control{
    margin-bottom: 5px;
    font-size: 13px;
    text-align: center;
}

.address-lines input[type="text"] {
    margin-bottom: 5px;
}
/* prevent iphone from zooming in when filling out a form, like login or application */
@media screen and (-webkit-min-device-pixel-ratio:0) and (max-width: 767px) {
    select,
    textarea,
    input,
    input:focus,
    input:hover {
        font-size: 16px !important;
    }
}

.cart-mini {
    background: rgba(0, 0, 0, 0) url("https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/cart.png") no-repeat scroll left center;
    color: #232323;
    display: block;
    float: right;
    font-size: 15px;
    line-height: 50px;
    margin-left: 15px;
    margin-right: 20px;
    padding-left: 24px;
    text-decoration: none;
}
@media (min-width: 768px) {
    .cart-mini {
        margin-left: 30px;
        margin-right: 50px;
    }
}
a.cart-mini:hover {
    color: #3284cf;
}
.blog_link {
    background-color: transparent;
    background-image: url("https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/blog_link.png");
    background-repeat: no-repeat;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 500ms ease 0s;
    width: 50px;
    z-index: 99999999;
}
.blog_link a {
    display: block;
    height: 50px;
    width: 50px;
    line-height: 0;
    font-size: 0;
    color: transparent;
}
/* HOMEPAGE */
/* the large teaser */
#home-teaser {
    text-align: center;
    width:100%;
    background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_de.jpg') no-repeat bottom center;
    background-size:cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    min-height: calc(var(--vh, 1vh) * 100 - 50px);
    max-height:1211px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.home-new #home-teaser {
    display: flex;
    flex-flow: column nowrap;
}
#home-teaser .inner {margin: 0 auto;}
.home-new #home-teaser .inner {
    flex-grow: 1;
    display: flex;
    align-items: center;
}
#home-teaser h1,
#home-teaser h2 {
    font-family: Helvetica, sans-serif;
    color: #fff;
    font-weight: normal;
    line-height: 40px;
    font-size: 30px;
    margin: 15px 15px 5px;
}
#home-teaser a { margin-top: 20px; text-decoration: none; font-weight: 700;}
.home-new #home-teaser a {
    border: solid #e8e8e8;
    border-width: 0 9px 9px 0;
    display: block;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    padding: 0;
    height: 50px;
    width: 50px;
    text-indent: -9999px;
    margin: auto auto 20px auto;
    cursor: pointer;
}

html[lang="de"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_de.jpg');}
html[lang="en"] #home-teaser,
html[lang="de"] #home-teaser.home-teaser-uk {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_uk.jpg');}
html[lang="da"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_dk.jpg');}
html[lang="it"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_it.jpg');}
html[lang="es"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_es.jpg');}
html[lang="fr"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_fr.jpg');}
html[lang="nl"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_nl.jpg');}
html[lang="sv"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_se.jpg');}
html[lang="pt"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_pt.jpg');}
html[lang="nb"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_no.jpg');}
html[lang="fi"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_fi.jpg');}
html[lang="pl"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_pl.jpg');}
html[lang="ro"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_ro.jpg');}
html[lang="cs"] #home-teaser {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_cz.jpg');}

#home-teaser .sparkling-star {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    position: absolute;
    background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/background_1920x928_star_v2.png') no-repeat bottom center;
    background-size: cover;
    animation: sparkle 2s ease-in-out 0s infinite alternate;
}
@keyframes sparkle {
    0%, 30% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Christmas teaser with Video */
#home-teaser.home-teaser-christmas {background-image: none !important; background-color: #000; }
#home-teaser.home-teaser-christmas > * { z-index: 10; }
#home-teaser.home-teaser-christmas video,
#home-teaser.home-teaser-christmas #sparkling-star,
#home-teaser.home-teaser-christmas #star-text,
#home-teaser.home-teaser-christmas #sparkling-star-mobile,
#home-teaser.home-teaser-christmas #star-text-mobile
{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}
#home-teaser.home-teaser-christmas #sparkling-star,
#home-teaser.home-teaser-christmas #sparkling-star-mobile
{
    animation: sparkle 2s ease-in-out 0s infinite alternate;
}

#home-teaser.home-teaser-christmas #sparkling-star,
#home-teaser.home-teaser-christmas #star-text {
    display: none;
}
#home-teaser.home-teaser-christmas h1 {
    margin-bottom: 15%;
    line-height: 35px;
    font-size: 25px;
}
@media (min-width: 768px) {
    #home-teaser.home-teaser-christmas #sparkling-star,
    #home-teaser.home-teaser-christmas #star-text {
        display: block;
    }
    #home-teaser.home-teaser-christmas #sparkling-star-mobile,
    #home-teaser.home-teaser-christmas #star-text-mobile {
        display: none;
    }
    #home-teaser.home-teaser-christmas h1 {
        line-height: 40px;
        font-size: 30px;
    }
}
.home-new #home-teaser.home-teaser-christmas .inner {
    align-items: end;
}
/* end: Christmas teaser with Video */

/* New Year teaser with Video */
#home-teaser.home-teaser-newyear {background-image: none !important; background-color: #000; }
#home-teaser.home-teaser-newyear > * { z-index: 10; }
#home-teaser.home-teaser-newyear video,
#home-teaser.home-teaser-newyear #sparkling-star,
#home-teaser.home-teaser-newyear #star-text
{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}
#home-teaser.home-teaser-newyear #sparkling-star
{
    animation: sparkle 2s ease-in-out 0s infinite alternate;
}

#home-teaser.home-teaser-newyear h1 {
    margin-bottom: -60px;
    line-height: 35px;
    font-size: 25px;
}
.home-new #home-teaser.home-teaser-newyear .inner {
    align-items: center;
}
@media (min-width: 768px) {
    .home-new #home-teaser.home-teaser-newyear .inner {
        align-items: end;
    }
    #home-teaser.home-teaser-newyear h1 {
        margin-bottom: 12em;
        line-height: 40px;
        font-size: 30px;
    }
}
/* end: New Year teaser with Video */

/* Valentinsday teaser with Video */
#home-teaser.home-teaser-valentinsday {background-image: none !important; background-color: #000; }
#home-teaser.home-teaser-valentinsday > * { z-index: 10; }
#home-teaser.home-teaser-valentinsday video,
#home-teaser.home-teaser-valentinsday #star-text
{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: 34%;
    z-index: 0;
}
#home-teaser.home-teaser-valentinsday h1 {
    font-size: 25px;
}
.home-new #home-teaser.home-teaser-valentinsday .inner {
    align-items: center;
}
@media (min-width: 768px) {
    #home-teaser.home-teaser-valentinsday video,
    #home-teaser.home-teaser-valentinsday #star-text
    {
        object-position: 50%;
    }
    #home-teaser.home-teaser-valentinsday h1 {
        font-size: 30px;
    }
}
/* end: New Valentinsday teaser with Video */

h1,h2,h3      { text-align: center; font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif; font-size: 20px; font-weight:normal; margin: 5px 0; line-height: 1; color: #000; }
h1,
.h1-like      {
    font-size: 34px;
}
h2 {
    font-size: 24px;
}
h3            { font-family: Helvetica, sans-serif; font-weight:300; }
@media (min-width: 768px) {
    h1,
    .h1-like  {
        font-size: 45px;
    }
}
.container {
    overflow: hidden;
}
@media (min-width: 768px) {
    .wide-container .container {
        padding-right: 30px;
        padding-left: 30px;
        width: auto;
    }
}
@media (min-width: 992px) {
    .wide-container .container {
        width: auto;
    }
}
@media (min-width: 1200px) {
    .wide-container .container {
        padding-right: 15px;
        padding-left: 15px;
        width: 1170px;
    }
}
/* for bootstrap-select to allow dropdown overlap boundaries */
.catalog-product-view .container {
    overflow: initial;
}
.sidebar {
    margin-top: 20px;
}
.popover {
    max-width: 332px;
    text-align: justify;
}
.popover-content {
    padding: 15px;
}
.popover p {
    margin: 0;
}
.popover img {
    margin-bottom: 15px;
}

/* these are the boxes on the top of each column */
.product_box {
    margin-top: 2px;
    padding-bottom: 10px;
    background-color: #090921;
    background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/star_bg.png') bottom center;
    color: #fff;
    -webkit-border-radius: 20px;
    border-radius: 10px;
}
.home-new .product_box {
    background: linear-gradient(to top, #112d81 0%, #030a40 50%);
}
.home-new .product_box .image {
    padding: 0 6px;
    background-color: #fff;
    border: 10px solid #030a40;
    margin-bottom: 10px;
}

.home-new .product_box .image.image-large {
    padding: 0px;
}
.home-new .product_box .image.image-large .img-responsive {
    width: 100%;
}

.home-new .product_box .image img {
    margin: 0 auto;
}
.home-new .product_box ul {
    list-style: none;
    font-size: 13px;
    line-height: 16px;
    margin-left: 12px;
    padding: 0 0 10px 9px;
}
.home-new .product_box ul li {
    padding-left: 6px;
    list-style-type: "\2605";
}
.product_box p {
    text-align: center !important;
}
.product_box h3,
.product_box .pre-title {color: #fff; font-weight: 700; font-family: Helvetica, sans-serif; text-align: center; font-size: 20px; margin: 0; height: 30px; line-height: 30px; }
.home-new .product_box h3 {
    font-size: 26px;
    line-height: 50px;
    height: 50px;
}
.product_box .pre-title {font-size: 16px;
    font-style: italic;
}
.product_box .bestseller {background-color: #ba8e69; font-family: Helvetica, sans-serif; text-align: center; font-size: 15px; margin: 0; display: block; height: 30px; line-height: 30px; font-weight: 300;}

.old-site .product_box h2,
.old-site .product_box h3 {color: #fff; font-weight: 700; font-family: Helvetica, sans-serif; text-align: center; font-size: 20px; margin: 0; height: 60px; line-height: 60px; }
.old-site .product_box h3 {font-size: 16px;}
.old-site .product_box h4 {background-color: #ba8e69; font-weight: 400; font-family: Helvetica, sans-serif; text-align: center; font-size: 15px; margin: 0; display: block; height: 30px; line-height: 30px; font-weight: 300;}

.product_box .star_image {height: 60px; overflow: hidden; text-align: center;}
.product_box .price {
    font-size: 30px;
    font-weight: 300;
    height: 50px;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
}
.home-new .product_box .price {
    font-size: 30px;
}
html[lang="sv"] .product_box .price,
html[lang="cs"] .product_box .price,
html[lang="da"] .product_box .price,
html[lang="ro"] .product_box .price {
    font-size: 30px;
}
.product_box p {text-align: center; margin: 0; color: #fff; font-size: 11px; line-height: 14px; height: 45px; overflow: hidden;}
.product_box p.description {height: 100px;}
.home-new .product_box p.description {
    height: auto;
    text-align: justify !important;
    font-size: 13px;
    line-height: 16px;
    padding: 0px 10px 10px;
}
.home-new .product_box p.description:empty {
    padding: 0;
    font-size: 0;
    line-height: 0;
}
.home-new .product_box p:last-of-type {
    margin-bottom: auto;
}

/* equal columns height */
.package-row {
    display: flex;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .product_box {
        margin-top: 30px;
    }
    .product_box.highlight {
        margin-top: 0;
    }
    .old-site .product_box h2,
    .old-site .product_box h3,
    .product_box p.description {
        height: 45px;
    }
    .product_box .price {
        height: 70px;
        line-height: 70px;
    }
    html[lang="fr"] .old-site .product_box .pre-title  {font-size: 13px;}
    html[lang="ro"] .product_box .pre-title {font-size: 14px;}
    html[lang="pt"] .product_box .pre-title {font-size: 11px;}
    html[lang="pt"] .product_box .bestseller {font-size: 13px;}
    html[lang="pl"] .product_box .bestseller {font-size: 11px;}

    html[lang="fr"] .old-site .product_box h3 {font-size: 13px;}
    html[lang="ro"] .old-site .product_box h3 {font-size: 14px;}
    html[lang="pt"] .old-site .product_box h3 {font-size: 11px;}
    html[lang="pt"] .old-site .product_box h4 {font-size: 13px;}
    html[lang="pl"] .old-site .product_box h4 {font-size: 11px;}

    html[lang="cs"] .product_box .price,
    html[lang="ro"] .product_box .price {
        font-size: 28px;
    }
    .package-row {
        flex-direction: row-reverse;
    }
    .package-row > div {
        display: flex;
        flex-direction: column;
    }
    .package-col {
        display: flex;
        flex-grow: 1;
    }
    .package-col .product_box {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .product_box .price {
        font-size: 30px;
    }
    .home-new .product_box .price {
        font-size: 30px;
    }
    html[lang="cs"] .product_box .price,
    html[lang="ro"] .product_box .price {
        font-size: 30px;
    }
    html[lang="pt"] .product_box .pre-title,
    html[lang="ro"] .product_box .pre-title,
    html[lang="pt"] .product_box .pre-title {font-size: 16px;}
    html[lang="pl"] .product_box .bestseller,
    html[lang="pt"] .product_box .bestseller {font-size: 15px;}

    html[lang="fr"] .old-site .product_box h3,
    html[lang="ro"] .old-site .product_box h3,
    html[lang="pt"] .old-site .product_box h3 {font-size: 16px;}
    html[lang="pl"] .old-site .product_box h4,
    html[lang="pt"] .old-site .product_box h4 {font-size: 15px;}

}
.product_box.product_sprite{
    background-image: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/sprite-2.png);
    background-position: 0px -80px;
}
.product_box.product_sprite.highlight {
    background-position: 0px -50px;
}
.product_box.product_sprite .star_image {
    background-image: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/sprite-2.png);
    background-repeat: no-repeat;
}
.product_box.product_sprite .star_image.starlet{
    background-position: center -522px;
}
.product_box.product_sprite .star_image.starlight{
    background-position: center -589px;
}
.product_box.product_sprite .star_image.zodiac{
    background-position: center -645px;
}
.product_box.product_sprite .star_image.doppel {
    background-position: center -706px;
}
.product_box.product_sprite .star_image.supernova{
    background-position: center -766px;
}
#order .col-xs-1, #order .col-sm-1, #order .col-md-1, #order .col-lg-1, #order .col-xs-2, #order .col-sm-2, #order .col-md-2, #order .col-lg-2, #order .col-xs-3, #order .col-sm-3, #order .col-md-3, #order .col-lg-3, #order .col-xs-4, #order .col-sm-4, #order .col-md-4, #order .col-lg-4, #order .col-xs-5, #order .col-sm-5, #order .col-md-5, #order .col-lg-5, #order .col-xs-6, #order .col-sm-6, #order .col-md-6, #order .col-lg-6, #order .col-xs-7, #order .col-sm-7, #order .col-md-7, #order .col-lg-7, #order .col-xs-8, #order .col-sm-8, #order .col-md-8, #order .col-lg-8, #order .col-xs-9, #order .col-sm-9, #order .col-md-9, #order .col-lg-9, #order .col-xs-10, #order .col-sm-10, #order .col-md-10, #order .col-lg-10, #order .col-xs-11, #order .col-sm-11, #order .col-md-11, #order .col-lg-11, #order .col-xs-12, #order .col-sm-12, #order .col-md-12, #order .col-lg-12,
#order2 .col-xs-1, #order2 .col-sm-1, #order2 .col-md-1, #order2 .col-lg-1, #order2 .col-xs-2, #order2 .col-sm-2, #order2 .col-md-2, #order2 .col-lg-2, #order2 .col-xs-3, #order2 .col-sm-3, #order2 .col-md-3, #order2 .col-lg-3, #order2 .col-xs-4, #order2 .col-sm-4, #order2 .col-md-4, #order2 .col-lg-4, #order2 .col-xs-5, #order2 .col-sm-5, #order2 .col-md-5, #order2 .col-lg-5, #order2 .col-xs-6, #order2 .col-sm-6, #order2 .col-md-6, #order2 .col-lg-6, #order2 .col-xs-7, #order2 .col-sm-7, #order2 .col-md-7, #order2 .col-lg-7, #order2 .col-xs-8, #order2 .col-sm-8, #order2 .col-md-8, #order2 .col-lg-8, #order2 .col-xs-9, #order2 .col-sm-9, #order2 .col-md-9, #order2 .col-lg-9, #order2 .col-xs-10, #order2 .col-sm-10, #order2 .col-md-10, #order2 .col-lg-10, #order2 .col-xs-11, #order2 .col-sm-11, #order2 .col-md-11, #order2 .col-lg-11, #order2 .col-xs-12, #order2 .col-sm-12, #order2 .col-md-12, #order2 .col-lg-12{
    padding: 0 1px;
}
@media (max-width: 767px) {
    #order .row { margin: 0 -1px 0 -1px; }
}
@media (min-width: 768px) {
    .product_box {
        -webkit-border-radius: 5px 5px 0px 0px;
        border-radius: 5px 5px 0px 0px;
        padding-bottom: 0;
    }
    .home-new .product_box {
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }
}

.home-new .price-with-button {
    display: flex;
}
.home-new .price-with-button div {
    flex-grow: 1;
    width: 50%;
    text-align: right;
    padding-right: 20px;
}
.home-new .price-with-button div:nth-of-type(2) {
    text-align: left;
    line-height: 50px;
    padding: 0 0 0 20px;
}

@media (min-width: 768px) {
    .home-new .price-with-button div {
        text-align: center;
        padding-right: 0;
        width: auto;
    }
    .home-new .price-with-button div:nth-of-type(2) {
        text-align: center;
        line-height: 70px;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .home-new .price-with-button div {
        width: 50%;
        text-align: right;
        padding-right: 20px;
    }
    .home-new .price-with-button div:nth-of-type(2) {
        text-align: left;
        padding-left: 20px;
    }
}

.home-new #extras img,
.home-new #star-registry img
{
    margin: 0 auto;
}
/* this is the features list on the left */
#product_features { margin: 0; padding: 0; margin-top: 310px; }
#product_features li {
    display: table;
    height: 36px;
    border-top: 1px dashed #e3e3e3;
    line-height: 36px;
    width: 100%;
}
#product_features li div.inner {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    font-size: 12px;
    line-height: 10px;
    font-weight: 400;
    padding-right: 26px;
}
#product_features li:last-child {
    border-bottom: 1px dashed #eaeaea;
}
#product_features li div.inner .badge {
    padding: 6px 9px;
    position: absolute;
    top:0;
    right: 0;
}
/* these are the lists below each product box */
.product_feature_instance {display: none;}
.product_feature_instance.highlight li { background: #fff; }
.product_feature_instance.highlight li:last-child {-webkit-box-shadow:  0 4px 6px -2px #d4d4d4; /* webkit browser*/ box-shadow: 0 4px 6px -2px #d4d4d4;}
.product_feature_instance.highlight li.checked { background-color: #fff; }
.product_feature_instance li { display: block; height: 36px; border-top: 1px dashed #e3e3e3; background: #f0f0f0;}
.product_feature_instance li:last-child {border-bottom: 0;}
.product_feature_instance li.checked { background: #f0f0f0 url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/feature_check.png') no-repeat center center; }
@media (min-width: 768px) {
    .product_feature_instance {
        display: block;
    }
}
.shadow-inset-left {
    -webkit-box-shadow: inset 13px 0 10px -15px #000;
    box-shadow: inset 13px 0 10px -15px #000;
}
.shadow-inset-right {
    -webkit-box-shadow: inset -13px 0 10px -15px #000;
    box-shadow: inset -13px 0 10px -15px #000;
}

/* scroll offsets */
#product, #occasions, #advantages, #order, #order2 {
    padding-top: 50px;
}
.home-new #extras,
.home-new #star-registry {
    padding-top: 50px;
}

#product {
    text-align: center;
}
/* the tooltips */
.tooltips_wrapper {
    position: relative;
    margin: 0px auto;
}
.tool_tip {
    cursor: pointer;
    width: 46px;
    height: 46px;
    display: block;
    position: absolute;
    background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/tooltip.png');
    display: none;
}
@media (min-width: 768px) {
    .tooltips_wrapper {
        width: 720px;
    }
    .tool_tip {
        display: block;
    }
    #homepage_tooltip_mappe {
        top: 172px;
        left: -24px;
    }
    #homepage_tooltip_doc_1 {
        top: 10px;
        left: 275px;
    }
    #homepage_tooltip_doc_2 {
        top: 10px;
        left: 355px;
    }
    #homepage_tooltip_doc_3 {
        top: 20px;
        left: 410px;
    }
    #homepage_tooltip_doc_4 {
        top: 172px;
        left: 692px;
    }
    #homepage_tooltip_doc_5 {
        top: 203px;
        left: 296px;
    }
    #homepage_tooltip_doc_6 {
        top: 281px;
        left: 218px;
    }
    #homepage_tooltip_doc_7 {
        top: 350px;
        left: 673px;
    }
}
@media (min-width: 992px) {
    .tooltips_wrapper {
	    height: 481px;
    		width: 872px;
    }
    .tool_tip {
        display: block;
    }
    #homepage_tooltip_mappe {
        top: 172px;
        left: -24px;
    }
    #homepage_tooltip_doc_1 {
        top: 20px;
        left: 352px;
    }
    #homepage_tooltip_doc_2 {
        top: 20px;
        left: 420px;
    }
    #homepage_tooltip_doc_3 {
        top: 31px;
        left: 491px;
    }
    #homepage_tooltip_doc_4 {
        top: 210px;
        left: 821px;
    }
    #homepage_tooltip_doc_5 {
        top: 240px;
        left: 356px;
    }
    #homepage_tooltip_doc_6 {
        top: 337px;
        left: 265px;
    }
    #homepage_tooltip_doc_7 {
        top: 416px;
        left: 798px;
    }
}
/* these are the slim gray boxes below the large image */
#product_infos {
    margin-top: 20px;
    padding: 0;
    display: none;
}
#product_infos li {
    cursor: pointer;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #4c4c4c;
    font-weight: 300;
    text-align: center;
    display: inline-block;
    margin: 0;
    padding-right: 0px;
    background: #e5e5e5;
    font-size: 15px;
    line-height: 30px;
    width: 278px;
    margin-right: 2px;
    margin-bottom: 4px;
}
#product_infos li:hover,
#product_infos li.active  {
    background-color: #3183cf;
    color: #fff;
}
@media (min-width: 768px) {
    #product_infos {
        display: block;
    }
}

/* this is the list of occasion images */
.occasion_list p,
.occasion_list a {
    margin-top: 0px;
    color: #b5865e;
    font-size: 15px;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
}
@media (min-width: 768px) {
    .occasion_list p,
    .occasion_list a {
        font-size: 19px;
    }
}
.occasion_list img {
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 4px 11px #a1a1a1;
    box-shadow: 0px 4px 11px #a1a1a1;
    margin: 0 auto 5px auto;
}
@media (max-width: 767px) {
    .occasion_list .col-xs-6:nth-child(even) {
        padding-left: 5px;
    }
    .occasion_list .col-xs-6:nth-child(odd) {
        padding-right: 5px;
    }
}
@media (min-width: 768px) {
    .occasion_list img {
        border-width: 10px;
        -webkit-box-shadow: 0px 4px 11px #a1a1a1;
        box-shadow: 0px 4px 11px #a1a1a1;
        margin: 0 auto 5px auto;
    }
}
.occasion_list p {
    text-align: center !important;
}

/* advantages */
/* Trustpilot Old */
#advantages .trustpilot-header {z-index: 8090; background: #b6875a; color: white; font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif; font-weight: 400; font-size: 17px;padding: 8px; border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0;}
#advantages .trustpilot-footer {margin-top: -2px;height: 5px; z-index: 8090; background: #b6875a; border-radius: 0 0 5px 5px; -moz-border-radius: 0 0 5px 5px;}
#advantages .tp_-_box { margin-top: -29px;}
#advantages .trustpilot-box {-moz-box-shadow: 4px 7px 44px #d4d4d4; box-shadow: 4px 7px 44px #d4d4d4;}
#advantages .trustpilot-box {-moz-box-shadow: 4px 7px 44px #d4d4d4; box-shadow: 4px 7px 44px #d4d4d4;}
#advantages .tp-grid > p {text-align: right;}
#advantages .tp-grid > p a {color: #b5865e; font-size: 13px; text-decoration: none;}
#advantages .trustpilot-reviews {width: 314px; height: 354px;}
#advantages .trustpilot-reviews p,
.trustpilot-review p {font-size: 13px; text-align: left !important; font-weight: 400; margin-top:0; border-bottom: 1px solid #b6875a; margin-bottom: 0}
.trustpilot-review p {border-bottom: 0 none;}
.trustpilot-review {padding: 10px;}
#advantages .trustpilot-reviews img,
.trustpilot-review img {margin-top: 6px;}
#advantages .trustpilot-reviews-footer {margin-top: -2px;height: 25px; z-index: 8090; background: #b6875a; border-radius: 0 0 5px 5px; -moz-border-radius: 0 0 5px 5px;}

/* a usp is one of the four gray boxes */
.usp {
    margin-bottom: 30px;
    overflow: hidden;
    background-position: top right;
    background-repeat: no-repeat;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #e5e5e5;
    padding: 5px 10px;
    min-height: 165px;
}
.old-site .usp h2,
.usp h3,
.usp p {
    text-align: left;
}
.old-site .usp h2,
.usp h3 {
    font-size:22px;
    line-height: 22px;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    font-weight: normal;
}
.usp p {
    font-size: 13px;
}
/* they have seperate background images and positions */
.usp.money_back    {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_8.png');                background-size: 110px; }
.usp.money_back.uk {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_uk.png');               background-size: 110px; }
.usp.money_back.dk {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/100-pct-tilfredshedsgaranti.png'); background-size: 110px; }
.usp.money_back.es {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_es.png');               background-size: 110px; }
.usp.money_back.fr {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_fr.png');               background-size: 110px; }
.usp.money_back.it {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_it.png');               background-size: 110px; }
.usp.money_back.nl {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_nl.png');               background-size: 110px; }
.usp.money_back.se {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_se.png');               background-size: 110px; }
.usp.money_back.pt {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_pt.png');               background-size: 110px; }
.usp.money_back.no {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_no.png');               background-size: 110px; }
.usp.money_back.fi {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_fi.png');               background-size: 110px; }
.usp.money_back.pl {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_pl.png');               background-size: 110px; }
.usp.money_back.ro {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_ro.png');               background-size: 110px; }
.usp.money_back.cz {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/money_back_cz.png');               background-size: 110px; }

.usp.delivery      {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/delivery.png');                                            background-position: right top; }
.usp.quality       {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/quality_8.png');                  background-size: 110px; background-position: right bottom; }
.usp.visible       {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/visible_8.png');                                          background-position: right bottom; }
.usp.registry      {background-image: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/registry.png');                                           background-position: right top; }

.usp.lazy          {background-image: none; background-color: transparent;}

@media (min-width: 768px) {
    .usp {
        min-height: 185px;
    }
    .old-site .usp h2,
    .usp h3 {
        line-height: 21px;
        font-size: 17px;
    }
    .usp p {
        font-size: 13px;
    }
    .usp.visible    { background-size: 110px; background-position: right top; }
    .usp.money_back { background-size: 110px; }
    .usp.registry   { background-size: 96px; background-position: 134px top; }
    .usp.quality    { background-size: 74px; background-position: right top; }
    .usp.delivery   { background-size: 90px; background-position: right 12px; }
}
@media (min-width: 992px) {
    .usp {
        min-height: 185px;
    }
    .old-site .usp h2,
    .usp h3 {
        font-size:22px;
        line-height: 30px;
    }
    .usp p {
        font-size: 13px;
    }
    .usp.visible,
    .usp.registry,
    .usp.money_back,
    .usp.delivery,
    .usp.quality  { background-size: auto; }
    .usp.visible  { background-position: right bottom; }
    .usp.registry { background-position: right bottom; }
    .usp.quality  { background-position: right bottom; }
    .usp.delivery { background-position: right; }
}

.tp-logo  {margin:7px 3px 0 10px; }
.tp-trust {font-size:11px; color:rgb(0,0,0); font-family:Arial; text-transform: uppercase; font-weight:bold; position:relative; top:-1px; }
.tp-pilot {font-size:11px; color:rgb(68,68,68); font-family:Arial; text-transform: uppercase; font-weight:bold; position:relative; top:-1px; }
.trustpilot-reviews a {color:#B6875B; }

/* new advantages styles */
.advantages-new {

}
.advantages-new .advantage-box {
    margin-top: 30px;
    display: flex;
}

.advantages-new .advantage-box-image {
    width: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .advantages-new .advantage-box-image {
        width: 150px;
    }
}
.advantages-new .advantage-box h3 {
    text-align: left;
    font-size:22px;
    line-height: 22px;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    font-weight: normal;
    margin-bottom: 10px;
    margin-top: 10px;
}
.advantages-new .advantage-box .colored-blue {
    color: #337ab7;
}
/* Old trustpilot banner */
.corona-update img.trustpilot,
.trustpilot-banner img.trustpilot {
    width: 100px;
    vertical-align: bottom;
}
.trustpilot-banner a {
    cursor: pointer;
}
.trustpilot-banner img.trustpilot-star {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}
.trustpilot-banner .trustpilot-rating-title,
.trustpilot-banner .trustpilot-rating-text {
    font-size:15px;
    color:#fff;
    vertical-align:middle;
}
.trustpilot-banner .trustpilot-rating-title {
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    font-size:20px;
}

.button-set {
    margin: 10px 0;
}

/* Footer ================================================================================ */
.footer { border:0; background: #fff; text-align: center}
.footer address { text-align:right; }
.footer ul { padding: 0}
.footer ul li { font-size: 13px; color: #424242; line-height: 26px; }
.footer ul li a { text-decoration: none; color: #424242; }
.footer ul#footer_social li { margin-bottom: 10px;}
.footer ul#footer_social a { line-height: 32px; }
.footer ul#footer_social a img { margin-right: 8px; }
.footer h1,
.footer h2,
.footer h3,
.footer .block-title { margin: 5px 0 10px; line-height: 1;color: #2b2b2b; font-size: 13px; font-weight: bold;}
.footer .block-title {font-family: Helvetica, sans-serif;}
.footer-container {
    margin: 40px auto 20px auto;
}
.footer .seo {
    margin: 15px 0 0;
    text-align: center;
    font-size: 13px;
}
.footer .seo ul li {
    margin: 0 20px;
}
@media (min-width: 768px) {
    .footer { text-align: left}
    .footer h1,
    .footer h2,
    .footer h3,
    .footer .block-title { text-align: left}
    .footer p { text-align:right; }
    .footer .seo ul li {
        display: inline;
    }
}
.footer_social {float:left; width:100px; }
.footer_social a {font-size:13px; text-decoration:none; color:#424242; line-height:45px; }
.footer .col-xs-1, .footer .col-sm-1, .footer .col-md-1, .footer .col-lg-1, .footer .col-xs-2, .footer .col-sm-2, .footer .col-md-2, .footer .col-lg-2, .footer .col-xs-3, .footer .col-sm-3, .footer .col-md-3, .footer .col-lg-3, .footer .col-xs-4, .footer .col-sm-4, .footer .col-md-4, .footer .col-lg-4, .footer .col-xs-5, .footer .col-sm-5, .footer .col-md-5, .footer .col-lg-5, .footer .col-xs-6, .footer .col-sm-6, .footer .col-md-6, .footer .col-lg-6, .footer .col-xs-7, .footer .col-sm-7, .footer .col-md-7, .footer .col-lg-7, .footer .col-xs-8, .footer .col-sm-8, .footer .col-md-8, .footer .col-lg-8, .footer .col-xs-9, .footer .col-sm-9, .footer .col-md-9, .footer .col-lg-9, .footer .col-xs-10, .footer .col-sm-10, .footer .col-md-10, .footer .col-lg-10, .footer .col-xs-11, .footer .col-sm-11, .footer .col-md-11, .footer .col-lg-11, .footer .col-xs-12, .footer .col-sm-12, .footer .col-md-12, .footer .col-lg-12 {
    padding: 0 2px;
}
.footer .row { margin: 0 -2px 0 -2px; }
/* ======================================================================================= */


.product-view { margin-top: 15px; }

/* ####################################################################### */

/* Headings */


h4            { font-size:14px; font-weight:bold; }
h5            { font-size:12px; font-weight:bold; }
h6            { font-size:11px; font-weight:bold; }


/* Table */
caption,th,td { vertical-align:top; text-align:left; }

/* Content */
strong        { font-weight:bold; }
address       { font-style:normal; }
cite          { font-style:normal; }
q,
blockquote    { quotes:none; }
q:before,
q:after       { content:''; }
small,big     { font-size:1em; }
/* Lists */
ul,ol         { list-style:none; }

/* Tools */
.hidden       { display:block !important; border:0 !important; margin:0 !important; padding:0 !important; font-size:0 !important; line-height:0 !important; width:0 !important; height:0 !important; overflow:hidden !important; }
.nobr         { white-space:nowrap !important; }
.wrap         { white-space:normal !important; }
.a-left       { text-align:left !important; }
.a-center     { text-align:center !important; }
.a-right      { text-align:right !important; }
.v-top        { vertical-align:top; }
.v-middle     { vertical-align:middle; }
.f-left,
.left         { float:left !important; }
/*.f-right,
.right        { float:right !important; }*/
.f-none       { float:none !important; }
.f-fix        { float:left; width:100%; }
.no-display   { display:none; }
.no-margin    { margin:0 !important; }
.no-padding   { padding:0 !important; }
.no-bg        { background:none !important; }
.align-center { text-align: center; }
.margin-top   { margin-top: 30px !important; }
/* ======================================================================================= */


/* Layout ================================================================================ */
.page-print { background:#fff; padding:20px; text-align:left; }
.page-empty { background:#fff; padding:20px; text-align:left; }
.page-popup { padding:20px; text-align:left; }
.main { margin:10px 0; min-height: 250px; background: white;}
/* ======================================================================================= */

/* Special Check and Radio Boxes */
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    z-index: -1;
    opacity: 0;
}
.checkbox label,
.checkbox-inline label,
.radio label,
.radio-inline label {
    line-height: 36px;
    padding-left: 45px;
}
.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    width: 36px;
    height: 36px;
    border:1px solid #bbb;
    border-radius: 2px;
    -webkit-border-radius: 2px;
}
/* Disabled state */
input:disabled ~ .control__indicator {
    pointer-events: none;
    opacity: .6;
    background: #e6e6e6;
}
/* Show check mark */
input:checked ~ .control__indicator {
    background: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/check.png) no-repeat center center;
}


/* Form Validation */
.validation-advice {
    clear:both;
    min-height:13px;
    margin:3px 0 0;
    padding-left:17px;
    font-size:10px;
    line-height:13px;
    background:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/validation_advice_bg.gif) 2px 1px no-repeat;
    color:#f00;
}
.validation-failed {
    border:1px dashed #f00 !important;
    background:#faebe7 !important;
}
p.required {
    font-size:10px;
    text-align:right;
    color:#3b92d6;
}
.back-link {
    float: left;
}
/* Expiration date and CVV number validation fix */
.v-fix { float:left; }
.v-fix .validation-advice { display:block; width:12em; margin-right:-12em; position:relative; }

/* Global Messages  */
.success { color:#3d6611; font-weight:bold; }
.error { color:#f00; font-weight:bold; }
.notice { color:#ccc; }

.messages,
.messages ul { list-style:none !important; margin:0 !important; padding:0 !important; }
.messages { width:100%; overflow:hidden; }
.messages li { margin:0 0 10px; }
.messages li li { margin:0 0 3px; }
.error-msg,
.success-msg,
.note-msg,
.notice-msg { border-style:solid !important; border-width:1px !important; background-position:10px 9px !important; background-repeat:no-repeat !important; min-height:24px !important; padding:8px 8px 8px 32px !important; font-size:11px !important; font-weight:bold !important; }
.error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/i_msg-error.gif); color:#df280a; }
.success-msg { border-color:#446423; background-color:#eff5ea; background-image:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/i_msg-success.gif); color:#3d6611; }
.note-msg,
.notice-msg { border-color:#fcd344; background-color:#fafaec; background-image:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/i_msg-note.gif); color:#3d6611; }

/* Page Heading */
.page-title { padding:0 0 5px; margin:0 0 10px; }
.page-title .separator { margin:0 3px; }
.page-title .link-rss { float:right; }
.title-buttons { text-align:right; }
.title-buttons h1,
.title-buttons h2,
.title-buttons h3,
.title-buttons h4,
.title-buttons h5,
.title-buttons h6 { float:left; }

/* Pager */
.pager {
    margin:20px 0;
}
.pager ol {
    padding: 0;
    display:table;
    margin: 0 auto;
}
.pager .amount {
    display: none;
}
.pager li.current {
    border: 1px solid #337ab7;
    border-radius: 15px;
    display: inline-block;
    padding: 0 7px;
    font-size: 13px;
    background-color: #337ab7;
    color: #fff;
    cursor: default;
    z-index: 3;
}
.pager .pages strong {
    display: none;
}
.pager li > a,
.pager li > span {
    padding: 0 7px;
    font-size: 13px;
}
@media (min-width: 768px) {
    .pager li > a,
    .pager li > span,
    .pager li.current {
        padding: 5px 14px;
        font-size: inherit;
    }
}

/* Class: std - styles for admin-controlled content */
.std .subtitle { padding:0; }
.std ol.ol { list-style:decimal outside; padding-left:1.5em; }
.std ul.disc { list-style:disc outside; padding-left:18px; margin:0 0 10px; }
.std dl dt { font-weight:bold; }
.std dl dd { margin:0 0 10px; }
.std ul,
.std ol,
.std dl,
.std address,
.std blockquote { margin:0 0 1em; padding:0; }
.std ul { list-style:disc outside; } /*  padding-left:1.5em; */
#contactForm ul { list-style:none; }
.std ol { list-style:decimal outside; padding-left:1.5em; }
.std ul ul { list-style-type:circle; }
.std ul ul,
.std ol ol,
.std ul ol,
.std ol ul { margin:.5em 0; }
.std dt { font-weight:bold; }
.std dd { padding:0 0 0 1.5em; }
.std blockquote { font-style:italic; padding:0 0 0 1.5em; }
.std address { font-style:normal; }
.std b,
.std strong { font-weight:bold; }
.std i,
.std em { font-style:italic; }
.std p { text-align: justify; }
.std p.text-center { text-align: center; }
.std p.text-left { text-align: left; }


/* Misc */
.links li { display:inline; }
.links li.first { padding-left:0 !important; }
.links li.last { background:none !important; padding-right:0 !important; }

/* Noscript Notice */
.noscript { border:1px solid #ddd; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
.noscript .noscript-inner { width:1000px; margin:0 auto; padding:12px 0 12px; background:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/i_notice.gif) 20px 50% no-repeat; }
.noscript p { margin:0; }

/* Demo Notice */
.demo-notice { margin:0; padding:6px 10px; background:#d75f07; font-size:12px; line-height:1.15; text-align:center; color:#fff; }

/* Cookie Notice */
.notice-cookie { border-bottom:1px solid #cfcfcf; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
.notice-cookie .notice-inner { width:870px; margin:0 auto; padding:12px 0 12px 80px; background:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/i_notice.gif) 20px 25px no-repeat; text-align:left; }
.notice-cookie .notice-inner p { margin:0 0 10px; border:1px dotted #cccc73; padding:10px; }
.notice-cookie .notice-inner .actions { }

/* ======================================================================================= */

/* Product View ========================================================================== */

/********** < Product Prices */
.price { white-space:nowrap !important; }

.price-box {text-align: right;padding-bottom: 20px;}
.price-box .price { font-weight:400; font-size: 24px; color: black; }

/* Regular price */
.regular-price .price { font-weight:400; font-size: 24px; color: black;}

/* Old price */
.old-price { margin: 0; }
@media (min-width: 768px) {
    .old-price { margin-top: -23px; }
}
.old-price .price-label { white-space:nowrap; }
.old-price .price { font-weight:normal; text-decoration:line-through; font-size: 19px; }

/* Special price */
.special-price { margin: 0; color: #ff0000; font-weight: normal; font-size: 19px; }
.special-price + .small br { display: none; }
.special-price .price-label { font-weight:bold; white-space:nowrap; font-size: 19px; }
.special-price .price { font-weight:bold; font-size: 19px; color: #ff0000; }

/* Minimal price (as low as) */
.minimal-price .price-label { font-weight:bold; white-space:nowrap; }

.minimal-price-link { display:block; }
.minimal-price-link .label {}
.minimal-price-link .price { font-weight:normal; }

/* Excluding tax */
.price-excluding-tax { display:block; }
.price-excluding-tax .label { white-space:nowrap; }
.price-excluding-tax .price { font-weight:normal; }

/* Including tax */
.price-including-tax { display:block; }
.price-including-tax .label { white-space:nowrap; }
.price-including-tax .price { font-weight:bold; }

/* Configured price */
.configured-price .price-label { font-weight:bold; white-space:nowrap; }
.configured-price .price { font-weight:bold; }

/* FPT */
.weee { display:block; font-size:11px; color:#444; }
.weee .price { font-size:11px; font-weight:normal; }

/* Excl tax (for order tables) */
.price-excl-tax  { display:block; }
.price-excl-tax .label { display:block; white-space:nowrap; }
.price-excl-tax .price { display:block; }

/* Incl tax (for order tables) */
.price-incl-tax { display:block; }
.price-incl-tax .label { display:block; white-space:nowrap; }
.price-incl-tax .price { display:block; font-weight:bold; }

/* Price range */
.price-from .price-label { font-weight:bold; white-space:nowrap; }
.price-to .price-label { font-weight:bold; white-space:nowrap; }

/* Price notice next to the options */
.price-notice .price { font-weight:bold; }

/* Price as configured */
.price-as-configured .price-label { font-weight:bold; white-space:nowrap; }

/********** Product Prices > */

/* Tier Prices */
.tier-prices .price { font-weight:bold; }

/* Add to Links */
.add-to-links .separator { display:none; }

/* Add to Cart */
.add-to-cart label { float:right; margin-right:5px; }
.add-to-cart .qty { float:right; }
.add-to-cart .qty-select input {min-width: 50px;}
.add-to-cart button.btn { float:right; margin-left:5px; }
.add-to-cart .paypal-logo { clear:left; text-align:right; }
.add-to-cart .paypal-logo .paypal-or { clear:both; display:block; margin:5px 60px 5px 0; }
.product-view .add-to-cart .paypal-logo { margin:0; }
.product-view .add-to-cart {
    margin-bottom: 20px;
}

/* Add to Links + Add to Cart */
.add-to-box .add-to-cart { float:left; }
.add-to-box .or { float:left; margin:0 10px; }
.add-to-box .add-to-links { float:left; }

.product-collateral .box-collateral { margin:0 0 15px; }

/* product page */
.product-title {
    margin-bottom: 20px;
}
.product-view .product-name h2 {
    font-size: 20px;
}
.product-view p {
    text-align: justify;
}
@media (min-width: 768px) {
    .product-view .product-name h2 {
        font-size: 24px;
    }
    .product-view .product-view-left {
        padding-right: 30px;
    }
    .product-view .product-view-right {
        padding-left: 30px;
        border-left: 1px solid #f2f2f2;
    }
}
.product-view .short-description p {
    text-align: justify;
}
.product-view .description {
    padding-bottom: 15px;
    text-align: justify;
}
.product-view .short-description ul {
    padding: 0;
    border-bottom: 1px solid #e1e1e1;
}
.product-view .short-description ul li {
    border-top: 1px solid #e1e1e1;
    padding: 6px;
}

/* Product Images */
.product-view .main-image {
    border: 10px solid #fff;
    -webkit-box-shadow: 0px 4px 11px #a1a1a1;
    box-shadow: 0px 4px 11px #a1a1a1;
    position:relative;
    overflow:hidden;
    z-index:9;
    background-color: #fff;
}
.product-view .main-image img {
    margin: 0 auto;
}
@media (min-width: 1200px) {
    .product-view .main-image {
        padding: 12px 0;
    }
}

/* Product Preview Images */
.product-view #preview {
    padding: 0;
    margin: 20px 0;
}
.product-view .preview-element {
    margin: 0 5px;
}
@media (min-width: 768px) {
    .product-view .preview-element {
        margin: 0 20px;
    }
}
/* Product Options */
.remaining_counter {
    color: #aaa;
    font-size: 12px;
}

@media (min-width: 768px) {
    .product-options .form-horizontal .control-label {
        text-align: left;
    }
}
.product-options label {
    color: #3b92d6;
    font-size: 17px;
    font-weight: 400;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
}
.product-options .options-list {
    padding: 0;
}
.product-options .options-list li label {
    font: 300 15px/36px Helvetica,sans-serif;
    color: #4c4c4c;
    font-weight: 300;
    width: 100%;
}
@media (min-width: 768px) {
    .product-options .options-list li label {
        width: auto;
    }
}
.product-options .options-list li .dk_container {
    margin-left: 45px;
}
.product-options .options-list > li {
    margin-bottom: 10px;
    min-height: 36px;
}
.product-options .options-list input.radio {
    margin:3px -18px 0 0;
}
.product-options .options-list input.checkbox {
    margin-top: 12px;
    margin-right: 20px;
}
.product-options .options-list .option-title
{
    display: inline;
    line-height: inherit;
}
.product-options .options-list .option-title small {
    float: left;
    margin-top: -9px;
    font-size: 13px;
    line-height: 16px;
}
.product-options .options-list .option-description {
    display: inline;
    width: auto;
}
.product-options ul.validation-failed {
    padding:0 7px;
}
.product-options p.required {
    padding:15px 0 0;
}
/* dropdown_description */
.descriptions_wrapper {margin-top: 10px; margin-bottom: 10px; }
.descriptions_wrapper img {
    border: 6px solid #fff;
    -webkit-box-shadow: 0px 4px 11px #a1a1a1;
    -moz-box-shadow: 0px 4px 11px #a1a1a1;
    box-shadow: 0px 4px 11px #a1a1a1;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 10px auto 0;
}
/* the product option descriptions */
.option_description {
    cursor: pointer;
    margin: 6px 0 6px 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #dadada;
    width: 24px;
    height: 24px;
    display: inline-block;
    float: right;
}
@media (min-width: 768px) {
    .option_description {
        float: none;
    }
}
.option_description > a.q {
    color: #4b4c4d;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    display: block;
}
.option_description_container {
    border: 10px solid #fff;
    -webkit-box-shadow: 0px 4px 11px #a1a1a1;
    box-shadow: 0px 4px 11px #a1a1a1;
    z-index: 8020;
    display: none;
    overflow: hidden;
    position: absolute;
    background: white;
    width: 280px;
    top: 20px;
    left: 20px;
}
.option_description_container p {
    text-align: left;
    font-size: 13px;
}

.popover {
    width: 100%;
}
.popover-content img {
    display: block;
    max-width: 100%;
    height: auto;
}
/* ======================================================================================= */


/* Content Styles ================================================================= */
.product-name { font-size:1em; font-weight:normal; }


/* Product Tags */
.tags-list li { display:inline; }

/* Advanced Search */
.advanced-search {}
.advanced-search-amount {}
.advanced-search-summary {}

/* CMS Home Page */
.cms-home .subtitle {}
.cms-index-index .subtitle {}

/* Sitemap */
.page-sitemap .links { text-align:right; margin:0 8px -22px 0; }
.page-sitemap .links a { text-decoration:none; position:relative; }
.page-sitemap .links a:hover { text-decoration:underline; }
.page-sitemap .sitemap { margin:12px; }
.page-sitemap .sitemap a {}
.page-sitemap .sitemap li { margin:3px 0; }
.page-sitemap .sitemap li.level-0 { margin:10px 0 0; font-weight:bold; }
.page-sitemap .sitemap li.level-0 a {}

/* RSS */
.rss-title h1 { background:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/i_rss-big.png) 0 4px no-repeat; padding-left:27px; }
.rss-table .link-rss { display:block; line-height:1.35; background-position:0 2px; }
/* ======================================================================================= */

/* Shopping Cart ========================================================================= */
.cart {
    margin-bottom: 30px;
}
.cart h1 {
    text-align: center;
    display: block;
    width: 100%;
}
.cart .table th,
.order-review .table th {
    background: #dadada;
    font-weight: 300;
    color: #000;
}
.cart .product-image img {
    border: 4px solid #fff;
    -webkit-box-shadow: 0px 0px 5px #a1a1a1;
    box-shadow: 0px 0px 5px #a1a1a1;
}
.cart .product-image img.visible-xs {
    border: 0 none;
}
.cart h2.product-name,
.order-review h2.product-name {
    text-align: left;
    color: #3e91d4;
    font-size: 20px;
    margin-bottom: 20px;
}
.cart .price,
.order-review .price {
    font-weight: 300;
}
.cart .remove-link {
    display: block;
    text-decoration: none;
    color: #4b4b4b; font-size: 13px;
    padding-bottom: 10px;
}
@media (min-width: 768px) {
    .cart .remove-link {
        white-space: nowrap;
        padding-top: 2px;
        padding-left: 0;
    }
}

.cart .remove-link .glyphicon {
    margin-right: 1px;
}
@media (min-width: 768px) {
    .cart .remove-link .glyphicon {
        margin-right: 5px;
    }
}
.cart .methods-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.cart .method-col.checkout_cart_methods_onepage {
    order: 20;
    text-align: right;
}
.cart .method-col.checkout_cart_methods_paypal_express_bottom {
    order: 30;
    padding: 20px 0 0;
}
html[lang="fr"] .cart .method-col.checkout_cart_methods_paypal_express_bottom {
    padding-top: 31px;
}
html[lang="en"] .cart .method-col.checkout_cart_methods_paypal_express_bottom,
html[lang="it"] .cart .method-col.checkout_cart_methods_paypal_express_bottom,
html[lang="es"] .cart .method-col.checkout_cart_methods_paypal_express_bottom {
    padding-top: 30px;
}
.cart .method-col.checkout_cart_methods_amazonpayments_pay_bottom {
    order: 40;
    padding: 29px 0 0;
    text-align: right;
}
.cart .method-col.checkout_cart_continue {
    order: 10;
    padding: 5px 0 0;
}
.cart .method-col.checkout_cart_liner {
    order: 25;
    width: 100%;
    padding: 25px 0 0;
    text-align: center;
}
html[lang="ro"] .cart .method-col.checkout_cart_liner {
    display: none;
}
.cart .method-col .paypal-logo {
    text-align: right;
}
.cart .discount {
    margin-top: 10px;
}
.cart .discount h2 {
    text-align: left;
    float: left;
    font-size: 18px;
}
.cart .discount button {
    margin-top: 10px;
}
#discount-coupon-form .discount button {
    float: right;
    margin-left: 5px;
}
#discount-coupon-form_mobile .discount button.btn-coupon-cancel {
    float: right;
}
#discount-coupon-form,
#discount-coupon-form_mobile {
    margin: 15px 0;
}
@media (min-width: 768px) {
    #discount-coupon-form,
    #discount-coupon-form_mobile {
        margin-top: 0;
    }
    .cart .discount button {
        margin-top: 0;
        float: none;
    }

}
html[lang="pl"] .cart .btn-proceed-checkout,
html[lang="nl"] .cart .btn-proceed-checkout,
html[lang="sv"] .cart .btn-proceed-checkout {
    font-size: 16px;
}
html[lang="da"] .cart .btn-proceed-checkout {
    font-size: 15px;
}
html[lang="ro"] .cart .btn-proceed-checkout,
html[lang="en"] .cart .btn-proceed-checkout,
html[lang="es"] .cart .btn-proceed-checkout,
html[lang="pt"] .cart .btn-proceed-checkout {
    font-size: 14px;
}
html[lang="fr"] .cart .btn-proceed-checkout {
    font-size: 14px;
}
html[lang="cs"] .cart .btn-proceed-checkout,
html[lang="ro"] .cart .btn-continue,
html[lang="cs"] .cart .btn-continue {
    font-size: 13px;
}
html[lang="it"] .cart .btn-proceed-checkout,
html[lang="it"] .cart .btn-continue {
    font-size: 12px;
}

.cart .discount a {
    cursor: pointer;
}
.cart .discount a .arrow {
    background: url("https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/arrow-down.png");
    height: 7px;
    width: 12px;
    float: left;
    display: inline-block;
    margin: 12px 0 0 10px;
}
.cart .discount a.show .arrow {
    background: url("https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/arrow-up.png");
}
#discount-content,
#discount-content_mobile {
    display: none;
    clear: both;
}
.cart .discount a.show + #discount-content,
.cart .discount a.show + #discount-content_mobile {
    display: block;
}
.cart .table .item-msg {
    font-size:10px;
}
.cart .totals {
    margin-top: -1px;
}
.cart .grand-total,
.order-review .grand-total {
    background-color: #dadada;
    font-size: 18px;
}
.cart .grand-total-excl,
.order-review .grand-total-excl {
    font-size: 12px;
}
.cart strong .price,
.order-review strong .price {
    font-weight: bold;
}
.table > tbody > tr > td.cart-item-price {
    padding-left: 9px;
}
#shopping-cart-table {
    margin-bottom: 0;
}
/* Shopping cart total summary row expandable to details */
tr.summary-total {
    cursor:pointer;
    font-size: 12px;
}
tr.summary-total .summary-collapse {
    float:right;
    text-align:right;
    padding-left:20px;
    background:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/bkg_collapse.gif) 0 4px no-repeat; cursor:pointer;
}
tr.show-details .summary-collapse {
    background-position:0 -53px;
}
tr.summary-details td {
    font-size:11px;
    background-color:#dadada;
}
tr.summary-details-excluded {
    font-style:italic;
}

/* Options Tool Tip */
.item-options .title,
#shopping-cart-table label {
    color: black;
    font-size: 11px;
    line-height: 15px;
    font-weight: bold;
}
.item-options .value {
    font-size: 11px;
    line-height: 15px;
    margin-bottom: 5px;
}
.item-options .value p {
    margin-bottom: 5px;
}
@media (min-width: 768px) {
    .item-options .value,
    #shopping-cart-table label {
        font-size: 13px;
        line-height: 20px;
        max-width: inherit;
        overflow: inherit;
    }
    .item-options .title {
        font-size: 13px;
        line-height: 20px;
    }
}
.sp-methods .item-options .title,
.sp-methods .item-options .value {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.sp-methods .sp-method-inputs {
    margin-left: 45px;
}
/* ======================================================================================= */


/* Checkout ============================================================================== */
/********** < Common Checkout Styles */
/* Shipping and Payment methods */
.opc .sp-methods :not(.has-float-label)>label {
    color: #4c4c4c;
    font: 300 15px/36px Helvetica,sans-serif;
    height: 36px;
}
.opc .sp-methods .solo :not(.has-float-label)>label {
    padding-left: 0 !important;
}
.sp-methods .form-group {
    margin-bottom: 0;
}
.sp-methods dt {
    color: #3b92d6;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    font-size: 17px;
    font-weight: 400;
}
.sp-methods ul {
    padding: 0;
}
.sp-methods .price {
    font-weight:bold;
}
.sp-methods .form-list {
    padding-left:60px;
    margin-bottom: 20px;
}
.sp-methods .form-list ul {
    padding-left: 20px;
    list-style: disc;
}
.sp-methods #payment_form_bankpayment td {
    font: 300 15px/36px Helvetica,sans-serif;
}
.sp-methods #payment_form_bankpayment label {
    font-weight: bold;
}
#p_method_paypal_standard a {
    font-size: 10px;
}
.please-wait {
    margin-right:5px;
}
.please-wait img {
    vertical-align:middle;
}

/* Checkout Agreements */
.checkout-agreements {
    padding: 0;
    margin-bottom: 12px;
}
.checkout-agreements li {
    margin: 0;
}
.checkout-agreements .agree {
    padding: 0px 6px;
    font-size: 10px;
    line-height: 14px;
}
.checkout-agreements label {
    display: inline;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.opc .checkout-agreements label {
    font-size: 13px;
}
.opc .back-link {
    float: right;
}

/********** Common Checkout Styles > */

/* One Page Checkout */

.opc {
    border-bottom:1px solid #ddd;
    position:relative;
    padding: 0;
    margin-bottom: 50px;
}
.opc label {
    color: #999;
    font-size: 17px;
    font-weight: 400;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    margin-bottom: 0;
    margin-top: 10px;
}
.opc .radio label,
.opc .checkbox label {
    margin-bottom: 0;
    margin-top: 2px;
    white-space: nowrap;
}
.opc .sp-methods .radio label,
.opc .sp-methods .checkbox label {
    white-space: normal;
}

.opc label.required,
.opc .radio label,
.opc .checkbox label {
    color: #3b92d6;
}
.opc .form-group {
    margin-bottom: 0;
}
.opc .form-group.radio-buttons,
.opc .form-group.check-boxes {
    margin-bottom: 15px;
}
.opc li.section {
    border:1px solid #ddd;
    border-bottom:0;
}
.opc li.section.active {
    border-bottom:1px solid #ddd;
}
.opc li.section:not(.allow) {
    display: none;
}
.opc .buttons-set.disabled button.btn {
    display:none;
}
.opc .buttons-set .please-wait {
    height:34px;
    line-height:34px;
}
.opc .step-title {
    background-color:#f6f6f6;
    padding:0 5px;
}
.opc .step-title h2 {
    font-size:22px;
    text-align: left;
    margin: 0;
    padding: 5px;
}
.opc .allow .step-title {
    cursor:pointer;
}
.opc .active .step-title {
    background-color:#ccc;
    cursor:default;
}
.opc .step {
    border-top:1px solid #ddd;
    padding:10px;
}
.opc .step .tool-tip { right:10px; }

.opc .sp-methods .stripe-new label {
    height: auto;
    line-height: initial;
}
ul#payment_form_stripe_payments.stripe-new li.stripe-new {
    margin-bottom: 10px;
    margin-left: 26px;
}

.opc .creditcards .icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: -2px;
    width: 45px;
    height: 30px;
}
@media (min-width: 768px) {
    .opc .creditcards .icon {
        margin-right: 0.5em;
    }
}
.opc label[for="p_method_stripe_payments"] .method-title {
    margin-right: 0.5em;
}
@media (max-width: 767px) {
    .opc label[for="p_method_stripe_payments"] .method-title { display: none; }
    .street-address-wrapper {
        display: flex; flex-flow: column;
    }
    .mobile-order-1 {
        order: 1;
    }
    .mobile-order-2 {
        order: 2;
    }
    .mobile-order-3 {
        order: 3;
    }
    .mobile-order-4 {
        order: 4;
    }
}

/* ======================================================================================= */

/* Order Print Pages */
.page-print .print-head {}
.page-print .print-head img { float:left; }
.page-print .print-head address { float:left; margin-left:15px; }

/* Price Rewrites */
.page-print .gift-message-link { display:none; }
.page-print .price-excl-tax,
.page-print .price-incl-tax { display:block; white-space:nowrap; }
.page-print .cart-price,
.page-print .price-excl-tax .label,
.page-print .price-incl-tax .label,
.page-print .price-excl-tax .price,
.page-print .price-incl-tax .price { display:inline; }

/* ======================================================================================= */




/* Clears ================================================================================ */
.clearer:after,
.header-container:after,
.header-container .top-container:after,
.header:after,
.header .quick-access:after,
#nav:after,
.main:after,
.col-main:after,
.col2-set:after,
.col3-set:after,
.col4-set:after,
.search-autocomplete li:after,
.block .block-content:after,
.block .actions:after,
.block li.item:after,
.block-poll li:after,
.block-layered-nav .currently li:after,
.page-title:after,
.products-grid:after,
.products-list li.item:after,
.box-account .box-head:after,
.dashboard .box .box-title:after,
.box-reviews li.item:after,
.box-tags li.item:after,
.pager:after,
.sorter:after,
.ratings:after,
.add-to-box:after,
.add-to-cart:after,
.product-essential:after,
.product-collateral:after,
.product-view .product-img-box .more-views ul:after,
.product-view .product-shop .short-description:after,
.product-view .box-description:after,
.product-view .box-tags .form-add:after,
.product-options .options-list li:after,
.product-options-bottom:after,
.product-review:after,
.cart:after,
.cart-collaterals:after,
.cart .crosssell li.item:after,
.opc .step-title:after,
.checkout-progress:after,
.multiple-checkout .place-order:after,
.group-select li:after,
.form-list li:after,
.form-list .field:after,
.buttons-set:after,
.page-print .print-head:after,
.advanced-search-summary:after,
.gift-messages-form .item:after,
.send-friend .form-list li p:after,
.speech-bubble-additional:after,
.cart .discount:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }

/*
 * IT IS NEW ELEMENT STYLING FROM HERE
 * Some changes have been made above, too
 */
/* GLOBAL CHANGES */

/*Centering the text on the homepage and the landing pages*/
body.cms-home .col-main p {text-align: center;}
body.cms-sterntaufe .col-main p {text-align: center;}
body.cms-stern-verschenken .col-main p {text-align: center;}
body.cms-stern-benennen .col-main p {text-align: center;}
body.cms-sternpatenschaft .col-main p {text-align: center;}
body.cms-stern-kaufen .col-main p {text-align: center;}
body.cms-name-a-star .col-main p {text-align: center;}
body.cms-doeb-en-stjerne .col-main p {text-align: center;}
body.cms-comprare-una-stella .col-main p {text-align: center;}
body.cms-regalare-una-stella .col-main p {text-align: center;}
body.cms-dare-nome-stella .col-main p {text-align: center;}
body.cms-acquistare-una-stella .col-main p {text-align: center;}
body.cms-regalar-una-estrella .col-main p {text-align: center;}

/* HELPERS */
div.line,
#pagination { background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/line.png') repeat-x; height: 5px; margin: 20px 0;}
/* ERROR */
#error_teaser {background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_error.jpg') no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; height: 600px; }
#error_teaser h1 { color: white; font-weight: normal; line-height: 45px; font-size: 30px; top: 250px; position: relative; margin: 0px 60px; font-weight: bold;}
#error_teaser .subline.first {margin-top: 300px;}
#error_teaser .subline {background: black; margin: 0 60px; font-size: 16px; color: white; text-align: center;font-weight: 300; padding: 8px; margin-bottom: 3px;}
#error_teaser .subline a {color: #3380c6;}
/* ERROR */
#error-teaser {background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/teaser_error.jpg') no-repeat bottom center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
#error-teaser h1 { color: white; font-weight: normal; line-height: 45px; font-size: 30px;  }
#error-teaser a { margin-top: 30px; text-decoration: none; font-weight: 700;}
#error-teaser .subline.first {margin-top: 30px;}
#error-teaser .subline {background: black; margin: 0 60px; font-size: 16px; color: white; text-align: center;font-weight: 300; padding: 8px; margin-bottom: 3px;}
#error-teaser .subline a {color: #3380c6;}

/* SUB PAGES*/
.download a {
    display:block;
    width: 75px;
    height: 100px;
    margin: 2px;
    padding-top:45px;
    text-align: center;
    float:left;
    color:#4c4c4c;
    text-decoration:none;
    line-height: normal;
}
.download span {
    display:block;
    font-size:12px;
}
.macosx a {
    background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/dl-macosx.png') top center no-repeat;
}
.windows a {
    background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/dl-windows.png') top center no-repeat;
}


/* the descriptions for dropdown options */
.dropdown_description {display: none;}

/* the dedication modal */
#dedication_templates {
    display: none;
}
#dedication_templates .line {
    margin: 10px 15px;
}
#dedication_templates h3 {
    margin-top: 6px;
    font-size: 25px;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    color: #000;
    text-align: center;
}
#dedication_templates h2 {
    background: black;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    padding: 10px;
    margin: 0;
    font-family: Helvetica, sans-serif;
}
#dedication_templates li .dedication {
    display: none;
}

/* the pagination */
#dedication_templates ul {
    padding: 0;
}
#dedication_templates .tab-pane ul {
    display: table;
    margin: 0 auto;
}

#dedication_templates td:last-child ul {
    border-width: 0 1px 0 1px;
}
#dedication_templates .tab-content td.tab-pane {
    display: none;
}
#dedication_templates .tab-content td.active {
    display: block;
}
#dedication_templates td {
    display: block;
    width: 100%;
}
@media (min-width: 768px) {
    #dedication_templates ul {
        height: 400px;
        overflow: hidden;
        border: 1px solid #e7e7e7;
        border-width: 0 0 0 1px;
    }
    #dedication_templates td:last-child ul {
        border-width: 0 1px 0 1px;
    }
    #dedication_templates td {
        display: table-cell;
        width: 33%;
    }
    #dedication_templates ul li {
        padding: 0 16px;
    }
}
#dedication_templates ul li p {
    margin-bottom: 20px;
    font-size: 13px;
    color: #4c4c4c;
    line-height: 18px;
    text-align: left;
}
#dedication_templates ul li:hover p {
    cursor: pointer; color: #3b92d6;
}
#dedication_templates ol#pagination {
    margin: 10px 15px;
    padding: 0;
}
#dedication_templates ol#pagination li {
    margin-top: 14px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 300;
    background: #e3e3e3;
    display: block;
    width: 26px;
    height: 20px;
    line-height: 20px;
    color: #5b5b5b;
    text-align: center;
}
#dedication_templates ol#pagination li:first-child {float: left;}
#dedication_templates ol#pagination li:last-child {float: right;}

.popover button.close,
#dedication_templates button.close {
    background-image: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/button_lightbox_close.png);
    position: absolute;
    filter: alpha(opacity=100);
    opacity: 1;
    text-shadow: none;
    width: 38px;
    height: 38px;
    top: -19px;
    right: -19px;
}
.popover button.close {
    display: none;
}
@media (min-width: 768px) {
    .popover button.close,
    #dedication_templates button.close {
        display: inline-block;
        top: -17px;
        right: -19px;
    }
}
.popover button.close span,
#dedication_templates button.close span {
    display: none;
}

.template-link {
    margin-bottom: 30px;
}
.template-link a {
    background-color: #ededed;
}

/* footer */
.fb-like-box {margin-left: 28px;}


/* breadcrumb */
.breadcrumb {
    background-color: transparent;
    overflow: hidden;
    font: 14px TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    padding: 0;
    color: #fff;
}
.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.breadcrumb li span {
    text-align: center;
    padding: 5px 15px 5px 15px;
    background: #000;
    position: relative;
    display: block;
    border-color: #000;
    color: #ffffff;
}
.breadcrumb li span a {
    color: #ffffff;
    display: block;
}
.breadcrumb ul li.active span,
.breadcrumb.step2 ul li:nth-child(2) span,
.breadcrumb.step3 ul li:nth-child(3) span,
.breadcrumb.step4 ul li:nth-child(4) span {
    background: #4099dc;
}
@media (min-width: 768px) {
    .breadcrumb {
        font-size: 11px;
        display: table;
        margin: 0 auto 20px;
    }
    .breadcrumb li {
        float: left;
    }
    .breadcrumb li span {
        text-align: left;
        border-radius: 3px 0 0 3px;
        padding: 10px 15px 10px 40px;
        float: left;
    }
    .breadcrumb li span:after {
        content: " ";
        display: block;
        width: 0;
        height: 0;
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 25px solid #000;
        position: absolute;
        top: 50%;
        margin-top: -25px;
        left: 100%;
        z-index: 2;
    }
    .breadcrumb li span:before {
        content: " ";
        display: block;
        width: 0;
        height: 0;
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 25px solid #fff;
        position: absolute;
        top: 50%;
        margin-top: -25px;
        margin-left: 3px;
        left: 100%;
        z-index: 1;
    }
    .breadcrumb li:first-child span {
        padding-left: 15px;
    }
    .breadcrumb.step2 ul li:nth-child(2) span::after,
    .breadcrumb.step3 ul li:nth-child(3) span::after {
        border-left-color: #4099dc;
    }

    .breadcrumb li:last-child span {
        border-radius: 3px;
    }
    .breadcrumb li:last-child span::after {
        border: 0 none;
    }
}
@media (min-width: 992px) {
    .breadcrumb {
        font-size: 16px;
    }
}

/* blog */
.blog-home h2 {
    margin-top: 15px;
    font-size: 34px;
}
.blog-home h2 a {
    color:#000;
}
.blog-home h2 a:hover {
    text-decoration:underline;
}
.blog-title { display: none; }
.post-title h1 { font-size:34px; }
.is-blog .post-entry h3 {
    padding: 14px 0;
    text-align: left;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
}
.is-blog ul#post-list {
    padding: 0;
}
@media (min-width: 992px) {
    .is-blog ul#post-list {
        padding: 0 30px 0 0;
    }
    .is-blog .post-list {
        border-right: 1px solid #e7e7e7;
    }
}
.is-blog ul#post-list li.item > h2 {margin-bottom: 10px; padding-bottom: 10px; background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/line.png') repeat-x bottom; text-align: left; font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif; font-size: 30px;}
.is-blog ul#post-list li.item > h2 a {color: black; text-decoration: none;}
.is-blog ul#post-list li {margin-bottom: 40px;}
.is-blog .post-entry p {
    text-align: justify;
    margin-top: 10px;
}
.is-blog .post-entry img {
    border: 10px solid #fff;
    -webkit-box-shadow: 0px 4px 11px #a1a1a1;
    box-shadow: 0px 4px 11px #a1a1a1;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}
@media (min-width: 768px) {
    .is-blog .post-entry img.alignright {
        float: right;
        margin-left: 20px;
    }
    .is-blog .post-entry img.alignleft {
        float: left;
        margin-right: 20px;
    }
    .is-blog .post-entry img {
        margin-top: 0;
        max-width: 50%;
    }
}
@media (min-width: 992px) {
    .is-blog .post-entry img {
        max-width: 100%;
    }
}
.is-blog .post-meta {margin-top: 20px; clear: both; border: 1px solid #e7e7e7; border-left: 0; border-right: 0; padding: 6px; font-size: 12px;}

.block {
    background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/line.png') repeat-x bottom;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.block a {
    text-decoration: none;
}
.block .block-title {
    margin-bottom: 10px;
}
.block .block-title strong span {
    font-weight: 300;
    text-transform: uppercase;
}
.block .block-content {
    padding: 10px;
}
.block-recent-posts .block-title {
    text-align: center;
}
.is-blog .block-blog-text .block-content a ~ img {
    display: block;
}
.is-blog .wp-sidebar .block-blog-text {
    text-align: center;
}
.is-blog .block .block-content li.item {
    padding: 5px 0;
    border-bottom: 1px solid #e1e1e1;
}
.is-blog .block .block-content li.item:last-child {
    border-bottom: 0;
}
.is-blog .block .block-content center a:first-child {
    display: block;
    padding-bottom: 10px;
}
.is-blog .readmore {float:right; color: #0b8fdf; text-decoration: none;}
@media (min-width: 992px) {
    .is-blog .navbar-brand {
        background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/blog.png') no-repeat center right;
        padding-right: 72px;
    }
}
.is-blog .post-entry h2 { text-align: left; margin: 20px 0 10px; }

/* set start element */
#start {top: 0px; height: 1px; position: absolute;}
/* fix validation advice for dependent options */
.dependent_field .validation-advice {margin-left: 0; position:relative; top: 6px; margin-bottom: 10px; margin-top: 0;}

/* display the bank details in checkout nicely */
#payment_form_bankpayment .input-box {width: 800px;}
/* ======================================================================================= */

#noReg, #advice {font-weight: bold; color: red}

.registry_old #template table { margin-bottom: 20px; margin-top: 10px;}
.registry_old #template table tr td:first-child {width: 160px; font-weight: bold;}
.registry_old #template table tr td p {margin: 0}

.registry_new #template table {margin: 0 10px 20px 0;}
.registry_new #template table tr td {white-space: nowrap; font-size: 11px; }
.registry_new #template table tr td.dedication {white-space: normal;}
.registry_new #template table tr td.dedication p {margin: 0 0 5px 0; line-height: 23px; text-align: initial}

.registry_new #template table tr.section td {padding-top: 20px;}
.registry_new #template table tr td.title {font-weight: bold; padding-bottom: 5px;}
.registry_new #template table tr td.title,
.registry_new #template table tr td.subtitle {}
@media (min-width: 450px) {
    .registry_new #template table tr td {font-size: inherit; }
    .registry_new #template table tr td.title,
    .registry_new #template table tr td.subtitle {width: 260px;}
}
.registry_new #template table tr td.value {padding-left: 10px;}
#star-registry {
    margin-bottom: 10px;
}
#star-registry input {
    text-align: center;
    padding: 0;
    margin-right: 4px;
    width: auto;
    display: inline-block;
}


/* Changing Czech headlines to avoid error with font and special characters */
h2.specialcharcz {
    font-family: 'serif';
}
h1.specialcharcz {
    font-family: 'serif';
}

/* Optimize using sprites */
.occasion_list li span {
    display: inline-block;
    height:200px;
    width: 300px;
    background-image: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/sprite-1-occasions.jpg);
    background-repeat: no-repeat;
    border: 10px solid #fff;
    -webkit-box-shadow: 0px 4px 11px #a1a1a1;
    box-shadow: 0px 4px 11px #a1a1a1;
}


.badge { background-color: #dadada; border-radius: 50%; color: #000; display: inline-block; font-size: 12px; font-weight: 700; line-height: 1; min-width: 10px; padding: 6px 7px; text-align: center; vertical-align: baseline; white-space: nowrap; }
.badge:empty { display: none; }
.pull-right  { float: right !important; }
#product_features .badge { margin-top: 6px; cursor: pointer; }

.speech-bubble {
    background-color: #fff;
    box-sizing: border-box;
    color: #222;
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 1em;
    padding: 0.76923em;
    position: relative;
    text-decoration: none;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    margin-top: 0.76923em;
    text-transform: none;
}
.speech-bubble::after {
    border-color: #f2f2f2 transparent;
    border-style: solid;
    border-width: 0 15px 15px;
    content: "";
    display: block;
    position: absolute;
    width: 0;
}
.speech-bubble.bottom::before {
    border-color: #fff transparent;
    border-style: solid;
    border-width: 11px 15px 0;
    bottom: -11px;
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    width: 0;
    z-index: 3;
}
.speech-bubble.bottom::after {
    border-color: #e5e5e5 transparent;
    border-width: 14px 16px 0;
    bottom: -14px;
    right: 19px;
    z-index: 2;
}
.speech-bubble.top::after {
    bottom: auto;
    left: 2%;
    right: auto;
    top: -12px;
}
.speech-bubble-additional {
    font-size: 13px;
    font-weight: 400;
    margin: 0 2em 0 0;
}
.speech-bubble-additional .stars {
    float: left;
}
.speech-bubble-additional .name {
    float: right;
    margin-top: 6px;
}
.no-shadow {
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

button.button-as-link {
    -moz-user-select: text;
    background: transparent none repeat scroll 0 0;
    border: 0 none;
    color: #3b92d6;
    cursor: pointer;
    font-family: inherit;
    font-feature-settings: inherit;
    font-kerning: inherit;
    font-language-override: inherit;
    font-size: inherit;
    font-size-adjust: inherit;
    font-stretch: inherit;
    font-style: inherit;
    font-synthesis: inherit;
    font-variant: inherit;
    font-weight: inherit;
    line-height: normal;
    margin: 0;
    overflow: visible;
    padding: 0;
    vertical-align: baseline;
}

.bg-warning {
    font-size: 13px;
    line-height: 17px;
    padding: 3px 5px 5px;
}

.flex-row {
    display: flex; flex-flow: row wrap;
}
.flex-order-1 {
    order: 1;
}
.flex-order-2 {
    order: 2;
}
.flex-order-3 {
    order: 3;
}
.flex-order-4 {
    order: 4;
}
.flex-order-5 {
    order: 5;
}
.flex-order-6 {
    order: 6;
}

.opc .tooltip-inner {
    max-width: none;
    background-color: #fff;
    color: #ff0000;
    border: 1px solid #000;
    padding: 5px 8px 3px;
}

.paypal-express-review {
    margin-bottom: 50px;
}
.paypal-express-review h3 {
    text-align: left;
}
.paypal-express-review .shipping-payment-container {
    margin-bottom: 45px;
}

.sp-methods label[for=p_method_klarna_payments_pay_later] img {
    margin-left: 10px;
    margin-top: 5px;
}

ul.dedication-symbols {
    margin: 0;
    padding: 5px 0 0;
}
ul.dedication-symbols li {
    display: inline-block;
}
.dedication-symbol {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border-color: #2e6da4;
    font-weight: 700;
    text-align: center;
    background: #337ab7;
    margin: 0 2px;
    display: inline-block;
    color: #fff;
    padding-top: 4px;
    cursor: pointer;
}
.dedication-symbol:hover {
    background-color: #286090;
}
/* View Type: Grid */

/* View Type: Grid */
.products-grid { padding: 0; }
.products-grid li.item { width:100%; padding:12px 10px 50px; position: relative; margin-bottom: 20px; }
.products-grid .product-image { display:block; margin:0 0 10px; }
.products-grid .product-name { margin:0 0 15px; font-weight:bold; font-size:22px; color:#000;}
.products-grid .price-box { margin:5px 0; text-align: center; padding-bottom: 0; }
.products-grid .availability { line-height:21px; }
.products-grid .actions { position:absolute; bottom:12px; width: 100%; margin-left: -10px; text-align: center }
.products-grid .add-to-cart button.btn { float: none; }
.products-grid li.item img { margin: 0 auto }
.products-grid .regular-price .price { font-size: 19px; }
.products-grid .short-description { text-align: justify; margin-bottom: 15px; padding: 0 8px }
@media (min-width: 768px) {
    .products-grid li.item { float:left; width:33%; margin-bottom: 0; }
    .products-grid:not(:last-of-type)::after {
        background: url('https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/line.png') center repeat-x;
        height: 5px;
        padding: 20px 0;
    }
}

.add-to-cart .input-group .glyphicon {
    margin: 0;
}
.add-to-cart .input-group input {
    text-align: center;
}
.category-title p {
    text-align: center;
    margin-top: 15px;
}
.category-subtitle {
    text-align: center;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    font-size: 20px;
    font-weight:normal;
    margin: 5px 0;
    line-height: 1;
    color: #000;
}
@media (min-width: 768px) {
    .category-subtitle   {
        font-size: 30px;
    }
}
/* Absolute Center Spinner */
.loading-overlay {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading-overlay:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading-overlay:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading-overlay:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */
@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.variant-new,
.variant-a,
.variant-b {
    display: none;
}

.extras-continue-cart {
    margin: 50px 0 20px;
    text-align: center;
}
.home-new #order p.text-center ~ br {
     display: none;
 }

@media (min-width: 768px) {
    .home-new #order > p:first-of-type {
        padding: 0;
        margin: 0;
    }
}

.corona-update,
.trustpilot-banner {
    background-color: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
}
.product-options select option:disabled {
    background-color: #eee;
}

/** floating labels https://github.com/tonycorporated/bootstrap-float-label/tree/v3-dev https://codepen.io/tonycorp/pen/ALaZrV **/
.has-float-label{display:block;position:relative; margin: 10px 0}
.has-float-label label,
.has-float-label>span{
    position:absolute;cursor:text;font-size:85%;opacity:1;-webkit-transition:all .2s;transition:all .2s;top:-.5em;left:25px;z-index:3;line-height:1;padding:0 1px;
    margin: 0;
}
.has-float-label label::after,
.has-float-label>span::after{content:" ";display:block;position:absolute;background:#fff;height:2px;top:50%;left:-.2em;right:-.2em;z-index:-1}
.has-float-label .form-control::-webkit-input-placeholder{opacity:1;-webkit-transition:all .2s;transition:all .2s}
.has-float-label .form-control::-moz-placeholder{opacity:1;transition:all .2s}
.has-float-label .form-control:-ms-input-placeholder{opacity:1;transition:all .2s}
.has-float-label .form-control::placeholder{opacity:1;-webkit-transition:all .2s;transition:all .2s}
.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder{opacity:0}
.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder{opacity:0}
.has-float-label .form-control:placeholder-shown:not(:focus):-ms-input-placeholder{opacity:0}
.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder{opacity:0}
.has-float-label .form-control:placeholder-shown:not(:focus)+label{top:33%;font-size: 100%; pointer-events: none;}
.input-group .has-float-label{display:table-cell}
.input-group .has-float-label .form-control{border-radius:4px}
.input-group .has-float-label:not(:last-child) .form-control{border-bottom-right-radius:0;border-top-right-radius:0}
.input-group .has-float-label:not(:first-child) .form-control{border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-1px}


.opc-block-progress {
    background: none;
}
.opc-block-progress dt {
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px;
}
.opc-block-progress address {
    margin-bottom: 0;
}
.opc-block-progress dd {
    margin-bottom: 10px;
    font-size: 11px;
}

@media (min-width: 768px) {
    .opc-block-progress dt {
        font-size: 18px;
    }
    .opc-block-progress dd {
        margin-bottom: 10px;
        font-size: 13px;
    }
}

.order-review .opc-block-progress .bankpayment_info {
    font-size: 11px !important;
}
.order-review .opc-block-progress .bankpayment_info td {
    white-space:nowrap;
}
.order-review .opc-block-progress label {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-size: 11px;
    margin-top: 0;
}
.opc-block-progress .block-content {
    padding: 0;
}

.shipping-payment-container label.required {
    color: #3b92d6;
    font-weight: 400;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
}
.shipping-payment-container .sp-method-inputs {
    margin-left: 45px;
}
.shipping-payment-container .sk24dhlexpresstablerate_bestway-telephone,
.shipping-payment-container .sk24fedexexpresstablerate_bestway-telephone {
    margin-top: -15px;
    margin-bottom: 0;
}

.video-wrap #video_fascade .vjs-poster {
    background-color: #fff;
}
.video-block .video-wrap {
    margin-top: 30px !important;
}


.cart .crosssell {
    margin-top: 30px;
    text-align: center;
}

.cart .crosssell ul {
    padding: 0;
    display: inline-block;
    margin: 10px auto;
}
.cart .crosssell ul > li {
    padding: 12px 10px 30px;
    position: relative;
    margin: 10px 10px 20px;
}

.cart .crosssell img {
    border: initial;
    -webkit-box-shadow: initial;
    box-shadow: initial;
    margin: auto;
}

.cart .crosssell .product-name {
    text-align: center;
    margin: 0 0 10px;
    font-weight: bold;
    font-size: 22px;
    color: #000;
}

.cart .crosssell .description {
    padding: 10px 0;
}

.cart .crosssell .price-box {
    text-align: center;
}
.cart .crosssell .price-box {
    font-size: 19px;
}
.cart .crosssell .price-box .regular-price .price {
    font-size: 19px;
}

.cart .crosssell .add-to-cart button.btn {
    float: none;
}

@media (min-width: 768px) {

    .cart .crosssell ul > li {
        float: left;
        width: 220px;
    }
    .cart .crosssell .product-name {
        font-size: 18px;
    }
    .cart .crosssell .description {
        font-size: 12px;
        line-height: 18px;
    }
    .cart .crosssell .price-box {
        font-size: 14px;
        line-height: 18px;
    }
    .cart .crosssell .price-box .regular-price .price {
        font-size: 18px;
    }
}

/* Mobile video on homepage */
#star-registry .mobile-video-wrapper {
    position: relative;
    justify-content: center;
    max-width: 345px;
    margin: 20px auto 0 auto;
    z-index: 1;
}
#star-registry .mobile-video-wrapper video {
    position: absolute;
    top: 11%;
    left: 6%;
    max-width: 304px;
    aspect-ratio: 302 / 539;
    width: 89%;
}

@media (min-width: 400px) {
    #star-registry .mobile-video-wrapper video {
        top: 78px;
        left: 21px;
        width: 304px;
        aspect-ratio: 302 / 539;
        z-index: 1;
    }
}
#star-registry .mobile-video-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}
#star-registry a {
    white-space: nowrap;
}
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magento.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magento.com for more information.
 *
 * @category    design
 * @package     base_default
 * @copyright   Copyright (c) 2006-2019 Magento, Inc. (http://www.magento.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* Widgets =============================================================================== */
.widget { display:inline; }
.widget .widget-title { clear:both; padding:15px 0 0; margin:0 0 7px; }
.widget .widget-title h2 { font-size:15px; font-weight:bold; color:#e25203; }

.widget .mini-products-images-list .product-image { display:block; width:76px; height:76px; border:1px solid #a9a9a9; margin:0 auto; }
.widget .mini-products-images-list li.item { float:left; width:77px; height:77px; }

/* Widget: Catalog New Proructs List */
.widget-new-products { display:block; }
.col-main .widget-new-products { margin:7px 0; }
.widget-new-products .products-grid .product-image,
.widget-new-products .products-list .product-image { width:85px; height:85px; }
.widget-new-products .products-list .product-shop { margin-left:100px; }
.sidebar .widget-new-products .block { font-size:11px; line-height:1.25; }
.sidebar .widget-new-products .block-title strong { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_widget-new.gif) 0 1px no-repeat; padding-left:21px; color:#dc5033; }

/* Widget: Recently Viewed Proructs */
.widget-viewed { display:block; }
.col-main .widget-viewed { margin:7px 0; }
.widget-viewed .products-grid .product-image,
.widget-viewed .products-list .product-image { width:85px; height:85px; }
.widget-viewed .products-list .product-shop { margin-left:100px; }
.sidebar .widget-viewed .block { font-size:11px; line-height:1.25; }
.sidebar .widget-viewed .block-title strong { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_block-list.gif) 0 0 no-repeat; padding-left:21px; }

/* Widget: Recently Compared Proructs */
.widget-compared { display:block;}
.col-main .widget-compared { margin:7px 0; }
.widget-compared .products-grid .product-image,
.widget-compared .products-list .product-image { width:85px; height:85px; }
.widget-compared .products-list .product-shop { margin-left:100px; }
.sidebar .widget-compared .block { font-size:11px; line-height:1.25; }
.sidebar .widget-compared .block-title strong { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_block-list.gif) 0 0 no-repeat; padding-left:21px; }

/* Widget: CMS Static Block */
.widget-static-block {}
.sidebar .widget-static-block { display:block; margin:0 0 15px; }

/* Widgets: Links Common Styles */
.top-container .widget a { padding:0 0 0 7px; }

.bottom-container .widget a { padding:0 3px; }

/* Widget: Catalog Product Link */
.widget-product-link-inline { display:inline; }

.col-main .widget-product-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-product-link a { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-product-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-product-link a { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }

/* Widget: Catalog Category Link */
.widget-category-link-inline { display:inline; }

.col-main .widget-category-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-category-link a { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-category-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-category-link a { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }

/* Widget: CMS Page Link */
.widget-cms-link-inline { display:inline; }

.col-main .widget-cms-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-cms-link a { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-cms-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-cms-link a { background:url(https://www.starling.global/au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }
/* ======================================================================================= */

.paymill_powered {
    border: 1px solid #ccc;
    width: 350px;
    padding: 4px;
    background: white url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_paymill.png') no-repeat center right;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-top: 10px;
}

.paymill_powered > .paymill_credits {
    width: 160px;
    color: #666;
}

.paymill_powered > a {
    color: #666;
    text-decoration: underline;
}

.paymill-card-number-visa
{
    background-image: url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_32x20_visa.png') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.paymill-card-number-mastercard
{
    background-image: url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_32x20_mastercard.png') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.paymill-card-number-amex
{
    background-image: url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_32x20_amex.png') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.paymill-card-number-jcb
{
    background-image: url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_32x20_jcb.png') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
        
}

.paymill-card-number-maestro
{
    background-image: url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_32x20_maestro.png') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.paymill-card-number-carte-bleue
{
    background-image: url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_32x20_unionpay.png') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.paymill-card-number-diners
{
    background-image: url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_32x20_dinersclub.png') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.paymill-card-number-discover
{
    background-image: url('https://www.starling.global/au/skin/frontend/base/default/images/paymill/icon_32x20_discover.png') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.multishipping-authorization .authentication.message {
    margin: 2em 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: 0px 1px 3px 0px #ccc;
    padding: 1em 2em 1em 2em;
}

/* ccType */
#stripe-payments-accepted-cards img {
    -moz-transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    display: inline-block;
}
#stripe-payments-accepted-cards.stripe-payments-detected img {
    opacity: 0.3;
}
#stripe-payments-accepted-cards.stripe-payments-detected img.active {
    opacity: 1;
}

input#stripe_payments_cc_number {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    background-position-x: 80%;
    -moz-transition: background-position-x 0.25s ease-in-out;
    -webkit-transition: background-position-x 0.25s ease-in-out;
    transition: background-position-x 0.25s ease-in-out;
}

input#stripe_payments_cc_number.cctype-detected {
    background-position-x: 99%;
}

.adminhtml-sales-order-create-index #payment_form_stripe_payments input[type="text"]
{
    width: 200px;
}

.dialog_content {
    background-color: #fff;
}
.img-preload {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
}

/* Customer Account */
.saved-cards label {
    display: inline;
}
.saved-cards {
    font-size: 1.15em;
}
.saved-cards li {
    margin: 4px 0;
}
#new-card .form-list select {
    width: auto;
}
#new-card .form-list label {
    float: none;
}
#stripe_payments_cc_cid {
    width: 40px;
}

/* Checkout */
#mandates.saved-cards label {
    font-weight: normal;
    margin-left: 4px;
}
ul#payment_form_stripe_payments {
    padding-left: 20px;
    padding-top: 15px;
}
.adminhtml-sales-order-create-index ul#payment_form_stripe_payments {
    padding: 5px 0 10px;
}
ul#payment_form_stripe_payments li {
    display: block;
}
ul#payment_form_stripe_payments li.stripe-new {
    display: none;
}
ul#payment_form_stripe_payments.stripe-new li.stripe-new {
    display: block;
    margin-left: 20px;
}
/* Idev OSC 3-column fixes */
.onestepcheckout-column-middle ul#payment_form_stripe_payments.stripe-new li.stripe-new {
    margin-left: 0;
}
.onestepcheckout-column-middle ul#payment_form_stripe_payments {
    margin: 10px 0;
    padding-left: 0px;
}
/* ~Idev OSC */
.sp-methods .saved-cards li label {
    float: none;
}
.saved-cards {
    margin-top: 14px;
}
.saved-cards input.select {
    position: relative;
    top: -1px;
}
.saved-cards span {
    display: inline-block;
}
.saved-cards span.type {
    font-weight: bold;
    margin-left: 3px;
}
.saved-cards span.exp {
    float: right;
}
.saved-cards label {
    display: inline;
}
.saved-cards span.stripe-payments-fade {
    color: #aaa;
    font-weight: normal;
}
.form-list .saved-cards label {
    float: none;
}
#stripe-payments-card-errors {
    border: 0;
    border-radius: 3px;
    height: 0;
    margin: 0 auto;
    transition: height 1s, margin 1s, border 1s, padding 1s;
    display: inline-block;
    padding: 0 1em;
}
#stripe-payments-card-errors.populated {
    border: 1px hsla(0,100%,50%,0.5) dashed;
    padding: 5px 1em;
    color: #D20;
    height: auto;
    margin: 0.5em auto 1em;
}

/* Card Icons */
#payment_form_stripe_payments span.type.Visa, #payment_form_stripe_payments span.type.visa { background: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/stripe_payments/img/visa.png) no-repeat; }
#payment_form_stripe_payments span.type.American.Express, #payment_form_stripe_payments span.type.amex { background: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/stripe_payments/img/amex.png) no-repeat; }
#payment_form_stripe_payments span.type.MasterCard, #payment_form_stripe_payments span.type.mastercard { background: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/stripe_payments/img/mastercard.png) no-repeat; }
#payment_form_stripe_payments span.type.Discover, #payment_form_stripe_payments span.type.discover { background: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/stripe_payments/img/discover.png) no-repeat; }
#payment_form_stripe_payments span.type.Diners, #payment_form_stripe_payments span.type.diners { background: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/stripe_payments/img/diners.png) no-repeat; }
#payment_form_stripe_payments span.type.JCB, #payment_form_stripe_payments span.type.jcb { background: url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/stripe_payments/img/jcb.png) no-repeat; }

#payment_form_stripe_payments span.type.Visa, #payment_form_stripe_payments span.type.visa,
#payment_form_stripe_payments span.type.American.Express, #payment_form_stripe_payments span.type.amex,
#payment_form_stripe_payments span.type.MasterCard, #payment_form_stripe_payments span.type.mastercard,
#payment_form_stripe_payments span.type.Discover, #payment_form_stripe_payments span.type.discover,
#payment_form_stripe_payments span.type.Diners, #payment_form_stripe_payments span.type.diners,
#payment_form_stripe_payments span.type.JCB, #payment_form_stripe_payments span.type.jcb {
    padding-left: 30px;
    background-position-y: -3px;
    background-size: 24px;
}

/* Apple Pay */
#co-payment-form #stripe-apple-pay-section #apple-pay-button,
ul#payment_form_stripe_payments li#apple-pay-section #apple-pay-button {
    background-color: black;
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-size: 100% 24px;
    background-origin: content-box;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 44px;
    padding: 10px 0;
    border-radius: 10px;
}
#co-payment-form #stripe-apple-pay-section,
ul#payment_form_stripe_payments li#apple-pay-section {
    display: none;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
#co-payment-form.payment-request-api-supported #stripe-apple-pay-section,
ul#payment_form_stripe_payments.payment-request-api-supported li#apple-pay-section {
    display: block;
}
#co-payment-form.payment-request-api-supported #stripe-apple-pay-section #apple-pay-button,
ul#payment_form_stripe_payments.payment-request-api-supported li#apple-pay-section #apple-pay-button {
    display: none;
}
#co-payment-form #stripe-apple-pay-section label,
ul#payment_form_stripe_payments li#apple-pay-section label {
    font-weight: bold;
    margin: 10px 0;
    float: none;
    display: block;
}
#stripe-apple-pay-result {
    margin-bottom: 20px;
}
#co-payment-form.apple-pay-success .sp-methods {
    display: none;
}

/* Authorized Apple Pay Result */
#co-payment-form #stripe-apple-pay-result label,
.form-list #apple-pay-result label {
    display: inline-block;
    float: none;
}
#co-payment-form #stripe-apple-pay-result,
ul#payment_form_stripe_payments li#apple-pay-result {
    text-align: center;
    font-size: 1.1em;
    display: none;
}
#stripe-apple-pay-result > div,
#apple-pay-result > div {
    display: block;
    margin: 5px 0;
}
#co-payment-form.apple-pay-success #stripe-apple-pay-result,
ul#payment_form_stripe_payments.apple-pay-success li#apple-pay-result {
    display: block;
}
#co-payment-form.payment-request-api-supported.apple-pay-success #stripe-apple-pay-section,
ul#payment_form_stripe_payments.payment-request-api-supported.apple-pay-success li#apple-pay-section {
    display: none;
}
ul#payment_form_stripe_payments.payment-request-api-supported.apple-pay-success.stripe-new li.stripe-new {
    display: none;
}
ul#payment_form_stripe_payments.payment-request-api-supported.apple-pay-success.stripe-new li#stripe_payments_cc_save_div.stripe-new {
    display: block;
}
ul#payment_form_stripe_payments.apple-pay-success ul#saved-cards {
    display: none;
}

/* Stripe Elements */
#card-details-label {
    display: block;
}
#stripe-payments-card-number {
    width: 235px;
    display: inline-block;
}
#stripe-payments-card-expiry {
    width: 93px;
    display: inline-block;
}
#stripe-payments-card-cvc {
    width: 68px;
    display: inline-block;
}
.stripe-elements-field {
    display: inline-block;
    margin: 5px 0 0 0;
    padding: 4px 14px;
    border-style: none;
    background-color: #fefefe;
    box-shadow: 0 6px 9px rgba(50, 50, 93, 0.06), 0 2px 5px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #fefefe;
    border-radius: 4px;
}
li.stripe-payments-elements.no-wrap {
    white-space: nowrap;
}
.pci-dss-info-block {
    margin: 10px 15px -16px 25px;
    width: 240px;
}
#pci-svg {
    position: relative;
    left: -25px;
    top: 5px;
    opacity: 0.5;
    fill: green;
}
.pci-dss-info-text {
    display: inline-block;
    position: relative;
    top: -20px;
}

/* ACH */

ul.ach-bank-account-details {
    margin: 1em auto;
}
ul.ach-bank-account-details label {
    min-width: 140px;
}
ul.ach-bank-account-details .account-number,
ul.ach-bank-account-details .account-holder-name {
    width: 210px;
}
ul.ach-bank-account-details .account-holder-type {
    width: 215px;
}
#ach-bank-account-details .ach-token .validation-advice {
    display: none;
}
#ach-bank-account-details.showVerificationError .ach-token .validation-advice {
    display: block;
}
#stripe-ach-account-verified {
    color: #47a722;
    font-style: italic;
    display: none;
}
#stripe-ach-account-verified img {
    display: inline;
    height: 1em;
    padding: 2px;
}


/* SK24 */

.stripe-elements-field {
    display: block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#stripe-payments-card-expiry,
#stripe-payments-card-cvc {
    display: block;
}
/*!
 *  PaymentFont 1.2.5 by @AMPoellmann - http://paymentfont.io
 *  License - http://paymentfont.io/#license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:PaymentFont;src:url(https://www.starling.global/au/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.eot);src:url(https://www.starling.global/au/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.eot?#iefix) format('embedded-opentype'),url(https://www.starling.global/au/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.woff) format('woff2'),url(https://www.starling.global/au/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.woff) format('woff'),url(https://www.starling.global/au/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.ttf) format('truetype'),url(https://www.starling.global/au/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.svg#paymentfont-webfont) format('svg');font-weight:400;font-style:normal}.pf{display:inline-block;font:normal normal normal 14px/1 PaymentFont;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pf-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.pf-2x{font-size:2em}.pf-3x{font-size:3em}.pf-4x{font-size:4em}.pf-5x{font-size:5em}.pf-amazon:before{content:"\f000"}.pf-american-express:before{content:"\f001"}.pf-american-express-alt:before{content:"\f002"}.pf-atm:before{content:"\f003"}.pf-bankomat:before{content:"\f004"}.pf-bank-transfer:before{content:"\f005"}.pf-bitcoin:before{content:"\f006"}.pf-bitcoin-sign:before{content:"\f007"}.pf-braintree:before{content:"\f008"}.pf-btc:before{content:"\f009"}.pf-card:before{content:"\f00a"}.pf-carta-si:before{content:"\f00b"}.pf-cash:before{content:"\f00c"}.pf-cash-on-delivery:before{content:"\f00d"}.pf-cb:before{content:"\f00e"}.pf-cirrus:before{content:"\f00f"}.pf-cirrus-alt:before{content:"\f010"}.pf-clickandbuy:before{content:"\f011"}.pf-credit-card:before{content:"\f012"}.pf-diners:before{content:"\f013"}.pf-discover:before{content:"\f014"}.pf-ec:before{content:"\f015"}.pf-eps:before{content:"\f016"}.pf-eur:before{content:"\f017"}.pf-facture:before{content:"\f018"}.pf-fattura:before{content:"\f019"}.pf-flattr:before{content:"\f01a"}.pf-giropay:before{content:"\f01b"}.pf-google-wallet:before{content:"\f01c"}.pf-google-wallet-alt:before{content:"\f01d"}.pf-gpb:before{content:"\f01e"}.pf-gratipay:before{content:"\f01f"}.pf-ideal:before{content:"\f020"}.pf-ils:before{content:"\f021"}.pf-inr:before{content:"\f022"}.pf-invoice:before{content:"\f023"}.pf-invoice-sign:before{content:"\f024"}.pf-invoice-sign-alt:before{content:"\f025"}.pf-invoice-sign-alt-o:before{content:"\f026"}.pf-invoice-sign-o:before{content:"\f027"}.pf-jcb:before{content:"\f028"}.pf-jpy:before{content:"\f029"}.pf-krw:before{content:"\f02a"}.pf-maestro:before{content:"\f02b"}.pf-maestro-alt:before{content:"\f02c"}.pf-mastercard:before{content:"\f02d"}.pf-mastercard-alt:before{content:"\f02e"}.pf-mastercard-securecode:before{content:"\f02f"}.pf-ogone:before{content:"\f030"}.pf-paybox:before{content:"\f031"}.pf-paylife:before{content:"\f032"}.pf-paypal:before{content:"\f033"}.pf-paypal-alt:before{content:"\f034"}.pf-paysafecard:before{content:"\f035"}.pf-postepay:before{content:"\f036"}.pf-quick:before{content:"\f037"}.pf-rechnung:before{content:"\f038"}.pf-ripple:before{content:"\f039"}.pf-rub:before{content:"\f03a"}.pf-skrill:before{content:"\f03b"}.pf-sofort:before{content:"\f03c"}.pf-square:before{content:"\f03d"}.pf-stripe:before{content:"\f03e"}.pf-truste:before{content:"\f03f"}.pf-try:before{content:"\f040"}.pf-unionpay:before{content:"\f041"}.pf-usd:before{content:"\f042"}.pf-verified-by-visa:before{content:"\f043"}.pf-verisign:before{content:"\f044"}.pf-visa:before{content:"\f045"}.pf-visa-electron:before{content:"\f046"}.pf-western-union:before{content:"\f047"}.pf-western-union-alt:before{content:"\f048"}.pf-wirecard:before{content:"\f049"}.pf-sepa:before{content:"\f04a"}.pf-sepa-alt:before{content:"\f04b"}.pf-apple-pay:before{content:"\f04c"}.pf-interac:before{content:"\f04d"}.pf-paymill:before{content:"\f04e"}.pf-dankort:before{content:"\f04f"}.pf-bancontact-mister-cash:before{content:"\f050"}.pf-moip:before{content:"\f051"}.pf-pagseguro:before{content:"\f052"}.pf-cash-on-pickup:before{content:"\f053"}.pf-sage:before{content:"\f054"}.pf-elo:before{content:"\f055"}.pf-elo-alt:before{content:"\f056"}.pf-payu:before{content:"\f057"}.pf-mercado-pago:before{content:"\f058"}.pf-mercado-pago-sign:before{content:"\f059"}.pf-payshop:before{content:"\f05a"}.pf-multibanco:before{content:"\f05b"}.pf-gratipay-sign:before{content:"\f05c"}.pf-six:before{content:"\f05d"}.pf-cashcloud:before{content:"\f05e"}.pf-interac-alt:before{content:"\f05f"}.pf-klarna:before{content:"\f060"}.pf-bitpay:before{content:"\f061"}.pf-venmo:before{content:"\f062"}.pf-visa-debit:before{content:"\f063"}.pf-alipay:before{content:"\f064"}.pf-diners-alt:before{content:"\f065"}.pf-hipercard:before{content:"\f066"}.pf-skrill-alt:before{content:"\f067"}.pf-shopify:before{content:"\f068"}.pf-direct-debit:before{content:"\f069"}.pf-sodexo:before{content:"\f06a"}.pf-bpay:before{content:"\f06b"}.pf-contactless:before{content:"\f06c"}.pf-contactless-alt:before{content:"\f06d"}.pf-eth:before{content:"\f06e"}.pf-ltc:before{content:"\f06f"}.pf-visa-pay:before{content:"\f070"}.pf-wechat-pay:before{content:"\f071"}.pf-amazon-pay:before{content:"\f072"}.pf-amazon-pay-alt:before{content:"\f073"}
.product-view #payment-request-button {
    margin-bottom: 10px;
}

.cart #payment-request-button {
    width: 184px;
    display: inline-block;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

#payment-request-button.disabled,
#payment-request-button.disabled * {
    pointer-events: none !important;
}

#payment-request-button.disabled {
    opacity: 0.5;
    filter: grayscale(50%);
}

#payment-request-button.disabled::after {
    position: relative;
    height: 1em;
    width: 1em;
    display: block;
    left: 50%;
    margin-left: -.5em;
    margin-top: -1.2em;
    content: '';
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background: url(https://www.starling.global/au/skin/frontend/base/default/stripe_payments/img/loader.svg) center center;
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0, 0, 0, .75)
}

#mapplic { overflow:hidden; width:100%; max-width:1140px; margin: 0 auto; position:relative; z-index:0; padding-top:15px; }
/*.touch*/ #mapplic {display:none}
#flags { padding: 0; position:relative;z-index:10;background:#fff;  background:url(https://www.starling.global/au/skin/frontend/default/sk24-mobile/images/map_square.png) no-repeat top center ; background-size:100% auto; margin-top:10px}
#flags ul { list-style:none; width:50%; float:left; margin:0; padding:0}
#flags ul li{ list-style:none; }
#flags ul li a { display:block; padding:2px 0; color: #222; font-size: 13px; font-weight: normal; }
#flags ul li a .smaller { color: #999; font-size: 9px; }
#flags ul li a:hover { color: #007dcc; }
#flags ul li a:hover .smaller { color: #007dcc; }
#flags ul li img { height:24px; width:auto; margin-right:3px; vertical-align:middle}
#flags .inner { position: relative;  left:2%; width:96%; background:rgba(255,255,255,0.9); padding:10px 2%; -webkit-border-radius: 4px;border-radius: 4px; -webkit-box-shadow: 0 1px 2px 1px rgba(0,0,0,0.15);
    box-shadow: 0 1px 2px 1px rgba(0,0,0,0.15);}
#footer { text-align:center;  font-size:13px; background:#fff; padding-bottom:20px}
#footer ul { list-style:none; margin:0; }
#footer ul li{ list-style:none; display:inline; margin:0; padding:0 }
@media all and (min-width: 768px) {
    #flags ul li a { font-size: 16px; }
    #flags ul li a .smaller { font-size: 12px; }
    #mapplic  { display:block}
    #flags { margin-top:0; padding:20px 10px 0 10px; background:#fff}
    #flags ul {  width:25%; }
    #flags ul li img { height:32px;  margin-right:7px; }
    #flags .inner { position: relative; top:0; left:0;-webkit-box-shadow: none;box-shadow:none; }
    #map_image { display:none}
}


