.cm-notification-bar{
    position: absolute;
    top: 100px;
    width: 100vw;
    height: 40px;
    background-color: #295C32;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .cm-notification-bar-icon{
    width: 25px;
    height: 25px;
    background: url('../resources/bowl.svg') no-repeat center;
    background-size: contain;
  }
  
  .cm-notification-text {
    width: calc(70vw - 100px);
    margin: 0 20px;
    display: flex;
    align-items: center;
  }
  
  .cm-notification-text p{
    color: #FFF;
  }
  
  .cm-notification-close{
    width: 25px;
    height: 25px;
    background: no-repeat center;
    background-size: contain;
  }
  
  .cm-notification-bar *{
    opacity: 0.9;
    transition: all 0.25s;
  }
  
  .cm-notification-bar:hover  *{
    opacity: 1;
  }
  
  .cm-reveal-ui-container{
    overflow: hidden;
    position: absolute;
    top: 100px;
    width: 100vw;
    max-height: 0vh;
    background-color: #FFF;
    box-shadow: inset 0px 0px 8px 0px rgba(0,0,0,0.75);
    transition: max-height 0.25s;
  }
  
  .cm-reveal-ui-container-visible{
    max-height: 200vh!important;
  }
  
  .cm-reveal-ui-container-inner{
    width: 100%;
    display: flex;
    margin: 10px auto;
  }
  
  .cm-reveal-ui-content-container {
    margin-top: 50px;
    width: calc(100vw - 300px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  
  .cm-reveal-ui-button-container {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin-left: 40px;
    margin-top: 20px;
  }
  
  .cm-reveal-ui-button {
    width: 150px;
    height: 40px;
    background-color: #295C32;
    display: flex;
    align-items: center;
    border-radius: 100px;
    color: #FFF;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75); 
    transition: all 0.25s;
  }
  
  .cm-reveal-ui-button:hover {
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  }
  
  .cm-reveal-ui-button:active {
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75) ! important;
    background-color: #FFF;
    color: #000;
  }
  
  .cm-reveal-ui-button p{
    width: 100%;
    text-align: center;
  }
  
  .cm-reveal-more {
    background-color: #202B22;
  }
  
  .cm-reveal-ui-green-box{
    position: absolute;
    left: -40px;
    top: 30px;
    width: 200px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
    background-color: #1A391F;
  }
  
  .cm-reveal-ui-date {
    position: absolute;
    z-index: 1;
    left: 10px;
    top: 40px;
    color:#FFF;
  }
  
  .cm-reveal-ui-image {
    position: relative;
    z-index: 2;
    width: 250px;
    height: 250px;
    border-radius: 15px;
    margin-top: 50px;
    margin-left: 50px;
    background: no-repeat center;
    background-size: cover;
  }
  
  .cm-reveal-ui-title {
    margin-left: 40px;
    font-weight: 600;
    font-size: 2rem;
  }
  
  .cm-reveal-ui-content {
    width: 70%;
    margin-top: 20px;
    margin-left: 40px;
  }
  
  .cm-reveal-ui-close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
    transition: all 0.25s;
  }
  
  .cm-reveal-ui-close:hover {
    background-color: #F0F0F0;
  }
  
  .cm-reveal-ui-close:active {
    background-color: #AAA;
  }
  
  .cm-reveal-ui-close img{
    width: 10px;
    height: 10px;
    background-size: contain;
  }
  
  @media screen 
    and (min-width: 767px) 
    and (max-width: 1024px){
      .cm-reveal-ui-content p{
        font-size: 0.85rem;
      }
  }
  
  @media  screen 
    and (max-width: 767px) {
    
      .cm-reveal-ui-container-inner{
        display: block;
      }
      
      .cm-reveal-ui-image-container{
        position: absolute;
      }
      
      .cm-reveal-ui-content-container {
        margin-top: 15px;
        margin-bottom: 40px;
        width: 90vw;
      }
      
      .cm-reveal-ui-title{
        margin-bottom: 220px;
      }
      
      .cm-reveal-ui-image{
        position: absolute;
        margin-left: 40px;
        width: 200px;
        height: 200px;
      }
      
      .cm-reveal-ui-green-box{
        position: absolute;
        height: 100px;
        left: calc(100vw - 100px);
        top: 50px;
      }
      
      .cm-reveal-ui-date{
        position: absolute;
        left: calc(100vw - 90px);
        top: 70px;
        text-align: right;
        font-weight: 600;
      }
      
      .cm-reveal-ui-button-container{
        width: 100%;
      }
      
      .cm-reveal-ui-content{
        width: 100%;
      }
      
  }