/* 
 *  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/br/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;
}
body {
    font-family: Helvetica, sans-serif;
    font-size: 15px;
    line-height: 23px;
    color: #4c4c4c;
    font-weight: 300;
    background:#fff url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/pattern.png');
    position: relative;
}
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;
}
.container {
    overflow: hidden;
}
@media (min-width: 768px) {
    .navbar-nav {
        float: right;
    }
    .navbar-nav > li > a {
        padding-left: 13px;
        padding-right: 13px;
    }
    .container {
        overflow: initial;
    }
}
.glyphicon {
    margin-right: 5px;
}
.form-group.multiline {
    margin-bottom: 5px;
}
.form-group.multiline .form-control{
    margin-bottom: 5px;
    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/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/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;
    background: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_de.jpg') no-repeat bottom center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
#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;}
#homepage_teaser h1 { color: white; font-weight: normal; line-height: 45px; font-size: 30px; top: 250px; position: relative; }
#homepage_teaser a { position: relative; top: 300px; text-decoration: none; font-weight: 700;}
html[lang="en"] #home-teaser,
html[lang="de"] #home-teaser.home-teaser-uk {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_uk.jpg');}
html[lang="da"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_dk.jpg');}
html[lang="it"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_it.jpg');}
html[lang="es"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_es.jpg');}
html[lang="fr"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_fr.jpg');}
html[lang="nl"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_nl.jpg');}
html[lang="sv"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_se.jpg');}
html[lang="pt"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_pt.jpg');}
html[lang="nb"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_no.jpg');}
html[lang="fi"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_fi.jpg');}
html[lang="pl"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_pl.jpg');}
html[lang="ro"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_ro.jpg');}
html[lang="cs"] #home-teaser {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/teaser_cz.jpg');}

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;
    }
}
.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/br/skin/frontend/default/sk24-mobile-new-products/images/star_bg.png') bottom center;
    color: #fff;
    -webkit-border-radius: 20px;
    border-radius: 10px;
}
.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: 60px; line-height: 60px; }
.product_box .pre-title {font-size: 16px;}
.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: 50px;
    font-weight: 300;
    height: 70px;
    line-height: 70px;
    text-align: center;
    overflow: hidden;
}
html[lang="sv"] .product_box .price,
html[lang="cs"] .product_box .price,
html[lang="da"] .product_box .price,
html[lang="fr"] .product_box .price,
html[lang="ro"] .product_box .price {
    font-size: 32px;
}
.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;}

@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 h3,
    .product_box .pre-title  {
        height: 30px;
        line-height: 30px;
    }
    .product_box p.description {
        height: 45px;
    }
    .product_box .price {
        font-size: 40px;
    }
    html[lang="fr"] .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;
    }
}
@media (min-width: 992px) {
    .product_box .price {
        font-size: 50px;
    }
    html[lang="sv"] .product_box .price,
    html[lang="da"] .product_box .price,
    html[lang="fr"] .product_box .price {
        font-size: 50px;
    }
    html[lang="cs"] .product_box .price,
    html[lang="ro"] .product_box .price {
        font-size: 36px;
    }
    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;}

}
@media (min-width: 1200px) {
    html[lang="cs"] .product_box .price {
        font-size: 42px;
    }
}
.product_box.product_sprite{
    background-image: url(https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/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 {
    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;
    }
}
/* 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/br/skin/frontend/default/sk24-mobile-new-products/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 {
    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/br/skin/frontend/default/sk24-mobile-new-products/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 */
/* Rating Old */
#advantages .sk-rating-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 .sk-rating-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 .sk-rating-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 .sk-rating-reviews  {width: 314px; height: 354px;}
#advantages .sk-rating-reviews p,
.sk-rating-review p  {font-size: 13px; text-align: left !important; font-weight: 400; margin-top:0; border-bottom: 1px solid #b6875a; margin-bottom: 0}
.sk-rating-review p  {border-bottom: 0 none;}
.sk-rating-review  {padding: 10px;}
#advantages .rating-reviews img,
.sk-rating-review img  {margin-top: 6px;}
#advantages .sk-rating-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/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_8.png');                background-size: 110px; }
.usp.money_back.uk {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_uk.png');               background-size: 110px; }
.usp.money_back.dk {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/100-pct-tilfredshedsgaranti.png'); background-size: 110px; }
.usp.money_back.es {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_es.png');               background-size: 110px; }
.usp.money_back.fr {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_fr.png');               background-size: 110px; }
.usp.money_back.it {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_it.png');               background-size: 110px; }
.usp.money_back.nl {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_nl.png');               background-size: 110px; }
.usp.money_back.se {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_se.png');               background-size: 110px; }
.usp.money_back.pt {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_pt.png');               background-size: 110px; }
.usp.money_back.no {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_no.png');               background-size: 110px; }
.usp.money_back.fi {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_fi.png');               background-size: 110px; }
.usp.money_back.pl {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_pl.png');               background-size: 110px; }
.usp.money_back.ro {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_ro.png');               background-size: 110px; }
.usp.money_back.cz {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/money_back_cz.png');               background-size: 110px; }
.usp.quality       {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/quality_8.png');                   background-size: 110px; background-position: right bottom; }
.usp.visible       {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/visible_8.png');                                           background-position: right bottom; }
.usp.registry      {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/registry.png');                                            background-position: right top; }
.usp.delivery      {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/delivery.png');                                            background-position: right top; }

@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; }
.sk-rating-reviews a  {color:#B6875B; }


.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 .flagsprite {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/footer-sprite.png'); width:35px; height:26px; margin:7px 2px 2px; float: left;}
.footer .paymentsprite {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/footer-sprite.png'); width:44px; height:30px; margin:7px 0 0; display: inline-block;}
.footer .shippingsprite {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/footer-sprite.png'); width:44px; height:30px; margin:7px 0 0; display: inline-block;}
.footer .socialsprite {background-image: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/footer-sprite.png'); width:32px; height:32px; margin:7px 4px 2px 0px; float: left;}
.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/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/images/i_msg-error.gif); color:#df280a; }
.success-msg { border-color:#446423; background-color:#eff5ea; background-image:url(https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/i_msg-success.gif); color:#3d6611; }
.note-msg,
.notice-msg { border-color:#fcd344; background-color:#fafaec; background-image:url(https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/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 .price-label { white-space:nowrap; }
.old-price .price { font-weight:bold; text-decoration:line-through; }

/* Special price */
.special-price .price-label { font-weight:bold; white-space:nowrap; }
.special-price .price { font-weight:bold; }

/* 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; color: #000; }

/* 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 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; }

/* 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-headline,
.product-view .product-headline2 {
    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;
}
.product-view .product-headline {
    font-size:24px;
    height:24px;
    line-height:24px;
}
.product-view .product-headline2 {
    font-style: italic;
}
.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;
        position: sticky;
        position: -webkit-sticky;
        top: 0;
    }
    .product-view .product-view-right {
        padding-left: 30px;
        border-left: 1px solid #f2f2f2;
    }
}
.product-view .short-description {
    margin-top: 20px;
}
.product-view .short-description p {
    text-align: justify;
}

.product-view .short-description ul {
    list-style: initial;
}
.product-view .short-description ul li p {
    margin: 0;
}

/* Product Images */
.product-view .product-img-box {
    position: relative;
    margin-bottom: 16px;
}
.product-view .main-image {
    position:relative;
    overflow:hidden;
    z-index:9;
}
.product-view .main-image img {
    margin: 0 auto;
}

/* 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: block;
    line-height: 14px;
}
.product-options .options-list .option-description {
    display: block;
    width: 120px;
}
@media (min-width: 768px) {
    .product-options .options-list .option-title {
        display: inline;
        line-height: inherit;
    }
    .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: 0 auto;
}
@media (min-width: 768px) {
    .descriptions_wrapper img {
        margin: 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 {
        position: absolute;
        right: -20px;
        top: 0;
    }
}
.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;
}
.popover-content > table {margin-bottom: 0;}
.popover-content > table > tbody > tr:nth-child(1) td {border-top:0;}
/* ======================================================================================= */


/* 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/br/skin/frontend/default/sk24-mobile-new-products/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 h2.product-name,
.order-review h2.product-name {
    text-align: left;
    color: #3e91d4;
    font-size: 24px;
    margin-bottom: 20px;
}
.cart .price,
.order-review .price {
    font-weight: 300;
}
.cart .remove-link {
    display: block;
    text-decoration: none;
    color: #4b4b4b; font-size: 13px;
    white-space: nowrap;
    float: right;
}
@media (min-width: 768px) {
    .cart .remove-link {
        float: none;
        padding-top: 2px;
    }
}

.cart .remove-link .glyphicon {
    margin-right: 1px;
}
@media (min-width: 768px) {
    .cart .remove-link .glyphicon {
        margin-right: 5px;
    }
}
.cart .checkout-types {
    float:right;
    text-align:right;
    margin-top: 20px;
}
.cart .checkout-types li {
    padding-bottom: 10px;
}
.cart .discount {
    margin-top: 10px;
}
.cart .discount h2 {
    text-align: left;
    float: left;
}
.cart .discount button {
    margin-top: 10px;
    float: right;
}
#discount-coupon-form {
    margin-top: 75px;
}
@media (min-width: 768px) {
    #discount-coupon-form {
        margin-top: 0;
    }
    .cart .discount button {
        margin-top: 0;
        float: none;
    }
}
.cart .discount a {
    cursor: pointer;
}
.cart .discount a .arrow {
    background: url("https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/arrow-down.png");
    height: 7px;
    width: 12px;
    float: left;
    display: inline-block;
    margin: 17px 0 0 10px;
}
.cart .discount a.show .arrow {
    background: url("https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/images/arrow-up.png");
}
#discount-content {
    display: none;
    clear: both;
}
.cart .discount a.show + #discount-content {
    display: block;
}
.cart .table .item-msg {
    font-size:10px;
}
.cart .totals {
    margin-top: -1px;
}
.cart .grand-total,
.order-review .grand-total {
    background-color: #dadada;
}
.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;
}
tr.summary-total .summary-collapse {
    float:right;
    text-align:right;
    padding-left:20px;
    background:url(https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/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 {
    color: black;
    font-size: 11px;
    line-height: 15px;
    font-weight: bold;
}
.item-options .value {
    font-size: 11px;
    line-height: 15px;
    margin-bottom: 5px;
}
@media (min-width: 768px) {
    .item-options .value {
        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;
}
/* ======================================================================================= */


/* Checkout ============================================================================== */
/********** < Common Checkout Styles */
/* Shipping and Payment methods */
.opc .sp-methods label {
    color: #4c4c4c;
    font: 300 15px/36px Helvetica,sans-serif;
    height: 36px;
}
.opc .sp-methods .solo 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;
}
.checkout-agreements label {
    display: inline;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

/********** Common Checkout Styles > */

/* One Page Checkout */

.opc {
    border-bottom:1px solid #ddd;
    position:relative;
    padding: 0;
}
.opc label {
    color: #999;
    font-size: 17px;
    font-weight: 400;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
}
.opc label.required,
.opc .radio label,
.opc .checkbox label {
    color: #3b92d6;
}
.opc label.required:after {
    content: '*';
    font-style: italic;
}
.opc li.section {
    border:1px solid #ddd;
    border-bottom:0;
}
.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; }

/* ======================================================================================= */

/* 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 { 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/br/skin/frontend/default/sk24-mobile-new-products/images/line.png') repeat-x; height: 5px; margin: 20px 0;}
/* ERROR */
#error_teaser {background: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/images/dl-macosx.png') top center no-repeat;
}
.windows a {
    background: url('https://www.starling.global/br/skin/frontend/default/sk24-mobile-new-products/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%;
}

#dedication_templates tr,
#dedication_templates .breadcrumb  ul {
    display: flex;
}
#dedication_templates tr,
#dedication_templates .breadcrumb  ul {
    flex-direction: column;
}
#dedication_templates tr td:nth-child(1),
#dedication_templates .breadcrumb  ul li:nth-child(1) {
    order: 2;
}
#dedication_templates tr td:nth-child(2),
#dedication_templates .breadcrumb  ul li:nth-child(2) {
    order: 1;
}
#dedication_templates tr td:nth-child(3),
#dedication_templates .breadcrumb  ul li:nth-child(3) {
    order: 3;
}
@media (min-width: 768px) {
    #dedication_templates tr {
        display: flex;
        flex-direction: row;
    }
    #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/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/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: 75%;
    }
}
.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/br/skin/frontend/default/sk24-mobile-new-products/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/br/skin/frontend/default/sk24-mobile-new-products/images/blog.png') no-repeat center right;
        padding-right: 72px;
    }
}
.is-blog .post-entry h2 {text-align: left; margin: 10px 0; }
.is-blog .post-view p {margin: 0;}

/* 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}
#template table { margin-bottom: 20px; margin-top: 10px;}
#template table tr td:first-child {width: 160px; font-weight: bold;}
#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/br/skin/frontend/default/sk24-mobile-new-products/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;
}

.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;
}

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;
}

.product-view .prod-name {
    font-family:TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    font-weight:400;
    margin: 5px 0 5px;
    text-align:center;
    color: #000;
}
.product-view .prod-name {
    font-size:45px;
    line-height:45px;
}

.checkbox-image,
.radio-image {
    margin-bottom: 10px;
}
.checkbox-image:after,
.radio-image:after {
    content: "";
    display: table;
    clear: both;
}
.checkbox-image input,
.radio-image input {
    visibility: hidden;
    position: absolute;
    z-index: -1;
}
.checkbox-image .option-thumbnail-image-wrapper,
.radio-image .option-thumbnail-image-wrapper {
    border-collapse: separate;
    border-spacing: 0px !important;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    width: 106px;
    height: 106px;
    border: 3px solid #3b92d6;
    float: left;
    margin-right: 10px;
}
.checkbox-image.dedication .option-thumbnail-image-wrapper,
.checkbox-image.frame .option-thumbnail-image-wrapper,
.checkbox-image.frame-black-a4 .option-thumbnail-image-wrapper,
.checkbox-image.swarovski .option-thumbnail-image-wrapper,
.radio-image.greetingcard_without_text .option-thumbnail-image-wrapper,
.radio-image.greetingcard_with_text .option-thumbnail-image-wrapper,
.radio-image.swarovski .option-thumbnail-image-wrapper,
.radio-image.frame_black_slim .option-thumbnail-image-wrapper,
.radio-image.frame_black_wide .option-thumbnail-image-wrapper,
.radio-image.no_swarovski .option-thumbnail-image-wrapper,
.checkbox-image.additional_documents .option-thumbnail-image-wrapper {
    width: 139px;
    height: 106px;
}
.checkbox-image .option-thumbnail-image-wrapper.choice,
.radio-image .option-thumbnail-image-wrapper.choice {
    border: 3px solid transparent;
}

.checkbox-image .option-thumbnail-image-wrapper img {
    /*max-height: 100px;*/
}
.checkbox-image input:checked~div.option-thumbnail-wrapper div.option-thumbnail-image-wrapper.no-choice {
    border: 3px solid transparent;
}
.checkbox-image input:checked~div.option-thumbnail-wrapper div.option-thumbnail-image-wrapper.choice,
.radio-image input:checked~div.option-thumbnail-wrapper div.option-thumbnail-image-wrapper.choice {
    border: 3px solid #3b92d6;
}
.checkbox-image .option-thumbnail-choice-none {
    width: 100px;
    height: 100px;
    background: transparent;
}
.checkbox-image .option-thumbnail-choice-none:before,
.checkbox-image .option-thumbnail-choice-none:after {
    position: absolute;
    content: '';
    background: #ccc;
    display: block;
    width: 100%;
    height: 1px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.checkbox-image .option-thumbnail-choice-none:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.product-options .options-list li label,
.checkbox-image .option-title {
    color: #3b92d6;
    font-size: 17px;
    font-weight: 400;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
}
.radio-image .option-thumbnail-wrapper,
.checkbox-image .option-thumbnail-wrapper {
    float: left;
    padding-bottom: 15px;
    position: relative;
}
.radio-image .option-thumbnail-title,
.checkbox-image .option-thumbnail-title {
    line-height: 18px;
    padding: 0;
    position: absolute;
    text-align: center;
    display: block;
    width: 100%;
    font-size: 12px;
    bottom: -5px;
    white-space: nowrap;
    color: #000;
}
.option-sub-title {
    line-height: 18px;
    padding: 0;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
    font-style: italic;
}
.radio-list:after {
    content: "";
    display: table;
    clear: both;
}
.radio-list li {
    float: left;
}
.product-view .certificate {
    width: 400px !important;
    margin: 0 auto;
    position: relative;
}
.certificate-dedication-name,
.certificate-dedication-date,
.certificate-dedication-line-1,
.certificate-dedication-line-2,
.certificate-dedication-line-3,
.certificate-dedication-line-4,
.certificate-dedication-line-5,
.certificate-dedication-line-6 {
    position: absolute;
    z-index: 9;
    -webkit-transform: translateZ(0);
}
.certificate-dedication-name {
    left: 113px;
    top: 198px;
    width: 276px;
    height: 25px;
}
.certificate-dedication-date {
    left: 271px;
    top: 224px;
    width: 80px;
    height: 13px;
}
.certificate-dedication-line-1,
.certificate-dedication-line-2,
.certificate-dedication-line-3,
.certificate-dedication-line-4,
.certificate-dedication-line-5,
.certificate-dedication-line-6 {
    left: 160px;
    top: 244px;
    width: 200px;
    height: 9px;
}
.certificate-dedication-line-2 {
    top: 251px;
}
.certificate-dedication-line-3 {
    top: 258px;
}
.certificate-dedication-line-4 {
    top: 265px;
}
.certificate-dedication-line-5 {
    top: 272px;
}
.certificate-dedication-line-6 {
    top: 279px;
}
.form-control-feedback {
    right: 15px;
}
.form-control {
    font-family: TimesNewRoman, "Times New Roman", Times, Georgia, serif;
}
@media (max-width: 767px) {
    .form-control.has-helptext {
        width: calc(100% - 40px);
    }
}

.product-options select option:disabled {
    background-color: #eee;
}

.variant-new,
.variant-a,
.variant-b {
    display: none;
}
/**
 * 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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/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/br/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.eot);src:url(https://www.starling.global/br/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.eot?#iefix) format('embedded-opentype'),url(https://www.starling.global/br/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.woff) format('woff2'),url(https://www.starling.global/br/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.woff) format('woff'),url(https://www.starling.global/br/skin/frontend/base/default/stripe_payments/fonts/paymentfont-webfont.ttf) format('truetype'),url(https://www.starling.global/br/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/br/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)
}


.product-info-main .product-info-price {
    border-bottom: 0 none;
}
.product-info-main .product-add-form {
    border-top: 0 none;
}

.shipping-timer {
    border: 1px solid #2ecc71;
    padding: 10px;
    background: #f7fffa;
    border-radius: 3px;
    max-width: 100%;
    color: #5f7285;
    font-size: 13px;
    margin-bottom: 10px;
    display: none;
}
/*.countdown-hint {*/
/*display: none;*/
/*}*/

