/*
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;
}
*/

p.stb {
    text-indent: 1.5em;
    padding-bottom: 1em;
    text-align: justify;
    font-size: 1em;
    font-family: time-new-roman;
}



h1.title {
    font-weight: 700;
    font-size: 20px;
    padding-left: 1.5em;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: time-new-roman;
}


ul.square {
    list-style-type: square;
    margin-left: 1.5em;
    font-size: 1em;
    padding: 10px 0px;
    font-family: time-new-roman;
}

    ul.square li {
        font-family: time-new-roman;
    }

.text-danger span, .text-danger ul>li {
    color: red !important;
}
.swal2-html-container{
    display:flex !important;
}

.nice-select.swal2-select{
    display:none;
}

.swal2-container .nice-select:after {
    content: unset;
}

.pagination .page-link {
    position: unset !important;
}

#user-menu .dropdown-item:hover {
    background-color: lightcyan !important;
}
#user-menu .dropdown-item {
    background-color: transparent !important;
}
.shop__styleone #user-menu li:hover a {
    /*background-color: transparent !important;*/
}
.zalo-floating {
    position: fixed;
    right: 30px;
    bottom: 150px;
    width: 44px;
    height: 44px;
    z-index: 9999;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zalo-floating img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.zalo-floating:hover {
    transform: scale(1.1);
}
.zalo-tooltip {
    position: absolute;
    right: 50px;
    white-space: nowrap;
    background: #0084ff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.zalo-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0084ff;
}
.zalo-floating:hover .zalo-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}