/* Half Page Layout */
.half-page-layout {
    display: flex;
    flex-direction: column;
}
.half-page-layout > *:first-child {
    width: 100%;
    padding: 40px 0 0 0;
}
.half-page-layout > *:last-child {
    width: 100%;
    padding: 24px 0 0 0;
}
.half-page-layout .titles {
    font-weight: var(--light);
    padding-right: 24px;
}
.half-page-layout .titles div {
    font-size: var(--body-sm);
    letter-spacing: 1.2px;
}
.half-page-layout .titles h1 {
    padding-bottom: 0.5em;
}
@media (min-width: 768px) {
    .half-page-layout {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        min-height: 70vh;
        padding-top: 80px;
    }
    .half-page-layout > * {
        width: 50%;
        padding-top: 13vh;
        padding-bottom: 13vh;
    }
    .half-page-layout .titles div {
        font-size: var(--body-md);
        letter-spacing: 2.4px;
    }
    .half-page-layout .titles p {
        max-width: 480px;
        padding-right: 24px;
    }
}
@media (min-width: 992px) {
    .half-page-layout .titles h1 {
        font-size: var(--display-md);
    }
}

/* Left & Right Side */
.left-side, .right-side {
    width: 100%;
}
.left-side {
    max-width: 560px;
    margin: 0 auto;
    color: white;
    padding: 48px 24px;
}
.right-side {
    max-width: 560px;
    margin: 0 auto;
    padding: 24px;
}
.left-side .bullets {
    justify-content: flex-start;   
    margin-bottom: 24px;
}
.left-side .bullets > div {
    width: 8px;
    height: 8px;
    margin: 0 16px 0 0;
    background-color: rgba(255,255,255,0.45);
    transition: background-color 0.3s;
}
.left-side .bullets > div.active {
    background-color: white;
}
@media (min-width: 768px){
    .left-side {
        margin: 0 0 0 auto;
        max-width: 585px;
    }
    .left-side h2 {
        font-size: var(--display-md);
    }
    .left-side p {
        max-width: 480px;
    }
    .right-side {
        margin: 0 auto 0 0;
        padding: 88px 24px;
    }
}

/* Titles & Steps */
.titles-wrapper,
.steps-wrapper {
    position: relative;
    overflow: hidden;
    padding-right: var(--col-padding);
    padding-left: var(--col-padding);
}
.step,
.titles {
    position: relative;
    left: 0px;
    top: 0px;
    opacity: 1;
    transition: left 0.6s, opacity 0.6s 0.4s;
    z-index: 2;
}
.titles.previous,
.step.previous,
.titles.next,
.step.next {
    opacity: 0;
    position: absolute;
    left: -3000px;
    z-index: 1;
}
.titles.next,
.step.next {
    left: 3000px;
}
.step.next input {
    display: none;
}
  
/* Form Container & Group */
.form-container {
    max-width: 100%;
    margin: auto;
}
.form-group {
    margin-bottom: 32px;
}
@media (min-width: 768px) {
    .form-container {
        max-width: 440px;
        margin: 0 auto;
    }
}

/* Labels, Inputs & Selects */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}
input[type=text],
input[type=email],
select,
textarea {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    color: #595959;
    background-color: #fff;
    border: 1px solid var(--gray-400);
    border-radius: .5rem;
    font-size: 14px;
    resize: none;
}
input[type=text],
input[type=email],
select {
    height: 48px;
}
select {
    background-image: url('/v2/brands/select.svg');
    background-position: calc(100% - 4px) 50%;
    background-repeat: no-repeat;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 30px;
}

/* Checkboxes */
.checkboxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -8px;
}
.checkboxes > div {
    width: 50%;
    min-width: 228px;
    padding: 0 8px 24px;
    flex-grow: 1;
}
.checkboxes.column > div {
    width: 100%;
}
@media (min-width:1140px) {
    .checkboxes{
        margin-right: -55px;
    }
}

/* Custom Checkboxes */
.custom-checkbox {
    position: relative;
}
.custom-checkbox input {
    position: absolute;
    top: 18px;
    left: 10px;
    opacity: 0.01;
}
.custom-checkbox .checkbox {
    width: 2em;
    min-width: 2em;
    height: 2em;
    background-color: var(--gray-100);
    border-radius: 0.5em;
    margin-right: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.custom-checkbox .uncheckbox {
    width: 2em;
    min-width: 2em;
    height: 2em;
    background-color: var(--gray-100);
    border-radius: 0.5em;
    margin-right: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.custom-checkbox label {
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
    margin: 0 0 0 -8px;
}
.custom-checkbox label:hover {
    box-shadow: var(--shadow-light);
}
.custom-checkbox .checkbox .material-icons-round {
    font-size: var(--body-lg);
    color: var(--gray-600);
}
.custom-checkbox .uncheckbox .material-icons-round {
    font-size: var(--body-lg);
    color: var(--gray-600);
}
.custom-checkbox .checkbox .done {
    display: none;
}
.custom-checkbox .uncheckbox .discard {
    display: none;
}
.custom-checkbox .label {
    display: flex;
    align-items: center;
}
.custom-checkbox .icon {
    font-size: 22px;
}
.custom-checkbox .label-text{
    margin-left: 3px;
}
.custom-checkbox .placeholder{
    color: var(--gray-600);
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    margin-left: 40px;
    padding-right: 24px;
}
input:checked ~ label .checkbox {
    background-color: #EDF7EE;
}
input:checked ~ label .uncheckbox {
    background-color: #FCE8EA;
}
input:checked ~ label .uncheckbox .discard {
    color: #E61929;
    display: inline-block;
}
input:checked ~ label .checkbox .done {
    color: #5EBA66;
    display: inline-block;
}
input:checked ~ label .checkbox .add {
    display: none;
}
input:checked ~ label .uncheckbox .add {
    display: none;
}

/* Buttons */
.btn-prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    border: 1px solid var(--gray-400);
}
.btn-prev span.material-icons-round {
    color: gray;
}
.btn-prev:disabled {
    opacity: 0.3;
}
.btn-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    border: 1px solid var(--gray-400);
}
.btn-next span.material-icons-round {
    color: gray;
}
.btn-next:disabled {
    display: none;
}
.btn-blue-gradient{
    display: inline-flex;
    align-items: center;
    height: 48px;
    background: linear-gradient(45deg, #9F30EF 0%, #33A4FF 100%);
    text-transform: none;
    color: #fff;
}
.btn-blue-gradient:disabled{
    display: none;
}
.conditions {
    font-size: var(--body-md);
    color: var(--gray-600);
}
.form-container a {
    font-size: var(--body-md);
    font-weight: var(--bold);
    color: var(--gray-600);
}