/* === WRAPPER === */
.slcd-wrapper{
    margin:0 0 40px;
    font-family:inherit;
}


.slcd-price-box{
    display:flex;
    background:#ffffff;
    padding:10px 18px;
    border-radius:3px;
    min-width:150px;
    text-align:center;
    box-sizing:border-box;
}
.slcd-price-main{
    margin-right: 8px;
    font-weight:700;
    font-size:16px;
}
.slcd-price-label{
    display:block;
    margin-top:4px;
    font-size:12px;
    text-transform:uppercase;
    color:#555;
}
.slcd-price-box.slcd-muted{
    background:transparent;
}
.slcd-finance-text{
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    color:#444;
}
.slcd-proceed-btn{
    margin-left:auto;
    padding:11px 26px;
    background:#41009f;
    color:#ffffff;
    border-radius:25px;
    text-decoration:none;
    font-weight:700;
    white-space:nowrap;
}

.slcd-proceed-btn:hover{
    color: #fff !important;
}

/* === FIXED BOTTOM BAR (ALWAYS VISIBLE) === */
.slcd-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

/* Bottom Bar Content */
.slcd-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.slcd-bottom-prices {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slcd-bottom-price-box {
    display: flex;
    background:#ffffff;
    padding:8px 15px;
    border-radius:3px;
    min-width:140px;
    text-align:center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.slcd-bottom-price-main {
    margin-right: 8px;
    font-weight:700;
    font-size:15px;
    color: #41009f;
}

.slcd-bottom-price-label {
    display:block;
    margin-top:4px;
    font-size:11px;
    text-transform:uppercase;
    color:#555;
}

/* Bottom Bar Buttons */
.slcd-bottom-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slcd-bottom-check-specs {
    padding: 10px 22px;
    background: white;
    color: #41009f;
    border: 2px solid #41009f;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.slcd-bottom-check-specs:hover {
    background: #41009f;
    color: white;
}

.slcd-bottom-proceed-btn {
    padding: 11px 26px;
    background: #41009f;
    color: #ffffff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.slcd-bottom-proceed-btn:hover {
    background: #30007d;
    color: white;
}

/* Body padding for bottom bar */
body.has-slcd-bottom-bar {
    padding-bottom: 80px !important;
}

/* === 2ND UI: IMAGE + SPECS === */
.slcd-main{
    max-width:1200px;
    margin:25px auto 0;
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    padding:0 15px;
    box-sizing:border-box;
}
.slcd-image{
    flex:1 1 320px;
    max-width:450px;
    position:relative;
}
.slcd-image img{
    width:100%;
    height:auto;
    display:block;
}
.slcd-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e3f2ed;
    cursor:default;
}
.slcd-arrow-left{ left:10px; }
.slcd-arrow-right{ right:10px; }

.slcd-specs{
    flex:1 1 320px;
    margin-left: 100px;
}
.slcd-product-title{
    font-size:26px;
    font-weight:700;
    margin:0 0 10px;
}
.slcd-starting-label{
    font-weight:800;
    margin:18px 0 10px;
}
.slcd-spec-columns{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:4px 40px;
    margin-bottom:20px;
}
.slcd-spec-columns ul{
    margin:0;
    padding-left:18px;
}
.slcd-spec-columns li{
    font-size:14px;
    margin-bottom:5px;
    color:#333;
    list-style:disc;
}

.slcd-ctas{
    margin-top:10px;
}

.slcd-ctas:hover{
    color:white !important;
}
.slcd-btn{
    display:inline-block;
    padding:11px 26px;
    margin-right:10px;
    border-radius:3px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    border:1px solid transparent;
}
.slcd-btn-primary{
    background:#000000;
    color:#ffffff;
}
.slcd-btn-outline{
    background:#ffffff;
    color:#41009f;
    border-color:#41009f;
}
.slcd-shipping{
    margin-top:18px;
    font-size:13px;
}
.slcd-shipping a{
    margin-left:4px;
    color:#41009f;
    text-decoration:underline;
}

/* === 3RD UI: CORE COMPONENTS BUILDER === */
.slcd-config{
    max-width:1200px;
    margin:40px auto 0;
    padding:0 15px 20px;
    box-sizing:border-box;
}
.slcd-config--builder{
    background:transparent;
    box-shadow:none;
}
.slcd-config-header{
    margin-top:25px;
    background:#faf5ff;
    color:#000000;
    padding:12px 18px;
    font-weight:700;
    font-size:14px;
    text-transform:uppercase;
}
.slcd-config-rows{
    background:#ffffff;
}
.slcd-config-empty{
    padding:20px;
    font-size:14px;
}

.slcd-component-row{
    display:flex;
    align-items:center;
    padding:16px 18px;
    border-bottom:1px solid white;
}
.slcd-comp-left{
    flex:0 0 260px;
    display:flex;
    align-items:center;
    gap:10px;
}
.slcd-comp-icon img{
    width:40px;
    height:auto;
}
.slcd-comp-title{
    font-weight:700;
    color:#41009f;
    font-size:15px;
}

.slcd-comp-right{
    flex:1;
    display:flex;
    align-items:center;
    gap:10px;
}

/* Select bar style: long white box, black right block with arrow */
.slcd-comp-select{
    position:relative;
    flex:1;
}
.slcd-comp-select select{
    width:100%;
    padding:10px 44px 10px 12px;
    border-radius:0;
    border:3px solid #faf5ff;
    background:#ffffff;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    font-size:14px;
}
.slcd-select-arrow{
    position:absolute;
    top:0;
    right:0;
    width:44px;
    height:100%;
    background:#faf5ff;
    color:#000000;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none;
    font-size:14px;
}

/* Round ? button */
.slcd-comp-help{
    width:32px;
    height:32px;
    border-radius:50%;
    border:none;
    background:#faf5ff;
    color:#000000;
    font-weight:700;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    position:relative;
}

/* Bottom button */
.slcd-config-action{
    text-align:center;
    margin-top:22px;
}
.slcd-btn-success{
    background:#20b26b;
    color:#ffffff;
}

/* === RESPONSIVE === */
@media (max-width:900px){
    .slcd-topbar{
        flex-direction:column;
        align-items:stretch;
    }
    .slcd-proceed-btn{
        margin-left:0;
        text-align:center;
    }
    .slcd-main{
        flex-direction:column;
    }
    .slcd-component-row{
        flex-direction:column;
        align-items:flex-start;
    }
    .slcd-comp-left{
        flex:1 1 auto;
        margin-bottom:8px;
    }
    .slcd-comp-right{
        width:100%;
    }
    
    /* Bottom bar responsive */
    .slcd-bottom-bar {
        padding: 10px 15px;
    }
    
    .slcd-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .slcd-bottom-prices {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .slcd-bottom-price-box {
        width: 100%;
        justify-content: center;
    }
    
    .slcd-bottom-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:768px){
    .slcd-specs{
        margin-left: 0px;
    }
    .slcd-description{
        flex-direction:column;
        
    }
    .slcd-description .fl,
    .slcd-description .fr{
        flex:none;
        margin-bottom:15px;
    }

    .slcd-modal{
        width:100%;
        padding:20px;
    }
    
    /* Bottom bar mobile */
    .slcd-bottom-price-box {
        min-width: 120px;
    }
    
    .slcd-bottom-check-specs,
    .slcd-bottom-proceed-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    body.has-slcd-bottom-bar {
        padding-bottom: 120px !important;
    }
}

@media (max-width:480px) {
    .slcd-bottom-bar {
        padding: 8px 10px;
    }
    
    .slcd-bottom-price-main {
        font-size: 14px;
    }
    
    .slcd-bottom-price-label {
        font-size: 10px;
    }
    
    .slcd-bottom-check-specs,
    .slcd-bottom-proceed-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    body.has-slcd-bottom-bar {
        padding-bottom: 140px !important;
    }
}

/* ---------- MODAL (POPUP) ---------- */

/* Overlay */
.slcd-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal container */
.slcd-modal {
    background: #ffffff;
    max-width: 800px;
    width: 90%;
    padding: 26px 28px 26px;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

/* Header with static label – FULL WIDTH INSIDE MODAL */
.slcd-modal-header {
    display:flex;
    align-items:center;
    background-color:#000000;
    color:#ffffff;
    padding:12px 24px;
    margin: -26px -28px 8px; /* pull to edges of modal (top + left + right) */
    border-radius:3px 3px 0 0;
    position:relative;
}

.slcd-modal-icon-circle {
    width:32px;
    height:32px;
    background-color:#41009f;
    border-radius:50%;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:10px;
    font-size:18px;
}

/* Static title text: "Not sure? We can help..." */
.slcd-modal-title {
    font-size:22px;
    font-weight:bold;
    margin:0;
    color:#ffffff;
}

/* Close button (top-right in header) */
.slcd-modal-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 8px;       
    right: 8px;     
    font-size: 18px;
    color: #ffffff;
    background: #8bacb3;
    border: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


/* Grey label bar with component label */
.slcd-modal-desc-label {
    margin-top:-15px;
    font-size:16px;
    font-weight:600;
    margin-bottom:0;
    color:#ffffff;
    padding:7px 12px;
    background-color:#8bacb3;
}

/* Body with light grey background */
.slcd-modal-body {
    font-size:14px;
    line-height:1.6;
    color:#0073aa;
    /*   top   right  bottom left  */
    padding: 12px 0px 1px 1px;  
    background:#eff3f3;
    max-height:calc(80vh - 120px);
    overflow-y:auto;
}

.slcd-modal-desc-content {
    padding-left:4px;
    color:#333333;
    margin-top:12px;
}

body.slcd-modal-open {
    overflow:hidden;
}

/* === PRODUCT DESCRIPTION BULLET STYLING === */
.slcd-description {
    display:flex;
    margin-top:10px;
    font-size:14px;
    color:#41009f;
    border-top:1px solid #ddd;
    padding-top:12px;
    line-height:1.6;
    gap:2px;
}

.slcd-description p{
    display:block !important;
}

.slcd-description ul{
    list-style:none;
    padding-left:20px;
    margin:0;
}

.slcd-description ul li{
    position:relative;
    font-size:14px;
    color:#333;
    margin-bottom:8px;
    line-height:1.5;
}

.slcd-description ul li::before{
    content: "\2713";       
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;        
    border-radius: 0;
    font-size: 14px;
    color: #00b050;       
    font-weight: 700;
}


.slcd-description ul li.square::before{
    border-radius:0;
}

.slcd-description ul li a{
    color:#0073aa;
    text-decoration:none;
}

/* ==== CHECK SPEC MODAL (PROCESS BUTTON) ==== */

.slcd-check-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

body.slcd-check-open {
    overflow: hidden;
}

.slcd-check-modal {
    position: relative;
    background: #ffffff;
    max-width: 720px;
    width: 43%;
    height:30%;
    padding: 40px 40px 32px;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    text-align: center;
}

/* Top-right close button (green box with X jaise reference image me) */
.slcd-check-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    border: none;
    background: #41009f;    /* green block */
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

/* Green tick icon */
.slcd-check-icon {
    width: 53px;
    height: 24px;
    margin: 0 auto 16px;
    font-size: 32px;
    line-height: 4px;
}

/* Heading text */
.slcd-check-title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
}

/* Sub text */
.slcd-check-text {
    margin: 0 0 26px;
    font-size: 14px;
    color: #333333;
}

/* Buttons row */
.slcd-check-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.slcd-check-btn {
    min-width: 180px;
    padding: 12px 24px;
    border-radius: 0;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* SAVE QUOTE – white text on green background */
.slcd-check-save {
    background: #fdfdfd;
    color: #41009f;
    border: 2px solid #41009f;
}

/* PROCEED – same style (agar alag chahiye to colors change kar sakte ho) */
.slcd-check-proceed {
    background: #41009f;
    color: #ffffff;
}

.slcd-check-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 600px) {
    .slcd-check-modal {
        padding: 32px 20px 24px;
    }
}

/* === IMAGE SLIDER STYLES === */
.slcd-image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slcd-slide {
    display: none;
    width: 100%;
}

.slcd-slide.active {
    display: block;
}

.slcd-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image thumbnails */
.slcd-image-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.slcd-thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.slcd-thumbnail.active {
    border-color: #41009f;
    opacity: 1;
}

.slcd-thumbnail:hover {
    opacity: 1;
}

.slcd-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrow buttons */
.slcd-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2ed;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.slcd-arrow:hover {
    opacity: 1;
}

.slcd-arrow-left { left: 10px; }
.slcd-arrow-right { right: 10px; }

.slcd-arrow span {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* === 2ND UI: STICKY TOP BAR === */
.slcd-topbar{
  position: fixed;
  bottom: 0;
  background:#f0f0f0;
  padding: 11px; 
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin-left: 0 !important;
  transform: none !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;   
  gap: 10px;
  z-index: 1000;
}

/* ===== PRODUCT GALLERY – ASUS STYLE ===== */


/* Layout: image + specs */
.slcd-main{
    max-width:1200px;
    margin:25px auto 0;
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    padding:0 15px;
    box-sizing:border-box;
}

/* LEFT: gallery */
.slcd-image {
    flex: 1 1 320px;
    max-width: 520px;
    margin: 0 auto;
}

/* Main slider box – white background, centered image */
.slcd-image-slider {
    position: relative;
    width: 100%;
    min-height: 320px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Slides */
.slcd-slide {
    display: none;
    width: 100%;
    text-align: center;
}

.slcd-slide.active {
    display: block;
}

.slcd-slide img {
    max-width: 90%;
    max-height: 280px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* Left / right arrows – round buttons like ASUS */
.slcd-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #d7d7d7;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
    transition: box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    padding: 0;
    z-index: 10;
}

.slcd-arrow span {
    font-size: 20px;
    font-weight: 700;
    color: #777;
}

.slcd-arrow-left { left: 16px; }
.slcd-arrow-right { right: 16px; }

.slcd-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Thumbnails row – round white bubbles */
.slcd-image-thumbnails {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
    padding-bottom: 5px;
}

.slcd-thumbnail {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    cursor: pointer;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.slcd-thumbnail img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}

/* Active thumb – purple ring (जैसा screenshot में) */
.slcd-thumbnail.active {
    border-color: #7c3aed;
    opacity: 1;
    transform: scale(1.05);
}

.slcd-thumbnail:hover {
    opacity: 1;
}

/* RIGHT: specs side */
.slcd-specs{
    flex:1 1 320px;
    margin-left: 60px;
}

@media (max-width: 900px){
    .slcd-main{
        flex-direction:column;
    }
    .slcd-specs{
        margin-left:0;
    }
}

@media (max-width: 768px) {
    .slcd-image {
        max-width: 100%;
    }
    .slcd-image-slider {
        min-height: 260px;
    }
    .slcd-thumbnail {
        width: 60px;
        height: 60px;
    }
}
/* ================================
   RESPONSIVE FIX: CHECK MODAL
================================ */

/* Overlay safe */
.slcd-check-overlay{
  padding: 16px;
  box-sizing: border-box;
}

/* Modal: remove fixed width/height and make it fluid */
.slcd-check-modal{
  width: min(720px, calc(100vw - 32px)) !important;
  max-width: 720px !important;

  height: auto !important;          /* remove fixed height */
  max-height: calc(100vh - 32px) !important;
  overflow: auto;

  padding: 24px 18px !important;
  border-radius: 10px;
}

/* Buttons: wrap nicely */
.slcd-check-actions{
  flex-wrap: wrap;
  gap: 12px;
}

.slcd-check-btn{
  min-width: 0 !important;
  flex: 1 1 200px;       /* responsive grow/shrink */
}

/* Small screens: buttons full width (stack) */
@media (max-width: 600px){
  .slcd-check-title{ font-size: 18px; }
  .slcd-check-text{ font-size: 13px; }

  .slcd-check-actions{
    flex-direction: column;
  }
  .slcd-check-btn{
    width: 100%;
    flex: 1 1 auto;
  }
}
/* ================================
   RESPONSIVE FIX: BOTTOM BAR
================================ */

/* bar should not overflow */
.slcd-bottom-bar{
  box-sizing: border-box;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

/* allow wrapping */
.slcd-bottom-content{
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 !important;
}

/* prices wrap */
.slcd-bottom-prices{
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

/* price boxes: flexible */
.slcd-bottom-price-box{
  min-width: 0 !important;
  flex: 1 1 160px;
  justify-content: center;
}

/* buttons wrap */
.slcd-bottom-buttons{
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 10px;
}

/* buttons: flexible width on small screens */
.slcd-bottom-check-specs,
.slcd-bottom-proceed-btn{
  flex: 1 1 180px;
  text-align: center;
}

/* Mobile: stack everything */
@media (max-width: 768px){
  .slcd-bottom-content{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .slcd-bottom-prices{
    flex-direction: column;
    align-items: stretch;
  }

  .slcd-bottom-price-box{
    width: 100%;
  }

  .slcd-bottom-buttons{
    flex-direction: column;
    align-items: stretch;
  }

  .slcd-bottom-check-specs,
  .slcd-bottom-proceed-btn{
    width: 100%;
  }

  body.has-slcd-bottom-bar{
    padding-bottom: 160px !important;
  }
}

@media (max-width: 480px){
  .slcd-bottom-price-main{ font-size: 14px; }
  .slcd-bottom-price-label{ font-size: 10px; }

  body.has-slcd-bottom-bar{
    padding-bottom: 190px !important;
  }
}
/* ================================
   MOBILE: TOPBAR ONE ROW
================================ */
@media (max-width: 768px){

  .slcd-topbar{
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;

    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    transform: none !important;

    overflow-x: auto;              /* very small screens fallback */
    -webkit-overflow-scrolling: touch;
  }

  .slcd-price-box{
    min-width: 0 !important;
    flex: 1 1 0 !important;
    padding: 6px 8px !important;
    justify-content: center;
  }

  .slcd-price-main{
    font-size: 13px !important;
    margin-right: 6px !important;
  }

  .slcd-price-label{
    font-size: 10px !important;
    margin-top: 2px !important;
  }

  .slcd-proceed-btn{
    margin-left: 0 !important;
    flex: 0 0 auto !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    border-radius: 18px !important;
    white-space: nowrap;
  }
}
