﻿html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.landing-background {
    background: linear-gradient(to right, var(--menuColor), var(--menuColorEnd));
    min-height: 100vh;
    min-width: 100vw;
    z-index: 1;
}

.landing-image {
    background: url('../images/landing_image.png') right 50% bottom 90%;
    background-size: auto;
}

.font-quicksand {
    font-family: Quicksand;
}

.font-roboto {
    font-family: Roboto;
}

.btn-landing {
    background: var(--menuColorEnd) !important;
    text-align: center !important;
    border: 2px solid var(--menuColorEnd) !important;
    border-radius: 0.5rem;
}

    .btn-landing:hover {
        background: var(--menuColorEnd) !important;
        text-align: center !important;
        border: 2px solid var(--menuColorEnd) !important;
    }

.card-landing {
    background-color: #ECECEC;
    border-radius: 20px;
}

.card-white {
    background-color: #fff;
    border-radius: 5px;
}

.card-install {
    border-radius: 20px;
    min-height: 80%;
    min-width: 60%;
    background: linear-gradient(to right, #ECECEC 25%, #fff 25%);
}

.box {
    background-color: #ffffff6e;
    color: #fff;
    opacity: .9;
}

.form-check-input {
    margin-top: 0;
}

.blue-link {
    color: var(--menuColorEnd) !important;
}

/*------------------INSTALL-----------------------*/

.text-purple {
    color: #7719ff;
}

.text-grey-install {
    color: #b0b0b9 
}

.step {
    color: #ECECEC
}

.step-active {
    color: #7719ff;
}

.step-circle {
    background: #b0b0b9;
    position: relative;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.5em;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 0 2px #b0b0b9;
    border: 2px #b0b0b9 solid;
    z-index: 10;
}

.step-circle:after {
    content: ' ';
    position: absolute;
    display: block;
    top: 4px;
    right: 50%;
    bottom: 1px;
    left: 49%;
    height: 140%;
    width: 2px;
    transform: scale(1, 2);
    transform-origin: 50% -60%;
    background-color: #b0b0b9;
    z-index: -1;
}

.step-circle-active {
    background: #7719ff;
    position: relative;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.5em;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 0 2px #7719ff;
    border: 2px #7719ff solid;
    z-index: 10;
}

.step-circle-active:after {
    content: ' ';
    position: absolute;
    display: block;
    top: 4px;
    right: 50%;
    bottom: 1px;
    left: 49%;
    height: 140%;
    width: 2px;
    transform: scale(1, 2);
    transform-origin: 50% -60%;
    background-color: #7719ff;
    z-index: -1;
}

.step-circle-end {
    background: #b0b0b9;
    position: relative;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.5em;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 0 2px #b0b0b9;
    border: 2px #b0b0b9 solid;
    z-index: 10;
}