/*
    Created on : Jan 16, 2019, 8:51:03 AM
    Author     : Paulo Gonçalves <pgoncalves@digitalsales.pt>
*/
/*******************************************************************************
 COLORS
*******************************************************************************/
/*
#df4334
*/
/*******************************************************************************
 FONTS
*******************************************************************************/
@import url('https://fonts.googleapis.com/css?family=Signika:300,400,600,700');
/*******************************************************************************
 HELPERS
*******************************************************************************/
.font-nunito {
    font-family: 'Signika', sans-serif;
}
.text-ffffff {
    color: #ffffff;
}
.text-df4334 {
    color: #df4334;
}
h2 {
    font-size: 1.5rem;
    font-weight: 700;
}
@media (min-width: 768px) {
    h2 {
        font-size: 2rem;
        font-weight: 700;
    }
}
label {
    line-height: 1rem;
}
.font-size-18px {
    font-size: 1.150rem;
}
p {
    margin-bottom: 0px;
}
.font-weigth-700 {
    font-weight: 700;
}
.hide {
    display: none;
}
.btn-sm-block {
    display: block;
    width: 100%;
}
@media (min-width: 576px) {
    .btn-sm-block {
        display: inline-block;
        width: auto;
    }
}
/*******************************************************************************
 GENERAL
*******************************************************************************/
body {
    font-family: 'Signika', sans-serif;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding-bottom: 40px;
}
.data-scroll {
    position: relative;
    height: 107px;
    overflow: auto;
    padding: 5px;
    background: #ffffff;
    border: 2px solid #df4334;
    border-radius: .25rem;
    -webkit-box-shadow: inset 0px 0px 2px 1px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px 0px 2px 1px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 2px 1px rgba(255, 255, 255, 1);
    text-align: justify;
    color: #000000;
}
.data-scroll .form-control {
    display: inline-block;
    width: auto;
    height: auto;
    margin-right: 0.5rem;
    position: absolute;
}
.data-scroll p {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.data-scroll a {
    color: #df4334;
}
.data-scroll-message {
    padding-left: 20px;
    font-size: 0.750rem;
    line-height: 1rem;
}
footer {
    position: absolute;
    padding: 0.5rem;
    width: 100%;
    bottom: 0;
    background: #df4334;
    color: #ffffff;
}
/*******************************************************************************
 PASSO2
*******************************************************************************/
.left-side {
    background: url(../images/left-background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    border-right: 1px solid #d1b4b1;
    min-height:calc(100vh - 40px);
}
.left-side-header {
    background: #df4334;
    color: #ffffff;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    margin-left: 0;
    margin-right: 0px;
}
.right-side {
    border-left: 1px solid #d1b4b1;
}
/*******************************************************************************
 PASSO3
*******************************************************************************/
.passo3 .form-check-inline {
    width: 100%;
    padding-bottom: 1rem;
}
/*******************************************************************************
 OVERRRIDE CSS
*******************************************************************************/
.btn {
    padding: .5rem 1.75rem;
}
@media (min-width: 768px) {
    .btn {
        font-size: 1.250rem;
    }
}
.form-group {
    margin-bottom: 0.5rem;
}
.form-control {
    outline: 0;
    border: 2px solid #df4334;
}
.form-control:focus {
    color: #495057;
    background-color: #ffffff;
    /*border-color: transparent;*/
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.passo3 .form-control {
    display: inline-block;
    width: auto;
    height: auto;
}
.col-form-label {
    line-height: 1;
}
ul {
    padding-left: 16px;
}
.form-group {
    width: 100%;
}
.btn-danger {
    background: #df4334;
}
/*******************************************************************************
 MEDIA QUERIES
*******************************************************************************/
@media (min-width: 576px) {

}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}
/*******************************************************************************
CUSTOM RADIO
*******************************************************************************/
.custom-radio-area label input[type=radio] {
    position: relative;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.custom-radio-area .custom-radio-red {
    position: absolute;
    top: -2px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #e41a18;
    margin-left: -30px;
}
.custom-radio-area label:hover input[type=radio] ~ .custom-radio-red {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.custom-radio-area .custom-radio-red:after {
    content: "";
    position: absolute;
    top: -99999999px;
    display: none;
}
.custom-radio-area label input[type=radio]:checked ~ .custom-radio-red:after {
    display: block;
}
.custom-radio-area label .custom-radio-red:after {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e41a18;
}
/*******************************************************************************
CUSTOM CHECKBOX
*******************************************************************************/
.custom-checkbox label input[type=checkbox] {
    position: absolute;
}
.custom-checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
label.custom-checkbox {
    padding-left: 1.75rem;
}
.custom-checkbox-red {
    position: absolute;
    top: -2px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #e41a18;
    /*margin-right: -25px;*/
    background: #ffffff;
}
.custom-checkbox input[type=checkbox]:checked ~ .custom-checkbox-red {
    background-color: #e41a18;
    border: 2px solid #e41a18;
}
.custom-checkbox-red:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox input[type=checkbox]:checked ~ .custom-checkbox-red:after {
    display: block;
}
.custom-checkbox .custom-checkbox-red:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*******************************************************************************
 TO DELETE
*******************************************************************************/
body * {
    /*    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.15);
        -moz-box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.15);
        box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.15);*/
}
/**/
.data-scroll::-webkit-scrollbar {
    -webkit-appearance: none;
}
.data-scroll::-webkit-scrollbar:vertical {
    width: 10px;
    height: 35px !important;
}
.data-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #e41a18;
    height: 35px !important;
}
.data-scroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background: transparent;
    height: 35px !important;
}