/**
* NOTICE OF LICENSE
*
* This source file is subject to a commercial license from SOLEDIS
* Use, copy, modification or distribution of this source file without written
* license agreement from the SOLEDIS GROUP is strictly forbidden.
*    ___  ___  _    ___ ___ ___ ___
*   / __|/ _ \| |  | __|   \_ _/ __|
*   \__ \ (_) | |__| _|| |) | |\__ \
*   |___/\___/|____|___|___/___|___/
*
*  @author    SOLEDIS <prestashop@groupe-soledis.com>
*  @copyright 2019 SOLEDIS
*  @license   All Rights Reserved
*/

.header-veto-space {
    display: none;
    align-items: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 25px;
    line-height: 1.25rem;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    border: 2px solid #fff;
    white-space: nowrap;
    margin-left: 14px;
}

.header-veto-space:hover {
    background-color: #fff;
    border-color: #fff;
}
.header-veto-space:hover,
.header-veto-space:hover i,
.header-veto-space:hover i:before {
    color: #71B5BA !important;
}

.header-veto-space i {
    margin-right: 2px;
    font-size: 1rem;
    margin-right: 4px;
}
.header-veto-space i,
.header-veto-space i:before {
    transition: .3s color;
}

@media (min-width: 992px) {
    .header-veto-space {
        display: flex;
    }
}