body {
    background-color: #f8f8f8; /* Color for the area outside the padding */
    margin: 0;
    padding-bottom: 100px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rss-container {
    display: flex;
    align-items: center;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 20px;
}

h2 {
    color: #404040;
}

h3 {
    color: #404040;
}

p {
    color: #404040;
}

.event-image {
    border-radius: 50%; /* Makes it circular */
    object-fit: cover; /* Ensures the image fits within the dimensions */
    overflow: hidden; /* Hides any overflow content */
    display: block; /* Ensures proper alignment */
}

.cut-site-representation {
    display: flex;
    flex-direction: column; /* Stack the original and complementary strands */
    font-family: monospace; /* Use monospace font for better representation */
}

.cut-site-before,
.cut-site-after,
.cut-site-complementary-before,
.cut-site-complementary-after {
    color: black; /* Regular color for the sequence */
}

.cut-site-cutter,
.cut-site-cutter-complementary {
    color: red; /* Color to represent the cut */
    font-weight: bold; /* Make it stand out */
    margin: 0 5px; /* Space around the cut symbol */
}

/* Optional: Style complementary strands differently */
.cut-site-complementary-before,
.cut-site-complementary-after {
}


/* Modal container styling */
  .-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }

  /* Modal content box */
  .-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  /* Close button styling */
  .-close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  /* PDF iframe styling */
  .-pdf-viewer {
    width: 100%;
    height: 500px;
    border: none;
  }

  /* Action buttons styling */
  .-modal-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .-modal-actions a, .-modal-actions button {
    padding: 4px 6px;
    font-size: 16px;
    border: none;
    background-color: #262626;
    color: white;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
  }

  .-modal-actions a:hover, .modal-actions button:hover {
    background-color: #262626;
  }

.protocol-page {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .a-z-list {
            width: 25%;
            padding: 20px;
        }

        .a-z-list ul {
            list-style-type: none;
            padding: 0;
        }

        .a-z-list li {
            margin-bottom: 10px;
        }

        .a-z-list li a {
            text-decoration: none;
            color: #404040;
        }

        .protocol-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 75%;
            padding: 20px;
        }

.protocol-card h4 {
            margin-top: 0;
        }

        .protocol-card .button {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 12px;
            text-decoration: none;
            color: white;
            background-color: #404040;
            border-radius: 4px;
        }

        .protocol-card .button:hover {
            background-color: #333333;
        }

.protocol-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Protocol Card Style */
.protocol-card {
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    justify-content: space-between; /* Space items to push button to the bottom */
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s;
}

.protocol-card h2 {
    font-size: 1.5rem;
    color: #404040;
    margin-bottom: 10px;
}

.protocol-card p {
    color: #6c757d;
    font-size: 0.9rem;
}

.protocol-card a {
    font-weight: normal;
    font-size: 0.9rem;
}

.protocol-card:hover {
    transform: translateY(-1px);
}

.rss-image {
    margin-right: 10px; /* Adjust space between image and RSS feed */
}

.bold {
    font-weight: bold;
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 90%;
    margin: 50px auto;
}

.container-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 90%;
    margin: 50px auto;
}

.container-2 {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    max-width: 90%;
    margin: 50px auto;
}

.box {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    color: #404040;
}

.large-box {
    grid-row: span 3;
}

.medium-box {
    grid-column: span 2;
}


.box h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.small-box h2 {
    position: absolute; /* Overlay the text */
    top: 1%; /* Adjust the vertical position */
    left: 50%; /* Adjust the horizontal position */
    transform: translate(-50%, -50%); /* Center the text */
    color: whitesmoke; /* Set text color (adjust as needed) */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Add a semi-transparent background */
    padding: 10px; /* Optional: Add some padding for readability */
    padding-left: 25px;
    text-align: left; /* Center the text */
    width: 100%; /* Make sure the text stays centered within the container */
}

.small-box1 h2 {
    color: whitesmoke; /* Set text color (adjust as needed) */
    background-color: rgba(0, 0, 0, 0.7); /* Optional: Add a semi-transparent background */
    padding: 8px; /* Optional: Add some padding for readability */
    text-align: left; /* Center the text */
    width: 100%; /* Make sure the text stays centered within the container */
    margin-bottom: 0px;
    margin-top: 1px;
}

.small-box2 {
    background-color: black;
}

.box p {
    font-size: 0.9rem;
}

.large-box h2 {
    font-size: 1.5rem;
}

.large-box p {
    font-size: 1rem;
}

.content-wrapper {
    background-color: white;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    box-sizing: border-box;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0px 1px 1px #d9d9d9;
    border-radius: 5px;
}

.outer-content-wrapper {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    box-sizing: border-box;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: #404040;
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 24px;
    font-weight: bold;
}

.banner-title {
    display: flex;
    align-items: center;
}

.banner-title img {
    margin-right: 20px;
}

.banner-title a {
    text-decoration: none;
    color: #404040;
}

.strap {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 5px;
    text-align: left;
    font-size: 16px;
    color: #404040;
    width: 100%;
    font-size: 11px;
    box-sizing: border-box;
    border-left: 0.5px solid #dfdfdf;
    border-right: 0.5px solid #dfdfdf;
    border-bottom: 0.5px solid #c2c2c2;
    box-shadow: 0px 0.5px 0.5px #d9d9d9;
    border-radius: 5px;
    }

.strap a {
    text-decoration: none;
    color: #808080;
}

.strap a:first-child {
    margin-left: 10px;
    margin-right: 6px;
}

.ICR-logo {
    padding-top: 3px;
}

.box-table-container {
    display: flex;
    padding: 0 100px 100px 100px;
}

.box-container {
    align-content: top;
    justify-items: center;
    padding-top: 20px;
}

.box-container-buttons-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
}

.box-container-buttons-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 5px;
}

.table-container2 {
    padding-left: 30px;
    width: 100%;
}

.dataTables_filter input {
    font-size: 16px;
}

.calendar-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-55%);
    padding-right: 10px;
    width: 24px; /* Adjust size if needed */
    height: 24px;
}

.calendar-popup {
    display: none; /* Hidden by default */
    position: absolute;
    right: 10px;
    top: 35px;
    width: 200px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 10;
    border-radius: 5px;
}

.calendar-popup ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.calendar-popup ul li {
    margin-bottom: 10px;
}

.calendar-popup ul li img {
    width: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

.calendar-popup ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.calendar-popup ul li a:hover {
    color: #000;
}

.calendar-icon {
    width: 24px;
    cursor: pointer;
}

/* Title for the popup */
.popup-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}




.nav-links {
    display: flex;
    align-items: baseline;
    gap: 20px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #404040;
    font-size: 18px;
    font-weight: normal;
}

.dropdown-parent {
    position: relative;
}

.dropdown-parent a {
    display: flex;
    align-items: center;
}

.dropdown-parent a span {
    margin-left: 5px;
    font-size: 20px;
    position: relative;
    top: -5px;
}

.dropdown {
    position: absolute;
    display: none;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    white-space: nowrap;
}

.dropdown a {
    display: block;
    padding: 15px;
    color: #404040;
    text-decoration: none;
    font-size: 16px;
}

.dropdown a:hover {
    background-color: #ddd;
}

.dropdown-parent:hover .dropdown {
    display: block;
}

.content-block {
    display: flex;
    background-color: white;
    overflow: hidden;
    padding: 0 100px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.text-container {
    padding: 20px;
    flex: 1;
}

.text-container h1 {
    margin-top: 0;
    color: #404040;
}

.text-container p {
    margin-bottom: 0;
    color: #404040;
}

iframe {
    overflow: hidden; /* Ensure no scrolling within the iframe */
  }


.calendar-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.parent-container {
    display: flex;
    flex-direction: row;
    align-items: center; /* Optional: Centers the content horizontally */
    width: 100%;
}

.main-container, #calendar-container {
    width: 100%; /* Adjust the width if necessary */
    margin-bottom: 20px; /* Adds space between the two containers */
}

#events {
    height: 368px; /* Set to the height of 3 events */
    overflow-y: auto;  /* Enable vertical scrolling */
    border: 1px solid #f4f4f4; /* Optional: Add a border for visibility */
}

#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 999; /* Ensure it's on top */
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    position: relative;
    z-index: 1000; /* Keep above the overlay */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.twitter-timeline {
    height: 400px;
    overflow-y: scroll;
}

.event-button {
    padding-left: 10px; /* Adjust padding as needed */
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #464EB8; /* Change to desired color */
    color: white; /* Change text color if needed */
    border: none; /* Remove default border */
    border-radius: 5px; /* Add rounded corners if desired */
    cursor: pointer; /* Change cursor to pointer */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    margin-right: 20px;
}

.event-button:hover {
    background-color: #3b3f8e; /* Optional: darken the color on hover */
}


.event-item {
        display: flex;
        align-items: center; /* Vertically center the content */
        padding: 5px 0; /* Adjusted padding to prevent too much space */
        border-bottom: 1px solid #f4f4f4;
    }

    .event-image {
        width: 80px;  /* Keep the circle size */
        height: 80px;
        margin-right: 5px; /* Space between image and text */
    }

    .event-details {
        flex-grow: 1; /* Allows the details section to take up remaining space */
        line-height: 1.2; /* Adjust line height to reduce space between title and date */
    }

    .event-title, .event-time {
        font-size: 14px; /* Adjust font size slightly for better fit */
        margin: 0; /* Remove extra margins */
    }

    .event-details p {
    margin: 4px 0; /* Adjust this value as needed */
}

.event-details h3.event-title {
    margin-bottom: 8px; /* Adjust this value as needed */
}

    .event-title {
        font-size: 18px;
        font-weight: bold;
    }

    .event-time, .event-location, .event-description {
        font-size: 14px;
        margin-top: 5px;
    }

    #time-container {
    display: flex;               /* Use flexbox for layout */
    justify-content: flex-start; /* Align items to the left */
    align-items: center;         /* Center items vertically */
    padding-left: 0;            /* No padding on the left */
}

#time-container p {
    margin: 0;                  /* Remove default margin */
    padding: 0;                 /* Remove padding */
    margin-right: 20px;         /* Add space between items */
}

/* Optional: If you want to ensure the last item doesn't have a right margin */
#time-container p:last-child {
    margin-right: 0;            /* Remove right margin for the last item */
}




.main-title-container {
    display: flex;
    justify-content: center;
    align-items: left;
    margin-top: 30px;
}



.main-title {
    text-align: center;
    margin: 60px 0px 0px 0px;
    font-size: 24px;
    font-weight: bold;
    color: #404040;
}

.main-title img {
    margin-right: 20px;
    width: 100px;
    height: 100px;
}

.button {
    padding: 10px;
    background-color: #bfbfbf;
    border: 1.5px solid #595959;
    border-radius: 3px;
    cursor: pointer;
    color: #404040;
    font-weight: bold;
    text-decoration: none;
}

.selected-button {
    background-color: #808080 !important;
}

.button:hover {
    background-color: #808080;
}

.spacer,
.spacer2 {
    height: 20px;
}

.spacer3 {
    height: 30px;
}

.main-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 20px;
    flex-wrap: wrap;
    padding-bottom: 100px;
}

.main-links div {
    text-align: center;
}

.main-links a {
    text-decoration: none;
    color: #404040;
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.main-image {
    display: block;
    margin: 0 auto;
}

.dashboard-image {
    width: 100%; /* Make the image fill the width of the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
}

.crop-container {
    width: 300px; /* Desired width */
    height: 200px; /* Desired height */
    overflow: hidden; /* Hide overflow outside the container */
}

.table-container {
    padding: 0 100px 50px 100px;
}

.child-row {
    background-color: #f9f9f9;
}

.child-row td {
    padding: 5px 10px;
}

.data-table a,
.data-table a:visited,
.data-table a:hover {
    color: blue;
    text-decoration: none;
}

.styled-button {
    background-color: #262626;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.styled-button a {
    color: white;
    text-decoration: none;
}

#rss-ticker {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    border-top: 10px solid #f0f0f0;
    border-bottom: 10px solid #f0f0f0;
    white-space: nowrap;
    width: 100%;
    box-shadow: 0 0.2px 1px 1px #d6d6d6;
}

.rss-content {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    animation: ticker 150s linear infinite;
}

.rss-item {
    display: inline-block;
    padding: 0 1rem;
    text-decoration: none;
    color: #404040;
    white-space: nowrap;
    margin-right: 2rem;
}

.rss-item.bold {
    font-weight: bold;
}

@keyframes ticker {
    0% {
        transform: translateX(0%);
        left: 100%;
    }
    100% {
        transform: translateX(-800%);
        left: -100%;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(10, 40px);
    grid-template-rows: repeat(10, 40px);
    gap: 0px;
    width: 400px;
    height: 400px;
    outline: 1px solid #595959;
    box-sizing: border-box;
}

.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #595959;
    font-family: Arial, sans-serif;
    position: relative;
    pointer-events: none;
}

.grid-item.has-grey-circle {
    pointer-events: auto;
}

.grey-circle,
.transparent-circle,
.new-circle {
    display: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    position: absolute;
}

.grey-circle {
    background-color: #bfbfbf;
    z-index: 1;
}

.transparent-circle {
    background-color: rgba(0, 0, 0, 0);
    z-index: 4;
    cursor: pointer;
}

.new-circle {
    background-color: #808080;
    z-index: 2;
}

.grid-item span {
    position: relative;
    z-index: 3;
}

@media (max-width: 1000px) {
    .banner {
        flex-direction: row;
        align-items: center;
    }

    .box-table-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px 50px 10px;
    }

    .button:hover {
    background-color: #bfbfbf;
    }

    .box-container {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        padding-top: 30px;
    }

    .box-container-buttons-1, .box-container-buttons-2 {
        display: flex;
        flex-direction: row;
    }

    .image-container {
        width: 57%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .table-container {
        padding: 30px 50px 50px 50px;
    }

    .table-container2 {
        width: 600px;
        display: flex;
        padding: 0;
        padding-top: 50px;
        justify-content: center;
    }

    .dataTables-wrapper {
        width: 600px;
    }

    .main-links {
        gap: 20px;
        padding-bottom: 100px;
    }

    .main-title {
        font-size: 28px;
    }

    .styled-button {
        display: inline-block;
        margin: 10px auto;
        width: 100%;
        text-decoration: none;
    }

    .spacer {
        height: 0;
    }

    .text-container {
        text-align: left;
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
    }

    .text-container h1 {
        font-size: 24px;
        color: #404040;
    }

    .grid-container {
        grid-template-columns: repeat(10, 40px);
        grid-template-rows: repeat(10, 40px);
        width: 400px;
        height: 400px;
    }

    .grey-circle,
    .transparent-circle,
    .new-circle {
        width: 30px;
        height: 30px;
    }

    .rss-item {
        font-size: 12px;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0%);
            left: 100%;
        }
        100% {
            transform: translateX(-2000%);
            left: -100%;
        }
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 30px;
    }

    .banner {
        flex-direction: row;
        align-items: center;
    }

    .box-table-container {
        flex-direction: column;
        align-items: center;
        padding: 0 10px 50px 10px;
    }

    .box-container {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        padding-top: 30px;
    }

    .box-container-buttons-1, .box-container-buttons-2 {
        display: flex;
        flex-direction: row;
    }

    .image-container {
        width: 100%;
    }

    .container-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 90%;
    margin: 50px auto;
}

    .content-block {
        flex-direction: column;
        padding: 10px;
        align-items: center;
    }

    .table-container {
        padding: 30px 10px 50px 10px;
    }

    .table-container2 {
        width: 600px;
        display: flex;
        padding: 0;
        padding-top: 50px;
        justify-content: center;
    }

    .dataTables-wrapper {
        width: 600px;
    }

    .main-links {
        gap: 20px;
        padding-bottom: 50px;
    }

    .main-title {
        font-size: 28px;
    }

    .styled-button {
        display: inline-block;
        margin: 10px auto;
        width: 100%;
        text-decoration: none;
    }

    .spacer {
        height: 0;
    }

    .protocol-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            width: 75%;
            padding: 20px;
        }

    .text-container {
        text-align: center;
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
    }

    .grid-container {
        grid-template-columns: repeat(10, 40px);
        grid-template-rows: repeat(10, 40px);
        width: 400px;
        height: 400px;
    }

    .grey-circle,
    .transparent-circle,
    .new-circle {
        width: 30px;
        height: 30px;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0%);
            left: 100%;
        }
        100% {
            transform: translateX(-2000%);
            left: -100%;
        }
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 10px;
        font-size: 20px;
    }

    .box-table-container {
        padding-bottom: 30px;
    }

    .box-container-buttons-1, .box-container-buttons-2 {
        display: flex;
        flex-direction: row;
    }

    .image-container {
        width: 100%;
    }

    .protocol-cards {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            width: 75%;
            padding: 20px;
        }

    .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    max-width: 90%;
    margin: 50px auto;
}

.container-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    max-width: 90%;
    margin: 50px auto;
}

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .main-title {
        font-size: 24px;
    }

    .main-links {
        gap: 20px;
    }

    .main-links img {
        width: 70%;
        height: auto;
    }

    .main-links a {
        font-size: 18px;
    }

    .table-container {
        padding: 0 10px 30px 10px;
    }

    .text-container h1 {
        font-size: 24px;
        color: #404040;
    }

    .table-container2 {
        width: 400px;
    }

    .dataTables-wrapper {
        width: 400px;
    }

    .hide-on-small {
        display: none;
    }

    .rss-item {
        font-size: 12px;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0%);
            left: 100%;
        }
        100% {
            transform: translateX(-3500%);
            left: -100%;
        }
    }
}
