@charset "UTF-8";

#sim-loan {
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
#sim-loan[v-cloak] {
    display: none;
}
#sim-loan * {
    box-sizing: border-box;
}
#sim-loan > .inner {
    max-width: 500px;
}
#sim-loan .loading-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .95);
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.page-title {
    font-size: 2.4em;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Cocogoose';
    line-height: 1;
}

.steps-indicator {
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.steps-indicator > .step {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #ddd;
    color: #888;
    font-size: 1.3em;
}
.steps-indicator > .step-connector {
    content: '';
    top: calc(50% - 4px);
    height: 8px;
    background-color: #ddd;
    flex-grow: 2;
}
.steps-indicator > .step.filled,
.steps-indicator > .step-connector.filled {
    background-color: #4dbce8;
    color: white;
    z-index: 1;
}
.steps-indicator > .step-connector:first-child,
.steps-indicator > .step-connector:last-child {
    display: none;
}

.products-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-wrap > .product {
    width: 25%;
    padding-top: 25%;
    margin: 1px;
    position: relative;
    color: white;
    text-decoration: none;
    background-color: #00314b;
}
.products-wrap > .product:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.products-wrap > .product:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.products-wrap > .product:hover,
.products-wrap > .product.selected {
    background-color: #4dbce8;
}
.products-wrap > .product > .inner {
    padding: 10px;
    position: absolute;
    color: white;
    text-decoration: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.products-wrap > .product > .inner .product-img {
    height: calc(100% - 30px);
    margin-bottom: 10px;
}
.products-wrap > .product > .inner .product-name {
    margin: 0;
}

.types {
    display: flex;
    justify-content: center;
    align-items: center;
}
.types > .type-btn {
    padding: 20px;
    background-color: #00314b;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    display: block;
    margin: 1px;
    font-weight: 600;
}
.types > .type-btn:first-child {
    border-radius: 5px 0 0 5px;
}
.types > .type-btn:last-child {
    border-radius: 0 5px 5px 0;
}
.types > .type-btn.selected {
    color: white;
    background-color: #4dbce8;
}
.types > .type-btn:hover {
    background-color: #4dbce8;
    color: white;
}

.slider-wrap {
    position: relative;
    box-sizing: content-box !important;
}
.slider-wrap > .slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slider-wrap > .slider-track {
    position: relative;
    background-color: #DDD;
    border-radius: 100px;
    left: 0;
    bottom: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    height: 20px;
    cursor: pointer;
}
.slider-wrap > .slider-track > .slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 100%;
    border-radius: 100px 0 0 100px;
    background-color: #4dbce8;
}
.slider-wrap > .slider-track > .slider-fill > .slider-thumb {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(100% - 15px);
    height: 30px;
    width: 30px;
    border-radius: 100%;
    background-color: #4dbce8;
    border: 4px solid #DDD;
}

.slider-labels > * {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 100px;
    background-color: #00314b;
    color: white;
    min-width: 60px;
    text-align: center;
    font-size: .86em;
}

.sim-value {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Cocogoose';
}

.controls {
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.controls > .btn {
    display: inline-block;
    border: 2px solid #00314b;
    color: white;
    background-color: #00314b;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: auto;
}
.controls > .btn:hover {
    border: 2px solid #00314b;
    color: #00314b;
    background-color: transparent;
}
.controls > .btn.can-proceed {
    background-color: #01b367;
    border-color: #01b367;
    color: white;
}
.controls > .continue-btn{
    margin: auto;
}

.form-row {
    padding: 5px 0;
    margin: 0 0 10px;
}
.form-row input {
    display: block;
    width: 100%;
    border: 1px solid #DDD;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: inherit;
    font-family: inherit;
}
.form-row input:focus {
    border-color: #00314b;
}
.form-row label > div {
    margin-bottom: 5px;
    text-align: left;
}

.section {
    margin: 0 0 40px 0;
}
.section > .section-title {
    text-align: center;
    margin: 0 0 10px;
}

.form-row {
    padding: 5px 0;
    margin: 0 0 10px;
}
.form-row input,
.form-row select {
    display: block;
    width: 100%;
    border: 1px solid #DDD;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: inherit;
    font-family: inherit;
    background: transparent;
    -webkit-appearance: none;
}
.form-row input:focus,
.form-row select:focus {
    border-color: #00314b;
}
.form-row label > div {
    margin-bottom: 5px;
}

.form-row input[type="radio"] {
    display: none;
}
.form-row input[type="radio"] + span {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    border: 1px solid #CCC;
}
.form-row input[type="radio"] + span:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    display: inline-block;
    vertical-align: middle;
    opacity: 0;
    background-color: #00314b;
    width: 8px;
    height: 8px;
    border-radius: 100%;
}
.form-row input[type="radio"] + span:hover,
.form-row input[type="radio"] + span:focus {
    border-color: #00314b;
}
.form-row input[type="radio"]:checked + span {
    border-color: #00314b;
}
.form-row input[type="radio"]:checked + span:after {
    opacity: 1;
}

.contacts-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 10px !important;
    list-style: none;
    padding: 0;
}
.contacts-list > * {
    padding: 15px;
}
.contacts-list .contact-item label {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contacts-list .contact-item label > span {
    margin-right: 5px;
}
.contacts-list .contact-item label > div {
    margin: 0;
}

.sim-result {
    background-color: #EEE;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}
.sim-result p {
    margin: 0 auto 20px;
    max-width: 80%;
}
.sim-result .value {
    margin: 0 0 20px;
    font-weight: 700;
    font-size: 1em;
    margin-bottom: 2px;
    line-height: 1;
}
.sim-result .value > * {
    display: inline-block;
}
.sim-result .value > .months {
    font-size: .8em;
    font-weight: normal;
}
.sim-result .value > .currency {
    font-size: 2.8em;
}
.sim-result .value > .per-month {
    font-size: .8em;
    font-weight: normal;
}
.sim-result .value.no-insurance {
    font-size: .86em;
    font-weight: normal;
    margin-bottom: 20px;
    opacity: .6;
}
.sim-result .value.no-insurance > * {
    font-size: 1.2em;
}

.sim-result .partners {
    margin-top: 30px;
}
.sim-result .logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.sim-result .logo {
    flex-basis: 80px;
}
.sim-result .logo img {
    width: 100%;
}

.sim-thanks {
    margin-top: 20px;
    text-align: center;
}
.sim-thanks .title {
    font-size: 1.2em;
    margin: 20px 0;
}
.sim-thanks .btn {
    border-radius: 5px;
}

.installment-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.installment-step {
    padding: 20px;
    border: 2px solid #CCC;
    background-color: #EEE;
    color: #888;
    font-size: 1.7em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 3.2em;
    height: 3.2em;
    border-radius: 5px;
    line-height: 1.5em;
}
.installment-step:hover {
    border-color: #00314b;
    color: #00314b;
    background-color: #4dbce8;
}
.installment-step.selected {
    background-color: #00314b;
    border-color: #00314b;
    color: white;
}

.disclaimer {
    font-size: 0.74em;
    line-height: 1.2;
    text-align: justify;
    display: block;
    opacity: .6;
}

.asterisk {
    font-size: 0.8em;
    vertical-align: super;
    display: inline-block;
    position: relative;
    top: -2px;
}

.social-media-title {
    margin-top: 30px;
    font-size: 1.2em;
}
.social-media-links {
    display: flex;
    justify-content: space-evenly;
    max-width: 300px;
    margin: auto !important;
    list-style: none;
    padding: 0;
    margin: 0;
}