html, body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}
body {
    font-family: Inter, -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Tahoma, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #3c3c3c;
    -webkit-font-smoothing: antialiased;
}
.red-clr {
    color: #ea1b25;
}
.btn-primary {
    background-color: #ea1b25;
    color: #fff;
}

/* Styles for the social media buttons */
.social-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.social-btns .btn {
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 30px;
}
.social-btns .btn i {
    margin-right: 10px;
}
header {
    width: 100%;
    background: #fff;
    z-index: 10;
    box-shadow: 0 8px 17px 0 rgb(0 0 0 / 16%);
}
header.stick {
    position: fixed;
    top: 0;
    left: 0;
}
header.sticky .topbar {
    height: 0;
    opacity: 0;
    visibility: hidden;
}
header .logo {
    margin: 26px 0;
}
header .logo img {
    max-width: 150px;
}
.bottom-bar p {
    color: #999;
    margin-bottom: 0;
    padding: 22px;
    font-weight: 700;
    font-size: 12px;
}
.dark-bg { background-color: #1b1b1b; }
.outlet-lncard-container {
    padding: 2rem 0;
    width: 100%;
    max-width: 600px;
    margin: auto;
    min-height: 600px;
    max-height: 600px;
}
.lncard {
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 1;
    transition: opacity 0.1s ease-in-out;
}
.lncard--status {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    z-index: 2;
    width: 100%;
    text-align: center;
    pointer-events: none;
}
.lncard--status i {
    font-size: 100px;
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.2s ease-in-out;
    position: absolute;
    width: 100px;
    margin-left: -50px;
}
.lncard_love .fa-heart {
    opacity: 0.7;
    transform: scale(1);
}
.lncard_nope .fa-remove {
    opacity: 0.7;
    transform: scale(1);
}
.lncard--cards {
    flex-grow: 1;
    padding-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
}
.lncard--card {
    display: inline-block;
    width: 90%;
    max-width: 400px;
    height: 70%;
    background: #fff;
    padding-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    will-change: transform;
    transition: all 0.3s ease-in-out;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}
.moving.lncard--card {
    transition: none;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}
.lncard--card img {
    max-width: 100%;
    pointer-events: none;
}
.lncard--card h3 {
    margin-top: 32px;
    font-size: 32px;
    padding: 0 16px;
    pointer-events: none;
}
.lncard--card p {
    margin-top: 24px;
    font-size: 20px;
    padding: 0 16px;
    pointer-events: none;
}
.lncard--buttons {
    flex: 0 0 100px;
    text-align: center;
    padding-top: 20px;
}
.lncard--buttons button, .lncard--buttons a {
    border-radius: 50%;
    line-height: 60px;
    width: 60px;
    border: 0;
    background: #fff;
    display: inline-block;
    margin: 0 8px;
}
.lncard--buttons button:focus,.lncard--buttons a:focus {
    outline: 0;
}
.lncard--buttons i {
    font-size: 32px;
    vertical-align: middle;
}
.fa-heart {
    color: #fface4;
}
.fa-remove {
    color: #cdd6dd;
}
.modal.modal-full .modal-dialog {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
}
.modal.modal-full .modal-content {
    height: 100% !important;
}
