* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
}

:root {
    --black-blur: rgb(227, 227, 227);
    --bgc-1: #e7e7e7;
    --bgc-3: #d9d4d4;
    --bgc-2 : #ebebeb;
}

.header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    background-color: var(--bgc-1);
    width: 100%;
    z-index: 1;
}   

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 24px 44px;
}

.navbar__menu {
    background-color: white;
    display: flex;
    height: 48px;
    align-items: center;
    box-shadow: var(--bgc-3);
    border-radius: 30px;
}

.navbar__menu-optinal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.navbar__menu-optinal-title {   
    padding:0 16px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.navbar__menu-optinal-title:first-child {
    border-right: 1px solid var(--bgc-3);
}

.navbar__menu-optinal-title:last-child {
    border-left: 1px solid var(--bgc-3);
}

.navbar__menu-icon-home {
    width: 48px;
    margin: 4px -12px 0 8px;
}

.navbar__menu-search-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border-style: none;
    background-color: #ff385c; 
    margin-right: 8px;
}

.navbar__menu-search-btn-icon {
    font-size: 12px;
    color: white;
}

.navbar__more {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    color: rgb(233, 80, 110);
    padding-right: 100px;
}

.navbar__more-world,
.navbar__more-host,
.navbar__more-help {
    padding: 8px 10px;
    border-radius: 36px;
    background-color: #f6efef;
}

.app {
    background-color: white;
}

.app__container {
    margin-top: 92px;
    padding: 40px 92px;
    list-style: none;
}

.list {
    margin: 20px;
}

.list-item {
    display: flex;
    gap: 10px;
    position: relative;
}   

.list__header {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
}

.list__header-title {
    font-weight: 500;
    font-size: 18px;
}

.list__header-title-icon {
    font-size: 16px;
}

.control-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--bgc-3);
    color: var(--bgc-3);
    background-color: var(--bgc-2);
}

.control-btn-active {
    background-color: var(--black-blur);
    color: rgb(18, 15, 13);
}

.item {
    width: 182px;
    position: relative;
}

.item__container {
    padding: 4px;
}

.item__img {
    width: 100%;
    height: 170px;
    border-radius: 16px;
}

.item__container-title {
    font-size: 14px;
    font-weight: 400;
}

.item__container-describe {
    font-size: 12px;
    opacity: 0.8;
}

.start {
    font-size: 14px;
    opacity: 0.85;
}

.item__favorite-title {
    width: 124px;
    background:var(--bgc-1);
    border: 20px;
    position: absolute;
    top: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    padding: 4px 10px;
    border-radius: 16px;
    left: 10px;
}

.item__favorite-icon {
    position: absolute;
    top: 10px;
    font-size: 20px;
    right: 10px;
    color:var(--bgc-1);
}

.item__favorite-icon:hover {
    transform: scale(1.2);
}
