/*!
 * Stratum Security Website v 2.0 (https://stratumsecurity.com/)
 * © Stratum Security 2024. All Rights Reserved.
 */

/* modal.css */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;1,800&display=swap");

/* Custom Properties */
:root {
	--primary-color: #e36b0a;
	--primary-color-light: #f5d1b5;
	--text-light-color: #fff;
	--text-dark-color: #0d0d0d;
	--background-dark-color: #0d0d0d;
	--background-light-color: #fff;
	--dark-lines: #222222;
	--light-lines: #f5f5f5;
}

/* Global Styles */
html {
	/* background-color: var(--background-dark-color); */
	margin: 0 auto;
	width: 100%;
	scroll-behavior: smooth;
}

.body {
	background-color: var(--background-dark-color);
	color: var(--text-light-color);
	font-family: "Inter", sans-serif;
	height: 100vh;
	margin: 0 auto;
	padding: 0;
	line-height: 1.6;
	opacity: 0.5;
	transition: opacity 0.5s ease;
}

dialog {
	width: 100vw;
	height: 100vh;
}

.container {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo-modal {
	display: block;
	height: 45px;
	margin: 2.5rem 0;
	overflow: hidden;
	text-indent: -9999px;
    background-repeat: no-repeat;
	width: 136px;
}

.gsk {
	background-image: url(../images/gsk-logo.svg);
}

.llr {
	background-image: url(../images/llr-logo-color.svg);
}

.verisk {
	background-image: url(../images/verisk-logo-color.svg);
}

.small {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 2rem;
	font-family: monospace;
	font-size: 0.6rem;
	font-weight: 300;
	padding: 2px 6px;
}

.separator {
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin: 1.6em 0;
	width: 100%;
}

.tags {
	display: flex;
	gap: 12px;
}

.header {
	display: flex;
	flex-direction: column;
	width: 50%;
}

.header-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	height: 24px;
}

.h1 {
	font-size: 2.5em;
	font-weight: 300;
	width: 50%;
	text-align: center;
}

.interactive-text {
	width: 50%;
	margin-top: 60px;
	display: flex;
}

.interactive-text p {
	font-size: 0.9em;
	/*cursor: pointer;
	transition: color 0.3s ease;*/
}

/*.interactive-text p:hover {
	color: var(--primary-color);
}*/

.text-buttons {
	position: absolute;
	margin-top: 20px;
    color: var(--background-dark-color);
}

.selected {
    color: var(--primary-color);
}

.h2 {
	font-size: 1.5em;
	font-weight: 300;
}

.below-text {
	display: inline;
	justify-content: center;
}

.close-button {
	width: 35px;
	height: 35px;
	border-radius: 50px;
	background-color: var(--background-light-color);
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: border 0.3s ease;
	background-image: url(../images/closeIcon.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.close-button:hover {
	border: 2.5px solid var(--primary-color);
}

.close-button:focus {
	outline: none;
}

@media (max-width: 680px) {
	.tags .small {
		display: none;
	}

	.tags .small:first-child {
		display: inline;
	}

	.header {
		width: 97%;
	}

	.h1 {
		font-size: 2.3em;
		width: 90%;
	}

    .interactive-text {
        width: 97%;
        margin-top: 0;
        flex-direction: column;
    }

    .text-buttons {
        position: relative;
        margin-top: 20px;
    }
}
