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

    0.  :root        
    1.  dexvcbkng_button_skin

    10. Responsive
*/


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

/* 1. dexvcbkng_button_skin
--------------------------------------------------------------*/
.dexvcbkng_button_skin {
    display: inline-flex;
}
.dexvcbkng_button_skin a {
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--colorPrimary);
    color: #fff;
    border-radius: 5px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 500;
    justify-content: center;
    line-height: 1.3;    
    margin: 10px 10px 10px 0px;
    overflow: hidden;
    padding: 12px 12px;
    text-align: center;    
}
.dexvcbkng_button_skin a:hover,
.dexvcbkng_button_skin a:active,
.dexvcbkng_button_skin a:focus {
    background-color: #333;
    text-decoration: none;
}

/* 10. Responsive */
@media (max-width:600px) {
    .dexvcbkng_button_skin,
    .dexvcbkng_button_skin a {
        margin:0px 0px 10px;
        width: 100%;
    }
    .dexvcbkng_button_skin:nth-child(even) a {
        margin-right:0px;
    }    
}