﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */

@import url('https://fonts.googleapis.com/css?family=Montserrat');

body {
    font-family: Montserrat;
    color: #424242;
}

@media (max-width: 767px) {
    .panel {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    body {
        padding-top: 50px;
        padding-bottom: 20px;
    }
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

.dayvo-text-mode {
    color: red !important;
    border-color: red !important;
}

.caja-azul {
    color: #fff;
    /*padding: 2em;*/
}

.borde-azul {
    border: 2px solid #aed1e8;
}

.caption-heading-blue-light {
    color: #fff;
    background-color: #7eafd0;
    border: none;
    padding-left: 1.5em;
    margin: 0;
}

.scrollable {
    overflow-y: scroll;
    /*max-height: 350px;*/
}

.row-no-padding {
    margin-left: 0;
    margin-right: 0;
}

    .row-no-padding > div {
        padding-left: 0;
        padding-right: 0;
    }

html {
    letter-spacing: 1px;
}

.form-control {
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    width: 100%;
}

label {
    font-weight: 500;
    font-size: .8em;
    letter-spacing: 1px;
}

.box-shadow {
    -webkit-box-shadow: 10px 10px 35px -9px rgba(197,196,196,1);
    -moz-box-shadow: 10px 10px 35px -9px rgba(197,196,196,1);
    box-shadow: 10px 10px 35px -9px rgba(197,196,196,1);
}

button.box-shadow {
    -webkit-box-shadow: 2px 3px 7px 0px rgba(38, 163, 50, 0.5);
    -moz-box-shadow: 2px 3px 7px 0px rgba(38, 163, 50, 0.5);
    box-shadow: 2px 3px 7px 0px rgba(38, 163, 50, 0.5);
}

.cut-text {
    text-overflow: ellipsis;
    overflow: hidden;
    height: 1.2em;
    white-space: nowrap;
}

.form-container {
    width: 400px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    color: #555;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
}

    button:hover {
        background-color: #0056b3;
    }

.card-type {
    font-size: 14px;
    color: #007bff;
    margin-top: 5px;
}

.input-icon-wrapper {
    position: relative;
}

.card-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #007bff;
}

.card-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #007bff;
}

.timeline {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .timeline li {
        position: relative;
        width: 30%;
        text-align: center;
        color: gray;
        left:10px;
        font-size: 0.9em;
    }

        .timeline li::before {
            content: '';
            display: inline-block;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: gray;
            border: 4px solid gray;
            position: relative;
            z-index: 2;
            right: 5%;
        }

        .timeline li.active::before {
            background-color: #4CAF50;
            border-color: #4CAF50;
        }

        .timeline li.active,
        .timeline li.active ~ li {
            color: lightgray;
        }

            .timeline li.active + li::after {
                background-color: #4CAF50;
            }

.arrow-pointer {
    color: black !important;
    height: 20px;
}

.btn-send {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}