/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background: #6441A5; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
}

body {
    font-family: montserrat, arial, verdana;
    background: transparent;
}

section{
	padding:0 !important;
	clear:both !important;
}
/*form styles*/
#myformEntregas {
    text-align: center;
    position: relative;
    margin-top: 50px;
}

.VisibleRadioButton{
	display:block !important;
}

.mbway, .cartaocredito, .numerario, .transferencia{
	display:none;
}

.tipopagamento{
	display:none;
}


#myformEntregas fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    left: 0;
}

#myformEntregas hr {
	display:none;
  border-color: #43B02A;
  border-width: 3px;
  max-width: 100%;
}

#accordion{
	/* float:none; */
	margin: 0 auto;
	padding-left:0;
	padding-right:0;
	padding-top:10px;
	padding-bottom:30px;
}

#accordion img{
	max-width:20%;
	float:right;
}

#accordion a{
	color:black;
	text-decoration:none;
}

.panel-heading{
	text-align:left;
}

#r11, #r12, #r13, #r14, #r15, #r16, #r17{
	width:13px !important;
    vertical-align: middle;
}



.row{
	display:block !important;
}

/*Hide all except first fieldset*/
#myformEntregas fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#myformEntregas input, #myformEntregas textarea {
    padding: 5px;
    border: 1px solid #ccc;
    /* border-radius: 10px; */
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

.box{
        color: black;
        padding: 20px;
        margin-top: 20px;
		display:block;
    }

#myformEntregas input:focus, #myformEntregas textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #F05F40;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#myformEntregas .action-button {
    width: 100px;
    background: #F05F40;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#myformEntregas .action-button:hover, #myformEntregas .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #F05F40;
}

#myformEntregas .action-button-previous {
        width: auto;
    height: auto;
    background: #999;
    font-weight: bold;
    color: white;
    left: 0;
    top: 0;
    cursor: pointer;
    padding: 5px 5px;
}

#myformEntregas .action-button-previous:hover, #myformEntregas .action-button-previous:focus {
    /* box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1; */
}

/*headings*/
.fs-title {
    font-size: 25px;
    text-transform: uppercase;
    color: #2C3E50;
    letter-spacing: 0px;
    font-weight: bold;
	text-align:left;
	margin-bottom: 0.01em;
}

.fs-title p{
	font-size:15px;
	margin-bottom:0;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 15px;
    color: #666;
    margin:0;
	text-align:left;
}

.next{
	right: 0;
    float: right;
}
.previous{
	float: left;
    top: 20px;
    position: absolute;
    left: 40px;
}

.dynamic-field{
	text-align:left;
	padding-bottom:0 !important;
	margin-bottom:0;
	border-left: 5px solid #F05F40;
	height:70px;
	margin-top: 1em;
}

.dynamic-nova{
	text-align:left;
	padding-bottom:0 !important;
	margin-bottom:0;
	height: 60px;
	margin-top: 1em;
}

.input-group-addon{
	padding:0;
}

.dynamic-nova{
	text-align:left;
	padding-bottom:0 !important;
	margin-bottom:0;
	border-left: 5px solid #F05F40;
	margin-top: 1em;
}

.panel-group .panel+.panel{
	margin-top:0 !important;
}

.panel-group .panel{
	padding:0 !important;
}

.nome_produto{}
.qnt_produto{}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    width: 16%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #F05F40;
    color: white;
}

#add-button, #remove-button{
		padding:1rem 1rem !important;
	}
	#add-receita, #remove-receita{
		padding:1rem 1rem !important;
	}

/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #F05F40;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

.sistemasaude{
	width:80%;
	float:left;
	font-size:10pt;
	margin:0;
}

.file{
		text-align:right;
	}

.botoes{
		padding-bottom:0 !important;
	}
	
.field_telefone li{
	font-size:12pt;
}
.field_telefone .btn{
	width:auto;
	padding:0 10px 0 10px !important;
}

@media (max-width: 1440px) {
	.field_telefone .btn{
	width:auto;
	padding:0 10px 0 10px !important;
}
}
 @media (max-width: 768px) {
	.dynamic-nova{
		height:auto;
	}
	
	.file{
		text-align:center;
	}
	.file btn{
		margin-left: 5em;
	}
	.botoes{
		display:table;
	}
	/* #add-button, #remove-button{ */
		/* width:50%; */
	/* } */
	/* #add-receita, #remove-receita{ */
		/* width:50%; */
	/* } */
	
	.tooltip{
		left: 0;
    position: absolute;
    right: 0;
    width: 100%;
	}
 .tooltip-inner{
	 left: 0;
    position: absolute;
 }
 .tooltip-inner img{
	 width:100%;
 }
	
} 

@media (max-width: 630px) {
	
	.sistemasaude {
    width: 100%;
	}
	.captcha_box{
		display:block !important;
		float:none !important;
	}
	.codigo_ver{
		display:table-footer-group !important;
	}
	
.field_telefone{
	margin-top:25% !important;
}

.modal-window-inscricao div{
	width:100% !important;
	left:0 !important;
}
} 

@media (max-width: 425px){
	.field_telefone .btn{
	width:100%;
}
}
  