  /* Customize tab appearance */
    .custom-tabs .nav-link2 {
      border: none;
      background-color: transparent;
      color: #333;
      padding:  0px;
	  font-family: "Roboto", sans-serif;
	  font-size: 19px;
	  margin: 0 25px;
	  font-weight: 100;
    }
    .custom-tabs .nav-link2.active {
 
      color: #c2b182 ;
      border-bottom: 1px solid #c2b182 ;
    }
    .custom-tabs .nav-item2 {
      display: inline-block; /* Ensure tabs are inline */
	  margin-bottom: 20px;
 
    }
    .custom-tabs .nav-item:not(:last-child) .nav-link2 {
      margin-right: 5px; /* Add space between tabs */
    }
	
	
	

.switch-label {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 100px; /* Adjust this value to align the text vertically with your switch */
    vertical-align: top;
}

.switch-label.off {
    float: left;
    margin-right: 10px; /* Spacing between the label and the switch */
}

.switch-label.on {
    float: right;
    margin-left: 10px; /* Spacing between the switch and the label */
}

input[type="checkbox"] {
    height: 0;
    width: 0;
    visibility: hidden;
}

label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: grey;
    display: inline-block; /* Changed from block to inline-block */
    border-radius: 100px;
    position: relative;
}

label:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 5px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
     transition: 0.3s;
}

input:checked + label {
    background: #c2b182;
}

input:checked + label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

 

 

 

.toggle-label {
    font-size: 15px;
    color: #000;
    padding: 0 10px;
				font-family: "Roboto", sans-serif;
				font-weight: 400;
}

.tab-content {
	margin-top: 40px;
}
	

.switchbox {
    display: flex;
    align-items: center; /* Vertically center labels and switch */
    justify-content: center; /* Horizontally center the switchbox */
    width: 100%; /* Make sure the switchbox aligns properly */
    max-width: 300px; /* Set a max width for the switchbox */
    margin: 0 auto;
}




	
 	

 
.vid-box h5 {
	font-family: "Roboto", sans-serif;
text-align: center !important;	
font-size: 15px !important;	
font-weight: 100;	
padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.vid-box img {
	width: 100%;
}
	
.switchbox .active {
	color: #a48d4d;
}

@media only screen and (min-width: 320px) and (max-width: 450px) {
.custom-tabs .nav-link2 {
  font-size: 16px;
  margin: 0 5px;

}

}



.nav-link2:hover {
  color: #c2b182;
  border-bottom: 1px solid #c2b182;
  font-weight: 300;
}