/*
Skin Name: Nivo Slider Default Theme
Skin URI: http://nivo.dev7studios.com
Description: The default skin for the Nivo Slider.
Version: 1.3
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
Supports Thumbs: true
*/

.theme-default .nivoSlider {
	position:relative;
	background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:10px;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
}
.theme-default .nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.theme-default .nivoSlider a {
	border:0;
	display:block;
}

.theme-default .nivo-controlNav {
	text-align: center;
	padding: 20px 0;
}
.theme-default .nivo-controlNav a {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
.theme-default .nivo-controlNav a.active {
	background-position:0 -22px;
}

.theme-default .nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	opacity: 0;
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.theme-default:hover .nivo-directionNav a { opacity: 1; }
.theme-default a.nivo-nextNav {
	background-position:-30px 0;
	right:15px;
}
.theme-default a.nivo-prevNav {
	left:15px;
}

.theme-default .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.theme-default .nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.theme-default .nivo-caption a:hover {
    color:#fff;
}

.theme-default .nivo-controlNav.nivo-thumbs-enabled {
	width: 100%;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.theme-default .nivo-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}

.nivo-controlNav {
	display: none;
}

.nivoSlider {
	margin-bottom: 30px !important;
}
#card-number {
	border: 1px solid #ccc;
	-webkit-transition: border-color 160ms;
	transition: border-color 160ms;
	height: 34px;
	padding: 6px 12px;
  }
  
  #card-number.braintree-hosted-fields-focused {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
  }
  
  #card-number.braintree-hosted-fields-invalid {
	border-color: tomato;
  }
  
  #card-number.braintree-hosted-fields-valid {
	border-color: limegreen;
  }
  #expiration-date {
	border: 1px solid #ccc;
	-webkit-transition: border-color 160ms;
	transition: border-color 160ms;
	height: 34px;
	padding: 6px 12px;
  }
  
  #expiration-date.braintree-hosted-fields-focused {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
  }
  #cvv {
	border: 1px solid #ccc;
	-webkit-transition: border-color 160ms;
	transition: border-color 160ms;
	height: 34px;
	padding: 6px 12px;
  }
  
  #cvv.braintree-hosted-fields-focused {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
  }

  .privacy-banner {
	position: fixed;
	bottom: 50px; /* Elevar 100px do rodapé */
	left: 50%;
	transform: translateX(-50%);
	width: 30%;
	max-width: 700px;
	background-color: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19); /* Adicionar sombreamento em toda a volta */
	padding: 20px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 10px; /* Adicionando bordas arredondadas para um visual mais agradável */
}

.privacy-banner h4 {
	font-weight: bold;
	font-size: 1.2em; /* Tamanho um pouco maior para o cabeçalho */
	margin: 0 0 10px;
	text-align: left; /* Alinhamento à esquerda */
	width: 100%;
}

.privacy-banner p {
	margin: 0 0 10px;
	text-align: justify; /* Texto justificado */
	width: 100%;
}

.privacy-banner .buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 10px; /* Espaçamento abaixo dos botões */
}

.privacy-banner .buttons button {
	border: 1px solid #ccc;
	background-color: white;
	padding: 10px 20px;
	cursor: pointer;
}

.privacy-banner .buttons .accept {
	background-color: #007bff;
	color: white;
	border: 1px solid #007bff;
}

.privacy-banner .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 1.2em;
	cursor: pointer;
}

@media (max-width: 600px) {
	.privacy-banner {
		width: 90%;
		bottom: 50px; /* Reduzir a elevação do rodapé em telas menores */
		padding: 15px;
	}

	.privacy-banner h4 {
		font-size: 1.1em;
	}

	.privacy-banner p {
		font-size: 0.9em;
	}

	.privacy-banner .buttons {
		flex-direction: column;
		gap: 5px;
	}

	.privacy-banner .buttons button {
		width: 100%;
		padding: 10px;
	}
}