
/*selled label */

.label-selled{
    position: absolute;
    padding: 4px 10px;
    color: #fff;
    font-size: 12px;
    opacity: 0.9;
    background-color: #ff4842;
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-10deg);
    width: calc(100% - 25px);
}
@media(min-width:768px) {
    .label-selled {
        font-size: 14px;
        padding: 10px 30px;
        width: calc(100% - 45px);
    }
}
@media(min-width:1024px) {
    .label-selled {
        font-size: 16px;
        padding: 15px 35px;
    }
}

/* text label */

.label-action {
    position: absolute;
    left:0;
    top: 0;
    text-transform: none;
    white-space: nowrap;
    text-align: left;
    padding:0 8px;
    font-weight: 400;
    background-color: #12144b;
    width: auto;
    font-size:12px;
    line-height: 22px;
}
.label-action.yellow {
    background-color: #ffd330;
    color: #1a1a1a;
}
.label-action.blue{
    background-color:#12144b;
    color:#fff;
}
.label-action.blue-dark{
    background-color:#12144b;
    color:#fff;
}
.label-action.countdown{
    padding:0 5px;
    color:#fff;
}
.label-action.inline {
    left:43px;
}
.label-action.center{
    left: 50%;
    transform: translateX(-50%);
}
.label-action.uppercase{
    text-transform:uppercase;
}
.label-action.bottom{
    top:auto;
    bottom:0;
}
.label-action.full-width{
    width:100%;
}
.label-action.center-text{
    text-align: center;
}
.label-action.tv-link a{
    color: #1a1a1a;
    font-weight:600;
    text-decoration:none;
}
.label-action.left-position {
    left:0 !important;
}
@media(min-width:768px) {
    .label-action.yellow,
    .label-action.blue,
    .label-action.blue-dark{
        font-size: 14px;
        height: 30px;
        line-height: 30px;
        font-weight: 400;
    }
    .label-action.inline{
        left: 63px;
        line-height:24px;
    }
    .label-action.left{
        left: 0;
        line-height:24px;
    }
    .label-action.show-time{
        padding:0 10px;
    }
}
@media(min-width:1220px) {
    .label-action {
        font-size:16px;
        line-height:28px;
    }
    .label-action.yellow,
    .label-action.blue,
    .label-action.blue-dark{
        height: 35px;
        line-height: 35px;
        padding:0 12px;
        font-size:16px;
    }
    .label-action.inline{
        line-height:28px;
    }
    .label-action.left{
        line-height:28px;
    }
    .label-action.countdown{
        padding:0 8px;
    }
    .label-action.show-time{
        padding:0 16px;
    }
}

/* discount label */

.label-reduced {
    background-color: #ff4842;
    width: 42px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    color:#fff;
    font-weight:600;
    position: absolute;
    z-index: 100;
    text-align: center;
    top: 0;
    border-radius: 0;
    right: auto;
    left: 0;
}

@media(min-width:768px) {
    .label-reduced {
        width: 62px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
}
@media(min-width:1220px) {
    .label-reduced {
        font-size: 18px;
        height: 35px;
        line-height: 35px;
    }
}

/* RATING */

.label-rating {
    background: url(../../../img/stars.svg) no-repeat left -10px;
    width:66px;
    padding: 0;
    list-style: none;
    position: relative;
    margin:5px auto 0;
    height: 10px;
    background-size: 65px 66px;
}
.label-rating .currentRate {
    background: url(../../../img/stars.svg) left 34px;
    height: 10px;
    background-size: 65px 71px;
}
@media(min-width:768px) {
    .label-rating {
        height: 12px;
        background-size: 65px 68px;
    }
    .label-rating .currentRate {
        height: 12px;
        background-size: 65px 68px;
    }
}
@media(min-width:1220px) {
    .label-rating {
        height:16px;
        background-size: 90px 88px;
        width: 89px;
    }
    .label-rating .currentRate {
        height: 16px;
        background-size: 89px 68px;
    }
}

/* box jumbotron label */

.jumbotron-label {
    position: absolute;
    top: -18px;
    left:0;
    text-align: center;
    background-color: #fbbd1e;
    color: #fff;
    padding: 6px 25px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    z-index: 10;
    white-space:nowrap;
}
.jumbotron-label.center {
    left: 50%;
    transform: translate(-50%);
}
.jumbotron-label.bold-black{
    font-weight:600;
    color:#000;
}
.jumbotron-label.color-red {
    background-color: #ff4842;
}
.jumbotron-label.color-blue{
    background-color: #004289;
}
.jumbotron-label.color-purple {
    background-color:#83518b;
}

/* circle info box */

.info-circle{
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -ms-flex-align:center;
    width: 45px;
    height: 45px;
    font-size: 10px;
    line-height: 10px;
    padding:0 5px;
    position:absolute;
    float: left;
    border-radius: 50%;
    text-align: center;
    color:#fff;
    text-decoration: none;
}
.info-circle:hover,
.info-circle:focus{
    text-decoration:none;
}
.info-circle.big{
    width: 66px;
    height: 66px;
}
.info-circle.xl{
    width: 80px;
    height: 80px;
    padding:0 15px;
}
.info-circle.right{
    float:right;
    right:0;
}
.info-circle.left{
    float:left;
    left:0;
}
.info-circle.yellow {
    background-color:#fbbc1d;
    color: #fff;
}
.info-circle.red{
    background-color:#EC3C51;
    color: #fff;
}
.info-circle.yellow.text-black{
    color:#000;
}
.info-circle .time-circle {
    position: relative;
    top: 17px;
}
.info-circle .time-circle small {
    font-size: 10px;
}
.info-circle .time-circle .time-left {
    font-size: 20px;
    opacity: .85;
    line-height: 20px;
}

@media(min-width:768px) {
    .info-circle {
        width: 55px;
        height: 55px;
        font-size: 14px;
        line-height: 15px;
    }
    .info-circle .time-circle {
        top: 13px;
    }
}
