/*-----------------
global css
 -----------------*/
:root {
    --main-color: #bbb49d;
    --color-1: #d94879;
    --color-2: #f5ae10;
    --color-3: #09d69c;
    --bg-dark: #2b2c2f;
    --main-to-dark-color: var(--main-color);
    --dark-to-main-color: var(--bg-dark);
    --shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
    --black-900: #000000;
    --black-400: #555555;
    --black-100: #f7f7f7;
    --black-000: #ffffff;
    --black-alpha-100: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    outline: none !important;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    list-style: none;
}

.btn-1 {
    background-color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    color: var(--black-400);
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-black-300);
    font-weight: 500;
}

.btn-1:focus {
    box-shadow: var(--shadow-black-300);
}

.btn-1:hover {
    color: #ffffff;
    background-color: var(--main-color);
}

.btn-2 {
    background-color: var(--main-color);
    padding: 7px 20px;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    /*box-shadow: var(--shadow-black-300);*/
    font-weight: 500;
    margin-right: 2px;
    margin-left: 2px;
}

.btn-2:focus {
    box-shadow: none;
    outline: none;
}

.btn-2:hover {
    color: var(--main-color);
    background-color: var(--black-100);
}

.btn-like {
    padding: 7px 20px;
    border: none;
    border-radius: 10px;
    color: #4c89ca;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    font-weight: 500;
    opacity: 1 !important;
}

/*.btn-like:focus {*/
/*    box-shadow: var(--shadow-black-300);*/
/*}*/

.btn-like:hover {
    color: #4c89ca;
    /*background-color: #ffffff;*/
}

.btn-favorite {
    padding: 7px 20px;
    border: none;
    border-radius: 10px;
    color: #ffc107;
    font-size: 12px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    font-weight: 500;
}

.btn-favorite:focus {
    box-shadow: none;
    outline: none;
}

.btn-favorite:hover {
    color: #ffc107;
    background-color: #ffffff;
}

@keyframes spin_01 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounceTop_01 {
    0%, 100% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(0px);
    }
}

@keyframes bounceTop_02 {
    0%, 100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}

@keyframes bounceTop_03 {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0px);
    }
}

@keyframes pulse_01 {
    0% {
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.94);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes zoomInOut_01 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

body {
    font-family: "Gowun Dodum", sans-serif;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #ffffff;
    line-height: 1.5;
}

body.dark {
    background-color: var(--bg-dark);
    --black-100: rgba(255, 255, 255, 0.05);
    --black-000: var(--bg-dark);
    --main-to-dark-color: var(--bg-dark);
    --dark-to-main-color: var(--main-color);
    --shadow-black-100: var(--shadow-black-300);
    --black-alpha-100: rgba(255, 255, 255, 0.05);
    --black-900: #ffffff;
    --black-400: #bbbbbb;
}

/*----------------
custom css
 */
.c-div {
    padding: 10px;
    text-align: center;
}

.ribbon-wrapper {
    height: 70px;
    overflow: hidden;
    position: absolute;
    right: 13px;
    top: -3px;
    width: 75px;
    z-index: 10;
}

.ribbon-wrapper .ribbon {
    font-size: 0.8rem;
    color: #FFFFFF;
    line-height: 100%;
    padding: 0.375rem 0;
    position: relative;
    right: -4px;
    text-align: center;
    text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    top: 10px;
    -webkit-transform: rotate(
            45deg
    );
    transform: rotate(
            45deg
    );
    width: 92px;
    box-shadow: 4px 1px 3px 0px #777777;
}

.ribbon-wrapper .ribbon.bg-mylittle {
    background-color: var(--main-color);
}

.ribbon-wrapper .ribbon label {
    margin-bottom: 0;
    user-select: none;
}

.ribbon-wrapper .ribbon::before {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #9e9e9e;
    bottom: -3px;
    content: "";
    position: absolute;
}

.ribbon-wrapper .ribbon::before {
    left: 0;
}

.ribbon2-wrapper {
    height: 40px;
    width: 150px;
}

.ribbon2-wrapper .ribbon2 {
    box-shadow: var(--shadow-black-100);
    font-size: 0.8rem;
    color: #FFFFFF;
    line-height: 100%;
    padding: 0.375rem 0;
    position: relative;
    right: -4px;
    text-align: center;
    text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    top: 10px;
}

.ribbon2-wrapper .ribbon2 label {
    margin-bottom: 0;
    user-select: none;
}

.updated-wrapper, .notification-wrapper {
}

.updated-wrapper a, .notification-wrapper a, .updated-wrapper span {
    font-size: 13px;
    color: var(--black-400);
}

/*-----------------
preloader
 */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2100;
    background-color: var(--main-to-dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader span {
    display: block;
    height: 120px;
    width: 120px;
    background-color: var(--dark-to-main-color);
    border-radius: 50%;
    animation: zoomInOut_01 1s ease infinite;
    background-image: url("/static/img/mylittleranking.90cd3ed11ff5.png");
}

/*-----------------
navbar
 -----------------*/
.navbar {
    background-color: var(--main-color);
}

.navbar > .container {
    padding: 0 15px;
}

.navbar .navbar-brand {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
}

.navbar .nav-item {
    margin-left: 40px;
}

.navbar .nav-item .nav-link {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0;
    position: relative;
}

.navbar .nav-item .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.5s ease;
    transform: scale(0);
}

.navbar .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before {
    transform: scale(1);
}

.section-top-margin {
    margin-top: 55px;
}

.section-padding {
    padding: 10px 0;
}

.section-title {
    margin-bottom: 50px;
    margin-top: 50px;
}

.section-title h2 {
    font-size: 30px;
    color: var(--black-900);
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}

.section-title h2 span {
    color: #ffffff;
    margin-left: 5px;
    margin-right: 5px;
}

.owl-carousel .owl-dots {
    padding: 0 15px;
    text-align: center;
    margin-bottom: 10px;
}

.owl-carousel button.owl-dot {
    height: 6px;
    width: 24px;
    background: #dddddd;
    display: inline-block;
    margin: 0 4px;
    border-radius: 5px;
}

.owl-carousel button.owl-dot.active {
    background-color: var(--main-color);
}

/*-------about-section--------*/
.about {
    min-height: 100vh;
    padding: 150px 0;
    background-color: var(--main-to-dark-color);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.about-text h1 {
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

.about-text h4 {
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    margin: 45px 0 26px;
}

.about-text p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}

.about .about-btn {
    margin-top: 40px;
}

.about .about-btn .video-play-btn {
    margin-left: 15px;
    height: 50px;
    width: 50px;
    padding: 0;
    font-size: 16px;
    animation: pulse_01 2s ease infinite;
}

.about .about-btn .video-play-btn:hover {
    animation: none;
    box-shadow: var(--shadow-black-300);
}

.about .about-btn .video-play-btn i {
    line-height: 50px;
}

.about-img img {
    max-width: 250px;
    width: 100%;
    box-shadow: var(--shadow-black-100);
    border-radius: 32px;
    animation: bounceTop_01 3s ease infinite;
}

.about-img {
    position: relative;
}

.about-img .circle {
    position: absolute;
    z-index: 1;
    height: 400px;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-img .circle::before {
    content: '';
    position: absolute;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    left: 30px;
    top: 30px;
    transform-origin: 170px 170px;
    animation: spin_01 10s linear infinite;
}

/*--------------------------
desc section
 */
.desc {
    background-color: var(--main-to-dark-color);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.desc-text h1 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

.desc-text p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}

.desc-text p span {
    font-size: 18px;
    line-height: 28px;
    color: var(--black-400);
    margin: 0;
    font-weight: 600;
}

.desc-img {
    position: relative;
    padding: 10px;
}

.desc-img p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}

.desc-img p span {
    font-size: 18px;
    line-height: 28px;
    color: var(--black-400);
    margin: 0;
    font-weight: 600;
}

.progam-desc {
    background-color: var(--main-to-dark-color);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.progam-desc-text {
    text-align: center;
    padding: 10px;
}

.progam-desc-text h1 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
}

.progam-desc-text p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 300;
}

.progam-desc-text p span {
    font-size: 18px;
    line-height: 28px;
    color: var(--black-400);
    margin: 0;
    font-weight: 600;
}

.progam-desc-img {
    position: relative;
    padding: 10px;
}

/*--------------------------
ranking-popup
 */
.ranking-popup {
    padding: 30px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.ranking-popup-inner {
    width: 100%;
    height: 70%;
    max-width: 480px;
    position: relative;
}

.ranking-popup .ranking-popup-close {
    position: absolute;
    right: 50%;
    top: -70px;
    height: 30px;
    width: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    color: #ffffff;
}

.ranking-popup .iframe-box {
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.ranking-popup #pop-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.ranking-popup-inner .fa-times:before {
    font-size: 70px;
}

/*---------------------------
video popup
 */
.video-popup {
    padding: 30px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.video-popup-inner {
    width: 100%;
    height: 70%;
    max-width: 900px;
    position: relative;
}

.video-popup .video-popup-close {
    position: absolute;
    right: 50%;
    top: -70px;
    height: 30px;
    width: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    color: #ffffff;
}

.video-popup .iframe-box {
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.video-popup #player-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-popup-inner .fa-times:before {
    font-size: 70px;
}

/*-----------------------
features section
 */
.features .feature-item {
    background-color: var(--black-100);
    box-shadow: var(--shadow-black-300);
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100px;
}

/*.features .feature-item::before,*/
/*.features .feature-item::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*    border-radius: 50%;*/
/*    transition: all 0.5s ease;*/
/*    opacity: 0;*/
/*}*/

/*.features .feature-item:hover::before {*/
/*    left: 10px;*/
/*    opacity: 1;*/
/*}*/

/*.features .feature-item::before {*/
/*    height: 20px;*/
/*    width: 20px;*/
/*    background-color: var(--main-color);*/
/*    left: -20px;*/
/*    top: 40%;*/
/*}*/

/*.features .feature-item::after {*/
/*    height: 30px;*/
/*    width: 30px;*/
/*    background-color: var(--main-color);*/
/*    right: -30px;*/
/*    top: 80%;*/
/*}*/

/*.features .feature-item:hover::after {*/
/*    opacity: 1;*/
/*    right: -15px;*/
/*}*/

.features .feature-item .icon {
    height: 55px;
    width: 60px;
    margin: 0 auto 0;
    text-align: center;
    font-size: 35px;
    color: var(--main-color);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.features .feature-item .icon::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.features .feature-item:hover .icon {
    color: #ffffff;
    font-size: 30px;
}

.features .feature-item:hover .icon::before {
    left: 0;
    border-radius: 50%;
    opacity: 1;
}

.features .feature-item .icon i {
    line-height: 60px;
}

.features .feature-item h3 {
    font-size: 18px;
    color: var(--black-900);
    font-weight: 500;
    text-transform: capitalize;
}

.features .feature-item p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--black-400);
    margin: 0 0 15px;
}

.features .feature-item .feature-link {
    color: var(--main-color);
}

/*-------------------
search section
 */
.search {
    background-color: var(--black-100);
}

/*----------------------
ranking section
 */
.ranking {
    background-color: var(--main-color);
}

.raking-card-wrap {
    margin-bottom: 30px;
    align-self: center;
}

.ranking-card {
    background-color: var(--black-100);
    box-shadow: var(--shadow-black-300);
    border-radius: 10px;
    min-height: 365px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .ranking-card {
        min-height: 100%;
    }
}

.ranking-card .ranking-header {
    padding: 20px 30px;
    /*border-bottom: 1px solid var(--black-alpha-100);*/
}

.ranking-card .ranking-header h3 {
    text-align: center;
    font-size: 22px;
    color: var(--black-900);
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.ranking-card .ranking-header h3 a {
    color: var(--black-900);
}

.ranking-card .ranking-body {
    padding: 10px 30px;
    min-height: 120px;
}

.ranking-card .ranking-body ul {
}

.ranking-card .ranking-body ul li {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-400);
    padding: 5px 0 5px 0;
    border-bottom: 2px solid var(--black-alpha-100);
    line-height: 25px;
    position: relative;
    word-break: break-all;
}

.ranking-card .ranking-body ul li:last-child {
    border-bottom: none;
}

.ranking-card .ranking-body ul li i {
    color: var(--main-color);
    font-size: 18px;
}

.ranking-card .ranking-body .ranking-li {
    display: flex;
    margin: 10px 0 10px 0;
}

@media (max-width: 767px) {
    .ranking-card .ranking-body .ranking-li {
        display: list-item;
    }
}

.ranking-card .ranking-body .ranking-image {
    text-align: center;
    align-self: center;
}

.ranking-card .ranking-body .ranking-image img {
    border-radius: 10%;
    width: 80px;
    height: 80px;
}

.ranking-card .ranking-body .ranking-tags {
    color: var(--color-1);
    text-align: center;
    align-self: center;
}

.ranking-card .ranking-body .ranking-tags a {
    color: var(--color-1);
}

.ranking-card .ranking-footer {
    /*padding: 10px 30px;*/
    text-align: center;
}

/*------------
rankingcard detail
*/
.detail-wrap {
    align-self: center;
}

.detail-title {
    text-align: center;
    font-size: 40px;
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 20px;
}

.detail-desc {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    background-color: var(--black-100);
    box-shadow: var(--shadow-black-300);
    border-radius: 10px;
}

/*------------
footer
 */
.footer {
    background-color: var(--main-color);
    padding: 70px 0;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 15px 0 15px;
    text-transform: capitalize;
}

.footer-col p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 26px;
    margin: 0;
}

.footer-col ul {
    margin: 0;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    display: block;
    text-transform: capitalize;
    transition: all 0.5s ease;
    text-decoration: none;
}

.footer-col ul li a:hover {
    padding-left: 5px;
}

.footer .notification-text {
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .copyright-text {
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 10px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/*--------------------
toggle theme - light and dark mode
 */
.toggle-theme {
    position: fixed;
    right: 0;
    top: calc(50% - 20%);
    height: 40px;
    width: 40px;
    background-color: var(--dark-to-main-color);
    z-index: 1200;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: var(--shadow-black-300);
    font-size: 22px;
    text-align: center;
}

/*-------------------
login
 */
.login-wrapper {
    text-align: center;
}

.login-wrapper a {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
}

.login-wrapper a img {
    height: 50px;
}

.login-wrapper a span {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

/*--------------------
pagination
 */
.page-item {
    font-size: 17px;
}

.page-item .page-link {
    color: var(--main-color);
}

.page-item.active .page-link {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

/*--------------------
reponsive
 */
@media (max-width: 991px) {
    .navbar-toggler {
        /*background-color: var(--dark-to-main-color);*/
        /*box-shadow: var(--shadow-black-300);*/
        height: 34px;
        width: 44px;
        padding: 0;
        font-size: 17px;
        color: #ffffff;
    }

    .navbar-nav {
        /*background-color: var(--dark-to-main-color);*/
        /*box-shadow: var(--shadow-black-300);*/
    }

    .navbar .nav-item {
        margin: 0;
        padding: 5px 15px;
    }

    .navbar .navbar-shrink .navbar-toggler,
    .navbar .navbar-shrink .navbar-nav {
        background-color: var(--main-color);
    }

    .about-img .circle {
        height: 320px;
        width: 320px;
    }

    .about-img .circle::before {
        left: 18px;
        top: 18px;
        transform-origin: 142px 142px;
    }

    .about-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .about-text {
        margin-bottom: 80px;
    }

    .footer-col {
        margin-bottom: 30px;
        margin-left: 10px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .desc-text {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .about-text h1 {
        font-size: 30px;
    }

    .about-text p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 25px;
    }
}

.category_a {
    color: var(--black-900);
    font-size: 1.5rem;
    margin: 5px 10px 5px 10px;
}

.category_a span {
    font-size: 0.875rem
}

.search_category {
    text-align: center;
}

.search_category button {
    margin-left: 10px;
}

.highlight__mark {
    background: #ffc107;
    padding: 1px 3px;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.highlight__mark:before{
    position: absolute;
    display: block;
    content: "";
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -5px;
    overflow: hidden;
    border: 5px solid transparent;
    border-bottom-color: #ffc107;
}

.highlight__info{
    background: var(--main-color);
    padding: 1px 3px;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.most_replayed__mark {
    background: #dc3545;
    padding: 1px 3px;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.most_replayed__mark:before{
    position: absolute;
    display: block;
    content: "";
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -5px;
    overflow: hidden;
    border: 5px solid transparent;
    border-bottom-color: #dc3545;
}

.kr__mark {
    background: #5267ff;
    padding: 1px 5px;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.us__mark {
    background: #b569a1;
    padding: 1px 5px;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.popular__mark {
    background: #45a942;
    padding: 1px 5px;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    border: none;
}

