h1,
h2,
h3,
p {
    margin: 0;
}

input,
textarea,
button {
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 0;
    outline: none;
}

button,
button:focus {
    outline: none;
}

a:hover {
    text-decoration: none !important;

}

.hidden {
    display: none !important;
}

.w50 {
    width: 50%;
}

/* This used to work for parent element of button divs */

/* But it is not enough now, below dont hide play button parent div */

*::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::--webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works */

*::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}


/* #Helper classes
================================================== */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    text-decoration: none;
}

.center_them {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.vertical_centering_css3 {
    position: relative;
    float: left;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.horizontal_centering_css3 {
    position: relative;
    float: left;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.pointer {
    cursor: pointer;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.invisible {
    display: none;
}

.block {
    display: block !important;
}

.w100 {
    width: 100%;
}

.w100_important {
    width: 100% !important;
}

.center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.upper {
    text-transform: uppercase;
}

.bold {
    font-weight: bold;
}

.decor_none {
    text-decoration: none;
}

.border_none {
    border: 0 !important;
}

.box_sizing {
    box-sizing: border-box;
}

.overflow_hidden {
    overflow: hidden;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}

.mt30 {
    margin-top: 30px;
}

.rotate180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.black {
    color: #111111;
}

.white {
    color: #fff;
}


.mobile {
    display: none;
}



/* #Site styles
================================================== */
body {
    font-family: 'Cormorant Infant', serif;
    font-weight: normal;
    float: left;
    width: 100%;
    background: url("../img/inner_bg.png") repeat center;
    height: 100vh;
    height: 100dvh;
    background-size: contain;
    background-position: inherit;
    margin: 0px;
}

main {
    float: left;
    width: 100%;
}

section {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

header,
footer {
    position: relative;
    z-index: 1000;
}

.site-wrap {
    width: 600px;
    margin: 0 auto;
    margin-bottom: 110px;
}

.front-background {
    float: left;
    width: 100%;
    background-color: #352E2A;
    background-image: url("../img/login_bg.png");
    /* background-position: top; */
    min-height: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 30px 20px;
    box-sizing: border-box;
    background-position: inherit;
}

.top-part {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.top-part .top-img {
    width: 100px;
    height: 100px;
}

.top-part .top-img img {
    width: 100%;
}

.top-title {
    float: left;
    width: 100%;
    text-align: center;
}

.top-title span {
    color: rgba(234, 219, 179, 1);
    font-size: 16px;
    text-transform: uppercase;
    float: left;
    width: 100%;

}

.bottom-part {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 160px;
    gap: 20px;
}

.bottom-part a {
    float: left;
}
.yellow-text {
    color: rgba(234, 219, 179, 1);
}
/* .bottom-part span{
    float:left;
    width:100%;
    text-align: center;
    color:rgba(234, 219, 179, 1);
    font-size:16px;
} */
.bottom-part form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bottom-part form .inp-hld {
    float: left;
    width: 100%;
}

.bottom-part form .inp-hld input {
    float: left;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    padding-left: 10px;
    box-sizing: border-box;

}

.bottom-part .title {
    text-transform: uppercase;
    text-align: center;
    color: #352E2A;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.15px;
}

.soc-btns {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.soc-btns a {
    width: 45px;
    height: 45px;
}

.soc-btns a img {
    width: 100%;
}

.bottom-links {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.bottom-links .link {
    color: rgba(234, 219, 179, 1);
    color: 14px;
}

.inner-background {}

.inner-background .top-title span {
    color: rgba(53, 46, 42, 1);
    font-weight: bold;
}

/* .inner-background .bottom-part img{
    width:95%;
} */
.inner-background .bottom-part {
    margin-top: 5px;
    box-sizing: border-box;
}

.login.w50 img {
    width: 100%;
}

.listing-objects {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.object-box {
    width: 165px;
    float: left;
    background: url("../img/frame_objects.svg") no-repeat center;
    background-size: 100%;
    height: 280px;
    position: relative;
}

.object-box.lock {
    position: relative;
}

.reward-box.lock .img-reward {
    position: relative;
}

.object-box.lock:before {
    position: absolute;
    content: "";
    top: 55px;
    left: 55px;
    width: 50px;
    height: 50px;
    background: url("../img/lock.svg") no-repeat center;
    background-size: 100%;
    z-index: 99;
}

.reward-box.lock .img-reward:before {
    position: absolute;
    content: "";
    top: 30px;
    left: 27px;
    width: 50px;
    height: 50px;
    background: url("../img/lock.svg") no-repeat center;
    background-size: 100%;
    z-index: 99;
}

.object-box img {
    position: absolute;
    top: 40px;
    left: 20px;
    width: 75%;
    height: 42%;
    z-index: 0;
}

.object-box .bott-info-object {
    position: absolute;
    bottom: 48px;
    width: 70%;
    left: 25px;
}

.object-box .bott-info-object span {
    float: left;
    width: 100%;
    color: rgba(234, 219, 179, 1);
}

.object-box .bott-info-object span.title {
    text-transform: uppercase;
}

.object-box .bott-info-object span.object {
    font-size: 9px;
    float: left;
    width: 100%;
}

.object-box .bott-info-object span.city {
    font-size: 9px;
    float: left;
    width: 100%;
}

.object-box .bott-info-object span.left-line {
    height: 15px;
}

.object-box .bott-info-object span.left-line img {
    left: 0;
    top: 42px;
}

.top-part-box {
    width: 500px;
    float: left;
    background: url(../img/top.svg) no-repeat center;
    background-size: 100%;
    height: 240px;
    position: relative;
}

.top-part-box .img-part {
    position: absolute;
    top: 55px;
    left: 50px;
}

.top-part-box .text-wrap {
    position: absolute;
    top: 80px;
    left: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.top-part-box .text-wrap .title {
    font-size: 14px;
    color: rgba(234, 219, 179, 1);
    text-transform: uppercase;
}

.bottom-boxes {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.bottom-boxes .small-box {
    color: rgba(234, 219, 179, 1);
}

.four-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .25rem;
}

.four-boxes .img img {
    max-width: 100%;
}

/* .four-boxes .box{
    width:32%;
    float:left;
        display: flex;
    flex-direction: column;
    align-items: center;

    
} */
.txt-descr p {
    font-size: 17px;
    float: left;
    width: 100%;
}

.four-boxes .box span.img {
    width: 100%;
}

/* .top-part.tabs{
    float:left;
    width:100%;
}
.tabs-hld{
    float:left;
    width:100%;
    display:flex;
    gap:20px;
    justify-content: center;
    background: rgba(186, 177, 173, 1);
    height: 50px;
    border-radius:50px;
    line-height: 50px;
}
.tabs-hld .tab{
    width:33%;
    color:rgba(133, 125, 121, 1);
    font-size:12px;
    text-transform:uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    
}
.tabs-hld .tab.tab1, .tabs-hld .tab.tab2, .tabs-hld .tab.tab3{
    position:relative;
    padding-left:30px;
    box-sizing:border-box;
}
.tabs-hld .tab.tab1:before{
    position:absolute;
    content:"";
    left:12px;
    top:7px;
    width:35px;
    height: 35px;
    background:url("../img/tab_profile_off.svg") no-repeat center;
    background-size:100%;
}
.tabs-hld .tab.tab1.active:before{
    position:absolute;
    content:"";
    left:12px;
    top:7px;
    width:35px;
    height: 35px;
    background:url("../img/tab_profile_active.svg") no-repeat center;
    background-size:100%;
}
.tabs-hld .tab.tab2:before{
    position:absolute;
    content:"";
    left:12px;
    top:7px;
    width:35px;
    height: 35px;
    background:url("../img/tab_nagradi_off.svg") no-repeat center;
    background-size:100%;
}
.tabs-hld .tab.tab2.active:before{
    position:absolute;
    content:"";
    left:12px;
    top:7px;
    width:35px;
    height: 35px;
    background:url("../img/tab_nagradi_active.svg") no-repeat center;
    background-size:100%;
}
.tabs-hld .tab.tab3:before{
    position:absolute;
    content:"";
    left:12px;
    top:7px;
    width:35px;
    height: 35px;
    background:url("../img/tab_history_off.svg") no-repeat center;
    background-size:100%;
}
.tabs-hld .tab.tab3.active:before{
    position:absolute;
    content:"";
    left:12px;
    top:7px;
    width:35px;
    height: 35px;
    background:url("../img/tab_history_active.svg") no-repeat center;
    background-size:100%;
}

.tabs-hld .tab.active{
    background:rgba(255, 199, 83, 1);
    color:rgba(120, 68, 0, 1);
    border-top-left-radius:50px;
    border-bottom-left-radius:50px;
}
.tabs-hld .tab.tab3.active{
    background:rgba(255, 199, 83, 1);
    color:rgba(120, 68, 0, 1);
    border-top-right-radius:50px;
    border-bottom-right-radius:50px;
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
}
.tabs-hld .tab.tab2.active{
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
} */
.user-menu {
    box-sizing: border-box;
    margin-block: 1rem;
    background: rgba(186, 177, 173, 1);
    height: 50px;
    border-radius: 50px;
    /* line-height: 50px; */
    overflow: hidden;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0px 3px #AB9B8C;
}

.user-menu .menu-item {
    box-sizing: border-box;
    color: rgba(133, 125, 121, 1);
    font-size: clamp(10px, 2.75vw, 13px);
    text-transform: uppercase;
    padding: .5rem;
    box-shadow: 2px -47px 0 0 rgba(186, 177, 173, 1), 2px 47px 0 0 rgba(186, 177, 173, 1), 1px 0px 0 0 #DAD9DA, 2px 0px 0 0 #AB9B8C;
}

.user-menu .menu-item .icon {
    max-width: 100%;
    height: 2rem;
}

.user-menu .menu-item.active {
    box-sizing: border-box;
    background: rgba(255, 199, 83, 1);
    color: rgba(120, 68, 0, 1);
    font-weight: 700;
    border-top: 3px solid rgba(254, 183, 36, 1);
    border-bottom: 3px solid rgba(254, 183, 36, 1);
    padding-top: 1px;
    padding-bottom: 1px;
    box-shadow: 2px -47px 0 0 rgba(186, 177, 173, 1), 2px 47px 0 0 rgba(186, 177, 173, 1), 1px 0px 0 0 #DAD9DA, 2px 0px 0 0 #AB9B8C, -2px -47px 0 0 rgba(186, 177, 173, 1), -2px 47px 0 0 rgba(186, 177, 173, 1), -1px 0px 0 0 #AB9B8C, -2px 0px 0 0 #DAD9DA;
}

.user-menu .menu-item:last-of-type.active {
    padding-right: 1px;
    border-right: 3px solid rgba(254, 183, 36, 1);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.user-menu .menu-item:first-of-type.active {
    padding-left: 5px;
    border-left: 3px solid rgba(254, 183, 36, 1);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.name-part {
    display: flex;
    flex-direction: row;
    background: url("../img/name-background.svg") no-repeat center;
    width: 85%;
    height: 230px;
    background-size: contain;
    z-index: 99;
}

.name-part .img-part {
    flex: 1;
}

.name-part .info-part {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name-part .info-part .name {
    font-size: 16px;
    color: rgba(234, 219, 179, 1);
    text-transform: uppercase;
}

.name-part .info-part .row {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.two-rows-profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.name-part .info-part .row img {
    width: 30px;
    display: block;
}

.bottom-part .name-profile-part span {
    width: auto;
}

.name-profile-part {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.profile-wrap {
    float: left;
    width: 100%;
    background: rgba(53, 46, 42, 0.6);
    padding: 40px;
    padding-top: 130px;
    margin-top: -130px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

.profile-wrap form input {
    border: none;
    padding-left: 10px;
    box-sizing: border-box;
}

.profile-wrap button {
    border: none;
    background: none;
}

.profile-wrap form label {
    color: rgba(234, 219, 179, 1);
    font-size: 16px;
    float: left;
    width: 100%;
    margin-bottom: 3px;
}

.bottom-part span.change-title {
    color: rgba(234, 219, 179, 1);
    font-size: 16px;
    text-transform: uppercase;
}

.all-rewards {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 80px;
    box-sizing: border-box;
    gap: 18px;
}

.all-rewards .reward-box {
    width: 31%;
    background: rgba(53, 46, 42, 1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 55px;
    gap: 15px;
    padding-bottom: 15px;
    box-sizing: border-box;

}

.profile-wrap.smaller-cont {
    padding: 10px;
    box-sizing: border-box;
    margin-top: -130px;
    padding-top: 130px;
}

.profile-wrap.smaller-cont .no-items,
.profile-wrap.history-cont .no-items {
    font-size: 16px;
    color: rgba(234, 219, 179, 1);
    text-transform: uppercase;
    font-weight: 700;
    height: 3rem;
}

/* .profile-wrap.smaller-cont .img-reward{
    width: 100px;
    height: 100px;
    margin-top:-50px;
    position:relative;
}
.profile-wrap.smaller-cont .img-reward img{
    width:95%;
    border-radius:100%;
    border:5px solid rgba(255, 199, 83, 1);
}
.profile-wrap.smaller-cont .title{
    font-size:12px;
    color:rgba(215, 133, 13, 1);
} */
.map {
    float: left;
    width: 100%;
}

.map img {
    float: left;
    width: 100%;
}

.all-rows {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 30px;
}

.all-rows .row {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.all-rows .row:nth-child(even) {
    background: rgba(53, 46, 42, 1);
}

.all-rows .row:nth-child(odd) {
    background: rgba(53, 46, 42, 0.8);
}

.all-rows .history-img {
    width: 50px;
    height: 50px;
}

.all-rows .history-img img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid rgba(234, 219, 179, 1);
    box-sizing: border-box;
}

.profile-wrap.history-cont {
    padding: 0px;
    padding-top: 130px;
    box-sizing: border-box;
    margin-top: -130px;
}

.all-rows .history-title {
    float: left;
    color: rgba(234, 219, 179, 1);
    font-size: 12px;
    text-transform: uppercase;
}

.all-rows .punkt.minus {
    color: rgba(234, 219, 179, 1);
    font-size: 12px;
}

.all-rows .punkt.plus {
    color: rgba(137, 186, 38, 1);
    font-size: 12px;
}

.ticket-reward {
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: -10px;
    right: 0px;

}

.ticket-reward img {
    border: none !important;
    width: 100%;
}

.sum-punkts {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(234, 219, 179, 1);
    border-radius: 100%;
    bottom: -15px;
    right: -5px;
    text-align: center;
    line-height: 15px;
    color: rgba(53, 46, 42, 1);
}

.name-part-ranking {
    float: left;
    width: 100%;
    display: flex;
}

.name-part-ranking .img-part {
    width: 95px;
    height: 95px;
    border-radius: 100%;
    position: absolute
}

.name-part-ranking .img-part img {
    width: 95px;
    height: 95px;
    border-radius: 100%;
    border: 5px solid rgba(255, 199, 83, 1);
}

.name-part-ranking .info-part {
    float: right;
    width: 100%;
    height: 95px;
    padding-left: 100px;
    box-sizing: border-box;
    background: #000;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.name-part-ranking .two-rows-profile .row {
    display: flex;
    flex-direction: row;
}

.name-part-ranking .two-rows-profile .row img {
    width: 20px;
}

.profile-wrap.ranking-cont {
    margin-top: 20px;
    padding: 0;
    box-sizing: border-box;
}

.profile-wrap.ranking-cont .row .num span {
    font-size: 55px !important;
    float: left;
    width: 45px;
}

.profile-wrap.ranking-cont .all-rows .row {
    gap: 16px;
}

.profile-wrap.ranking-cont .all-rows .punkt {
    display: flex;
    flex-direction: column;
    min-width: 160px;
    flex: 1;
}

.profile-wrap.ranking-cont .all-rows .punkt img {
    width: 20px;
}

.profile-wrap.ranking-cont .all-rows .punkt .row-profile {
    display: flex;
    gap: 5px;
}

/* new */

button.login {
    outline: none;
    padding: 0;
    border: none;
    background: none;
}

.inner-background .two-rows-profile span {
    color: rgba(234, 219, 179, 1)
}

.scan-wrap {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: -100px;
    z-index: 999;
}

/* .bottom-part .title{
    float:left;
    width:100%;
    text-align:center;
    font-size:15px;
    line-height: 22px;
    color:rgba(53, 46, 42, 1);
} */
.top-info-wrap {
    float: left;
    width: 100%;
}

.top-info-wrap span.bigger {
    float: left;
    width: 100%;
    text-align: center;
    color: rgba(234, 219, 179, 1);
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 10px;

}

.top-info-wrap span.smaller {
    float: left;
    width: 100%;
    color: rgba(234, 219, 179, 1);
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
}

.profile-wrap.ranking-cont.punkts-wrap .punkt {
    gap: 10px;
}

.profile-wrap.ranking-cont.punkts-wrap .punkt span {
    color: rgba(234, 219, 179, 1);
}

/* new */
.img-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-part .img-wrap {
    max-width: 90%;
    aspect-ratio: 1;
    overflow: hidden;
    align-self: center;
    border-radius: 100%;
    border: 5px solid #FEB724;
    box-sizing: border-box;
}

.profile-wrap.ranking-cont .row-profile span {
    width: auto;
}

.monastery .bottom-part .title,
.poi .bottom-part .title {
    color: #352E2A;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    /* 120% */
    letter-spacing: 0.0125rem;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: .25rem;
}

.small-info .text {
    color: #352E2A;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.11px;
    text-wrap: nowrap;
}

.small-info .icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.small-info .icon {
    height: 100%;
    max-height: 1.125rem;
}

.test-box {
    position: relative;
}

.test-box .logo-container {
    display: flex;
    position: absolute;
    height: 100%;
    align-items: center;
}

.test-box .logo {
    display: block;
    max-height: 70%;
    object-fit: contain;
    margin-left: 5%;
}

.test-box .object-background {
    position: absolute;
    left: 0;
    width: 100%;
}

.test-box .text-wrap {
    position: absolute;
    top: 25%;
    right: 8%;
    width: 51%;
    height: 53%;
    display: flex;
    flex-direction: column;
    min-height: 40%;
    container-type: inline-size;
    justify-content: space-between;
}

.test-box .text-wrap .title {
    font-size: 14px;
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(234, 219, 179, 1);
    text-transform: uppercase;
}

.test-box .text-wrap .small-box {
    border-radius: 0.625rem;
    background: rgba(0, 0, 0, 0.46);
    font-size: clamp(12px, 2vw, 16px);
    padding-inline: clamp(5px, 2vw, 8px);
    padding-block: clamp(2px, 2vw, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.test-box .text-wrap .small-box img {
    aspect-ratio: 1;
    height: clamp(24px, 2vw, 32px);
}

.test-box .scan-codes {
    box-sizing: border-box;
    padding: 5px;
    display: flex;
    gap: .5rem;
    align-items: center;
}

.test-box .scan-codes img {
    display: block;
    /* width: 100%;
    height: 100%; */
    object-fit: contain;
}

.test-box .scan-codes .text {
    color: #EADBB3;
    font-size: 13px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: 0.13px;
    opacity: .9;
}

.dim-wrap {
    background: rgba(53, 46, 42, 0.6);
    border-radius: 10px;
    padding: .5rem;
    margin-top: 1.5rem;
}

.prizes-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: .5rem;
}

.prizes-wrap .reward-box {
    background: rgba(53, 46, 42, 1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding-bottom: 15px;
    box-sizing: border-box;
    margin-top: 30%;
    padding-inline: .75rem;
    color: #EADBB3;
}

.prizes-wrap .reward-box .img-reward {
    width: 100%;
    position: relative;
}

.prizes-wrap .reward-box .img-reward .hero {
    margin-top: -30%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    border-radius: 100%;
    border: 6px solid #FEB724;
    filter: drop-shadow(-4px 0px 6px rgba(0, 0, 0, 0.25));
    box-sizing: border-box;
    position: relative;
}

.prizes-wrap .reward-box .title {
    color: #EADBB3;
    font-size: clamp(13px, 2vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: clamp(13px, 2vw, 18px);
    letter-spacing: 0.11px;
    text-transform: uppercase;
    flex: 1;
    width: 100%;
}

.prizes-wrap .reward-box .info {
    border-top: 1px solid #918173;
    padding-top: .5rem;
    box-sizing: border-box;
    font-size: clamp(11px, 1vw, 14px);
    line-height: clamp(11px, 1vw, 14px);
    width: 100%;
}

.prizes-wrap .reward-box .info .coin {
    display: block;
    max-width: 100%;
    max-height: 1.5em;
}

.prizes-wrap .see-more {
    width: 100%;
}

.prizes-wrap .see-more img {
    width: 100%;
}

.rewards .header {
    margin-block: 1rem;
    color: #EADBB3;
    text-align: center;
}

.rewards .header .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.rewards .header .subtitle {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.15px;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #352E2A;
    border-bottom-color: #FEB724;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.ranking-rows {
    margin-top: 3.5rem;
    background: rgba(53, 46, 42, 0.6);
    border-radius: 10px;
    padding-top: 2rem;
}

.ranking-rows .row:first-of-type {
    position: relative;
    margin-top: -4rem;
    margin-bottom: 1rem;
    max-width: 94%;
    display: flex;
    align-self: center;
    border-radius: 250rem;
    background: unset;
    max-height: 62px;
    width: 100%;
    padding-right: .5rem;
    box-sizing: border-box;
}

.ranking-rows .row:first-of-type .place {
    display: none;
}

.ranking-rows .row:first-of-type .user-name {
    flex-grow: 1;
}

.ranking-rows .row:first-of-type .img-wrap {
    display: block;
    max-width: 27%;
    position: relative;
    overflow: unset;
    margin-right: .5rem;
}

.ranking-rows .row:first-of-type .img-wrap::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -5px;
    right: 5px;
    background: url("../../../public/box/img/fist_place.svg") no-repeat center;
    background-size: contain;
    width: 32px;
    height: 32px;
}

.ranking-rows .row:first-of-type .img-wrap img {
    max-width: 100%;
    width: 102px;
    border: clamp(3px, 1.25vw, 6px) solid #FEB724;
}

.ranking-rows .row .place {
    border-right: 1px solid #968971;
    color: #EADBB3;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
}

.ranking-rows .row .row-profile {
    color: #EADBB3;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.ranking-rows .row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    padding-block: 6px;
}

.ranking-rows .row:nth-child(odd) {
    background: rgba(53, 46, 42, 1);
}

.ranking-rows .row:nth-child(even) {
    background: rgba(53, 46, 42, 0.8);
}

.ranking-rows .row .img-wrap {
    grid-column: span 2;
    overflow: hidden;
    align-self: center;
}

.ranking-rows .row .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 50px;
    aspect-ratio: 1;
    border-radius: 100%;
    border: 3px solid #FEB724;
    box-sizing: border-box;
}

.ranking-rows .row .user-name {
    grid-column: span 4;
    color: #EADBB3;
    line-height: clamp(12px, 3.25vw, 14px);
    font-size: clamp(12px, 3.25vw, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.12px;
    place-self: center start;
}

.ranking-rows .row .collected {
    grid-column: span 3;
}

.ranking-rows .row .collected-row .icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 2em;
}

.ranking-rows .row .collected-row {
    color: #EADBB3;
    font-size: clamp(9px, 2.4vw, 10px);
    font-weight: 700;
    line-height: clamp(9px, 2.4vw, 10px);
    text-align: center;
    text-wrap: nowrap;
}