/**Colors**/

:root {
    --primary: #05c623;
    --secondary: #1562EA;
    --tertiary: #fade70;
    --quternary: #DE0D0D;
    --quinary: #F5F5F5;
    --sixth: #cecece;
    --red: #e74c3c;
    --gray: #f7f7f7;
    --gray-dark: #818181;
    --blue-dark: #00286f;
    --dark: #101010;
}

/* General */
* {
    /*transition: ease-in-out .3s all;*/
}
html, body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}
a {
    outline: none;
    text-decoration: none;
}
a:link {
    
}
a:visited {
    
}
a:focus {
    
}
a:hover {
    text-decoration:none;
}
a:active {

}

#main-wrapper {
    min-height: calc(100vh - 352px);
    overflow-x: hidden;
}
.page-wrapper {
    min-height: calc(100vh - 365px);
}
/*.h-100 {
    min-height: 100vh;
}*/
.card .card-header {
    background: #ffffff;
    border-bottom: 0px;
}
img {
    display: block;
    margin: 0 auto;
}
.fw-600 {
    font-weight: 600;
}
/* General */

/* Background and colors */
.bg-primary {
    background-color: var(--primary)!important;
}
.bg-secondary {
    background-color: var(--secondary)!important;
}
.bg-blue-dark {
    background-color: var(--blue-dark)!important;
}
.bg-gray {
    background-color: var(--gray);
}
.bg-general {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-gradient {
    background: linear-gradient(90deg, var(--secondary) 25%, var(--primary) 100%);
}
.bg-untochable {
    position: fixed;
    z-index: 1050;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s all ease-in-out;
}
.big {
    font-size: 1.2rem;
}
.x-big {
    font-size: 1.5rem;
}
.content-img {
    display: flex;
    width: 100%;
}
.content-img img {
    object-fit: contain;
}
.list-style-none {
    list-style: none;
}
.text-primary{
    color: var(--primary)!important;
}
.text-secondary {
    color: var(--secondary)!important;
}
.text-danger {
    color: var(--red) !important;
}
.bg-quinary {
    background-color: var(--quinary)!important;
}
.transparency {
    background-color: rgba(0,0,0,0.5);
}
/* Background and colors */

/* Buttons */
.btn-primary, .btn-primary:visited {
    background-color: var(--primary)!important;
    border-color: var(--primary)!important;
    color: #fff;
}
.btn-secondary, .btn-secondary:visited {
    background-color: var(--secondary)!important;
    border-color: var(--secondary)!important;
    color: #fff;
}
.btn-cta, .btn-cta:visited {
    background-color: var(--tertiary)!important;
    border-color: var(--tertiary)!important;
    color: var(--dark);
    font-weight: bold;
}
.btn-cta:hover {
    background-color: #fff !important;
}

.btn-rounded {
    border-radius: 25px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.btn-xs {
    font-size: 10px;
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* Buttons */

.div-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Rounds */
.rounded-15 {
    border-radius: 15px;
}
.rounded {
    border-radius: 0.5rem !important;
}
.rounded-1rem {
    border-radius: 1rem;
}
.rounded-3rem {
    border-radius: 3rem;
}
.rounded-right {
    border-bottom-right-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}
.rounded-top {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}
.rounded-left {
    border-bottom-left-radius: 0.5rem !important;
    border-top-left-radius: 0.5rem !important;
}
/* Rounds */

/* Forms */
.form-control {
    border-radius: 0.5rem;
    padding: 5px 15px;    
    font-size: 13px;
}
form label {
    font-weight: 600;
}
.bg-gray .form-control {
    border: none;
}
/* Forms */

/** Header **/
header {
    background-color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
}
.principal-nav{
    flex-direction: row-reverse;
}
header.scrolled {
    background-color: #fff !important;
    border-bottom: 3px solid var(--primary);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
header .nav-logo {
    /* max-width: 350px; */
    max-height: 25px;
}
header .nav-logo.logo-light {
    display: block;
}
header .nav-logo.logo-dark {
    display: none;
}
header.scrolled .nav-logo.logo-light {
    display: none;
}
header.scrolled .nav-logo.logo-dark {
    display: block;
}
header a, header a.visited {
    color: #fff;
}
header .navbar-toggler > i {
    color: #fff;
}
header.scrolled .navbar-toggler > i {
    color: var(--dark);
}
header a:hover {
    color: var(--dark);
}
header.scrolled .nav-link:hover {
    color: var(--secondary);
}
header.scrolled .nav-link {
    color: var(--dark);
}
header .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
}
header.scrolled .nav-rounded {
    background: none;
}
header .nav-item {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}
header .btn-register,
#menuResponsive .btn-register {
    background-color: #fff;
    font-weight: 500;
    color: var(--secondary);
}
header .form-control {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
}
header .dropdown-item:hover {
    background-color: var(--primary);
    color: #fff;
}
/* Header */

/* Footer */
footer,
footer a,
footer a:visited,
footer a:hover,
footer a:active {
    color: #fff;
}
footer a,
footer p {
    font-size: 0.9rem;
}
footer .logo {
    max-width: 270px;
}
footer .slogan {
    max-width: 200px;
}
footer .social-network i {
    font-size: 1.2rem;
}
footer .social-network .nav-item {
    margin-right: 1rem;
}
footer .social-network .nav-item:last-child {
    margin-right: 0;
}
/* Footer */

section h2.title {
    color: var(--secondary);
}

/* Steps */
ul.steps-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    counter-reset: csteps;
}
ul.steps-bullets li:before {
    position: absolute;
    display: block;
    background-color: var(--sixth);
    color: #1c1a1b;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 17px;
    line-height: 17px;
    padding-top: 6.5px;
    text-align: center;
    z-index: 2;
    counter-increment: csteps;
    content: counter(csteps);
    right: 0;
}
ul.steps-bullets li {
    position: relative;
    min-width: 30px;
    min-height: 30px;
    flex-grow: 1;
}
ul.steps-bullets li:first-child {
    flex-grow: 0;
}
ul.steps-bullets li:not(:first-child):after {
    position: absolute;
    content: "";
    background-color: var(--sixth);
    height: 4px;
    width: calc(100% - 30px - 10px);
    top: calc((30px - 4px) / 2);
    left: 5px;
    z-index: 1;
}
ul.steps-bullets li.completed:before,
ul.steps-bullets li.active:before {
    background-color: var(--tertiary);
    color: #fff;
}
ul.steps-bullets li.completed:after,
ul.steps-bullets li.active:after {
    background-color: var(--tertiary);
}

.steps {
    
}
.steps .step {
    display: none;
}
.steps .step.active {
    display: block;
}
/* Steps */

/* Dropify */
.dropify-wrapper {
  display: block;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width:230px!important;
  height: 120px!important;
  padding: 5px 10px;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial";
  font-size: 14px;
  line-height: 22px;
  color: #777;
  background-image: url(assets/img/default_logo.png)!important;
  background-color: #F5F5F5!important;
  text-align: center;
  border:none!important;
  border-radius:20px!important;
}

.dropify-message p {
    font-size: 1rem;
}
.dropify-message span.file-icon:before {
    content: '' !important;
}
/* Dropify */

/* Sticky */
[class*=col] .sticky-top.filled {
    margin-left: -15px;
    margin-right: -15px;
}
.sticky-top.filled {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #f5f5f5;
    border-radius: 0 0 8px 8px;
    padding: 5px;
}
/* Sticky */

/* Forms */
.form-group {
    position: relative;
}
.form-group label {
    font-size: 0.85rem;
}

.input-group-text {
    border-radius: 25px;
    background-color: var(--quinary);
    border: none;
}
.input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.select2-container {
    width: 100% !important;
}
/* Forms */

/* HEADER */
#header .bg-city {
    bottom: 0;
    right: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
}
#header .bg-phone,
#header .bg-laptop {
    display: none;
}
#header h2 {
    font-size: 1.8rem;
}
/* HEADER ENDS*/

/* Dashboard */
#slideDashboard .bg-general {
    height: 150px;
}
#salesResume {
    margin-top: -20px
}
#customerResume {
    margin-top: -15px
}
#slideDashboard {
    z-index: 0;
}
/* Dashboard Ends*/

/* Floating Places */
.floating-places {
    display: none;
    position: absolute;
    list-style: none;
    padding: 8px;
    margin: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    background: rgba(255, 255, 255, 1);
    border-radius: 0 0 8px 8px;
    max-height: 40vh;
    overflow-y: scroll;
    z-index: 1000;
    width: calc(100% - 20px);
    left: 10px;
}
.floating-places.shown {
    display: block;
}
.floating-places > li {
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.floating-places > li.message {
    
}
.floating-places > li.error {
    
}
.floating-places > li.place {
    display: block;
    border-bottom: #f5f5f5 solid 1px;
    padding: 5px 8px;
    cursor: pointer;
}
.floating-places > li.place:last-child {
    border-bottom: none;
}
.floating-places > li.place > .name {
    display: block;
    color: #222;
}
.floating-places > li.place > .address {
    display: block;
    color: #777;
    font-size: .85rem;
}
.floating-places > li.place:hover {
    background: #f5f5f5;
}

.floating-places > li.btn-more {
    padding: 8px;
    cursor: pointer;
}
.floating-places > li.btn-more:hover {
    background: #f5f5f5;
}
/* Floating Places */

/* Places */
.places {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}
.places > li {
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    margin-top: 8px;
}
.places > li.message {
    
}
.places > li.error {
    
}
.places > li.place {
    display: block;
    border-bottom: #f5f5f5 solid 1px;
    padding: 5px 8px;
    cursor: pointer;
}
.places > li.place:last-child {
    border-bottom: none;
}
.places > li.place > .name {
    display: block;
    color: #222;
}
.places > li.place > .contact {
    display: block;
    color: #222;
    font-size: .85rem;
}
.places > li.place > .address {
    display: block;
    color: #777;
    font-size: .85rem;
}
.places > li.place:hover {
    background: #f5f5f5;
    border-radius: 3px;
}
/* Places */

/* Place picker */
.place-picker {
    display: none;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #f5f5f5;
    position: relative;
}
.place-picker .icon {
    float: right;
    height: 40px;
}
.place-picker > .name {
    display: block;
    color: #222;
}
.place-picker > .contact {
    display: block;
    color: #222;
    font-size: .85rem;
}
.place-picker > .address {
    display: block;
    color: #777;
    font-size: .85rem;
}
.place-picker:hover {
    background: #f5f5f5;
    border-radius: 3px;
}
.place-picker:after {
    position: absolute;
    content: "\f304";
    font: var(--fa-font-solid);
    color: var(--red) !important;
    font-size: .66rem;
    top: 5px;
    right: 5px;
    display:none;
    background: #fff;
    padding: 3px;
    border-radius: 0 5px 5px 0;
    transition: ease-in-all .3s all;
    opacity: 0;
}
.place-picker:before {
    position: absolute;
    content: "Click para cambiar";
    color: var(--red) !important;
    font-size: .66rem;
    top: 5px;
    right: 20px;
    display:none;
    background: #fff;
    padding: 3px;
    border-radius: 5px 0 0 5px;
    transition: ease-in-all .3s all;
    opacity: 0;
}
.place-picker:hover:before,
.place-picker:hover:after {
    display: block;
    opacity: 1;
}
/* Place picker */

/* Product picker */
.product-picker {
    display: block;
    padding: 8px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #f5f5f5;
    position: relative;
    margin-bottom: 5px;
}
.product-picker:last-child {
    margin-bottom: 0px;
}
.product-picker > .header {
    position: relative;
}
.product-picker > .header span {
    font-size: 1rem;
    display: inline-block;
    color: #333;
}
.product-picker > .header:after {
    position: absolute;
    content: "\f304";
    font: var(--fa-font-solid);
    color: var(--gray-dark) !important;
    font-size: .66rem;
    top: 5px;
    right: 5px;
    padding: 3px;
    border-radius: 0 5px 5px 0;
    transition: ease-in-all .3s all;
    opacity: 1;
}
.product-picker > .body {
    display: none;
    margin-top: 8px;
    padding-top: 8px;
}

.product-picker:not(.opened):hover {
    background: #f5f5f5;
}
.product-picker:not(.opened):hover > .header:after {
    color: var(--secondary) !important;
}

.product-picker.opened {
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
}
.product-picker.opened > .header:after {
    content: "\f068";
}
.product-picker.opened > .body {
    display: block;
    border-top: 1px solid #f5f5f5;
}
/* Product picker */

/* Order tacking status */
#formOrderTracking .form-control {
    background-color: #fff;
    border: 2px solid var(--gray);
}
#formOrderTracking button {
    position: absolute;
    right: 0;
    top: 1px;
    z-index: 99;
}
.order-tracking-status {
    --color-before: rgba(0, 0, 0, 0.7);
    --color-while: rgba(0, 0, 0, .0);
    --color-after: rgba(0, 0, 0, .0);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.order-tracking-status > li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    flex: 1;
}
.order-tracking-status > li > .img {
    position: relative;
    overflow: hidden;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-bottom: 0;
    padding: 0rem;
    z-index: 1;
}
.order-tracking-status > li > .img > img {
    filter: grayscale(100%);
    width: 100%;
    height: 100%;
}
.order-tracking-status > li > p {
    opacity: .45;
    font-size: .88rem;
    border-radius: 1rem;
    margin-bottom: 0;
    margin-left: 1rem;
    color: #222;
    text-align: center;
    z-index: 2;
}

.order-tracking-status > li.before {
    
}
.order-tracking-status > li.before > .img {
    background-color: #fff;
}
.order-tracking-status > li.before > .img > img {
    filter: none;
}
.order-tracking-status > li.before > p {
    background-color: #fff;
    opacity: 1;
}

.order-tracking-status > li.active {
    
}
.order-tracking-status > li.active > .img {
    background-color: #fff;
    animation: orderStatusPulse 2s infinite;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
.order-tracking-status > li.active > .img  > img {
    filter: none;
}
.order-tracking-status > li.active > p {
    background-color: #fff;
    opacity: 1;
}

.nav-tabs .nav-link {
    border: none;
}
.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--secondary);
    background-color: transparent;
}

/* SLIDES */
.site-slider > .item {
    border-radius: 15px;
    border: 1px solid #dee2e5;
    padding: 10px;
    margin-bottom: 10px;
}
/* SLIDES END*/

@keyframes orderStatusPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--color-before);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px var(--color-while);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--color-after);
    }
}
/* Order tacking status */

/* Order box picker */
.order-box {
    cursor: pointer;
    display: block;
    margin-bottom: 5px;
    padding: 8px;
    position: relative;
}
.order-box:last-child {
    margin-bottom: 0px;
}
.order-box > .header {
    border-bottom: 2px solid var(--gray);
    position: relative;
}
.order-box > .header span {
    font-size: 1rem;
    display: inline-block;
    color: #333;
}
.order-box > .header span.price {
    float: right;
    margin-right: 25px;
}
.order-box > .header span.date {
    float: right;
    margin-right: 10px;
    font-size: .9rem;
    color: #777;
}
.order-box > .header span.badge {
    float: right;
    margin-right: 10px;
    font-weight: normal;
    font-size: .9rem;
}
.order-box > .header span.buttons {
    float: right;
    margin-right: 25px;
}
.order-box > .header span.buttons a.btn-sm {
    padding: 0 .6rem;
    line-height: 1rem;
}
.order-box > .header:after {
    position: absolute;
    content: "\2b";
    font: var(--fa-font-solid);
    color: var(--dark) !important;
    font-size: .66rem;
    top: 4px;
    right: 5px;
    padding: 3px;
    border-radius: 0 5px 5px 0;
    transition: ease-in-all .3s all;
    opacity: 1;
}
.order-box > .body {
    display: none;
    margin-top: 0px;
    padding-top: 0px;
    height: 0;
    transition: ease-in-out 2.3s all;
}

.order-box > .body .directions {
    
}
.order-box > .body .directions p.name {
    margin-bottom: 0;
    font-size: .9rem;
}
.order-box > .body .directions p.address {
    margin-bottom: 0;
    font-size: .9rem;
    color: #777;
}

.order-box > .body .products {
    border-radius: 0px;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 1rem;
    padding-bottom: calc(1rem - 5px);
}
.order-box > .body .products > .product {
    border-bottom: 1px solid var(--gray);
    padding: 5px 0;
}
.order-box > .body .products > .product:last-child {
    border-bottom: none;
}
.order-box > .body .products > .product > p {
    margin-bottom: 0;
    font-size: .9rem;
}
.order-box > .body .products > .product > .title {
    
}
.order-box > .body .products > .product > .descrip {
    font-size: .8;
    color: #777;
}

.order-box:not(.opened):hover {
    background: #f5f5f5;
}
.order-box:not(.opened):hover > .header:after {
    color: var(--secondary) !important;
}

.order-box.opened {
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
}
.order-box.opened > .header:after {
    content: "\f068";
}
.order-box.opened > .body {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    height: auto;
}
/* Order box picker */

/* Map */
.map-container {
    position: relative;
}
.map-container > div {
    width: 100%;
    min-height: 200px;
    z-index: 1;
}
.map-container > img.pin {
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 2;
    top: calc(50% - 50px);
    left: calc(50% - 25px);
}
.map-container.map-full {
    height: 350px;
}
.map-container.map-full > div {
    height: 100%;
}
/* Map */

/** RADIO PAYMENT METHODS START **/
[type="radio"]:checked,
[type="radio"]:not(:checked),
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label,
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    display: block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before{
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after{
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: 14px;
    margin-top: -6px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after,
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after,
[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.eshop-radio {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
.eshop-radio > label {
    display: block;
    border: 1px solid #ddd;
    color: #222;;
    font-weight: bold;
    padding: 10px 15px;
    padding-left: 42px !important;
    border-radius: 5px;
    transition: ease-in-out .3s all;
}.eshop-radio > label:hover {
    border-color: var(--primary);
}
.eshop-radio [type="radio"]:checked + label,
.eshop-radio [type="checkbox"]:checked + label {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}
.eshop-radio-card.eshop-radio [type="radio"]:checked + label,
.eshop-radio-card.eshop-radio [type="checkbox"]:checked + label {
    background: var(--primary);
    border-color: var(--primary);
}
.eshop-radio [type="radio"]:disabled + label,
.eshop-radio [type="checkbox"]:disabled + label {
    opacity: .35;
}
.eshop-radio > label:after {
    
}
.eshop-radio > label:before {
    
}
.eshop-radio > label > img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}
.eshop-radio.eshop-pm > label > img {
    height: 25px;
    border-radius: 3px;
}
.eshop-radio > label > span {
    display: inline-block;
    vertical-align: middle;
}

.eshop-radio.eshop-radio-block {
    display: block;
    width: 100%;
}
.eshop-radio.eshop-radio-block > label {
    width: 100%;
    text-align: center;
}
.eshop-radio.eshop-radio-link > label {
    background: var(--gray);
    color: var(--dark);
    padding: 15px 15px !important;
    border: none;
}
.eshop-radio-card.eshop-radio.eshop-radio-link > label {
    background: #fff;
    color: var(--dark);
    padding: 0 !important;
    border-radius: 1rem;
}

.eshop-radio-link [type="radio"]:checked + label:after, .eshop-radio-link [type="radio"]:not(:checked) + label:after,
.eshop-radio-link [type="checkbox"]:checked + label:after, .eshop-radio-link [type="checkbox"]:not(:checked) + label:after {
    display: none;
}
.eshop-radio-link [type="radio"]:checked + label:before, .eshop-radio-link [type="radio"]:not(:checked) + label:before,
.eshop-radio-link [type="checkbox"]:checked + label:before, .eshop-radio-link [type="checkbox"]:not(:checked) + label:before {
    display: none;
}
/** RADIO PAYMENT METHODS ENDS **/

/* Switch */
.switch, .switch * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}
.switch label {
    font-weight: normal;
    font-size: 13px;
}
.switch label {
    cursor: pointer;
}
.switch label input[type=checkbox] {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch label input[type=checkbox]:checked + .lever.switch-col-light-blue {
    background-color: var(--primary);
}
.switch label input[type=checkbox]:checked + .lever {
    background-color: var(--primary);
}
.switch label .lever {
    margin: 0 14px;
}
.switch label .lever {
    content: "";
    display: inline-block;
    position: relative;
    width: 40px;
    height: 15px;
    background-color: var(--gray);
    border-radius: 15px;
    margin-right: 10px;
    -webkit-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    vertical-align: middle;
    margin: 0 16px;
}

.switch label input[type=checkbox]:checked + .lever.switch-col-light-blue:after {
    background-color: var(--primary);
}
.switch label input[type=checkbox]:checked + .lever:after {
    background-color: #26a69a;
    left: 24px;
}
.switch label .lever:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 21px;
    height: 21px;
    background-color: #F1F1F1;
    border-radius: 21px;
    -webkit-box-shadow: 0 1px 3px 1px rgb(0 0 0 / 40%);
    box-shadow: 0 1px 3px 1px rgb(0 0 0 / 40%);
    left: -5px;
    top: -3px;
    -webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
    transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
    -o-transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
    transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
    transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
}
/* Switch */

/* Sections */
section .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}
section .section-padding-first {
    padding-top: 85px;
}
/* Sections */

/* Side bar */
#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -12rem;
  transition: margin 0.25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
  height: 55px;
}

#sidebar-wrapper .list-group {
  width: 12rem;
  height: calc(100vh - 55px);
  overflow-y: auto;
}
#sidebar-wrapper .nav-logo {
    max-width: 9rem;
}

#sidebar-wrapper .card-body .nav .nav-item {
    margin-bottom: 1rem;
}
#sidebar-wrapper .card-body .nav .nav-item:last-child {
    margin-bottom: 0;
    margin-top: 4rem;
}
#sidebar-wrapper .card-body .nav .nav-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}
#sidebar-wrapper .card-body .nav .nav-item .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    width: 2.5rem;
}

#page-content-wrapper {
    min-width: 100vw;
    height: 100vh;
    overflow-y: auto;
    margin-top: 5rem;
}
#page-content-wrapper .main-nav {
    margin-left: 0rem;
    height: 55px;
}

body.sb-sidenav-toggled #sidebar-wrapper {
  margin-left: 0;
}
body.sb-sidenav-toggled .main-nav {
    margin-left: 0rem;
}

/* SIDE NAV */
#mySidenav a {
    /*border-radius: 1rem;*/
    color: #fff;
    display: block;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}
#mySidenav li > a:hover {
    background-color: #2C8B8A;
}
.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: -500px;
    /*background-color: var(--dark);*/
    background-image: url(/assets/img/header/webp/fondo.webp);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 30px;
}
.sidenav.opened {
    left: 0;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 2em !important;
}
#mySidenav .btn-primary {
    color: var(--secondary);
}
/* SIDE NAV */

/* TABLES */
.table thead th, .table th {
    border: none;
}
.color-table.primary-table thead th:first-child {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
.color-table.primary-table thead th {
    background-color: var(--primary);
    color: #fff;
}
.color-table.primary-table thead th:last-child {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
/* TABLES */

/* SCORE */
.score-stars {
    text-align: center;
}
.score-stars label > i {
    color: #b5b5b5;
    font-size: 1.5rem;
}
.score-stars [type="radio"] + label,
.score-stars [type="radio"]:checked + label {
    padding-left: 0.5rem;
}
.score-stars [type="radio"] + label:before,
.score-stars [type="radio"]:checked + label:after {
    display: none;
}
.score-stars [type="radio"]:checked + label > i {
    color: #fcee21;
}
/* SCORE ENDS*/

/* CUSTOMERS */
#servicesTabs {
    border: none;
    margin-left: -15px;
    margin-right: -15px;
}
#servicesTabs .nav-link {
    border-radius: 1rem;
    box-shadow: 0 2px 12px -5px rgba(181,181,181,1);
    padding: 1.5rem;
}
#servicesTabs .nav-link p {
    color: var(--dark);
}
#servicesTabs .nav-link p.title {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}
#servicesTabs .nav-link.active {
    background-color: var(--secondary);
}
#servicesTabs .nav-link.active p {
    color: #fff;
}
#servicesTabs .nav-link img {
    max-height: 80px;
}
#servicesTabs .nav-link .responsive {
    max-height: 52px;
}
#servicesTabs .nav-link.active img {
    filter: brightness(0) invert();
}

#benefits .bg-route {
    display: none;
}

#missionVision h2 {
    color: var(--secondary);
    margin-bottom: 0;
}
#missionVision p {
    font-weight: 600;
}
#missionVision .courier {
    max-height: 390px;
}
#missionVision .bubble {
    max-width: 42px;
    margin-left: 0;
    margin-right: 1rem;
}
#missionVision .first .bubble {
    max-width: 65px;
}
#missionVision .first h2 {
    font-size: 2.5rem;
}
#missionVision .first p {
    font-size: 1.3rem;
}
#missionVision .third .bubble {
    max-width: 45px;
}
#missionVision .third h2 {
    font-size: 1.5rem;
}
#missionVision .third p {
    font-size: 0.8rem;
}
#missionVision .second {
    margin-left: 3rem;
}
#missionVision .third {
    margin-left: 7rem;
}

#slider .owl-item img {
    max-width: 210px;
    border-radius: 2rem;
}
#slider .owl-nav {
    display: none;
}
#slider .bg-form {
    right: -9em;
    top: -7em;
    position: absolute;
    z-index: -1;
}
#slider .bg-form img {
    max-height: 20em;
}

#contact .height {
    height: 2em;
}

#app .download {
    max-width: 240px;
}
/* CUSTOMERS ENDS*/

/* BUSINESS */
#why img {
    max-width: 66%;
}
#customers .testimonial {    
    position: relative;
    /* height: 250px; */
    height: auto;
    width: 100%;
}
#customers .testimonial .text {
    background: var(--secondary);
    border-radius: 1rem;
    color: #fff;
    margin-left: auto;
    /* max-width: 80%; */
    max-width: 100%;
    padding: 1.2rem;
    position: relative;
}
#customers .testimonial .text i {
    font-size: 1.5rem;
    position: absolute;
}
#customers .testimonial .text p {
    margin: 0.8rem 0;
}
#customers .testimonial .text .fa-quote-left {
    left: 10px;
    top: 10px;
}
#customers .testimonial .text .fa-quote-right {
    bottom: 10px;
    right: 10px;
}
#customers .testimonial img {
    bottom: 0;
    position: absolute;
    width: 130px;
    display: none;
}

#contact .shapes {
    bottom: -24px;
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: -1;
}
#contact .shapes .img-shape {
    width: 80%;
    height: auto;
    position: absolute;
    bottom: -15%;
    right: 0px;
}
#contact.negocios .img-contact {
    width: 100%;
}
/* BUSINESS ENDS*/


/* TERMS */
#tabsTermsPrivacy .nav-link.active {
    background-color: #fff;
    color: var(--secondary);
}
#tabsTermsPrivacy .nav-link {
    color: #fff;
    font-weight: bold;
}
/* TERMS ENDS*/


@media (min-width: 768px) {
    section .section-padding-first {
        padding-top: 100px;
    }

    footer .logo {
        max-width: 220px;
        margin-left: 0;
    }
    footer .slogan {
        max-width: 140px;
        margin-right: 0;
    }

    #header .bg-city {
        width: 70%;
    }
    #header .bg-phone,
    #header .bg-laptop {
        display: block;
        bottom: -4em;
        left: -8em;
        position: absolute;
        width: 65%;
        z-index: -1;
    }
    #header .bg-laptop {
        bottom: -7em;
        left: -11em;
        width: 33em;
        z-index: 0;
    }
    #header .shapes {
        bottom: 0;
        height: 100%;
        overflow: hidden;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: -1;
    }
    #header .shapes .img-shape {
        position: absolute;
        bottom: -25%;
        right: -7%;
        width: 70%;
    }
    #header .shapes .img-shape.business {
        bottom: -144px;
        right: -23px;
        width: 650px;
    }
    #header.thanks {
        display: flex;
        align-items: center;
        height: 100vh;
    }

    #benefits .benefits img {
        max-width: 80%;
    }
    #benefits .bg-route {
        display: block;
        top: 30%;
        left: 0;
        position: absolute;
    }
    #benefits .bg-route > img {
        max-width: 96%;
    }

    #slider .bg-form {
        right: -8em;
        top: -8em;
    }
    #slider .bg-form img {
        max-height: 20em;
    }

    #slideDashboard .bg-general {
        height: 200px;
    }
    #salesResume {
        margin-top: -32px
    }
    #customerResume {
        margin-top: -17px
    }

    #contact .height {
        height: 2em;
    }
    #contact .img-contact {
        display: block !important;
        bottom: 11em;
        right: -6em;
        position: absolute;
        width: 38em;
    }

    #app .download {
        max-width: 210px;
        margin-left: 0;
    }
    #app .bg-form {
        bottom: 0;
        right: -28em;
        position: absolute;
        z-index: -1;
    }
    #app .bg-form img {
        height: 42em;
    }

    /* BUSINESS */
    #envios .bus {
        transform: translate(-3%, 10%);
        position: absolute;
    }
    #customers .testimonial .text {
        margin-right: -18%;
        /* max-width: 86%; */
        max-width: max-content;
    }
    #customers .testimonial img {
        left: -18%;
        width: 150px;
    }
    #contact .shapes .img-shape {
        width: 39%;
        bottom: 0;
    }
    #contact.negocios .img-contact {
        bottom: 8em;
        position: absolute;
        right: -22%;
        width: 32em;
    }
    /* BUSINESS ENDS*/
    
    #sidebar-wrapper {
    margin-left: 0;
    }
    #page-content-wrapper .main-nav {
    margin-left: 12rem;  
    }
    body.sb-sidenav-toggled #page-content-wrapper .main-nav {
    margin-left: 0rem;  
    }
    
    #page-content-wrapper {
    min-width: 0;
    width: 100%;
    }
    
    body.sb-sidenav-toggled #sidebar-wrapper {
    margin-left: -12rem;
    }
    .map-container.map-full {
        height: calc(100vh - 55px);
    }
    
}

@media (min-width: 1024px) {
    #header {
        min-height: 100vh;
    }
    #header .bg-phone {
        left: -12em;
        bottom: -6em;
        width: 69%;
    }
    #header .bg-laptop {
        bottom: -11em;
        left: -13em;
        width: 76%;
    }
    #header .shapes .img-shape {
        bottom: -33%;
        width: 60%;
    }
    #header .shapes .img-shape.business {
        right: 12px;
    }
    
    #slider .bg-form {
        right: -12em;
        top: -15em;
    }
    #slider .bg-form img {
        max-height: 28em;
    }

    #contact .height {
        height: 4em;
    }
    #contact .img-contact {
        width: 40em;
    }

    #app .bg-form {
        right: -24em;
    }

    /* BUSINESS */
    #envios .bus {
        max-width: 82%;
        transform: translate(8%, -7%);
    }
    #customers .testimonial {
        height: 275px;
    }
    #customers .testimonial .text {
        margin-right: -8%;
        max-width: 90%;
        padding: 2rem;
    }
    #customers .testimonial img {
        display: block;
        left: -15%;
        width: 170px;
    }
    #contact.negocios .img-contact {
        bottom: 5em;
        right: 0;
        width: 35em;
    }
    #contact .shapes .img-shape {
        width: 44%;
        bottom: -24%;
    }
    /* BUSINESS ENDS*/

    #slideDashboard .bg-general {
        height: 325px;
    }
    #salesResume {
        margin-top: -60px
    }
}

@media (min-width: 1200px) {
    section h2.title {
        font-size: 2.5rem;
    }

    #header h1 {
        margin-top: 2rem;
        font-size: 3rem;
    }
    #header h2 {
        margin-top: 5rem;
        font-size: 2.5rem;
    }
    #header .btn-cta,
    #header p {
        margin-top: 3rem;
        font-size: 1.5rem;
    }
    #header .bg-phone {
        left: -9em;
        bottom: -13em;
        width: 53%;
    }
    #header .bg-laptop {
        bottom: -13em;
        left: -11em;
        width: 65%;
    }
    #header .shapes .img-shape {
        bottom: -38%;
        right: -11%;
        width: 56%;
    }
    #header .shapes .img-shape.business {
        bottom: -24%;
        right: 16%;
        width: 55%;
    }    

    #benefits .bg-route {
        top: 20%;
    }
    #benefits .bg-route > img {
        max-width: 85%;
    }

    #missionVision .responsive .bubble {
        max-width: 55px;
    }
    #missionVision .courier {
        max-height: 450px;
    }

    #slider .owl-item img {
        max-width: 265px;
    }
    #slider .bg-form {
        right: -8em;
        top: -16em;
    }
    #slider .bg-form img {
        max-height: 27em;
    }

    #contact .img-contact {
        bottom: 10em;
        width: 57%;
    }

    #app .download {
        max-width: 300px;
    }
    #app .bg-form {
        right: -10em;
    }
    #app .bg-form img {
        height: 50em;
    }

    /* BUSINESS */
    #why img {
        max-width: 50%;
    }
    #envios .bus {
        max-width: 70%;
        transform: translate(18%, -15%);
    }
    #customers .testimonial {
        height: 300px;
    }
    #customers .testimonial .text {
        margin-right: 50px;
        max-width: 77%;
    }
    #customers .testimonial img {
        left: -10%;
        width: 210px;
    }
    #contact.negocios .img-contact {
        width: 40em;
    }
    #contact .shapes .img-shape {
        width: 43%;
        bottom: -72%;
    }
    /* BUSINESS ENDS*/

    #slideDashboard .bg-general {
        height: 420px;
    }
    #salesResume {
        margin-top: -70px
    }
    #customerResume {
        margin-top: -52px
    }
}

@media (min-width: 1920px) {
    #header .bg-phone {
        left: -11em;
        bottom: -18em;
        width: 55%;
    }
    #header .bg-laptop {
        bottom: -18em;
        left: -14em;
        width: 68%;
    }
    #header .shapes .img-shape {
        bottom: -40%;
        right: -11%;
        width: 55%;
    }
    #header .shapes .img-shape.business {
        bottom: -30%;
        right: 18%;
        width: 53%;
    }
    #somos .img-fluid {
        max-width: 80%;
    }
    #customers .testimonial .text {
        margin-right: 20%;
        max-width: 60%;
    }
    #customers .testimonial img {
        left: 0;
    }
    #contact .img-contact {
        bottom: 9em;
        right: -92px;
        width: 54%;
    }
    #contact.negocios .img-contact {
        width: 50em;
    }
}
@media (min-width: 2048px) {
    #somos .img-fluid {
        max-width: 50%;
    }
}
@media (min-width: 3840px) {
    #header {
        min-height: 50vh;
    }
    #header .bg-phone {
        left: 9em;
        bottom: -10em;
        width: 25%;
    }
    #envios .bus {
        max-width: 33%;
        transform: translate(135%, -15%);
    }
    #customers .testimonial .text {
        margin-right: 32%;
        max-width: 30%;
    }
    #customers .testimonial img {
        left: 30%;
    }
    #slider .bg-form {
        right: -7em;
        top: -28em;
    }
    #slider .bg-form img {
        max-height: 42em;
    }
    #contact .img-contact {
        right: 0;
        width: 36%;
    }
    #app .bg-form {
        right: 0;
    }
    #app .bg-form img {
        height: 60em;
    }
    #contact .shapes .img-shape {
        width: 34%;
        bottom: -153%;
    }
    #contact.negocios .img-contact {
        width: 60em;
        left: 0;
    }
}

.bg-actions {
    background-color: #1562EA;
}

.bg-item {
    background-color: #fff;
}

.c-icon {
    color: #C4C4C4;
}

.t-action {
    color: #C4C4C4;
}

.bg-item:hover {
    background-color: #ECECEC;
    
}

.bg-nav {
    background-color: #08C53A;
}
/* Side bar */

/* PM CARD */
.pm-card {
    position: relative;
    width: 300px;
    max-width: 300px;
    height: 188px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 14px;
    display: inline-block;
    margin: 10px;
}
.pm-card.visa {
    background-image: url(/assets/img/bankcards/visa.png);
}
.pm-card.mastercard {
    background-image: url(/assets/img/bankcards/mastercard.png);
}
.pm-card.american_express {
    background-image: url(/assets/img/bankcards/american_express.png);
}
.pm-card > span {
    display: block;
    margin: 0px 20px;
}
.pm-card > span.number {
    padding-top: 100px;
}
/* PM CARD */

/* Photo editor */
.photo-editor {
    position: relative;
}
.photo-editor > div {
    display: block;
}
.photo-editor * {
    transition: none !important;
}
.photo-editor img.photo-target {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: 65vh;
    max-height: 65vh;
}
.photo-editor .cropper-container {
    max-width: 100%;
    max-height: 65vh;
}
#balance .div-centered .img-money {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 20%;
}

.img-document {
    display: block;
    max-height: 200px;
}