@CHARSET "UTF-8";
/*
 * ------------------------------------------------------------------------------------------------
 * Main Layout
 * ------------------------------------------------------------------------------------------------
 */
:root {
    --site-width: 1300px;
    --site-min-width: 600px;
}

/* Main Layout - Footer at bottom */
body {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;

    min-height: 100vh;
    width: 100vw;
    min-width: var(--site-min-width);

    margin: 0;
    padding: 0;

    background-color: #000;
}

.site-container {
    background-color: #fff;

    padding: 0 2vw;

    width: 100%;
    max-width: var(--site-width);
    min-width: var(--site-min-width);

    min-height: 100vh;
}

.site-footer {
    min-height: 5px;
}

.site-body {
    flex: 1;
    width: 100%;

    background-color: #fff;
    padding-top: 1rem;
}

/*
 * ------------------------------------------------------------------------------------------------
 * Overlay
 * ------------------------------------------------------------------------------------------------
 */
.warning-overlay {
    display: none;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.85);
}

.warning-message-window {
    /* Center vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 50%;
    background-color: #661b1b;
    
    font-family: EuroSitle, Arial, sans-serif;
    font-size: 1.4rem;
    color: #fff;

    text-align: justify;
    padding: 1rem;
}

.button-access-granted {
    display: inline-block;
    block-size: fit-content;

    border: 1px solid #fff;
    width: fit-content;

    padding: 0.5rem;
    margin-right: 1.5rem;
}

.button-close-website {
    display: inline-block;

    width: fit-content;
    block-size: fit-content;

    padding: 0.5rem;

    border: 1px solid #fff;
}

.button-access-granted:hover {
    cursor: pointer;
}

.button-close-website:hover {
    cursor: pointer;
}

/*
 * ------------------------------------------------------------------------------------------------
 * Header
 * ------------------------------------------------------------------------------------------------
 */
header.site-header {
    width: 100%;
    height: fit-content;

    background-image: url("../content/images/header.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

div.header-top-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;

    padding: 0.5rem;

    background: rgba(0, 0, 0, 50%);
}

div.header-top-search {
    font-family: EuroSitle, Arial, sans-serif;
    font-size: clamp(1.5rem, 0.5vw, 2.5rem);
    font-weight: bold;
    color: #ffffff;

    width: 35%;
    min-width: 25rem;
}

input[name="search_review"] {
    width: 65%;
    min-width: 10rem;

    color: #000;

    padding: 0.25rem;

    border: 1px solid #777;
    background-color: #fff;
}

input[name="search_button"] {
    color: #000000;

    padding: 0.25rem 1rem;

    border: 1px solid #777;
    background-color: #fff;
}

div.header-top-social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;

    width: 65%;
    padding-right: 2rem;
}

div.header-top-social {
    height: 100%;
}

div.header-top-social > div {
    margin-left: 10px;
}

div.header-top-social > div > a > img {
    border-radius: 50%;
}
.face-logo {
    max-height: 39px;
    margin-bottom: 2px;
}

.x-logo {
    max-height: 43px;
}

div.header-middle-container {
    position: relative;

    width: 100%;
    min-height: 270px;
}

div.header-middle-title {
    position: absolute;
    top: 90px;
    left: 30px;

    font-family: EuroSitle, Arial, sans-serif;
    font-weight: bold;
    color: #fff;
    font-size: clamp(3.5rem, 1vw, 5.5rem);
    text-shadow: 0 0 1rem rgba(0, 0, 0, 75%),
    -0.25rem 0 1rem rgba(0, 0, 0, 75%),
    0.25rem 0 1rem rgba(0, 0, 0, 75%),
    0 0.25rem 1rem rgba(0, 0, 0, 75%),
    0 -0.25rem 1rem rgba(0, 0, 0, 75%);
}

div.header-middle-title > div:first-child {
    font-weight: normal;
    font-size: calc(0.8rem + (18 - 12) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
}

div.header-middle-image-description {
    position: absolute;
    bottom: 15px;
    right: 20px;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: calc(0.6rem + (18 - 12) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    color: #000000;
}

div.bottom-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;

    font-family: AntennaMedium, Arial, sans-serif;
    font-size: 1.2rem;

    color: #ffffff;

    background: rgba(255, 255, 255, 75%);
}

div.bottom-container-home {
    display: table;
    font-size: 1.25rem;
    padding: 0.5rem 0.75rem;
    background-color: #3a768f;
}

div.bottom-container-home > div {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

div.bottom-container-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;

    padding-top: 0.2rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

div.bottom-tags-items {
    background-color: #000000;

    padding: 0.25rem 0.5rem;
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
}

/*
 * ------------------------------------------------------------------------------------------------
 * Spoiler flags
 * ------------------------------------------------------------------------------------------------
 */
.flag-red {
    color: #fff;
    background-color: #e72b2b;
}

.flag-yellow {
    color: #333;
    background-color: #efb447;
}

.flag-green {
    color: #fff;
    background-color: #56a156;
}

.flag-blue {
    color: #fff;
    background-color: #1462bd;
}

/*
 * ------------------------------------------------------------------------------------------------
 * Body containers
 * ------------------------------------------------------------------------------------------------
 */
section.one-col-container {

}

section.two-col-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: center;

    width: 100%;
    height: 100%;

    padding: 0;
    margin-bottom: 2vh;
}

aside.page-index-col-1 {
    width: 20%;

    padding: 0.75rem;

    background-color: #3a768f;
}

section.page-index-col-2 {
    width: 80%;
}

/*
 * ------------------------------------------------------------------------------------------------
 * Featured reviews
 * ------------------------------------------------------------------------------------------------
 */
section.featured-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: center;
    column-gap: 1%;

    width: 100%;
    padding: 0 1%;
    height: 100%;

    margin-bottom: 2vh;
}

div.featured-item-container {
    position: relative;
}

div.featured-item-top {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: center;

    font-family: AntennaMedium, Arial, sans-serif;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;

    width: 100%;
    height: fit-content;
    min-height: 2.4rem;
}

div.featured-spoiler {
    font-family: EuroSitle, Arial, sans-serif;
    font-size: clamp(1.2rem, 1vw, 1.8rem);
    font-weight: bold;

    padding: 0.25rem 0.3rem 0.25rem 0.25rem;
    margin-top: 1px;
    margin-bottom: 1px;

    border-radius: 0.15rem;
    text-align: center;
}

div.featured-tag {
    font-family: EuroSitle, Arial, sans-serif;
    font-size: clamp(1.2rem, 1vw, 1.8rem);
    font-weight: bold;

    color: #000000;

    padding: 0.25rem;
    margin-left: 0.5rem;
    margin-top: 1px;
    margin-bottom: 1px;

    border-radius: 0.15rem;
    background: rgba(255, 255, 255, 0.85);
}

div.featured-item-bottom {
    position: absolute;
    bottom: 3px;
    left: 0;

    width: 100%;
    height: fit-content;

    padding: 0.5rem;

    font-family: AntennaMedium, Arial, sans-serif;
    color: #ffffff;

    background: rgba(0, 0, 0, 0.5);
}

div.featured-review-title {
    font-size: clamp(1rem, 2vw, 1.4rem);

    width: 100%;
}

div.featured-review-description {
    font-size: clamp(0.75rem, 2vw, 1.1rem);

    width: 100%;
}

div.featured-review-description > h2 {
    width: 100%;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

div.featured-author {
    font-size: clamp(0.7rem, 2vw, 0.9rem);

    width: 100%;
}

/*
 * ------------------------------------------------------------------------------------------------
 * Left blocks
 * ------------------------------------------------------------------------------------------------
 */
nav.left-block-container {
    margin-bottom: 1.25rem;
}

div.left-block-title {
    font-family: AntennaMedium, Arial, sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    color: #fff;

    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #fff;
    margin-bottom: 0.3rem;
}

div.left-block-title > h1 {
    padding-left: 0.5rem;
}

div.left-block-content {

}

div.left-block-content-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;

    width: 100%;

    padding: 0.5rem 0;
}

div.left-block-row-count {
    width: fit-content;
    height: 100%;

    font-family: AntennaMedium, Arial, sans-serif;
    font-size: calc(0.8rem + (20 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    text-align: center;

    border-radius: 0.4rem;
    padding: 0.75rem 0.5rem;

    color: #fff;
    background-color: #333333;
}

div.left-block-row-text {
    width: fit-content;
    height: 100%;

    font-family: AntennaMedium, Arial, sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: #fff;

    padding: 0.5rem;
}

div.left-block-row-list {
    width: fit-content;
    height: 100%;

    padding: 0 0.5rem;
    margin-bottom: 0.25rem;

    font-family: AntennaMedium, Arial, sans-serif;
    font-size: calc(0.8rem + (20 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    color: #fff;
}

span.left-block-row-list {
    font-size: calc(0.6rem + (20 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    font-weight: normal;
}

/*
 * ------------------------------------------------------------------------------------------------
 * Right blocks - Reviews List
 * ------------------------------------------------------------------------------------------------
 */
section.right-block-container {
    width: 100%;

    padding: 0 1rem;
    margin-bottom: 2vh;
}

div.right-block-title {
    font-family: AntennaMedium, Arial, sans-serif;
    font-size: clamp(1rem, 3vw, 1.6rem);
    color: #000000;

    width: 100%;

    padding: 0.5rem 0;
}

span.review-block-title {
    font-size: 1.0rem;
}

div.right-block-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;

    width: 100%;
}

div.block-content-item-tag {
    padding: 0.25rem 0.5rem;
    margin-right: 0.2rem;
    margin-top: 0.2rem;

    width: fit-content;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: calc(1rem + (26 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    font-weight: bold;

    color: #ffffff;
    background-color: #000000;

    border-right: 1px;
}

div.right-block-content-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;

    width: 50%;

    @media (max-width: 800px) {
        width: 100%;
    }

    padding: 0.35rem 0.25rem;

    background-color: #dddddd;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

div.block-content-item-right {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30%;
    height: 100%;
    min-width: 50px;
}

div.block-content-item-left {
    width: 70%;

    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

div.block-content-item-left-row-tags {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;

    width: 100%;

    margin: 0.5rem 0;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.4rem);
}

div.block-content-item-left-row-tags > div:first-child {
    width: fit-content;

    padding: 0.25rem;
    margin-bottom: 0.1rem;
    margin-right: 0.25rem;

    border-radius: 0.25rem;
}

div.block-content-item-left-row-tags > div:not(:first-child) {
    width: fit-content;

    padding: 0.25rem;
    margin-bottom: 0.1rem;
    margin-right: 0.25rem;

    color: #ffffff;

    border-radius: 0.25rem;
    background-color: #555555;
}

div.block-content-item-left-row-title {
    width: 100%;

    font-family: AntennaMedium, Arial, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: bold;

    margin-bottom: 0.35rem;
}

div.block-content-item-left-row-description {
    width: 100%;

    margin-bottom: 0.25rem;
    min-height: 2.4rem;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
}

div.block-content-item-left-row-author {
    width: 100%;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

/*
 * ------------------------------------------------------------------------------------------------
 * Navigation
 * ------------------------------------------------------------------------------------------------
 */
.section-navigation {
    margin-top: 1rem;
}

.section-navigation > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    align-content: center;
}

.navigation-items-container {
    display: inline-block;
    font-family: EuroSitle, Arial, sans-serif;
    color: #fff;

    padding: 0.5rem;
    margin: 0.25rem 0.25rem 0.25rem 0;

    background-color: #000;
    border-radius: 0.25rem;
}

.navigation-items-container > div > a {
    text-decoration: none;
}

.navigation-current {
    font-weight: bold;
    color: #000000;

    background-color: #cccccc;
}

/*
 * ------------------------------------------------------------------------------------------------
 * Review
 * ------------------------------------------------------------------------------------------------
 */
article.review-container {
    width: 100%;
    height: fit-content;
}

div.review-header {
    width: 100%;
    height: fit-content;

    margin-bottom: 1rem;
}

div.review-tags {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;

    width: 100%;
    height: fit-content;

    margin-bottom: 1rem;

    font-family: EuroSitle, Arial, sans-serif;
}

div.review-tags > div {
    padding: 0.25rem 0.5rem;
    margin-right: 0.2rem;
    margin-top: 0.2rem;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: calc(0.6rem + (26 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    font-weight: bold;
    width: fit-content;
    color: #ffffff;

    background-color: #000000;
    border-right: 1px;
}

div.review-title {
    margin-bottom: 1rem;
}

div.review-title > h1 {
    width: 100%;
    height: fit-content;

    font-family: AntennaMedium, Arial, sans-serif;
    font-size: calc(1.2rem + (26 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    font-weight: bold;
    color: #000000;
}

div.review-title > h2 {
    width: 100%;
    height: fit-content;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: calc(0.85rem + (22 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    color: #000000;
}

img.emoji-image {
    max-width: 1rem;
    width: 100%;
    border-radius: 50%;
}

a.review-link {
    text-decoration: underline;
}

div.review-spoilers {
    font-family: EuroSitle, Arial, sans-serif;
    font-size: calc(0.6rem + (22 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    font-weight: bold;

    width: fit-content;
    height: fit-content;

    margin-bottom: 1rem;

    padding: 0.35rem 0.5rem;
    border-radius: 0.3rem;
}

div.review-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;

    width: 100%;
    height: fit-content;
}

div.review-author-image {
    width: 9%;

    margin-right: 0.75rem;
}

div.review-author-image > img {
    border-radius: 50%;
}

div.review-author-name {
    width: fit-content;
    height: fit-content;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: calc(0.75rem + (22 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
}

div.review-text {
    font-family: EuroSitle, Arial, sans-serif;
    text-align: justify;
    font-size: calc(1rem + (22 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    line-height: calc(1rem + (22 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)) + 2px);

    width: 100%;
    height: fit-content;

    margin-bottom: 1rem;
}

div.review-on-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;

    width: 100%;

    margin: 1rem 0;

    font-family: EuroSitle, Arial, sans-serif;
    font-size: calc(0.6rem + (22 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    font-weight: bold;
}

div.review-on-facebook > img {
    width: 100%;
    max-width: 26px;
    border-radius: 50%;
}

div.review-on-x {
    margin-left: 1rem;
}

div.review-on-x > img {
    width: 100%;
    max-width: 26px;
    border-radius: 50%;
}

span.review-bold {
    font-weight: bold;
}

span.review-italic {
    font-style: italic;
}

div.review-center {
    display: block;

    margin-left:auto;
    margin-right:auto;
}

img.review-image {
    display: block;

    margin-left:auto;
    margin-right:auto;
}

div.review-footer {
    font-family: EuroSitle, Arial, sans-serif;
    font-size: calc(0.85rem + (22 - 14) * ((100vw - (var(--site-min-width) / 2)) / (1600 - 300)));
    text-align: justify;

    width: calc(100% - 2.4rem);
    height: fit-content;

    padding: 1rem 1.2rem;
    margin: 0 1rem 0 1rem;

    background-color: #dddddd;
}

div.review-footer > div {
    margin-bottom: 0.75rem;
}

.review-bar-score {
    width: 12rem;
    height: 1rem;
    
    border-radius: 0.25rem;
}

span.review-score {
    font-weight: bold;
}