@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

[font-family='OpenSans-Medium'],
[font-family='OpenSans-Medium'],
[font-family='"OpenSans-Medium"'],
[font-family="'OpenSans-Medium'"] {
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
}
[font-family='OpenSans-Regular'],
[font-family='OpenSans-Regular'],
[font-family='"OpenSans-Regular"'],
[font-family="'OpenSans-Regular'"] {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.iphoneFront {
	width: 294px;
	height: 600px;
	background-color: #000;
	border-radius: 50px;
	position: relative;
}
.iphoneFront .frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 3px solid #bbb5b3;
	border-radius: 50px;
	box-shadow: 0 0 0 1px #4a4947;
}
.iphoneFront .antenas > div {
	background-color: #75726f;
	position: absolute;
}
.iphoneFront .antenas .tt {
	width: 8px;
	height: 3.5px;
	top: 0;
	right: 60px;
}
.iphoneFront .antenas .tr {
	width: 3.5px;
	height: 8px;
	top: 60px;
	right: -1px;
}
.iphoneFront .antenas .tl {
	width: 3.5px;
	height: 8px;
	top: 60px;
	left: -1px;
}
.iphoneFront .antenas .bb {
	width: 8px;
	height: 3.5px;
	bottom: -1.5px;
	left: 60px;
}
.iphoneFront .antenas .bl {
	width: 3.5px;
	height: 8px;
	bottom: 60px;
	left: -1px;
}
.iphoneFront .antenas .br {
	width: 3.5px;
	height: 8px;
	bottom: 60px;
	right: -1px;
}
.iphoneFront .keys .silent {
	width: 3.5px;
	height: 28px;
	border-top: 2px solid #eae0d9;
	border-bottom: 2px solid #eae0d9;
	position: absolute;
	top: 105px;
	left: -4.5px;
	background: linear-gradient(90deg, #888, #555);
}
.iphoneFront .keys .volt {
	width: 3.5px;
	height: 50px;
	border-top: 2px solid #eae0d9;
	border-bottom: 2px solid #eae0d9;
	position: absolute;
	top: 150px;
	left: -4.5px;
	background: linear-gradient(90deg, #888, #555);
}
.iphoneFront .keys .volb {
	width: 3.5px;
	height: 50px;
	border-top: 2px solid #eae0d9;
	border-bottom: 2px solid #eae0d9;
	position: absolute;
	top: 210px;
	left: -4.5px;
	background: linear-gradient(90deg, #888, #555);
}
.iphoneFront .keys .lock {
	width: 3.5px;
	height: 70px;
	border-top: 2px solid #eae0d9;
	border-bottom: 2px solid #eae0d9;
	position: absolute;
	top: 192px;
	right: -4.5px;
	background: linear-gradient(-90deg, #888, #555);
}
.iphoneFront .screen {
	width: 270px;
	height: 576px;
	background: #f1f5f9;
	background-size: cover;
	border-radius: 40px;
	margin-top: 12px;
	margin-left: 12px;
	position: relative;
}
.iphoneFront .screen .island {
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
	width: 90px;
	height: 25px;
	background-color: #000;
	border-radius: 40px;
	z-index: 99999999999;
}
.iphoneFront .screen .island .camera {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	width: 15px;
	height: 15px;
	background-color: #111;
	border-radius: 50%;
}
.iphoneFront .screen .island .camera::before {
	content: '';
	display: block;
	position: absolute;
	top: 3px;
	left: 3px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #161a3c;
}
.iphoneFront .screen .island .camera::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 5px;
	height: 5px;
	background: linear-gradient(0, #03344f 0%, #040e27 50%, #3e5191 100%);
	border-radius: 50%;
}

a.link,
a:not([role='button'])[target='_blank'] {
	background: transparent !important;
	color: inherit;
	border-bottom: 0 !important;
	text-decoration: none;
}
a.link:hover,
a:not([role='button'])[target='_blank']:hover {
	background: transparent !important;
	text-decoration: none;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* FLIP ANIMATION */
.businessCardArea {
	background-color: transparent;
	width: 100%;
	max-width: 400px;
	height: auto;
	perspective: 1600px;
}
.businessCardInner {
	position: relative;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	transition: -webkit-transform 0.6s;
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
}

.businessCardInner .front,
.businessCardInner .back {
	position: absolute;
	width: 100%;
	max-width: 400px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	filter: drop-shadow(2px 4px 6px black);
	-webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.25));
}

.businessCardInner .back {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.businessCardInner.flipped {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.specialContratCss {
	letter-spacing: 0.3px;
}

.specialContratCss p {
	margin-bottom: 12px;
}
.specialContratCss ol {
	padding-left: 20px;
	margin-bottom: 12px;
}
.specialContratCss ol li {
	margin-bottom: 6px;
	list-style: decimal;
	font-weight: bolder;
}
.specialContratCss ul {
	padding-left: 12px;
	margin-bottom: 12px;
}
.specialContratCss ul li {
	margin-bottom: 6px;
	list-style: inside;
	font-weight: normal;
}

ul.pagination {
	margin: 5px 0;
	display: flex;
	padding: 0;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
}

ul.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(0, 0, 0, 0.87);
	height: 32px;
	margin: 0 2px;
	min-width: 32px;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

ul.pagination li a:focus {
	outline: none;
}

ul.pagination li a:hover {
	background-color: #ececec;
}

ul.pagination li.disabled a {
	color: rgba(0, 0, 0, 0.87);
	height: 32px;
	opacity: 0.38;
	cursor: default;
	pointer-events: none;
}
ul.pagination li.disabled a:hover {
	background-color: transparent;
	cursor: auto;
}
ul.pagination li.break-me a {
	height: auto;
}
ul.pagination li.break-me a:hover {
	background-color: transparent;
}
ul.pagination li.active a {
	color: rgba(0, 0, 0, 0.87);
	background-color: #61dafb;
}
ul.pagination li.active a:hover {
	background-color: #61dafb;
}

input[readOnly] {
	background-color: rgba(250, 200, 0, 0.25);
}
