@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* FONTS */
@font-face {
    font-family: "Lato";
    src: url('../fonts/LatoRegular.ttf') format('truetype');
}

@font-face {
    font-family: "Cabin";
    src: url('../fonts/Cabin.ttf') format('truetype');
}

:root {
    --headingFont: 'Cabin', sans-serif;
    --mainFont: 'Lato', sans-serif;
}

/* HOSTED GROUPS MODAL STYLES */
.hosted-groups-modal-section {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 6;
}

.hosted-groups-modal-content {
	max-width: 1115px;
	background: #fff;
	padding: 60px 80px;
	border-radius: 20px;
	margin: auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.hosted-groups-modal-content .hosted-groups-modal__logo {
	width: 200px;
    margin-bottom: 40px;
}

.hosted-groups-modal-content h2.hosted-groups-modal__title {
	font: 700 40px/51px var(--headingFont);
	color: #1C193C;
    margin-bottom: 30px;
}

.hosted-groups-modal-content .hosted-groups-modal__message {
	font: 400 16px/32px var(--mainFont);
	margin-bottom: 30px;
}

.hosted-groups-modal-content .hosted-groups-modal__message span {
    font-size: 0.6em;
    vertical-align: super;
}

.hosted-groups-modal__buttons {
	display: flex;
	align-items: center;
	justify-content: center;
    flex-direction: column;
	gap: 15px;
}

.hosted-groups-modal__buttons a.hosted-groups-modal__button {
	border-radius: 100px;
    font: 600 16px/24px 'Cabin', sans-serif;
    color: #fff;
    padding: 11px 40px; 
	text-decoration: none;
    background: #368727;
	border: 1px solid #368727;
}

.hosted-groups-modal__buttons a.hosted-groups-modal__button:hover {
	border: 1px solid #368727;
	background: transparent;
	color: #368727;
    text-decoration: none;
}

.hosted-groups-modal__buttons a.back-to-finteract__btn {
	font: 600 16px/24px 'Cabin', sans-serif;
    color: #368727;
	text-decoration: none;
}

.hosted-groups-modal__buttons a.back-to-finteract__btn:hover {
	text-decoration: underline;
    color: #368727;
}