.ocultar {
    display: none !important;
}

.selct-text-rosa {
    color: #FF7177;
}

* {
    font-weight: normal;
}


body, table, td,
input, textarea {
    font-size: 16px;
    font-family: 'carnasregular';
    line-height: 1.3;
    color: #333;
}

a {
    color: inherit;
    text-decoration: none;
}

.flex {
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    flex-wrap: wrap;
}

.inline-flex {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-wrap: wrap;
}

.fixed {
    position: fixed !important;
}

.carnasbold,
strong,
b {
    font-family: 'carnasbold';
}

.carnasblack {
    font-family: 'carnasblack';
}

*:focus {
    outline: none !important;
}

::placeholder {
    color: #333 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #333 !important;
}

::-ms-input-placeholder {
    color: #333 !important;
}

a {
    cursor: pointer;
    color: inherit;
}

.icon {
    display: inline-block;
    background-position: top;
    background-repeat: no-repeat;
}

.btn:active > .icon,
.btn:focus > .icon,
.btn:hover > .icon {
    background-position: bottom;
}

.btn > .icon:not(:only-child) {
    margin-left: 8px;
}

.table-responsive td {
    white-space: nowrap;
}

td[align=center],
th[align=center] {
    text-align: center !important;
}

/*------------------------------------------------------------------------ custom inputs - select ---------------------------------------------------------------------------*/

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../img/dropdown.svg);
    background-position: right 20px center;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.custom-select {
    position: relative;
    font-size: 14px;
}

    .custom-select select {
        display: none !important;
    }

.select-selected {
    position: relative;
    background-color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 0 20px;
    border: 1px solid #000;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    width: 100%;
    z-index: 1;
}

    .select-selected:after {
        content: url(../img/dropdown.svg);
        margin-left: 10px;
    }

    .select-selected.select-arrow-active:after {
    }

/* style the items (options), including the selected item: */
.select-items div {
    background-color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 40px;
    padding: 0 20px;
}

/* Style items (options): */
.select-items {
    border: 1px solid #000;
    border-top: 0 none;
    -webkit-border-radius: 0 0 20px 20px;
    border-radius: 0 0 20px 20px;
    position: absolute;
    padding-top: 24px;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: #eaeaea !important;
}

.custom-file input[type=file] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.custom-file label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    border: 1px solid #000;
    height: 48px;
    padding: 0 8px;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    align-items: center;
    cursor: pointer;
}

.custom-file span.button {
    display: block;
    padding: 8px 15px;
    background-color: #ccc;
    -webkit-border-radius: 17px;
    border-radius: 17px;
    margin-right: 10px;
}

input.date,
input[type="date"] {
    position: relative;
    background-image: url(../img/dropdown.svg);
    background-position: right 20px center;
    background-repeat: no-repeat;
}

    input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 0;
        cursor: pointer;
    }

    input[type="date"]::-webkit-inner-spin-button,
    input[type="date"]::-webkit-clear-button {
        display: none !important;
    }

.radio-tiempo-entrega label,
.radio label,
.checkbox label {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    user-select: none;
    font-weight: inherit;
    padding: 0 !important;
    line-height: 1;
}

.radio-tiempo-entrega input,
.radio input,
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    margin: 0 !important;
}

    .checkbox input ~ .checkmark,
    .radio input ~ .checkmark {
        position: relative;
        display: inline-block;
        width: 26px;
        height: 26px;
        border: 1px solid #000;
        background-color: #fff;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        vertical-align: middle;
    }

.tabs-entrega > ul > li a .checkmark:after,
.tabs-recojo > ul > li a .checkmark:after,
.checkbox .checkmark:after,
.radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox input:checked ~ .checkmark,
.radio input:checked ~ .checkmark {
    background-color: #5ACC99;
    border: 1px solid #fff;
}

    .checkbox input:checked ~ .checkmark:after,
    .radio input:checked ~ .checkmark:after {
        display: block;
    }

.radio span.etiqueta,
.checkbox span.etiqueta {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    max-width: calc(100% - 36px);
    text-align: left;
}

.radio label {
    margin-right: 20px;
}

    .radio label:last-child {
        margin: 0 !important;
    }

/*------------------------------------------------------------------------ iconos -----------------------------------------------------------------------*/

.icon-close {
    background-image: url(../img/icon-cerrar-blanco.svg);
    width: 10px;
    height: 10px;
}

/*------------------------------------------------------------------------ LOGIN -----------------------------------------------------------------------*/

section.login > div > .row > div {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

    section.login > div > .row > div:first-child {
        background-color: #FF7177; /*#ff535a;*/
    }

.registro-form,
.login-form {
    width: 100%;
    max-width: 478px;
}

    .registro-form .form-header,
    .login-form .form-header {
        margin-bottom: 30px;
    }

.form-header p,
.form-header h3 {
    margin-top: 0;
}


.form-header h3 {
    font-size: 30px;
}


.form-header p:last-child {
    margin-bottom: 0;
}

.registro-form .form-content,
.login-form .form-content {
    background-color: #F4F4F4;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 60px 60px 30px 60px;
}

.registro-form .btn-next,
.login-form .btn-next {
    min-width: 100%;
}

.registro-form .form-content {
    padding: 30px 60px;
}

.btn-next {
    background-image: url(../img/arrow-right-white.svg);
}

.btn-prev {
    background-image: url(../img/arrow-left-red-01.svg);
    background-position: left 20px center;
    background-repeat: no-repeat;
    padding-left: 45px;
    border: 1px solid #ff535a;
    background-color: #fff;
    color: #ff535a;
}

    .btn-prev:hover,
    .btn-prev:active,
    .btn-prev:focus {
        color: #ff535a !important;
    }

.btn-download,
.btn-next {
    background-position: right 20px center;
    background-repeat: no-repeat;
    padding-right: 45px;
}

.btn-download {
    background-image: url(../img/download.svg);
}

.form-footer {
    margin-top: 30px;
}

    .form-footer p:last-child {
        margin-bottom: 0;
    }

    .form-content a,
    .form-footer a {
        text-decoration: underline;
    }

/*------------------------------------------------------------------------ DASHBOARD LAYOUT -----------------------------------------------------------------------*/

.trigger-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    margin: 15px auto;
    cursor: pointer;
}

    .trigger-menu span {
        position: absolute;
        display: inline-block;
        width: 100%;
        height: 3px;
        border-radius: 1.5px;
        background-color: #fff;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .trigger-menu span:first-child {
            top: 5px;
        }

        .trigger-menu span:nth-child(2) {
            top: calc(50% - 1.5px);
        }

        .trigger-menu span:last-child {
            bottom: 5px;
        }

    .trigger-menu.open span:first-child {
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 14.5px;
    }

    .trigger-menu.open span:last-child {
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 14.5px;
    }

    .trigger-menu.open span:nth-child(2) {
        left: -999px;
        opacity: 0;
    }

.col-navegacion-dashboard {
    top: 0;
    left: 0;
    width: 336px;
    padding: 40px;
    background-color: #ff535a;
    height: 100vh;
    color: #fff;
    z-index: 9;
    overflow-y: auto;
}

    .col-navegacion-dashboard .logo {
        max-width: 155px;
        margin: 20px auto;
    }

    .col-navegacion-dashboard .main-menu {
        margin-top: 60px;
    }

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.main-menu > ul > li {
    position: relative;
    margin-left: -40px;
    margin-right: -40px;
    margin-top: -1px;
}

li.has-sub > a::after {
    content: '';
    display: block;
    position: absolute;
    right: -24px;
    top: calc(50% - 7.5px);
    background-image: url(../img/arrow-right-white.svg);
    width: 9px;
    height: 15px;
}

.main-menu > ul > li.active {
    background-color: #673335;
}

    .main-menu > ul > li.active.has-sub > a::after {
        display: none;
    }

    .main-menu > ul > li.active > a,
    .main-menu > ul > li:last-child > a {
        border: 0 none;
    }

.main-menu > ul > li > a {
    position: relative;
    border-bottom: 1px solid #fff;
    align-items: center;
    height: 72px;
    margin: 0 40px;
    cursor: pointer;
}

    .main-menu > ul > li > a > .icon {
        width: 40px;
        height: 40px;
        align-items: center;
        margin-right: 15px;
    }

.main-menu > ul > li > ul {
    max-height: 0;
    overflow: hidden;
    padding: 0 40px 0 95px;
    background-color: #673335;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

li.has-sub.open > ul {
    max-height: 999px;
    padding: 10px 40px 10px 95px;
}

li.has-sub.open > a {
    border-bottom: 0;
}

.main-menu > ul > li > ul a {
    display: block;
    line-height: 1.5;
    padding: 13px 0;
}

.col-content-dashboard {
    position: relative;
    margin-left: 336px;
    margin-top: 82px;
}

.dashboard-header {
    left: 0;
    top: 0;
    width: 100%;
    height: 82px;
    padding: 0 20px;
    background-color: #2B2B2B;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    z-index: 8;
}

    .dashboard-header .user {
        text-align: right;
        margin-right: 20px;
    }

.user .name {
    font-size: 22px;
}

.dashboard-header .btn-default:focus,
.dashboard-header .btn-default:hover {
    background-color: #fff;
    border: 1px solid #fff;
}

.dashboard-header .btn-default:active > .icon-dropdown,
.dashboard-header .btn-default.active > .icon-dropdown,
.dashboard-header .open > .dropdown-toggle.btn-default > .icon-dropdown {
    background-position: bottom;
}

.dashboard-content {
    padding: 40px;
}

.content-framed {
    background-color: #F4F4F4;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 30px;
}

hr {
    border-top: 1px solid #707070;
    margin: 30px 0;
}

/*------------------------------------------------------------------------ DASHBOARD postulaciones -----------------------------------------------------------------------*/

.acciones form,
.filtros form {
    align-items: center;
    justify-content: space-between;
}

.filtros .form-inline .form-group {
    width: calc(23% - 8px);
}

    .filtros .form-inline .form-group > * {
        width: 100% !important;
    }

.filtros .form-inline .block-title {
    width: calc(10% - 8px);
}

.col-info-postulante button.btn-primary,
.acciones button.btn-primary,
.filtros button.btn-primary {
    width: calc(21% - 8px);
    font-size: 20px;
    font-family: 'carnasbold';
}

.acciones {
    justify-content: space-between;
}

    .acciones form {
        justify-content: flex-start;
        width: calc(79% - 2px);
    }

    .acciones .form-inline .form-group {
        width: 28%;
        margin-right: 10px;
    }

    .acciones .btn-ejecutar {
        width: 28% !important;
    }

    .acciones .form-inline .block-title {
        margin-right: 30px;
    }

.tabla-postulantes select {
    cursor: pointer;
    min-width: 100px;
    background-color: transparent !important;
}

.tabla-postulantes .checkbox .checkmark {
    border-radius: 0;
}

.btn-ver {
    border: 1px solid #00B4DB;
    color: #00B4DB;
}

    .btn-ver:focus,
    .btn-ver:active,
    .btn-ver:hover {
        color: #00B4DB !important;
    }

/*------------------------------------------------------------------------ Popup Postulante -----------------------------------------------------------------------*/

.modal-postulante .col-postulante {
    width: 240px;
    background-color: #5ACC99;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.col-postulante .vehiculo {
    width: 127px;
    height: 127px;
    border-radius: 50%;
    border: 1px solid;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.col-postulante .nombre {
    font-family: 'carnasbold';
    font-size: 35px;
}

.modal-postulante .col-info-postulante {
    width: calc(100% - 240px);
    padding: 40px;
}

.col-info-postulante .row {
    align-items: center;
}

.tabla-disponibilidad table tbody td,
.col-info-postulante label {
    font-size: 18px;
}

.tabla-disponibilidad table > tbody > tr > td,
.tabla-disponibilidad table > thead > tr > th {
    border: 0 none !important;
    padding: 10px 8px;
}

.tabla-disponibilidad table th {
    text-align: center !important;
}

.zonas-cobertura .etiqueta {
    font-size: 14px !important;
}

.col-info-postulante button.btn-primary {
    width: 100%;
    max-width: 254px;
}

/*------------------------------------------------------------------------ Login Cliente -----------------------------------------------------------------------*/

.login-facebook p {
    margin-top: 30px;
    margin-bottom: 30px;
}

.btn-facebook {
    font-size: 18px;
    background-color: #3C579D;
    color: #fff;
    width: 100%;
    background-image: url(../img/icon-facebook.svg);
    background-position: left 10% center;
    background-repeat: no-repeat;
    text-decoration: none !important;
}

    .btn-facebook:focus,
    .btn-facebook:hover,
    .btn-facebook:active {
        background-color: #3C579D;
        color: #fff;
    }

/*------------------------------------------------------------------------ Dashboard Inicio -----------------------------------------------------------------------*/

.icon-dropdown {
    background-image: url(../img/dropdown-white.svg);
    width: 15px;
    height: 9px;
}

.drop-miperfil .dropdown-menu {
    background-color: #2B2B2B;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    right: -20px;
    top: calc(100% + 17px);
    margin-top: 0;
    padding: 15px 25px 25px 25px;
}

    .drop-miperfil .dropdown-menu > li {
    }

        .drop-miperfil .dropdown-menu > li > a {
            color: #fff;
            padding: 8px 0;
            font-family: 'carnasbold';
            border-bottom: 1px solid #707070;
        }

            .drop-miperfil .dropdown-menu > li > a:hover {
                background: transparent;
            }

.dashboard-inicio > .content-framed > .row {
    min-height: calc(50vh - 111px);
    position: relative;
}

    .dashboard-inicio > .content-framed > .row:first-child {
        align-items: center;
    }

        .dashboard-inicio > .content-framed > .row:first-child::after {
            content: '';
            display: block;
            position: absolute;
            left: 50%;
            width: 1px;
            height: 100%;
            background-color: #707070;
        }

.dashboard-inicio .nuevo-pedido {
    width: 100%;
    text-align: center;
    padding: 0 12%;
}

.nuevo-pedido .btn {
    width: 100%;
    max-width: 300px;
}

.sigue-tu-envio {
    padding: 0 12%;
}

    .sigue-tu-envio label {
        width: 100%;
        display: block;
        font-size: 20px;
        font-family: 'carnasbold';
        color: #707070;
    }

    .sigue-tu-envio .form-group {
        justify-content: space-between;
    }

        .sigue-tu-envio .form-group input {
            width: calc(60% - 15px);
            font-family: 'carnasbold';
            font-size: 18px;
        }

        .sigue-tu-envio .form-group .btn {
            width: calc(40% - 15px);
            font-family: 'carnasbold';
            font-size: 18px;
            border: 1px solid #5ACC99;
            background-color: #fff;
            color: #5ACC99;
        }

            .sigue-tu-envio .form-group .btn:hover {
                color: #fff;
                background-color: #5ACC99;
            }

.header-envios {
    justify-content: space-between;
    margin-bottom: 40px;
}

    .header-envios h3 {
        font-family: 'carnasbold';
        margin: 0;
    }

.table-envios .table > thead > tr > th {
    font-size: 12px;
}

.table-envios .btn-ver {
    font-size: 12px;
    background-color: #fff;
}

/*------------------------------------------------------------------------ Dashboard pedidos -----------------------------------------------------------------------*/

.mod-title {
    font-family: 'carnasblack';
    font-size: 30px;
    margin: 0;
}

.filtros-envio {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16);
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16);
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

    .filtros-envio > div {
        width: 33.333%;
        background-image: url(../img/dropdown-red.svg);
        background-position: right 20px center;
        background-repeat: no-repeat;
        position: relative;
        border-right: 1px solid #eaeaea;
    }

        .filtros-envio > div:last-child {
            border-right: 0 none;
        }

        .filtros-envio > div > button {
            position: relative;
            z-index: 9;
            background-color: transparent;
            width: 100%;
            justify-content: flex-start;
        }

    .filtros-envio .btn.active,
    .filtros-envio .btn:active {
        box-shadow: none !important;
    }

    .filtros-envio .dropdown-menu {
        width: 100%;
        -webkit-border-radius: 0 0 15px 15px;
        border-radius: 0 0 15px 15px;
        border: 0 none;
        margin-top: 0;
        border-top: 1px solid #eaeaea;
        padding: 20px;
    }

.filtro-por-estado .dropdown-menu > .btn {
    display: block;
    margin: 0 auto 10px auto;
}

    .filtro-por-estado .dropdown-menu > .btn:last-child {
        margin: 0 auto;
    }

.ui-datepicker th,
.ui-datepicker td,
.ui-datepicker {
    font-size: 13px;
    text-align: center;
}

.ui-datepicker-calendar {
    width: 100%;
}

.ui-datepicker-header {
    position: relative;
    margin-bottom: 10px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    display: block;
    width: 30px;
    height: 25px;
    line-height: 25px;
    left: 0;
    top: 0;
    text-align: center;
    border: 1px solid #eaeaea;
    color: #ccc;
}

.ui-datepicker-next {
    right: 0;
    left: auto;
}

.ui-datepicker-title {
    padding: 0 40px;
    text-align: center;
    line-height: 25px;
    font-family: 'carnasbold';
    font-size: 16px;
}

.ui-datepicker td span, .ui-datepicker td a {
    display: block;
    padding: 3px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #eaeaea;
}

    .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
        border: 1px solid #FF7177;
        color: #FF7177;
    }

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    color: #ccc;
    border: 1px solid #ccc;
}

.table-pedidos {
    margin-top: 60px;
}

    .table-pedidos .label {
        border: 0 none;
        background-color: transparent;
    }

    .table-pedidos .label-danger {
        color: #FF7177;
    }

    .table-pedidos .label-warning {
        color: #FFC35A;
    }

    .table-pedidos .label-success {
        color: #5ACC99;
    }

    .table-pedidos .table > thead > tr > th, .table-pedidos .table > tbody > tr > th, .table-pedidos .table > tfoot > tr > th, .table-pedidos .table > thead > tr > td, .table-pedidos .table > tbody > tr > td, .table-pedidos .table > tfoot > tr > td {
        font-size: 18px;
    }

    .table-pedidos .btn-ver {
        font-size: 18px;
    }

/*----------------------------------------------------------------- MODAL PEDIDO ------------------------------------------------------------*/

.col-pedido {
    width: 240px;
    padding: 40px 0;
}

.col-info-pedido {
    width: calc(100% - 240px);
    padding: 40px;
}

.pedido-pendiente {
    background-color: rgba(255, 195, 90, 0.3);
}

.col-pedido .estado {
    margin: 20px auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.estado .nombre {
    margin-top: 8px;
    font-size: 23px;
    font-family: 'carnasbold';
    color: #FDC800;
}

.col-pedido .pedido-tabs {
    list-style: none;
    margin: 60px 0 0 0;
    padding: 0;
    text-align: right;
}

.pedido-tabs li {
    font-family: 'carnasbold';
}

    .pedido-tabs li.active {
        background-color: #fff;
    }

    .pedido-tabs li > a {
        display: block;
        padding: 24px;
    }


.col-info-pedido .row.flex {
    align-items: center;
}

.col-info-pedido label {
    font-size: 18px;
    margin-bottom: 0;
}

.col-info-pedido .form-control {
    font-size: 18px;
}

    .col-info-pedido .form-control[disabled] {
        cursor: auto;
        background-color: #fff;
        color: #9A9A9A;
        background-image: none !important;
    }

.link-soporte {
    color: #F86D73;
    display: inline-block;
    text-decoration: underline;
    vertical-align: text-bottom;
}

.icon-soporte {
    background-image: url(../img/icon-soporte.svg);
    width: 30px;
    height: 35px;
    margin-left: 8px;
    vertical-align: text-bottom;
}

.reporte-envio .panel {
    border-bottom: 1px solid #707070;
    box-shadow: none;
    border-radius: 0;
}

.reporte-paso .panel-heading {
    padding: 10px 0;
    position: relative;
    cursor: pointer;
}


.reporte-paso.paso-pendiente .panel-heading > div::after,
.reporte-paso.paso-completado .panel-heading > div::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../img/dropdown-green-01.svg);
    width: 15px;
    height: 9px;
    right: 20px;
    top: calc(50% - 4.5px);
}

.reporte-paso.paso-pendiente .panel-heading > div::after {
    background-image: url(../img/dropdown-red.svg);
}

.reporte-paso .panel-heading > div[aria-expanded=true]::after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.reporte-paso .panel-heading > div.flex {
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px 10px 20px;
}

.paso-pendiente .panel-heading > div {
    background-color: #FFE9EA;
}

.paso-completado .panel-heading > div {
    background-color: #E6F7EF;
}

.icon-completado {
    background-image: url(../img/paso-completado-01.svg);
    width: 28px;
    height: 28px;
}

.icon-pendiente {
    background-image: url(../img/paso-pendiente-01.svg);
    width: 40px;
    height: 16px;
}

.paso-estado {
    align-items: center;
}

    .paso-estado .caption {
        margin-left: 15px;
    }

.reporte-paso .reporte-detalle {
    padding: 20px 0;
}

    .reporte-paso .reporte-detalle img {
        margin: 0 auto;
    }

/*----------------------------------------------------------------- NUEVO PEDIDO ------------------------------------------------------------*/

.dashboard-nuevo-pedido {
    padding-top: 60px;
    padding-left: 60px;
    padding-bottom: 30px;
}

.frame-red {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 0 40px;
    border: 1px solid #ff535a;
}

.frame-red-header {
    align-items: center;
    justify-content: space-between;
    margin-top: -67.5px;
    margin-left: -100px;
}

.frame-red-footer {
    margin-bottom: -33px;
}

    .frame-red-footer .btn {
        width: 100%;
        max-width: 280px;
    }

.frame-red-header .title {
    background-color: #fff;
    align-items: center;
    padding-right: 30px;
}

    .frame-red-header .title h2 {
        color: #ff535a;
        margin: 0;
    }

    .frame-red-header .title .icono {
        width: 135px;
        height: 135px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #ff535a;
        margin-right: 20px;
    }

.pasos-pedido {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #ff535a;
}

    .pasos-pedido li {
        width: 45px;
        height: 45px;
        text-align: center;
        line-height: 45px;
        border-radius: 50%;
        border: 1px solid #ff535a;
        background-color: #fff;
        font-family: 'carnasbold';
        margin-left: 10px;
    }

        .pasos-pedido li.active {
            background-color: #ff535a;
            color: #fff;
        }

.content-pedido .title {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .content-pedido .title:first-child {
        margin-top: 0;
    }


    .content-pedido .title h3 {
        margin: 0;
        font-size: 40px;
    }

    .content-pedido .title p:last-child {
        margin-bottom: 0;
    }

.tamano-paquete {
    align-items: flex-end;
}

    .tamano-paquete label {
        display: block;
    }

.info-tamano {
    font-size: 18px;
}

    .info-tamano img {
        display: block;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

.tarjeta-item,
.tabs-entrega > ul > li a,
.tabs-recojo > ul > li a,
.tamano-paquete label .tag {
    position: relative;
    height: 48px;
    width: 100%;
    border-radius: 24px;
    border: 1px solid #000;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'carnasbold';
    font-size: 18px;
}

    .tarjeta-item > .checkmark,
    .tabs-entrega > ul > li a .checkmark,
    .tabs-recojo > ul > li a .checkmark,
    .tamano-paquete label .checkmark {
        position: absolute;
        right: 13px;
        top: calc(50% - 13px);
        display: inline-block;
        width: 26px;
        height: 26px;
        background-color: #5ACC99;
        border: 1px solid #fff;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        vertical-align: middle;
        opacity: 0;
    }


.selecciona-tarjeta-frecuente .radio input:checked ~ .tarjeta-item,
.tabs-entrega > ul > li.active a,
.tabs-recojo > ul > li.active a,
.tamano-paquete input:checked ~ .tag {
    background-color: #5ACC99;
    border-color: transparent;
    color: #fff;
}

    .selecciona-tarjeta-frecuente .radio input:checked ~ .tarjeta-item > .checkmark,
    .tabs-entrega > ul > li.active a .checkmark,
    .tabs-recojo > ul > li.active a .checkmark,
    .tamano-paquete input:checked ~ .tag .checkmark {
        opacity: 1;
    }

        .selecciona-tarjeta-frecuente .radio input:checked ~ .tarjeta-item > .checkmark:after,
        .tabs-entrega > ul > li.active a .checkmark:after,
        .tabs-recojo > ul > li.active a .checkmark:after,
        .tamano-paquete input:checked ~ .tag .checkmark:after {
            display: block;
        }

.label-lg {
    font-size: 18px;
}

.descripcion-paquete {
    align-items: flex-end;
}

    .descripcion-paquete div.checkbox {
        height: 48px;
    }

.disclaimer {
    font-size: 14px;
    margin: 40px 0 30px 0;
}

/*--------------modal----------------*/

.tamano-personalizado .modal-content {
    padding: 40px 40px 60px 40px;
}

.cuanto-pesa,
.cuanto-mide {
    margin: 30px 0;
}

    .cuanto-pesa h3,
    .cuanto-mide h3 {
        font-size: 40px;
        margin-bottom: 30px;
        margin-top: 0;
    }

    .cuanto-pesa .figure,
    .cuanto-mide .figure {
        text-align: center;
        height: 130px;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .cuanto-pesa .form-control,
    .cuanto-mide .form-control {
        padding: 6px 10px;
        text-align: center;
    }

    .cuanto-pesa .row.flex,
    .cuanto-mide .row.flex {
        align-items: center;
    }

    .cuanto-mide label,
    .cuanto-pesa label {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .cuanto-mide .unit,
    .cuanto-pesa .unit {
        margin-left: 10px;
    }

/*--------------fin modal----------------*/

.punto-entrega .content-framed,
.punto-recojo .content-framed {
    margin-bottom: 30px;
}

.tabs-entrega > ul,
.tabs-recojo > ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

    .tabs-entrega > ul > li,
    .tabs-recojo > ul > li {
        margin-right: 10px;
    }

        .tabs-entrega > ul > li a,
        .tabs-recojo > ul > li a {
            padding: 0 60px;
        }

.direccion-content {
    position: relative;
}

.direccion-mapa {
    position: relative;
    height: 640px;
    border: 1px solid #5ACC99;
}

    .direccion-mapa iframe {
        width: 100%;
        height: 640px;
        border: 0 none;
    }

.punto-info,
.direccion-info {
    width: 100%;
    max-width: 590px;
    /*position: absolute;*/
    top: 50px;
    left: 50px;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 12px 0 rgba(0,0,0,0.2);
}

    .direccion-info .title {
        align-items: center;
        justify-content: space-between;
    }

        .direccion-info .title h4 {
            font-size: 25px;
            margin: 0;
        }

.contacto-direccion {
    margin-top: 60px;
    align-items: flex-end;
}

    .cupon-descuento .title h4,
    .contacto-direccion .title h4 {
        font-size: 25px;
        margin: 0;
    }

    .contacto-direccion .checkbox {
        height: 48px;
    }

.frame-red-footer {
    justify-content: space-between;
}

.punto-info {
    max-width: 660px;
}

    .punto-info h4 {
        font-size: 30px;
        margin: 0 0 20px 0;
    }

    .punto-info input[type=text] {
        border: 0;
        border-bottom: 1px solid;
        width: 100%;
        height: 48px;
    }

    .punto-info .leyenda {
        height: 76px;
        margin-top: 10px;
        justify-content: space-around;
        align-items: center;
    }

.punto-entrega .tab-content {
    position: relative;
    padding-top: 40px;
}

.nro-punto-entrega {
    top: 40px;
    position: absolute;
    z-index: 2;
    height: 0;
    border-bottom: 2px solid #ff535a;
    width: 100%;
}

    .nro-punto-entrega .nro {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid #ff535a;
        color: #ff535a;
        justify-content: center;
        align-items: center;
        font-size: 35px;
        margin-top: -40px;
        margin-left: -20px;
        background-color: #fff;
    }

.agregar-direccion {
    margin-top: 60px;
    margin-bottom: 30px;
    justify-content: center;
}

    .agregar-direccion button {
        border: 0 none;
        padding: 0;
        background-color: transparent;
        align-items: center;
        font-family: 'carnasbold';
        font-size: 24px;
    }

        .agregar-direccion button .icon {
            margin-right: 8px;
        }

.icon-add {
    background-image: url(../img/icon-equis.svg);
    width: 32px;
    height: 32px;
}

.origen-info,
.destino-info {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 30px;
}

    .pedido-metodo-pago .title h4,
    .tiempo-entrega h4,
    .origen-info h4,
    .destino-info h4 {
        font-size: 25px;
        margin: 0;
    }

    .origen-info h4 {
        color: #ff535a;
    }

    .destino-info h4 {
        color: #57C47F;
    }

    .origen-info p,
    .destino-info p {
        margin-bottom: 0;
    }

.tiempo-entrega {
    text-align: center;
    position: relative;
}

    .tiempo-entrega::before,
    .tiempo-entrega::after {
        content: '';
        display: block;
        background-image: url(../img/process-right.svg);
        width: 36px;
        height: 26px;
        position: absolute;
        top: calc(50% + 10px);
        left: 0;
    }

    .tiempo-entrega::before {
        left: auto;
        right: 0;
    }

.radio-tiempo-entrega {
    border: 2px solid #5ACC99;
    height: 66px;
    border-radius: 33px;
    width: 62%;
    max-width: 221px;
    overflow: hidden;
    margin-top: 15px;
}

    .radio-tiempo-entrega label {
        width: 50%;
        display: block;
        margin-bottom: 0;
        font-family: 'carnasbold';
        color: #5ACC99;
    }

    .radio-tiempo-entrega .pill {
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

.icon-express {
    background-image: url(../img/icon-express.svg);
    width: 28px;
    height: 26px;
}

.icon-programado {
    background-image: url(../img/icon-programado.svg);
    width: 24px;
    height: 24px;
}

.radio-tiempo-entrega input:checked ~ .pill {
    background-color: #5ACC99;
    color: #fff;
}

    .radio-tiempo-entrega input:checked ~ .pill .icon {
        background-position: bottom;
    }

.nro-cupon {
    align-items: flex-end;
}

    .factura-form .btn-success,
    .nro-cupon .btn-success {
        width: 100%;
        border: 1px solid #5ACC99;
        background-color: #fff;
        color: #5ACC99;
        font-size: 18px;
        font-family: 'carnasbold';
    }

.cupon-descuento {
    align-items: flex-end;
}

.tabla-resumen {
    width: auto !important;
}

    .tabla-resumen tbody > tr > td {
        padding: 0 8px;
        border: 0 none;
        font-size: 22px;
    }

.pedido-total {
    color: #ff535a;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 20px;
    padding-right: 40px;
}

    .pedido-total .precio-total {
        font-size: 40px;
    }

.popover-express {
    border: 1px solid #5ACC99;
    text-align: center;
    color: #5ACC99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 46px;
    border-radius: 23px;
    padding: 0 30px;
}

    .popover-express > .arrow {
        border-bottom-color: #5ACC99 !important;
    }

    .popover-express .popover-title {
        border: 0 none;
        padding: 0;
        background-color: transparent;
    }

        .popover-express .popover-title::after {
            content: url(../img/high-voltage.png);
        }

    .popover-express .popover-content {
        font-size: 12px;
        padding: 0;
    }

.anade-nueva-tarjeta {
    border-right: 1px solid #707070;
    padding-right: 30px;
}

.guardar-frecuente {
    justify-content: flex-end;
}

.selecciona-tarjeta-frecuente {
    padding-left: 30px;
}

    .selecciona-tarjeta-frecuente .radio {
        margin-top: 55px;
    }

        .selecciona-tarjeta-frecuente .radio label {
            display: block;
            margin: 0 0 15px 0;
        }

.tarjeta-item {
    justify-content: space-between;
    font-size: 14px;
    padding: 0 30px;
    font-family: 'carnasregular';
}

    .tarjeta-item > span:nth-child(2) {
        font-family: 'carnasbold';
    }

.selecciona-tarjeta-frecuente .radio input:checked ~ .tarjeta-item {
    padding-right: 50px;
}

.factura {
    align-items: flex-end;
}

.factura-form .btn-success {
    margin-top: 27px;
}

.factura-info {
    font-size: 16px;
}
