/* body {
        font-family: 'Roboto', sans-serif;
    }

    * {
        margin: 0;
        padding: 0;
    }

    i {
        margin-right: 10px;
    }*/

/*------------------------*/
input:focus,
button:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #fff;
}

/*----------step-wizard------------*/
.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

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

/*---------signup-step-------------*/
.bg-color {
    background-color: #333;
}

.signup-step-container {
    padding: 150px 0px;
    padding-bottom: 60px;
}




.wizard {
    position: relative;
    margin-bottom: 0;
    border-bottom-color: transparent;
}

.wizard .nav-tabs {
    position: relative;
    margin-bottom: 0;
    border-bottom-color: transparent;
}

.wizard>div.wizard-inner {
    position: relative;
    margin-bottom: 50px;
    max-width: 60%;
    /*text-align: center;*/
}

.connecting-line {
    display: flex;
    height: 4px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #A2A9CC;
    border-radius: 0.25rem;
    width: 75%;
    margin-top: 5px;
}

.connecting-line2 {
    width: 0%;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #242424;
    transition: width .6s ease;
}

@media (max-width: 768px) {
    .wizard-inner {
        margin-left: -10px;
        margin-top: 15px;
    }
}
@media (max-width: 768px) {
    .wizard>div.wizard-inner {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .connecting-line {
        margin: auto;
    }
}

@media (max-width: 768px) {
    .mywizard {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .mycol-md-12 {
        padding-right: 0px !important;
        padding-left: 0px !important;

    }
}

@media (max-width: 768px) {
    .myrow-md-12 {
        margin-right: -20px !important;
        margin-left: -20px !important;

    }
}

@media (min-width: 768px) {
    .row-no-left {
        margin-left: 10px;
    }
}

.wizard .nav-tabs>li.active>a,
.wizard .nav-tabs>li.active>a:hover,
.wizard .nav-tabs>li.active>a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 14px;
    height: 14px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: relative;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 2px solid #A2A9CC;
}

span.round-tab i {
    color: #555555;
}

.pointactive {
    background: #242424 !important;
    border-color: #242424 !important;
    transition: all .6s ease-in-out !important;
}

.wizard li.active span.round-tab i {
    color: #5bc0de;
}

.wizard .nav-tabs>li.active>a i {
    color: #242424;
}

.wizard .nav-tabs>li {
    width: 25%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: red;
    transition: 0.1s ease-in-out;
}



.wizard .nav-tabs>li a {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}

.wizard .nav-tabs>li a i {
    position: absolute;
    top: -15px;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
    left: 50px;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #A2A9CC;
}

.wizard .nav-tabs>li.active a i {
    color: #242424;
}

.wizard .nav-tabs>li a:hover {
    background: transparent;
}

.wizard .tab-pane {
    position: relative;
    padding-top: 20px;
}


.wizard h3 {
    margin-top: 0;
}


.next-step {
    background-color: #0db02b;
}

.skip-btn {
    background-color: #cec12d;
}

.step-head {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.term-check {
    font-size: 14px;
    font-weight: 400;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 40px;
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
    margin: 0;
    opacity: 0;
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 2;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 38px;
    padding: .375rem .75rem;
    line-height: 2;
    color: #495057;
    content: "Browse";
    background-color: #A2A9CC;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}

.footer-link {
    margin-top: 30px;
}

.all-info-container {}

.list-content {
    margin-bottom: 10px;
}

.list-content a {
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
    background-color: #f5f5f5;
    position: relative;
    color: #565656;
    font-weight: 400;
    border-radius: 4px;
}

.list-content a[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.list-content a i {
    text-align: right;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: 0.5s;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #fdfdfd;
}

.list-box {
    padding: 10px;
}

.signup-logo-header .logo_area {
    width: 200px;
}

.signup-logo-header .nav>li {
    padding: 0;
}

.signup-logo-header .header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-inline li {
    display: inline-block;
}

.pull-right {
    float: right;
}

/*-----------custom-checkbox-----------*/
/*----------Custom-Checkbox---------*/
input[type="checkbox"] {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
    position: absolute;
    content: "";
    display: inline-block;
}

input[type="checkbox"]::before {
    height: 16px;
    width: 16px;
    border: 1px solid #999;
    left: 0px;
    top: 0px;
    background-color: #fff;
    border-radius: 2px;
}

input[type="checkbox"]::after {
    height: 5px;
    width: 9px;
    left: 4px;
    top: 4px;
}

input[type="checkbox"]:checked::after {
    content: "";
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}

input[type="checkbox"]:checked::before {
    background-color: #18ba60;
    border-color: #18ba60;
}


.my-bg-primary {
    background-color: #242424 !important;
}

.lioculto{
    display: none;
}

.checkcategoria:hover {
    cursor: pointer;
    transform: scale(1.025);
    box-shadow: #A2A9CC 0px 5px 10px !important;
    animation: popBackground 0.3s ease-in
}

.checkmarca:hover {
    cursor: pointer;
    transform: scale(1.025);
    box-shadow: #A2A9CC 0px 5px 10px !important;
    animation: popBackground 0.3s ease-in
}

.spinner-div {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 3rem;
    height: 3rem;
    margin-top: 1rem;
  }

  .form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #d92550 !important;
}

.noClick {
    pointer-events: none;
 }

 .checkdiv{
    border-radius: 12px;
    border: 1px;
    background: linear-gradient(0deg, #FEFEFE, #FEFEFE);
    border: 1px solid #A2A9CC;
    box-shadow: 0px 10px 25px 0px #A2A9CC40;
    height: 46px;
}

.categ_4_cards_text {
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: center;
    color: #242424;
    margin-top: auto;
    margin-bottom: auto;
    /*padding-left: 0.5rem;*/
}

.checkdivactive{
    border-color: #6CE194 !important;
    border-width: 2px !important;
    border-style: solid !important;
}


.checkdiv:not(.checkdivactive):hover {
    cursor: pointer;
    transform: scale(1.025);
    box-shadow: #A2A9CC 0px 5px 10px !important;
    background-color: transparent;
    animation: popBackground 0.9s ease-in;
}

.uncheckeablediv:not(.checkdivactive):hover {
    
    transform: scale(1.025);
    box-shadow: #A2A9CC 0px 5px 10px !important;
    background-color: transparent;
    animation: popBackground 0.9s ease-in;
}

.uncheckeablediv{
    cursor: pointer;
    border-radius: 12px;
    border: 1px;
    background: linear-gradient(0deg, #FEFEFE, #FEFEFE);
    border: 1px solid #A2A9CC;
    box-shadow: 0px 10px 25px 0px #A2A9CC40;
    height: 46px;
}

.error-message-htmlfake {
    position: absolute !important;
    background-color: white !important;
    color: white !important;
    padding: 5px 10px 5px 5px !important;
    border-radius: 5px !important;
    z-index: 1 !important;
    border: solid .5px #000000a8 !important;
    color: black !important;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2) !important;
    min-width: 200px !important;
}

.arrow-up-htmlfake {
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}



.flecha-arriba-htmlfake {
    margin-left: -89px !important;
    margin-top: -13px !important;
    width: 23px !important;
}

.htmlwarn-htmlfake{
    width: 30px !important;
}