
#mainContent {
    width: 100%;
    /*height: 70%;*/
    /*position: absolute;*/
    /*left: 0px;
    top: 20%;*/
    background: rgb(118,117,126);
    background: linear-gradient(90deg, rgba(118,117,126,1) 0%, rgba(87,87,87,1) 0%, rgba(255,255,255,1) 100%) !important;
    margin-left: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#contentTable {
    width: 100%;
    height: 100%;
    border: 1px solid #000;
}

#logoContainer {
    background-color: #fff;
    width: 100%;
    height: 200px;
    /*position: absolute;
    left: 0px;
    top: 0px;*/
}

.rowContent {
    margin-top: 10px;
    margin-bottom: 10px;
}

.buble {
    background-color: #ce0b0b; 
    max-width: 400px; 
    width: 60%; 
    height: 100px; 
    border-radius: 30px;
    text-align: center !important;
    display : flex;
    z-index: 2;
}

.bubleLeft {
    margin-left: -10px;
}

.bubleText {
    color:#fff;
    font-weight: bold;
}

.circle {
    border-radius: 50%;
    background-color: #fff;
    height: 110px;
    width: 110px;
    display: flex;
    z-index: 3;
}

@keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }


  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes showCircleAn {
    0% {
        transform: scale(0%);
    }
    100% {
        transform: scale(100%);
    }
  }
  
  .bubleLeftAnim {  
    animation: 1s ease-out 0s 1 slideInFromLeft;
  }

  .bubleRightAnim {
    animation: 1s ease-out 0s 1 slideInFromRight;
  }

  .circleAnim {
    animation: 1s ease-out 0s 1 showCircleAn;
  }

  .sliderPic {
    display: flex;
  }

  .sliderPic img {
    width: 100%;
  }

  .eclipse-paging {
      display: none !important;
  }