@import url('fonts/roboto.css');
@import url('fonts/roboto_condensed.css');

body, html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 1em;
    overflow-y: scroll;
    background: #FAFAFA;
}

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.website-name {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, .website-name {
    margin-top: 0;
    font-weight: bold;
}

h1 {
    font-size: 157.5%;
}

h1.center {
    text-align: center;
}

h2 {
    font-size: 145%;
}

h3 {
    margin-bottom: 10px;
    font-size: 132.5%;
}

aside h3 {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

h4 {
    font-size: 122.5%;
}

a {
    color: #23527c; /*#65c7d0;*/
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 160%;
}

p:nth-last-child(1) {
    margin-bottom: 0;
}

.page-wrap {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.daily-summary {
    width: 100%;
    max-width: 1400px;
    display: flex;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.daily-summary-weather,
.daily-summary-calendar,
.daily-summary-currency {
    width: 33%;
    padding: 7px 30px;
}

.daily-summary-weather,
.daily-summary-calendar {
    margin-right: 1%;
}

.daily-summary-calendar {
    text-align: center;
}

.daily-summary-currency {
    text-align: right;
}

.page-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.page-header-logo {
    width: 50%;
    display: flex;
    vertical-align: middle;
    align-items: center;
    padding: 30px 0 30px 30px;
}

.page-header-socials {
    width: 25%;
    text-align: center;
    display: flex;
    vertical-align: middle;
    align-items: center;
    font-size: 90%;
}

.page-header-socials ul {
    list-style: none;
    display: inline-flex;
    margin: 0;
    padding-left: 15px;
}

.page-header-socials li {
    margin-right: 25px;
}

.page-header-socials li:last-of-type {
    margin-right: 0;
}

.page-header-socials img {
    display: block;
    width: 2em;
    height: 2em;
}

.page-header-account {
    width: 25%;
    line-height: 160%;
    text-align: right;
    padding: 30px 30px 30px 0;
}

.page-header-logo a {
    text-decoration: none;
}

.page-header-logo img {
    height: 3em;
    margin-right: 1em;
}

.project-logo-title {
    font-weight: bold;
    color: black;
    font-size: 200%;
    font-family: 'Roboto Condensed', Roboto, Arial, Helvetica, sans-serif;
}

.website-nav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 200;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.website-nav ul {
    padding: 0;
    margin: 0 auto;
}

.website-nav > ul {
    padding: 0 10px;
    width: 100%;
    max-width: 1400px;
    /*background: #48525E;*/
}

.website-nav li {
    font-weight: bold;
    display: inline-block;
    font-size: 110%;
    /*text-transform: uppercase;*/
    position: relative;
}

.website-nav li:hover {
    background: rgba(0, 143, 232, 1);/*#292929;*/
}

.website-nav ul ul {
    min-width: 250px;
    position: absolute;
    display: none;
    background: #EEE;
    border: 1px solid rgba(0, 0, 0, .25);
    border-top: 1px solid #EEE;
    box-shadow: 0 15px 15px rgba(0, 0, 0, .33);
    z-index: 3;
}

.website-nav li:hover ul {
    display: block;
}

.website-nav li.covid19 {
    font-weight: bold;
}

.website-nav li.covid19 a {
    color: #ba0505;
}

.website-nav ul li li {
    display: block;
}

.website-nav li a,
.website-nav li span {
    padding: 15px 25px;
    display: block;
    text-decoration: none;
}

.website-nav li:hover > a,
.website-nav li:hover > span {
    color: white;
}

.page-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex: 1 0 auto;
    /*background: url('/images/city_background.png') center bottom repeat-x;*/
}

main {
    width: 100%;
    padding: 30px 30px 50px 30px;
    /*padding-bottom: 150px !important;*/
}

.page-aside {
    width: 25%;
    padding: 30px 20px 50px;
    border-left: 1px solid rgba(0, 0, 0, .1);
}

main:nth-last-child(2) {
    width: 75%;
    padding: 30px 30px 50px 30px;
}

.page-aside .ad {
    margin-bottom: 50px;
    padding: 15px;
}

.page-aside .ad:nth-last-child(1) {
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-aside .page-actions {
    margin-bottom: 50px;
    padding: 15px;
}

.page-footer {
    background: #444;
    border-top: 1px solid rgba(0, 0, 0, .1);
    color: #ebdec2;
}

.page-footer a {
    color: white;
}

.page-footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding: 30px 20px;
}

.page-footer-info {
    width: 90%;
}

.page-footer-counters {
    width: 10%;
    text-align: right;
}

.footer-menu {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.footer-menu li {
    display: inline-block;
    margin-right: 20px;
    font-size: 110%;
}

.footer-menu li:nth-last-of-type(1) {
    margin-right: 0;
}

#map {
    border: 1px solid rgba(0, 0, 0, .2);
    min-height: 575px;
}

.center {
    text-align: center;
}

.centering-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

table {
    margin: 30px 0;
    width: 100%;
    border-spacing: unset;
    border: 1px solid rgba(0, 0, 0, .1);
}

table caption,
table th,
table td {
    padding: 10px 12px;
}

table th {
    background: rgba(0, 0, 0, .05);
}

table.emergency-phones caption,
table.forums caption {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    font-size: 135%;
    /*background: rgba(0, 143, 232, 1);*/
    color: black;
    text-align: left;
    font-weight: bold;
}

table.emergency-phones,
table.forums,
table.forum-topics {
    background: white;
    border: 1px solid rgba(0, 0, 0, .25);
}

table.forums {
    background: white;
    border-width: 0 1px 1px 1px;
    border-radius: 3px;
}

table.bordered {
    border: 1px solid rgba(0, 0, 0, 1);
}

table.emergency-phones caption,
table.forums caption,
table th,
table td {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    vertical-align: top;
}

.emergency-phones-timetable {
    color: rgba(0, 0, 0, .5);
    font-size: 90%;
}

table tr:nth-last-of-type(1) td {
    border-bottom: none;
}

table.forums tr,
table.forum-topics tr {
    background-color: rgb(256, 256, 245);
}

.currency-rates {
    margin: 50px auto;
}

.currency-rates th {
    text-transform: uppercase;
    text-align: left;
    color: gray;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.currency-rates tr:nth-of-type(even) td {
    background-color: rgba(0, 0, 0, .03);
}

.emergnecy-service-address {
    font-style: italic;
}

.emergnecy-service-description,
.emergency-phone-description {
    font-size: 90%;
    color: rgba(0, 0, 0, .5);
}

.transport-line-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
}

.transport-line-list li {
    display: inline-block;
    width: 30%;
    margin-right: 5%;
    margin-bottom: 30px;
}

.transport-line-list li:nth-of-type(3n) {
    margin-right: 0;
}

.transport-line-list li a {
    display: block;
}

.transport-line {
    background-color: rgb(256, 256, 245);
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 3px;
    padding: 10px;
    display: flex;
}

h3.transport-line-name {
    background: rgba(0, 0, 0, .03);
    min-width: 2.5em !important;
    padding: 0.4em 0;
    font-size: 200%;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-right: 10px;
    margin-bottom: 0;
}

.transport-line-description {
    overflow: hidden;
}

form {
    padding: 0;
    margin: 0;
}

form h1 {
    text-align: center;
}

form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

form label {
    display: inline-block;
    vertical-align: top;
    margin-right: 1%;
    text-align: right;
}

label.field-required::before {
    content: '*';
    color: red;
    font-weight: bold;
    margin-right: 5px;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea {
    padding: 6px 8px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 3px;
    background: transparent;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 100%;
    outline: 0;
    min-width: 300px;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"] {
    border-width: 0 0 1px 0;
}

textarea {
    border-width: 0 0 1px 1px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
textarea:focus {
    border-color: orange;
}

input.confirmation-code {
    font-weight: bold;
    font-size: 150%;
    text-align:center;
    letter-spacing: 2px;
}

.form-line {
    margin-bottom: 1.5em;
}

.form-line:nth-last-child(1) {
    margin-bottom: 0;
}

a.button {
    display: inline-block;
}

a.button,
button,
input[type="submit"],
input[type="button"] {
    border-radius: 3px;
    padding: 10px 30px;
    border: 1px solid black;
    background: white;
    color: black;
    cursor: pointer;
    font-size: 100%;
    outline: 0;
}

a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: rgba(0, 143, 232, 1);
    color: white;
}

a.button {
    text-decoration: none;
}

.form-error {
    color: #982000;
    margin: 30px 0;
    text-align: center;
}

.form-error a {
    color: #982000 !important;
    font-weight: bold;
}

input[type="number"].field-error,
input[type="text"].field-error,
input[type="time"].field-error,
input[type="url"].field-error,
input[type="datetime-local"].field-error,
input[type="email"].field-error,
input[type="password"].field-error,
select.field-error,
textarea.field-error {
    outline: none !important;
    border-color: #982000;
}

p.field-error-description {
    color: #982000;
    font-size: 90%;
    padding-top: 10px;
}

span.field-note {
    font-size: 90%;
    color: grey;
}

#feedback-form {
    margin: 30px 0;
}

#feedback-form input[type="text"],
#feedback-form input[type="email"] {
    width: 35%;
}

#feedback-form textarea {
    width: 60%;
    min-height: 200px;
}

.form-additional-info {
    margin: 30px 0;
    color: #454545
}

.form-additional-info.agreement {
    font-size: 90%;
}

.form-additional-info:nth-child(1) {
    margin-top: 0;
}

.form-additional-info:nth-last-child(1) {
    margin-bottom: 0;
}

.news-list {
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: 3;
}

.news-similar-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.news-list a,
.news-similar-list a {
    color: black;
}

.news-list li,
.news-similar-list li {
    display: inline-block;
    vertical-align: top;
}

.news-list li {
    margin: 0 5% 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
}

.news-similar-list li {
    width: 30%;
    margin-right: 5%;
}

/*.news-list li:nth-of-type(3n + 2) {
    margin-right: 0;
}*/

.news-list li.big,
.news-list li:nth-last-of-type(1) {
    padding-bottom: 0;
    border-bottom: none;
}

.news-card-big {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
}

h3.news-card-big__title {
    font-size: 110%;
    line-height: 150%;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

h3.news-card-mini__title {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 100%;
    margin-bottom: 0;
    line-height: 160%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.news-card__cluster-size {
    font-weight: normal !important;
    color: #999;
}

.news-card-big__content {
    padding: 0 15px 15px;
}

.news-card-big__description {
    font-size: 95%;
    line-height: 150%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.news-card-big .news-card__info {
    padding: 0 15px 15px;
}

.news-card__time {
    color: gray;
    font-size: 80%;
}

.news-time,
.news-stat {
    display: block;
    color: gray;
    font-size: 90%;
    line-height: 160%;
}

.news-list img {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, .2);
    border-radius: 5px;
    object-fit: cover;
}

.news-list img[src="/images/spacer.png"] {
    height: 180px;
}

.news-image {
    display: block;
    border: 1px solid rgba(0, 0, 0, .5);
    background: #F3F4F4 url(/images/no-image.svg) center center no-repeat;
    background-size: contain;
    margin-bottom: 15px;
}

.news-body {
    margin: 25px 0;
    line-height: 160%;
}

.news-description {
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.news-text {
    margin-bottom: 15px;
}

.news-categories {
    clear: left;
    margin: 30px 0;
}

.news-categories ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.news-categories li {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 92.5%;
    background: white;
    margin-right: 5px;
}

ul.news-rubrics {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

ul.news-rubrics li {
    display: inline-block;
    margin-right: 10px;
}

.news-categories li:nth-last-child(1)::after {
    content: none;
}

.news-source {
    font-style: normal;
    font-size: 95%;
    white-space: nowrap;
}

.news-source span {
    color: gray;
}

.news-source-icon {
    width: 16px;
    height: 16px;
    margin-right: 15px;
}

.item-share {
    margin: 35px 0;
    padding: 0;
    text-align: center;
}

.item-share li {
    display: inline-block;
    vertical-align: top;
    width: 48px;
    height: 48px;
    margin-left: 15px;
    overflow: hidden;
    transform: scale(.9);
}

.item-share li:first-child {
    margin: 0;
}

.item-share img.share-icon {
    display: block;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .2);
    transition: background-color linear .2s;
    cursor: pointer;
}

.item-share img.share-icon.facebook:hover {
    background-color: #3A5BA0;
}

.item-share img.share-icon.vkontakte:hover {
    background-color: #54769B;
}

.item-share img.share-icon.twitter:hover {
    background-color: #2CA7E0;
}

.item-share img.share-icon.odnoklassniki:hover {
    background-color: #F2720C;
}

.item-share img.share-icon.google-plus:hover {
    background-color: #E13719;
}

.pagination {
    margin: 30px 0;
    text-align: center;
    font-weight: bold;
}

.pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination ul li {
    display: inline-block;
}

.pagination ul li::before {
    content: '\b7';
    display: inline-block;
    margin: 0 10px;
}

.pagination ul li:first-child::before {
    content: none;
    margin: 0;
}

/*.ad-container {
    border: 1px dashed rgba(0, 0, 0, .2);
    background-color: #FAFAFA;
}*/

.ad-container-250x400 {
    width: 250px;
    height: 400px;
}

.quick-search {
    width: 28%;
    text-align: right;
}

.breadcrumb {
    padding: 0 5px 0 0;
    line-height: 200%;
    margin: 0 0 20px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb li {
    display: inline-block;
    white-space: nowrap;
    color: rgba(0, 0, 0, .5);
}

.breadcrumb li:nth-last-of-type(n + 2)::after {
    content: '\203a';
    color: #999;
    margin: 0 5px;
}

.breadcrumb img {
    margin-bottom: -2px;
    display: inline-block;
}

.breadcrumb a,
.breadcrumb span {
}

.username {
    font-weight: bold;
}

.photo,
.emergency-phones-nav,
.poll,
.latest-news {
    /*background-color: #F5F5F5;
    border: 1px solid rgba(0, 0, 0, .05);
    padding: 15px;
    border-radius: 3px;*/
    margin-bottom: 30px;
}

.photo {
    padding: 0;
    overflow: hidden;
}

.latest-news ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-news ul li {
    font-size: 95%;
    line-height: 150%;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.latest-news ul li:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.latest-news-card-title a {
    color: black;
}

.latest-news-card-info {
    margin-top: 5px;
    font-size: 90%;
    color: #A0A0A0;
}

.poll-options-list ul {
    list-style: none;
    padding: 0 0 20px;
    margin: 0;
}

.poll-option {
    display: flex;
    margin-bottom: 12px;
}

.poll-option label {
    display: inline-block;
    margin-top: -3px;
    margin-left: 5px;
    text-align: left;
    line-height: 150%;
}

.photo-description {
    font-size: 90%;
    line-height: 150%;
    padding: 15px;
}

.emergency-phones-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.emergency-phones-nav li {
    margin-bottom: 7px;
    font-size: 90%;
}

.companies-categories-list {
    margin-bottom: 30px;
    border-radius: 3px;
    background-color: rgb(256, 256, 245);
    border: 1px solid rgba(0, 0, 0, .1);
}

.companies-categories-list h3 {
    margin-bottom: 0;
    background: rgba(0, 0, 0, .02);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 10px 15px;
}

.companies-categories-list ul {
    margin: 0;
    padding: 15px;
}

.companies-categories-list li {
    list-style: none;
    margin-bottom: 7px;
}

sup {
    color: #BDBDBD;
    font-size: 90%;
}

.flag {
    margin-right: 10px;
    width: 16px;
    height: 10px;
    background: url('/images/icons/flags-sprite.png') no-repeat;
}

.flag.flag-us,
.flag.flag-usd {
    background-position: -160px -154px;
}

.flag.flag-eu,
.flag.flag-eur {
    background-position: -48px -44px;
}

.flag.flag-ru,
.flag.flag-rub {
    background-position: -224px -121px;
}

.flag.flag-ua,
.flag.flag-uah {
    background-position: -112px -154px;
}

.flag.flag-pl,
.flag.flag-pln {
    background-position: -32px -121px;
}

.flag.flag-en,
.flag.flag-gb,
.flag.flag-gbp {
    background-position: -176px -44px;
}

.flag.flag-cn,
.flag.flag-cny {
    background-position: -208px -22px;
}

.flag.flag-kz,
.flag.flag-kzt {
    background-position: -208px -77px;
}

.flag.flag-ch,
.flag.flag-chf {
    background-position: -128px -22px;
}

.flag.flag-cz,
.flag.flag-czk {
    background-position: -64px -33px;
}

.flag.flag-au,
.flag.flag-aud {
    background-position: -208px 0;
}

.flag.flag-bg,
.flag.flag-bgn {
    background-position: -80px -11px;
}

.flag.flag-dk,
.flag.flag-dkk {
    background-position: -112px -33px;
}

.flag.flag-ir,
.flag.flag-irr {
    background-position: -176px -66px;
}

.flag.flag-is,
.flag.flag-isk {
    background-position: -192px -66px;
}

.flag.flag-jp,
.flag.flag-jpy {
    background-position: -16px -77px;
}

.flag.flag-ca,
.flag.flag-cad {
    background-position: -48px -22px;
}

.flag.flag-kw,
.flag.flag-kwd {
    background-position: -176px -77px;
}

.flag.flag-md,
.flag.flag-mdl {
    background-position: -176px -88px;
}

.flag.flag-no,
.flag.flag-nok {
    background-position: -96px -110px;
}

.flag.flag-sg,
.flag.flag-sgd {
    background-position: -96px -132px;
}

.flag.flag-kg,
.flag.flag-kgs {
    background-position: -48px -77px;
}

.flag.flag-tr,
.flag.flag-try {
    background-position: -32px -154px;
}

.flag.flag-se,
.flag.flag-sek {
    background-position: -80px -132px;
}

.currency-rate-diff-negative {
    color: rgba(152, 32, 0, .5);
    color: #982000;
}

.currency-rate-diff-positive {
    color: rgba(9, 134, 62, .5);
    color: #09863e;
}

.advertisement {
    border: 1px solid rgba(0, 0, 0, .5);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 50px;
    background: white;
}

.advertisement::after {
    content: 'Реклама';
    color: rgba(0, 0, 0, .33);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 75%;
    display: block;
    text-align: right;
    margin-top: 10px;
}

.advertisement a {
    text-decoration: none;
    color: #444;
}

.advertisement img {
    display: block;
    max-width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .2);
}

.advertisement-title {
    display: block;
    font-size: 125%;
    text-align: center;
    font-weight: bold;
}

.news-container {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, .2);
}

.news-container:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (min-width: 640px) {
    .popular-currency-rate::after {
        content: ',';
    }

    .popular-currency-rate:nth-last-child(1)::after {
        content: '';
    }
}

@media (max-width: 640px) {
    .page-content {
        display: block;
    }

    main,
    .page-aside {
        width: 100% !important;
        padding: 20px !important;
    }

    .news-list {
        column-count: 1;
    }

    .news-similar-list {
        display: block;
    }

    .news-list li,
    .news-similar-list li {
        display: block;
        width: 100% !important;
    }

    .news-similar-list li {
        margin-bottom: 30px;
    }

    .news-list li {
        margin: 0 0 20px;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }

    .transport-line-list li {
        display: inline-block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .page-footer-info {
        width: 75%;
    }

    .page-footer-counters {
        width: 25%;
    }
}

@media screen and (max-width: 480px) {
    table th,
    table td {
        padding: 5px 8px;
    }

    .daily-summary {
        font-size: 90%;
    }

    .daily-summary-weather,
    .daily-summary-calendar,
    .daily-summary-currency {
        padding: 7px 15px;
    }

    .currency-rates {
        font-size: 95%;
    }

    .page-header {
        padding: 15px;
    }

    .page-header-logo {
        padding: 0;
        width: 75%;
    }

    .page-header-socials {
        width: 25%;
        text-align: right;
    }

    .page-header-socials span {
        display: none;
    }

    .page-header-socials ul {
        width: 100%;
    }

    .page-header-account {
        display: none;
        width: 0;
    }

    .website-logo img {
        height: 5em;
    }

    .website-name {
        display: none;
    }

    .website-nav {
        padding: 0;
    }

    .website-nav ul {
        width: 100%;
    }

    .website-nav::before {
        content: '';
        display: block;
        height: calc(1em * 1.5 + 20px);
        background-image: url('/images/icons/menu.svg');
        background-repeat: no-repeat;
        background-position: 20px center;
        background-size: auto 50%;
    }

    .website-nav:hover > ul {
        display: block;
    }

    .website-nav ul {
        display: none;
    }

    .website-nav li {
        display: block;
    }

    .page-footer p {
        text-align: left
    }

    .footer-menu li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
        text-align: left;
    }

    #map {
        width: calc(100% + 40px);
        margin: 0 -20px;
        border-left: none;
        border-right: none;
    }
}