/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 38:0 Unexpected "<"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
* {
  letter-spacing: normal !important;
}
.jdgm-widget.jdgm-widget {
    display: block;
    margin-top: 1%;
}

<style>
  /* Ensure the video container uses the 9:16 aspect ratio */
  .t4s-logo-item .t4s_ratio {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* This is 16:9 ratio, change it to 177.77% for 9:16 */
    height: 0;
    overflow: hidden;
  }

  /* Set the video element to fill the container */
  .t4s-logo-item .t4s_ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video scales properly */
  }
</style>

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  
}