/*
 *  Style sheet for Lion Energy warranty page
 */
:root {
    --white: #fff;
    --red: #800;
    --gray: #ccc;
    --lightgray: #f0f0f0;
    --darkgray: #999;
    --superdarkgray: #424242;
    --orange: #ffcf51;
}

h1, h2, h3, h4 {
    font-family:Montserrat, Roboto, sans-serif;
    font-weight:700;
}

.form-section h4 {
    font-size:1.5rem;
}

.text-red {
    color:var(--red);
}

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

#border_container {
    border:2px solid #ccc;
    border-radius:1.25rem;
    padding:5vw 1.25rem;
    text-align:center;
}

.number-bubble {
    height:64px; width:64px; background:var(--gray);
    text-align:center;
    line-height:64px;
    border-radius:100px;
    font-size:32px;
    font-weight:700;
    font-family:Montserrat, Roboto, sans-serif;
}

.number-bubble.active {
    background:var(--orange);
}
.number-bar {
    height:6px; background:var(--gray); width:13%;
}

.number-bar.active {
    background:var(--orange);
}

.hr-bar {
    margin:20px auto;
    display:inline-block;
    height:10px;
    background:var(--orange);
    width:100px;
    border-radius:100px;
}

label.checkbox-container {
    line-height:1.25;
    font-size:.75rem;
    position:relative;
    align-items: center;
    cursor:pointer;
    user-select:none;
    display:flex;
}

label.checkbox-container:focus,
label.checkbox-container.focused {
    outline:none;
    border:none;
}

.checkbox-fake {
    font-family: Arial, Helvetica, sans-serif;
    background:var(--lightgray);
    border:3px solid var(--gray);
    border-radius:6px;
    width:30px;
    height:30px;
    min-width:30px;
    min-height:30px;
    margin-right:0.75rem;
    line-height:0;
    cursor:pointer;
    position:relative;
    text-align:center;
    display:inline-block;
}

label.checkbox-container .checkbox-fake:after {
    font-weight: 900;
    font-size: 20px;
    line-height: 22px;
}

label.checkbox-container.active .checkbox-fake:after {
    content: '\2713';
}

label.checkbox-container.border-red .checkbox-fake {
    border-color:var(--red) !important;
}

label.checkbox-container.focused .checkbox-fake,
label.checkbox-container:hover .checkbox-fake,
label.checkbox-container.active:hover .checkbox-fake {
    border-color:var(--orange) !important;
}

label.checkbox-container input {
    position: absolute;
    left: 5px;
    top: 5px;
    opacity:0;
    cursor:pointer;
    height:20px;
    width:20px;
    z-index:1;
}

.checkbox-shift {
    transform: translateX(10%);
    margin-bottom: 1rem;
}

select, input, .input {
    border:3px solid var(--gray);
    border-radius:8px;
    padding:12px;
    width:100%;
    color:#666;
}

.input {
    display:inline-block;
    width:30px;
    height:30px;
    padding:3px;
    vertical-align:middle;
}

select:hover, input:hover, .input:hover, .hover {
    border-color:#aaa !important;
}

select:focus-visible, input:focus-visible, .input:focus-visible, .hover:focus-visible {
    outline:none;
    border-color:var(--orange) !important;
}

/*
    Buttons
 */

.btn-primary, .btn-primary[disabled] {
    background: var(--orange);
    color:black;
}

.btn-secondary {
    background:white;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn:first-child:active {
    background:var(--superdarkgray);
    border-color:var(--superdarkgray);
    color:var(--white);
}

.btn-secondary {
    color:black;
}

.btn-next {
    padding-left:2.25rem;
    padding-right:1rem;
    border:3px solid var(--gray) !important;
}

.btn-next:after {
    content: '\25B8';
    display: inline-block;
    margin: 0 0 0 1.25rem;
    font-size: 2rem;
    line-height: 1rem;
    vertical-align: middle;
    padding: 0 0 .25rem 0;
}


.btn-back {
    padding-left:1rem;
    padding-right:2.25rem;
    border:3px solid var(--gray);
    background:var(--lightgray);
}

.btn-back:before {
    content: '\25B8';
    font-size: 2rem;
    line-height: 1rem;
    vertical-align: middle;
    /* padding: 0 0 0.0625rem 0; */
    display: inline-block;
    margin-right: 1.25rem;
    transform: rotate(180deg);
}

.gray-box {
    background:var(--lightgray);
    padding:1.5rem;
    text-align:center;
    border-radius:.5rem;
    flex:1 0 auto;
    font-size:.875rem;
}

.hr {
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

@media (min-width:768px) {
    .w-md-100 {
        width:100% !important;
    }
}

@media (max-width:480px) {
    .number-bubble {
        font-size:18px;
        height:42px;
        width:42px;
        line-height:42px;
    }

    .number-bar {
        width:10%;
    }

    .btn-next {
        padding-left:1rem;
    }
}
