/*
Template Name: Sendy
Template URL: https://ultimatewebsolutions.net/sendy/
Author: Ultimate Websolutions
Author URL: https://codecanyon.net/user/ultimatewebsolutions/

[Table of contents]

01. PRELOADER
02. GENERAL
03. HEADER
04. SUB HEAEDR
05. FOOTER
06. CONTAINERS
07. FORM ELEMENTS
08. CONTACT INFO
09. BACK TO TOP
10. SUCCESS SUBMIT
11. RESPONSIVE

/* Preloader
==================================== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	background-color: #fff;
	z-index: 3;
}

[data-loader="circle-side"] {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	-webkit-animation: circle infinite .95s linear;
	-moz-animation: circle infinite .95s linear;
	-o-animation: circle infinite .95s linear;
	animation: circle infinite .95s linear;
	border: 3px solid #53c4da;
	border-top-color: rgba(0, 0, 0, 0.2);
	border-right-color: rgba(0, 0, 0, 0.2);
	border-bottom-color: rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
  }
  100% {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@-moz-keyframes circle {
  0% {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
  }
  100% {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@-o-keyframes circle {
  0% {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
  }
  100% {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
  }
  100% {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

/* General
==================================== */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;  
}

body {
  background: #f8f8f8;
  font-size: 14px;  
  font-family: "Poppins", sans-serif;
  color: #555;  
}

main {
  background: #f8f8f8;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}

h1,
h2 {  	
  	font-weight: 700;  	
}

hr {
	margin: 15px 0 30px 0;	
	border-color: #ededed;
}

p {
	margin-top: 25px;
	margin-bottom: 30px;
}

a {
	color: #53c4da;
	text-decoration: none;	
	outline: none;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;	
}
a:hover, 
a:focus,
a:visited {
	color: #333;
	text-decoration: none;
	outline: none;		
}

ul,
ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

p {
  margin-bottom: 25px;
}

p.lead {
  font-weight: 400;
  font-size: 20px;
  color: #555;  
}

strong {
  font-weight: 600;
}

label {
	color: #555;  	
  	font-size: 14px;
  	font-weight: 500;  
  	margin: 0;
}

button:focus {
	outline: none;
}

.underline-link {
	color: #53c4da;
	text-decoration: none;	
	outline: none;
}
.underline-link:hover {
	color: #53c4da;
	text-decoration: underline;
	outline: none;
}

/* Header
==================================== */

header {
	background-color: #fff;
	min-height: 55px;
	padding: 10px 0;
	border-bottom: 1px solid transparent;
}

header.main-header {
	width: 100%;
	z-index: 2;
	position: relative;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

header.main-header.sticky {
	border-bottom: 1px solid #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2;
}

header.main-header.active {
	border-bottom: 1px solid #ddd;
}

header.static {
	position: static;
	border-bottom: 1px solid #ddd;
	z-index: 2;
	position: relative;
}

/* Header Menu Color */

.main-menu > ul > li span:hover > a {
    color: #53c4da;
}

.main-menu ul ul {    
    border-top: 2px solid #53c4da;
}

.main-menu ul ul li:hover > a {   
    color: #53c4da;   
}

.main-menu ul ul li span > a:hover {	
	color: #53c4da;
}

/* Header Menu Chevron Down */

.main-menu a i {
	font-size: 9px;
	margin-left: 2px;
}

/* Header Icons */

ul#menuIcons {
	float: right;
	position: relative;
	top: 3px;
	margin: -1px 0 0 0;
}

ul#menuIcons li {
	display: inline-block;
	position: relative;
	padding: 0;
	margin-left: 15px;
}

ul#menuIcons li i {
  	font-size: 34px;  
}

ul#menuIcons li a {
  	color: #53c4da;
}

ul#menuIcons li a:hover {
  	color: #333;
}

/* Logo */

#logo h1 {
	margin: 0;
	padding: 0;
	line-height: 1;
}

/*
#logo h1 a {
	width: 149px;
	height: 35px;
	display: block;
	background: url(../img/logo.aqua.svg) no-repeat 0 0;
	background-size: 149px 35px;
	text-indent: -9999px;
}*/

/* Sub Header
==================================== */


.sub-header {
	/*background-color: #53c4da;*/
	background-color: #017cb8;
	
	padding: 15px 0;
	margin-top: 59px;	
}

.sub-header h1 {
    color: #fff;
    margin: 0;
	font-size: 24px;
	font-weight: 500;
}

/* Footer
==================================== */

footer.main-footer {
	padding-top: 30px;
	padding-bottom: 30px;	
	color: #555;
	background: #fff;
	border-top: 1px solid #ddd;	
	position: relative;
}

footer.main-footer ul.nav-links li i {
	font-size: 13px;
}

.footer-heading {
	margin-bottom: 1.25rem;
	font-weight: 600;
}

.footer-link {
	color: #555;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;	
}
  
.footer-link:hover, .footer-link:focus {
	text-decoration: underline;
} 

.contact-links i {
	color: #53c4da;
	margin-right: 10px;
	font-size: 18px;
	vertical-align: middle;
}

.social-link {
	color: #999;
	opacity: 0.6;
	font-size: 20px;
	font-weight: 400;
	margin-right: 10px;
}

.social-links li {
	display: inline-block;
}

footer #copy {
	text-align: right;
	font-size: 13px;
	font-size: 0.8125rem;
	color: #999;
}

/* Sub Footer Links */

ul#subFooterLinks {
	margin: 0;
	font-size: 13px;
	font-size: 0.8125rem;
	color: #999;
}

ul#subFooterLinks li {
	display: inline-block;
	margin-right: 15px;
}

ul#subFooterLinks li:first-child {
	margin-right: 20px;
}

ul#subFooterLinks li:last-child:after {
	content: "";
}

ul#subFooterLinks li a {
	color: #999
}

ul#subFooterLinks li a:hover {
	text-decoration: underline;
}

ul#subFooterLinks li:after {
	content: "|";
	font-weight: 300;
	position: relative;
	left: 10px;
}

ul#subFooterLinks i {
	color: #53c4da;	
}

/* Containers
==================================== */

.contact {
	padding: 30px 0;
}

.box {
	position: relative;
	background: #fff;
  	margin: 0;
	padding: 30px 15px 15px 15px;
	border: 1px solid #ddd;
	/*border-top: none;*/
}

.box.first {	
	border-top: 1px solid #ddd;	
}

.box-header {
	margin: 0 15px 20px 15px;
	width: 100%;
	border-bottom: 2px dotted #ddd;	
}

.box-header h3 {
	margin-left: 50px;
	font-size: 20px;	
	color: #555;	
}

.box-header h3 strong {
	/*background-color: #53c4da;*/
	background-color: #017cb8;
	text-align: center;
	width: 40px;
	height: 40px;
	display: inline-block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;	
	line-height: 42px;
	text-align: center;
	position: absolute;
	left: 30px;
    top: 22px;
}

.box-header p {	
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #999;
}

.box-link,
.box-link:focus,
.box-link:active,
.box-link:visited {
	color: #555;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #ddd;
    background: #fff;
    margin-left: 5px;
    padding: 4px 8px;
    position: absolute;
    top: -1px;
    right: -1px;
}

.box-link:hover {
	background: #53c4da;
	border: 1px solid #53c4da;
	color: #fff;
}

/* Form Elements
==================================== */

/* Fields, Textareas */

input.form-control,
select.form-control,
textarea.form-control {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	background: transparent;
	border: none;
	border: 1px solid #aaaaaa;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	transition: none;
	height: 40px;
  	font-family: 'Poppins', sans-serif;
  	font-size: 14px;
	font-weight: 400;
	padding: 10px;
	resize: none;
}

input.form-control::placeholder {
  color: #4a4444;
}

input.form-control:focus,
textarea.form-control:focus {
	background: transparent;
	border-color: #53c4da;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #555;
	-webkit-transition: all 0.9s ease;
	transition: all 0.9s ease;
}

input.form-control:disabled {
	border: none;
}

#inputMessage {
	height: 180px;	
}

/* Nice Select Dropdown */

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
	border-radius: 0;  
	border: 1px solid #ddd;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	height: 45px;
	line-height: 42px;
	outline: none;
	margin-top: 0;
	margin-bottom: 10px;
	padding-left: 15px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto;
}

.nice-select:hover {
	border-color: #53c4da;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: #53c4da;
}

.nice-select:after {
	border-bottom: 1px solid #53c4da;
	border-right: 1px solid #53c4da;
	content: '';
	display: block;
	height: 10px;
	margin-top: -8px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 10px;
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #cccccc;
}

.nice-select.wide {
	width: 100%;	
}

.nice-select.border-bottom-only {
	border: none;
	border-bottom: 1px solid #ddd;
	padding-left:0;	
}

.nice-select.wide .list {
	left: -1px !important;
	right: -1px !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: #fff;
	border: 1px solid #53c4da;
	border-radius: 0;
	box-sizing: border-box;  
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 15px;
	padding-right: 15px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #fafafa;	
}

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

/* Uploader */

.filepond--root {    
    margin-bottom: 0;    
}

/* Placeholders */

.form-control::-webkit-input-placeholder { /* Chrome */
	color: #ccc;
	font-style: italic;
}

.form-control:-ms-input-placeholder { /* IE 10+ */
	color: #ccc;
	font-style: italic;
}

.form-control::-moz-placeholder { /* Firefox 19+ */
  	color: #ccc;
	opacity: 1;
	font-style: italic;
}

.form-control:-moz-placeholder { /* Firefox 4 - 18 */
  	color: #ccc;
	opacity: 1;
	font-style: italic;
}

/* Form Buttons */

.btn-form-func {
	/*background: #53c4da;*/
	background: #017cb8;
	border-radius: 4px;
	/*border: 2px solid #53c4da;*/
	border: 2px solid #017cb8;
	color: #fff;
	display: inline-block;
	overflow: hidden;
	padding: 20px;
	position: relative;
	text-decoration: none;
	line-height: 1;
	width: 100%;
	font-weight: 600;
	margin-bottom: 10px;
}

.btn-form-func:hover {
	color: #fff;
}

.btn-form-func .btn-form-func-content {
	font-size: 1em;
	line-height: 1.2;
	padding: 0 15px;
	position: relative;
	right: 0;
	transition: right 300ms ease;
	display: block;
	text-align: left;
}

.btn-form-func .icon {
	border-left: 1px solid #fff;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50%;
	transition: all 300ms ease;
	transform: translateY(-50%);
	width: 58px;
	height: 70%;
}

.btn-form-func .icon i {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.btn-form-func:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: transparent;
	opacity: 0;
	transition: opacity 300ms ease;
}

.btn-form-func:hover .btn-form-func-content {
  	right: 100%;
}

.btn-form-func:hover .icon {
	border-left: 0;
	font-size: 1.4em;
	width: 100%;
}

.btn-form-func:hover:after {
  	opacity: .2;
}

.btn-form-func.btn-form-func-alt-color {
	background: #fff;
	border-color: #53c4da;
	color: #53c4da !important;
}

.btn-form-func.btn-form-func-alt-color .icon {
  	border-left-color: #53c4da;
}

.btn-form-func.btn-form-func-alt-color:after {
  	background-color: transparent;
}

/* Checkboxes */

label.cbx.terms {    
	margin: 0;
	padding: 0;
	border: 0; 
	height: 22px;	
}

label.cbx {	
	font-size: 14px;
	font-weight: 500;
	margin-top: 20px;
	border: solid 1px #ddd;
    height: 45px;
    padding: 10px 15px;
	width: 100%
}

.cbx {
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
}

.cbx span {
	display: inline-block;
	vertical-align: middle;  
	font-size: 14px;
	font-weight: 500;
}

.cbx span:first-child {
	position: relative;
	width: 18px;
	height: 18px;
	transform: scale(1);
	vertical-align: middle;
	border: 1px solid #53c4da;
	transition: all 0.2s ease;
	margin-right: 10px;	
}

.cbx span:first-child svg {
	position: absolute;
	top: 3px;
    left: 2px;
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all 0.3s ease;
	transition-delay: 0.1s;
	transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
	content: "";
	width: 100%;
	height: 100%;
	/*background: #53c4da;*/
	background: #017cb8;
	display: block;
	transform: scale(0);
	opacity: 1;
	border-radius: 50%;
}

.cbx:hover span:first-child {
  	/*border-color: #53c4da;*/
  	border-color: #017cb8;
}

.inp-cbx {
  	display: none;
}

.inp-cbx:checked + .cbx span:first-child {
	/*background: #53c4da;
	border-color: #53c4da;*/
	background: #017cb8;
    border-color: #017cb8;
	animation: wave 0.4s ease;
}

.inp-cbx:checked + .cbx span:first-child svg {
  	stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:first-child:before {
	transform: scale(3.5);
	opacity: 0;
	transition: all 0.6s ease;
}

@keyframes wave {
	50% {
		transform: scale(0.9);
	}
}

/* Terms Link */

.terms-link,
.terms-link:visited {
	text-decoration: none;
  	/*color:#53c4da;*/
  	color: #017cb8;
  	margin-left: 5px;
  	transition: none;
}

.terms-link:hover {
  	color:#53c4da;
  	text-decoration: underline;
}

/* Form Validation */

.parsley-errors-list.filled {  
	font-size: 10px !important;
	text-transform: uppercase;
	border: 1px solid #e34f4f;
	background-color: #e34f4f;
	color: #fff;
	padding: 2px 0 0 3px !important;
	margin: 10px 0 10px 0 !important;
	list-style-type: none;
	opacity: 0;
}

.parsley-errors-list.filled {
	opacity: 1;
}

.parsley-errors-list.filled:before {
	content: '';
	display: block;
	margin-top: -9px;
	pointer-events: none;
	position: absolute;
	border-bottom: solid 6px #e34f4f;
	border-left: solid 6px transparent;
	border-right: solid 6px transparent;
}

/* Contact Info
==================================== */

.contact-box {
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 25px;	
	margin-bottom: 15px;
	text-align: center;
	font-size: 15px;	
  }

.contact-box h2 {
	font-weight: 500;
	margin: 10px 0 10px 0;
	font-size: 20px;	
}

.contact-box i {
	font-size: 46px;	
	/*color: #53c4da;*/
	color: #017cb8;
}

.contact-box a {
	color: #555;
}

.contact-box a:hover {
	color: #53c4da;
	text-decoration: underline;
}

/* Back To Top
==================================== */

#toTop {
	width: 40px;
	height: 40px;
	background-color: black;
	background-color: rgba(0, 0, 0, 0.6);
	text-align: center;
	padding: 10px;
	line-height: 20px;
	position: fixed;
	bottom: 15px;
	right: 15px;
	cursor: pointer;
	display: none;
	color: #fff;
	font-size: 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	z-index: 2;
}

/* Success Submit
==================================== */

#success {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 190px;
	margin-top: -85px;
	margin-left: -150px;
	text-align: center;
}

#success h4 {
	margin-top: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
}

@-webkit-keyframes checkmark {
	0% { stroke-dashoffset: 50 }
	100% { stroke-dashoffset: 0 }
}

@-ms-keyframes checkmark {
	0% { stroke-dashoffset: 50 }
	100% { stroke-dashoffset: 0 }
}

@keyframes checkmark {
	0% { stroke-dashoffset: 50 }
	100% { stroke-dashoffset: 0 }
}

@-webkit-keyframes checkmark-circle {
	0% { stroke-dashoffset: 240 }
	100% { stroke-dashoffset: 480 }
}

@-ms-keyframes checkmark-circle {
	0% { stroke-dashoffset: 240 }
	100% { stroke-dashoffset: 480 }
}

@keyframes checkmark-circle {
	0% { stroke-dashoffset: 240 }
	100% { stroke-dashoffset: 480 }
}

.inlinesvg .svg svg {
	display: inline
}

.icon-order-success svg path {
	-webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
	animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon-order-success svg circle {
	-webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
	animation: checkmark-circle 0.6s ease-in-out backwards
}

/* Responsive
==================================== */

@media (max-width: 767px) {	
	/* Footer
	==================================== */
	footer #copy {		
		text-align: left;
		margin-bottom: 25px;
	}
	footer ul li {
		margin-bottom: 10px;
	}
}

@media (max-width: 991px) {		
	/* Header
	==================================== */
	header.main-header.sticky {		
		position: static;
	}
	header .container {	
		width: 100% !important;
		margin-right: auto !important;
		margin-left: auto !important;
		padding-right: 15px !important;
		padding-left: 15px !important;
		width: 100% !important;
		max-width: 100%;
	}
	/* Header Menu Chevron Down */
	.main-menu a i {
		display: none;
	}	
	/* Header Icons */
	ul#menuIcons {		
		right: 0;
		top: 2px;
	}	
	/* Logo */
	#logo {
		position: relative;
		left: 45px;
	}
	/* Sub Header
	==================================== */
	.sub-header {
		margin-top: 0;
	}		
	/* Containers
	==================================== */		
	.contact {
		padding: 15px 0 0 0;
	}
	/* Contact Info
	==================================== */
	.contact-box {
		margin-top: 15px;
	}	
	
}

a.btn-form-func span {
    color: #fff;
}

label.cbx.contratar {
    position: relative;
    margin-top: 30px;
}

#operacoes, .operacoes {
    padding: 12px;
}

.box-dependente {
    position: relative;
    background: #fff;
    margin: 0;
    /*padding: 30px 15px 15px 15px;*/
    padding: 15px 15px 0px 15px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: none;
    border-top: none;
}

p#parentesco {
    margin-top: 9px;
}


table#tablevaloresFaixa {
    width: 100%;
}

table#tablevaloresSintetico {
    /*width: 87%;*/
    width: 100%;
}

a#fecharInfoProduto {
    color: #017cb8;
}


div #parentescoTxt{
	display: none;
}

div#valoresContent > div {
    border-bottom: none;
}

div#contratar {
    padding: 0px 15px 0px 15px;
    border-top: none;
}

.col-md-6.col-sm-12.descricaoProduto {
    padding: 30px 15px 15px 20px;
}

div#titular .box {
    border-top: none;
}

/*.invalid-feedback*/
.invalid-feedback-value,
.invalid-feedback-value-min {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
/*
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip {
  display: block;
}*/





/*verificar se é para deixar isto ? */
div#lead input, div#lead select,
div#titular input, div#titular select,
div#dependentes input, div#dependentes select,
#infoDepndentes input, #infoDepndentes select,
button.btn.dropdown-toggle.btn-light, 
#infoPlano input,  #infoPlano  select,
#infoTitular input, #infoTitular select,
#infoFinanceiro input, #infoFinanceiro select,
div#infoEndereco input, div#infoEndereco  select  {
    border: none;
    border-bottom: solid 2px #017cb8;
    border-radius: 5px;
}


/*
div#dependentes input, div#dependentes select{
	border: none;
    border-bottom: solid 2px #017cb8;
    border-radius: 5px;
}*/

/*
.comorbidades {
    display: none;
}

*/

select.selectpicker {
    display: block;
}

button.btn-form-func.saveComorbidades i.far.fa-save,
#anexosDocs button.operacoesAnexo i {
    position: relative;
    top: -7px;
}
button.btn-form-func.saveComorbidades,
#anexosDocs button.operacoesAnexo {
    width: 80px;
    height: 40px;
}

i.far.fa-trash-alt {
    position: relative;
    top: -5px;
}

#infoPlano label + p {
    margin-top: 5px;
}

span.labelHeader {
    position: relative;
    top: 15px;
}


#tablevaloresSintetico thead th,
#tablevaloresFaixa thead th {
	text-align: center;
}


#tablevaloresSintetico thead th.labelDescritiva,
#tablevaloresFaixa thead th.labelDescritiva {
	text-align: left;
}

td.valores {
    text-align: right;
}




div#mainContent {
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

div#infoTitular {
    position: relative;
}

footer.main-footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   color: white;
   text-align: center;
}

ul#menuIcons li i {
	font-size: 35px;	
	color: #017cb8;
}



#proposta textarea,
#historico textarea{
	height: 180px;
}


#anexosDocs input[type=file]{
    height: 40px;
    padding-top: 2%;
}


div#propostasDt_paginate {
    display: flex;
    flex-direction: row-reverse;
}


div#propostasDt_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
div#propostasDt_length {
    flex: 50%;
}
div#propostasDt_info {
    flex: auto;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    /* background-color: #007bff; */
    background-color: #017cb8;
    border-color: #007bff;
}


#listUsuarios a i.fa,
#listUsuarios a i.fas,
#listPropostas a i.fa,
#listPropostas a i.fas {
    font-weight: 900;
    color: #017cb8;
}


#logo h1 a {
  width: 130px;
  height: 63px;
  display: block;
  background: url(../img/logo-saudepas-2019.png) no-repeat 0 0;
  background-size: 138px 66px;
  text-indent: -9999px;
}

td.dataTables_empty {
    text-align: center;
}


@media screen and (max-width: 767px) {
    li.paginate_button.previous {
        display: inline;
    }
    li.paginate_button.next {
        display: inline;
    }
    li.paginate_button {
        display: none;
    }
    div#propostasDt_paginate {
   		 	position: relative;
   	 	 	margin: 0 auto;
		}
		div#propostasDt_info {
    		position: relative;
    		text-align: center;
		}

		div#usuariosDt_paginate {
   		 	position: relative;
   	 	 	margin: 0 auto;
		}
		div#usuariosDt_info {
    		position: relative;
    		text-align: center;
		}

}

.form-group.acoes a {
    padding: 10px;
    margin-left: 2px;
}
label.dtComentario {
    position: relative;
    float: right;
    margin-top: 20px;
}


#proposta input, 
#anexosDocs select {
	border: none;
  border-bottom: solid 2px #017cb8;
  border-radius: 5px;
}

/*
.iconNavs h3 strong {
    background-color: #017cb8;
    text-align: center;
    width: 40px;
    height: 40px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 42px;
    text-align: center;
    position: absolute;
    left: 30px;
    top: 22px;
}*/

ul#myTab {
    margin-bottom: 25px;
}




div#usuariosDt_paginate {
    display: flex;
    flex-direction: row-reverse;
}


div#usuariosDt_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
div#usuariosDt_length {
    flex: 50%;
}
div#usuariosDt_info {
    flex: auto;
}

div#propostasDt_filter {
    display: none;
}

.filtros {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 100%;
}


@media (min-width: 576px){
	
	.form-inline .form-control {
    	display: inline-block;
    	width: -webkit-fill-available;
    	vertical-align: middle;
	}	
}


#listPropostas .filtros .form-inline,
#listUsuarios .filtros .form-inline{
	width: 100%;
} 
/*
button.excluirUsuario {
    background: transparent;
    border: none;
}
*/

.col-md-6.col-sm-12.arquivo .form-group {
    position: relative;
    margin-top: 7%;
    word-wrap: break-word;
}



.box-header {
    display: flex;
    flex-wrap: wrap;
}
.box-header h3 {
    flex: 50%;
}


.form-group.acoes {
    align-items: center;
    justify-content: space-between;
    display: flex;
    height: 30px;
    padding: 0;
    margin: 0;
}

li.notification {
    width: 50px;
    height: 50px;
    align-items: center;
    position: relative;
    top: inherit;
}

/*
button.notification-btn {
   border: none;
   width: 55px;
   height: 48px;
   border-left: 1px solid;
   border-top: 1px solid;
   border-right: 1px solid;
}
*/
button.notification-btn {
   border: none;
   background: transparent;
}

ul#menuIcons li.notification i {
    font-size: 26px;
    color: #017cb8;
}

ul#menuIcons li.notification .badge {
    font-size: 15px;
    color: #017cb8;
    position: relative;
    top: -35px;
    left: 15px;
    background: transparent;
}


div.notifications{
		display: none;
    position: absolute;
    background: #f7f4f4;
    border: 1px solid #017cb8;
    border-radius: 5px;
    padding: 15px;
    width: 400px;
    height: 400px;
    margin-left: 64%;
    margin-top: 3%;
}

.notifications-active{
	display: block;
}


#tbNotificacoes{
	width: 100%;
}


.notification-header {
    width: 100%;
    text-align: center;
}

i.fa.fa-bell {
    font-weight: 900;
    color: #017cb8;
}


#btnDownloadAnexos .fa-spinner.fa-spin {
    position: relative;
    top: 35%;
}

.row.box.downloadAnexosDiv {
    display: none;
}

/*************************
  6. Basic margin padding  
*************************/
.m-0 {
    margin: 0;
}
.p-0 {
    padding: 0;
}

/**************************
Custom Ideiamais
**************************/
/*************************
    1. Margin top 
*************************/
.mt-0 { margin-top: 0 }
.mt-10 { margin-top: 10px }
.mt-15 { margin-top: 15px }
.mt-20 { margin-top: 20px }
.mt-30 { margin-top: 30px }
.mt-35 { margin-top: 35px }
.mt-40 { margin-top: 40px }
.mt-50 { margin-top: 50px }
.mt-55 { margin-top: 55px }
.mt-60 { margin-top: 60px }
.mt-70 { margin-top: 70px }
.mt-75 { margin-top: 75px }
.mt-80 { margin-top: 80px }
.mt-90 { margin-top: 90px }
.mt-100 { margin-top: 100px }
.mt-110 { margin-top: 110px }
.mt-115 { margin-top: 115px }
.mt-120 { margin-top: 120px }
.mt-130 { margin-top: 130px }
.mt-140 { margin-top: 140px }
.mt-150 { margin-top: 150px }
.mt-160 { margin-top: 160px }
.mt-170 { margin-top: 170px }
.mt-180 { margin-top: 180px }
.mt-190 { margin-top: 190px }
.mt-200 { margin-top: 200px }
/*************************
    2. Margin right  
*************************/
.mr-0 { margin-right: 0px }
.mr-10 { margin-right: 10px }
.mr-15 { margin-right: 15px }
.mr-20 { margin-right: 20px }
.mr-30 { margin-right: 30px }
.mr-40 { margin-right: 40px }
.mr-50 { margin-right: 50px }
.mr-60 { margin-right: 60px }
.mr-70 { margin-right: 70px }
.mr-80 { margin-right: 80px }
.mr-90 { margin-right: 90px }
.mr-100 { margin-right: 100px }
.mr-110 { margin-right: 110px }
.mr-120 { margin-right: 120px }
.mr-130 { margin-right: 130px }
.mr-140 { margin-right: 140px }
.mr-150 { margin-right: 150px }
/*************************
    3. Margin bottom 
*************************/
.mb-0 { margin-bottom: 0 }
.mb-5 { margin-bottom: 5px }
.mb-10 { margin-bottom: 10px }
.mb-15 { margin-bottom: 15px }
.mb-20 { margin-bottom: 20px }
.mb-25 { margin-bottom: 25px }
.mb-30 { margin-bottom: 30px }
.mb-35 { margin-bottom: 35px }
.mb-40 { margin-bottom: 40px }
.mb-50 { margin-bottom: 50px }
.mb-55 { margin-bottom: 55px }
.mb-60 { margin-bottom: 60px }
.mb-70 { margin-bottom: 70px }
.mb-75 { margin-bottom: 75px }
.mb-80 { margin-bottom: 80px }
.mb-90 { margin-bottom: 90px }
.mb-100 { margin-bottom: 100px }
.mb-110 { margin-bottom: 110px }
.mb-115 { margin-bottom: 115px }
.mb-120 { margin-bottom: 120px }
.mb-130 { margin-bottom: 130px }
.mb-140 { margin-bottom: 140px }
.mb-150 { margin-bottom: 150px }
.mb-160 { margin-bottom: 160px }
.mb-170 { margin-bottom: 170px }
.mb-180 { margin-bottom: 180px }
.mb-190 { margin-bottom: 190px }
.mb-200 { margin-bottom: 200px }
/*************************
    4. Margin left 
*************************/
.ml-0 { margin-left: 0 }
.ml-10 { margin-left: 10px }
.ml-15 { margin-left: 15px }
.ml-20 { margin-left: 20px }
.ml-30 { margin-left: 30px }
.ml-40 { margin-left: 40px }
.ml-50 { margin-left: 50px }
.ml-60 { margin-left: 60px }
.ml-70 { margin-left: 70px }
.ml-80 { margin-left: 80px }
.ml-90 { margin-left: 90px }
.ml-100 { margin-left: 100px }
.ml-110 { margin-left: 110px }
.ml-120 { margin-left: 120px }
.ml-130 { margin-left: 130px }
.ml-140 { margin-left: 140px }
.ml-150 { margin-left: 150px }
/*************************
    5. Padding top
*************************/
.pt-0 { padding-top: 0 }
.pt-10 { padding-top: 10px }
.pt-15 { padding-top: 15px }
.pt-20 { padding-top: 20px }
.pt-30 { padding-top: 30px }
.pt-40 { padding-top: 40px }
.pt-50 { padding-top: 50px }
.pt-55 { padding-top: 55px }
.pt-60 { padding-top: 60px }
.pt-70 { padding-top: 70px }
.pt-75 { padding-top: 75px }
.pt-80 { padding-top: 80px }
.pt-90 { padding-top: 90px }
.pt-100 { padding-top: 100px }
.pt-110 { padding-top: 110px }
.pt-115 { padding-top: 115px }
.pt-120 { padding-top: 120px }
.pt-130 { padding-top: 130px }
.pt-140 { padding-top: 140px }
.pt-150 { padding-top: 150px }
.pt-160 { padding-top: 160px }
.pt-170 { padding-top: 170px }
.pt-180 { padding-top: 180px }
.pt-190 { padding-top: 190px }
.pt-200 { padding-top: 200px }
/*************************
    6. Padding right 
*************************/
.pr-0 { padding-right: 0 }
.pr-10 { padding-right: 10px }
.pr-15 { padding-right: 15px }
.pr-20 { padding-right: 20px }
.pr-30 { padding-right: 30px }
.pr-40 { padding-right: 40px }
.pr-50 { padding-right: 50px }
.pr-60 { padding-right: 60px }
.pr-70 { padding-right: 70px }
.pr-80 { padding-right: 80px }
.pr-90 { padding-right: 90px }
.pr-100 { padding-right: 100px }
.pr-110 { padding-right: 110px }
.pr-120 { padding-right: 120px }
.pr-130 { padding-right: 130px }
.pr-140 { padding-right: 140px }
/*************************
    7. Padding bottom  
*************************/
.pb-0 { padding-bottom: 0 }
.pb-10 { padding-bottom: 10px }
.pb-15 { padding-bottom: 15px }
.pb-20 { padding-bottom: 20px }
.pb-25 { padding-bottom: 25px }
.pb-30 { padding-bottom: 30px }
.pb-40 { padding-bottom: 40px }
.pb-50 { padding-bottom: 50px }
.pb-55 { padding-bottom: 55px }
.pb-60 { padding-bottom: 60px }
.pb-70 { padding-bottom: 70px }
.pb-75 { padding-bottom: 75px }
.pb-80 { padding-bottom: 80px }
.pb-90 { padding-bottom: 90px }
.pb-100 { padding-bottom: 100px }
.pb-110 { padding-bottom: 110px }
.pb-115 { padding-bottom: 115px }
.pb-120 { padding-bottom: 120px }
.pb-130 { padding-bottom: 130px }
.pb-140 { padding-bottom: 140px }
.pb-150 { padding-bottom: 150px }
.pb-160 { padding-bottom: 160px }
.pb-170 { padding-bottom: 170px }
.pb-180 { padding-bottom: 180px }
.pb-190 { padding-bottom: 190px }
.pb-200 { padding-bottom: 200px }
/*************************
    8. Padding left 
*************************/
.pl-0 { padding-left: 0 }
.pl-10 { padding-left: 10px }
.pl-15 { padding-left: 15px }
.pl-20 { padding-left: 20px }
.pl-30 { padding-left: 30px }
.pl-40 { padding-left: 40px }
.pl-50 { padding-left: 50px }
.pl-60 { padding-left: 60px }
.pl-70 { padding-left: 70px }
.pl-80 { padding-left: 80px }
.pl-90 { padding-left: 90px }
.pl-100 { padding-left: 100px }
.pl-110 { padding-left: 110px }
.pl-120 { padding-left: 120px }
.pl-130 { padding-left: 130px }
.pl-140 { padding-left: 140px }
.pl-150 { padding-left: 150px }
/***************************
    9. Page section padding   
****************************/
.ptb-0 { padding: 0 }
.ptb-10 { padding: 10px 0 }
.ptb-20 { padding: 20px 0 }
.ptb-30 { padding: 30px 0 }
.ptb-40 { padding: 40px 0 }
.ptb-50 { padding: 50px 0 }
.ptb-55 { padding: 55px 0 }
.ptb-60 { padding: 60px 0 }
.ptb-70 { padding: 70px 0 }
.ptb-75 { padding: 75px 0 }
.ptb-80 { padding: 80px 0 }
.ptb-90 { padding: 90px 0 }
.ptb-100 { padding: 100px 0 }
.ptb-110 { padding: 110px 0 }
.ptb-115 { padding: 115px 0 }
.ptb-120 { padding: 120px 0 }
.ptb-130 { padding: 130px 0 }
.ptb-140 { padding: 140px 0 }
.ptb-150 { padding: 150px 0 }
.ptb-160 { padding: 160px 0 }
.ptb-170 { padding: 170px 0 }
.ptb-180 { padding: 180px 0 }
.ptb-190 { padding: 190px 0 }
.ptb-200 { padding: 200px 0 }
/***************************
    10. Page section margin 
****************************/
.mtb-0 { margin: 0 }
.mtb-10 { margin: 10px 0 }
.mtb-15 { margin: 15px 0 }
.mtb-20 { margin: 20px 0 }
.mtb-30 { margin: 30px 0 }
.mtb-35 { margin: 35px 0 }
.mtb-40 { margin: 40px 0 }
.mtb-50 { margin: 50px 0 }
.mtb-55 { margin: 55px 0 }
.mtb-60 { margin: 60px 0 }
.mtb-75 { margin: 75px 0 }
.mtb-70 { margin: 70px 0 }
.mtb-80 { margin: 80px 0 }
.mtb-90 { margin: 90px 0 }
.mtb-100 { margin: 100px 0 }
.mtb-110 { margin: 110px 0 }
.mtb-115 { margin: 115px 0 }
.mtb-120 { margin: 120px 0 }
.mtb-130 { margin: 130px 0 }
.mtb-140 { margin: 140px 0 }
.mtb-150 { margin: 150px 0; }
.mtb-160 { margin: 160px 0; }
.mtb-170 { margin: 170px 0; }
.mtb-180 { margin: 180px 0; }
.mtb-190 { margin: 190px 0; }
.mtb-200 { margin: 200px 0; }
/***************************
  	11. Extra margin and padding
****************************/
.plr-140 {
  padding-left: 7%;
  padding-right: 7%;
}

/***************************
  	12. Alertas
****************************/
.kode-alert {
	color:#fff;
	position:relative;
	border-radius:3px;
	text-align:left;
	margin-bottom:10px;
	padding:12px;
	padding-right:30px
}
.kode-alert a {
	color:inherit;
	text-decoration:underline;
	font-weight:600
}
.kode-alert h4 {
	font-size:14px;
	margin:0;
	color:inherit;
	font-weight:600;
	line-height:normal
}
.kode-alert .img {
	width:40px;
	height:40px;
	position:absolute;
	border-radius:3px;
	left:12px;
	top:12px
}
.kode-alert-img {
	padding-left:65px;
	min-height:64px
}
.kode-alert-icon {
	padding-left:40px
}
.kode-alert-icon .fa {
	display:block;
	width:20px;
	text-align:center;
	position:absolute;
	font-size:15px;
	left:12px;
	top:17px
}
.kode-alert .closed {
	position:absolute;
	right:3px;
	text-decoration:none;
	font-weight:700;
	top:0;
	font-size:20px;
	color:rgba(255, 255, 255, .5);
	padding:4px
}
.kode-alert .closed:hover {
	color:#fff
}
.kode-alert-click {
	cursor:pointer;
	padding-right:12px
}
.kode-alert .primary {
	outline:0;
	border:none;
	background:rgba(0, 0, 0, .4);
	color:inherit;
	border-radius:3px;
	padding:4px 10px
}
.kode-alert .cancel {
	outline:0;
	border:none;
	background:rgba(255, 255, 255, .4);
	color:rgba(0, 0, 0, .8);
	border-radius:3px;
	padding:4px 10px
}
.kode-alert .primary:hover, .kode-alert .cancel:hover {
	opacity:.9
}
.kode-alert-top, .kode-alert-bottom, .kode-alert-top-left, .kode-alert-top-right, .kode-alert-bottom-left, .kode-alert-bottom-right, .kode-alert-fullscreen {
	box-shadow:2px 2px 2px rgba(0, 0, 0, .1);
	position:fixed;
	display:none;
	z-index:1000
}
.kode-alert-top {
	top:0;
	left:0;
	right:0
}
.kode-alert-bottom {
	bottom:0;
	left:0;
	right:0
}
.kode-alert-top-left {
	top:80px;
	left:20px
}
.kode-alert-top-right {
	top:80px;
	right:20px
}
.kode-alert-bottom-left {
	bottom:20px;
	left:20px
}
.kode-alert-bottom-right {
	bottom:20px;
	right:20px
}
.kode-alert-fullsize {
	top:50%;
	left:50%;
	margin:-20px
}
.alert1 {
	background:#06c822
}
.alert2 {
	background:#fcca00
}
.alert3 {
	background:#da0606
}
.alert4 {
	background:#017cb8
}
.alert5 {
	background:#ff6d00
}
.alert6 {
	background:#c1c1c1
}
.alert7 {
	background:#9a80b9
}
.alert8 {
	background:#a2ded0;
	color:#444
}
.alert8 .closed {
	color:inherit
}
.alert8 a:hover.closed {
	color:inherit
}
.alert9 {
	background:#d2527f
}
.alert10 {
	background:#5b3e86
}
.alert11 {
	background:#e99844
}
.alert1-light {
	background:#30ffec;
	color:#000
}
.alert2-light {
	background:#abb4e2;
	color:#252f69
}
.alert3-light {
	background:#b5dfb7;
	color:#2d682f
}
.alert4-light {
	background:#6eecff;
	color:#005f6e
}
.alert5-light {
	background:#ffc599;
	color:#994100
}
.alert6-light {
	background:#fccbc7;
	color:#ba160a
}
.alert7-light {
	background:#e8e3ef;
	color:#674b88
}
.alert8-light {
	background:#edf9f6;
	color:#2f8571
}
.alert9-light {
	background:#f2cbd9;
	color:#97274e
}
.alert10-light {
	background:#5b3e86;
	color:#fff
}
.alert11-light {
	background:#f9e3cd;
	color:#b26515
}
.alert1-light .closed, .alert2-light .closed, .alert3-light .closed, .alert4-light .closed, .alert5-light .closed, .alert6-light .closed, .alert7-light .closed, .alert8-light .closed, .alert9-light .closed, .alert10-light .closed, .alert11-light .closed {
	color:inherit;
	opacity:.6
}
.alert1-light .closed:hover {
	color:inherit;
	opacity:.8
}