/* Initial Root Element */
@font-face {
    font-family: helvetica;
    src: url("../../fonts/FreeSans.otf"); /* IE9 Compat Modes */
    src: url("../../fonts/FreeSans.otf") format("embedded-opentype"), /* IE6-IE8 */
         url("../../fonts/FreeSans.otf") format("woff"), /* Modern Browsers */
         url("../../fonts/FreeSans.otf") format("truetype"), /* Safari, Android, iOS */
         url("../../fonts/FreeSans.otf") format("svg"); /* Legacy iOS */
}
/* Base Root Element 10px => 1rem = 10px */
/* Ukuran Web 2/3 dari ukurang di Figma */
body, html {
    height: 100%;
    font-size: calc(2/3 * 10px);
    font-family: helvetica;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@media screen and (max-width: 450px) {
    body, html {
        font-size: 3.5;
    }
}

/* Bootstrap Custom */
.page-link.active {
    background-color: #EA1E37;
    border-color: #EA1E37;
}
.page-link {
    color: #111;
    font-weight: 700;
    border: none;
    background: #FAFAFA;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 2rem;
}
.page-link:hover {
    color: #111;
}

@media screen and (max-width: 450px) {
    .page-link {
        padding: 5px 10px;
        font-size: 2rem;
    }
}

/* End Bootstrap Custom */

/* Search */
.main-search {
    background: #F1F1F1;
    padding: 7rem 5rem;
}
.main-search p {
    font-size: 2rem;
    font-weight: 700;
}
#header-search-input {
    height: 5rem;
    font-size: 2.5rem;
    padding-left: 2rem;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
#header-search-input::placeholder {
    color: #C1C1C1;
}
#header-search-button {
    background: #EA1E37;
    width: 11rem;
    height: 5rem;
    font-size: 2rem;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}
#filter-search {
    font-size: 2rem;
    border-radius: 5px;
    padding: 0 0 0 1.5rem;
    border: none;
}
.content-search {
    padding: 7rem 5rem;
}
#search-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: black;
}
#search-detail {
    font-size: 2.5rem;
}
.card {
    border-radius: none;
    border: none;
    border-bottom: 2px solid #EA1E37;
}
.card-title {
    font-size: 2.5rem;
    color: #EA1E37;
    font-weight: 800;
}
.card-text {
    font-size: 2.5rem;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.card-publish {
    font-size: 2rem;
    color: #111;
}
/* End Search */