@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-size: 16px;
    background-color: #f9f9f9;
}

:root {
    --primary-color: #3E34A3;
    --secondary-color: #e8c102;
    --primary-color-rgb: 58, 193, 202;
    --secondary-color-rgb: 232, 193, 2;
}

.color-secondary {
    color: var(--secondary-color);
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: var(--primary-color);
}

::selection {
    color: #fff;
    background: var(--primary-color);
}

button {
    outline: none;
    box-shadow: none;
    border: none;
}

body,
button,
textarea,
select {
    font-family: 'Poppins', sans-serif;
}

input {
    font-family: 'Poppins', sans-serif;
}

ul li {
    list-style: none;
}

ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: #000;
}

.alert {
    border-width: 1px;
    border-style: solid;
    padding: 15px;
    border-radius: 5px;
    margin: 5px 0;
    font-size: .9em;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.cookie-alert.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.cookie-alert {
    visibility: hidden;
    opacity: 0;
    transform: translateX(20%);
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
    backdrop-filter: blur(2px);
    transition: all .3s ease;
    border-top: 1px solid lightgray;
}

.cookie-alert .close-button {
    position: absolute;
    top: -20px;
    right: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #727272;
    cursor: pointer;
    transition: background-color .3s ease;
}

.cookie-alert .close-button:hover {
    background-color: #000;
}

.cookie-alert .close-button i {
    font-size: 2em;
    color: #fff;
}

.cookie-alert .content {
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-alert .content .text {
    font-size: .85em;
}

.cookie-alert .confirm-button {
    color: #fff;
    background-color: #5cb85c;
    height: 40px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    cursor: pointer;
}

.accordion {
    width: 100%;
    margin-top: 30px;
}

.accordion-item {
    background-color: #fff;
    margin: 15px 0;
    border: 1px solid lightgray;
}

.accordion-item-header {
    padding: 8px 50px 8px 16px;
    background-color: #f9f9f9;
    min-height: 55px;
    line-height: 120%;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    color: rgba(0, 0, 0, .85);
    transition: all .3s ease;
}

.accordion-item-header.active {
    color: rgba(0, 0, 0, 1);
    background-color: #fff;
}

.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item-body-content {
    padding: 16px;
    line-height: 150%;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
    font-size: 15px;
}


.search-results .container .detail-box.results .add-comment .box .top .input-group i {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 38px;
    height: 38px;
    background-color: #f4f4f4;
    color: #3c3c3c;
    display: flex;
    font-size: 1.5em;
    align-items: center;
    justify-content: center;
    border-right: 1px solid lightgray;
}

/* ========================== */
/* ========================== */


.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid #d3d3d3;
    padding: 10px;
    background-color: #f9f9f9;
    transition: .3s;
    width: 100%;
    outline: none;
    box-shadow: none;
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.contact-form .input-group {
    position: relative;
    margin-bottom: 17.5px;
}


.contact-form input {
    height: 40px;
    border-radius: 5px
}

.contact-form input:focus+label,
.contact-form input:not(:placeholder-shown)+label {
    top: 0;
    font-size: 12px;
    color: gray;
    background-color: #fff
}

.contact-form input:focus,
.contact-form input:not(:placeholder-shown),
.contact-form textarea:focus,
.contact-form textarea:focus+label,
.contact-form textarea:not(:placeholder-shown),
.contact-form textarea:not(:placeholder-shown)+label {
    background-color: #fff
}

.contact-form textarea:focus+label,
.contact-form textarea:not(:placeholder-shown)+label {
    top: 0;
    font-size: 12px;
    color: gray
}

.contact-form textarea {
    border-radius: 5px;
    resize: none
}

.contact-form label {
    position: absolute;
    top: 20px;
    left: 0;
    transform: translate(10px, -50%);
    user-select: none;
    pointer-events: none;
    font-size: 15px;
    background-color: #f9f9f9;
    padding: 0 5px;
    color: #3c3c3c;
    transition: .3s
}

.contact-form button[type=submit] {
    background-color: var(--primary-color);
    color: #fff;
    height: 40px;
    padding: 0 20px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1em;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

/* ========================== */
/* ========================== */

main {
    min-height: calc(100vh - 251px);
    width: 100%;
    background-color: #f4f4f4;
}

main .container {
    min-height: calc(100vh - 251px);
    height: 100%;
}

.main-search-page {
    background-color: var(--primary-color);
    padding: 100px 0 50px;
    min-height: calc(100vh - 251px);
}

.main-search-page .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: calc(100vh - 251px);
}

.main-search-page .container .box {
    max-width: 900px;
    width: 100%;
}

.main-search-page .container .box .last-searches {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.main-search-page .container .box .last-searches .badge {
    margin: 3.5px;
    background-color: #fff;
    color: #3c3c3c;
    border-radius: 8px;
    font-size: .8em;
}

.main-search-page .container .box .last-searches .badge:hover {
    color: #000;
}

.main-search-page .container .header-section {
    max-width: 900px;
    width: 100%;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.main-search-page .container .header-section .header {
    color: #fff;
    font-size: 3.5em;
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 5px;
    text-align: center;
}

.main-search-page .container .header-section .text {
    color: #fff;
    font-weight: 500;
    font-size: 1.1em;
    text-align: center;
}

.main-search-page .container .box form {
    display: flex;
    position: relative;
    margin-top: 30px;
}

.main-search-page .container .box form .search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 30px;
    color: #707070;
}

.main-search-page .container .box form .search-input {
    height: 76px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 10px 120px 10px 50px;
    border: none;
    outline: none;
    font-size: 1.1em;
}

.main-search-page .container .box form.pressed .search-input {
    height: 56px;
}

.main-search-page .container .box form.pressed .submit-button {
    height: 46px;
    right: 5px;
}

.main-search-page .container .box form .submit-button {
    height: 56px;
    width: 100px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border-radius: 8px;
    font-weight: 400;
    font-size: 1em;
    cursor: pointer;
    transition: all .3s ease;
}

.header-part {
    position: absolute;
    width: 100%;
    height: 65px;
    z-index: 99999;
    transition: all 1s ease;
}

.header-part.inner-page .computer,
.header-part.inner-page .mobile {
    background-color: #fff;
}

.header-part.inner-page .computer {
    border-bottom: 1px solid lightgray;
}

.header-part.inner-page.sticky .computer {
    border-bottom: none;
}

.header-part.inner-page .computer .box nav.item ul li {
    height: 100%;
}

.header-part.inner-page .computer .box nav.item ul li a {
    height: 100%;
}

.header-part.inner-page .computer .box nav.item ul li a:hover {
    background-color: rgba(0, 0, 0, .05);
}

.header-part.inner-page .has-dropdown .dropdown {
    background-color: #fff;
    border: 1px solid lightgray;
    box-shadow: 0 0 5px lightgrey;
}

.header-part.sticky .computer .box nav.item ul li a,
.header-part.inner-page .computer .box nav.item ul li a {
    text-shadow: none;
    color: #000;
    height: 100%;
}

.header-part.sticky .computer .box nav.item .has-dropdown ul.dropdown li a:hover {
    background-color: rgba(0, 0, 0, .05);
}

.header-part.inner-page .computer .box nav.item ul li a:hover,
.header-part.sticky .computer .box nav.item ul li a:hover,
.header-part.sticky .computer [class$="-dropdown"]:hover .parent-link {
    background-color: rgba(0, 0, 0, .05);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    font-size: .7em;
    font-weight: 500;
    padding: 5px 10px;
}

.badge-success {
    background-color: #198754;
    color: #fff;
}

.badge-danger {
    background-color: #d9534f;
    color: #fff;
}

.badge-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.badge-warning {
    background-color: #f0ad4e;
    color: #000;
}

.header-part.sticky .has-dropdown .dropdown {
    background-color: #fff;
    border: 1px solid lightgray;
    box-shadow: 0 0 5px lightgrey;
}

.header-part.sticky .has-dropdown .dropdown li {

    border-top: 1px solid rgba(0, 0, 0, .15);
}

.header-part.sticky .computer .box nav.item ul li {
    height: 100%;
}

.header-part .has-dropdown {
    position: relative;
}

[class$="-dropdown"] {
    transition: background-color .3s ease-out;
    will-change: background-color;
}

.header-part .has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: max-content;
    max-width: 200px;
    font-size: .9em;
    height: auto !important;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    transition: all .3s ease;
    transform: translateY(15px);
    transform-origin: top;
    box-shadow: 0 0 10px lightgrey;
}

.header-part .box .item nav ul li a:hover,
[class$="-dropdown"]:hover>a {
    background-color: rgba(0, 0, 0, .075);
}

.header-part .computer .box nav.item .has-dropdown li {
    width: 100%;
}

.header-part .computer .box nav.item ul li.has-dropdown a i {
    margin-left: 2px;
    font-size: 1.1em;
}

.search-results .container .detail-box .other-topics {
    padding: 50px;
}

.search-results .container .detail-box .other-topics h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.search-results .container .detail-box .other-topics .box {
    display: flex;
    flex-wrap: wrap;
    ;
}

.search-results .container .detail-box .other-topics .box .item.previous {
    text-align: left;
    flex-direction: row;
}

.search-results .container .detail-box .other-topics .box .item.next {
    text-align: right;
    flex-direction: row-reverse;
}

.search-results .container .detail-box .other-topics .box .item {
    width: calc(100% / 2 - 30px);
    display: flex;
    border-left: 1px solid lightgray;
    margin: 15px;
}

.search-results .container .detail-box .other-topics .box .item:hover {
    transform: translateY(0);
}

.search-results .container .detail-box .other-topics .box .item.prev i {
    margin-right: 10px;
}

.search-results .container .detail-box .other-topics .box .item.next i {
    margin-left: 10px;
}

.search-results .container .detail-box .other-topics .box .item i {
    width: 70px;
    height: 70px;
    font-size: 5em;
    color: #fff;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    box-shadow: 0 0 5px lightgray;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.search-results .container .detail-box .other-topics .box .item .content {
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}

.search-results .container .detail-box .other-topics .box .item .content .header {
    font-size: 1.1em;
    line-height: 120%;
    margin-bottom: 5px;
}

.search-results .container .detail-box .other-topics .box .item .content span {
    font-size: .9em;
    color: #727272;
}

.load-more {
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.load-more button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 1em;
    border-radius: 3px;
    cursor: pointer;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
    transition: all .3s ease;
}

.load-more button:hover {
    box-shadow: 3px 3px 5px lightgray;
}

.search-results .container .results.detail-box .comments {
    padding: 25px 0;
}

.search-results .container .results.detail-box .text {
    word-break: break-word;
    table-layout: fixed;
}

.search-results .container .results.detail-box .comments h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.search-results .container .results.detail-box .comments .box .item .profile img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid gray;
    margin-right: 10px;
}

.search-results .container .results.detail-box .comments .box .item {
    width: 100%;
    border-left: 1px solid lightgray;
    margin: 0;
}

.search-results .container .results.detail-box .comments .box .item:hover {
    transform: none;
    box-shadow: 0 0 5px lightgrey;
}

.search-results .container .results.detail-box .comments .box .item .profile {
    width: 100%;
    display: flex;
}

.search-results .container .results.detail-box .comments .box .item .stars {
    display: flex;
    align-items: center;
}

.search-results .container .results.detail-box .comments .box .item .description {
    font-weight: 400;
}

.search-results .container .results.detail-box .comments .box .item .stars span {
    font-size: .8em;
    margin-left: 5px;
}

.search-results .container .results.detail-box .comments .box .item .stars i {
    font-size: 1.1em;
}

.search-results .container .results.detail-box .comments .box .item .stars i.active {
    color: goldenrod;
}

.search-results .container .results.detail-box .comments .box .item .profile .data {
    width: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}

.search-results .container .results.detail-box .comments .box .item .profile .data .name {
    font-size: 1em;
    line-height: 120%;
    margin-bottom: 2px;
}

.search-results .container .results.detail-box .comments .box .item .profile .data .date {
    font-size: .8em;
    color: #727272;
}

/* STAR RATING */
.star-rating {
    direction: rtl;
    display: inline-block;
    cursor: default;
    text-align: left;
    margin-top: 15px;
}

.star-rating label i {
    font-size: 2em;
    line-height: 100%;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type=radio]:checked~label,
.star-rating input[type=radio]:checked~label i {
    color: goldenrod;
}

.star-rating input[type=radio] {
    display: none;
}

.star-rating label {
    color: lightgray;
    height: 35px;
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 35px;
    align-items: center;
}

/* STAR RATING */

.search-results .container .detail-box.results .add-comment {
    padding: 25px 0;
}

.search-results .container .detail-box.results .add-comment h3 {
    margin-bottom: 15px;
    font-style: 1.5em;
}

.search-results .container .detail-box.results .add-comment .box {
    display: flex;
    flex-direction: column;
}

.search-results .container .detail-box.results .add-comment .box .top {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.search-results .container .detail-box.results .add-comment .box .top .input-group:first-child {
    margin-right: 20px;
}

.search-results .container .detail-box.results .add-comment .box .top .input-group {
    width: calc(100% / 2 - 10px);
    height: 40px;
    position: relative;
}

.search-results .container .detail-box.results .add-comment .box .top input.form-control {
    width: 100%;
    height: 100%;
    border: 1px solid lightgray;
    padding: 0 10px 0 50px;
    font-size: 1em;
    border-radius: 3px;
    transition: all .3s ease;
    box-shadow: none;
    outline: none;
}

.search-results .container .detail-box.results .add-comment .box .top input.form-control:focus {
    border: 1px solid var(--primary-color);
}

.search-results .container .detail-box.results .add-comment .box textarea:focus {
    border: 1px solid var(--primary-color);
}

.search-results .container .detail-box.results .add-comment .box textarea {
    resize: none;
    width: 100%;
    font-size: 1em;
    border: 1px solid lightgray;
    padding: 10px;
    box-shadow: none;
    outline: none;
    border-radius: 3px;
    transition: all .3s ease;
}

.search-results .container .detail-box.results .add-comment .box button[type=submit] {
    background-color: var(--primary-color);
    color: #fff;
    height: 40px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
    cursor: pointer;
    box-shadow: 0 0 5px lightgray;
    font-weight: 500;
    margin-top: 20px;
    width: max-content;
    font-size: 1em;
}

.search-results {
    padding: 100px 0 50px;
}

.search-results .container {
    display: flex;
    flex-wrap: wrap;
}

.search-results .container .results {
    width: calc(100% - 350px);
}

.search-results .container .results .main-header {
    margin-bottom: 30px;
    line-height: 120%;
    font-size: 2em;
    word-break: break-word;
    table-layout: fixed;
}

.search-results .container .results .box {
    display: flex;
    flex-wrap: wrap;
}

.search-results .container .results .box .item {
    width: calc(100% / 3 - 24px);
    background-color: #fff;
    padding: 15px;
    margin: 12px;
    border-radius: 8px;
    box-shadow: 0 0 5px lightgrey;
    transition: all .3s ease;
    position: relative;
}

.search-results .container .results .box .item .article-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.search-results .container .results .box .item:hover {
    transform: translateY(-5px);
    box-shadow: 1px 1px 5px gray;
}

.search-results .container .results .box .item:hover .header,
.search-results .container .results .box .item:hover .description,
.search-results .container .results .box .item:hover .info {
    color: #000;
}

.search-results .container .results .box .item .header {
    line-height: 120%;
    font-size: 1.2em;
    color: #606060;
    transition: all .3s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-results .container .results .box .item .info {
    font-size: .85em;
    margin: 10px 0;
    display: flex;
    font-weight: 500;
    justify-content: space-between;
    color: #606060;
    transition: all .3s ease;
}

.search-results .container .results.detail-box .related-topics {
    padding: 25px 0;
}

.search-results .container .results.detail-box .related-topics .box {
    display: flex;
    flex-wrap: wrap;
}

.search-results .container .results.detail-box .related-topics h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.search-results .container .results.detail-box .related-topics .box .item {
    width: calc(100% / 2 - 24px);
    display: flex;
    flex-direction: row;
    margin: 12px;
    border-left: 1px solid lightgray;
}

.search-results .container .results.detail-box .related-topics .box .item .content {
    display: flex;
    flex-direction: column;
}

.bg-primary {
    background-color: #0275d8;
}

.bg-info {
    background-color: #5bc0de;
}

.bg-danger {
    background-color: #d9534f;
}

.bg-dark {
    background-color: #3c3c3c;
}

.bg-success {
    background-color: #5cb85c;
}

.search-results .container .results.detail-box .related-topics .box .item .header {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.search-results .container .results.detail-box .related-topics .box .item .date {
    font-size: .95em;
}

.search-results .container .results.detail-box .related-topics .box .item .date i {
    margin-right: 5px;
    font-size: 1.2em;
}

.search-results .container .results.detail-box .related-topics .box .item .first-letter {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4em;
    font-weight: 800;
    margin-right: 10px;
    border-radius: 3px;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.search-results .container .results .box .item .info i {
    color: #000;
    font-size: 1.2em;
}

.search-results .container .results .box .item .description {
    font-size: .85em;
    overflow: hidden;
    display: -webkit-box;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-box-align: center;
    color: #606060;
    transition: all .3s ease;
}

.search-results .container .sidebar {
    width: 300px;
    margin-left: 50px;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    height: 100%;
}

.search-results .container .sidebar .header-section {
    padding: 10px 20px;
    border-bottom: 1px solid lightgray;
    background-color: var(--primary-color);
    color: #fff;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.search-results .container .sidebar .header-section .header {
    position: relative;
}

.search-results .container .sidebar .box:not(:last-child) {
    margin-bottom: 30px;
}

.search-results .container .sidebar .box form {
    display: flex;
    border: 1px solid lightgray;
    height: 40px;
}

.search-results .container .sidebar .box form input {
    width: calc(100% - 40px);
    height: 38px;
    outline: none;
    box-shadow: none;
    border: none;
    padding: 0 10px;
    background-color: #f9f9f9;
    transition: all .3s ease;
}

.search-results .container .sidebar .box form input:focus {
    background-color: #fff;
}

.search-results .container .sidebar .box form button[type=submit] {
    width: 40px;
    height: 40px;
    position: relative;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    top: -1px;
    cursor: pointer;
}

.search-results .container .sidebar .box form button[type=submit] i {
    color: #fff;
    font-size: 1.5em;
}

.search-results .container .sidebar .child {
    background-color: #fff;
    border: 1px solid lightgray;
    box-shadow: 0 0 10px lightgray;
}

.demo-ads.demo-ads-article {
    width: calc(100% / 3 - 24px);
    background: #fff;
    padding: 15px;
    margin: 12px;
    border-radius: 8px;
    box-shadow: 0 0 5px lightgrey;
    font-size: 3.5em;
    user-select: none;
    font-weight: 900;
}

.search-results .container .sidebar .child.demo-ads .box {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #727272;
    font-size: 3.5em;
    user-select: none;
    font-weight: 900;
}

.demo-ads.demo-ads-horizontal {
    margin-bottom: 30px;
    height: 120px;
    background-color: #fff;
    border: 1px solid lightgray;
    font-size: 3.5em;
    font-weight: 900;
}

.demo-ads {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #727272;
    user-select: none;
    overflow: hidden;
}

.demo-ads-fixed.show {
    display: flex;
}

.demo-ads-pop-up {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .9);
    z-index: 999999;
}

.demo-ads-pop-up .close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.demo-ads-pop-up .close-button i {
    color: #000;
    font-size: 2.5em;
}

.demo-ads-pop-up .box {
    width: 500px;
    height: 500px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #727272;
    font-size: 3.5em;
    user-select: none;
    font-weight: 900;
}

.demo-ads-pop-up.show {
    display: flex;
}

.demo-ads-fixed {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 120px;
    width: 800px;
    display: none;
    background-color: #fff;
    overflow: inherit;
    color: #727272;
    font-size: 3.5em;
    user-select: none;
    font-weight: 900;
    border: 1px solid lightgray;
    z-index: 99;
}

.demo-ads-fixed .close-button {
    position: absolute;
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    background-color: #eee;
    justify-content: center;
    cursor: pointer;
    border: 1px solid lightgray;
}

.demo-ads-fixed .close-button:hover {
    background-color: #ddd;
}

.demo-ads-fixed .close-button i {
    color: #000;
    font-size: 1.5em;
}

.bl-color-1 {
    border-left: 7px solid#93BFCF;
}

.bl-color-2 {
    border-left: 7px solid#FCC2FC;
}

.bl-color-3 {
    border-left: 7px solid #8B7E74;
}

.bl-color-4 {
    border-left: 7px solid #ECA869;
}

.bl-color-5 {
    border-left: 7px solid #65647C;
}

.search-results .container .sidebar .child:not(:last-child) {
    margin-bottom: 30px;
}

.search-results .container .sidebar .box .item:not(:last-child) {
    margin-bottom: 15px;
}

.search-results .container .sidebar .box {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.search-results .container .sidebar .box .share-buttons {
    display: flex;
}

.search-results .container .sidebar .box .share-buttons li {
    width: 55px;
    height: 55px;
    margin: 4.5px;
}

.search-results .container .sidebar .box .share-buttons li a {
    width: 55px;
    height: 55px;
    border-radius: 3px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.search-results .container .sidebar .box .share-buttons li a:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 5px lightgray;
}

.search-results .container .sidebar .box .share-buttons li a:hover i {
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.search-results .container .sidebar .box .share-buttons li a i {
    color: #fff;
    font-size: 1.5em;
    transition: all .3s ease;
}

.search-results .container .sidebar .box .share-buttons li a.facebook {
    background-color: #3563c2;
}

.search-results .container .sidebar .box .share-buttons li a.twitter {
    background-color: #63cdf1;
}

.search-results .container .sidebar .box .share-buttons li a.whatsapp {
    background-color: #4EC35A;
}

.search-results .container .sidebar .box .share-buttons li a.rss {
    background-color: #f7b454;
}

.search-results .container .sidebar .box .item {
    width: 100%;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 3px;
    transition: all .3s ease;
    position: relative;
}

.search-results .container .sidebar .box .item i.link {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #000;
    opacity: .09;
    font-size: 40px;
    font-weight: 900;
    line-height: 100%;
    transition: all .3s ease;
}

.search-results .container .sidebar .box .item:hover::after {
    opacity: .18;
}

.search-results .container .sidebar .box .item:hover {
    box-shadow: 3px 3px 5px lightgray;
    border: 1px solid gray;
    background-color: #fff;
}

.search-results .container .sidebar .box .item .header {
    font-size: .9em;
    color: #606060;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 120%;
    transition: all .3s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-results .container .sidebar .box .item .date {
    font-size: .8em;
    color: #606060;
    font-weight: 500;
    transition: all .3s ease;
}

.search-results .container .sidebar .box .item .date i {
    margin-right: 5px;
    font-size: 16px;
    color: #000;
}

.search-results .container .sidebar .box .item:hover .header,
.search-results .container .sidebar .box .item:hover .date {
    color: #000;
}

.header-part .mobile {
    display: none;
    height: 65px;
    background-color: #fff;
}

.header-part.bg-primary .mobile {
    background-color: var(--primary-color);
}

.header-part.sticky .mobile .menu-toggle-button i {
    color: #000;
}

.header-part.sticky .mobile {
    background-color: #fff;
    box-shadow: 0 0 10px grey;
    height: 65px;
}

.header-part.sticky .mobile .menu-toggle-button {
    background-color: rgba(0, 0, 0, .1);
}

.header-part .mobile .menu-toggle-button {
    background-color: var(--primary-color);
    cursor: pointer;
    width: 45px;
    height: 45px;
    transition: all .3s ease;
}

.header-part .mobile .menu-toggle-button i {
    color: #fff;
    font-size: 1.5em;
}

/* .header-part .mobile .menu-toggle-button:hover {
    background-color: rgba(255, 255, 255, .3);
}

.header-part.sticky .mobile .menu-toggle-button:hover {
    background-color: rgba(0, 0, 0, .2);
} */

.header-part .box .item nav ul li a:hover {
    background-color: rgba(255, 255, 255, .15);
}

.header-part .has-dropdown .dropdown li a {
    width: 100%;
    padding: 10px 12.5px !important;
    font-size: .95em;
    font-weight: 400;
    text-transform: capitalize !important;
    color: #000 !important;
    text-shadow: none !important;
    transition: all .2s ease-out !important;
    will-change: background-color, padding !important;
}

.header-part .has-dropdown .dropdown li a:hover {
    background-color: #eee;
}

.header-part .has-dropdown:hover .dropdown,
.header-part .has-dropdown .dropdown:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-part .mobile .container {
    height: 100%;
}

.header-part .mobile .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-part .mobile .box .item {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-part .computer {
    height: 65px;
    background-color: var(--primary-color);
}

.header-part.bg-primary .computer {
    background-color: var(--primary-color);
}

.header-part .computer .container {
    height: 100%;
}

.header-part .computer .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-part .computer .box .item {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-part .computer .box nav.item ul {
    display: flex;
    height: 100%;
    align-items: center;
}

.header-part .computer .box nav.item ul li {
    font-size: 1.05em;
    font-weight: 500;
    display: flex;
    height: 100%;
    align-items: center;
}

.header-part .computer .box nav.item ul li a {
    padding: 0 20px;
    height: 100%;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    user-select: none;
    color: #000;
    transition: background-color .3s ease;
    will-change: background-color;
}

.clear-fix::after {
    content: "";
    height: 65px;
    width: 100%;
    display: none;
}

.header-part.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.header-part .computer,
.header-part .mobile {
    transition: all .3s ease;
}

.header-part.sticky .computer {
    background-color: #fff;
    box-shadow: 0 0 10px gray;
    height: 65px;
}

.header-part .computer .box nav.item ul li a:hover {
    background-color: rgba(0, 0, 0, .075);
}

.header-part .computer .box nav.item .has-dropdown ul.dropdown li a:hover {
    background-color: rgba(0, 0, 0, .075);
}

.header-part.inner-page .typing-value::after {
    background-color: #000;
}

.header-part.inner-page .computer .box nav.item .has-dropdown ul.dropdown li a:hover,
.header-part.inner-page [class$="-dropdown"]:hover .parent-link {
    background-color: rgba(0, 0, 0, .05);
}

.header-part .computer .logo,
.header-part .mobile .logo {
    outline: none;
    color: #3c3c3c;
    font-weight: 700;
    font-size: 2em;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
}

.header-part .computer .logo i,
.header-part .mobile .logo i {
    margin-right: 7.5px;
}

.header-part.bg-primary .computer .logo,
.header-part.bg-primary .mobile .logo {
    color: #fff;
}

.header-part.bg-primary.sticky .computer .logo,
.header-part.bg-primary.sticky .mobile .logo {
    color: #3c3c3c;
}

.header-part .computer .logo img,
.header-part .mobile .logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    user-select: none;
}

.header-part .select-lan {
    border: 1px solid lightgray;
    background-color: #eee;
    display: inline-flex;
    color: #000;
    padding: 0 10px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    transition: background-color .3s ease-out;
}

.header-part .select-lan:hover {
    background-color: #f9f9f9;
}

.header-part .select-lan i {
    margin-right: 5px;
    font-size: 1.2em;
}

.language-select-overlay {
    z-index: 99999999;
    transform: translateY(-1000px);
}

.language-select-overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .9);
    z-index: 999999;
    transition: all .3s ease-out;
}

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

.language-select-overlay ul {
    display: flex;
    flex-direction: row;
    width: 70%;
    flex-wrap: wrap;
    justify-content: start;
    height: fit-content;
    align-items: center;
}

.language-select-overlay ul li {
    width: min-content;
    display: flex;
    height: 50px;
    margin: 5px;
}

.language-select-overlay .close-btn {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #fff;
}

.language-select-overlay .close-btn i {
    font-size: 30px;
    color: #000;
}

.language-select-overlay ul li a {
    color: #fff;
    font-size: 16px;
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, .2);
    height: 50px;
    align-items: center;
    padding: 0px 10px;
    border-radius: 5px;
    transition: all .3s ease-out;
    will-change: color, background-color;
}

.language-select-overlay ul li a img {
    height: 30px;
    margin-right: 10px;
    width: auto;
}

.language-select-overlay ul li a:hover {
    background-color: #f4f4f4;
    color: #000;
}

.language-select-overlay ul li:not(:last-child) a {
    margin-bottom: 15px;
}

.language-select-overlay.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay {
    position: fixed;
    background-color: #606060;
    width: 100%;
    height: 100vh;
    display: flex;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transform: scale(.3);
    transition: all .3s ease;
}

.mobile-overlay.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.mobile-overlay .close-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    transition: background-color .3s ease;
}

.mobile-overlay .close-button:hover {
    background-color: #dd4b39;
}

.mobile-overlay .logo {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 50px;
    width: auto;
}

.mobile-overlay .logo img {
    height: 100%;
    object-fit: cover;
}

.mobile-overlay .close-button i {
    color: #fff;
    font-size: 30px;
}

.mobile-overlay .menu-links {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 100px;
}

.mobile-overlay .menu-links>ul {
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    overflow: auto;
}

.mobile-overlay .menu-has-dropdown .menu-dropdown {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 7.5px;
    padding-left: 20px;
}

.mobile-overlay .menu-has-dropdown .menu-dropdown li {
    list-style: disc;
    color: #fff;
    width: fit-content;
    transition: all .3s ease;
}

.mobile-overlay [class$="-dropdown"]:hover a {
    background-color: transparent;
}

.mobile-overlay .menu-links ul li a:hover,
.mobile-overlay .menu-has-dropdown .menu-dropdown li:hover {
    color: var(--primary-color);
}

.mobile-overlay .menu-links ul li a {
    color: #fff;
    font-size: 1.5em;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
    transition: all .3s ease;
}

.mobile-overlay .menu-links .menu-dropdown li a {
    font-size: 1.2em;
}

.detail-box article.box {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid lightgray;
    border-radius: 8px;
    padding: 50px;
}

.search-results .container .detail-box .box .main-header {
    margin-bottom: 10px;
}

.search-results .container .detail-box.results .box {
    gap: 0;
}

.detail-box .box .info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: .9em;
}

.detail-box .box .info .date {
    margin-right: 15px;
}

.footer-part {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

.footer-part nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-part.bg-primary nav ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 1em;
    margin: 5px;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.footer-part nav ul li a {
    font-weight: 400;
    font-size: 1em;
    margin: 5px 10px;
}

.footer-part.bg-primary {
    background-color: var(--primary-color);
}

.footer-part.bg-primary .copyright-section {
    color: #fff;
    font-size: .85em;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.footer-part .copyright-section {
    color: #000;
    padding-top: 15px;
    font-size: .85em;
}

.not-found .header {
    font-size: 1.8em;
    font-weight: 600;
    line-height: 120%;
    background-color: transparent;
}

.not-found .header i {
    font-size: 1.4em;
    margin-right: 10px;
    line-height: 100%;
}

.not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border: 1px solid lightgray;
    border-radius: 8px;
}

.not-found .text {
    margin: 15px 0 20px;
    font-weight: 400;
    font-size: 1em;
}

.not-found .text strong {
    font-weight: 600;
}

.back-to-home-btn {
    background-color: var(--primary-color);
    color: #fff;
    height: 40px;
    padding: 0 20px 0 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 40%), 0px 2px 5px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
    cursor: pointer;
    box-shadow: 0 0 5px lightgrey;
    font-weight: 400;
    width: max-content;
    font-size: .9em;
}

.back-to-home-btn i {
    font-size: 1.7em;
    color: #fff;
    margin-right: 5px;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.container {
    width: 1400px;
    margin: auto;
}

@media (max-width: 1500px) {
    .container {
        width: 1200px;
    }

    .search-results .container .results .box .item,
    .demo-ads.demo-ads-article {
        width: calc(100% / 2 - 24px);
    }

    .search-results .container .results .main-header {
        margin-bottom: 25px;
        font-size: 1.5em;
    }

    .search-results .container .results .box .item .header {
        font-size: 1.1em;
    }
}

@media (min-width: 1280px) {
    .header-part .computer .logo {
        color: #fff;
    }
}

@media (max-width: 1280px) {
    .search-results .container .results.detail-box .related-topics .box .item {
        width: 100%;
        margin: 12px 0;
    }

    .search-results .container .detail-box .other-topics {
        padding: 50px 0;
    }

    .container {
        width: 991px;
    }

    .header-part .computer {
        display: none;
    }

    .header-part .mobile {
        display: block;
    }
}

@media (max-width: 1080px) {
    .demo-ads-fixed {
        width: 100%;
    }

    .search-results .container .sidebar .box .share-buttons li {
        width: calc(100% / 4);
    }

    .search-results .container .sidebar .box .share-buttons li a {
        width: 100%;
    }

    .container {
        width: 95%;
    }

    .search-results .container .results {
        width: 100%;
    }

    .search-results .container .sidebar {
        width: 100%;
        margin-left: 0;
        position: -webkit-relative;
        position: relative;
        top: 0;
        margin-top: 50px;
        height: 100%;
    }

    .language-select-overlay ul {
        width: 100%;
    }

    .language-select-overlay ul li {
        height: 40px;
    }

    .language-select-overlay ul li:not(:last-child) a {
        margin-bottom: 0;
    }

    .language-select-overlay ul li a {
        font-size: 12px;
        width: 100%;
        height: 40px;
        padding: 0px 5px;
        border-radius: 3px;
    }

    .language-select-overlay ul li a img {
        height: 25px;
    }

    .main-search-page .container .box .last-searches .badge {
        margin: 3px;
        border-radius: 3px;
        font-size: .7em;
    }

    .badge {
        font-size: .7em;
        padding: 3px 6px;
    }

    .footer-part nav ul li a {
        font-size: .9em;
    }

    .footer-part .copyright-section {
        font-size: .8em;
        color: #606060;
    }
}


@media (max-width: 670px) {
    .cookie-alert .content {
        flex-direction: column;
        padding: 20px 60px;
    }

    .cookie-alert .confirm-button {
        margin-top: 10px;
        margin-left: 0;
        min-width: 140px;
        justify-content: center;
    }

    .demo-ads-pop-up .close-button {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .demo-ads-pop-up .box {
        width: 90%;
        height: 400px;
    }

    .back-to-home-btn {
        height: 35px;
        padding: 0 15px 0 10px;
    }

    .not-found {
        padding: 20px;
        border-radius: 3px;
    }

    .not-found .text {
        margin: 15px 0 20px;
        font-weight: 400;
        font-size: .95em;
    }

    .not-found .header i {
        font-size: 1.2em;
        margin-right: 5px;
    }

    .not-found .header {
        font-size: 1.6em;
    }

    .search-results .container .detail-box.results .add-comment .box .top input.form-control {
        font-size: .9em;
    }

    .search-results .container .detail-box.results .add-comment .box textarea {
        font-size: .9em;
    }

    .search-results .container .detail-box.results .add-comment .box button[type=submit] {
        font-size: .9em;
    }

    .star-rating label {
        height: 35px;
        width: 35px;
    }

    .main-search-page .container .header-section .header {
        font-size: 3em;
        font-weight: 700;
    }

    .main-search-page .container .header-section .text {
        font-size: .9em;
        line-height: 120%;
    }

    .search-results .container .results .box .item,
    .demo-ads.demo-ads-article {
        width: 100%;
        margin: 12px 0;
    }

    .load-more {
        padding: 25px 0;
    }

    .search-results .container .results .box .item .info span.date {
        margin-right: 15px;
    }

    .search-results .container .results .box .item .info {
        justify-content: start;
        font-size: .8em;
    }

    .search-results .container .results .main-header {
        line-height: 110%;
        font-size: 1.4em;
        text-align: center;
    }

    .search-results .container .detail-box .box .main-header {
        text-align: left;
    }

    .detail-box article.box {
        padding: 30px;
        border-radius: 3px;
    }

    .detail-box .box .info {
        font-size: .8em;
    }

    .search-results .container .results.detail-box .main-header {
        font-size: 1.6em;
    }

    .search-results .container .results.detail-box .text {
        font-size: .9em;
    }

    .search-results .container .detail-box .other-topics .box .item {
        width: 100%;
        margin: 15px 0;
    }

    .search-results .container .detail-box .other-topics {
        padding: 25px 0 40px;
    }
}

@media (max-width: 500px) {
    .main-search-page .container .box .last-searches {
        margin-top: 20px;
    }

    .footer-part nav ul li a {
        font-size: .8em;
    }

    .footer-part .copyright-section {
        font-size: .7em;
        color: #606060;
        padding-top: 10px;
    }

    .header-part .mobile .logo img {
        max-width: 130px;
    }

    .main-search-page .container .box .last-searches .badge {
        font-size: .65em;
    }

    .footer-part {
        padding: 10px 0;
    }

    .main-search-page .container {
        min-height: calc(100vh - 222px);
    }

    .main-search-page {
        min-height: calc(100vh - 222px);
    }

    main {
        min-height: calc(100vh - 222px);
    }

    main .container {
        min-height: calc(100vh - 222px);
    }

    .main-search-page .container .box form .search-input {
        padding: 10px 110px 10px 50px;
        font-size: .9em;
    }

    .main-search-page .container .box form.pressed .search-input {
        height: 50px;
    }

    .main-search-page .container .box form.pressed .submit-button {
        height: 40px;
    }

    .main-search-page .container .box form .submit-button {
        font-size: .9em;
    }

    .header-part .select-lan {
        padding: 0 7.5px;
        height: 35px;
        font-size: 13px;
    }

    .header-part .computer .logo,
    .header-part .mobile .logo {
        justify-content: start;
    }
}