/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}

.position-absolute {
	position: absolute;
}
.position-relative {
	position: relative;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-x-hidden {
	overflow-x: hidden;
}

.d-flex {
	display: flex;
}

.align-items-center {
	align-items: center;
}

.content {
	margin: auto;
	max-width: 100%;
	min-height: calc(100vh - 60px);
}

.container {
	min-width: 100%;
	height: calc(100vh - 42px);
	top: 0px;
	max-width: 500px;
}

.ellipse {
	width: 148vw;
	height: 220px;
	top: -80px;
	left: -64px;
	border-radius: 50%;
}

.contacts-container {
	margin: 0px 26px;
	width: 80%;
	margin-bottom: 40px;
}

.btn-container {
	width: -webkit-fill-available;
	height: 60px;
	opacity: 1;
	position: fixed;
	bottom: 0;
	overflow: hidden;
	cursor: pointer;
}

.footer-container {
	margin-bottom: 80px;
}

@media only screen and (min-width: 300px) {
	.ellipse {
		width: 141vw;
	}

	.contacts-container {
		margin: 0px 38px;
		width: 75%;
	}
}

@media only screen and (min-width: 350px) {
	.ellipse {
		width: 135vw;
	}
	.contacts-container {
		margin: 0px 28px;
		width: 82%;
	}
}

@media only screen and (min-width: 400px) {
	.ellipse {
		width: 130vw;
	}
	.contacts-container {
		margin: 30px;
		width: 85%;
	}
}

@media only screen and (min-width: 450px) {
	.content {
		max-width: 450px;
	}

	.container {
		min-width: 450px;
	}

	.ellipse {
		width: 620px;
	}

	.contacts-container {
		margin: 10px 40px;
	}

	.btn-container {
		width: 450px;
	}
}

.logo {
	padding-top: 104px;
	padding-left: 86px;
	height: 40px;
	max-width: 100px;
}

.profile {
	width: 150px;
	height: 150px;
	top: 1rem;
	border-top-left-radius: 106px;
	border-top-right-radius: 106px;
	border-bottom-left-radius: 106px;
	border-bottom-right-radius: 106px;
	border: 2px solid rgba(255, 255, 255, 1);
	box-shadow: 0px 2px 8px rgba(0.5058823823928833, 0.5176470875740051, 0.5333333611488342, 0.15000000596046448);
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-column {
	flex-direction: column;
}

.user-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
}

.word-break {
	word-break: break-all;
}

.user-name {
	font-weight: 600;
	font-size: 30px;
	line-height: 1;
	word-break: break-word;
	text-align: center;
}

.pronunciation {
	font-style: italic;
	font-weight: 400;
	opacity: 0.7;
}

.user-name-container {
	top: 10rem;
	width: 100%;
}

.pl-4 {
	padding-left: 4px;
}

.pl-20 {
	padding-left: 20px;
}

.pl-12 {
	padding-left: 12px;
}

.mt-0 {
	margin-top: 0px;
}

.mt-5 {
	margin-top: 5px;
}

.mb-0 {
	margin-bottom: 0px;
}

.pt-12 {
	padding-top: 12px;
}

.mb-20 {
	margin-bottom: 20px;
}

.user-designation {
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	color: #1d2535;
	opacity: 0.7;
}
.company {
	font-size: 20px;
}

.opacity-1 {
	opacity: 1;
}

.summary-container {
	position: relative;
}

.summary {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
	text-align: center;
	color: #1d2535;
	padding: 0px 26px;
}

.title {
	font-weight: 500;
	font-size: 18px;
	color: #1d2535;
	word-wrap: break-word;
}

.sub-title {
	margin-top: 1px;
	margin-bottom: 1px;
	font-weight: 400;
	font-size: 15px;
	color: #1d2535;
	opacity: 0.5;
}

.social-heading {
	font-weight: 400;
	font-size: 20px;
	line-height: 12px;
	text-align: center;
	color: #232f3e;
	opacity: 0.5;
}
.svg-container {
	height: 45px;
	width: 45px;
	border-radius: 50%;
	text-align: center;
}

.grid-layout {
	display: grid;
	margin-top: 10px;
	grid-template-columns: auto auto auto auto;
	justify-content: center;
}

.social-logo {
	height: 3rem;
}

.btn-contact {
	width: 100%;
	color: white;
}

.grid-item{
	padding: 0px 10px;
}

.contact-image {
	height: 45px;
}

#floatingButton {
	display: block;
	position: fixed; /* Fixed/sticky position */
	bottom: 60px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	outline: none; /* Remove outline */
	cursor: pointer; /* Add a mouse pointer on hover */
	border-radius: 50%;
	border: none;
	max-width: 60px;
	box-shadow: 2px 3px 20px 3px #ccc;
}
.bs-align-center {
    display: block;
    text-align: center;
}

.bs-align-left {
    display: block;
    text-align: left;
}

.bs-align-right {
    display: block;
    text-align: right;
}

iframe {
    width: 100%;
    border: none;
}

.branding-container {
    font-family: inherit;
    padding: 10px 0;
    box-shadow: -1px -1px 5px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.wallet-save-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

a {
    text-decoration: none;
}

.fr-view img.fr-dii {
    margin: 0;
    max-width: 100%;
}


.content-overlay {
    filter: brightness(0.3) blur(4px);
}

.disable-scroll {
    overflow: hidden;
}


/* Bootstrap temporary fix  */

*,
*::before,
*::after {
  box-sizing: unset;
}

p {
  margin-top: revert;
  margin-bottom: revert;
}
