.custom-left-right {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  background-color: #f0f0f0;
  border: 1px solid #89adc4;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25);
  padding: 15px;
  margin: 5px 15px 5px 5px;
  border-radius: 8px;
}

.custom-left {
  flex: 0 0 60%;
  box-sizing: border-box;
  overflow: hidden;
}

.custom-right {
  flex: 0 0 40%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.custom-right img {
  width: auto;
  max-width: 100%;
  height: 120px;
  border: 1px solid #89adc4;
  border-radius: 8px;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2),
              inset -4px -4px 8px rgba(255, 255, 255, 0.15);
  display: block;
  object-fit: contain;
}

.custom-bottom {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 15px;
  padding: 1px;
  box-sizing: border-box;
  display: block;
}

@media (max-width: 374px) {
  .custom-left-right {
    width: 97%;
    max-width: 97%;
    flex-direction: column;
    align-items: stretch;
  }

  .custom-left,
  .custom-right {
    flex: 0 0 auto;
    width: 100%;
    padding: 5px;
    overflow: hidden;
  }

  .custom-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .custom-right img {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .custom-right-tn img {
    height: auto;
    width: auto;
    max-width: 100px;
    object-fit: contain;
  }

  .custom-bottom {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 10px;
  }
}
