* {
  outline: none !important;
}
body {
  text-align: left;
  font-family: 'Lato';
   font-size: 18px;
}
.page-wrapper {
  /*SCOLLER*/
  width: 100%;


}
.playlist-wrapper {
display: flex;
  
}
.playlist-child-videos {
  display: flex;
  flex-direction: row;
    overflow: auto;
  flex: 1; 
  
  
}
.playlist-item-wrapper {
  display: inline-block;
    width: 100%;
    margin-left: 0 !important;
  width: 33.33%;
 padding: auto;

  }

.playlist-thumb {
border-right:3px solid #fff; 

 
}
.playlist-thumb img {

  width:100%;
  display: block; /* Ensure the image is treated as a block element */
 
  padding: 0px;
  box-sizing: content-box; 
  background-clip: content-box;
  margin-bottom: -2px;
   cursor: pointer;
  

  
}

.playlist-item-wrapper[data-playing="true"] .playlist-thumb img {
  opacity: 0.5;
}
.playlist-item-wrapper[data-live="true"] .playlist-meta-length {
  color: #dd3333;
}

.playlist-item-wrapper .playlist-meta-length > span {
   vertical-align: top;
}
@keyframes blink {
  from {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}



/* General styling for the form */
form {
  max-width: 100%;
  margin: 0 auto;
 
}

/* Form group styling */
.form-group {
  margin-bottom: 15px;
}

/* Input and textarea styling */
.form-control {
 
  font-size: 1rem;
  font-family: 'Open Sans';
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.75);


}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

          
  input::placeholder {
    font-size: 1rem;
    font-family: 'Open Sans';
    color: #645e6d; /* Tomato color */
    opacity: 1; /* Ensure the placeholder text is fully opaque */
}
  textarea::placeholder {
    font-size: 1rem;
    font-family: 'Open Sans';
    color: #645e6d; /* Tomato color */
    opacity: 1; /* Ensure the placeholder text is fully opaque */
}

/* Button styling */
.btn-primary {
  border-radius: 25px;
  padding: 10px 20px;
  background-color: #eb008b;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #4c01ba;
}

/* Help block styling */
.help-block {
  font-size: 1rem;
  margin-top: 5px;
}

/* Success message styling */
#success {
  margin-bottom: 20px;
}


/* Base styles for the play button */
.vjs-default-skin .vjs-big-play-button {
  font-size: 3em;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin-left: -45px;
  margin-top: -45px;
  border: 2px solid #fff;
  line-height: 90px;
  text-align: center;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .vjs-default-skin .vjs-big-play-button {
    font-size: 2em;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    line-height: 60px;
  }
}

/* Media query for even smaller screens */
@media (max-width: 480px) {
  .vjs-default-skin .vjs-big-play-button {
    font-size: 1.5em;
    width: 45px;
    height: 45px;
    margin-left: -22.5px;
    margin-top: -22.5px;
    line-height: 45px;
  }
}