:root {
    --cookie-bg: #595959;
    --cookie-text-color: #fff;
    --cookie-btn-bg:#FF40B4;
    --cookie-btn-bg-hover:#0E100A;
    --cookie-btn-text-hover:#fff;
}

.wrap-cookie {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
}

.mensagem-cookie {
    display: flex;
    width: 75%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform:translateX(-50%);
    margin: 0;
    z-index: 9999;
    padding: 10px;
    background-color: var(--cookie-bg);
    font-size: 12px;
    line-height: 16px;
    box-sizing: border-box;
}

.mensagem-cookie p {
    align-self: center;
    padding: 0 10px;
    margin: 0;
    color: var(--cookie-text-color);
    font-size: 14px;
    font-weight: 100;
}

.mensagem-cookie .fechar.desktop {
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 57px;
    color: #000;
    border-left: 1px solid var(--cookie-bg);
    font-weight: bold;
    padding: 0 20px;
    background: var(--cookie-btn-bg);
    height: 55px;
    align-self: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.mensagem-cookie .fechar.desktop:hover {
    color: var(--cookie-btn-text-hover);
    background: var(--cookie-btn-bg-hover);
}

@media(max-width:768px) {
    .mensagem-cookie {
        width: 100%;
    }
}

/**********************************************/

.zap-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 500;
    box-shadow: 2px 2px 4px #000;
}

.zap-float:hover {
    background-color: #fff;
    color: #25d366;
}

.zap-ico-float {
    margin-top: 16px;
}

#btn-back-top {
    bottom: 90px;
    right: 16px;
}

@media (max-width: 1200px) {

    .header-logo {
        margin-top: 38px;
        width: 252px;
    }

    .header-logo img {
        width: 252px;
    }
}



/*****************/
.swiper-button-next, .swiper-rtl .swiper-button-prev,
.swiper-button-prev, .swiper-rtl .swiper-button-next{
    color: #fff;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 40px;    
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    background-color: #fff;
}



/************************/

.modal_popup_background {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
}

.modal_popup_box {    
    max-width: 630px;
    height: 400px;
    margin: auto;
    background: #0E100A;
    padding: 25px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 5px 5px 10px;
    box-sizing: border-box;
}
.modal_popup_box header{
    background: none;
    height: auto;
    padding: 10px 0 30px;
    position: relative;
}

.modal_popup_box header h2{
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}
.modal_popup_box header strong{
    font-weight: 800;
}

.modal_popup_flex{
    display: flex;
}

.modal_popup_form{
    width: 70%;
    padding-right: 30px;
}

.modal_popup_logos{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_popup_logo_cipatex{
    width: 70%;
    margin-top: 95px;
}

.modal_popup_form input {
    color: #3C3C3A;
    border: 1px solid #3C3C3A;
    width: 100%;
    padding: 12px 14px;
    box-sizing: border-box;
    margin-bottom: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.modal_popup_form textarea {
    height: 241px;
    margin-bottom: 15px;
}

.modal_popup_form input::placeholder,
.modal_popup_form textarea::placeholder {
    color: #3C3C3A;
    opacity: 1;
    text-transform: uppercase;
}

.modal_popup_form button {
    color: var(--second-color);
    background-color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 30px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    float: right;
    border: none;
    text-transform: uppercase;
}

.modal_popup_form button:hover {
    background-color: #fff;
    color: var(--second-color);
}

@media (max-width: 640px) {
    .modal_popup_box {
        height: auto;
        margin: auto 10px;
    }
    .modal_popup_flex{
        display: flex;
        flex-direction: column;
    }
    .modal_popup_form{
        width: 100%;
        padding-right: 0;
        order: 2;
    }
    
    .modal_popup_logos{
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .modal_popup_logo_freedom{
        width: 40%;
    }
    .modal_popup_logo_cipatex{
        width: 30%;
        margin-top: 0;
    }
}

/*********************************************/

/* Back to top */
#btn-back-top {
    display: inline-block;
    background-color: var(--primary-color);
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 120px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 500;
    padding: 5px;
    box-shadow: 2px 2px 4px;
}

#btn-back-top::after {
    display: block;
    content: ' ';
    background-image: url('../img/move-to-top-icon-white.png');
    background-size: 45px 45px;
    background-repeat: no-repeat;
    height: 45px;
    width: 45px;
}

#btn-back-top:hover {
    cursor: pointer;
    background-color: var(--second-color);
}

#btn-back-top:active {
    background-color: var(--second-color);
}

#btn-back-top.show {
    opacity: 1;
    visibility: visible;
}

/* Back to top */