@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif !important;
}

#header-section {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 80px;
    padding-right: 80px;
    background-color: #0ca33c;
    text-align: center;
    color: white;
}

#my-loader {
    text-align: center;
    margin: auto;
    display: none;
}

#my-loader img {
    width: 100%;
    max-width: 50px;
}

.calculadora-section {
    padding: 25px 0px 5px 0px;
}

.bullets-section {
    padding-top: 5px;
    padding-bottom: 35px;
    position: relative;
}

.bullets-top-wrapper {
    max-width: 300px !important;
    margin: auto;
    position: relative;
}

.bg-line {
    border: none;
    background-color: #0ca33c;
    height: 2px;
    /* width: 50%; */
    position: absolute;
    top: 22px;
    z-index: -2;
    left: 25px;
}

.dec-separator {
    height: 7px;
    width: 45px;
    background-color: #0ca33c;
    margin: auto;
    margin-top: 35px;
    margin-bottom: 35px;
}

.calculadora-section h1 {
    font-weight: 700;
    font-size: 42px;
    margin-top: 50px;
    color: #0ca33c;
    /* text-transform: uppercase; */
}

.calculadora-section h2 {
    font-weight: 400;
    font-size: 26px;
    color: #000;
}

.calculadora-section h2 span {
    font-weight: 700;
    font-size: 26px;
    color: #0ca33c;
}

.calculadora-section p {
    color: black;
}

.bullets-wrapper {
    display: flex;
    width: 100%;
    max-width: 300px;
    justify-content: space-between;
    margin: auto;
}

.bullets-wrapper>div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #555;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px;
    font-weight: 600;
}

.bullets-wrapper>div.selected_step {
    background-color: #0ca33c;
    border-color: #0ca33c;
    color: white;
}

.bullets-wrapper>div.next_step {
    background-color: #8bd3a2;
    border-color: #8bd3a2;
    color: white;
}

.pantalla h3 {
    color: #0ca33c;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
}

.pantalla h4,
.form-label {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.form-label {
    margin-bottom: 0px !important;
    padding-right: 10px;
}

.form-control {
    border-radius: 0px !important;
}

.form-control:focus {
    border-color: #0ca33c !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #0ca33c99 !important;
}

.field-row {
    align-items: center;
}

.pantalla h3 img {
    margin-right: 8px;
    position: relative;
    top: -2px;
}

.pantalla-cabecera {
    margin-top: 25px !important;
    margin-bottom: 15px;
}

.form-row {
    margin-top: 35px;
    margin-bottom: 50px;
}

.form-row a {
    color: #000;
    transition: 0.3s;
}

.form-row a:hover {
    color: #0ca33c;
    transition: 0.3s;
}

.form-row-inner-gray {
    background-color: #f7f7f7;
    border-radius: 15px;
    padding: 35px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.form-row-inner-inner-gray {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 15px 0px;
}

.form-row-inner-inner-gray.baseline,
.input-group.baseline {
    align-items: center;
}

.input-group {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 25px;
}

.localizacion {
    font-weight: 600;
    color: #000;
    padding: 15px 35px;
    border: 1px solid #0ca33c;
    border-radius: 25px;
    min-width: 180px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    transition: 0.3s;
}

.localizacion:hover {
    cursor: pointer;
    background-color: #0ca33c33;
    transition: 0.3s;
}

.localizacion.selected {
    background-color: #0ca33c;
    color: #fff;
    transition: 0.3s;
}

.plus-btn,
.minus-btn {
    border-radius: 0px !important;
    width: 50px;
    background-color: #0ca33c !important;
    border-color: #0ca33c !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: 0.3s;
}

.plus-btn:hover,
.minus-btn:hover {
    background-color: #0ca33cbb !important;
    border-color: #0ca33cbb !important;
    transition: 0.3s;
}

.minus-btn {
    background-color: #0ca33c77 !important;
    border-color: #0ca33c77 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.numeric-field {
    max-width: 80px;
    text-align: center;
}

.categoria-row img {
    position: relative;
    top: -2px;
}

.categoria-row label img:first-child {
    margin-left: 8px;
}

.categoria-row label img:last-child {
    margin-right: 5px;
}

.step-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

button.next-step,
button.prev-step {
    background-color: #0ca33c;
    padding: 8px 20px 8px 25px;
    color: white;
    font-weight: 500;
    border-radius: 25px;
    font-size: 15px;
    border: none;
    transition: 0.3s;
}

button.prev-step {
    padding: 8px 25px 8px 20px;
}

button.next-step img {
    margin-left: 2px;
    transition: 0.3s;
}

button.prev-step img {
    margin-right: 2px;
    transition: 0.3s;
}

button.next-step:hover img {
    margin-left: 8px;
    transition: 0.3s;
}

button.prev-step:hover img {
    margin-right: 8px;
    transition: 0.3s;
}

.pantalla-03 h4 {
    color: #0ca33c;
    font-weight: 400;
    font-size: 24px;
}

.pantalla-03 p {
    margin-bottom: 0px;
}

.pantalla-03 .form-row-inner-gray {
    margin-top: 20px;
    padding-top: 50px;
    width: 100%
}

.pantalla-03 label p img {
    padding-top: 15px;
}

.pantalla-04-1-options img {
    max-width: 188px !important;
}

.my-tooltip {
    font-size: 13px;
    color: #7f7f7f;
}

#fila-pantalla-05-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.pantalla-06 input {
    border: 1px solid #b8e0c5;
    width: 100%;
    color: #222;
    outline: none;
    padding: 7px 15px;
    font-size: 14px;
    margin: 15px 0px;
}

.pantalla-06-clm-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.pantalla-06-clm {
    width: 100%;
    padding-right: 5%;
}

@media (max-width: 880px) {
    .form-row-inner-gray {
        flex-direction: column;
        padding: 25px;
    }

    .calculadora-section {
        padding: 25px !important;
    }
}




#second-section {
    color: #0ca33c;
}

#second-section h2 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 700;
}

#second-section h2 span {
    font-weight: 400;
}

#third-section {
    background-image: url("../img/fondo-verde.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.mini-icon {
    width: 32px;
    position: relative;
    left: -15px;
}

.mini-icon img {
    width: 100%;
}

.icon-info-box img {
    vertical-align: top;
    margin-top: 15px;
}

.icon-info-box h3 {
    display: inline-block;
    padding: 15px;
}

#fourth-section {
    padding-left: 0;
}

#fourth-section p {
    font-size: 18px;
}

#img-gallery {
    max-height: 700px;
    overflow-x: clip;
    overflow-y: clip;
}

#img-gallery img {
    object-fit: cover;
    width: 100%;
}

#form-section h1 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ca33c;
}

#form-section h4 {
    font-size: 20px;
    font-weight: 500;
    /* text-transform: uppercase; */
    color: #0ca33c;
}

#form-section h5 {
    font-size: 18px;
    font-weight: 400;
    /* text-transform: uppercase; */
    color: #333;
}

#form-section hr {
    margin-top: 5px;
    margin-bottom: 10px;
    margin-right: 40px;
}

#decorasao {
    text-align: right;
    padding: 0;
}

#decorasao img {
    position: relative;
    left: -6px;
}

#my-send-btn {
    display: inline-block;
    margin-top: 25px;
    background-color: #0ca33c;
    color: white;
    padding: 13px 50px 13px 50px;
    outline: none;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

#my-send-btn:hover {
    background-color: #0ca33c;
    transition: 0.3s;
}

.first-clm-padding {
    padding-right: 50px !important;
}

@media (max-width: 768px) {

    #header-section {
        padding-left: 35px;
        padding-right: 35px;
    }

    #header-section h1 {
        font-size: 35px;
    }

    #header-section .subrayado {
        font-size: 30px;
        top: -4px;
    }

    #second-section h2 {
        font-size: 28px;
    }

    #img-gallery {
        padding: 0;
    }

    #decorasao img {
        width: 100%;
    }

    .first-clm-padding {
        padding-right: calc(var(--bs-gutter-x) * .5) !important;
    }

    #fourth-section p {
        font-size: 14px;
    }

    /* Tras revisión responsive */
    .localizacion {
        margin-bottom: 15px;
    }

    .form-row-inner-inner-gray {
        flex-wrap: wrap;
    }

    .form-row-inner-inner-gray label {
        display: block;
        width: 100%;
        margin-top: 15px;
        margin-bottom: 25px !important;
    }

    .form-row-inner-gray .col-auto {
        width: 100%;
    }

    .form-row-inner-gray .col-md-12 {
        flex-wrap: wrap;
    }

    .form-row-inner-gray .form-check-inline {
        margin-bottom: 25px;
    }

    .form-row-inner-gray .form-check-label {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .form-row-inner-gray .col-md-6>div {
        flex-wrap: wrap;
    }

    .form-row-inner-gray .form-label-2 {
        display: block;
        width: 100%;
        margin-top: 15px;
        margin-bottom: 25px !important;
    }

    #to-step-5-5-alt-btn,
    #calcular-presupuesto-btn {
        padding: 8px 5px 8px 10px;
        font-size: 14px;
    }

    /* FIN Tras revisión responsive */

}