/**
 * Breakpoints
 * - tablet: 767px
 * - mobile! 680px
 * Colors:
 * - important text: #ea4042
 * - frames grey border: #ccc
 * - grey text (cnil, cart-reminder, ...): #a8a8a8
 */

/**
 * General styles
 */
body {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    color: #484848;
    font: 12px/16px Verdana, Arial, Helvetica, sans-serif;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}
fieldset {
    margin: 0;
    padding: 0;
    border-style: none;
}
img {
    border: none !important;
}
p {
    margin: 0 0 8px;
}
form {
    text-align: left;
    color: #686868;
}
mark {
    background: none;
    color: #ea4042;
}
input[type="text"] {
    border: 1px solid #d6d6d6;
    width: 160px;
    height: 29px;
    padding: 3px 4px;
    font: 12px/23px Verdana, Arial, Helvetica, sans-serif;
    color: #444;
    outline: none;
    overflow: hidden;
}
select {
    height: 29px;
}
h2 {
    min-height: 30px;
    margin: 0;
    padding-bottom: 15px;
    font-weight: normal;
    color: #ea4042;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.sc-bold-text {
    font-weight: 700;
}
.sc-select-row {
    margin: 0 0 8px;
}
.sc-hidden {
    display: none !important;
}
.sc-invisible {
    visibility: hidden;
}
.sc-float-left {
    float: left;
}
.sc-float-right {
    float: right;
}
.sc-error {
    color: #ea4042;
}
.sc-input-error {
    border: 1px solid #ea4042 !important;
}
.sc-error-text {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 0 0 7px;
    width: 45%;
    color: #ea4042;
}
.btn {
    display: inline-block;
    margin: 0;
    padding: 10px;
    border: 1px solid #EA4042;
    border-radius: 5px;
    background: #EA4042;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background: #FFF;
    color: #EA4042;
}
.btn:focus {
    outline: 0;
}
.btn.btn-previous,
.btn.btn-phone {
    background: #c0c0c0;
    border-color: #c0c0c0;
    color: #fff;
}
.btn.btn-previous:hover,
.btn.btn-phone:hover {
    background: #fff;
    color: #c0c0c0;
}
.sc-close,
.sc-body a {
    cursor: pointer !important; /* fix for IE 8/9 */
}

/**
 * Previous button
 */
.previous-button {
    float: right;
    position: relative;
    margin-top: -3px;
    padding: 2px 2px 2px 18px;
    line-height: 18px;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}
.previous-button:before {
    content: '\0072';
    position: absolute;
    top: 5px;
    left: 2px;
    font-family: symbolcrpregular, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}
@media only screen and (max-width: 680px) {
    .previous-button {
        display: none;
    }
}

/**
 * Close button
 */
a.sc-close {
    position: absolute;
    top: 19px;
    right: 19px;
    width: 22px;
    height: 22px;
    overflow: hidden;
    text-decoration: none;
    text-indent: -9999px;
}
a.sc-close:before {
    margin-top: 2px;
    margin-left: -7px;
    font-size: 36px;
    color: #0c0c0c;
    text-indent: 0;
}
a.sc-close:hover { /* /!\ only used in IE8 */
    color: #0c0c0c;
}
a.sc-close:hover:before {
    color: #0c0c0c;
}
a.sc-close.close-window {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 20px;
    right: 5px;
    top: 5px;
    line-height: 30px;
    text-align: center;
    background: #000;
}
a.sc-close.close-window:before {
    width: 30px;
    margin: -1px 0 0 -1px;
    font-size: 24px;
    color: #fff;
}

/**
 * Popup position (.body has an influence on popup position)
 */
* {
    max-height: 10000px;
}
body {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: none;
}
@media only screen and (max-width: 830px), only screen and (max-height: 700px) {
    body {
        display: block;
        position: absolute;
    }
}

#content {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}
@media only screen and (max-width: 830px), only screen and (max-height: 700px) {
    #content {
        display: block;
    }
}

.sc-popup-area {
    position: relative;
    max-width: 830px;
    margin: 0 auto;
}

.sc-body {
    position: relative;
    height: 539px;
    background: #fff;
    overflow: hidden;
}
@media only screen and (max-width: 680px) {
    .sc-body {
        height: auto;
        padding-bottom: 40px;
    }
}

/**
 * Content and columns
 */
.sc-content {
    height: 540px;
    padding: 20px;
}
.sc-content:after {
    content: '';
    display: block;
    clear: both;
}
@media only screen and (max-width: 680px) {
    .sc-content {
        height: inherit;
    }
}

.sc-column-left {
    float: left;
    position: relative;
    width: 35.065%;
    max-height: 415px;
}
@media only screen and (max-width: 680px) {
    .sc-column-left {
        float: none;
        width: 100%;
        max-height: inherit;
        margin: 0 0 15px;
    }
}

.sc-column-right {
    float: right;
    position: relative;
    height: 415px;
    width: 61%;
    line-height: 16px;
    overflow: visible;
}
.sc-column-right.sc-fix-height {
    height: auto;
    max-height: 475px;
}
.a .sc-column-right {
    overflow: hidden;
}
@media only screen and (max-width: 680px) {
    .sc-column-right {
        float: none;
        width: 100%;
        height: inherit;
    }
    .sc-column-right.sc-fix-height {
        max-height: none;
    }
}

/**
 * Product info
 */
.sc-product-info {
    position: relative;
    padding: 22px 7.4% 10px;
    border: 1px solid #ccc;
    line-height: 18px;
    color: #686868;
}
.sc-product-info div[sc-slider]>ul>li {
    display: table;
}
.sc-product-info div[sc-slider]>ul>li>a {
    display: table-cell;
    vertical-align: middle;
}
.sc-product-info div[sc-slider] img {
    max-height: 60px;
}
.sc-product-info div[sc-slider] {
    border-top: 1px solid #d6d6d6;
}
.sc-product-info .sc-img-box {
    padding: 0;
    text-align: center;
}
.sc-product-info .sc-img-box img {
    max-width: 200px;
    max-height: 200px;
}
.a .sc-product-info .sc-img-box {
    padding: 0 0 36px;
}
.sc-product-info h2 {
    margin: 0 0 5px;
    line-height: 18px;
    font-weight: normal;
    color: #333;
}
.sc-product-info .chosen-container {
    width: 100% !important;
    margin: auto;
}
.sc-product-info dl {
    margin: 0 0 7px;
}
.sc-product-info dl:after {
    content: '';
    display: block;
    clear: both;
}
.sc-product-info dl dt {
    float: left;
    margin: 0 5px 0 0;
}
.sc-product-info dl dd {
    float: right;
    margin: 0 0 5px;
}
.sc-product-info dl.sc-coast {
    padding: 13px 0 0;
    margin: 0;
    border-top: 1px dotted #484848;
}
.sc-product-info dl.sc-coast dd {
    margin: 0 0 6px;
    line-height: 16px;
    text-align: right;
}
.sc-product-info .sc-sub-coast {
    margin: -2px 5px 0 0;
    color: #c0c0c0;
    text-decoration: line-through;
}
@media only screen and (max-width: 680px) {
    .sc-product-info {
        margin: 0 0 15px;
    }
    .sc-product-info dl.sc-coast .sc-sub-coast {
        margin: -2px 5px 0 0;
    }
}
/**
 * Cart product info
 */
.sc-cart-product-info {
    padding: 0 !important;
}
.sc-cart-product-info p.sc-total-products {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}
.sc-cart-product-info p.sc-total-price {
    margin: 0;
    padding: 10px;
    border-top: 1px solid #ccc;
}
.sc-cart-product-info ul {
    list-style: none;
    max-height: 400px;
    margin: 0;
    padding: 10px;
}
@media only screen and (max-width: 830px) {
    .sc-cart-product-info ul {
        max-height: inherit;
    }
}
.sc-cart-product-info li {
    padding: 10px 0;
    border-top: 1px solid #cccccc;
}
.sc-cart-product-info li:first-child {
    padding-top: 0;
    border-top: none;
}
.sc-cart-product-info li:last-child {
    padding-bottom: 0;
}
.sc-cart-product-info li:after {
    display: block;
    content: '';
    clear: both;
}
.sc-cart-product-info img {
    width: 75px;
    float: left;
    margin-right: 10px;
}
.sc-cart-product-info .sc-name {
    display: block;
    margin-left: 85px;
}
.sc-cart-product-info .sc-price {
    display: block;
    float: right;
}

/**
 * No reservation
 */
.sc-no-reservation {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    padding: 11px 12px 10px;
    background: #c0c0c0;
    border-color: #c0c0c0;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: default;
}

/**
 * TODO unused in creation widget. Move this to cancellation/feedback dedicated stylesheet
 * Store info reminder
 */
.sc-store-info-reminder {
    margin: 0 0 20px;
    border: 1px solid #ccc;
    padding: 5px 0;
}
.sc-store-info-reminder>div {
    display: inline-block;
    vertical-align: middle;
    width: 65%;
    text-align: left;
}
.sc-store-info-reminder>div strong,
.sc-store-info-reminder>div address {
    font-weight: normal;
    font-style: normal;
}
.sc-store-info-reminder>div:first-child {
    width: 30%;
    text-align: center;
}
@media only screen and (max-width: 500px) {
    .sc-store-info-reminder {
        padding: 5px 5%;
    }
    .sc-store-info-reminder>div,
    .sc-store-info-reminder>div:first-child {
        width: 100%;
    }
}

/**
 * Recap
 */
.sc-recap {
    max-height: 410px !important;
    padding: 15px;
    border: 1px solid #ccc;
}
.sc-recap .mCSB_container {
    padding-right: 15px;
}
.sc-recap h3 {
    margin: 0 0 5px;
    font: 12px/16px Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}
.sc-recap .sc-store {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.sc-recap .sc-store .sc-store-name,
.sc-recap .sc-store address {
    margin: 0;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
}
.sc-recap .sc-products ul {
    list-style: none;
}
.sc-recap .sc-products>ul {
    max-height: 205px;
    margin: 0;
    padding: 0;
}
.sc-recap .sc-products li {
    padding: 10px 0;
}
.sc-recap .sc-products li:first-child {
    padding-top: 0;
}
.sc-recap .sc-products li:last-child {
    padding-bottom: 0;
}
.sc-recap .sc-products li:after {
    content: '';
    display: block;
    clear: both;
}
.sc-recap .sc-products img {
    width: 75px;
    float: left;
    margin-right: 10px;
}
.sc-recap .sc-products .sc-product-details {
    margin-left: 85px;
    padding: 0;
}
.sc-recap .sc-products p {
    margin: 0;
}
.sc-recap .sc-products .sc-product-details li {
    padding: 0;
}
.sc-recap .sc-products .sc-product-details li:after {
    display: none;
}
.sc-recap .sc-products .sc-product-details p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sc-recap .sc-products .sc-price {
    float: right;
    font-weight: bold;
}
.sc-recap .sc-products .sc-sub-coast {
    color: #a8a8a8;
    text-decoration: line-through;
}
.sc-column-left .sc-additional-information {
    margin-top: 10px;
}
.sc-recap .sc-total-price {
    margin-top: 5px;
    padding-top: 7px;
    border-top: 1px solid #ccc;
    font-weight: bold;
}
.sc-recap .sc-total-price:after {
    display: block;
    content: '';
    clear: both;
}
.sc-recap .sc-total-price p {
    margin: 0;
}
.sc-recap .sc-change {
    display: block;
    float: right;
    color: #a8a8a8;
}
.sc-recap li .sc-change {
    float: none;
    text-align: right;
}

/**
 * Cross selling
 */
.sc-cross-selling {
    text-align: center;
}
.sc-cross-selling span {
    display: block;
    margin: 0 0 20px;
}
.a .sc-cross-selling span {
    margin: 0 0 30px;
}

/**
 * TOS
 */
.sc-tos {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 10px;
    padding: 22px 11px 10px 29px;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 1000;
}
.sc-tos>div {
    height: 90% !important;
}
.sc-tos>div>div {
    padding-right: 15px;
}
.sc-tos>div button {
    float: right;
}
.sc-tos h1 {
    color: #333;
    font-weight: normal;
    text-transform: uppercase;
}
.sc-tos>div h2 {
    color: #484848;
}
.sc-tos a {
    color: #ea4042;
}
@media only screen and (max-width: 680px) {
    .sc-tos {
        position: relative;
        margin: 0;
        padding: 0;
        border: none;
    }
    .sc-tos>div {
        padding-top: 11px;
        padding-left: 11px;
        border: 0;
    }
    .sc-tos>div>button {
        margin-bottom: 15px;
    }
}

/**
 * Slider
 */
div[sc-slider] {
    position: relative;
    overflow: hidden;
}
div[sc-slider]>ul {
    width: 99999px;
    height: 60px;
    margin: 0;
    padding: 0;
    list-style: none;
}
div[sc-slider]>ul>li {
    float: left;
    width: 45px;
    margin: 5px 15px;
    padding: 0;
    min-height: 60px;
}
div[sc-slider]>ul>li>a {
    display: block;
    width: 100%;
}
div[sc-slider]>ul>li>a>img {
    width: 100%;
}
div[sc-slider] a[href='previous'] {
    position: absolute;
    top: 49%;
    left: 0;
    width: 24px;
    height: 60px;
    margin-top: -30px;
}
div[sc-slider] a[href='previous']:after {
    display: block;
    position: absolute;
    top: 22px;
    left: 7px;
    font-family: symbolcrpregular, sans-serif;
    content: '\0072';
    font-size: 20px;
    color: #000;
    width: 7px;
    height: 14px;
}
div[sc-slider] a[href='next']  {
    position: absolute;
    top: 49%;
    right: 0;
    width: 24px;
    height: 60px;
    margin-top: -30px;
}
div[sc-slider] a[href='next']:after {
    display: block;
    position: absolute;
    top: 22px;
    right: 7px;
    font-family: symbolcrpregular, sans-serif;
    content: '\0073';
    font-size: 20px;
    color: #000;
    width: 7px;
    height: 14px;
}

/**
 * Map
 */
div[sc-map-resize] {
    display: block;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    min-width: 100px;
    height: 26px;
    background-color: rgb(248, 248, 248);
    text-align: left;
    line-height: 27px;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 3px;
}
@media only screen and (max-width: 680px) {
    div[sc-map-resize] {
        bottom: 60px;
    }
}
div[sc-map-resize] a {
    display: block;
    width: 100%;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}
div[sc-map-resize] a:before {
    float: right;
    margin-top: 1px;
    font-size: 20px;
    color: #000;
}
/**
 * Leaflet override
 */
.leaflet-popup-content .sc-store-info,
.leaflet-popup-content .sc-other-info {
    width: 100%;
    float: none;
    text-align: left;
}
.leaflet-popup-content .leaflet-popup-content-wrapper {
    position: relative;
}
.leaflet-popup-content .sc-store-action {
    position: inherit;
}
.leaflet-popup-content .sc-merge-popup {
    text-align: left;
}
.leaflet-popup-content .sc-merge-popup:after {
    content: '';
    display: block;
    clear: both;
}
.leaflet-popup-content .sc-merge-popup p {
    margin-bottom: 10px;
}
.leaflet-popup-content .sc-merge-popup span {
    display: block;
    margin-bottom: 10px;
}
.leaflet-popup-content .sc-merge-popup a {
    display: block;
    width: 45%;
    padding: 6px;
}
.leaflet-popup-content .sc-merge-popup a.sc-no {
    float: left;
    margin: 0 0 0 3%;
}
.leaflet-popup-content .sc-merge-popup a.sc-yes {
    float: right;
    margin: 0 3% 0 0;
}
.leaflet-popup-content {
    text-align: center;
}
.leaflet-popup-content p {
    margin: 0 0 8px;
    font: 12px/16px Verdana, Arial, Helvetica, sans-serif;
}
.leaflet-popup-content span {
    float: none !important;
}
.leaflet-popup-content .sc-stock-info {
    min-height: 0;
}
.leaflet-control-container a {
    text-align: center;
}
.leaflet-popup-content a.btn {
    color: #fff;
}
.leaflet-popup-content a.btn:hover {
    color: #ea4042;
}
.leaflet-popup-content a.btn-phone:hover {
    color: #c0c0c0;
}

/**
 * Engagement
 */
.sc-engagement {
    float: right;
    width: 29.5%;
    margin: 2px 0 0;
    padding: 14px 20px 17px;
    border: 1px solid #c0c0c0;
}
.sc-engagement h2{
    font-weight: normal;
    margin: 0 0 19px;
    color: #ea4042;
}
.sc-engagement ul {
    list-style: none;
    margin: 0 0 -18px;
    padding: 0 0 0 14px;
    color: #333;
}
.sc-engagement ul li {
    position: relative;
    margin: 0 0 18px;
}
.sc-engagement ul li:after{
    content: "";
    position: absolute;
    top: 9px;
    left: -14px;
    width: 6px;
    height: 6px;
    background: #686868;
}
@media only screen and (max-width: 680px) {
    .sc-engagement {
        float: none;
        width: auto;
        margin: 2px 0 10px;
    }
}

/**
 * Error
 */
.sc-socloz-error {
    height: 500px;
    line-height: 500px;
    text-align: center;
}
.sc-socloz-error>div {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    text-align: left;
}
@media only screen and (max-width: 680px) {
    .sc-socloz-error {
        height: auto;
        line-height: normal;
    }
}

/**
 * Transition widgets
 */
.sc-transition header {
    border-bottom: 1px solid #ccc;
}
.sc-transition h2 {
    margin-top: 0;
    font-weight: normal;
    color: #333;
    white-space: normal !important;
}
.sc-transition strong {
    display: inline-block;
    width: 68%;
    font-weight: normal;
}
.sc-transition .sc-row {
    margin: 0 0 16px 0;
}
.sc-transition .sc-row>div {
    float: right;
    width: 140px;
    text-align: right;
}
.sc-transition .sc-row:after {
    display: block;
    content: "";
    clear: both;
}
.sc-transition .sc-row .sc-choice {
    float: right;
    width: 46.9%;
}
.sc-transition .sc-row .sc-choice:first-child {
    float: left;
    width: 47%;
}
.sc-transition .sc-row .sc-choice label {
    display: inline-block;
    vertical-align: top;
    height: 20px;
}
.sc-transition #sc-star-rating {
    float: right;
    margin: 0;
    padding: 0;
    background: url(/bundles/soclozcrp/img/star-rating.png) -80px 0;
    cursor: pointer;
}
.sc-transition #sc-star-rating li {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
}
.sc-transition #sc-star-rating.sc-star-1 {
    background-position: -64px 0;
}
.sc-transition #sc-star-rating.sc-star-2 {
    background-position: -48px 0;
}
.sc-transition #sc-star-rating.sc-star-3 {
    background-position: -32px 0;
}
.sc-transition #sc-star-rating.sc-star-4 {
    background-position: -16px 0;
}
.sc-transition #sc-star-rating.sc-star-5 {
    background-position: 0 0;
}
.sc-transition textarea {
    width: 100%;
    height: 40px;
    margin: 10px 0;
    padding: 5px;
    border: 1px solid #c0c0c0;
    resize: none;
}
.sc-transition .btn {
    float: right;
    background-color: #333;
    border-color: #333;
}
.sc-transition .btn:hover {
    background-color: #FFF;
    color: #333;
}
.sc-transition .sc-cross-selling .btn {
    float: none;
}
.sc-transition .sc-cancellation {
    text-align: left;
}
.sc-transition .sc-cancellation button {
    float: none;
    display: block;
    margin: 50px auto;
}

/**
 * Unsupported browser
 */
.sc-content .socloz-error .sc-not-compatible {
    position: relative;
    width: 95%;
    margin: auto;
    padding-top: 180px;
    text-align: left;
}
.sc-not-compatible-title {
    color: #fff;
}

@media only screen and (max-width: 442px) {
    .submit-holder label {
        position: relative;
        width: 100%;
        text-align: right;
    }
    .submit-holder.submit-required .btn {
        margin-top: 20px;
    }
    .column-right {
        overflow: visible;
    }
}

/**
 * Footer
 */
footer {
    position: absolute;
    z-index: 100000;
    right: 0;
    bottom: -40px;
    left: 0;
    border-top: 1px solid #ccc;
    height: 40px;
    padding: 10px 20px;
    background: #f2f2f2;
    line-height: 22px;
    text-align: right;
    color: #747474;
}
footer>a {
    display: inline-block;
    vertical-align: top;
    color: #747474;
    outline: none;
}
footer .sc-socloz-logo:before {
    float: right;
    font-size: 32px;
    margin-left: 10px;
}
@media only screen and (max-width: 680px) {
    footer {
        bottom: 0;
    }
}

/**
 * Spinner / Progress Bar
 */
.sc-loader-background {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 539px;
    background-color: rgba(242, 242, 242, 0.70);
}
.sc-loader-background.sc-loader-initiate {
    background-color: rgba(242, 242, 242, 1);
}
@media only screen and (max-width: 680px) {
    .sc-loader-background {
        position: fixed;
        height: 100%;
    }
}
.sc-loader-gif {
    background-image: url(/bundles/soclozcrp/img/loader.gif);
    background-position: center center;
    background-repeat: no-repeat;
}
.sc-progress-bar {
    position: absolute;
    z-index: 1010;
    top: 50%;
    width: 100%;
    height: 38px;
    overflow: hidden;
    color: #000;
}
.sc-progress-bar p {
    font-weight: bold;
    text-align: center;
}
.sc-progress-bar .sc-bar-container {
    height: 50%;
    width: 300px;
    margin: auto;
    border: 1px solid #ccc;
    background-color: #29088A;
}
.sc-progress-bar .sc-bar-container .sc-bar {
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    ); /* FF3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        right bottom,
        color-stop(25%, rgba(255, 255, 255, 0.15)),
        color-stop(25%, transparent),
        color-stop(50%, transparent),
        color-stop(50%, rgba(255, 255, 255, 0.15)),
        color-stop(75%, rgba(255, 255, 255, 0.15)),
        color-stop(75%, transparent)
    ); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    ); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    ); /* Opera 11.10+ */
    background: -ms-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    ); /* IE10+ */
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    ); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );  /*IE6-8 fallback on horizontal gradient*/
    background-size: 20px 20px;
    animation: animationFrames linear 2s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: animationFrames linear 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: animationFrames linear 2s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: animationFrames linear 2s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: animationFrames linear 2s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}
@keyframes animationFrames {
    from { background-position: 0 0 } to { background-position: 40px 0 }
}
@keyframes animationFrames {
    from { background-position: 0 0 } to { background-position: 40px 0 }
}
@-moz-keyframes animationFrames {
    from { background-position: 0 0 } to { background-position: 40px 0 }
}
@-webkit-keyframes animationFrames {
    from { background-position: 0 0 } to { background-position: 40px 0 }
}
@-o-keyframes animationFrames {
    from { background-position: 0 0 } to { background-position: 40px 0 }
}
@-ms-keyframes animationFrames {
    from { background-position: 0 0 } to { background-position: 40px 0 }
}

/**
 * Divider
 */
.sc-divider {
    border-bottom: 1px dotted #484848;
}

/**
 * Font size
 */
h1,
h2,
.sc-coast dd {
    font-size: 1.3em;
}
.sc-store .sc-coast {
    font-size: 1.2em;
}
.sc-navigation-menu {
    font-size: 1.1em;
}
.sc-store h3 {
    font-size: 1em !important; /* important for overriding mapbox style */
}
.sc-recap address,
.sc-recap .sc-store-name,
.sc-cnil,
.sc-cart-instructions {
    font-size: 0.9em;
}
.sc-cart-instructions h3,
.sc-store-list-footer {
    font-size: 0.8em;
}
@media only screen and (max-width: 680px) {
    h2 {
        overflow: visible;
        white-space: normal;
        text-overflow: initial;
    }
    h1,
    h2,
    .sc-coast dd {
        font-size: 1.1em !important; /* important for overriding customization */
    }
    .sc-navigation-menu {
        font-size: 1.0em;
    }
    .sc-dev-mode {
        font-size: 0.8em;
    }
}
@media only screen and (max-width: 680px) {
    .sc-step-user form .chosen-container .chosen-single span {
        font-size: 1em;
    }
}
@media only screen and (max-width: 790px) {
    .sc-step-user form .chosen-container .chosen-single span,
    .sc-step-user form .chosen-container .chosen-results li {
        font-size: 0.8em;
    }
}

/**
 * Indicative price
 */
.sc-indicative-price {
    cursor: default;
    position: relative;
    padding-right: 15px !important;
}
.sc-indicative-price:before {
    position: absolute;
    right: 0;
    color: #a8a8a8;
    font-size: 16px;
    margin-top: -5px;
}

/**
 * Info reminder
 * Only used in C&C feedback widget for now
 */
.sc-info-reminder {
    margin: 0 0 20px;
    border: 1px solid #ccc;
    padding: 20px;
}
.sc-info-reminder h2 {
    font-size: 1.2em;
    text-transform: none;
    letter-spacing: 0;
}
.sc-info-reminder p {
    margin: 0;
    font-size: 1.2em;
}

/**
 * Radio button
 */
input[type="radio"]:not(:checked),
input[type="radio"]:checked {
    position: absolute;
    left: -9999px;
}
input[type="radio"]:not(:checked) + label,
input[type="radio"]:checked + label {
    position: relative;
    height: 20px;
    margin-left: 25px;
    padding: 2px 5px;
    font-size: 1em;
    cursor: pointer;
}
input[type="radio"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 3px;
    width: 14px;
    height: 14px;
    border: 1px solid #686868;
    background: #fff;
    border-radius: 7px;
}
input[type="radio"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    left: -12px;
    top: 6px;
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #686868;
    border-radius: 6px;
    background-color: #686868;
    color: #686868;
    transition: all .2s;
}
input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
}
input[type="radio"]:checked + label:after,
input[type="radio"].sc-selected + label:after {
    opacity: 1;
}

/**
 * Checkbox
 */
input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
input[type="checkbox"]:not(:checked) + label,
input[type="checkbox"]:checked + label {
    position: relative;
    height: 20px;
    margin-left: 16px;
    padding: 2px 5px;
    font-size: 1em;
    cursor: pointer;
}
input[type="checkbox"]:not(:checked) + label:before,
input[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 3px;
    width: 14px;
    height: 14px;
    border: 1px solid #686868;
    background: #fff;
}
input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after {
    content: '\006f';
    position: absolute;
    left: -15px;
    top: 3px;
    display: block;
    width: 8px;
    height: 8px;
    transition: all .2s;
    font-family: symbolcrpregular, sans-serif;
    font-size: 14px;
}
input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}
input[type="checkbox"]:checked + label:after,
input[type="checkbox"].sc-selected + label:after {
    opacity: 1;
}
