html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.btn-shopee {
    color: #fff;
    background-color: #f53d2d;
    border-color: #f53d2d;
}

.btn-shopee:hover,
.btn-shopee:focus,
.btn-shopee:active {
    color: #fff;
    background-color: #d93627; 
    border-color: #d93627;
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #f53d2d;
}

.btn-tiktok {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}

.btn-tiktok:hover,
.btn-tiktok:focus,
.btn-tiktok:active {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #000000;
}

.qr-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    z-index: 3000;
}

.qr-close-btn:hover {
    background: rgba(255,255,255,0.2);
    /*transform: scale(1);*/
}

.qr-close-btn:active {
    transform: scale(0.95);
}

.list-styled li {
    list-style-type: disc;
}

#newPostText {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}