:root {
    --color-dark: #111111;
    --color-white: #ffffff;
    --color-primary: #E2131B;
    --color-sec: #0DCB43;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 12rem;
    scroll-behavior: smooth;
}

* {
    transition: .1s ease-in;
}

/*  Custom */
.color-dark {
    color: var(--color-dark);
}

.color-primary {
    color: var(--color-primary);
}

.bg-sec {
    background: var(--color-sec);
}

.bg-primary, bg-primary:hover, .bg-primary:active {
    background-color: var(--color-primary) !important;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

a.nav-link.active {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}

/*  End Custom*/


/*  Back To Top*/
.back-to-top {
    position: fixed;
    right: 1.875rem;
    bottom: 1.875rem;
    width: 3.125rem;
    height: 3.125rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    line-height: 3.125rem;
    border-radius: 50%;
    z-index: 99;
    font-size: 1.563rem;
    cursor: pointer;
    -webkit-box-shadow: 0 0 0.313rem rgba(0, 0, 0, .5);
    box-shadow: 0 0 0.313rem rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
}


/*  Nav*/

.logo {
    width: 11.438rem;
}

.nav-link {
    font-size: 1.125rem;
    color: var(--color-dark);
}

.nav-link:hover,
.nav-link:active {
    color: var(--color-primary);
}

/*  End Nav*/

/*  Slider  */
.header-area {
    padding: 14.75rem 0 0;
    position: relative;
}

.home-slider-item {
    width: 100%;
    min-height: auto;
    height: 53.288rem;
    position: relative;
    background-position: center !important;
    background-color: rgba(17, 17, 17, 0.6) !important;
    background-blend-mode: overlay;
    z-index: 1;
}

.home-slider-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}

.header-inner {
    position: relative;
    z-index: 1;
    max-width: 670px;
}

.header-inner .sub-title {
    font-size: 2rem;
    color: var(--color-white);
    line-height: 2.688rem;
    text-transform: uppercase;
    margin: 0;
}

.header-inner .title {
    font-size: 3.25rem;
    color: var(--color-white);
    line-height: 130%;
    text-transform: uppercase;
    margin: 0;
}

.color-primary {
    color: var(--color-primary) !important;
}

.header-inner .title-2 {
    font-size: 4.5rem;
    color: var(--color-white);
    line-height: 6.125rem;
    text-transform: uppercase;
    margin: 1.5rem 0 .5rem;
}

.header-inner .description {
    font-size: 1.5rem;
    color: var(--color-white);
    line-height: 2.188rem;
    margin: 1.5rem 0;
}

.boxed-btn {
    font-size: 1rem;
    line-height: 130%;
    text-align: center;
    text-decoration: none;
    color: var(--color-white);
    text-transform: uppercase;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    padding: 1rem 2.25rem;
}

.boxed-btn.bg-outline-light {
    border: 1px solid var(--color-white);
    background-color: transparent;
}

.boxed-btn:first-child {
    margin-right: 1rem;
}

html[dir="rtl"] .boxed-btn:first-child {
    margin-left: 1rem;
    margin-right: unset;
}

.boxed-btn:hover, .boxed-btn:active, .boxed-btn:focus {
    color: var(--color-white);
}

.boxed-btn.bg-warning {
    position: relative;
    background-color: var(--color-warning) !important;
    z-index: 0;
}

.header-slider .slick-dots {
    position: absolute;
    bottom: 2.813rem;
    height: 0;
    width: 100%;
    left: 0;
}

.header-slider .slick-dots li {
    margin-right: 1rem;
    width: auto;
    height: auto;
}

html[dir="rtl"] .header-slider .slick-dots li {
    margin-left: 1rem;
    margin-right: unset;
}

.header-slider .slick-dots li:last-child {
    margin-right: 0;
}

.header-slider .slick-dots li > button {
    margin: 0 !important;
    line-height: normal;
    background: var(--color-white) !important;
    width: 4rem !important;
    height: 0.375rem !important;
    border-radius: 0 !important;
    opacity: 1;
    padding: 0;
}

.header-slider .slick-dots li.slick-active > button {
    background: var(--color-primary) !important;
}

.header-inner {
    overflow: hidden;
}

.header-slider .slick-active .header-inner .title {
    -webkit-animation: slideInLeft 2s 0s both;
    animation: slideInLeft 2s 0s both
}

.header-slider .slick-active .header-inner .description {
    -webkit-animation: slideInLeft 2s 1s both;
    animation: slideInLeft 2s 1s both
}

.header-slider .slick-active .header-inner .btn-wrapper {
    -webkit-animation: fadeIn 2s 2s both;
    animation: fadeIn 2s 2s both
}

/* slideInLeft */
@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

/*  End Slider*/


/*  Service */
.services {
    background: #F5F7F8
}

.services .container {
    position: relative;
    padding: 7.75rem 15px 12.076rem;
}

.services.custom-services {
    padding: 0 0 4.5rem;
    background: none;
}

.services.custom-services::before {
    content: none;
}

.services .small-border {
    margin: 1rem 0 1.5rem;
}

.service-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.services-title {
    font-size: 3.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.services-description {
    font-size: 2.625rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 700;
}

.services-sub-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: 400;
}

.services .boxed-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 0.375rem;
    display: inline-block;
    font-size: 1.4rem;
    text-transform: initial;
}

.services-details {
    margin: 0;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: 12%;
}

html[dir="rtl"] .swiper {
    margin-left: unset;
    margin-right: 12%;
    float: right;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    font-size: 1.375rem;
    font-weight: bold;
    color: #fff;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 10.19%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

html[dir="rtl"] .swiper::before {
    left: unset;
    right: 0;
}

.swiper-slide > img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.swiper-slider-content {
    position: absolute;
    bottom: 2.25rem;
    padding: 0 2.5rem;
}

.swiper-slider-content h1 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.swiper-slider-content p {
    margin: 0;
    font-size: 0.75rem;
}

.experience-work {
    position: absolute;
    right: 0;
    bottom: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.experience-work::before {
    content: "";
    position: absolute;
    width: 0.625rem;
    height: 6rem;
    background-color: var(--color-dark);
    right: -1.25rem;
    bottom: 0;
}

.experience-work h1 {
    font-size: 3.625rem;
    color: rgba(17, 17, 17, 0.1);
    margin-bottom: 0;
    line-height: 130%;
    font-weight: 700;
}

.experience-work p {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-dark);
}

/*  End Service*/


/*  About Us*/
.about-us {
    padding: 4.5rem 0 6rem;
    background: url("../img/about-bg.png");
}

.about-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 14%;
    grid-gap: 3%;
}

.about-content {
    display: grid;
    grid-template-columns: .5fr 1fr;
    grid-gap: 1.25rem;
    align-items: center;
    border-right: 2px solid var(--color-dark);
    padding-right: 1rem;
}

html[dir="rtl"] .about-content {
    border-right: unset;
    border-left: 2px solid var(--color-dark);
    padding-right: unset;
    padding-left: 1rem;
}

.about-img {
    width: 12.5rem;
    height: 15rem;
    border-radius: .5rem;
    overflow: hidden;
}

.about-img > img {
    object-fit: cover;
}

.about-details h1 {
    font-size: 2rem;
    color: #000000;
    letter-spacing: .04em;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 130%;

}

.about-details .sub-title {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
    line-height: 130%;
    opacity: .8;
}

.about-details .details {
    font-size: 0.938rem;
    color: var(--color-dark);
    margin: 0;
}

.partners h1 {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: 0.03em;
    color: var(--color-dark);
}

.partners .nav-pills {
    height: 2.688rem;
    background: #C01220;
    border-radius: .5rem;
    display: flex;
    justify-content: space-between;
    gap: 0.625rem;
}

.partners .nav-pills .nav-link,
.partners .nav-pills .nav-link.active,
.partners .nav-pills .show > .nav-link {
    background-color: transparent;
    border-radius: 0;
    color: var(--color-white);
}

.partners-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-gap: 0.625rem 1.875rem;
}

/*  End About Us*/

/*  Footer*/
.footer-widget {
    padding: 4.375rem 0 5.75rem;
    background-color: #191919;
    font-size: 0.875rem;
}

.powered-by {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
    -moz-column-gap: 5px;
    -webkit-column-gap: 5px;
}

.powered-by img {
    width: 2.5rem;
}

.footer-widget .list-unstyled {
    margin-bottom: 0;
}

.footer-description {
    font-size: 0.875rem;
    margin: 1.5rem 0 1rem;
    line-height: normal;
    opacity: .8;
}

.footer-details span {
    font-size: 0.875rem;
}

.footer-details .icon {
    font-size: 1.125rem;
    position: relative;
    top: 3px;
}

.opacity-60 {
    opacity: .6 !important
}

.footer-head {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1.5rem;
}

.mt-42 {
    margin-top: 2.625rem;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-28 {
    margin-bottom: 28px;
}

.mr-4px {
    margin-right: 3.7px;
}

.pre-line {
    white-space: pre-line;
}

footer {
    background-color: #191919;
    color: #ffffff;
    font-size: 0.875rem;
}

.logo-footer {
    width: 10.938rem;
}

.social {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    justify-content: start;
    align-items: center;
}

.social a {
    color: var(--color-white);
    display: inline-block;
}

.social .list-inline-item {
    margin-right: 1.125rem;
    line-height: 0;
}

.social .list-inline-item:last-child {
    margin-right: 0;
}

.head-footer {
    border-color: var(--color-dark) !important;
    border-width: 3px !important;
}

.head-footer-right {
    margin-right: 1.563rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.head-footer-center {
    font-size: 1.25rem;
    font-weight: 500;
}

.head-footer-left {
    flex: 1;
    text-align: center;
}

.head-footer-left a {
    position: relative;
    padding-right: 5rem;
    text-align: center;
    margin: auto;
}

.head-footer-left a:first-child {
    margin-left: 3.75rem;
}

.head-footer-left a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 1.875rem;
    background-color: var(--color-dark);
    border-radius: 1.875rem;
}

.head-footer-left a:last-child::after {
    content: none;
}

.copyright-footer {
    border-color: var(--color-dark) !important;
    border-width: 3px !important;
}

/*  End Footer*/


/* Get Start*/
.get-start {
    position: relative;
    height: 53.5rem;
    z-index: 0;
    min-height: 37.5rem;
}

.get-start-image {
    width: 100%;
    height: 100%;
}

.get-start-image > img {
    width: 100%;
    height: 100%;
}

.get-start::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(17, 17, 17, 0.7);
    z-index: 0;
}

.get-start-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
    gap: 0.625rem;
}

.get-start-buttons > .btn:hover,
.get-start-buttons > .btn:active,
.get-start-buttons > .btn {
    padding: 1rem !important;
    color: var(--color-white);
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 500;
    background-color: inherit;
}

/* Section Create Order*/
.card-create-order {
    margin: 5.75rem 7.563rem 7.125rem;
    padding: 2.813rem;
    border-radius: 0.75rem;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.15));
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.125rem;
}

.card-create-order .img {
    border-radius: 0.75rem;
    overflow: hidden;
}

.card-create-order h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 130%;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.card-create-order h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 2.175rem;
    line-height: 130%;
    color: #000000;
    margin-bottom: 0;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #C8C8C8;
    margin: 1.5rem 0;
}

.line2 {
    width: 100%;
    height: 3px;
    background-color: #E3E3E3;
    margin: .5rem 0 1rem;
}

.card-create-order .form-group {
    margin-bottom: 0.875rem;
}

textarea.form-control,
input.form-control,
a.form-control,
.bootstrap-select .dropdown-toggle {
    height: 4.063rem;
    background: #F5F5F5 !important;
    border-radius: .25rem;
    border: none !important;
}
.custom-file-container__custom-file__custom-file-control {
    color: #898b92;
    font-size: 0.875rem;
}

.contact-item {
    border: 1px dashed #C0C0C0;
    margin-bottom: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    padding: 0.625rem;
}

.contact-item .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
}

.contact-item .item > span, .contact-item .item > .phone {
    color: #111111;
    font-size: 1rem;
    font-weight: 500;
    display: block;
}
.contact-item .item > span {
    display: flex;
    justify-content: start;
    align-items: self-start;
    flex-direction: column;
}
.contact-item .item .email {
    font-size: 1rem;
    color: #898989;
    line-height: 130%;
}

.contact-item .item + .item {
    margin-top: 1rem;
}

.contact-item .item .la {
    font-size: 1.5rem;
    color: #898989;
}

a.form-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
}

.card-create-order button.form-control {
    padding: 1.125rem 2.375rem;
    height: 4.375rem;
    border-radius: .5rem;
    background-color: var(--color-primary);
    font-size: 1.5rem;
    color: var(--color-white);
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-top: 1.75rem;
}

.bootstrap-select .dropdown-toggle {
    padding: 1.313rem 1.2rem;
}

/* Customer Receipt */
.customer-receipt {
    margin: 5.75rem 7.563rem 7.125rem;
}

.card-receipt {
    padding: 2.813rem;
    border: 1px solid #D9D9D9;
    border-radius: .5rem;
}

.card-receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.875rem;
}

.card-receipt-title {
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    line-height: 130%;
    margin-bottom: 0.75rem;
}

.card-row-title {
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 130%;
    margin-bottom: 0;
}

.card-row-span {
    font-style: normal;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 130%;
    text-align: center;
    color: var(--color-primary);
}

.card-row-span.success {
    font-size: 1.75rem;
    color: #0DCB43;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-row.less-gap {
    justify-content: start;
    gap: 7.75rem;
}

.card-row input {
    width: auto;
}

.card-receipt .btn {
    display: block;
    margin-left: auto;
}

html[dir="rtl"] .card-receipt .btn {
    margin-left: unset;
    margin-right: auto;
}

/* Follow Order*/
.follow-order {
    position: relative;
    background: url("../img/login.png") no-repeat center;
    background-size: cover;
}

.follow-order::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.stepper {
    background: #F7F8F8;
    height: 4.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.order-header {
    margin: 0 6.875rem;
}

.order-header-img {
    position: relative;
    border-radius: 1rem;
    background-blend-mode: overlay;
    background-color: rgba(17, 17, 17, 0.3);
    background-image: url("../img/order-header.png");
    background-size: cover;
    overflow: hidden;
    height: 43.125rem;
}

/* Stepper*/
.step-item {
    width: 3.5rem;
    height: 3.5rem;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 100%;
    color: #D9D9D9;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.aiz-steps.arrow-divider > .col::before {
    content: "";
    height: .25rem;
    width: 100%;
    background: #D9D9D9;
    position: absolute;
    left: unset;
    right: -50%;
    top: 33%;
    opacity: 1 !important;
    z-index: 0;
    transform: translate(0%, -50%);
}

html[dir="rtl"] .aiz-steps.arrow-divider > .col::before {
    left: -50%;
    right: unset;
}

.aiz-steps.arrow-divider > .col:not(.aiz-steps.arrow-divider > .col.active ~ .col):not(.active):not(.aiz-steps.arrow-divider > *:first-child)::before {
    background: var(--color-primary);
}

.aiz-steps.arrow-divider > .col:not(.aiz-steps.arrow-divider > .col.active ~ .col):not(.active):not(.aiz-steps.arrow-divider > *:first-child) .step-item {
    background: var(--color-primary);
    color: var(--color-white);
}


.aiz-steps.arrow-divider > .col:first-of-type::before {
    background: #0DCB43;
}

.aiz-steps.arrow-divider > *:last-of-type::before {
    content: none !important;
}

/*a:not(.parent a.active ~ a)*/

.col.active .step-item {
    background: var(--color-primary);
}

.col.active h3 {
    color: var(--color-primary);
}

.step-success .step-item {
    background: #0DCB43 !important;
    border-color: #0DCB43;
}

.aiz-steps.arrow-divider > .col h3 {
    color: #D9D9D9 !important;
    font-size: .75rem !important;
    margin-top: 0.5rem;
}

.aiz-steps.arrow-divider > .col:not(.aiz-steps.arrow-divider > .col.active ~ .col):not(.active):not(.aiz-steps.arrow-divider > *:first-child) h3,
.aiz-steps.arrow-divider > .col.active h3 {
    color: var(--color-primary) !important;
}

.aiz-steps.arrow-divider > .col.step-success h3 {
    color: #0DCB43 !important;
}

/*  Stepper*/


.btn-procedures {
    gap: .5rem;
}

.table-follow-order {
    border-collapse: separate;
    border-spacing: 0 1.5rem;
    border-radius: 1rem;
}

.table-follow-order * {
    border: none !important;
}

.table-follow-order tbody tr {
    background: #F8F8F8;
    border: 1px solid #D9D9D9;
}

.table-follow-order tbody tr th:first-child {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.table-follow-order tbody tr td:last-child {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

html[dir="rtl"] .table-follow-order tbody tr th:first-child {
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

html[dir="rtl"] .table-follow-order tbody tr td:last-child {
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}


/* End Table Follow Order*/

/*  Requirement Design Form*/
.custom-title {
    background: rgba(200, 200, 200, 0.5);
    border-radius: .5rem;
    display: inline-block;
    padding: .5rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 130%;
    color: var(--color-primary);
}

.card-custom {
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: .5rem;
    padding: 1.375rem;
    margin-bottom: 5.125rem;
}

.card-custom-body-info {
    padding-top: 3.625rem;
}

.card-custom-body-finance {
    padding-top: 1.5rem;
}


.btn-group a:first-child {
    border-radius: .25rem 0 0 .25rem;
}

.btn-group a:last-child {
    border-radius: 0 .25rem .25rem 0;
}

.btn-group a {
    background: #F0F0F0;
    border: 1px solid #E0E4E5;
    width: 5rem;
    height: 2.5rem;
}

.btn-group a.active {
    background: rgba(226, 19, 27, 0.3);
}


/*  Custom Radio */

.radio {
    margin: 0.5rem;
}

.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}

.radio input[type=radio] + .radio-label:before {
    content: "";
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: 0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

html[dir="rtl"] .radio input[type=radio] + .radio-label:before {
    margin-right: unset;
    margin-left: 1em;

}

.radio input[type=radio]:checked + .radio-label {
    color: var(--color-primary);
    font-weight: 500;
}

.radio input[type=radio]:checked:disabled + .radio-label:before,
.radio input[type=radio]:checked + .radio-label:before {
    background-color: var(--color-primary);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type=radio]:focus + .radio-label:before {
    outline: none;
    border-color: var(--color-primary);
}

.radio input[type=radio]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.radio input[type=radio] + .radio-label:empty:before {
    margin-right: 0;
}


.megabox-custom {
    position: relative;
    padding: 2px !important;
    border-radius: 1.4rem !important;
}

.megabox-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #232323;
    opacity: 0.5;
    border-radius: 1rem;
}

.megabox-custom > span {
    position: absolute;
    top: 50%;
    left: 5rem;
    border-radius: .5rem;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.product-images {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3px;
    margin-top: .25rem;
}

.product-images > img {
    width: 4.125rem;
    height: 3.125rem;
    border-radius: 0.25rem;
    object-fit: cover;
}
