/*!
 * Componente Nombre:  dexvcbkng    | default
 * Autor: DEX360
 * Copyright: DEX360

    0.  :root        
    1.  dexvcbkng_general
        1.1. dexvcbkng_generic_button
        1.2. dexvcbkng_steps_line
        1.3. dexvcbkng_icon_x
    2.  dexvcbkng_steps_error_skin      [error.css]
    3.  dexvcbkng_steps_cancel_skin     [cancel.css]
    4.  dexvcbkng_steps_booking_skin    [booking.css]

    10. Responsive
*/


/* 0. :root */
:root {
    --colorPrimary: #265CF2;
}

/* 1. dexvcbkng_general 
--------------------------------------------------------------*/
.dexvcbkng_general {
    text-align: center;
}
.dexvcbkng_general_title {
    margin-top:40px;
    padding:10px 0px 50px 0px;
    text-align: center;    
}
.dexvcbkng_general_title span {
    color: var(--colorPrimary);
}
.dexvcbkng_general_title h3 {
    font-size: 1.6em;
}
.dexvcbkng_general_title h4 {
    font-size: 1.2em;
    font-weight:600;
}

/* 1.2. dexvcbkng_generic_button */
.dexvcbkng_generic_button {
    -webkit-appearance: none;
    -moz-appearance: none;
    align-items: center;
    appearance: none;
    background-color: #000000;
    display: inline-flex;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    justify-content: center;
    overflow: hidden;
    padding: 12px 12px;
}
.dexvcbkng_generic_button:hover,
.dexvcbkng_generic_button:active,
.dexvcbkng_generic_button:focus {
    background-color: #333;
    text-decoration: none;
}

/* 1.3. dexvcbkng_steps_line */
.dexvcbkng_steps_line {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: -1;
}
.dexvcbkng_steps_line::before {
    background: #A6A6A6;
    content: '';
    left: 50%;
    margin-left: -1px;
    height: 100%;
    position: absolute;
    top: 0;
    width: 2px;
    z-index: 1;
}
.dexvcbkng_steps_line .timeline_block {
    display: flex;
    justify-content: center;
    clear: both;
    margin-bottom:30px;
}
.dexvcbkng_steps_line .timeline_block:last-child {
    margin-bottom:0px;
}
.dexvcbkng_steps_line .marker {
    align-items: center;
    background: #000000;
    border-radius: 50%;
    color:#ffffff;
    display: flex;
    font-size: 16px;
    justify-content: center;
    height: 35px;
    margin-top: 0px;
    width: 35px;
    z-index: 9999;
}
.dexvcbkng_steps_line .step-active {
    background: var(--colorPrimary);
    font-size: 21px;
    height: 60px;
    width: 60px;
}

/* 4.3. dexvcbkng_steps_error_skin-icon */
.dexvcbkng_icon_x {
    align-items:center;
    background-color: #ff0000;
    border-radius:50px;
    color: white;
    display:flex;
    justify-content:center;
    height:30px;
    left:0px;
    position: absolute;
    top:-2px;
    width:30px;
}
.dexvcbkng_icon_x:before {
    background-color: #000;
    background-color: currentColor;
    content: '';
    height: 2px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 15px;
}
.dexvcbkng_icon_x:after {
    background-color: #000;
    background-color: currentColor;
    content: '';
    height: 2px;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 15px;
}


/* 10. Responsive */
@media (max-width:600px) {
    .dexvcbkng_general_title h3 {
        font-size: 1.3em;
    }    
    /* dexvcbkng_steps_booking_skin_info */
    .dexvcbkng_steps_booking_skin_info {
        margin: 0px auto;
        width:80%;
    }     
    /* dexvcbkng_steps_line */
    .dexvcbkng_steps_line { 
        align-items: center;
        display: flex;
        justify-content: center;
        margin:0px 15px 0px 10px;
        width: 100%;
    }
    .dexvcbkng_steps_line .timeline_block:last-child {
        margin: 0px 20px 30px 0px;
    }
    .dexvcbkng_steps_line::before {
        left: 5%;
        height: 2px;
        margin: 0px 0px 0px 10%;
        padding-left:5%;
        top: 28px;
        width: 70%;        
    }
    .dexvcbkng_steps_line .timeline_block {
        margin: 0px 20px 30px 0px;
    }
    /* dexvcbkng_generic_button */
    .dexvcbkng_generic_button {
        display: flex;
        margin-bottom: 20px;
        width: 100%;
    }
    /* dexvcbkng_steps_error_skin-icon */
    .dexvcbkng_icon_x {
        justify-content: center;
        left: inherit;
        position: relative;
        top: inherit;
        margin: 0px auto 10px;
    }
}