html, body {
    margin: 0;
    padding: 0;
	width: 100%;
	height: 100%;
	color: #4a4a4a;
	overflow-y: auto;
    font-size: 12px;
}

@font-face {
    font-family: 'Hero New';
    font-style: normal;
    font-weight: normal;
    src: local('Hero New Regular'), url('src/fonts/Hero/Hero\ New\ Regular.woff') format('woff');
}

@font-face {
    font-family: 'Hero New UltraLight';
    font-style: normal;
    font-weight: normal;
    src: local('Hero New UltraLight'), url('src/fonts/Hero/Hero\ New\ UltraLight.woff') format('woff');
}

.hero * {
    font-family: 'Hero New';
}

.hero-ultra * {
    font-family: 'Hero New UltraLight';
}

.dropdown-wrapper {
    position: relative;
}

.dropdown {
    z-index: -1;
    transition: all .2s ease-in-out;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 30px;
    top: 85%;
    bottom: auto;
    background-color: #FFF;
    border-radius: 3px;
    padding: 5px;
    box-shadow: 2px 6px 20px 2px rgba(10, 10, 120, 0.15);
    pointer-events: none;
    min-width: 220px;
    text-align: left;
}

.dropdown::after {
    content: '';
    position: absolute;
    left: 10px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FFF;
    clear: both;
}

.dropdown-wrapper:hover .dropdown:not([class*="inactive"]),
.dropdown-wrapper:active .dropdown:not([class*="inactive"]) {
    display: block;
    opacity: 1;
    z-index: 999;
    pointer-events: auto;
}

.dropdown span,
.dropdown a {
    padding: 15px 5px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    display: block;
    border-bottom: 1px solid #d4d4d4;
    color: #4a4a4a;
}

.dropdown span:hover,
.dropdown a:hover {
    color: #118AB2;
    cursor: pointer;
}

.dropdown span:last-of-type,
.dropdown a:last-of-type {
    border-bottom: 0;
}

 .card-title {
	text-align: left;
	font-size: 12px;
	font-weight: 600;
	border-bottom: 1px solid #d4d4d4;
	padding: 15px 0 10px 0;
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card-title span {
	float: right;
	font-weight: 400;
	cursor: pointer;
}

.info {
	text-align: left;
	margin: auto;
}

.info p {
	font-size: 16px !important;
	line-height: 18px !important;
	font-weight: 400 !important;
    margin: 0px 0 15px 0 !important;
    padding: 0 !important;
    display: block;
    word-wrap: break-word;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.info p small {
	font-size: 12px;
    display: block;
    line-height: 14px;
	padding-top: 5px;
}

.info label {
	font-size: 14px;
	line-height: 24px;
	display: block;
	font-weight: 600;
}

.box-shadow .card-title {
    padding-top: 0;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.cbx {
    position: absolute;
    top: 0px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #c8ccd4;
    border-radius: 3px;
    vertical-align: middle;
    transition: background 0.1s ease;
    cursor: pointer;
}
.cbx:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 9px;
    opacity: 0;
    transform: rotate(45deg) scale(0);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease;
    transition-delay: 0.15s;
}
.lbl {
    margin-left: 27px;
    vertical-align: middle;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
}
.cbx-wrapper:checked ~ .cbx {
    border-color: transparent;
    background: #6871f1;
    animation: jelly 0.6s ease;
}
.cbx-wrapper:checked ~ .cbx:after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}
.cntr {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    line-height: 20px;
}
@-moz-keyframes jelly {
    from {
        transform: scale(1, 1);
    }
    30% {
        transform: scale(1.25, 0.75);
    }
    40% {
        transform: scale(0.75, 1.25);
    }
    50% {
        transform: scale(1.15, 0.85);
    }
    65% {
        transform: scale(0.95, 1.05);
    }
    75% {
        transform: scale(1.05, 0.95);
    }
    to {
        transform: scale(1, 1);
    }
}
@-webkit-keyframes jelly {
    from {
        transform: scale(1, 1);
    }
    30% {
        transform: scale(1.25, 0.75);
    }
    40% {
        transform: scale(0.75, 1.25);
    }
    50% {
        transform: scale(1.15, 0.85);
    }
    65% {
        transform: scale(0.95, 1.05);
    }
    75% {
        transform: scale(1.05, 0.95);
    }
    to {
        transform: scale(1, 1);
    }
}
@-o-keyframes jelly {
    from {
      transform: scale(1, 1);
    }
    30% {
      transform: scale(1.25, 0.75);
    }
    40% {
      transform: scale(0.75, 1.25);
    }
    50% {
      transform: scale(1.15, 0.85);
    }
    65% {
      transform: scale(0.95, 1.05);
    }
    75% {
      transform: scale(1.05, 0.95);
    }
    to {
      transform: scale(1, 1);
    }
}
@keyframes jelly {
    from {
      transform: scale(1, 1);
    }
    30% {
      transform: scale(1.25, 0.75);
    }
    40% {
      transform: scale(0.75, 1.25);
    }
    50% {
      transform: scale(1.15, 0.85);
    }
    65% {
      transform: scale(0.95, 1.05);
    }
    75% {
      transform: scale(1.05, 0.95);
    }
    to {
      transform: scale(1, 1);
    }
}


.mt25 {
	margin-top: 25px;
}

.pt50 {
	padding-top: 50px;
}

.pt5 {
	padding-top: 5px;
}

.pt10 {
	padding-top: 10px;
}

.pt15 {
	padding-top: 15px;
}

.h100 {
	height: 100%;
}

.swipper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    font-size: 0;
}

.swipper-item {
    display: inline-block;
    padding: 15px 10px;
    float: none;
    width: auto;
}

.content {
    min-height: 100%;
    height: auto;
}

iframe {
    border-radius: 20px;
}

.h500 {
    min-height: 500px;
}

.form {
    text-align: left;
    position: relative;
}

.form label {
    display: block;
    font-weight: 600;
}

.form p,
.form a {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
}

.form .absolute {
    position: absolute;
    bottom: 0;
    left: 0;
}

.form .facebook span {
    font-size: 28px;
    margin-right: 5px;
}

.form .facebook a {
    color: #3b5998;
    margin-bottom: 0;
}

.form .facebook a:visited {
    color: #3b5998;
}

.d-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.atendimento {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.atendimento p {
    margin: 0;
    margin-right: 15px;
}

.atendimento img {
    height: 60px;
}

a.badge {
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #118AB2;
    display: inline-block;
    border-radius: 3px;
    color: #118AB2;
    margin: 5px 5px 5px 0;
    transition: .2s;
    cursor: pointer;
}

a.badge:hover {
    background: #119AB2;
    color: #FFF;
}

.swal2-container.swal2-shown {
	z-index: 9999;
}

body.swal2-toast-shown .swal2-container.swal2-center {
	width: 100%;
}

@font-face {
	font-family:"FA";
	font-style:normal;
	font-weight:400;
	font-display:auto;
	src: url('src/fonts/FontAwesome/fa-regular-400.eot');
	src: url('src/fonts/FontAwesome/fa-regular-400.eot?#iefix') format("embedded-opentype"),
		 url('src/fonts/FontAwesome/fa-regular-400.woff2') format("woff2"),
		 url('src/fonts/FontAwesome/fa-regular-400.woff') format("woff"),
		 url('src/fonts/FontAwesome/fa-regular-400.ttf') format("truetype"),
		 url('src/fonts/FontAwesome/fa-regular-400.svg#fontawesome') format("svg");
}

@font-face {
	font-family:"FA";
	font-style:normal;
	font-weight:900;
	font-display:auto;
	src: url('src/fonts/FontAwesome/fa-solid-900.eot');
	src: url('src/fonts/FontAwesome/fa-solid-900.eot?#iefix') format("embedded-opentype"),
		 url('src/fonts/FontAwesome/fa-solid-900.woff2') format("woff2"),
		 url('src/fonts/FontAwesome/fa-solid-900.woff') format("woff"),
		 url('src/fonts/FontAwesome/fa-solid-900.ttf') format("truetype"),
		 url('src/fonts/FontAwesome/fa-solid-900.svg#fontawesome') format("svg");
}

@font-face{
	font-family:"FAB";
	font-style:normal;
	font-weight:normal;
	font-display:auto;
	src: url('src/fonts/FontAwesome/fa-brands-400.eot');
	src: url('src/fonts/FontAwesome/fa-brands-400.eot?#iefix') format("embedded-opentype"),
		 url('src/fonts/FontAwesome/fa-brands-400.woff2') format("woff2"),
		 url('src/fonts/FontAwesome/fa-brands-400.woff') format("woff"),
		 url('src/fonts/FontAwesome/fa-brands-400.ttf') format("truetype"),
		 url('src/fonts/FontAwesome/fa-brands-400.svg#fontawesome') format("svg");
}

@font-face {
	font-family: 'Open Sans';
	src: url('src/fonts/OpenSans/OpenSans.eot');
	src: url('src/fonts/OpenSans/OpenSans.eot?#iefix') format('embedded-opentype'),
		 url('src/fonts/OpenSans/OpenSans.woff') format('woff'),
		 url('src/fonts/OpenSans/OpenSans.ttf') format('truetype'),
		 url('src/fonts/OpenSans/OpenSans.svg#open_sansregular') format('svg');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Open Sans Light';
	src: url('src/fonts/OpenSans/OpenSansLight.eot');
	src: url('src/fonts/OpenSans/OpenSansLight.eot?#iefix') format('embedded-opentype'),
		 url('src/fonts/OpenSans/OpenSansLight.woff') format('woff'),
		 url('src/fonts/OpenSans/OpenSansLight.ttf') format('truetype'),
		 url('src/fonts/OpenSans/OpenSansLight.svg#open_sansregular') format('svg');
	font-weight: 400;
	font-style: normal;
}

* {
    box-sizing: border-box;
    font-family: 'Hero New UltraLight', 'Open Sans', sans-serif;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    scroll-behavior: smooth;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #EF476F;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


[class*="lds-"] {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

button [class*="lds-"] {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 0;
    top: -36px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 13px;
    background: #EF476F;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

button [class*="lds-"] div {
    background: #FFF;
    width: 8px;
}

.lds-facebook div:nth-child(1) {
    left: 6px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 45px;
    animation-delay: 0;
}

button .lds-facebook div:nth-child(1) {
    left: 6px;
}

button .lds-facebook div:nth-child(2) {
    left: 21px;
}

button .lds-facebook div:nth-child(3) {
    left: 35px;
}

@keyframes lds-facebook {
    0% {
        top: 6px;
        height: 51px;
    }

    50%, 100% {
        top: 19px;
        height: 26px;
    }
}


.fieldset-wrapper {
    min-height: 50px;
	position: relative;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}


input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button,
input[type='date']::-webkit-inner-spin-button,
input[type='date']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="text"], input[type="password"], input[type="email"], input[type="date"], select {
	width: 100%;
	padding: 12px;
	padding-right: 24px;
	font-size: 14px;
	border-radius: 3px;
	border: 1px solid #CCC;
	display: block;
	box-sizing: border-box;
	outline: none;
	background-color: transparent;
	color: #4a4a4a;
}
fieldset input[type="text"], fieldset input[type="password"], fieldset input[type="email"], fieldset input[type="date"], fieldset select {
	width: 100%;
	padding-right: 24px;
	padding-top: 16px;
	font-size: 14px;
	border-radius: 3px;
	border: 0;
	display: block;
	box-sizing: border-box;
	outline: none;
	background-color: transparent;
	height: 40px;
	line-height: 40px;
}
fieldset {
	padding: 0;
	margin: 0;
	background-color: transparent;
	border: 1px solid #BBB;
	border-radius: 3px;
	text-align: left;
	position: relative;
	z-index: 999;
	transition: all 130ms ease-in-out;
}
fieldset.active, fieldset:focus, fieldset:valid {
	/* border: 1px solid #999; */
}
fieldset:focus-within, fieldset:valid {
    border: 1px solid #118AB2;
}
/* fieldset:invalid {
	border: 1px solid red !important;
} */
fieldset input:-moz-read-only {
	color: #7a7a7a !important;
	cursor: default;
}
fieldset input:read-only {
	color: #7a7a7a !important;
	cursor: default;
}
/* fieldset:invalid legend {
	color: red !important;
}
fieldset:invalid ~ label::before {
	content: attr(data-content-invalid);
} */
fieldset.active input, fieldset.active select {
	color: #4a4a4a;
}
fieldset legend {
	color: #999;
	font-weight: 400;
	text-align: left;
	margin-left: 5px;
	padding-inline-start: 0px;
	padding-inline-end: 0px;
	transform: translate(7px, 21px);
	font-size: 14px;
	line-height: 0;
	max-width: 0;
	display: block;
	white-space: nowrap;
	transition: all 130ms ease-in-out;
	cursor: text;
}
fieldset legend small {
	font-size: 12px;
	transition: all 130ms ease-in-out;
}
fieldset input[type="date"] ~ legend, fieldset select ~ legend {
	transform: translate(7px, 24px);
}
fieldset.active legend,
fieldset:focus legend, fieldset:valid legend,
fieldset input:focus ~ legend {
	color: #118AB2;
    max-width: 400px;
	padding-inline-start: 4px;
	padding-inline-end: 4px;
	font-size: 12px;
	transform: none;
}

fieldset span {
	position: absolute;
	display: block;
	top: 18px;
	right: 8px;
	-webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 900;
    font-family: 'FA';
}

fieldset.error span::before {
	content: '\f00d';
	color: red;
	top: 4px;
	position: relative;
}

fieldset.success span::before {
	content: '\f00c';
	color: green;
	position: relative;
	top: 4px;
}

fieldset button {
	width: auto;
	display: inline-block;
	float: left;
	font-size: 12px;
	position: absolute;
	bottom: -10px;
	right: -30px;
	border-radius: 3px;
}

fieldset button ~ input {
	padding-right: 50px !important;
}

.fieldset-wrapper label {
	font-size: 12px;
    padding: 5px 0;
    width: 100%;
    display: block;
    color: red;
	line-height: 12px;
	text-align: left;
	margin: auto;
}

.fieldset-wrapper label::after {
	content: '\00a0';
}

.lds-dual-ring {
	display: inline-block;
	width: 64px;
	height: 64px;
}
.lds-dual-ring:after {
	content: " ";
	display: block;
	width: 46px;
	height: 46px;
	margin: 1px;
	border-radius: 50%;
	border: 5px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.radio {
	position: relative;
	cursor: pointer;
	line-height: 20px;
	font-size: 14px;
	margin: 15px 0;
	display: block;
	text-align: left;
}
.radio .label {
	position: relative;
	display: block;
	float: left;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border: 2px solid #c8ccd4;
	border-radius: 100%;
	-webkit-tap-highlight-color: transparent;
}
.radio .label:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #225cff;
	transform: scale(0);
	transition: all 0.2s ease;
	opacity: 0.08;
	pointer-events: none;
}
.radio:hover .label:after {
	transform: scale(3.6);
}
.radio small {
	font-size: 12px;
	font-weight: 600;
}
input[type="radio"]:checked + .label {
	border-color: #225cff;
}
input[type="radio"]:checked + .label:after {
	transform: scale(1);
	transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
	opacity: 1;
}
.cntr {
	left: 0;
	width: 100%;
	text-align: left;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
  transition: all ease-in-out .1s;
}

[class*="col-"].fright {
  float: right;
}

[class*="col-"].offset::before {
	content: "\00a0";
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.max-width {
	max-width: 1300px;
	margin: auto;
	text-align: center;
}

.max-width-500 {
	max-width: 500px;
	margin: auto;
	text-align: center;
}

.left {
    text-align: left;
    margin: auto;
}

.center {
    text-align: center;
    margin: auto;
}

.right {
    text-align: right;
    margin: auto;
}

.mobile-only {
	display: none !important;
}

.desktop-only {
	display: initial !important;
}

.truncate {
	word-wrap: break-word;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.truncate-multline {
	word-wrap: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.truncate-multline-2 {
	word-wrap: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.icon {
	font-family: 'FA';
	-webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 900;
}

.icon-brand {
	font-family: 'FAB';
	-webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 900;
}

.filter::after {
    content: '\f0b0';
}

.angle-down::after {
    content: '\f107';
}

.fb::after {
    content: '\f082';
}

.box-shadow {
	box-shadow: 2px 6px 15px 2px rgba(10,10,120,0.15);
	border-radius: 7px;
	padding: 15px;
}

.table-fixed {
    table-layout: fixed;
    width: 100%;
}

.table-content thead {
    background-color: #EEEEEE;
}

.table-content thead th {
    padding: 10px 5px;
    text-align: left;
    margin: auto;
    line-height: 20px;
    border-right: 1px solid #d4d4d4;
}

.table-content th div {
    width: auto;
    display: inline-block;
    float: left;
    line-height: 20px;
}

.table-content td {
    padding: 10px 5px;
    text-align: left;
    margin: auto;
    border-right: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.table-header span {
    text-align: center;
    cursor: pointer;
}

.table-header td {
    padding: 0;
    vertical-align: middle !important;
    border-right: 0;
    border-bottom: 0;
}

.table-header td:last-of-type {
    width: 15px;
    text-align: center;
}

.tabs .tab {
    width: auto;
    display: inline-block;
    padding: 10px 15px;
    background-color: #EFEFEF;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.h100 {
    height: 100%;
}

.p15 {
    padding: 15px;
}

.pv15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.clear {
    padding: 0 !important;
}

.clear-v {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.clear-h {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.clear-t {
    padding-top: 0 !important;
}

.clear-r {
    padding-right: 0 !important;
}

.clear-b {
    padding-bottom: 0 !important;
}

.clear-l {
    padding-left: 0 !important;;
}

.vtop td, td.vtop {
    vertical-align: top
}

.vmiddle td, td.vmiddle {
    vertical-align: middle;
}

.vbottom td, td.vbottom {
    vertical-align: bottom;
}

.table-wrapper {
    height: 100%;
}

.table-wrapper tr:first-of-type {
    height: 150px;
}

.table-wrapper tr:first-of-type td {
    vertical-align: bottom;
}

.table-wrapper tr:last-of-type {
    overflow-y: auto;
    height: 100%;
}

.box {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pv10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.transparencia h1, .transparencia h3 {
    margin: 0;
    text-align: left;
}

.transparencia h3 {
    color: #118AB2;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.transparencia h3 span {
    float: right;
    font-size: 12px;
    cursor: pointer;
}

.transparencia h3 span:hover {
    text-decoration: underline;
}

.transparencia h1, h3, h4, p {
    margin: 0;
}

.transparencia h2 {
    font-weight: 400;
    font-size: 16px;
}

.transparencia h3::after {
    height: 1px;
    width: 100%;
    display: inline-block;
    background-color: #CCC;
    content: '';
    box-sizing: border-box;
}

.transparencia .box {
    min-height: 120px;
    border: 1px solid #CACACA;
    border-radius: 7px;
    text-align: left;
}

.transparencia td {
    text-align: left;
    vertical-align: middle;
}

.transparencia h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.transparencia p {
    color: #7a7a7a;
    font-size: 12px;
    padding-right: 10px;
    margin-bottom: 0;
}

.transparencia a {
    width: 100%;
    border: 0;
    background-color: transparent;
    font-family: 'FA';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 900;
    font-size: 14px;
    height: 100%;
    line-height: 40px;
    display: block;
    color: #7a7a7a;
    margin: auto;
    text-align: center;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    border-top: 1px solid #DDD;
}

.transparencia a::before {
    content: '\f019';
}

.transparencia .box button {
    padding: 0;
    border: 0;
    background-color: transparent;
    font-weight: 600;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    border-right: 1px solid #CCC;
    border-top: 1px solid #DDD;
    color: #7a7a7a;
    margin: auto;
    text-align: center;
    border-bottom-left-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    float: left;
    display: block;
    height: 100%;
}

.transparencia .box button:hover {
    background-color: rgba(239, 71, 111, .1);
}

.transparencia .box a:hover {
    background-color: rgba(17, 138, 178, .2);
}

.transparencia .box button:last-of-type {
    color: #EF476F;
    border-radius: 0;
    border-right: 0;
    border-bottom-right-radius: 3px;
}

.transparencia .box button::before {
    content: 'Editar';
}

.transparencia .box button:last-of-type::before {
    content: 'Deletar';
}

.transparencia .box span {
    font-family: 'FA';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 400;
    font-size: 14px;
    border-radius: 50%;
    background-color: rgb(139, 24, 33);
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    color: #FFF;
    margin: auto;
    text-align: center;
}

.transparencia .box span::before {
    content: '\f1c1';
}

a {
    text-decoration: none;
}

.header {
    background-color: #118AB2;
    color: #FFF;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 50px;
    box-shadow: 2px 6px 15px 2px rgba(10,10,120,0.15);
    z-index: 9996;
}

.header .nav {
    transition: all ease-in-out .2s;
    height: 100%;
    left: 0;
    top: 0;
}

.header a {
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
    padding: 15px;
    font-size: 12px;
    /* color: rgba(255, 255, 255, .7); */
    color: #FFF;
    text-transform: uppercase;
}

.header .max-width, .header .row {
    height: 100%
}

.header [class*="col-"] {
    padding: 0;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    width: auto;
}

.header [class*="col-"].right {
    float: right;
}

.header [class*="col-"]:not([class*="offset"]):hover a {
    color: #FFF;
    text-decoration: underline;
}


.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 80%;
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label span {
    word-wrap: break-word;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

.inputfile + label span::after {
    content: '\00a0';
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}


.inputfile-5 + label {
    color: #d3394c;
}

.inputfile-5:focus + label,
.inputfile-5.has-focus + label,
.inputfile-5 + label:hover {
    color: #722040;
}

.inputfile-5 + label figure {
    width: 60px;
    height: 85px;
    background-color: #d3394c;
    display: block;
    position: relative;
    margin: 0 auto;
    margin-bottom: 10px;
}

.inputfile-5:focus + label figure,
.inputfile-5.has-focus + label figure,
.inputfile-5 + label:hover figure {
    background-color: #722040;
}

.inputfile-5 + label figure::before,
.inputfile-5 + label figure::after {
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
}

.inputfile-5 + label figure::before {
    border-top: 20px solid #ffffff;
    border-left: 20px solid transparent;
}

.inputfile-5 + label figure::after {
    border-bottom: 20px solid #722040;
    border-right: 20px solid transparent;
}

.inputfile-5:focus + label figure::after,
.inputfile-5.has-focus + label figure::after,
.inputfile-5 + label:hover figure::after {
    border-bottom-color: #d3394c;
}

.inputfile-5 + label svg {
    width: 35px;
    height: 100%;
    fill: #f1e5e6;
    text-align: center;
    margin: auto;
}

button, input[type="submit"] {
    cursor: pointer;
	border: 0;
	padding: 14px 12px;
	color: #FFF;
	background-color: #06D6A0;
	margin: auto;
	text-align: center;
	width: 100%;
	font-size: 16px;
	font-weight: 200;
    display: block;
    border-radius: 3px;
}
button:hover,
input[type="submit"]:hover {
    background-color: #06C392;
}

button.link, input[type="submit"].link {
	color: #118AB2;
	background-color: transparent;
	text-align: left;
	font-size: 14px;
	line-height: 16px;
	padding: 14px 0;
	height: 50px;
	width: auto;
    float: left;
    display: block;
}

button.link:hover,
input[type="submit"].link:hover {
	text-decoration: underline;
}

button.outline, input[type="submit"].outline {
    background-color: transparent;
    border: 1px solid #06D6A0;
    color: #06D6A0;
    border-radius: 3px;
}

button.outline.default, input[type="submit"].outline.default {
    border: 1px solid #CACACA;
    color: #838383;
}

button.outline.default:hover,
input[type="submit"].outline.default:hover {
    color: #118AB2;
    border-color: #118AB2;
}

.banner-wrapper {
    height: calc(100vh - 50px);
    width: 100%;
    position: relative;
}

.banner-wrapper table {
    position: absolute;
    top: 0;
    z-index: 9990;
}

.banner-wrapper .max-width {
    max-width: 700px;
    text-align: center;
    margin: auto;
}

.banner-wrapper h1 {
    font-size: 30px;
    color: #FFF;
}

.banner-wrapper p {
    font-size: 18px;
    color: #FFF;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(17, 138, 178, .9);
    z-index: 999;
    height: 100%;
    width: 100%;
}

.banner-scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    text-align: center;
    margin: auto;
    z-index: 9995;
}

.banner-scroll span {
    line-height: 50px;
    font-size: 40px;
    color: #FFF;
    text-align: center;
    margin: auto;
    display: block;
    animation: scroll-down 1.5s infinite;
    top: -15px;
    position: relative;
    cursor: pointer;
    width: 40px;
}

p {
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.section:nth-of-type(odd) {
    background: #F5F5F5;
}

.section:nth-of-type(even) {
    background: #FFF;
}

.section {
    padding: 50px 0;
}

.section .section-container {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.section .text {
    text-align: left;
}

.section .image-wrapper {
    width: 550px;
    height: 400px;
    max-width: 100%;
}

@keyframes scroll-down {
    0% {
        top: -15px;
    }
    75% {
        top: 0;
    }
    100% {
        top: -15px;
    }
}

.image-wrapper {
    width: 100%;
    height: 100%;
    margin: auto;
}

.image {
    /* background-image: url('./src/img/laboratory.jpg'); */
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin: auto;
}

.fachada-3-image {
    background-image: url('./src/img/fotos/fachada-3.jpg');
}

.exames-image {
    background-image: url('./src/img/fotos/exames.jpg');
}

.cirurgia-2-image {
    background-image: url('./src/img/fotos/cirurgia-2.jpg');
}

.quarto-2-image {
    background-image: url('./src/img/fotos/quarto-2.jpg');
}

.banner {
    background-image: url('./src/img/woman.jpg');
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* filter: blur(3px);
    -webkit-filter: blur(3px); */
}

.data-circle-wrapper {
    padding-bottom: 30px;
}

.data-circle {
    position: relative;
    height: 100%;
    width: 100%;
    text-align: center;
    margin: auto;
}

.data-circle .ilustration {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    margin: auto;
}
.data-circle .ilustration div {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.data-circle p {
    font-size: 14px;
}

.doctor-ilustration {
    background-image: url('./src/img/doctor.svg');    
}

.team-ilustration {
    background-image: url('./src/img/team.svg');
}

.build-ilustration {
    background-image: url('./src/img/build.svg');
}
.destinations-ilustration {
    background-image: url('./src/img/destinations.svg');
}

.doctor-primary-ilustration {
    background-image: url('./src/img/doctor-primary.svg');
}

.team-primary-ilustration {
    background-image: url('./src/img/team-primary.svg');
}

.build-primary-ilustration {
    background-image: url('./src/img/build-primary.svg');
}
.destinations-primary-ilustration {
    background-image: url('./src/img/destinations-primary.svg');
}

@media screen and (max-width: 1200px) {

}
@media screen and (max-width: 992px) {
    .transparencia .box-wrapper {
        width: 33.33%;
    }
    .administracao .box-wrapper {
        width: 50%;
    }
    .col-lg-1 {width: 8.33%;}
    .col-lg-2 {width: 16.66%;}
    .col-lg-3 {width: 25%;}
    .col-lg-4 {width: 33.33%;}
    .col-lg-5 {width: 41.66%;}
    .col-lg-6 {width: 50%;}
    .col-lg-7 {width: 58.33%;}
    .col-lg-8 {width: 66.66%;}
    .col-lg-9 {width: 75%;}
    .col-lg-10 {width: 83.33%;}
    .col-lg-11 {width: 91.66%;}
    .col-lg-12 {width: 100%;}
    /* .banner-wrapper {
        height: 400px;
    } */
}
@media screen and (max-width: 800px) {
    .col-md-1 {width: 8.33%;}
    .col-md-2 {width: 16.66%;}
    .col-md-3 {width: 25%;}
    .col-md-4 {width: 33.33%;}
    .col-md-5 {width: 41.66%;}
    .col-md-6 {width: 50%;}
    .col-md-7 {width: 58.33%;}
    .col-md-8 {width: 66.66%;}
    .col-md-9 {width: 75%;}
    .col-md-10 {width: 83.33%;}
    .col-md-11 {width: 91.66%;}
    .col-md-12 {width: 100%;}
    .desktop-only {
    	display: none !important;
    }
    .clear-m {
        padding: 0 !important;
    }
    .clear-m-v {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .clear-m-h {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .clear-m-t {
        padding-top: 0 !important;
    }
    .clear-m-r {
        padding-right: 0 !important;
    }
    .clear-m-b {
        padding-bottom: 0 !important;
    }
    .clear-m-l {
        padding-left: 0 !important;
        ;
    }
    .header .nav {
        left: -100%;
        position: fixed;
        height: 100%;
        width: 300px;
        background-color: #FFF;
        z-index: 9998;
        opacity: 0;
        box-shadow: 0;
        overflow: auto;
    }
    .header [class*="col-"], .header [class*="col-"] a {
        color: #118AB2;
        height: auto;
        text-transform: none;
    }
    .header [class*="col-"]:not([class*="offset"]):hover, .header [class*="col-"]:not([class*="offset"]):hover a {
        background-color: #118AB2;
        color: #FFF;
    }
    .header .nav [class*="col-"] {
        width: 100%;
        display: block;
        text-align: left !important;
        border-bottom: 1px solid #CCC;
        background-color: #FFF;
    }
    .header .nav [class*="col-"] a {
        padding: 15px;
    }
    .header .nav .offset {
        width: 100%;
        display: none;
    }
    .header .nav [class*="col-"]:last-of-type {
        border: 0;
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 80px;
    }
    .header .nav .bt {
        border-top: 1px solid #CCC !important;
    }
    .header .mobile-info {
        min-height: 100px;
        width: 100%;
        display: block;
        border-bottom: 1px solid #CCC;
        padding: 15px 0;
    }
    .menu:focus ~ .header .nav  .mobile-info .logo, .header .nav:focus .mobile-info .logo {
        /* background-image: url('./src/img/logo.png'); */
        background-image: url('');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        height: 75px;
    }
    .menu {
        cursor: pointer;
        line-height: 50px;
        display: block;
        width: 50px;
        height: 50px;
        z-index: 9997;
        position: fixed;
        color: #FFF;
    }
    .menu::after {
        font-family: 'FA';
        -webkit-font-smoothing: antialiased;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        font-weight: 900;
        font-size: 14px;
        float: left;
        padding: 0 15px;
        content: '\f0c9';
    }
    .close::after {
        font-family: 'FA';
        -webkit-font-smoothing: antialiased;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        font-weight: 900;
        font-size: 18px;
        float: left;
        content: '\f00d';
        position: absolute;
        z-index: 9999;
        top: 15px;
        right: 15px;
        color: #073B4C;
    }
    .menu:focus, .header .nav:focus ~ .menu {
        opacity: 0;
        z-index: -1;
    }
    .menu:focus ~ .header .nav, .header .nav:focus {
        left: 0;
        z-index: 9998;
        opacity: 1;
        box-shadow: 2px 6px 15px 2px rgba(10,10,120,0.15);
    }
    .menu:focus ~ .header .nav-bg, .header .nav:focus ~ .nav-bg {
        background-color: rgba(0,0,0,.3);
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        z-index: 9997;
        transition: all ease-in-out;
    }
    .menu:focus ~ .content {
        overflow: hidden;
    }
    .close:focus {
        opacity: 0;
    }
    .dropdown {
        display: block;
        z-index: 999;
        opacity: 1;
        position: relative;
        left: 0;
        top: 0;
        bottom: 0;
        min-width: auto;
        border-radius: 0;
        padding-right: 0;
        box-shadow: none;
        padding: 0;
        padding-top: 5px;
        background-color: #F6F5FB;
    }
    .dropdown::after {
        border-bottom-color: #F6F5FB;
    }
    .dropdown span,
    .dropdown a {
        padding: 15px 15px !important;
        border-radius: 0px;
        color: #118AB2;
        border-bottom-color: #CACACA;
    }
    .dropdown span:hover,
    .dropdown a:hover {
        background-color: #118AB2;
        color: #FFF;
    }
    .section .text {
        float: right;
    }
    .swipper-item .image-wrapper {
        height: 400px;
        width: 500px;
    }
    .atendimento {
        flex-direction: column;
        justify-content: flex-start;
        margin: 0;
    }
    .atendimento p {
        margin: auto;
        margin-bottom: 5px;
    }
    .atendimento img {
        margin: auto;
    }
}
@media screen and (max-width: 700px) {
    .transparencia .box-wrapper {
        width: 50%;
    }
    .administracao .box-wrapper {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .col-sm-1 {width: 8.33%;}
    .col-sm-2 {width: 16.66%;}
    .col-sm-3 {width: 25%;}
    .col-sm-4 {width: 33.33%;}
    .col-sm-5 {width: 41.66%;}
    .col-sm-6 {width: 50%;}
    .col-sm-7 {width: 58.33%;}
    .col-sm-8 {width: 66.66%;}
    .col-sm-9 {width: 75%;}
    .col-sm-10 {width: 83.33%;}
    .col-sm-11 {width: 91.66%;}
    .col-sm-12 {width: 100%;}
    .transparencia .box-wrapper {
        width: 100%;
    }
    .clear-sm {
        padding: 0 !important;
    }
    .clear-sm-v {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .clear-sm-h {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .clear-sm-t {
        padding-top: 0 !important;
    }
    .clear-sm-r {
        padding-right: 0 !important;
    }
    .clear-sm-b {
        padding-bottom: 0 !important;
    }
    .clear-sm-l {
        padding-left: 0 !important;
        ;
    }
    .section .image-wrapper {
        height: 300px;
    }
    .swipper-item .image-wrapper {
        height: 200px;
        width: 300px;
    }
}
@media screen and (max-width: 400px) {
    .header .nav {
        width: 80%;
    }
    .swipper-item .image-wrapper {
        height: 150px;
        width: 200px;
    }
}


.swal2-actions button {
    width: auto;
}