/* CSS Document */

.sld-btn {
	display: block;
	margin: 10px 10px;
	padding: 9px 22px 7px;
	clear: both;
	color: fff;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid #ffffff;
	border-radius: 5px;
	position: absolute;
	bottom: 0px;
	background-color:transparent;
}

@media only screen and (min-width: 280px) and (max-width: 759px) {

	.swap-message {
		width: 90%;
		/*background-color:rgba(0,66,128,0.67);*/
		margin-left: 10%;
		min-height: 100px;
	}
}

/* SLIDERS - 03/24/26 */ 
   .swap-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .slide-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    list-style: none;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .slide-container::-webkit-scrollbar {
    display: none;
  }

  .slide {
    position: relative;
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 500px;
    padding: 40px 60px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08));
  }

  .swap-message {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: right;
    text-align: center;
    width: 320px;
    max-width: 100%;
    padding: 30px 25px;
    border-radius: 12px;
	color: #fff;
  }

  .swap-message img {
  }

  .swap-message .btn {
	color: #fff;
  }

  .slider-arrow,
  .slider-pause {
    position: absolute;
    z-index: 2;
    border: 0;
    color: #fff;
    cursor: pointer;
  }

  .slider-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    font-size: 24px;
    line-height: 1;
  }

  .slider-arrow--prev {
    left: 15px;
  }

  .slider-arrow--next {
    right: 15px;
  }

  .slider-pause {
    left: 15px;
    bottom: 15px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 1;
  }

  @media (max-width: 768px) {
    .slide {
      justify-content: center;
      min-height: 380px;
      padding: 30px 20px;
    }

    .swap-message {
      width: 100%;
      max-width: 280px;
      padding: 24px 20px;
    }

    .swap-message img {
      max-width: 180px;
    }

    .slider-arrow {
      width: 38px;
      height: 38px;
      font-size: 20px;
    }

    .slider-pause {
      left: 12px;
      bottom: 12px;
      padding: 9px 14px;
      font-size: 13px;
    }
  }

