﻿/* Jurica's app pop-up css styles*/
*, *::before, *::after {
  box-sizing: border-box;
}

.r-m-banner {
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(90deg, #0b2c66 0%, #0d3f8a 55%, #1d56a6 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .r-m-banner {
    border-radius: 16px;
  }
}

.r-m-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
}
@media (min-width: 768px) {
  .r-m-inner {
    padding: 18px 20px;
    gap: 18px;
  }
}

.r-m-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  padding: 0;
  font-family: Arial, sans-serif;
}
@media (min-width: 768px) {
  .r-m-close {
    width: 16px;
    height: 16px;
    font-size: 11px;
    line-height: 16px;
    top: 5px;
    right: 5px;
  }
}

.r-m-icon {
  height: 52px;
  width: auto;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
  background: #0b2c66;
}
.r-m-icon > svg, .r-m-icon > img {
  display: block;
  height: 52px;
  width: auto;
}
@media (max-width: 480px) {
  .r-m-icon > svg, .r-m-icon > img {
    height: 44px;
  }
}
@media (max-width: 480px) {
  .r-m-icon {
    height: 44px;
  }
}
@media (min-width: 768px) {
  .r-m-icon {
    height: 68px;
    border-radius: 16px;
  }
  .r-m-icon > svg, .r-m-icon > img {
    height: 68px;
  }
}

.r-m-text {
  line-height: 1.25;
  flex: 1 1 auto;
  min-width: 0;
}

.r-m-title {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 4px;
}
.r-m-title strong {
  font-weight: 700;
}
@media (max-width: 480px) {
  .r-m-title {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .r-m-title {
    font-size: 23px;
    margin-bottom: 5px;
  }
}

.r-m-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.r-m-sub strong {
  color: #f4c400;
}
@media (max-width: 480px) {
  .r-m-sub {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .r-m-sub {
    font-size: 16px;
  }
}

.r-m-store-icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.r-m-btn {
  height: 38px;
  padding: 0 18px;
  border-radius: 10px;
  background: #f4c400;
  color: #1f2f46;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #d6a800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: Arial, sans-serif;
}
@media (min-width: 768px) {
  .r-m-btn {
    height: 48px;
    padding: 0 24px;
    font-size: 16px;
    border-radius: 12px;
  }
}
