﻿ .sidepromo-container {
    position: fixed;
    z-index: 1300;
    top: 20%;
    background: transparent;
    clear: both;
    width: auto;
    height: auto;
  }

  .sidepromo-tab,
  .sidepromo-content {
    border-radius: 5px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .sidepromo-tab {
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: -34px;
    top: 20%;
    position: absolute;
    width: 34px;
    max-height: 244px;
    height: auto;
    cursor: pointer;
    border: 1px solid #00543d;
    border-right: 0;
    background-color: #c5edc8;
  }

    .sidepromo-tab i {
      color: #2e7032;
      padding: 10px;
    }

    .sidepromo-tab img {
      width: 34px;
      height: auto;
    }

  .sidepromo-content {
    overflow: hidden;
    border: 1px solid #00543d;
    border-right: 0;
    float: right;
    padding: 0;
    margin: 0;
    position: relative;
  }

    .sidepromo-content .sidepromo-img img {
      width: 100% !important;
      height: auto !important;
    }

    .sidepromo-content .fa-close {
      position: absolute;
      top: 5px;
      right: 5px;
      padding: 10px 15px;
    }

@media(max-width : 767px) {
    .sidepromo-container {
        display: none;
    }
}
  @media (min-width: 768px) and (max-width: 991px) {
     .sidepromo-container {
         top: 38%;
     }
}

[dir="rtl"] .sidepromo-tab {
    right: -34px;
    border-right: 1px solid #00543d !important;
    border-left: 0 !important;  
}
  
 [dir="rtl"] .sidepromo-tab, .sidepromo-content {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

 [dir="rtl"] .sidepromo-content .fa-close {
    left: 5px !important;
     right: auto !important;
	}
 
