@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500i,900,900i');


*{
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100%;
    width: 100vw;
    background-color: #147cc6 !important;
    font-family: 'Montserrat' !important;
    display: flex;
}

#other-desc {
    display: none;
}

#limit-budget {
    display: none;
}

.hide {
    display: none;
}

.editable {
    display: none;
}

td.parent {
    padding: 0 5vh;
}

.radio-child {
    margin-left: 2vh;
    font-size: 1em;
}

input[type=text] {
    border: 1px solid #ced4da;
    outline: none;
}

.input[type=button], input[type=submit], .btn-floc{
    background-color: #dccda2;
    color: #147cc6;
    font-weight: bold;
    border: none;
    padding: 1vh 5vh;
    text-decoration: none;
    margin: 5vh auto 0 auto;
    cursor: pointer;
    box-shadow: 2px 2px 4px lightgrey;
    outline: none;
}

.input[type=radio]:checked {
    font-weight: bold;
}

.input[type=button]:hover, input[type=submit]:hover{
    background-color: rgba(220, 205, 162, 0.8);
    color: rgba(20, 124, 198, 0.8);
    transition: 0.5s;
    box-shadow: 1px 1px 2px lightgrey;
}

.single-content h4{
    font-size: 1.2em;
}

.steps {
    width: 650px;
    box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.3);
    background-color: #FFF;
    padding: 24px 0;
    position: relative;
    margin: auto;
}

.steps::before {
    content: '';
    position: absolute;
    top: 0;
    height: 24px;
    width: 1px;
    background-color: #147cc6;
    left: calc(50px / 2);
    z-index: 1;
}

.steps::after {
    content: '';
    position: absolute;
    height: 13px;
    width: 13px;
    border-radius: 15px;
    left: calc(50px / 2);
    bottom: 24px;
    transform: translateX(-45%);
    z-index: 2;
}

.step {
    padding: 0 20px 24px 50px;
    position: relative;
    transition: all 0.4s ease-in-out;
    background-color: #FFF;
}

.step::before {
    content: '';
    position: absolute;
    height: 13px;
    width: 13px;
    background-color: #147cc6;
    border-radius: 15px;
    left: calc(50px / 2);
    transform: translateX(-45%);
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background-color:#147cc6;
    left: calc(50px / 2);
    top: 0;
    z-index: 1;
}

.step.minimized {
    background-color: #FFF;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.header {
    user-select: none;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}

.subheader {
    user-select: none;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

.step-content {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
}

.step.minimized > .step-content {
    height: 0px;
}

.step-content.one {
    height: 700px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 10px;
}

.step-content.two {
    height: 670px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 10px;
}

.step-content.three {
    height: 360px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 10px;
}

.step-content.four {
    height: 380px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 10px;
}

.step-content.five {
    height: 400px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 10px;
}

.step-text-content {
    position: absolute;
    top: 5%;
    left: 7%;
    font-size: 0.8em;
}

/*.next-btn {*/
/*    position: absolute;*/
/*    top: 90%;*/
/*    left: 85%;*/
/*    border: 0;*/
/*    padding: 10px 20px;*/
/*    border-radius: 4px;*/
/*    background-color: red;*/
/*    box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.3);*/
/*    color: #FFF;*/
/*    transition: background-color 0.3s ease-in-out;*/
/*    cursor: pointer;*/
/*    transform: translate(-50%, -50%);*/
/*}*/

/*.close-btn {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    border: 0;*/
/*    padding: 10px 20px;*/
/*    border-radius: 4px;*/
/*    background-color: rgb(255, 0, 255);*/
/*    box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.3);*/
/*    color: #FFF;*/
/*    transition: background-color 0.3s ease-in-out;*/
/*    cursor: pointer;*/
/*    transform: translate(-50%, -50%);*/
/*}*/

/* Irrelevant styling things */
.close-btn:hover {
    background-color: #147cc6;
    color: white;
}

.close-btn:focus {
    outline: 0;
}

.next-btn:hover {
    background-color: rgba(20, 124, 198, 0.6);
    color: rgba(220, 205, 162, 0.6);
}

.next-btn:focus {
    outline: 0;
}

.step.minimized:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.btn-brown {
    margin:auto;
    width: 100%;
    color: black;
    font-weight: bold;
    text-align: center;
    background-color: #dccda2;
}

.result {
    float: left;
    font-size: 1em;
    width: 50%;
    box-shadow: 10px 10px 5px 5px rgba(0, 0, 0, 0.3);
    background-color: #FFF;
    padding: 24px 24px;
    position: relative;
    margin: 10vh auto;
    color: rgba(0,0,0,1);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 1s;
    -webkit-animation: r5 1s 0s ease-out infinite;
    -moz-animation: r5 1s 0s ease-out infinite;
    animation: 5 1s 0s ease-out infinite
}

.summary {
    float: left;
    font-size: 1em;
    width: 70%;
    box-shadow: 10px 10px 5px 5px rgba(0, 0, 0, 0.3);
    background-color: #FFF;
    padding: 24px 24px;
    position: relative;
    margin: 10vh auto;
    color: rgba(0,0,0,1);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 1s;
    -webkit-animation: r5 1s 0s ease-out infinite;
    -moz-animation: r5 1s 0s ease-out infinite;
    animation: 5 1s 0s ease-out infinite
}

.btn-radio {
    font-size: 0.9em;
    margin: 5px 30px;
}

.title-content {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 4vh;
    color: #147cc6;
}

.content {
    width: 90%;
    margin: auto;
}

.summary-content {
    width: 100%;
    position: relative;
    margin: 1vh auto;
}

.get-started {
    position: absolute;
    top: 60%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 400px;
    width: 50%;
    margin: auto;
    vertical-align: middle;
    color: white;
}

.title {
    font-weight: 800 !important;
    font-size: 4em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);

    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.subtitle {
    text-align: center;
    background-color: #dccda2;
    color: black;
    padding: 0;
    margin-top: -2vh;
    font-weight: bold;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.btn-scan {
    align-content: center;
    width: fit-content;
    background-color: white;
    font-weight: bold;
    color: #147cc6;
    padding:2vh 4vh;
    border-radius: 30px;
    margin: 5vh auto;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.radar {
    width: fit-content;
    border-radius: 30px;
    background: #fff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 1s;
    -webkit-animation: r5 1s 0s ease-out infinite;
    -moz-animation: r5 1s 0s ease-out infinite;
    animation: r5 1s 0s ease-out infinite;
}

.type {
    font-size: 0.7em;
}

@-webkit-keyframes r5 {
    0% {
        box-shadow: 0 0 8px 6px rgba(93,204,231, .5), 0 0 0px 0px transparent, 0 0 0px 0px rgba(93,204,231, .7);
    }
    10% {
        transform:scale(1,1);
        box-shadow: 0 0 8px 6px rgba(93,204,231, .5), 0 0 12px 10px transparent, 0 0 12px 14px rgba(93,204,231, .7);
    }
    100% {
        box-shadow: 0 0 8px 6px rgba(26, 140, 255, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(26, 140, 255, 0);
    }
}
@-moz-keyframes r5 {
    0% {
        box-shadow: 0 0 8px 6px rgb(93,204,231), 0 0 0px 0px transparent, 0 0 0px 0px rgb(93,204,231);
    }
    10% {
        box-shadow: 0 0 8px 6px rgb(93,204,231), 0 0 12px 10px transparent, 0 0 12px 14px rgb(93,204,231);
    }
    100% {
        box-shadow: 0 0 8px 6px rgba(26, 140, 255, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(26, 140, 255, 0);
    }
}
@keyframes r5 {
    0% {
        box-shadow: 0 0 8px 6px rgb(93,204,231), 0 0 0px 0px transparent, 0 0 0px 0px rgb(93,204,231);
    }
    10% {
        box-shadow: 0 0 8px 6px rgb(93,204,231), 0 0 12px 10px transparent, 0 0 12px 14px rgb(93,204,231);
    }
    100% {
        box-shadow: 0 0 8px 6px rgba(26, 140, 255, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(26, 140, 255, 0);
    }
}

.fa {
    margin-bottom: 2vh;
    color: #147cc6;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2rem;
    text-align: center;
    background-color: #dccda2;
}

.footer-text {
    font-size: 0.8em;
    vertical-align: middle;
    margin: auto;
}

.btn-scan:hover {
    color: inherit;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.wide {
    width: 60%;
}

.narrow {
    width: 2% !important;
}

.tbl-pc {
    width: 50%;
}

.mobile {
    display: none;
}

.no-margin {
    margin: 0 !important;
    text-decoration: none;
}

.no-margin:focus {
    outline:0;
}

@media only screen and (max-width: 600px){
    td {
        padding: 0 1vh;
    }

    .result {
        width: 95%;
        margin: 4vh auto;
    }

    .summary {
        width: 95%;
        margin: 4vh auto;
    }

    .side-img {
        width: 100%;
        margin: auto;
    }

    .title {
        font-size: 3em !important;
        font-weight: bold !important;
    }

    .subtitle {
        margin-top: -2vh;
        font-size: 0.6em;
        font-weight: bold;
    }

    .get-started {
        position: absolute;
        top: 55%;
        left: 50%;
        width: 80%;
        margin: auto;
        vertical-align: middle;
        color: white;
    }

    .btn-scan {
        font-size: 1em;
    }

    .text-content {
        font-size: 1.2em;
    }

    .label-small {
        font-size: 1em;
    }

    .small{
        width: 1em;
        height: 1em;
    }

    .wide {
        width: 80%;
    }

    .single-content h4{
        font-size: 1.1em;
    }

    .single-content p{
        font-size: 0.8em;
    }

    .step-text-content {
        font-size: 0.8em;
    }

    .step-content.one {
        height: 370px;
    }

    .step-content.two {
        height: 950px;
    }

    .step-content.three {
        height: 540px;
    }

    .step-content.four {
        height: 340px;
    }

    .step-content.five {
        height: 480px;
    }

    .tbl-pc {
        width: 60%;
    }

    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }

    .tbl-margin-mobile {
        margin: 3vh;
    }
}


/* ADDITIONAL STYLE (by Adi) */
a.info {cursor: pointer;}
table.gen-table {min-width: 75%;}

.styled-radio-wrapper input[type="radio"] {display:none;}
.styled-radio-wrapper label {padding-left: 22px; background: url(../images/icon/radio-off.png) no-repeat left 4px; cursor: pointer; background-size: 14px auto;}
.styled-radio-wrapper label.small {font-size: 13px; line-height: 18px; background-position: left 3px;}
.styled-radio-wrapper input[type="radio"]:checked + label {background: url(../images/icon/radio-on.png) no-repeat left 4px; background-size: 14px auto;}
.styled-radio-wrapper input[type="radio"].error + label {background: url(../images/icon/radio-error.png) no-repeat left 4px; background-size: 14px auto;}
.styled-radio-wrapper input[type="radio"]:checked + label.small, .styled-radio-wrapper input[type="radio"].error + label.small {background-position: left 3px;}

.amt-err {display: none;}
.amt-err span {font-size: 10px; line-height: 14px; background: #dc3545; color: #fff; padding: 5px 10px; margin-bottom: 15px; display: inline-block;
border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -o-border-radius: 5px;}
.amt-err.displayed {display: block;}
.gen-amt-err {border: 1px solid #ff0000 !important;}

.step-content.one {overflow-y: scroll;}
/* /ADDITIONAL STYLE (by Adi) */