/* ----------
buttons
----------*/
.buttons {
    display: flex;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 48px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    border-radius: .5rem;
    margin: 0 5px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.button i {
    font-size: 11px;
    margin-left: 5px;
}
.button:hover {
    color: var(--color-white);
    text-decoration: none;
}

.button-primary {
    background-color: var(--color-primary);
}
/* .button-primary:hover {
    color: var(--white-color);
    background-color: var(--color-primary-shade1);
}
.button-primary:active, .button-primary:focus {
    background-color: var(--color-primary-shade2);
} */
.button-second {
    background-color: var(--color-secondary);
}
/* .button-second:hover {
    background-color: var(--color-secondary-shade1);
}
.button-second:active, .button-second:focus {
    background-color: var(--color-secondary-shade2);
} */

.aviso-form.contacto {
    display: flex;
    justify-content: center;
}
.aviso-form.contacto a {
    margin-left: auto;
    margin-right: auto;
}


/* ----------
inputs
----------*/
.form-group input {
    display: block;
    width: 100%;
    height: 48px;
    color: var(--bs-body-color);
    font-size: .875rem !important;
    background-color: var(--color-white);
    background-clip: padding-box;
    padding: .25rem .75rem;
    border: solid 1px var(--color-black);
    border-radius: .5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all .25s;
}

.form-group select {
    display: block;
    width: 100%;
    height: 48px !important;
    color: var(--bs-body-color);
    font-size: .875rem !important;
    background-color: var(--color-white);
    background-clip: padding-box;
    padding: .25rem .75rem;
    border: solid 1px var(--color-black);
    border-radius: .5rem;
    transition: all .25s;
}
.form-group textarea {
    display: block;
    width: 100%;
    color: #000;
    font-size: 0.875rem !important;
    line-height: 1;
    background-color: #fff;
    background-clip: padding-box;
    padding: 8px 15px;
    border: solid 1px var(--color-black);
    border-radius: .5rem;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
/* .form-group input:focus {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
} */


/* ----------
selects
----------*/
.slc {
    position: relative;
    height: 40px !important;
    font-size: 0.875rem;
	margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* background: #fff url(../img/img-arrow-select.jpg) no-repeat center right;
	background-size: 30px 30px;
    -webkit-border-radius: 4px;
	border-radius: 4px; */
}


/* ----------
checkbox y radio
----------*/
.radios-list {
    margin-bottom: 20px;
}
.radios-list .radio {
    width: 45%;
}

/* checkbox */
.checkbox {
    display: inline-flex;
    align-items: center;
    height: 40px;
    line-height: 1;
}
.checkbox input[type="checkbox"] {
    position: absolute;
    left: -9999px;
    margin: 0;
}
.checkbox input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: rgb(102, 102, 102);
    font-weight: 400;
    line-height: 1;
    padding-left: 35px;
    margin: 0px;
    cursor: pointer;
}
/* .checkbox input[type=checkbox]:checked + label {
    color: #f00;
    font-style: normal;
} */
.checkbox input[type="checkbox"] + label:before {
    position: absolute;
    content: '';
    top: calc(50% - 10px);
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-grey);
}
.checkbox input[type="checkbox"] + label:after {
    position: absolute;
    content: '\f00c';
    top: calc(50% - 8px);
    left: 2px;
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    font-family: 'fontawesome';
    font-size: 1rem;
    text-align: center;
    line-height: 1;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.checkbox input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.checkbox a.aviso {
    color: var(--color-primary);
    margin-left: 5px;
}

/* radio */
.radio {
    display: inline-flex;
    align-items: center;
    height: 40px;
    line-height: 1;
    margin-right: 15px;
}
.radio input[type="radio"] {
    position: absolute;
    left: -9999px;
    margin: 0;
}
.radio input[type=radio] + label {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: rgb(102, 102, 102);
    font-weight: 400;
    line-height: 1;
    padding-left: 35px;
    cursor: pointer;
    margin: 0px;
}
/* .radio input[type=radio]:checked + label {
    color: #f00;
    font-style: normal;
} */
.radio input[type="radio"] + label:before {
    position: absolute;
    content: '';
    top: calc(50% - 10px);
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--color-grey);
}
.radio input[type="radio"] + label:after {
    position: absolute;
    content: '';
    top: calc(50% - 7px);
    left: 3px;
    width: 14px;
    height: 14px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    background: var(--color-primary);
    border-radius: 50%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.radio input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* ----- */
.radio-cotizacion {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 40px; */
    line-height: 1;
}
.radio-cotizacion input[type="radio"] {
    position: absolute;
    left: -9999px;
    margin: 0;
}
.radio-cotizacion input[type=radio] + label {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: rgb(102, 102, 102);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    /* padding-left: 35px; */
    margin: 0px;
    cursor: pointer;
}
.radio-cotizacion input[type=radio] + label strong {
    display: block;
}
.radio-cotizacion input[type=radio] + label img {
    display: block;
    margin-bottom: 10px;
}
.radio-cotizacion input[type=radio]:checked + label {
    color: #f00;
    font-style: normal;
}
/* .radio-cotizacion input[type="radio"] + label:before {
    position: absolute;
    content: '';
    top: calc(50% - 15px);
    left: 0;
    width: 26px;
    height: 26px;
    border: 2px solid #2a2a2a;
} */
.radio-cotizacion input[type="radio"] + label:after {
    position: absolute;
    content: '\f00c';
    top: calc(50% - 20px);
    left: 0;
    right: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    font-family: 'fontawesome';
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    background: var(--color-primary);
    margin: auto;
    padding-top: 5px;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.radio-cotizacion input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/*cotización rápida*/

.form-cotRapida {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.form-cotRapida .form-group{
    width: 18%;
}

.button-cr {
    width: 18%;
    text-align: center;
    margin: 0 auto;
}

.check-cr {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 991px) {

    .form-cotRapida .form-group {
        width: 48%;
    }

    .button-cr {
        width: 48%;
    }

}

@media (max-width: 576px) {

    .form-cotRapida .form-group {
        width: 100%;
    }

    .button-cr {
        width: 100%;
    }
}