/* Omeda Tag RMR */
.important-alert {
    color: #000;    
    border-radius: 0.25rem;
    width: 100%;
    margin: 0 auto 30px;
    padding: 1rem;
    font-family: sans-serif;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 0.5rem;
}

.blue{
    background: #dfe7f9;
    border: solid 2px #5a88fd;
}

.yellow{
    background: #fef9c3;
    border: solid 2px #facc15;
}

.yellow-icon{
    filter:invert(1);
}

/* Define styles for the alert header */
.alert-header {
    font-weight: 700;
    line-height: 1.2;
    margin-right: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

/* Define styles for the alert content */
.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 15px;
    font-weight: normal;
}

/* Define styles for the alert icon */
.alert-icon {
    width: 2rem;
    height: 2rem;
    display: inline-block;
}

/* Define styles for the alert title */
.alert-title {
    font-weight: 700;
    margin: 0 2rem 0 0.75rem;
    font-size: 15px;
    font-weight: 700;
}

/* Define styles for the alert link */
.alert-link {
    color: #0079c2;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 700;
}

.alert-link:hover {
    color: #eb6e1f;
    text-decoration: underline;
}

/* Define styles for the alert message */
.alert-message {
  margin: 0;
  font-size: 15px;
    font-weight: normal;
}

/* Define styles for the alert close button */
.alert-close {
    margin-left: auto;
    background-color: transparent;
    border: none;
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: normal;
}

.alert-close:hover {
  opacity: 0.8;
}

/* Define styles for the alert close icon */
.alert-close-icon {
    width: 1.75rem;
    height: 1.75rem;
    filter:invert(1);
    margin-left:1rem
}

/* Tablet Media Queries */
@media only screen and (max-width: 768px) {
    .important-alert{
      display: block;
      margin: 0 auto;
      padding: 1rem ;
    }
    .alert-header{
        display: block;
        padding: 1rem ;
    }
    .alert-title{
        margin: 0 2rem 0 0;
    }
    .alert-content{
        display: block;
        padding: 1rem ;
    }
    .alert-close{
        display: block;
        
    }
}
