﻿:root {
    --gris: #ECECEC;
    --azul: #1E47A9;
    --azul-claro-barcos: #E5EAF7;
    --azul-claro-botones: #687CA9;
    --azul-claro-precios: #687CA93D;
}

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    background-color: var(--gris);
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

    .div-logo > img {
        width: 80px;
        object-fit: cover;
    }

.cover {
    object-fit: cover;
    background-size: cover;
}

.w-fit-content {
    width: fit-content !important;
}

.border-radius-4px {
    border-radius: 4px;
}

.border-radius-9px {
    border-radius: 9px;
}

.nombre-usuario {
    color: #717070;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    vertical-align: middle;
}

.bg-gris {
    background-color: var(--gris);
}

.texto-precio-total {
    font-size: 48px;
    font-weight: 400;
    line-height: 72px;
    text-align: center;
    height: 104px;
    color: transparent;
    transition: color 0ms ease-in-out;
}

    .texto-precio-total.active {
        color: #000000;
        transition: color 300ms ease-in-out;
    }

.texto-numero-pasajeros {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    color: #707070;
}

.texto-numero-pasajeros:hover {
    cursor: default;
}

.splide__arrow {
    background-color: transparent !important;
    width: 0.4em !important;
    height: 0.4em !important;
}

    .splide__arrow svg {
        fill: #707070 !important;
    }

.splide__arrow--prev {
    left: -6px !important;
}

.splide__arrow--next {
    right: -6px !important;
}

.splide__track {
    overflow: visible !important;
}

.texto-selector-vehiculo {
    font-weight: 400;
    color: #000000;
    font-size: 10px;
    line-height: 15px;
    display: inline-block;
}

.vehiculo {
    border: 1px solid transparent;
}

.vehiculo:hover {
    cursor: pointer;
}

.vehiculo.active {
    border-color: var(--azul);
    background-color: var(--azul-claro-barcos);
    transition: all 300ms ease-in-out;
}

button:disabled {
    cursor: not-allowed;
}

.texto-selector-pasajeros,
.iconos-selector-pasajeros,
.boton-borrar-compra,
.boton-confirmar-compra {
    font-weight: 400;
    border: 0;
    width: 100%;
}

.texto-selector-pasajeros,
.boton-borrar-compra,
.boton-confirmar-compra {
    font-size: 12px;
    line-height: 18px;
}

.texto-selector-pasajeros {
    font-size: 12px;
    line-height: 18px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
}

.iconos-selector-pasajeros {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.boton-borrar-compra,
.boton-confirmar-compra {
    transition: background-color 300ms ease-in-out;
}

.boton-borrar-compra {
    background-color: #ED2C2C;
    color: #FFFFFF;
}

    .boton-borrar-compra:disabled {
        background-color: #EDB5B5;
    }

.boton-confirmar-compra {
    background-color: var(--azul);
    color: #FFFFFF;
}

    .boton-confirmar-compra:disabled {
        background-color: var(--azul-claro-botones);
    }

.precio-vehiculo {
    display: none !important;
}

    .precio-vehiculo.active {
        display: flex !important;
        background-color: var(--azul-claro-precios);
        color: #000000;
    }

.modal-content {
    border: 0;
}

.modal-backdrop {
    background-color: var(--gris);
}

.modal-backdrop.show {
    background-color: var(--gris);
    opacity: 1;
}

.bg-boton-gris {
    background-color: #C2C2C2;
}

.bg-boton-azul {
    background-color: var(--azul);
}

.texto-modal {
    font-weight: 400;
    font-size: 15px;
    line-height: 22.5px;
    color: #000000;
}

.texto-modal h6 {
    font-size: 15px;
}

.texto-modal button {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
}

.texto-iniciar-sesion input,
.texto-iniciar-sesion label {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.texto-iniciar-sesion label {
    color: black;
}

.texto-iniciar-sesion button {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}