.card-wrap {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.card-wrap * {
    box-sizing: border-box;
}
:root {
    --bs-blue: #0a9ad1;
    --bs-indigo: #6610f2;
    --bs-purple: #6f46ff;
    --bs-red: #db1a2a;
    --bs-yellow: #ffed03;
    --bs-green: #19b8a2;
    --bs-cyan: #0dcaf0;
    --bs-gray: #4b5563;
    --bs-gray-dark: #1f2937;
    --bs-primary: #0a9ad1;
    --bs-primary-light: #0a9ad1; 
    --bs-secondary: #4b5563;
    --bs-success: #19b8a2;
    --bs-info: #0dcaf0;
    --bs-warning: #ffed03;
    --bs-danger: #db1a2a;
    --bs-light: #f3f5f6;
    --bs-dark: #111827;
    --bs-facebook: #3b5998;
    --bs-twitter: #0a9ad1;
    --bs-white: #fff;
    --bs-pink: #ffa69e;
    --bs-teal: #08c5d5;
    --bs-orange: #fc6229;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(
            180deg,
            hsla(0, 0%, 100%, 0.15),
            hsla(0, 0%, 100%, 0)
    );
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 4.375rem);
    padding-left: var(--bs-gutter-x, 4.375rem);
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1400px) {
    .container-xxl {
        max-width: 1320px;
    }
}
/*@media (min-width: 1600px) {
    .container-xxl {
        max-width: 1440px;
    }
}*/
.row {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.6666666667%;
    }
}
.table {
    --bs-table-bg: transparent;
    --bs-table-striped-color: #111827;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #111827;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #111827;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #111827;
    vertical-align: top;
    border-color: #e5e7eb;
}
.table > :not(caption) > * > * {
    padding: 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
    vertical-align: inherit;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.form-label {
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    display: block;
}
.col-form-label {
    padding-top: calc(0.85rem + 1px);
    padding-bottom: calc(0.85rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    font-weight: 500;
    line-height: 1.5;
    text-align:left;
    color: #000;
}
[name="count"] {
    max-width: 90px;
}
.form-control {
        display: block;
    width: 100%;
    padding: 8px 8px !important;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1.5;
    color: #111827;
    background-color: #fff !important;
    background-clip: padding-box;
    border: 1px solid #d1d5db !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: auto !important;
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control:focus {
    color: #111827;
    background-color: #fff;
    border-color: #111827;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(17, 24, 39, 0.25);
}
.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}
.form-control::-moz-placeholder {
    color: #4b5563;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #4b5563;
    opacity: 1;
}
.form-control:disabled {
    background-color: #e5e7eb;
    opacity: 1;
}
.form-control::file-selector-button {
    padding: 0.85rem 0.75rem;
    margin: -0.85rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #111827;
    background-color: #e5e7eb;
    pointer-events: none;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dadbdf;
}
.form-control::-webkit-file-upload-button {
    padding: 0.85rem 0.75rem;
    margin: -0.85rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #111827;
    background-color: #e5e7eb;
    pointer-events: none;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dadbdf;
}
.form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    -webkit-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
}
.form-control-lg::file-selector-button {
    padding: 1.5rem 2rem;
    margin: -1.5rem -2rem;
    -webkit-margin-end: 2rem;
    margin-inline-end: 2rem;
}
textarea.form-control {
    min-height: calc(1.5em + 1.7rem + 2px);
    max-width: 100%;
    width: 100% !important;
}
.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}
.input-group > .form-control:focus {
    z-index: 3;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.71rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #111827;
    text-align: center;
    white-space: nowrap;
    background-color: #d1d5db;
    border: 1px solid #d1d5db;
    /*border-radius: 0;*/
    border-radius: 0 0.5rem 0.5rem 0;
}
.input-group:not(.has-validation)
> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group
> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    color: #111827;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}
.btn:hover {
    color: #111827;
}
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(17, 24, 39, 0.25);
}
.btn:disabled {
    pointer-events: none;
    opacity: 0.65;
}
.btn-primary {
    color: #fff;
    /*background-color: var(--bs-primary);*/
    /*border-color: var(--bs-primary);*/
}
.btn-primary:focus,
.btn-primary:hover { 
    opacity: 0.8;
}
#documentContent.white {
    background-color: #ffffff;
}
.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 119, 237, 0.5);
}
.btn-primary:active {
    color: #fff;
    background-color: #0077ED;
    border-color: #0077ED;
}
.btn-primary:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 119, 237, 0.5);
}
.btn-primary:disabled {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}


.btn-outline-secondary {
    /*color: #4b5563;*/
    /*border-color: #4b5563;*/
}
.btn-outline-secondary:hover {
    /*color: #fff;*/
    /*background-color: #4b5563;*/
    /*border-color: #4b5563;*/
    opacity: 0.8;
}
.btn-outline-secondary:focus {
    /*box-shadow: 0 0 0 0.25rem rgba(75, 85, 99, 0.5);*/
}
.btn-outline-secondary:active {
    /*color: #fff;*/
    /*background-color: #4b5563;*/
    /*border-color: #4b5563;*/
}

.btn-lg {
    padding: 9px 23px;
    font-size: 1.25rem;
    border-radius: 0;
}
.btn-md {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
}
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0;
}

body.navbar-offset {
    padding-top: 126.5px;
}
@media (max-width: 767.98px) {
    body.navbar-offset {
        padding-top: 88px;
    }
}
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-flex {
    display: flex !important;
}
.border {
    border: 1px solid #e5e7eb !important;
}
.border-bottom {
    border-bottom: 1px solid #e5e7eb !important;
}
.w-50 {
    width: 50% !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.align-items-center {
    align-items: center !important;
}
.m-0 {
    margin: 0 !important;
}
.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.my-4 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.p-0 {
    padding: 0 !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.pt-4 {
    padding-top: 1.5rem !important;
}
.pe-4 {
    padding-right: 1.5rem !important;
}
.pb-3 {
    padding-bottom: 1rem !important;
}
.pb-4 {
    padding-bottom: 1.5rem !important;
}
.fs-5 {
    font-size: 16px !important;
}
.fs-6 {
    font-size: 1rem !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-bolder {
    font-weight: 500 !important;
}
.text-decoration-none {
    text-decoration: none !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
.text-muted {
    color: #6b7280 !important;
}
.bg-light {
    background-color: #f7f7f7  !important;
}
.rounded {
    border-radius: 0.5rem !important;
}
.rounded-end {
    border-top-right-radius: 0.5rem !important;
}
.rounded-end {
    border-bottom-right-radius: 0.5rem !important;
}
.rounded-start {
    border-bottom-left-radius: 0.5rem !important;
}
.rounded-start {
    border-top-left-radius: 0.5rem !important;
}
:root {
    --bs-font-sans-serif: "Onest", sans-serif;
    --bs-spacer: 1rem;
    --bs-gutter-width: 2.5rem;
    --theme-font-headings: "Onest", sans-serif;
    --theme-font-icon: "remixicon";
    --theme-font-icon-style: "normal";
    --theme-breakpoint-xs: 0;
    --theme-breakpoint-sm: 576px;
    --theme-breakpoint-md: 768px;
    --theme-breakpoint-lg: 992px;
    --theme-breakpoint-xl: 1200px;
    --theme-breakpoint-xxl: 1400px;
    --theme-maxwidth-breakpoint-sm: 100%;
    --theme-maxwidth-breakpoint-md: 100%;
    --theme-maxwidth-breakpoint-lg: 100%;
    --theme-maxwidth-breakpoint-xl: 1140px;
    --theme-maxwidth-breakpoint-xxl: 1320px;
    --theme-form-checkbox-before-size: 20px;
    --theme-form-checkbox-bg-before-size: 28px;
    --theme-form-checkbox-after-width: 6px;
    --theme-form-checkbox-after-height: 12px;
    --theme-form-checkbox-border-radius: 2px;
    --theme-form-checkbox-after-position-left: 7px;
    --theme-form-checkbox-after-position-top: 4px;
    --theme-form-checkbox-bg-after-position-left: 11px;
    --theme-form-checkbox-bg-after-position-top: 7px;
    --theme-form-checkbox-after-border-width: 2px;
    --theme-form-checkbox-active-color: #0a9ad1;
    --theme-form-radio-button-after-size: 10px;
    --theme-form-radio-button-after-position-left: 5px;
    --theme-form-radio-button-after-position-top: 6px;
    --theme-form-radio-button-border-radius: 100%;
    --theme-btn-psuedo-width: 50px;
    --theme-btn-psuedo-height: 2px;
    --theme-cart-dropdown-width: 28rem;
}
body {
    overflow-x: hidden;
}
.h5,
h4 {
    font-family: var(--theme-font-headings);
}
.btn:active,
.btn:focus {
    box-shadow: none;
}
@media (max-width: 1199.98px) {
    :root {
        --bs-gutter-x: 3rem;
    }
}
@media (max-width: 991.98px) {
    :root {
        --bs-gutter-x: 2rem;
    }
}
@media (max-width: 575.98px) {
    :root {
        --bs-gutter-x: 1rem;
    }
}
.form-check-custom {
    position: relative;
    padding: 0;
}
.form-check-custom input {
    position: absolute;
    opacity: 0;
    margin: 0;
}
.form-check-custom input:checked + label:before {
    border-color: var(--theme-form-checkbox-active-color);
}
.form-check-custom input:checked + label:after {
    opacity: 1;
}
.form-check-custom input:disabled + label {
    cursor: default;
}
.form-check-custom label {
    margin: 0;
    cursor: pointer;
}
.form-check-custom label:before {
    width: var(--theme-form-checkbox-before-size);
    height: var(--theme-form-checkbox-before-size);
    border-radius: var(--theme-form-checkbox-border-radius);
    display: inline-block;
    content: "";
    border: 1px solid #e5e7eb;
    vertical-align: text-bottom;
    margin-right: 0.5rem;
}
.form-check-custom label:after {
    content: "";
    position: absolute;
    display: block;
    height: var(--theme-form-checkbox-after-height);
    width: var(--theme-form-checkbox-after-width);
    border-bottom: var(--theme-form-checkbox-after-border-width) solid
    var(--theme-form-checkbox-active-color);
    border-right: var(--theme-form-checkbox-after-border-width) solid
    var(--theme-form-checkbox-active-color);
    transform: rotate(45deg);
    left: var(--theme-form-checkbox-after-position-left);
    top: var(--theme-form-checkbox-after-position-top);
    opacity: 0;
}
.form-radio-custom label {
    display: block;
    padding-left: 1.95rem;
}
.form-radio-custom label:before {
    border-radius: var(--theme-form-radio-button-border-radius);
    border: 2px solid #e5e7eb;
    position: absolute;
    left: 0;
    top: 4px;
}
.form-radio-custom label:after {
    height: var(--theme-form-radio-button-after-size);
    width: var(--theme-form-radio-button-after-size);
    border-radius: var(--theme-form-radio-button-border-radius);
    left: 5px;
    top: 9px;
    background: var(--theme-form-checkbox-active-color);
}
.form-radio-highlight input:checked + label {
    border-color: var(--theme-form-checkbox-active-color);
    color: var(--theme-form-checkbox-active-color);
}
.form-radio-highlight label {
    display: block;
    border: 1px solid #e5e7eb;
   padding: 8px 9px;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: bold;
}
.form-radio-highlight label:after,
.form-radio-highlight label:before {
    display: none !important;
}
.form-control:focus,
input:focus {
    box-shadow: none !important;
}
.form-group {
    margin-bottom: 6px;
}

@font-face {
    font-family: "remixicon";
    src: url('../fonts/remixicon/remixicon.eot'); /* IE9*/
    src: url('../fonts/remixicon/remixicon.eot#iefix') format('embedded-opentype'),
    url("../fonts/remixicon/remixicon.woff2") format("woff2"),
    url("../fonts/remixicon/remixicon.woff") format("woff"),
    url('../fonts/remixicon/remixicon.ttf') format('truetype'),
    url('../fonts/remixicon/remixicon.svg#remixicon') format('svg'); /* iOS 4.1- */
    font-display: swap;
}

[class*=" ri-"],
[class^="ri-"] {
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ri-lg {
    font-size: 1.3333em;
    line-height: 0.75em;
    vertical-align: middle;
}
.ri-close-line:before { content: "\eb99"; }

.btn {
    border-radius: 50px;
}

.btn-sm {
    padding: 0.5rem 1rem;
}

.cart-table tr th {
    padding: 1rem;
    background: none;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: none;
}

.cart-table tr td {
    padding: 1.5rem;
    background: none;
    border-bottom: none;
    box-shadow: none;
    vertical-align: top !important;
}

.ms-image a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    overflow: hidden;
}

.ms-image a img {
    width: auto;
    height: 5rem;
}

.cart-table .ms-count .input-group {
    max-width: 8rem;
}

.cart-table .ms-count,
.cart-table .ms-price,
.cart-table .ms-cost {
    width: 17.5%;
}

.cart-table .ms-remove {
    width: 5%;
}

.cart-table .ms-footer th {
    border-bottom: none !important;
    padding: 0;
}

#msOrder .required-star {
    color: red !important;
    font-size: 1.5rem;
}
#msOrder {
    margin-top: 20px !important;
}

.detail-price-item {
    position: relative;
    width: fit-content;
}
body #msCart .old_price {
    color: #ccc;
    font-weight: 400;
    font-style: inherit;
}
body #msCart .detail-price-item{
    min-width: 116px;
}

.detail-price-info {
    position: absolute;
    right: -17px;
    top: 1px;
    z-index: 2;
    cursor: pointer;
}

.detail-price-info span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 12px;
    background: #5dacf9;
    color: #fff;
    font-weight: 100;
}

.detail-price-info span[data-text]:before {
    content: attr(data-text);
    position: absolute;
    top: calc(100% + 3px);
    right: 0;
    z-index: 2;
    background: #fff;
    padding: 4px;
    border-radius: 3px;
    font-size: 12px;
    width: fit-content;
    color: #000;
    white-space: nowrap;
    box-shadow: 0 0 5px #0000002e;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    top: calc(100%);
}

.detail-price-info span[data-text]:hover:before {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}
@media (max-width:520px) {
    .row {
        --bs-gutter-x: 1.5rem;
    }
}

[name="ms2_action"] {
    font-size: 17px;
    color: #fff;

    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
     margin-right: 15px;
    padding: 15px 20px;
    display: block;
        margin: 0; 
        background: #0a9ad1;
    color: #fff;
    border: none;
 
}
.card-wrap [name="ms2_action"] {
    padding: 10px 15px;
}
.prod-actions-wrap [name="ms2_action"]  {
    margin-left: 15px;
}
.catalog .span3 {
    width: 256px;
}
.span9.catalog {
    width: calc(100% - 380px);
    margin-left: auto;
}
.bs-docs-sidebar {
        width: 270px !important;
}
.mini-cart-icon span {
    position: absolute;
    background: #ffffff;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    font-weight: bold;
    padding-top: 2px;
    border-radius: 4px;
    font-size: 11px;
    top: -7px;
    right: -13px;
}
.mini-cart-icon img {
    max-width: 30px;
    width: 30px;
}
.mini-cart-icon {
    position: relative;
    width: fit-content;
}

.navbar-inner .nav-collapse.collapse {
    display: flex;
        justify-content: space-around;
}

.mini-card-wrap {
    margin-left: 15px;
    margin-top: 5px;
}

.navbar .nav > li > a { 
    padding: 10px 10px 10px;
}

.article {
    text-align: right;
    color: #000;
    font-size: 15px;
    margin: 20px 0;
}

.price > h4 {
    font-size: 30px; 
}

.prod-actions-wrap { 
    display: flex;
    align-items: flex-end;
}

.bs-docs-description {
    margin-bottom: 0;
    padding-bottom: 0;
}


.bs-docs-sidenav li {
    position: relative;
}

.bs-docs-sidenav li > ul {
   left: 100%  !important;
    top: 0;
        margin: 0 !important;
} 

.bs-docs-sidenav li > ul > li > ul {
 left: calc(100% + 30px); !important;
 top: -5px;
}