@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');

/*reset style start*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}

img {
    display: block;
}

/*reset style end*/
/*main style start*/
body {
    min-width: 320px;
    background: #394867;
    font-family: Arial, sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

html,
body,
.wrapper {
    height: 100%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
}

.submit-btn {
    display: none;
}

.redirect-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

/*main style end*/
/*header style start*/
.header-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px 20px 10px;
    background-color: #212A3E;
}

.header-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 5px;
    cursor: pointer;
}

.header-icon-img {
    max-height: 100%;
    max-width: 100%;
}

.header-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-align: center;
}

.header-item.item-sxm .header-icon {
    height: 40px;
    min-width: 80px;
    display: flex;
    gap: 10px;
    font-family: "Baloo 2", sans-serif;
    font-weight: 700;
    font-size: 20px;
    align-items: center;
    text-transform: uppercase;
}

.header-item.item-search .header-icon,
.header-item.item-hot .header-icon,
.header-item.item-sex .header-icon {
    height: 25px;
    width: 25px;
}

.header-item.item-search .header-text {
    color: #DD4B1A;
}

/*header style end*/
/*content section start*/
.content-section {
    padding-bottom: 20px;
}

.content-block {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 5px;
}

.content-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 50%;
    padding: 0 5px;
}

.content-column:last-child {
    display: none;
}

.content-item {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    background: #212A3E;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(34, 24, 28, 0.08);
    cursor: pointer;
}

.content-item:last-child {
    margin-bottom: 0;
}

.content-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0;
}

.content-header-photo {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.content-header-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.content-header-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.content-btn-block {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 5px;
}

.content-photo img {
    display: block;
    width: 100%;
}

.content-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 5px;
    box-shadow: 0 0 5px #fff;
}

.content-btn.btn-like {
    width: 32px;
    margin-right: 10px;
    background: url(img/icon-heart.png) no-repeat center center;
    background-size: 20px 20px;
}

.content-btn.btn-chat {
    flex: 1;
    padding-left: 32px;
    background: #DD4B1A url(img/icon-chat.svg) no-repeat 5px center;
    background-size: 20px 20px;
}

.content-img-template {
    display: none;
}

/*content section end*/
/*footer section start*/
.footer-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    background-color: #212A3E;
}

.footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.footer-item {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.footer-item:hover {
    text-decoration: underline;
}

/*footer section end*/
/*push banner start*/
.push-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    min-width: 280px;
    max-width: 560px;
    margin: auto;
    padding: 0 5px 5px;
    overflow: hidden;
    transform: translateY(-100%);
    animation: showPush 0.3s 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes showPush {
    to {
        transform: translateY(0);
    }
}

.push-wrapper.is-hidden {
    display: none;
}

.push-block {
    font-size: 12px;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    color: #000;
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.push-block .push-image {
    position: relative;
    width: 20%;
    min-width: 100px;
    border-radius: 6px;
    overflow: hidden;
}

.push-block .push-image img {
    width: 100%;
}

.push-block .push-content {
    flex-grow: 1;
    margin-left: 5%;
}

.push-block .push-title {
    margin-bottom: 10px;
    color: #DD4B1A;
    font-weight: 700;
}

.push-block .push-info {
    margin-bottom: 10px;
    color: #656565;
}

.push-block .push-user-name {
    font-weight: 700;
}

.push-block .push-btns-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.push-block .push-btn {
    width: 65%;
    margin: 0;
    min-width: auto;
    font-size: 14px;
    line-height: 1;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
}

.push-block .push-btn.yes-btn {
    background-color: #DD4B1A;
    color: #fff;
    text-transform: uppercase;
}

.push-block .push-btn.no-btn {
    background-color: #fff;
    color: #656565;
}

.push-block .push-btn.yes-btn:hover {
    background: #f1975e;
}

.push-block .push-btn.no-btn {
    width: 30%;
    margin-right: 5%;
}

/*push banner end*/
/*skip page btn start*/
.skip-page-btn {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 10px;
    right: 10px;
    background-color: #dd5454;
    border-radius: 6px;
    cursor: pointer;
    z-index: 110;
}

.skip-page-btn:before,
.skip-page-btn:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 25px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
}

.skip-page-btn:before {
    transform: rotate(-45deg);
}

.skip-page-btn:after {
    transform: rotate(45deg);
}

/*skip page btn end*/
/* animations start*/
@keyframes btn-icon {
    0% {
        opacity: .2;
        right: 3.5rem
    }

    50% {
        opacity: 1;
        right: 1.5rem
    }

    to {
        opacity: .2;
        right: 3.5rem
    }
}

/* animations end*/
@media screen and (min-width: 920px) {
    .header-section {
        padding: 20px 60px 20px 30px;
    }

    .header-item {
        padding: 0 10px;
    }

    .header-text {
        font-size: 16px;
    }

    .content-column {
        width: 33.33%;
    }

    .content-column:last-child {
        display: flex;
    }

    .footer-section {
        padding: 20px 30px;
    }
}