/*
Theme Name: Nextweb
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
div.wpforms-container-full input[type=checkbox]:checked:before, div.wpforms-container-full input[type=radio]:checked:before{
	border-color:var(--fs-color-primary);
	box-shadow: 0 0 0 1px var(--fs-color-primary), 0px 1px 2px rgba(0,0,0,0.15);
}
div.wpforms-container-full input[type=radio]:checked:after{
	background-color: var(--fs-color-primary);
}
.wpforms-submit{
	background-color: var(--fs-color-primary) !important;
    text-transform: uppercase !important;
}
.boxform_contact .wpforms-submit{
	float: right !important;
}
/*video-about*/
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.video-container {
  width: 100%;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  flex-direction: column;
  justify-content: center;
}
.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.play-button-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

#circle-play-b {
  pointer-events: auto;
  cursor: pointer;
}

#circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
}


.popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	justify-content: center;
	align-items: center;
	z-index: 9999;
  }
  .popup-overlay.active {
	display: flex;
  }
  .popup-content {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	max-width: 600px;
	width: 90%;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
	animation: popupFade 0.3s ease;
  }
  @keyframes popupFade {
	from {opacity: 0; transform: translateY(-15px);}
	to {opacity: 1; transform: translateY(0);}
  }
.close-popup {
	position: absolute;
	top: 8px;
	right: 0px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #555;
	margin-right:0;
}
.close-popup:hover {
	  color: #000;
}

/**Table**/
.compare-table-wrap {
  background: #fff;
  padding: 20px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #282828;
}

.compare-table th,
.compare-table td {
  border: 1px solid #e60000;
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
}

.compare-table thead th {
  color: #282828;
  font-size: 18px;
  font-weight: 600;
  text-transform:inherit;
}

.compare-table td:first-child {
  text-align: left;
  width: 30%;
  color: #282828;
  font-weight: 600;
}

.compare-table .brand {
  text-align: left;
}

.compare-table .brand img {
  max-height: 50px;
}

.compare-table td.active {
  background: #f4f4f6;
}

.check {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e60000;
  align-items: center;
  justify-content: center;
}

.check::before {
  content: "✓";
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}



@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}