@charset "utf-8";
/* CSS Document */

.license-container {
	font-weight: 300;
	text-align: center;
}

.license-menu {
	display: inline-block;
	margin: 0 auto;
	margin-top: 50px;
}

.license-menu-item {
	display: inline-block;
	font-size: 16px;
	margin: 0 10px;
	margin-bottom: 20px;
	background-color: rgba(0,0,0,0);
	border-radius: 5px;
	text-align: center;
	color: white;
	padding: 6px 25px 8px 25px;
	cursor: pointer;

    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2), 
                0 4px 10px rgba(0, 0, 0, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.license-menu-item:hover {
	border: 1px solid #f7cb70;
}

.license-menu-item.selected {
	background-color: #f7cb70;
	color: #111;

    border-top: 1px solid white;
}

.license-card {
	margin: auto;
	display: none;
}

.license-selected {
	display: block;
}

.license-header {
	display: none;
	
	width: 100%;
	font-size: 1em;
	margin-bottom: 20px;
	background-color: #222;
	border-radius: 50vh;
	text-align: center;
	color: white;
	padding: 5px 0;
}

.license-options {
	display: flex;
    justify-content: center; /* Center the children horizontally */
    align-items: stretch; /* This will ensure all children stretch to equal height */
    flex-wrap: wrap;
	gap: 30px;
	margin: 0 auto; 
}

.license-option {
	display: flex;
	flex: 1;
	flex-direction: column;
    align-items: center;
	max-width: 275px;
	/*background-color: rgba(255, 255, 255, 0.1);*/
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1));
    color: #ddd;
	
	border-radius: 10px;
	padding: 15px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2), 
                0 4px 10px rgba(0, 0, 0, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 48em) {
    .license-option {
        flex: 1 0 100%; /* Make each option take the full width of the container */
        max-width: 80%; /* Override the max-width to allow stretching */

    }
}

.license-option-content {
	flex-grow: 1;
	width: 100%;
}

.license-option-title {
	text-align: center;
	font-size: 1.2em;
	font-weight: 500;
    margin: 0 20px;
	margin-bottom: 10px;
    padding-bottom:8px;
    font-weight: 600;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    color: white;
}

.license-option-price {	
	position: relative;
	margin: auto;
}

.license-crossed-price {
    color: #e40a0e;
}

.license-crossed-price .license-option-pricePeriod {
    color: #e67c7d;
}

.license-crossed-price:after {
    content: '';         /* Required for pseudo-elements */
    position: absolute;  /* Position the line relative to the div */
    left: 80px;             /* Start from the left edge */
    right: 80px;            /* Stretch to the right edge */
    top: 50%;            /* Position at the middle vertically */
    border-top: 1.5px solid #e40a0e; /* Create the line */
    transform: translateY(-50%); /* Center the line */

    -webkit-transform:rotate(-5deg);
    -moz-transform:rotate(-5deg);
    -ms-transform:rotate(-5deg);
    -o-transform:rotate(-5deg);
    transform:rotate(-5deg);
}

.license-option-priceMain {
	font-size: 1.75em;
}

.license-option-priceDecimal {
	display: inline-block;
    position: relative;
    top: -0.5em;
}

.license-option-pricePeriod {
	font-size: 1.3em;
	align-self: baseline; 
	color: #aaa;
}

.license-option-subprice {
    color: white;
    margin: 0 20px;
	margin-top: 8px;
	font-size: 0.9em;
    font-weight: 600;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.license-option-tax {
	font-size: 0.8em;
	color: #aaa;
}

.features-list {
	position: relative;
	left: 0;
	text-align: left;
	justify-content: flex-start;
	font-size: 0.9em;
	margin: 0 15px;
	margin-top: 15px;
}

.features-list {
    list-style-type: none;
    padding-left: 0;
	margin-bottom: 20px;
}

.features-list li {
	position: relative;
    padding-left: 20px;
	margin: 6px 0;
}

/* Add a checkmark before each list item */
.features-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
	color: white;
}

.features-list li.warning-icon::before {
    content: "●";
	position: absolute;
    left: 1px;
    top: 0;
	color: #222;
}

.license-buy {
	padding: 5px 20px 7px 20px;
	font-weight: 500;
	background-color: #f7cb70;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
    color: #111;

    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5), 
                0 3px 8px rgba(0, 0, 0, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 1);

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.1));
}

.license-buy:hover {
	border: 1px solid white;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 1), 
                0 4px 10px rgba(0, 0, 0, 0.5);
}

.buyFAQ {
	position: relative;
	display: block;
	margin: 0 auto;
    width: 1000px;
    max-width: 80%;
}

.buyFAQ h2 {
	text-align: center;
}

.bullet-point {
    color: #fff; /* Change the color if needed */
    font-weight: bold;
    margin-right: 10px;
    font-size: larger; /* Adjust the size if needed */
}

/* SALE */

.sale-title {
    font-size: 3rem;
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: -20px;
    width: 100%;
    background-color: rgba(0,0,0,0.0);
    /*background-color: #c30f16;*/
    letter-spacing: 0.2rem;
    letter-spacing: 0rem;
    line-height: 2rem;
    font-weight: 900;
    font-weight: normal;
    padding: 25px 0;

    color: white;
    /*color: #ffffff;*/

    /*box-shadow: inset 0 4px 8px #ddd;
    border-bottom: solid 1px white;*/
    /*border-top: solid 2px white;*/

    /*font-family: 'Denk One';*/
}

.license-option-sale {
    position: relative;
    width: 100%;
    background-color: #f7cb70;
    padding: 15px 0;
    border-radius: 8px;
    margin-bottom: 25px;
}

.license-option-sale-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;

    color: #222;

    text-shadow: white 0px 1px;
}

.license-option-sale-subtitle {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: -6px;
}

/* LOGIN REGISTER OVERLAY */

.login-register-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background-color: rgba(48, 47, 60, 0.8);*/
	background-color: transparent;
    overflow-y: auto;
}

.login-container, .register-container {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	overflow: hidden;
	color: #222;
    margin-top: 26px;
}

.login-register-overlay h1 {
	text-align: center;
	color: #5b6574;
	font-size: 24px;
	padding: 10px 0 20px 0;
	border-bottom: 1px solid #dee0e4;
}

.login-register-overlay form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 20px;
}

.login-register-overlay form label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #f7cb70;
	color: #ffffff;
	border-radius: 50%;
	margin-left: 15px;
}

.login-register-overlay form input[type="password"], .login-register-overlay form input[type="text"], .login-register-overlay form input[type="email"], .login-register-overlay select {
	width: 265px;
	height: 50px;
	border: 1px solid #dee0e4;
	margin: 0 15px 20px 15px;
	padding: 0 15px;
	box-sizing:content-box;
}

.login-register-overlay form input[type="submit"] {
	width: 100%;
	padding: 15px;
	margin-top: 20px;
	background-color: #222;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	border-top: 3px solid #f7cb70;
	transition: background-color 0.2s;
}

.login-register-overlay form input[type="submit"]:hover {
	background-color: #f7cb70;
	transition: background-color 0.2s;
	color: #222;
}

.login-register-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 360px;

	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 1rem;
	letter-spacing: normal;
	color: black;
}

.register-terms {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 360px;

	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 0.7rem;
	letter-spacing: normal;
	color: black;
}

.login-register-overlay a {
	text-align: center;
}

.login-register-overlay a:hover {
	color: #f7cb70 !important;
}

.login-register-overlay form input[type="checkbox"] {
	margin-right: 5px;
	cursor: pointer;
}

.login-register-overlay button {
	height: 52px;
	line-height: 52px;
	position: relative;
	cursor: pointer;
	padding: 0 25px;
	font-weight: 400;
	background-color: #101010;
	
	display: block;
	color: #f2f2f2;
	text-align: center;
	text-decoration: none;

	height: auto;
	line-height: normal;
	padding: 0 25px;

	position: relative;
	display: inline-block;
	margin-top: 13px;
	margin-right: 10px;
	padding: 5px 20px;
	border: solid 2px #f7cb70;
	border: solid 2px #000;
	border-radius: 5px;
	background-color: #444;
	border: 1px solid #222;
}