/* SKELETON LOADER ANIMATIONS & STYLES */
@keyframes ospPulse {
    0% { background-color: #f0f0f0; }
    50% { background-color: #e0e0e0; }
    100% { background-color: #f0f0f0; }
}

.osp-skeleton-table, .osp-skeleton-cards {
    width: 100%;
    margin-bottom: 20px;
}

.osp-skeleton-th, .osp-skeleton-td, .osp-skeleton-title, .osp-skeleton-avatar, .osp-skeleton-line, .osp-skeleton-card-footer {
    animation: ospPulse 1.5s ease-in-out infinite;
    border-radius: 4px;
}

/* Table Skeleton */
.osp-skeleton-table-header {
    display: flex;
    padding: 12px 10px;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.osp-skeleton-th {
    height: 18px;
    margin-right: 20px;
    flex: 1;
}

.osp-skeleton-th:last-child {
    margin-right: 0;
}

.osp-skeleton-tr {
    display: flex;
    padding: 12px 10px;
    border-bottom: 1px solid #dee2e6;
}

.osp-skeleton-td {
    height: 16px;
    margin-right: 20px;
    flex: 1;
}

.osp-skeleton-td:last-child {
    margin-right: 0;
}

/* Cards Skeleton */
.osp-skeleton-cards {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

.osp-skeleton-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.osp-skeleton-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.osp-skeleton-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 12px;
}

.osp-skeleton-title {
    height: 16px;
    width: 60%;
}

.osp-skeleton-card-body {
    margin-bottom: 16px;
}

.osp-skeleton-line {
    height: 12px;
    margin-bottom: 8px;
    width: 100%;
}

.osp-skeleton-line:last-child {
    width: 80%;
    margin-bottom: 0;
}

.osp-skeleton-card-footer {
    height: 32px;
    width: 100%;
}

/* Show/hide skeletons based on media queries */
@media (min-width: 769px) {
    .osp-skeleton-table { display: block; }
    .osp-skeleton-cards { display: none; }
    .osp-skeleton-cards.osp-always-visible { display: grid; }
}

@media (max-width: 768px) {
    .osp-skeleton-table { display: none; }
    .osp-skeleton-cards { display: grid; }
}


/* NEW RESPONSIVE TABLE STYLING */
.osp-responsive-container {
    width: 100%;
    margin-bottom: 20px;
    font-family: inherit;
}

/* Controls (Search, Sort, Currency Switcher) */
.osp-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.osp-controls-right {
    margin-left: auto !important;
}

.osp-search-input {
    padding: 8px 12px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    width: 300px;
    max-width: 100%;
    font-size: 14px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
    outline: none;
    transition: border-color 0.2s ease-in-out;
}

.osp-search-input:focus {
    border-color: #2271b1;
}

/* Currency switcher styling */
.osp-currency-switcher-container {
    display: inline-flex;
    background: #f0f0f1;
    padding: 4px;
    border-radius: 6px;
    border: 1px solid #ccd0d4;
}

.osp-currency-btn {
    padding: 6px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #50575e;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.osp-currency-btn.active {
    background: #ffffff;
    color: #1d2327;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Desktop Table View */
.osp-table-view {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.osp-table-view th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid #dee2e6;
    user-select: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.osp-table-view th:hover {
    background-color: #e9ecef;
}

.osp-table-view th.sortable::after {
    content: " ↕";
    font-size: 11px;
    color: #adb5bd;
}

.osp-table-view th.sort-asc::after {
    content: " ▲";
    font-size: 11px;
    color: #2271b1;
}

.osp-table-view th.sort-desc::after {
    content: " ▼";
    font-size: 11px;
    color: #2271b1;
}

.osp-table-view td {
    padding: 14px 16px;
    border-bottom: 1px solid #dee2e6;
    color: #212529;
    font-size: 14px;
    vertical-align: middle;
}

.osp-table-view tr:last-child td {
    border-bottom: none;
}

.osp-table-view tr:hover td {
    background-color: #f8f9fa;
}

/* Flag and text alignment */
.osp-flag-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    color: #2271b1;
    font-weight: 500;
}

.osp-flag-link:hover {
    color: #135e96;
}

.osp-flag-link i.flag {
    margin-top: -2px;
}

/* Pricing displays */
.osp-price-monthly {
    font-weight: 600;
    color: #495057;
}

.osp-price-monthly.strikethrough {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 13px;
    margin-right: 8px;
}

.osp-price-discounted {
    font-weight: 700;
    color: #28a745;
}

.osp-price-term {
    font-size: 12px;
    color: #6c757d;
    margin-left: 2px;
}

.osp-savings-badge {
    background-color: #e6f4ea;
    color: #137333;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
    white-space: nowrap;
}

.osp-no-offer {
    color: #adb5bd;
    font-style: italic;
}

/* Buy buttons */
.osp-btn-configure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #2271b1;
    color: #ffffff !important;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color 0.15s ease-in-out, transform 0.1s ease;
}

.osp-btn-configure:hover {
    background-color: #135e96;
}

.osp-btn-configure:active {
    transform: scale(0.97);
}

.osp-btn-configure i {
    font-size: 14px;
}

/* Mobile Cards View */
.osp-cards-view {
    display: none;
}

.osp-card-item {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.osp-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f3f5;
}

.osp-card-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.osp-card-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.osp-card-value {
    font-size: 14px;
    color: #212529;
    text-align: right;
}

.osp-card-value-bold {
    font-weight: 600;
}

.osp-card-footer-btn {
    margin-top: 6px;
    width: 100%;
}

/* Responsive display switches */
@media (min-width: 769px) {
    .osp-table-view { display: table; }
    .osp-cards-view { display: none; }
}

@media (max-width: 768px) {
    .osp-table-view { display: none; }
    .osp-cards-view { display: grid; grid-template-columns: 1fr; gap: 16px; }
    .osp-controls-bar { flex-direction: row; align-items: center; justify-content: space-between; }
    .osp-search-input { width: auto; }
    .osp-currency-switcher-container { justify-content: center; }
}

/* Pagination Styling */
.osp-pagination-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #495057;
}

.osp-pagination-controls {
    display: flex;
    gap: 6px;
}

.osp-page-btn {
    padding: 6px 12px;
    border: 1px solid #ccd0d4;
    background: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.osp-page-btn:hover:not(:disabled) {
    background: #f6f7f7;
    border-color: #8c8f94;
}

.osp-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.osp-page-btn.active {
    background: #2271b1;
    color: #ffffff;
    border-color: #2271b1;
}

.osp-rows-select {
    padding: 4px 8px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

/* Legacy Toggles classes */
body.osp-currency-usd .usd { display: block !important; }
body.osp-currency-usd .inr { display: none !important; }
body.osp-currency-usd .gbp { display: none !important; }

body.osp-currency-inr .usd { display: none !important; }
body.osp-currency-inr .inr { display: block !important; }
body.osp-currency-inr .gbp { display: none !important; }

body.osp-currency-eur .usd { display: none !important; }
body.osp-currency-eur .inr { display: none !important; }
body.osp-currency-eur .gbp { display: block !important; }

/* --- MODERN COMPONENT-WIDE GRID LIST LAYOUT (DIV-BASED) --- */
.osp-grid-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
    transition: box-shadow 0.3s ease;
}

.osp-grid-list:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.osp-list-header {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 12px;
    display: grid;
    align-items: center;
    gap: 8px;
}

.osp-list-row {
    padding: 8px 12px;
    border-bottom: 1px solid #f1f3f5;
    color: #212529;
    font-size: 12px;
    display: grid;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease-in-out;
}

.osp-list-row:last-child {
    border-bottom: none;
}

.osp-list-row:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* Header sort indicators */
.osp-header-col.sortable {
    cursor: pointer;
    user-select: none;
}
.osp-header-col.sortable::after {
    content: " ↕";
    font-size: 9px;
    color: #adb5bd;
}
.osp-header-col.sort-asc::after {
    content: " ▲";
    font-size: 9px;
    color: #2271b1;
}
.osp-header-col.sort-desc::after {
    content: " ▼";
    font-size: 9px;
    color: #2271b1;
}

/* Specific Columns Grid templates for VPS */
.osp-vps-grid .osp-list-header, 
.osp-vps-grid .osp-list-row {
    grid-template-columns: 2.2fr 0.8fr 1fr 1fr 1.2fr 1.2fr 1.8fr 1.3fr 1.8fr 1.8fr !important;
}

/* Specific Columns Grid templates for Dedicated */
.osp-dedicated-grid .osp-list-header, 
.osp-dedicated-grid .osp-list-row {
    grid-template-columns: 2.2fr 2.2fr 1fr 1.2fr 1.2fr 1.8fr 1.3fr 1.8fr 1.8fr !important;
}

/* Columns visual alignment */
.osp-col-name, .osp-col-processor {
    font-weight: 600;
}

.osp-col-os img {
    height: 18px;
    vertical-align: middle;
}

.osp-col-price {
    font-size: 13px;
}

.osp-col-action {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.osp-col-action .osp-btn-configure {
    width: 100% !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    text-align: center !important;
    border-radius: 4px !important;
}

/* Switcher Controls styling */
.osp-layout-switcher {
    display: inline-flex;
    background: #f0f0f1;
    padding: 3px;
    border-radius: 6px;
    border: 1px solid #ccd0d4;
    gap: 2px;
}

.osp-layout-btn {
    padding: 6px 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #50575e;
    transition: all 0.15s ease-in-out;
}

.osp-layout-btn:hover {
    color: #2271b1;
}

.osp-layout-btn.active {
    background: #ffffff;
    color: #2271b1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Responsive display helper classes override */
@media (min-width: 769px) {
    .osp-grid-list { display: flex !important; }
}

@media (max-width: 768px) {
    .osp-grid-list { display: none !important; }
    .osp-layout-switcher:not(.osp-currency-switcher) { display: none !important; }
}

/* --- BOX / CARDS VIEW GRID & HEIGHT OVERRIDES --- */
.osp-vps-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    align-items: stretch !important;
}

.osp-card-item {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding: 12px !important;
    gap: 8px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02) !important;
}

.osp-card-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 6px !important;
    border-bottom: 1px solid #f1f3f5 !important;
    font-size: 12px !important;
}

.osp-card-label {
    font-size: 11px !important;
    color: #6c757d !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.osp-card-value {
    font-size: 12px !important;
    color: #212529 !important;
}

.osp-card-footer-btn {
    margin-top: auto !important;
    width: 100% !important;
    text-align: center !important;
}

/* Dedicated cards equal height override */
.osp_flex-container.plan_grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    align-items: stretch !important;
}

.osp_flex-container.plan_grid .osp_flex-item {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 12px 55px 12px !important; /* bottom padding makes room for absolute buttons */
    font-size: 13px !important;
    border-radius: 8px !important;
    background-color: #f9f9f9 !important;
    border: 1px solid #dee2e6 !important;
    position: relative !important;
    flex: initial !important;
    margin: 0 !important;
}

.plan_grid .osp_flex-in_row {
    font-size: 12px !important;
    padding: 2px 0 !important;
    border-bottom: 2px dotted #ccc !important;
}

.plan_grid .variant {
    font-size: 16px !important;
    font-weight: bold !important;
}

.plan_grid .buy-now {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    width: calc(100% - 24px) !important;
}

.osp-card-footer-row {
    margin-top: auto !important;
    border: none !important;
    padding: 0 !important;
}

/* Other Service Plans custom styles updates */
.osp-other {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin: 0 !important;
}
 
.osp-other-in {
    border-radius: 8px !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    font-size: 14px !important;
    margin: 0 !important;
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    flex-basis: calc(25% - 12px) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.osp-other-in h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.osp-other-in .oth-head {
    padding: 8px 12px !important;
    background: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.osp-other-in .icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.osp-other-in .icon img {
    width: 24px !important;
    height: 24px !important;
    padding: 4px !important;
}

.osp-other-in .oth-body {
    padding: 10px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    padding-bottom: 60px !important;
}

.osp-other-in .oth-body ul {
    margin: 0 !important;
    padding: 0 !important;
}

.osp-other-in .oth-body li {
    font-size: 13px !important;
    padding: 3px 0 3px 24px !important;
}

.osp-other-in .oth-body li::before {
    font-size: 16px !important;
    top: 2px !important;
}

.osp-other-in .oth-footer {
    padding: 8px 12px !important;
    gap: 8px !important;
    border-top: 1px solid #dee2e6 !important;
}

.osp-other-in .osp-price {
    font-size: 12px !important;
    line-height: 16px !important;
    color: #495057 !important;
}

.osp-other-in .buy-now {
    padding: 6px 12px !important;
    font-size: 13px !important;
    border-radius: 4px !important;
}

.osp-search-toggle-btn:hover {
    color: #2271b1 !important;
    border-color: #2271b1 !important;
    background-color: #ffffff !important;
}

/* --- MERGED FROM LEGACY STYLE.CSS --- */
.os-container { width: 100%; margin: 10px auto; position: relative; height: auto }
.os-row.display-flex { display: flex; flex-wrap: wrap; text-align: center; align-items: center }
.os-row.display-flex > [class*='col-'] { display: flex; flex-direction: column }
.os-row { border-top: solid 1px #f2eee8 }
.os-row:hover { background: #f4f9fd }
#sis-outer { border: solid 1px #ffa602 }
.plan-img { width: auto }
.img-link { display: none; font-size: 20px; color: blue; font-family: sanos-serif; text-align: center; margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; height: 50px; cursor: pointer }
.os-row-1-1,
.os-row-1-6 { margin: 10px auto }
@media (min-width:992px) {
  .os-row-1-1,
  .os-row-1-6 { float: left }
  .os-row-1-1 { width: auto; float: initial; }
  .os-row-1-6 { width: 60% }
}
@media (max-width:992px) {
  .os-row { padding-left: 10px; padding-right: 10px }
  .os-row-1-1,
  .os-row-1-6 { float: left; width: 100% }
}
.order-button { background-color: #002496; border: none; color: #fff; padding: 4px 8px; text-align: center; text-decoration: none; display: inline-block; font-size: 13px; margin: 4px 2px; transition-duration: .4s; cursor: pointer }
.order-button:hover { background-color: #ed2839; color: #fff; text-decoration: none }
.p-detail { background: #ffa602; font-weight: bold; color: #fff }
.usd { display: none }
.switch { position: relative; display: block; width: 100px; height: 30px; padding: 3px; margin: 0 10px 10px 0; background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px); background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px); border-radius: 18px; box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05); cursor: pointer; box-sizing: content-box }
.switch-input { position: absolute; top: 0; left: 0; opacity: 0; box-sizing: content-box }
.switch-label { position: relative; display: block; height: inherit; font-size: 10px; text-transform: uppercase; background: #eceeef; border-radius: inherit; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15); box-sizing: content-box }
.switch-label:before,
.switch-label:after { position: absolute; top: 50%; margin-top: -.5em; line-height: 1; -webkit-transition: inherit; -moz-transition: inherit; -o-transition: inherit; transition: inherit; box-sizing: content-box }
.switch-label:before { content: attr(data-off); right: 11px; color: #aaaaaa; text-shadow: 0 1px rgba(255, 255, 255, 0.5) }
.switch-label:after { content: attr(data-on); left: 11px; color: #FFFFFF; text-shadow: 0 1px rgba(0, 0, 0, 0.2); opacity: 0 }
.switch-input:checked ~ .switch-label { background: #E1B42B; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2) }
.switch-input:checked ~ .switch-label:before { opacity: 0 }
.switch-input:checked ~ .switch-label:after { opacity: 1 }
.switch-handle { position: absolute; top: 4px; left: 4px; width: 28px; height: 28px; background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0); background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0); border-radius: 100%; box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) }
.switch-handle:before { content: ""; position: absolute; top: 50%; left: 50%; margin: -6px 0 0 -6px; width: 12px; height: 12px; background: linear-gradient(to bottom, #eeeeee, #FFFFFF); background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF); border-radius: 6px; box-shadow: inset 0 1px rgba(0, 0, 0, 0.02) }
.switch-input:checked ~ .switch-handle { left: 74px; box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2) }
.switch-label,
.switch-handle { transition: All 0.3s ease; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease }
.switch-left-right .switch-label { overflow: hidden }
.switch-left-right .switch-label:before,
.switch-left-right .switch-label:after { width: 20px; height: 20px; top: 4px; left: 0; right: 0; bottom: 0; padding: 11px 0 0 0; text-indent: -12px; border-radius: 20px; box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2), inset 0 0 3px rgba(0, 0, 0, 0.1) }
.switch-left-right .switch-label:before { background: #eceeef; text-align: left; padding-left: 80px }
.switch-left-right .switch-label:after { text-align: left; text-indent: 9px; background: #FF7F50; left: -100px; opacity: 1; width: 100% }
.switch-left-right .switch-input:checked ~ .switch-label:before { opacity: 1; left: 100px }
.switch-left-right .switch-input:checked ~ .switch-label:after { left: 0 }
.switch-left-right .switch-input:checked ~ .switch-label { background: inherit }
.switcher .selected { margin-top: 7px }
.switcher { margin: auto }
.curconevrt { margin: 0px; width: 205px; height: 40px; background: #fff; border-radius: 26px; overflow: hidden; position: relative; transition: all 0.3s ease; display: inline-block; box-shadow: 0px 6px 10px rgba(31, 53, 70, 0.04), 0px 0px 3px rgba(31, 53, 70, 0.06), 0px 0px 2px rgba(0, 0, 0, 0.1); cursor: pointer; padding: 0 5px 0 0; }
.curconevrt input[type="radio"] { display: none; }
.curconevrt label { display: inline-block; background-color: #fff; padding: 8px 14px; font-family: Arial; font-size: 17px; cursor: pointer; border-radius: 26px; height: 32px; margin-top: 4px; line-height: normal; }
.curconevrt input[type="radio"]:checked+label { background-color: #643197; color: #fff; box-shadow: 0px 0px 4px -2px #111; transition: all 0.3s ease; }
.osp-other { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; margin: auto -10px; padding: 10px 0; }
.osp-other-in { position: relative; flex-grow: 1; flex-basis: calc(100% / 4 - 20px); align-content: flex-start; background: #fff; -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25); -ms-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25); -o-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25); overflow: hidden; margin: 10px; }
.osp-other-in img { width: 85px; display: inline-block; margin: auto; }
.osp-other-in ul { padding: 0; margin: 0; }
.osp-other-in li { border-bottom: solid 1px #fff0f0; list-style: none; padding: 0 0 0 30px; position: relative; text-align: left; }
.osp-other-in li:last-child { border: none }
.osp-other-in li::before { position: absolute; content: "\f12a"; font-family: dashicons; line-height: 1; font-weight: 400; font-style: normal; text-transform: none; text-rendering: auto; font-size: 20px; text-align: center; left: 0; top: 0; }
.osp-other-in .osp-price { text-align: left; display: inline-block; font-size: 11px; font-weight: 800; width: 50%; color: #282828; }
.osp-other-in .buy-now { width: 100%; background-image: linear-gradient(to right, #434343 0%, black 100%); border: none; color: #fff; padding: 10px; line-height: 20px; }
.osp-other-in a { text-align: left; display: inline-block; width: 50%; }
.osp-other-in h3 { padding: 0; margin: 0; color: #fff; text-align: left; font-size: 17px; display: inline; line-height: 22px;}
.osp-other-in em { font-size: 12px; font-weight: 400; }
.osp-other-in img { width: 70px; display: inline-block; margin: auto; padding: 5px; max-width: initial;}
.osp-other-in .oth-head { background-image: linear-gradient(to right, #434343 0%, black 100%); padding: 10px; display: flex; gap: 10px; align-items: center; }
.osp-other-in .oth-footer { position: absolute; bottom: 0; width: 100%; background: #f2f2f2; display: flex; padding: 10px 10px; gap: 10px; align-items: center; }
.osp-other-in .oth-body { padding: 10px; padding-bottom: 80px; }
.osp-other-in .oth-head a { text-align: center; width: 100%; }
.osp-other-in .icon { width: 70px; height: 70px; background: #fff; display: block;}
@media (max-width:768px) {
  .osp-other-in { flex-basis: 100%; }
}
.osp-other-in .osp-price n {
  color: #6aaf4b;
  font-size: 17px;
  font-weight: 800;
}
.osp-other-in .buy-now {
  background-image: linear-gradient(to right, #f89a04  0%, #cd4604 100%);
}
.osp-other-in li::before {
  color: #6aaf4b;
  top: 5px;
}
.osp-other-in .oth-head {
  background: #fff !important;
  border-bottom: solid 1px #f2f2f2;
}
.osp-other-in .oth-footer {
  background: #fff;
  border-top: solid 1px #f2f2f2;
}
.osp-other-in .icon {
  border-radius: 50%;
  border: solid 2px #effde9;
}
.osp-other-in img {
  padding: 10px
}
.osp-other-in li {
  padding: 4px 0 4px 30px;
}
.osp-other-in .osp-price {
  color: #8c7a7a;  
  line-height: 17px;
}
.osp-other-in h3 {
  color: #8c7a7a !important;
}
#osp-sheet img {
  width: 24px;
  display: inline;
}
.sis-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.sis-col-6 {
  width: 50%;
}
@media (max-width: 768px) {
  .sis-col-6 {
    width: 100%;
  }
}

/* Tablet Override (between 481px and 768px): Show exactly 2 columns */
@media (min-width: 481px) and (max-width: 768px) {
    .osp-vps-cards-grid,
    .osp_flex-container.plan_grid,
    .osp-skeleton-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .osp-other-in {
        flex-basis: calc(50% - 8px) !important;
        max-width: calc(50% - 8px) !important;
    }
}

/* Mobile Phone Override (480px and below): Show exactly 1 column (100% width) */
@media (max-width: 480px) {
    .osp-vps-cards-grid,
    .osp_flex-container.plan_grid,
    .osp-skeleton-cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .osp-other-in {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }
}


/*# sourceMappingURL=osp-frontend.css.map*/