.esk-tabs-container 
{
	padding: 0rem;
}


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

.esk-tabs 
{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.esk-tabs label 
{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	margin-right: 0.0625rem;
	cursor: pointer;
	background-color: #ECEFF0;
	color: #51626f;
	font-family: Roboto, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	transition: background-color ease 0.3s;
}

.doublecontainer
{
  display: flex;
  flex-wrap: wrap;
}

.doublecontainer > div
{
  flex: 50%;
}

@media (max-width: 768px) 
{

.doublecontainer > div {
  flex: 100%;
}

}

.esk-tabs .esk-tab {
	flex-grow: 1;
	width: 100%;
	height: 100%;
	display: none;
	padding: 1rem 2rem;
	color: #51626f;
	background-color: #fff;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
}

.esk-tabs .esk-tab > *:not(:last-child) {
	margin-bottom: 0.8rem;
}

.esk-tabs [type=radio] {
	display: none;
}

.esk-tabs [type=radio]:checked + label {
	background-color: #fff;
	color: #039fb0;
	border-top: 4px solid #039fb0;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
}

.esk-tabs [type=radio]:checked + label + .esk-tab {
	display: block;
}

@media (min-width: 768px) 
{
	
	body
	{
		font-size: 1.125rem;
	}	

	.esk-tabs label {
		order: 1;
		width: auto;
	}

	.esk-tabs .esk-tab {
		order: 9;
	}

	.esk-tabs [type=radio]:checked + label {
		border-bottom: none;
	}
}

@media (min-width: 992px) 
{
	.esk-tabs {
		width: 960px;
	}
}


/* Hide all tab content initially */
.esk-tab {
  display: none;
}

/* Display the content of the checked tab */
.esk-tabs input[type="radio"]:checked + label + .esk-tab {
  display: block;
}

/* Style for the labels (tab links) */
input[type="radio"] {
  display: none; /* Hide the radio button */
}

.esk-tabs label {
  display: inline-block;
  background-color: #f1f1f1;
  padding: 10px 20px;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.esk-tabs label:hover {
  background-color: #ddd;
}

/* Style for the active tab */
.esk-tabs input[type="radio"]:checked + label {
  background-color: #4CAF50;
  color: white;
}

.esk-tabs {
  margin-top: 20px;
}

.esk-tab h2 {
  margin-top: 0;
}

.esk-tab p {
  margin: 10px 0;
}

.doublecontainer {
  display: flex;
  justify-content: space-between;
}

.doublecontainer div {
  flex: 1;
  padding: 10px;
}

.esk-tabs video {
  width: 100%;
  height: auto;
}

.esk-tab {
	display: none; /* Hide all tab content by default */
}

.esk-tabs input[type="radio"] {
	display: none; /* Hide the radio buttons */
}

.esk-tabs input[type="radio"]:checked + label {
	font-weight: bold; /* Style the active tab label */
}

.esk-tabs input[type="radio"]:checked ~ .esk-tabs .esk-tab {
	display: block; /* Display content of the checked tab */
}
