/* Aplicar estilo de scrollbar personalizado em todo o documento */
::-webkit-scrollbar {
    width: 4px;
    /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Cor do fundo do track da barra de rolagem */
}

::-webkit-scrollbar-thumb {
    background-color: rgb(226, 189, 186);
    /* Cor do thumb da barra de rolagem */
    border-radius: 0px;
    /* Bordas arredondadas para deixar mais elegante */
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(211, 170, 166);
    /* Cor ao passar o mouse no thumb */
}

body {
    font-family: 'Dancing Script', cursive;
    font-family: 'Montserrat', sans-serif;
}

/* CONFIGURAÇÕES GERAIS DO SITE*/
:root {
    --azul: rgb(0, 34, 129);
    --rosa: rgb(226, 189, 186);
    --branco: rgb(255, 255, 255);
    --preto: rgb(0, 0, 0);
    --marrom: rgb(114, 74, 45);
}

.fonte_branca {
    color: #ffffff;
}

/*ALINHAMENTOS HORIZONTAIS*/
.centro {
    text-align: center;
}

.esquerda {
    text-align: left;
}

.direita {
    text-align: right;
}

/*TAMANHOS E LARGURAS*/
.t5p100 {
    width: 5%;
}

.t10p100 {
    width: 10%;
}

.t20p100 {
    width: 20%;
}

.t30p100 {
    width: 30%;
}

.t33p100 {
    width: 33%;
}

.t40p100 {
    width: 40%;
}

.t50p100 {
    width: 50%;
}

.t60p100 {
    width: 60%;
}

.t70p100 {
    width: 70%;
}

.t80p100 {
    width: 80%;
}

.t90p100 {
    width: 90%;
}

.t100p100 {
    width: 100%;
}

/* CONFIGURAÇÕES GERAIS DO SITE*/
.eixoY {
    display: flex;
    align-items: center;
}


/* ============================================== HEADER (FAIXA ROSA) ============================================== */
header {
    background-color: var(--rosa);
    padding: 8px 0;
}

.header-row {
    min-height: 45px;
}

/* Redes Sociais */
.social-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.social-btn:hover {
    background: #f5f5f5;
    color: #333;
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 16px;
}

/* Links Header Desktop */
.header-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Botão Menu Mobile */
.btn-menu-mobile {
    padding: 6px 12px;
    border: none;
    background: white !important;
}

.btn-menu-mobile i {
    font-size: 18px;
    color: #333;
}

/* Off-canvas Mobile */
.bg-rosa {
    background-color: rgb(226, 189, 186);
}

.menu-mobile-item {
    display: block;
    padding: 15px;
    margin-bottom: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #414141;
    text-decoration: none;
    transition: all 0.3s;
}

.menu-mobile-item:hover {
    background: var(--rosa);
    color: white;
    border-color: var(--rosa);
}

.menu-mobile-item i {
    margin-right: 10px;
    width: 20px;
}

/* ============================================== NAVEGAÇÃO PRINCIPAL ============================================== */
.main-nav {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s;
}

.main-nav img {
    max-width: 100%;
    height: auto;
}

.logo-main {
    height: 60px;
    will-change: transform;
}

.logo-main.scrolled {
    height: 60px;
}

.main-nav.scrolled {
    padding: 5px 0;
}

/* Menu Serviços */
.services-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.services-menu::-webkit-scrollbar {
    display: none;
}

.services-menu li {
    flex-shrink: 0;
}

.services-menu a {
    display: block;
    padding: 10px 14px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
}

.services-menu a:hover {
    background: rgba(226, 189, 186, 0.1);
    color: var(--rosa);
}

.services-menu a.active {
    background: rgba(226, 189, 186, 0.15);
    color: var(--rosa);
    font-weight: 500;
}

.services-menu a.active::after,
.services-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--rosa);
}

/* Desktop - sem quebra de linha */
@media (min-width: 990px) {
    .services-menu {
        overflow-x: visible;
        gap: 4px;
    }
    
    .services-menu a {
        padding: 10px 12px;
        font-size: 14.5px;
    }
}

/* Carrinho */
.cart-link {
    position: relative;
    color: #333;
    font-size: 24px;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff5733;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 989px) {
    .services-menu {
        justify-content: flex-start;
        padding: 0 10px;
        gap: 12px;
    }
    
    .services-menu a {
        font-size: 15px;
        padding: 8px 14px;
    }
    
    .main-nav {
        padding: 8px 0;
    }
    
    /* Ocultar carrinho e logo no mobile */
    .cart-link {
        display: none;
    }
    
    .main-nav .col-4 {
        display: none;
    }
    
    .main-nav .col-lg-8 {
        width: 100%;
    }
    
    /* Adicionar padding no body para compensar bottom nav */
    body {
        padding-bottom: 70px;
    }
}

/* Bottom Navigation Mobile */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2bdba;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 1000;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 15px;
    position: relative;
    transition: all 0.3s;
}

.bottom-nav-item i {
    font-size: 22px;
    margin-bottom: 3px;
}

.bottom-nav-item span:not(.cart-badge-bottom) {
    font-size: 11px;
}

.bottom-nav-item.active {
    color: var(--rosa);
    font-weight: 500;
}

.bottom-nav-item:hover {
    color: var(--rosa);
}

.cart-badge-bottom {
    position: absolute;
    top: 2px;
    right: 8px;
    background: #ff5733;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* CARRINHO DE PRODUTOS */
.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-icon .fa-shopping-basket:before {
    font-size: 24px;
}

.cor_carrinho {
    color: #3f3f3f;
    /* Cor do ícone do carrinho */
}


.botao_remover {
    background-color: transparent;
    border: 0px solid transparent;
    color: red;
}

.tamanho_produto {

    width: 90%;

}

.tamanho_lixeira {

    width: 10%;

}


.item-count {
    position: absolute;
    top: 0px;
    right: -5px;
    background-color: #ff5733;
    /* Cor de fundo do círculo */
    color: white;
    border-radius: 50%;
    padding: 2px 4px;
    font-size: 10px;
    /* Tamanho da fonte do contador */
    width: 19px;
    height: 19px;
    text-align: right;
}

.menu-canvas {
    border: 2px solid Gainsboro;
    border-radius: 10px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    transition: all 0.3s;

}

.menu-canvas:hover {
    border: 2px solid Gainsboro;
    border-radius: 10px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    background-color: var(--rosa);
    color: var(--branco);
    transition: all 0.3s;


}

.link-menu-canvas {
    text-decoration: none;
    color: #414141;
    transition: all 0.3s;

}

/* ============================================== HEADER FIM ============================================== */




/* ============================================== BANNER DE BEM VINDO ============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#banner {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

#banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

#banner:hover img {
    transform: scale(1.05);
}

#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 90%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-title-wrapper {
    margin-bottom: 12px;
}

.banner-title-svg {
    width: 100%;
    max-width: 800px;
    height: auto;
    overflow: visible;
}

.banner-title-text {
    font-size: 80px;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    letter-spacing: 3px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.5));
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: writeText 5s ease-out forwards, fillText 0.5s ease-out 4.7s forwards;
}

@keyframes writeText {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillText {
    to {
        fill: #ffffff;
    }
}

.banner-underline {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e2bdba, transparent);
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out;
}

.banner-quote {
    font-size: 1.3em;
    margin-bottom: 10px;
    animation: fadeInUp 1.5s ease-out;
    font-style: italic;
    line-height: 1.6;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.quote-icon {
    font-size: 0.7em;
    opacity: 0.7;
    margin: 0 5px;
}

.banner-author {
    font-size: 1em;
    margin-bottom: 30px;
    animation: fadeInUp 2s ease-out;
    color: #e2bdba;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn-banner-custom {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #e2bdba 0%, #d4a8a4 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(226, 189, 186, 0.4);
    animation: fadeInUp 2.5s ease-out;
    letter-spacing: 0.5px;
}

.btn-banner-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 189, 186, 0.6);
    background: linear-gradient(135deg, #d4a8a4 0%, #c99692 100%);
    color: white;
}


#banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    border-radius: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes handwriting {
    0% {
        max-width: 0;
        opacity: 1;
    }
    100% {
        max-width: 100%;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 120px;
    }
}

/* Media queries para ajustar o tamanho das fontes em dispositivos móveis */
@media only screen and (max-width: 989px) {
    .banner-title-text {
        font-size: 80px !important;
    }

    .banner-quote {
        font-size: 0.75em !important;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .banner-author {
        font-size: 0.7em !important;
        margin-bottom: 15px;
    }

    .btn-banner-custom {
        display: none !important;
    }
    
    .banner-underline {
        width: 60px;
        height: 2px;
    }
    
    #content {
        padding: 10px;
        max-width: 95%;
    }
    
    .quote-icon {
        font-size: 0.6em;
    }
}

@media only screen and (max-width: 576px) {
    .banner-title-text {
        font-size: 65px !important;
    }

    .banner-quote {
        font-size: 0.65em !important;
        margin-bottom: 6px;
    }
    
    .banner-author {
        font-size: 0.65em !important;
        margin-bottom: 12px;
    }
    
    .banner-underline {
        width: 50px;
    }
}

/* ============================================== FIM DO BANNER DE BEM VINDO ============================================== */

/* ============================================== BUSCA DE PRODUTOS ============================================== */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-input:focus {
    border-color: var(--rosa);
    box-shadow: 0 4px 12px rgba(226, 189, 186, 0.2);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f8f8;
}

.suggestion-icon {
    color: var(--rosa);
    font-size: 14px;
}

.suggestion-text {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.suggestion-text strong {
    color: var(--rosa);
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* ============================================== FIM BUSCA DE PRODUTOS ============================================== */

/* ============================================== CARDS DE PRODUTOS ============================================== */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* ============================================== FIM CARDS DE PRODUTOS ============================================== */


/* ============================================== SECTION EXPLORE ============================================== */

.explore {
    background-color: #f8f8f8;
}

.ferias {
    margin-top: 40px;
}

/* ============================================== SECTION EXPLORE ============================================== */



/*============================================= PRODUTOS ===========================================*/

/*PRODUTOS*/

/* CSS personalizado */
.owl-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    color: #777;
}

.botao-card {
    background-color: var(--rosa);
    color: var(--branco);
    width: 100%;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.botao-card:hover {
    background-color: var(--marrom);
    color: var(--branco);
    width: 100%;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.legenda-imagem {
    border-radius: 0px 0px 10px 10px;
    background-color: var(--rosa);
    color: var(--branco);

    font-size: 22px;
    text-align: center;
}

/*============================================= FOOTER ===========================================*/



/*============================================= Botão Ver Mais ===========================================*/
.ver_mais_session {
    margin-top: 40px;
}

.botao_ver_mais {
    width: 300px;
    background-color: transparent;
    color: #797979;
    text-align: center;
}


/*============================================= Inicio Faixa Footer ===========================================*/


.faixa-footer {
    background-color: var(--rosa);
    width: 100%;
    height: 70px;
    margin-top: 40px;
}

/* DEPOISMENTO */
/* Estilo da seção de depoimentos */
.testimonial-section {
    background-color: #FAF4F4;
    /* Cor de fundo */
    padding: 40px 0;
    /* Espaçamento interno superior e inferior */
}

/* Estilo dos itens do Owl Carousel */
.testimonial-item {
    background-color: #ffffff;
    /* Cor de fundo dos depoimentos */
    border: 1px solid rgb(226, 189, 186);
    /* Borda ao redor dos depoimentos */
    padding: 20px;
    /* Espaçamento interno dos depoimentos */
    text-align: center;
    /* Centraliza o texto */
}

/* Estilo do texto do depoimento */
.testimonial-item p {
    font-size: 16px;
    /* Tamanho da fonte do depoimento */
    color: #333;
    /* Cor do texto do depoimento */
}

/* Estilo do nome do cliente */
.testimonial-item p.client-name {
    font-size: 14px;
    /* Tamanho da fonte do nome do cliente */
    color: #777;
    /* Cor do nome do cliente */
}

/* Estilo das aspas duplas */
.custom-quotes {
    font-size: 25px;
    /* Tamanho da fonte das aspas */
    color: #555;
    /* Cor das aspas */
    display: inline-block;
    /* Garante que as aspas não quebrem a linha */
    margin: 0 5px;
    /* Espaçamento entre as aspas e o texto */
}

.stars {
    color: yellow;
}

/* ============================================== OWL CAROUSEL ARROWS (DEPOIMENTOS) ============================================== */
.owl-depoimentos .owl-nav {
    display: none !important;
}

/* Espaçamento das bolinhas (dots) */
.owl-depoimentos .owl-dots {
    margin-top: 30px !important;
}

/* ============================================== FIM OWL CAROUSEL ARROWS ============================================== */

/*============================================= Inicio Faixa Footer ===========================================*/

.footer_mobile {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background-image: linear-gradient(rgb(226, 189, 186), rgb(226, 189, 187));
    display: flex;
    border-top: 1px solid rgba(155, 113, 113, 0.445);
    z-index: 999;
}

.column {
    width: 33%;
    height: 100%;
}

.link_footer_m {
    text-decoration: none;
}

/*============================================= Inicio Footer ===========================================*/



.a_footer {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}


.form-control {
    background: transparent;
    border-color: #545454;
}

.form-control:focus {
    background: transparent;
}

/* Defina a cor do footer com um pouco de transparência */
footer {
    position: relative;
    width: 100%;
    background-image: url('https://i.pinimg.com/originals/11/82/22/118222111d00f289e1a979d0fb153349.jpg');
    background-size: cover;
    background-position: center;
    color: white; /* Define a cor do texto para branco ou uma cor visível */
    z-index: 1; /* Coloca o footer na frente do conteúdo pseudo-elemento */
  }
  
  /* Crie um pseudo-elemento para a cor sobreposta */
  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 189, 186, 0.89); /* Cor e transparência da sobreposição */
    z-index: -1; /* Coloca a sobreposição atrás do footer */
  }
  


/*============================================= Inicio itens ===========================================*/


/*Itens*/

.checkbox_termo {
    -webkit-box-shadow: 0px 0px 22px -6px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 22px -6px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 22px -6px rgba(0, 0, 0, 0.6);
    background-color: var(--rosa);
    color: var(--branco);
    border-radius: 10px;
}

/*============================================= Inicio itens ===========================================*/



/* RESPONSIVIDADE - MEDIA QUERY */
/* Ocultar no mobile (tela menor que 500px) */
@media screen and (max-width: 699px) {

    .desktop,
    .tablet {
        display: none;
    }
}



/* Ocultar no desktop (tela maior que 1000px) */
@media screen and (min-width: 700px) {

    .celular,
    .tablet {
        display: none;
    }
}

/*============================================= ITEM ===========================================*/
.botao_remover {
    background-color: transparent;
    border: 0px solid transparent;
    color: red;
}

.tamanho_produto {
    width: 90%;
}

.tamanho_lixeira {
    width: 10%;
}

/*============================================= DEPOIMENTOS ===========================================*/
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

/*============================================= SOBRE ===========================================*/
.btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(226, 189, 186, 0.4) !important;
}

/*============================================= GALERIA ===========================================*/
#demo {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.green {
    background-color: #6fb936;
}

.thumb {
    margin-bottom: 30px;
}

.page-top {
    margin-top: 20px;
}

img.zoom {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy-image.loaded {
    opacity: 1;
}

.transition {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    color: #000;
}

.modal-footer {
    display: none;
}