/* #region General */

@charset "UTF-8";

[v-cloak] {
    display: none !important;
}

@font-face {
    font-family: 'DIN';
    src: url('fonts/regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN';
    src: url('fonts/medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN';
    src: url('fonts/bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    direction: rtl;
    font-family: "DIN", sans-serif;
    font-size: 1rem;
    line-height: normal;
    font-weight: 400;
    color: #212529;
}

p {
    color: #565b66;
}

img {
    max-width: 100%;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 1.4rem;
}

svg {
    display: flex;
    max-width: 100%;
}

input[type="tel"] {
    direction: ltr;
    text-align: right;
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

input::placeholder,
textarea::placeholder {
    color: #888889 !important;
    opacity: 1;
}

/* #endregion General */

/* #region Loading */

.spin-cover {
    position: fixed;
    width: 100vw;
    height: 100vh;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
}

.spin-cover > * {
    z-index: 2;
}

.spin-cover:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    z-index: 1;
}

.spin-ring {
    width: 48px;
    height: 48px;
    border: 5px solid #f3f4f6;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    flex-shrink: 0;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* #endregion Loading */

/* #region Form */

.form-title {
    color: #E7F5FE;
    text-align: center;
    font-size: 16px;
    margin-bottom: 11px;
}

.input-wrap {
    margin-bottom: 1.4rem;
    position: relative;
}

.input-box {
    position: relative;
    box-sizing: border-box;
}

.input-box input,
.input-box select,
.input-box textarea {
    height: 46px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid #BBBBCB;
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    font-weight: inherit;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    color: #031c2d;
    background-color: #fff;
    box-sizing: border-box;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
}

.input-wrap label {
    margin-bottom: 0.6rem;
    display: block;
    padding: 0 5px;
}

.input-fail {
    font-size: 12px;
    color: #b60000;
    line-height: 12px;
    display: flex;
    align-items: center;
    padding-top: 0.5rem;
    gap: 6px;
}

.input-fail svg {
    width: 14px;
    transform: translateY(1px);
    fill: #b60000;
}

.input-box svg.arrow {
    width: 11px;
    position: absolute;
    right: 15px;
    top: 21px;
    pointer-events: none;
    fill: #ccc;
}

.icon-fill {
    fill: #8990A5;
}

form .is-done input,
form .is-done select,
form .is-done textarea {
    background-color: #f9fff9;
    border-color: #008b00;
}

form .invalid input,
form .invalid select,
form .invalid textarea {
    background-color: rgba(255, 225, 225, 0.2);
    border-color: #b60000;
}

form .tel-box input {
    padding-left: 100px;
    direction: ltr;
    text-align: right;
}

.form-shell,
.data-tile {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.form-shell {
    box-shadow: 0 4px 7px #0000001A;
}

.data-tile {
    box-shadow: 0 2px 7px rgba(0, 0, 0, .078);
}

.data-tile.tight {
    padding: 1.5rem;
}

.push {
    color: #fff;
    outline: 0 !important;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 100%;
    user-select: none;
    font-size: 15px;
    font-family: inherit;
    position: relative;
    max-width: 100%;
    line-height: inherit;
    box-sizing: border-box;
    display: flex;
    border: 0;
    transition: all 0.3s cubic-bezier(.31, 0, .13, 1);
    -webkit-transition: all 0.3s cubic-bezier(.31, 0, .13, 1);
    -moz-transition: all 0.3s cubic-bezier(.31, 0, .13, 1);
    -ms-transition: all 0.3s cubic-bezier(.31, 0, .13, 1);
    -o-transition: all 0.3s cubic-bezier(.31, 0, .13, 1);
    margin: 30px auto 0;
    border-radius: 8px;
    font-weight: 700;
    height: 48px;
    gap: 0.6rem;
    text-decoration: none;
}

.push:disabled {
    cursor: not-allowed;
    opacity: .65;
}

.zone-tag {
    position: absolute;
    left: 4px;
    top: 4px;
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 3;
    height: 40px;
    box-sizing: border-box;
    pointer-events: none;
    padding: 0 6px;
    direction: ltr;
}

.zone-tag > button {
    display: flex;
    align-items: center;
    column-gap: 5px;
    direction: ltr;
    padding: 0 6px;
    height: 100%;
    width: auto;
}

.zone-tag .banner {
    width: 20px;
}

.zone-tag span {
    font-size: 14px;
    transform: translateY(-2px);
}

.input-box.tel-box .arrow {
    position: relative;
    right: inherit;
    top: inherit;
    width: 8px;
}

.country-list {
    margin: 0;
    padding: 0;
    background: #fff;
    box-shadow: rgb(194, 197, 205) 0px 1px 13px 1px;
    border: 1px solid rgb(194, 197, 205);
    position: absolute;
    left: 0;
    top: 42px;
    list-style: none;
    max-height: 225px;
    overflow-y: scroll;
    min-width: 100%;
    width: max-content;
}

.country-list button {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    text-align: right;
    direction: ltr;
}

.push-bare {
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    color: #031c2d;
}

.tel-wrap {
    position: relative;
}

/* #endregion Form */

/*region Steps */

.flow-bar .node-item {
    /*! flex: 1; */
    transition: background 0.3s;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.flow-bar {
    display: flex;
    gap: 6px;
    width: 100%;
    position: relative;
    justify-content: space-between;
}

.node-ring {
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #D2D6DB;
    border-radius: 50%;
    background-color: #fff;
    z-index: 2;
    position: relative;
    margin-bottom: 0.8rem;
    color: #6c737f;
    font-weight: 500;
}

.node-tag {
    font-size: .75rem;
    position: relative;
    z-index: 2;
    color: #6c737f;
}

.node-item.is-active .node-ring,
.node-item.is-done .node-ring {
    color: #fff;
    border: 0;
}

/* #endregion Steps */


.btn-group {
    text-align: center;
    margin-top: 20px;
}

.radio-circle {
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li:last-child .push-bare {
    border: 0;
}

ul li button.is-active {
    background-color: #f2f7fb;
}

.form-section h3 {
    margin-bottom: 30px;
}

.security-icon {
    width: 33px;
    fill: #009d49;
}

.security-note {
    display: flex;
    align-items: center;
    background: #dfe6eb;
    padding: 10px 20px;
    margin-bottom: 20px;
    gap: 14px;
}

.security-note p {
    font-size: 18px;
    line-height: 25px;
    flex: 1;
}

.tag-area {
    margin: -10px -20px 0;
}

.node-seg ul li button.push-bare {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    text-align: right;
}

.offer-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1rem;
}

svc .offer-tile {
    /*! border: 1px solid #dee2e6; */
    border-radius: 16px;
    padding: 1.5rem 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .078);
    background: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.offer-grid .glyph {
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.offer-grid .tile-head {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.5rem;
    line-height: 1.5rem;
    font-weight: 700;
}

.offer-grid .offer-tile:not(.is-active) .push {
    background: #fff;
    gap: 6px;
    margin: auto 0 0;
    justify-content: flex-end;
    height: auto;
    padding: 20px 0 0;
}

.offer-tile .glyph svg path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}

.offer-tile .tile-body {
    font-size: .875rem;
    color: #525451;
    margin: 0;
}

.offer-tile button svg path {
    stroke: none;
}

.icons-test svg path {
    fill: none;
    stroke: #008550;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}

.icons-test svg {
    width: 40px;
}

.top-bar {
    top: 0;
    z-index: 10;
    box-sizing: border-box;
    height: 78px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: sticky;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    transform: translateY(0);
    transition: transform 0.25s cubic-bezier(.31, 0, .13, 1);
    will-change: transform;
}

.top-bar.scrolldown {
    transform: translateY(-100%);
}

.top-bar.scrollup {
    transform: translateY(0);
}

.top-bar .sig {
    margin-right: 0.6rem;
}

.top-bar .nav-push svg {
    width: 1.5rem;
    margin-right: auto;
}

.top-bar .nav-push {
    padding: 0.5rem;
    box-sizing: border-box;
    display: flex;
    gap: 11px;
}

.pg-wrap {
    padding: 2.5rem 1rem 5rem;
    min-height: 500px;
}

.pg-wrap.trim-top {
    padding-top: 0;
}

.flow-bar:before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #D2D6DB;
    top: 18px;
    z-index: 1;
}

.flow-bar .node-item:first-child:before,
.flow-bar .node-item:last-child:before {
    position: absolute;
    content: "";
    background: #f8fcf9;
    height: 100%;
    width: 50%;
    z-index: 1;
    top: 0;
}

.flow-bar .node-item:first-child:before {
    right: 0;
}

.flow-bar .node-item:last-child:before {
    left: 0;
}

.steps-wrap {
    padding: 2.4rem 1rem 2.7rem;
    margin: 0 -.5rem 0;
}

.top-bar .top-icons {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.top-bar .find-push {
    padding: 0.5rem;
}

p.small-text {
    color: #6c737f;
    font-size: 0.9rem;
}

.flow-bar .glyph.check {
    width: 1rem;
}

.base-bar {
    color: #fff;
    padding: 3rem 1rem 1.5rem;
    font-size: 0.875rem;
}

.base-bar a {
    text-decoration: underline;
}

.base-bar p {
    margin: 0 0 1rem;
}

.base-bar ul {
    margin: 0 0 2rem;
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.trim-top .reach-hint {
    margin: 3rem 0 0;
    text-align: center;
}

.input-box textarea {
    min-height: 180px;
    min-width: 100%;
    max-height: 350px;
    max-width: 100%;
}

label span:not(.opt-mark) {
    color: #b60000;
}

.push-wrap {
    padding: 0 19px;
}

.done-view h3 {
    padding: 0;
    font-weight: 500;
}

.ref-code {
    line-height: 1.6rem;
}

.ref-code .ref-digit {
    font-size: 1.8rem;
}

/* دخول */
.mx-enter-active,
.mx-leave-active {
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: top;
}

.mx-enter-from,
.mx-leave-to {
    opacity: 0;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.mx-enter-to,
.mx-leave-from {
    opacity: 1;
    transform: translateY(0);
}

.nav-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-items ul li {
    padding: .75rem 0;
}

.nav-items ul li a {
    padding: 0.25rem 1rem;
    text-decoration: none;
    color: #212529;
    font-weight: 700;
    display: block;
}

@keyframes down-rotate {
    0% {
        animation-timing-function: cubic-bezier(.16, -.88, .97, .53);
        transform: translateY(0);
    }

    30% {
        transform-origin: center;
        animation-timing-function: cubic-bezier(.34, 1.56, .64, 1);
        transform: translateY(10px);
    }

    100% {
        transform-origin: center;
        transform: translateY(10px) rotate(-45deg) scale(.9);
    }
}

@keyframes hide {
    29% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes up-rotate {
    0% {
        animation-timing-function: cubic-bezier(.16, -.88, .97, .53);
        transform: translateY(0);
    }

    30% {
        transform-origin: center;
        animation-timing-function: cubic-bezier(.34, 1.56, .64, 1);
        transform: translateY(-10px);
    }

    100% {
        transform-origin: center;
        transform: translateY(-10px) rotate(45deg) scale(.9);
    }
}

.top-bar .nav-flip.is-open svg .strip-high {
    animation: down-rotate .6s ease-out both;
}

.top-bar .nav-flip.is-open svg .strip-mid {
    animation: hide .6s ease-out forwards;
}

.top-bar .nav-flip.is-open svg .strip-low {
    animation: up-rotate .6s ease-out both;
}

.top-bar .nav-flip .strip-high,
.top-bar .nav-flip .strip-low,
.top-bar .nav-flip .strip-mid {
    transform-box: fill-box;
    transform-origin: center;
}

.node-seg.trim-top .lead-copy {
    margin-top: 0;
}

.seg-head {
    padding: 0 1rem;
}

.seg-head.seg-gap {
    margin-top: 2.5rem;
}

.core-copy .small-text {
    margin: 0 0 0.25rem;
}

.core-head {
    padding: 1.2rem 1rem;
}

.core-head h1 {
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}

.core-head span {
    font-size: 1.4rem;
    margin-top: .05rem;
    margin-bottom: 0;
    font-weight: 700;
    display: block;
}

.glyph-hint {
    font-size: 12px;
    color: #6c737f;
    display: flex;
    justify-content: space-between;
    opacity: 0.7;
    padding: 2px 5px 0;
}

.offer-grid .offer-tile {
    /* border: 1px solid #dee2e6; */
    border-radius: 16px;
    padding: 1.5rem 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .078);
    background: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.offer-grid .offer-tile:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .051);
}

.pg-head h1 {
    margin: 0;
    padding: 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.pg-head {
    margin-bottom: 1.5rem;
}

.inset .data-tile {
    padding: 1.3rem;
}

.inset ul {
    list-style: none;
    padding: 0;
}

.inset ul li {
    position: relative;
    margin-bottom: 7px;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #565b66;
}

.inset ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    background: #00663d;
    border-radius: 50%;
    display: inline-block;
    transform: translateY(12px);
    min-width: 5px;
}

.inset h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 2rem 0 .3rem;
}

.inset .data-tile p:first-child {
    margin-top: 0;
}

.inset h3 + ul,
.inset h3 + p,
.inset h2 + p {
    margin-top: 0;
}

.inset .data-tile h3:first-child {
    margin-top: 0.5rem;
}

.form-shell > p:first-child {
    margin-top: 0;
}

.gap {
    display: block;
    margin-bottom: 1.5rem;
}

.input-fail.ref-fail {
    text-align: center;
    display: block;
    margin-top: 1rem;
}

.base-bar p.base-hint {
    font-size: .8rem;
}

.pg-wrap.inset .data-tile + .pg-head {
    margin-top: 2.5rem;
}

.ltr-text {
    direction: ltr;
}

.date-label {
    font-size: 0.8rem;
}

.sig svg {
    fill: rgb(0, 102, 61);
}

.trust-bar .glyph {
    fill: none;
    stroke: #6c737f;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.78px;
    width: .8rem;
    transform: translateY(3px);
}

.trust-bar {
    display: flex;
    font-size: 12px;
    color: #6c737f;
    align-items: flex-start;
    gap: 5px;
    justify-content: center;
    margin-top: 2rem;
    opacity: .7;
}

/* Mobile */
@media (max-width:899px) {
    .dsk {
        display: none !important;
    }

    .nav-items {
        position: absolute;
        background: #fff;
        padding: 1rem 1.5rem 1.3rem;
        right: 0;
        left: 0;
        top: 61px;
        box-shadow: 0 12px 16px -4px rgba(16, 24, 40, .08), 0 4px 6px -2px rgba(16, 24, 40, .03);
        border-radius: 0 0 16px 16px;
        border-bottom: 1px solid #E4E7EC;
    }
}

.flow-wrap {
    padding: 2.4rem 1rem 2.7rem;
    margin: 0 -.5rem 0;
}

/* Desktop */
@media (min-width: 900px) {
    .flow-wrap {
        padding: 2.4rem 0 2.7rem;
        margin: 0;
    }

    .mbl {
        display: none !important;
    }

    .base-bar .rack {
        grid-column-gap: 2.3rem;
    }

    .pg-wrap {
        margin: 0 auto;
        max-width: 1092px;
        box-sizing: border-box;
        min-height: calc(100vh - 245px) !important;
    }

    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 1.5rem;
    }

    body {
        background: #f8fcf9;
    }

    .steps-wrap {
        padding: 2.4rem 0 2.7rem;
        margin: 0;
    }

    .push.push-fwd {
        max-width: 16.666667%;
    }

    .input-box textarea {
        min-height: 148px;
    }

    .rack {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 2rem;
        max-width: 1060px;
        margin: 0 auto;
    }

    .nav-items {
        display: inline-block !important;
        margin-right: 5rem;
    }

    .nav-items ul {
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }

    .top-bar .nav-push {
        display: none;
    }

    .top-bar {
        padding: 0 2rem;
    }

    .top-bar .sig {
        width: 108px;
    }

    .inset .data-tile {
        padding: 1.5rem;
    }

    .offer-grid .offer-tile {
        margin-bottom: 1.5rem;
    }

    .core-head {
        padding: 2.5rem 0;
    }

    .rack.rack-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    h3 {
        font-size: 1.4rem;
        margin: 0 0 1.5rem;
    }

    .core-head span {
        font-size: 1.3rem;
    }

    .core-head h3 {
        font-size: 1.6rem;
    }

    .seg-head.seg-gap {
        margin-top: 3rem;
    }

    .node-ring {
        font-weight: 700;
        margin-bottom: 0.4rem;
        width: 41px;
        height: 41px;
    }

    .node-tag {
        font-size: 0.9rem;
    }

}

.dir-l {
    direction: ltr;
    display: inline-block;
}

.offer-grid .offer-tile.is-active {
    grid-column: 1 / -1;
    grid-row: 1
}

.offer-grid .offer-tile.is-active .push {
    width: auto;
    gap: 8px;
    padding: 0 24px;
    margin: 22px 0 0;
    display: inline-flex;
    align-self: flex-start;
}

.inset hr {
    border-top: 1px solid #ccc;
    border-bottom: 0;
    margin: 30px 0 0;
    opacity: 0.5;
}

.inset h2 {
    font-size: 1.3rem;
    margin: 2rem 0 .6rem;
}

article + .data-tile.tight {
    margin-top: 1rem;
}

.sig img {
    display: block;
}

.brand-wide {
    width: 240px;
}

.mark-mid {
    width: 109px;
}

.brand-sm {
    width: 101px;
}

/* #region Colors */

.node-item.is-active .node-ring,
.node-item.is-done .node-ring {
    background-color: #0055aa;
}

.top-bar .top-icons .find-push svg {
    fill: #232323;
}

.top-bar .top-icons .nav-push svg path {
    stroke: #232323;
}

.offer-tile .glyph svg path {
    stroke: #007aff;
}

.offer-grid .glyph {
    background: #e5ecf5;
}

.offer-grid .offer-tile:not(.is-active) .push {
    color: #2953A5;
}

.offer-grid .offer-tile:not(.is-active) .push svg {
    fill: #2953A5 !important;
    background: #f3f4f6;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}

body {
    background: #F7FBFF;
}

.base-bar {
    color: #fff;
    background: #fff;
}

.base-bar a {
    color: #565b66;
}

.base-bar p {
    color: #565b66;
}

.node-item.is-active .node-tag,
.node-item.is-done .node-tag {
    color: #0071bc;
}

a {
    color: #0055aa;
}

.spin-ring {
    border-bottom-color: #007aff;
}

.push {
    background-color: #0055aa;
}

.push:disabled {
    background-color: #AAB6CC;
}

.done-view h3,
.ref-code {
    color: #0055aa;
}

/* #endregion */

.sig-mark .sig-line-a {
    fill: #232323;
}

.sig-mark .sig-line-b {
    fill: url(#gd-c);
}

.sig-mark .sig-line-c {
    fill: url(#gd-b);
}

.sig-mark .sig-line-d {
    fill: url(#gd-a);
}