input[type="text"], input[type="tel"], select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: none;
}

/* Início da estrutura do Formulário*/
    .form-container {
        width: 90%;
        margin: 20px;
        padding: 20px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        background-color: #f6f6f6;
        border-radius: 20px;
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    }

    .step {
        display: none;
    }

    .step.active {
        display: block;
    }

    .step h2 {
        color: #000000;
        font-weight: 600; /* Bold added */
        font-size: 25px;
        line-height: 35px;
    }

    .step b {
        color: #fff;
        background-color: #007be5;
        padding: 3px 5px;
        border-radius: 5px;
    }

    .step p {
        color: #666;
        margin: 20px;
        font-size: 16px;
    }

    button[type="submit"] {
        background-color: transparent;
        border: none;
        border-radius: 40px;
        padding: 10px 20px;
        cursor: pointer;
        color: #0f0f0f;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
    }

    button[type="submit"]:hover {
        background-color: #e8e8e8;
    }

    .btn-group button.selected {
        background-color: #007be5;
        color: #ffffff;
        border-radius: 40px;
    }

    .btn-group {
        display: flex;
        justify-content: space-around;
        margin-bottom: 20px;
        background-color: #efefef;
        border-radius: 40px;
        padding: 8px;
    }

    .btn-group button {
        flex: 1;
        margin: 0 5px;
    }

    #amount {
        flex: 1;
        margin: 0 10px;
    }

    #rs, #centavos {
        font-size: 14px;
        font-weight: light; 
        margin-bottom: 20px;
        padding-right: 5px;
        color: #333;
    }

    #amount-value {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #000000;
    }

    #consorcio-form input[type="range"] {
        width: 95%;
        height: 10px;
        border-radius: 5px;
        background: #000000;
        outline: none;
        padding: 0px;
        margin: 20px 0px 0px 0px;
    }

    .range-container {
        display: flex;
        align-items: center;
        padding: 10px 15px;
    }

    #range-min, #range-max {
        width: auto;
        text-align: center;
        color: #333;
        font-size: 14px;
        font-weight: normal;
        font-style: italic;
    }

    #range-min-rs {
        width: auto;
        text-align: start;
        color: #333;
        font-size: 14px;
        font-weight: normal;
        margin-right: 4px;
    }

    #range-max-rs {
        width: 100%;
        text-align: end;
        color: #333;
        font-size: 14px;
        font-weight: normal;
        margin-right: 4px;
    }

    #simular-btn {
        background-color: #db6a00;
        border: none;
        border-radius: 40px;
        padding: 10px 20px;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        font-size: 15px;
        width: 100%;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 15px;
    }

    #step-2 h2 {
        color: #000000;
        font-weight: bold; /* Bold added */
        font-size: 25px;
        margin-bottom: 20px;
    }

    .input-group {
        position: relative;
        margin-bottom: 20px;
    }

    .input-group input[type="text"], .input-group input[type="email"], .input-group input[type="tel"] {
        width: 100%;
        padding: 10px 20px;
        border: 2px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        color: #505050;
        background-color: #fff;
    }

    .input-group input:focus {
        border-color: #131313;
        box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
    }

    select {
        width: 100%;
        padding: 10px 15px;
        border: 2px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        color: #505050;
        font-family: 'Montserrat', sans-serif;
        background-color: #fff;
    }

    select:focus {
        border-color: #131313;
        box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
    }

    .input-group label {
        position: absolute;
        top: 12px;
        left: 20px;
        color: #505050;
        transition: 0.3s;
        pointer-events: none;
    }

    .input-group input[type="text"]:focus + label, .input-group input[type="email"]:focus + label, .input-group input[type="tel"]:focus + label {
        opacity: 0;
        transform: translateY(-10px);
    }

    .input-group input:focus + label, .input-group input:not(:placeholder-shown) + label, .input-group select:not([value=""]) + label {
        opacity: 0;
        transform: translateY(-10px);
    }

    .ui-autocomplete {
        max-height: 150px;  /* Limita a altura visível para exibir 5 opções */
        overflow-y: auto;  /* Adiciona barra de rolagem vertical */
        overflow-x: hidden;  /* Remove barra de rolagem horizontal */
        background-color: #fff !important;  /* Fundo branco */
        font-family: 'Montserrat', sans-serif !important;  /* Fonte personalizada */
    }

    .ui-menu-item-wrapper {
        padding: 10px 15px !important;  /* Espaçamento das opções */
        cursor: pointer;
    }
    
    .canal {
        color: #146f96;
        font-style: italic;
        font-size: 14px;
    }

    .button-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    #back-btn-2 {
        background-color: transparent;
        border: none;
        border-radius: 40px;
        padding: 10px 20px;
        cursor: pointer;
        color: #0f0f0f;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
    }

    #result-btn {
        background-color: #db6a00;
        border: none;
        border-radius: 40px;
        color: #fff;
        cursor: pointer;
        padding: 10px 20px;
        font-size: 16px;
        width: auto;
    }

    #mensagem {
        color: rgb(114, 14, 14);
        padding-top: 15px;
    }

/* Fim da estrutura do Formulário*/
/* Fim da estrutura da seção capa */

/*Sessão produtos*/
.section-produtos {
    display: flex;
    justify-content: center; /* Alinha horizontalmente */
    align-items: center; /* Alinha verticalmente */
    margin-bottom: 30px;
}

.construcao-mobile {
    display: flex;
}

.construcao-desk {
    display: none;
}

.produtos-container {
    display: block;
}

.produtos-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 60px;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 125px;
    border: 3px solid #0f6fc6;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: rgba(15, 111, 198, 0.05);
}

.icon-box img {
    width: 70px;
    height: 70px;
}

.active .icon-box {
    border: 2px solid #0f6fc6;
    background-color: rgba(15, 111, 198, 0.1);
}

/*cartoes - bolt*/
.pricing-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 30px; /* Optional: Add padding to the container to ensure cards are not cut off */
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 10px 20px; /* This will add 20px space between the cards (10px on each side) */
}

.pricing-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    color: #284a71;
}

.credit-info {
    margin-bottom: 1rem;
}

.credit-label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.credit-amount {
    font-size: 1rem;
    font-weight: normal;
}

.credit-amount span {
    font-size: 2.5rem;
    font-weight: bold;
    margin-left: 4px;
}

.monthly-amount {
    font-size: 1rem;
    font-weight: normal;
}

.monthly-amount span {
    font-size: 2.5rem;
    font-weight: bold;
    margin-left: 4px;
}

.per-text {
    padding: 5px 0px;
}

.crossed-out {
    text-decoration: line-through;
    color: #e5004b;
}

.payment-info {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.simulate-button {
    display: block;
    width: 80%;
    padding: 0.8rem;
    background-color: #007bff;
    color: white;
    text-align: center;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    margin: 0 auto;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin: 10px 40px; /* This will add 20px space between the cards (10px on each side) */
    }
}

/*Vantagens 1*/
/* Estilos para a seção de vantagens do Consórcio Porto */

.vantagens-section {
    position: relative;
    padding: 80px 0 150px; /* Aumentar o padding inferior para dar espaço aos cards */
    background-color: #007ce5;
    overflow: visible; /* Mudar de hidden para visible para permitir que elementos ultrapassem os limites */
    height: 500px; /* Definir uma altura fixa ou ajustar conforme necessário */
    box-sizing: border-box;
  }
  
  /* Background com imagem de baixa opacidade */
  .vantagens-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://storage.googleapis.com/consorcioportovale/imagens-turbinada/Camada%203.png'); /* Substitua pelo caminho da sua imagem de fundo */
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4; /* Opacidade baixa como na imagem */
    z-index: 1;
  }
  
  /* Container para centralizar o conteúdo */
  .vantagens-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2; /* Coloca o conteúdo acima do background com opacidade */
  }
  
  /* Estilo do título */
  .vantagens-title {
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .vantagens-title span {
    font-weight: 700;
  }
  
  /* Grid de cards */
  .vantagens-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    top: 20px; /* Ajuste esse valor para controlar quanto os cards descem */
  }
  
  /* Estilo dos cards */
  .vantagem-card {
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 30px 20px;
    width: calc(25% - 30px); /* Ajuste para 4 cards por linha com gap */
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Ícones nos cards */
  .card-icon {
    margin-bottom: 15px;
    justify-content: end;
  }
  
  .card-icon img {
    width: 40px;
    height: 40px;
  }
  
  /* Título do card */
  .vantagem-card h3 {
    color: #003366;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  /* Texto do card */
  .vantagem-card p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Responsividade */
  @media (max-width: 992px) {
    .vantagem-card {
      width: calc(50% - 10px); /* 2 cards por linha em telas médias */
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .vantagem-card {
      width: 100%; /* 1 card por linha em telas pequenas */
    }
  }

.section-respiro {
    height: 720px;
}

/* Início da seção tabela */
.section-tabela {
    position: relative;
    color: #000000;
    background-color: #dfe1e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 25px;
    text-align: center;
    overflow: hidden;
}

.section-tabela h2 {
    color: #283750;
    font-weight: 500;
    font-size: 30px;
}

.tabela-desktop {
    display: none;
}

.section-tabela button {
    background-color: #007be5;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
}
/* Fim da seção tabela */

/* Início da seção feedbacks */
.section-feedbacks {
    color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 25px;
    text-align: center;
}

.section-feedbacks h2 {

    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.feedbacks-subtitulo {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

#simular-btn-feedbacks1 {
    display: none;
}

.section-feedbacks div {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: auto;
}

.video-placeholder {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-bottom: 30px;
}

.lazy-video {
    display: none;
    width: 100%;
    height: 245px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.defesa {
    padding: 15px;
    font-size: 12px;
    color: #dfe1e5;
    max-width: 800px;
    line-height: 15px;
}
/* Fim da seção feedbacks */

/* Início do rodapé */
.rodape, .politica {
    background-color: #dfe1e5;
}

.rodape-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rodape img {
    margin: 20px;
    width: 250px;
}

.informacoes-rodape {
    color: #283750;
    margin: 20px;
}

.politica a {
    color: #283750;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

/* Para telas maiores (tablet e desktop) */
@media (min-width: 768px) {
        button {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #simular-btn:hover, #result-btn:hover {
            background-color: #000000;
            color: #db6a00;
            transform: translateY(-5px); /* Leva o botão 5px para cima */
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .simulate-button:hover, .section-tabela button:hover {
            background-color: #0056b3;
        }

        #back-btn-2:hover {
            background-color: #cccccc;
            color: #000000;
            transform: translateY(-5px); /* Leva o botão 5px para cima */
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
    /* Início da estrutura do Formulário*/
        .form-container {
            max-width: 35%;
            margin: 40px;
            padding: 30px;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            background-color: #f6f6f6;
            border-radius: 20px;
        }

        .step {
            display: none;
        }

        .step.active {
            display: block;
        }

        .step h2 {
            color: #000000;
            font-weight: bold; /* Bold added */
            font-size: 25px;
        }

        .step p {
            color: #666;
            margin: 20px;
        }

        #amount {
            flex: 1;
            margin: 0 10px;
        }

        #rs, #centavos {
            font-size: 16px;
            font-weight: light; 
            margin-bottom: 20px;
            padding-right: 5px;
            color: #333;
        }

        #amount-value {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #000000;
        }

        #consorcio-form input[type="range"] {
            width: 100%;
            height: 10px;
            border-radius: 5px;
            background: #000000;
            outline: none;
            padding: 0px;
            margin: 20px 0px 0px 0px;
        }

        .range-container {
            display: flex;
            align-items: center;
            padding: 10px 15px;
        }

        #range-min, #range-max {
            width: auto;
            text-align: center;
            color: #333;
            font-size: 14px;
            font-weight: normal;
        }

        #range-min-rs {
            width: auto;
            text-align: start;
            color: #333;
            font-size: 14px;
            font-weight: normal;
        }

        #range-max-rs {
            width: 100%;
            text-align: end;
            color: #333;
            font-size: 14px;
            font-weight: normal;
        }

        #step-2 h2 {
            color: #000000;
            font-weight: bold; /* Bold added */
            font-size: 25px;
            margin-bottom: 20px;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .input-group input[type="text"], .input-group input[type="email"], .input-group input[type="tel"] {
            width: 100%;
            padding: 10px 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            color: #505050;
        }

        .input-group input:focus {
            border-color: #131313;
            box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
        }

        select {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            color: #505050;
            font-family: 'Montserrat', sans-serif;
        }

        select:focus {
            border-color: #131313;
            box-shadow: 0 0 5px rgba(54, 54, 54, 0.75);
        }

        .input-group label {
            position: absolute;
            top: 12px;
            left: 20px;
            color: #505050;
            transition: 0.3s;
            pointer-events: none;
        }

        .input-group input[type="text"]:focus + label, .input-group input[type="email"]:focus + label, .input-group input[type="tel"]:focus + label {
            opacity: 0;
            transform: translateY(-10px);
        }

        .input-group input:focus + label, .input-group input:not(:placeholder-shown) + label, .input-group select:not([value=""]) + label {
            opacity: 0;
            transform: translateY(-10px);
        }

        #mensagem {
            color: rgb(114, 14, 14);
            padding: 0px;
        }

    /* Fim da estrutura do Formulário*/
    /* Fim da seção capa*/

    /*Seção produtos*/
    .produtos-container {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        padding: 20px 10px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .construcao-mobile {
        display: none;
    }

    .construcao-desk {
        display: flex;
    }

    .icon-box {
        width: 125px;
    }

    /*Seção vantagens*/
    .vantagens-section {
        position: relative;
        margin-top: 80px;
        padding: 60px 0 150px; /* Aumentar o padding inferior para dar espaço aos cards */
        background-color: #007ce5;
        overflow: visible; /* Mudar de hidden para visible para permitir que elementos ultrapassem os limites */
        height: 350px; /* Definir uma altura fixa ou ajustar conforme necessário */
        box-sizing: border-box;
    }
    
    /* Background com imagem de baixa opacidade */
    .vantagens-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('https://storage.googleapis.com/consorcioportovale/imagens-turbinada/Camada%203.png'); /* Substitua pelo caminho da sua imagem de fundo */
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.6; /* Opacidade baixa como na imagem */
        z-index: 1;
    }
    
    /*Seção respiro*/
    .section-respiro {
        height: 150px;
    }

    /*Início da seção tabela*/
    .section-tabela h2 {
        font-size: 35px;
    }

    .section-tabela {
        position: relative;
        color: #000000;
        background-color: #dfe1e5;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 25px;
        text-align: center;
        overflow: hidden;
    }

    .tabela-mobile {
        display: none;
    }

    .tabela-desktop {
        display: block;
        max-width: 75%;
    }

    .section-tabela button {
        max-width: 40%;
    }
    /*Fim da seção tabela*/

    /* Inicio da seção feedbacks */
    .section-feedbacks div {
        max-width: 100%;
        padding: 20px 30px 0px 30px;
        align-items: center;
    }

    .feedback-principal {
        display: flex;
        width: 100%;
    }

    .titulo-feedbacks h2 {
        font-size: 35px;
        text-align: start;
    }

    .titulo-feedbacks p {
        font-size: 18px;
        text-align: start;
    }

    .video-titulo {
        max-width: 50%;
    }

    .video-titulo .lazy-video {
        height: 365px;

    }

    #simular-btn-feedbacks1 {
        display: block;
        max-width: 40%;
        margin-bottom: 15px; 
    }

    #simular-btn-feedbacks2 {
        display: none;
    }

    .video-serie {
        display: flex;
        max-width: 100%;
    }

    .video-serie img, iframe {
        width: 30%;
        margin: 20px;
    }

    .defesa {
        font-size: 14px;
        line-height: 16px;
        max-width: 1000px;
    }

    /* Fim da seção feedbacks */
    /* Fim da seção feedbacks */
    .rodape-container {
        flex-direction: row;
        justify-content:space-between;
        align-items: center;
        padding: 10px 100px;
        text-align: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    .rodape img {
        width: 150px;
        margin: 20px;
    }

    .politica {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/*//////// BLIP CHAT ////////*/
* {
	margin: 0;
	padding: 0;
}

a {
	cursor: pointer;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url(https://www.blip.ai/wp-content/uploads/2023/04/font-47.ttf);
}

.blip-card .bubble.left, .blip-card .bubble.middle {
    color: #292929 !important;
}

.blip-chat-icon {
	height: auto !important;
	max-height: 6.25em;
}

.message-bubble {
	font-family: 'Montserrat', sans-serif;
    font-size: 15px;
	position: relative;
	display: flex;
	flex-flow: row wrap;
	background: #ffffff;
	color: #000000;
	width: auto;
	max-width: 15em;
	border-radius: 0.8125em 0.8125em 0.125em 0.8125em;
	box-shadow: 0.0625em 0.25em 0.5625em rgb(0 0 0 / 10%);
	z-index: 980;
	animation: toggle-bubble 0.5s ease-out;
	line-height: 1.5em;
	transform-origin: 100% 100%;
}

.textContainer {
	padding: 1em 1.5em;
}

.message-bubble::after {
	bottom: 0;
	content: '';
	position: absolute;
	left: calc(100% - 0.9375em);
	width: 0;
	border: 0.875em solid transparent;
	border-bottom-color: #ffffff;
	border-radius: 0.28125em;
}

.message-bubble::before {
	bottom: 0;
	content: '';
	position: absolute;
	left: calc(100% - 0.75em);
	width: 0;
	border: 0.9375em solid transparent;
	border-bottom-color: rgb(0 0 0 / 5%);
	filter: blur(0.125em);
	border-radius: 0.28125em;
}

.message-bubble .close-button {
	position: absolute;
	right: 0.625em;
	top: 0.9375em;
	width: 0.7em;
	height: 0.7em;
	opacity: 0.3;
}

.message-bubble .close-button:hover {
	opacity: 1;
	cursor: pointer;
}

.message-bubble .close-button:before,
.message-bubble .close-button:after {
	position: absolute;
	content: ' ';
	height: 0.8em;
	width: 0.125em;
	background-color: #333;
}

.message-bubble .close-button:before {
	transform: rotate(45deg);
}

.message-bubble .close-button:after {
	transform: rotate(-45deg);
}

@keyframes toggle-bubble {
	from {
		transform: scale(0.1);
	}

	to {
		transform: scale(1);
	}
}

#blip-chat-container {
	display: inline-flex;
	flex-direction: row-reverse;
	flex-wrap: nowrap;
	align-items: center;
	gap: 18px;
}

#blip-chat-container>#blip-chat-open-iframe {
	position: static !important;
	background-size: contain;
	box-shadow: none !important;
	width: auto !important;
	height: auto !important;
}

#blip-chat-icon {
	position: static;
	width: auto !important;
	height: auto !important;
	max-width: 3.75em !important;
	border-radius: 0% !important;
}

#blip-chat-close-icon {

	height: auto !important;
	background-color: #0c4ec0;
}


#blip-chat-header {
    background: #1968F0 !important;
}

#blip-chat-icon:hover {
	transform: translateY(-2px);
}

.option-message {
	font-family: 'Montserrat', sans-serif;
	margin-top: 0.3125em;
	width: auto;
	z-index: 980;
	font-size: 14px;
}

.option-message li {
	list-style: none !important;
	margin-top: 0.3125em !important;
	text-align: right !important;
	animation: Appearing2 2s ease-out !important;
}

.option-message li:nth-child(2n + 1) {
	animation: Appearing 1s ease-out !important;
}

@keyframes Appearing {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(0);
	}
}

@keyframes Appearing2 {
	from {
		transform: translateX(300%);
	}

	to {
		transform: translateX(0);
	}
}

.option-message li a {
	display: inline-block !important;
	padding: 0.3125em 0.9375em !important;
	background-color: #db6a00 !important;
	margin-top: 0.3125em !important;
	border-radius: 0.8em !important;
	color: #ffffff !important;
	text-decoration: none !important;
	transition: 0.2s ease-in !important;
	box-shadow: 0.0625em 0.125em 0.375em rgb(0 0 0 / 10%) !important;
	font-weight: 400 !important;
}

.option-message li a:hover {
    transform: scale(1.1) !important;
}

#blip-chat-notifications {
	position: absolute !important;
	bottom: 35px !important;
	right: -4px !important;
}

.containerMessage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media screen and (max-width: 480px),
screen and (max-height: 420px) {
	#blip-chat-container {
		position: fixed !important;
		display: inline-flex !important;
		height: auto !important;
		margin-bottom: 40px;
		margin-right: 20px;
		margin-left: 20px;
	}

	#blip-chat-container #blip-chat-iframe {
		position: fixed !important;
	}
}

@media screen and (max-width: 280px) and (min-width: 0) {
	#blip-chat-container {
		margin-right: -20px;
		margin-bottom: -20px;
	}

	#blip-chat-container #blip-chat-iframe {
		position: fixed !important;
	}
}

@media screen and (max-width: 920px) and (min-width: 481px) {
	#blip-chat-container {
		margin-right: -40px;
	}

	#blip-chat-container #blip-chat-iframe {
		position: fixed !important;
	}
}
