﻿@font-face {
    font-family: "udc";
    src: url("fonts/udc.eot");
    src: url("fonts/udc.eot?#iefix") format("embedded-opentype"),
        url("fonts/udc.woff") format("woff"),
        url("fonts/udc.ttf") format("truetype"),
        url("fonts/udc.svg#udc") format("svg");
    font-weight: normal;
    font-style: normal;

}

[data-icon]:before {
    font-family: "udc" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "udc" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left:before {
    content: "\61";
    transform: rotate(180deg);
    display: inline-block;
}

.icon.icon-arrow-left {
    margin-right: 0.3rem;
    margin-left: 0;
}

.button:hover:not([disabled]) .icon.icon-arrow-left,
.button.button-primary:hover .icon.icon-arrow-left {
    margin-left: 0.3rem;
    margin-right: 1rem;
}

.icon-arrow-right:before {
    content: "\61";
}

.icon-add-new:before {
    content: "\62";
}

.icon-remove:before {
    content: "\63";
}

.icon-add-new-solid:before {
    content: "\64";
}

body {
    padding-bottom: 3rem;
    font-family: 'Roboto', sans-serif;
    background-color: #ecf0f1;
    color: #3C556E;
}



@-webkit-keyframes shadow-drop-2-center {
    0% {
        /* -webkit-transform: translateZ(0);
        transform: translateZ(0); */
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        /* -webkit-transform: translateZ(50px);
        transform: translateZ(50px); */
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.20);
    }
}

@keyframes shadow-drop-2-center {
    0% {
        /* -webkit-transform: translateZ(0);
        transform: translateZ(0); */
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        /* -webkit-transform: translateZ(50px);
        transform: translateZ(50px); */
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.20);
    }
}

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes shadow-slide {
    0% {
        -webkit-transform: translateZ(0) translateY(30px);
        transform: translateZ(0) translateY(30px);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(50px) translateY(0);
        transform: translateZ(50px) translateY(0);
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.20);
        opacity: 1;
    }
}

@keyframes shadow-slide {
    0% {
        -webkit-transform: translateZ(0) translateY(30px);
        transform: translateZ(0) translateY(30px);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(50px) translateY(0);
        transform: translateZ(50px) translateY(0);
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.20);
        opacity: 1;
    }
}
/*handle animation*/
.block.active {
    position: relative;
    z-index: 2;
    -webkit-animation: shadow-drop-2-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: shadow-drop-2-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.purchase-wrapper.block.active.slide-top {
    -webkit-animation: shadow-slide 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: shadow-slide 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top {
    -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-iteration-count: 1;
}

.button,
.input,
input[type="text"],
.purchase .item,
.remove_item,
.financial-wrapper .card-head,
.button .icon,
.top-header .app-progress .header-base,
.brand-new div,
.animate {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}



/*SVG animation*/
svg {
    width: 100px;
    display: block;
    margin: 40px auto 0;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.path.circle,
.path.check {
    stroke: white;
}

.path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}
.path.check {

}
_:-ms-lang(x), .path.check {
    stroke-dashoffset: 0 !important;
}

.path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

p {
    text-align: center;
    margin: 20px 0 60px;
    /*font-size: 1.25em;*/
}

p.success {
    color: #73af55;
}

p.error {
    color: #d06079;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}


/*handle animation end*/

#ui-datepicker-div {
    z-index: 999 !important;
    transform: translateZ(100px);
}

.mask-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(149, 165, 166, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #00aeef;
}

a:hover {
    color: #009BD5;
}

p {
    margin: auto;
}


label {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #3C556E;
    padding-left: 12px;
    height: 26px;
}

input::placeholder {
    color: #3C556E;
}

.checkbox {
    position: relative;
    height: 25px;
    width: 28px;
    cursor: pointer;
    margin-right: 2rem;
}
.checbox-container {
    flex-wrap: wrap;
}
.checbox-container .full {
    display: block;
    width: 70%;
} 

.checkbox:before {
    content: '';
    display: block;
    height: 28px;
    width: 28px;
    /* UDC White */
    background: #FFFFFF;
    border-radius: 5px;
    position: absolute;
    top: 0;
    border: 1px solid #ECF0F1;
}

.checkbox.checked:before {
    background: #abc12b;
}

.checkbox.checked:after {
    content: '';
    display: block;
    height: 28px;
    width: 28px;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/resources/images/check.png');
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center center;
}

textarea {
    padding: 10px !important;
    min-height: 100px;
}

input[type='text'],
input[type='password'],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
    border-radius: 5px;
    height: 50px;
    max-width: 100%;
    width: 100%;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-size: 20px;
    color: #3C556E;
    -webkit-text-fill-color: #3C556E;
    padding: 0 10px;
    outline: none;
}

input[type='text']:focus,
input[type='password']:focus,
textarea:focus {
    border: 1px solid #95A5A6;
}

.reuse-wrapper {
    height: 50px;
}

.datepicker-wrapper {
    cursor: pointer;
    position: relative;
}

.datepicker-wrapper:after {
    content: '';
    position: absolute;
    top: 16px;
    right: 10px;
    height: 16px;
    width: 16px;
    background: url('/resources/images/datepicker.png') no-repeat;
}

.datepicker-wrapper .datepicker {
    cursor: pointer;
}

.datepicker-wrapper img {
    position: absolute;
    top: 16px;
    right: 10px;
    height: 16px;
    width: 16px;
    z-index: 1;
}

.row {
    /*margin-bottom: 35px;*/
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mtop {
    margin-top: 2rem;
}

.button {
    position: relative;
    padding: 0.8rem 2rem;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.button:enabled:hover,
.button.button-primary:hover {
    background-color: #009BD5;
}

.button .icon {
    font-size: 12px;
    margin-left: 0.3rem;
    padding-top: 0.2rem;
}

.button.button-primary .icon {
    font-size: 22px;
    margin-left: 0.5rem;
    line-height: 100%;
}
.button.button-primary.btn-link-blue {
    color: #009BD5;
    background-color: transparent;
    width: auto;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    margin-bottom: 0; 
}

.button.add-another-item .icon {}


.button img {
    position: absolute;
    right: 20px;
    top: 18px;
}

.button.next {
    min-width: auto;
}

.button:hover:not([disabled]) .icon,
.button.button-primary:hover .icon {
    margin-left: 1rem;
}

.error {
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-size: 18px;
    visibility: hidden;
    color: #E74C3C;
    padding: 0.2rem;
    width: 100%;
}

.gray {
    background-color: #a2a4a3;
}

.blue {
    background-color: #00AEEF;
}

.white {
    background-color: white !important;
}

.bka-dropdown {
    position: relative;
    width: 100%;
}

.bka-dropdown:after {
    content: '';
    display: block;
    height: 7px;
    width: 7px;
    position: absolute;
    right: 5px;
    border: #95A5A6 solid;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(134deg);
    -ms-transform: rotate(134deg);
    transform: rotate(134deg);
    top: 18px;
    right: 20px;
}

.bka-dropdown input {
    position: relative;
    cursor: pointer;
    max-width: 100%;
    width: 100%;
    padding: 0 46px 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bka-dropdown .options {
    cursor: pointer;
    position: absolute;
    width: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    border: 0;
    z-index: 1;
    overflow-y: scroll;
    border: 1px solid #95A5A6;
}

.bka-dropdown .options .option {
    padding: 13px 10px;
    /* UDC White */
    background: #FFFFFF;
    /* UDC Med Grey */
    border-bottom: 1px solid #95A5A6;
    box-sizing: border-box;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-size: 20px;
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.bka-dropdown .options .option span {
    padding-left: 4px;
}

.bka-dropdown .options .option:last-child {
    border-bottom: 0;
}

.bka-dropdown .options .option:hover {
    background-color: #00aeef;
}


.bka-dropdown-2 {
    position: relative;
    min-width: 140px;
    max-width: 270px;
    max-height: 50px;
    text-align: left;
    margin: 0 0.4rem;
}

.bka-dropdown-2:after {
    content: '';
    display: block;
    height: 7px;
    width: 7px;
    position: absolute;
    right: 5px;
    border: #ABC12B solid;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(134deg);
    -ms-transform: rotate(134deg);
    transform: rotate(134deg);
    top: 18px;
    right: 20px;
}

.bka-dropdown-2 input {
    position: relative;
    cursor: pointer;
    width: 100%;
    padding: 0 10px;
    margin-left: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 28px;
    border: 0;
    color: #ABC12B;
    -webkit-text-fill-color: #ABC12B;
    background-color: #ecf0f1;
    -ms-opacity: 1;
    opacity: 1;
}

.bka-dropdown-2 .options {
    cursor: pointer;
    position: absolute;
    width: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    border: 0;
    margin-top: 3px;
    z-index: 3;
}

.bka-dropdown-2 .options .option {
    /* UDC White */
    background: #FFFFFF;
    /* UDC Med Grey */
    font-style: normal;
    font-weight: normal;
    line-height: 52px;
    font-size: 22px;
    margin-left: 12px;
}

.bka-dropdown-small {
    width: 240px;
}

.dropdown-section-m {
    margin-top: 3.375rem !important;
    margin-bottom: 3.375rem !important;
}

.dropdown-section-m .head-line {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/*brand new*/
.brand-new {
    max-width: 120px;
}

.purchase-input .brand-new {
    padding-top: 10px;
}

.brand-new>div {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}

.brand-new>div.active {
    background-color: #abc12b;
    color: white;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

.add-new .add-another-item {
    font-size: 18px;
}

.add-new-2 {
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    padding: 17px 1px;
}

.add-new-2 img {
    margin-left: 12px;
}

.remove-item {
    font-size: 14px;
    padding: 2rem 0 0 0;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #E74C3C;
}

.remove-item .icon {
    font-size: 25px;
    margin-left: 0.6rem;
}

.remove-item img {
    margin-left: 12px;
}

.remove-item:hover {
    color: #D13728;
    text-decoration: none;
}

.block {
    background-color: white;
    padding: 2.5rem;
    box-shadow: none;
    border-radius: 5px;
    margin: 0 4.5rem;
}

.block.active {
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.08);
}

.head-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3.5rem 1rem;
}

.head-line.double {
    padding-top: 0;
}
.head-line .error {
    height: 1px;
}



/*general header (exclude home header)*/
.top-header {
    background-color: white;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-end;
}

.top-header-mobile .top-header {
    display: none;
}

.top-header .logo {
    padding: 11px 0 16px 0;
}

.top-header .app-progress {
    padding: 0 35px;
    width: 100%;
}

.top-header .app-progress img {
    margin: 10px;
}

    .top-header .app-progress p {
        cursor: pointer;
    }

    .top-header .app-progress .header-business {
        color: #ABC12B;
        border-bottom: 5px #ABC12B solid;
    }

.top-header .app-progress .header-you {
    color: #00AEEF;
    border-bottom: 5px #00AEEF solid;
}

.top-header .app-progress .header-financial {
    color: #95A5A6;
    border-bottom: 5px #95A5A6 solid;
}

.top-header .app-progress .header-base {
    opacity: 0.3;
}

.top-header .app-progress .header-base.active,
.top-header .app-progress .header-base.completed,
.top-header .app-progress .header-base:hover {
    opacity: 1;
}

.top-header .app-progress .header-base p {
    min-height: 28px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header .app-progress .header-base.completed p:after {
    content: ' ';
    display: none;
    height: 28px;
    width: 28px;
    background-size: 100%;
    background-repeat: no-repeat;
}
.top-header .app-progress .header-base img {
    max-height: 12px;
}
.top-header .app-progress .header-base.completed p:after {
    display: inline-block;
    margin-left: 1rem;
}

.top-header .app-progress .header-business.completed p:after {
    background-image: url('/resources/images/tick.png');
}

.top-header .app-progress .header-you.completed p:after {
    background-image: url('/resources/images/tick-blue.png');
}

.top-header .app-progress .header-financial.completed p:after {
    background-image: url('/resources/images/tick-gray.png');
}

/*Header DOTS Navigation*/
.top-header .dots ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
    padding: 0;
}

.top-header .dots ul li {
    
}

.top-header .dots .dot {
    height: 12px;
    width: 12px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    margin: 0 0.4rem;
    display: inline-block;
}
/*TODO:Change thead active colors*/
.top-header .business-dots .dot.active,
.top-header .header-business.completed .business-dots .dot {
    background-color: #ABC12B;
}

.top-header .you-dots .dot.active, 
.top-header .header-you.completed .you-dots .dot.active {
    background-color: #009bd5;
}

.top-header .financial-dots .dot.active,
.top-header .header-financial.completed .financial-dots .dot.active {
    background-color: #95A5A6;
}

        /*Card block head*/
        .card-head {
            position: relative;
            height: 60px;
            background: #ABC12B;
            display: flex;
            align-items: center;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            font-size: 20px;
            color: #FFFFFF;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .purchased-wrapper .card-head .js-purchased-item {
            max-width: 64%;
        }
        .purchased-wrapper .card-head svg {
            width: 58px;
        }
        @media(max-width: 380px) {
            .purchased-wrapper .card-head .js-purchased-item {
                font-size: 16px;
            }
        }
.card-head:not(.active) {
    background: #95A5A6;
}

.card-head img:first-of-type {
    max-width: 58px;
    margin: 0 40px;
}

.card-head img.tick {
    position: absolute;
    right: 36px;
    max-width: 35px;
    bordeR: 1px solid white;
    border-radius: 50%;
}

.card-head:not(.active) img.tick {
    display: none;
}

.card-head svg {
    position: absolute;
    right: 0px;
    top: -22px;
    height: 28px;
}

.card-head:not(.active) svg {
    display: none;
}




/*header*/
.header-wrapper .top-header {
    background: linear-gradient(89.92deg, #071c27 21.45%, #3372a0 73.64%);
    width: 100%;
    height: 90px;
}

.header-wrapper .top-header .box-flex-middle {
    padding: 0.2rem 0;
}

.header-wrapper .top-header .logo {
    margin-right: 4rem;
    max-width: 120px;
}

.header-wrapper .top-header .title {
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-size: 24px;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* HEADING STYLES */
h2 {
    font-style: normal;
    line-height: normal;
    font-weight: 300;
    font-size: 28px;
    margin: 0;
}

h3 {
    font-style: normal;
    line-height: normal;
    font-weight: 500;
    font-size: 20px;
    margin: 0;
    color: #3C556E;
}


/*Mobile View*/
@media (min-width: 992px) {

}

@media (max-width: 1200px) {
    .block,
    .business-action-buttons-container {
        margin: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .block {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
        margin-bottom: 0;
        overflow-x: hidden;
    }
    .footer-wrapper {
        padding-bottom: 1rem;
    }
    h2 {
        font-size: 22px;
    }

    .body-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .block {
        padding: 1rem 0.5rem !important;
        margin: 0 0 2rem;
    }

    .business-action-buttons-container {
        margin: 0 !important;
    }

    input[type='text'] {
        font-size: 18px;
    }

    .head-line {
        padding: 2rem 0.5rem;
    }

    .head-line .error {
        width: 100%;
    }

    .bka-dropdown {
        /*padding-right: 10px;*/
    }

    /*brand new*/
    .brand-new {
        max-width: none;
        width: 49%;
    }

    /*header*/
    .header-wrapper .top-header {
        background: white;
        width: 100%;
        height: 60px;
    }

    .header-wrapper .top-header .logo {
        margin-right: 0;
        max-width: 82px;
        padding: 0;
    }

    .header-wrapper .top-header .title {
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        font-size: 18px;
        color: #3c556e;
        font-family: 'Roboto', sans-serif;
    }

    .top-header {
        display: none;
    }

    .top-header-mobile .top-header {
        display: block;

    }

    .top-header-mobile .top-header .container.body-content,
    .top-header-mobile .top-header .container.body-content .row.center {
        height: 100%;
    }

    .card-head img:first-of-type {
        margin: 0 14px;
    }

    .card-head span {
        max-width: 66%;
    }

    .business-wrapper .purchase-wrapper .purchase-input .button {
        margin-top: 1.5rem !important;
    }

    .purchase-input .brand-new {
        padding-top: 0;
    }

    .bka-dropdown-2 .options .option {
        font-size: 18px;
    }
    .checkbox {
        margin-right: 1rem !important;
    }
    .home-wrapper .checkbox {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

/* MENU NAVIGATION
*/
@media (max-width: 768px) {
    .menu-mobile-wrapper {
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        font-size: 21px;
        position: fixed;
        top: 60px;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: white;
        z-index: 9;
    }

    .menu-mobile-wrapper .background {
        height: 64px;
        background: linear-gradient(0deg, rgba(0,0,0, 0) 0%, rgba(0,0,0,.075) 100%);
    }

    .menu-mobile-wrapper .item {
        margin-bottom: 64px;
        cursor: pointer;
    }

    .menu-mobile-wrapper .item .img {
        width: 100%;
        max-width: 28px;
        height: 28px;
        background-size: 28px 28px;
        background-repeat: no-repeat;
    }

        .menu-mobile-wrapper .item .img.green-tick {
            background-image: url(/resources/images/tick.png);
        }

        .menu-mobile-wrapper .item .img.blue-tick {
            background-image: url(/resources/images/tick-blue.png);
        }

        .menu-mobile-wrapper .item .img.gray-tick {
            background-image: url(/resources/images/tick-gray.png);
        }

        .menu-mobile-wrapper .item.business {
            color: #ABC12B;
            border-bottom: #ABC12B 5px solid;
        }

    .menu-mobile-wrapper .item.you {
        color: #00aeef;
        border-bottom: #00aeef 5px solid;
    }

    .menu-mobile-wrapper .item.financial {
        color: #95a5a6;
        border-bottom: #95a5a6 5px solid;
    }

    .menu-mobile-wrapper .title {
        min-height: 6vh;

    }

    .menu-mobile-wrapper .col-2 {
        text-align: center;

    }

    .top-header-mobile.header-wrapper .top-header .box-flex-middle {
        padding: 0;
    }

    .menu-button {
        display: flex;
        margin: 0 auto;
        max-width: 28px;
        height: 28px;
        background-image: url('/resources/images/Burger.png');
        background-repeat: no-repeat;
        background-size: 28px 28px;
        font-size: 0;
    }

        .menu-button.is-open {
            background-image: url('/resources/images/Close.png');
        }
}

/* HELPERS
*/
.box-flex-middle {
    display: flex;
    align-items: center;
    min-height: 100%;
}
.box-start-top {
    align-items: flex-start;
    justify-content: flex-start;
}
.push-me-up {
    position: relative;
    z-index: 3;
}

/* --------------------------------------- */
/*cross browser Fixes 2019 - December*/
/* --------------------------------------- */

.footer-bottom .body-content .row:first-child {
    padding-bottom: 24px;
}

/* FOOTER */
@media (min-width: 767px) and (max-width: 768px) {
    .footer-wrapper .footer-bottom a {
        display: block;
        line-height: 18px;
    }
    .footer-wrapper .footer-bottom .col-md-2 {
        border-bottom: 0 !important;
    }
}

/* General select dropdowns */
.bka-dropdown input:disabled {
    opacity: 1;
}

/* Firefox and edge trigger dropdown issue */
.bka-dropdown:before,
.bka-dropdown-2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 1;
    cursor: pointer;
}
.no-before:before {
    content: initial !important;
    display: none !important;
}
.bka-dropdown .options:not(.hidden) {
    z-index: 9999;
}

/* --------------------------------------- */
/* Business section */
/* --------------------------------------- */

/*puchased area*/
.business-wrapper .brand-new>div {
    margin-left: 12px;
}

.business-wrapper .farmer label,
.business-wrapper .greater label {
    line-height: 21px;
    height: 40px;
}

    .business-wrapper .purchased-wrapper {
        position: relative;
        padding-bottom: 50px;
        z-index: 3;
    }
.business-wrapper .purchased-wrapper .block {
    padding: 0 !important;
    box-shadow: none;
}
.business-wrapper .purchased-wrapper .purchase-input {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 17px 10px 17px 10px;
}

.business-wrapper .purchased-wrapper .purchase-input .year-item {
    max-width: 180px;
    min-width: 125px;
}

.business-wrapper .purchased-wrapper .purchase-input .purchase-price {
    max-width: 274px;
}


/*puchase area*/
.business-wrapper .purchase-wrapper {
    position: relative;
    padding: 3rem;
    padding-bottom: 0;
}

.business-wrapper .purchase-wrapper .js-add-current-item {
    min-width: 110px;
}

.business-wrapper .purchase-wrapper .js-add-current-item>img {
    right: 12px;
}

.business-wrapper .purchase-wrapper .purchase-title {
    text-align: center;
    padding-bottom: 1.5rem;
}

.business-wrapper .purchase-wrapper .purchase {
    display: grid;
    grid-template-columns: 170px 170px 170px 170px;
    grid-template-rows: 170px; 
    column-gap: 7.2%;
    row-gap: 32px;
}

@media (max-width: 990px)  {
    .business-wrapper .purchase-wrapper .purchase {
        grid-template-columns: 170px 170px;
    }
}


.business-wrapper .purchase-wrapper .purchase-mobile {
    display: none;
}

.business-wrapper .purchase-wrapper .purchase .item {
    position: relative;
    /* margin: 0.6rem; */
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background: rgba(236, 240, 241, 0.4);
    padding: 1rem;
    cursor: pointer;
}

.business-wrapper .purchase-wrapper .purchase .item .image.active {
    display: none;
}
.business-wrapper .purchase-wrapper .purchase .item .image img {
    width: 100%;
    max-width: 87px;
}
.business-wrapper .purchase-wrapper .purchase .item-1:hover .image img {
    content: url('/resources/images/Vector-1a.png');
}
.business-wrapper .purchase-wrapper .purchase .item-2:hover .image img {
    content: url('/resources/images/Vector-2a.png');
}
.business-wrapper .purchase-wrapper .purchase .item-3:hover .image img {
    content: url('/resources/images/Vector-3a.png');
}
.business-wrapper .purchase-wrapper .purchase .item-4:hover .image img {
    content: url('/resources/images/Vector-4a.png');
}
.business-wrapper .purchase-wrapper .purchase .item-5:hover .image img {
    content: url('/resources/images/Vector-5a.png');
}
.business-wrapper .purchase-wrapper .purchase .item-6:hover .image img {
    content: url('/resources/images/Vector-6a.png');
}
.business-wrapper .purchase-wrapper .purchase .item-7:hover .image img {
    content: url('/resources/images/Vector-7a.png');
}
.business-wrapper .purchase-wrapper .purchase .item-8:hover .image img {
    content: url('/resources/images/Vector-8a.png');
}

.business-wrapper .purchase-wrapper .purchase .item .description {
    min-height: 70px;
    font-weight: 500;
    line-height: normal;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 1rem; 
}

.business-wrapper .purchase-wrapper .purchase .item.active,
.business-wrapper .purchase-wrapper .purchase .item:hover {
    background: #ABC12B;
    color: white;
}

.business-wrapper .purchase-wrapper .purchase .item.active:after {
    content: '';
    background-color: #ABC12B;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.19472 10.9944L16.4854 0.200012L17.8001 1.62659L6.19472 13.8L0.800049 8.14127L2.16005 6.7147L6.19472 10.9944Z' fill='white'/%3e%3c/svg%3e ");
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        top: 0;
        height: 32px;
        width: 32px;
        right: 12px;
        background-size: 18px 14px;
        border: 2px solid white;
    border-radius: 50%;
}

.business-wrapper .purchase-wrapper .purchase .item.active .image {
    display: none;
}

.business-wrapper .purchase-wrapper .purchase .item.active .image.active {
    display: flex;
}

.business-wrapper .purchase-wrapper .purchase-input {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}
.business-wrapper .purchased-wrapper .remove-item {
    margin-top: 1rem;
}
.business-wrapper .purchased-wrapper .purchase-input.purchase-input-closed .error {
    display: none !important;
}

.business-wrapper .purchase-wrapper .purchase-input .year-item {
    max-width: 180px;
}
.business-wrapper .purchase-wrapper .purchase-input .internal-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.business-wrapper .purchase-wrapper .purchase-input .purchase-price, .business-wrapper .purchase-wrapper .purchase-input .cash-deposit,
.business-wrapper .purchase-wrapper .purchase-input .purchase--cta, .business-wrapper .purchase-wrapper .purchase-input .model-year {
    max-width: 300px;
}

.business-wrapper .purchase-wrapper .purchase-input .make-year {
    max-width: 180px;
}

.business-wrapper .purchase-wrapper .purchase-input .brand-new>div {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}

.business-wrapper .purchase-wrapper .purchase-input .brand-new>div.active {
    background-color: #abc12b;
    color: white;
}
.business-wrapper .purchase-wrapper .purchase-input .button {
    margin-bottom: 0;
    margin-top: 2.5rem;
}
.business-wrapper .purchase-wrapper .purchase-input .brand-new.invisible {
    overflow: hidden;
    height: 1px;
}

/*Mobile View*/
@media (max-width: 1200px) {
    .business-wrapper .purchase-wrapper {
        padding: 3rem 1rem 0 1rem;
    }
    .business-wrapper .purchase-wrapper .purchase {
        justify-content: space-evenly;
    }
}
@media (max-width: 992px) {
    .business-wrapper .purchase-wrapper .purchase-input, .business-wrapper .purchased-wrapper .purchase-input  {

    }
    .business-wrapper .purchase-wrapper .purchase-input .purchase-price, .business-wrapper .purchase-wrapper .purchase-input .model-year{
        /* margin-left: 1.5rem;
        margin-right: 1.5rem; */
    }
    .business-wrapper .purchase-wrapper .purchase-input .internal-row{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .business-wrapper .purchase-wrapper .purchase-input .year-item,
    .business-wrapper .purchase-wrapper .purchase-input .purchase-price,
    .business-wrapper .purchase-wrapper .purchase-input .cash-deposit,
    .business-wrapper .purchase-wrapper .purchase-input .make-year,
    .business-wrapper .purchase-wrapper .purchase-input .model-year,
    .business-wrapper .purchase-wrapper .purchase-input .brand-new {
        max-width: 47% !important;
    }
    .business-wrapper .purchase-wrapper .purchase-input  .purchase--cta {
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }
    .business-wrapper .purchase-wrapper .purchase-input .button {
        margin: 0 auto;
    }
    .bka-dropdown .options {
        max-height: 205px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .business-wrapper .purchase-wrapper .purchase-title {
    display: none;
}
    /*business*/
    /*puchased area*/
    .business-wrapper .year-item .bka-dropdown {
        max-width: 310px;
    }

    .business-wrapper .top-header-mobile .top-header .title {
        color: #ABC12B;
        display: inline-block;
        height: 40px;
        border-bottom: #ABC12B 5px solid;
    }
    .business-wrapper .purchased-wrapper {
        padding-bottom: 1rem;
    }
    .business-wrapper .purchased-wrapper .purchase-input {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .business-wrapper .purchased-wrapper .purchase-input .year-item {
        width: 48.5%;
        max-width: none;
    }

    .business-wrapper .purchased-wrapper .purchase-input .purchase-price {
        width: 48.5%;
        max-width: none;
    }

    .business-wrapper .purchase-wrapper .purchase {
        display: none;
    }

    .business-wrapper .purchase-wrapper .purchase-mobile {
        display: block;
    }

        .business-wrapper .purchase-wrapper .purchase-mobile .logo {
            position: absolute;
            z-index: 1;
            top: 5px;
            left: -5px;
            max-width: 56px;
            padding-left: 10px;
            margin-top: 0;
        }

    .business-wrapper .purchase-wrapper .purchase-mobile input {
        padding-left: 50px;
        transition: none;
    }
    .business-wrapper .purchase-wrapper .before-selection input {
        padding-left: 10px;
    }

    .business-wrapper .purchase-wrapper .purchase-mobile img {
        max-width: 38px;
        margin-top: -4px;
        flex-shrink: 0;
    }

    .business-wrapper .purchase-wrapper .purchase-input,  
    .business-wrapper .purchased-wrapper .purchase-input {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
    }
    .business-wrapper .purchased-wrapper .purchase-input {
        padding: 1rem;
    }

    .business-wrapper .purchase-wrapper .purchase-input .year-item {
        width: 48%;
        max-width: none;
    }

    .business-wrapper .purchase-wrapper .purchase-input .purchase-price {
        width: 50%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .business-wrapper .purchase-wrapper .purchase-input .year-item,
    .business-wrapper .purchase-wrapper .purchase-input .purchase-price,
    .business-wrapper .purchase-wrapper .purchase-input .cash-deposit,
    .business-wrapper .purchase-wrapper .purchase-input .make-year,
    .business-wrapper .purchase-wrapper .purchase-input .model-year,
    .business-wrapper .purchase-wrapper .purchase-input .brand-new {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 100%;
    }
    .business-wrapper .purchase-wrapper .purchase-input .year-item .bka-dropdown {
        max-width: 100% !important;
    }
}
/* --------------------------------------- */
/* About you section */
/* --------------------------------------- */

.you-wrapper .bka-dropdown-2 {
    max-width: 140px;
}

.you-wrapper .dependants-wrapper .remove-item {
    padding-top: 1rem;
}

.you-wrapper .dependants-wrapper .btn-link-blue {
    margin-top: 0.5rem;
}
.you-wrapper .js-citizenship-wrapper {
    z-index: 1;
}
.you-wrapper .js-country .options{
    z-index: 2;
}

@@media (max-width: 768px) {
    /*business*/
    /*puchased area*/
    .you-wrapper .dependants-wrapper .col-md-3.center, .you-wrapper .dependants-wrapper .col-md-6.center {
        justify-content: flex-end;
    }
    .you-wrapper .dependants-wrapper .col-md-6.center .remove-item {
        padding-top: 0;
        margin-right: 0.5rem;
    }

    .you-wrapper .dependants-wrapper .btn-link-blue {
        margin: 0;
        margin-right: 0.5rem;
    }

    .you-wrapper .top-header-mobile .top-header .title {
        color: #00AEEF;
        display: inline-block;
        height: 40px;
        border-bottom: #00AEEF 5px solid;
    }
}

/* --------------------------------------- */
/* Additional */
/* --------------------------------------- */

.business-wrapper .purchased-wrapper .purchase-input {
    flex-wrap: wrap;
    justify-content: flex-start;
}
.purchase-input-closed > div {
    margin-right: 1.2rem;
    margin-bottom: 0.5rem;
}
.js-purchased-brand-new.invisible {
    display: none;
}
.business-wrapper .purchased-wrapper .remove-item {
    padding-top: 0;
}

@media screen and (min-width: 992px) {
    .purchase-input-closed > div {
        max-width: 35%;
    }
    .business-wrapper .purchased-wrapper .remove-item {
        padding-top: 20px;
    }
}

.business-action-buttons-container {
    margin: 0 4.5rem;
}
.business-action-buttons-container--application-options {
    margin: 0 !important;
}