*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba($black, 0);
}
body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: #fff;
    color: #444;
    font-family: Arial,Helvetica,sans-serif;
}
aside, footer, header, main {
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 15px;
}
h1 {
    font-size: 2.1rem;
    line-height: 1.2;
}
a {
    color: #0090e3;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
h3 {
    margin:30px 0 10px 0;
}
h3 a {
    text-decoration: none;
}
.container {
    width: 1100px;
    max-width: 100%;
    margin: auto;
    display: flex;
}
@media screen and (max-width: 768px) {
    .container {
        display: block;
    }
}
header .container,
footer .container {
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
}
.btn {
    background: #0090e3;
    color: #fff;
    border-radius: 3px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
}
.btn:hover {
    text-decoration: none;
}
.btn-red {
    background: #f05555;
}
.btn svg {
    margin-right: 10px;
    fill: #000;
    width:18px;
    height: 18px;
}

/*** Start header ***/
header {
    background-color: #000;
    padding: 15px 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.1), inset 0 -1px 0 rgba(0,0,0,0.1);
}
.logo {
    height: 46px;
    margin-right: 50px;
    display: block;
}
@media screen and (max-width: 768px) {
    .logo {
        margin: auto auto 10px auto;
    }
}
.logo svg  {
    position: relative;
    top: -5px;
}
@media screen and (max-width: 768px) {
    .logo svg  {
        top: 0;
    }
}
.search-header {
    position: relative;
    width: 100%;
}
.search-header .input-group {
    border: 1px solid #ddd;
    border-radius: 50px;
    display: flex;
    background: #fff;
    align-items: center;
}
.search-header .input-group svg {
    margin: 0 5px 0 15px;
}
#search-header-input {
    padding:13px 10px;
    width: calc(100% - 40px);
    border: none;
    border-radius: 50px;
    outline:none;
}
#search-header-result {
    position: absolute;
    top: 55px;
    list-style: none;
    touch-action: manipulation;
    background: #fff;
    padding: 15px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0,0,0, 0.1);
}
@media screen and (max-width: 768px) {
    #search-header-result {
        width: calc(100vw - 40px);
    }
}
#search-header-result:after {
    transform: rotate(135deg);
    width: 12px;
    height: 12px;
    top: -7px;
    content: '';
    display: block;
    position: absolute;
    background: #fff;
    left: 48%;
    border: 1px solid #ddd;
    border-top: 0 none;
    border-right: 0 none;
}
#search-header-result ul {
    padding:0;
    margin:0;
    list-style:none;
}
#search-header-result ul li {
    border-bottom: 1px solid #e5e5e5;
    display: block;
    padding: .5rem 0;
}
#search-header-result ul li:last-child {
    border:none;
}
.main-nav {
    margin-left: 50px;
    order: 2;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .main-nav {
        margin: auto;
    }
}
.main-nav ul {
    display: flex;
    padding:0;
    margin:0;
}
.main-nav ul li {
    margin:0 15px;
    white-space: nowrap;
    list-style:none;
}
.main-nav ul li:first-child {
    margin-left: 0;
}
.main-nav ul li:last-child {
    margin-right: 0;
}
.main-nav ul li a{
    color: #fff;
    padding: 10px 0;
    display: inline-block;
}
/*** Start footer ***/
footer {
    background-color: #000;
    padding: 20px 0 120px 0;
    color: #fff;
}
footer .footer-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
footer .footer-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footer-links ul li {
    margin: 0 15px;
}
footer .footer-links ul.social li {
    margin: 0 10px;
}
footer .footer-links ul li:first-child {
    margin-left: 0;
}
footer .footer-links ul li:last-child {
    margin-right: 0;
}
footer .footer-links ul li a {
    color: white;
    padding:5px 0;
    display: inline-block;
}
footer .footer-links ul li a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    footer div {
        flex-direction: column;
        text-align: center;
    }
    footer .footer-links ul.social {
        margin-top: 10px;
    }
}
/*** Start content ***/
.main {
    width: 65%;
}
.full {
    width: 100%;
}
aside {
    width: 35%;
}
.main, aside {
    padding: 30px 20px;
}
@media screen and (max-width: 768px) {
    main, aside {
        width: 100%;
    }
}
aside .inner {
    margin-bottom: 30px;
}
aside .inner .title-holder {
    position: relative;
}
aside .inner .title {
    background: #fff;
    display: inline-block;
    font-weight: bold;
    padding-right: 15px;
    position: relative;
}
aside .inner ul {
    margin:0;
    padding: 15px 0;
    list-style:none;
    background: #fff;
    border-bottom: 2px solid #eee;
}
aside .inner ul li {
    margin-bottom: 10px;
    display: flex;
    line-height: normal; font-size: 0.9rem;
}
aside .inner ul li span {
    background: #f5c345;
    color: #333;
    padding: 0 15px;
    margin: 0 15px 0 0;
    border-radius: 3px;
    font-size: 0.9rem;
    height: 28px;
    display: inline-flex;
    align-items: center;
}
aside .inner ul li a {
    display: inline-block;
    margin-top: 6px;
}
.rating__stars {
    --star-size: 24px;
    --star-color: #ddd;
    --star-background: #ffbf00;
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    position: relative;
    top: 2px;
}
.rating__stars:before {
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive:before {
    display: block;
    content: "";
    padding-top: 56.25%;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

header h1 {
    padding: 0 16px;
}

header h1 a:hover {
    text-decoration: none;
}

.full.main ul li {
    list-style: none;
}

.main-search-input {
    display: none;
}