/*
Theme Name: Spiel Child
Theme URI: http://wordpress.com/spiel-child/
Description: Child Theme for Spiel
Author: Samuel Hellman
Author URI: http://casinobonusmeter.com
Template: spiel
Version: 1.0.0
*/


/* Casino Bonus Simulator */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#wagering-calculator-wrap {
	width: 100%;
	max-width: 100%;
	padding: 15px;
	box-sizing: border-box;
}

.header {
	text-align: center;
}

.item-group {
	margin-bottom: 15px;
	text-align: left;
	display: flex;
	align-items: center;
}

.item-group label {
	flex: 1;
	margin-bottom: 5px;
}

.textbox,
.bonusOptions,
.calculate-button,
.display-field {
	width: 100px;
	padding: 8px;
	margin-bottom: 10px;
	box-sizing: border-box;
	font-size: .5em;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.display-field {
	padding: 8px;
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	flex: 2;
}

.calculate-button {
	background-color: #4CAF50;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 1em;
}

.calculate-button:hover {
	background-color: #45a049;
}

.result-container {
	border: 1px solid #ccc;
	padding: 15px;
	margin-top: 20px;
	background-color: #f9f9f9;
	border-radius: 5px;
}

.result-container p {
	margin: 5px 0;
	font-weight: bold;
}

.item-group-inline {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.item-group-inline .checkbox {
	margin: 0;
	margin-right: 10px;
	width: auto;
}

@media (min-width: 768px) {
	#wagering-calculator-wrap {
		max-width: 600px;
		margin: 0 auto;
	}

	.item-group {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.item-group label {
		flex: 1;
		margin-right: 10px;
	}

	.textbox,
	.bonusOptions,
	.calculate-button,
	.display-field {
		flex: 2;
	}
	
    .simulation-results {
        display: flex;
        flex-direction: row; /* Use row layout for large screens */
    }

    .simulation-column {
        margin: 0 15px; /* Add some margin between the columns */
    }
}

@media (max-width: 768px) {
    .simulation-results {
        display: flex;
        flex-direction: column; /* Switch to one column on small screens */
    }

    .simulation-column {
        margin: 0 auto; /* Center each column on small screens */
    }
}
.info-icon {
	margin-left: 5px;
	cursor: pointer;
	position: relative;
	display: inline-block;
}

.info-icon::after {
	content: "ℹ️";
	font-size: 1.2em;
	color: #000;
}

.tooltip {
	visibility: hidden;
	width: 200px;
	background-color: #fff;
	color: #000;
	text-align: center;
	border-radius: 5px;
	padding: 10px;
	position: absolute;
	z-index: 1;
	top: 25px;
	left: 50%;
	margin-left: -100px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	transition: visibility 0.3s ease-in-out;
}

.info-icon:hover .tooltip {
	visibility: visible;
}

.casino-card .terms {
    display: flex;
    justify-content: space-between; /* Space the columns evenly */
}

.casino-card .terms-column {
    flex: 1; /* Make both columns the same width */
    padding: 10px;
}

.casino-card .terms-column ul {
    list-style-type: none;
    padding: 0;
}

.casino-card .terms-column li {
    margin-bottom: 10px;
}

.simulation-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.casino-logo img {
    max-width: 200px;
    display: block;
    margin: 0 auto;
}

.simulation-results {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.simulation-column {
    flex: 1;
    margin: 0 15px;
}

.affiliate-link {
    margin-top: 20px;
}

.affiliate-link a.btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.affiliate-link a.btn:hover {
    background-color: #0056b3;
}