.main-container {
    max-width: 1350px;
    padding: 0 15px 40px;
    margin: 0 auto;
}
/*------------header-block-----------*/
.header-block {
    display: flex;
    flex-flow: row nowrap;
    margin-top: 45px;
    padding: 40px 30px 35px 50px;
    background-color: #b2d235;
    border-radius: 12px;
    color: #662d91;
    box-sizing: border-box;
}

.header-block__left {
    flex: 1 1 760px;
}

.header-block__title {
    margin: 0;
    font-family: "toxy", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 900;
    color: #652381;
}

.header-block__text {
    margin: 30px 0;
    padding: 0;
    max-width: 560px;
    font-size: 24px;
    line-height: 1.4;
}

.header-block__btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(75,22,94,1) 0%, rgba(101,35,129,1) 65%);
    font-family: 'muller bold';
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 1px -1px 4px #000;
    transition: box-shadow 0.35s;
}

.header-block__btn:hover {
    box-shadow: 1px -1px 4px transparent;
    color: #FFF;
}

.header-block__right {
    flex: 1 1 600px;
    position: relative;
}

.header-block__img {
    position: absolute;
    right: 4%;
    bottom: -35px;
    width: 100%;
}
/*------------header-block END----*/
/*----bonus-status-------*/
.bonus-status {
    margin-top: 60px;
    text-align: center;
}

.status__title {
    font-size: 36px;
    margin: 0;
    font-family: "toxy", sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
    color: #652381;
}

.bonus-status__inner {
    display: flex;
    flex-direction: column-reverse;
}

.bonus-status__inner label {
    cursor: pointer;
    display: block;
    padding: 10px;
    width: 100%;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    box-sizing: border-box;
    text-align: center;
}

.bonus-status__inner label {
    margin-top: -49px;
    background: #FFF;
    box-shadow:  0 -29px 37px 3px #fff;
    color: #50009b;
    transition: color .4s;
    z-index: 1;
}

.bonus-status__inner label:hover {
    color: #b3d235;
}

.bonus-status__inner input{
    display: none;
}

.bonus-status__inner .drop-arrow {
    width: 35px;
    fill: rgba(101,35,129,1);
    transform: rotateZ(90deg);
    transition: fill 0.4s;
}

.bonus-status__inner label:hover .drop-arrow {
    fill: #b3d235;
}

.table__inner {
    max-height: 520px;
	opacity: 1;
	overflow: hidden;
	will-change: max-height;   
	transition: all .3s ease;
	box-sizing: content-box;
    color: #652381;
    font-size: 18px;
}

.bonus-status__inner input:checked + label + .table__inner {
    max-height: 1900px;
}

.bonus-status__inner input:checked + label {
    opacity: 0;
}

.bonus-status__table {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-collapse: separate;
    border-spacing: 10px;
}

.table__privilege-column {
    text-align: start;
    text-transform: uppercase;
}

.bonus-status__table tbody tr {
    background-color: #efefef;
    transition: box-shadow .3s, background-color .3s;
}

.bonus-status__table tbody tr:nth-child(2n) {
    background-color: #fbfbfb;
}

.bonus-status__table tbody tr:hover {
    background-color: #fff;
    box-shadow: 0 0 8px 2px #652381;
}

.head-color-privilege {
    background: linear-gradient(90deg, rgba(75,22,94,1) 0%, rgba(101,35,129,1) 65%);
    color: #FFF;
}

.head-color-bronze {
    background: linear-gradient(90deg, rgba(239,131,44,1) 0%, 
                                       rgba(243,153,83,1) 14%, 
                                       rgba(242,147,67,1) 34%, 
                                       rgba(245,170,121,1) 53%, 
                                       rgba(241,141,63,1) 73%, 
                                       rgba(246,173,122,1) 89%, 
                                       rgba(225,123,47,1) 100%);
}

.head-color-silver {
    background: linear-gradient(90deg, rgba(128,132,130,1) 0%, 
                                       rgba(191,187,182,1) 14%, 
                                       rgba(166,168,171,1) 36%, 
                                       rgba(240,239,240,1) 58%, 
                                       rgba(198,200,204,1) 75%, 
                                       rgba(222,222,218,1) 89%, 
                                       rgba(128,132,130,1) 100%);
}

.head-color-gold {
    background: linear-gradient(90deg, rgba(239,165,44,1) 0%, 
                                       rgba(247,216,78,1) 14%, 
                                       rgba(252,198,61,1) 34%, 
                                       rgba(249,237,125,1) 53%, 
                                       rgba(253,200,60,1) 73%, 
                                       rgba(255,236,119,1) 89%, 
                                       rgba(227,168,47,1) 100%);
}

.bonus-status__table th {
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'muller extrabold';
    border: none;
    font-weight: 900;
}

.bonus-status__table td {
    padding: 15px;
}

.bonus-status__table th:nth-child(n+2) {
    width: 165px;
}

.bonus-status__table img {
    width: 40px;
    height: 40px;
}

.table__footnote {
    text-align: start;
    margin: 10px 0 0;
}
/*----------bonus-status END-----------*/
/*----------status---------------------*/
.status {
    margin-top: 65px;
}

.acor-container {
    margin: 35px 0;
}

.acor-inner {
    margin-bottom: 35px;
}

.acor-container label {
    cursor: pointer;
    display: block;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    box-sizing: border-box;
    text-align: center;
}

.status__acor-container label {
    background: linear-gradient(90deg, rgba(75,22,94,1) 0%, rgba(101,35,129,1) 65%);
    box-shadow: 2px 6px 5px 2px #662d913b, 0px 6px 9px 2px#662d913b;
    color: #FFF;
    line-height: 1;
    transition: color .35s, box-shadow .35s;
}
.acor-container input:checked + label {
    box-shadow: 2px 6px 5px 2px transparent, 0px 6px 9px 2px transparent;
}

.status__acor-container label:hover {
    color: #b3d235;
}

.acor-container input{
    display: none;
}

.acor-body {
    max-height: 0;
    margin-top: -10px;
    padding: 0 15px;
	opacity: 0;
	overflow: hidden;
	will-change: max-height;   
    border-radius: 0 0 20px 20px;
	transition: all .3s ease;
	box-sizing: content-box;
    color: #652381;
    font-size: 18px;
}

.status__acor-body {
    border-left: 3px solid rgba(75,22,94,1);
    border-right: 3px solid rgba(101,35,129,1);
    border-bottom: 3px solid rgba(101,35,129,1);
}

.acor-container input:checked + label + .acor-body {
    max-height: 3900px;
    padding: 50px 15px 15px;
    opacity: 1;
}

.status__description {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 0 0 25px 10px;
    gap: 20px;
}

.status__wrap-img {
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.status__img {
    width: 100%;
    height: 100%;
}

.status__text {
    flex: 1 1 200px;
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
}

.status__table {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 10px;
    text-transform: uppercase;
}

.status__table thead tr {
    background-color: #efefef;
    text-align: center;
}

.status__table tbody tr {
    background-color: #fbfbfb;
}

.status__table tbody tr:nth-child(2n) {
    background-color: #efefef;
}

.status__table th,
.status__table td {
    font-size: 24px;
    padding: 15px;
    text-align: center;
}

.status__table td:nth-child(2n+1) {
    font-size: 30px;
}

.status__table td {
    text-align: center;
}
/*----------status END---------------------*/
/*----------bonus-section---------------------*/
.bonus-section {
    margin-top: 65px;
}

.bonus__title{
    padding: 12px;
    border-radius: 8px;
    background: #b2d235;
    box-shadow: 2px 6px 5px 2px #662d913b, 0px 6px 9px 2px#662d913b;
    text-align: center;
}

.riles_link {
    display: block;
    padding: 15px;
    border: 2px solid rgba(101,35,129,1);
    border-radius: 8px;
    box-shadow: 2px 2px 4px rgba(101,35,129,1);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #652381;
    transition: background-color .3s, color .3s;
}

.riles_link:visited {
    color: #652381;;
}

.riles_link:hover {
    background-color:rgba(101,35,129,1);
    color: #fff;
}

.status__text a {
    font-weight: 900;
    text-decoration: underline;
}
/*----------bonus-section END---------------------*/
@media (max-width: 1004px) {
    .bonus-status__inner {
        justify-content: space-around;
    }
}

@media (max-width: 990px) {
    .header-block {
        padding: 20px;
    }
    .header-block__left {
        flex: 1 1 auto;
        text-align: center;
    }
    .header-block__right {
        display: none;
        flex: 1 1 auto;
    }
    .header-block__text {
        margin: 30px auto;
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .header-block__title {
        font-size: 40px;
    }
    .header-block__text {
        font-size: 20px;
    }
    .header-block__btn {
        font-size: 22px;
    }
    .bonus-status__table {
        font-size: 14px;
    }
    .bonus-status__table th {
        padding: 10px;
        font-size: 16px;
        font-weight: 700;
    } 

    .status__text {
        font-size: 18px;
    }
    .status__table th,
    .status__table td {
        font-size: 18px;
    }

    .status__table td:nth-child(2n+1) {
        font-size: 20px;
    }
    .status__title {
        font-size: 30px;
	}
}

@media (max-width: 540px) {
    .header-block__title {
        font-size: 26px;
    }
    .header-block__text {
        font-size: 18px;
        margin: 18px auto;
    }
    .header-block__btn {
        font-size: 14px;
    }
    .bonus-status,
    .status,
    .bonus-section {
        margin-top: 35px;
    }
    
    .bonus-status__inner {
        margin-top: 30px;
    }
    .status__title {
        font-size: 24px;
    }

    .acor-container {
        margin-top: 20px;
    }
    .acor-inner{
        margin-bottom: 25px;
    }
    .acor-container label {
        font-size: 16px;
    }

    .acor-body {
        padding: 0 15px;
        font-size: 14px;
    }
    .acor-container input:checked + label + .acor-body {
        padding: 45px 15px 15px;
    }

    .bonus-status__table {
        margin-top: 0;
        border-spacing: 5px;
       
    }
    .bonus-status__table th,
    .bonus-status__table td {
        padding: 8px;
        font-size: 12px;
    }
    .bonus-status__table th {
        font-size: 14px;
    }
    .status__description {
        flex-direction: column;
        gap: 12px;
    }
    .status__text {
        flex: 1 1 auto;
        text-align: center;
    }
    .bonus-status__table img {
        width: 30px;
        height: 30px;
    }
    .riles_link {
       padding: 12px;
       font-size: 16px;
    }
}

@media (max-width: 426px) {
    .privilege__item {
        flex-direction: column;
    }
    .privilege__title {
        text-align: center;
    }
    .bonus-status__table th {
        font-size: 12px;
    }
    .bonus-status__table td {
        font-size: 10px;
    }
    .table__inner {
        max-height: 400px;
    }
    .bonus-status__table img {
        width: 20px;
        height: 20px;
    }
    .status__table th,
    .status__table td {
        font-size: 14px;
    }
}

@media (min-width: 760px) {
    .menu-top {
        display:none;
    }
}

ul li:before {
    content: none;
}

.right_block ul {
    margin: 0;
}
.right_block ul li {
    padding: 0;
}

.menu-top {
    margin-top: 30px;
    padding: 10px;
    border-radius: 8px;
    font-family: "muller";
    border: 2px solid #652381;
}

.menu-top__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 5px 0;
    list-style-type: none;
}

.menu-top__item {
    border-radius: 8px;
    padding-bottom: 7px;
    color: #652381;
    overflow: hidden;
    transition: background-color .4s ease, color .4s ease;
}

.menu-top__item:not(:last-child) {
    margin-right: 5px;
}

.menu-top__link {
    display: block;
    padding: 8px 8px 1px;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #652381;
    text-decoration: none;
    transition: border-bottom .4s;
}

.menu-top__link:hover {
    border-bottom: 1px solid transparent;
}

.menu-top__item:hover {
    background-color: #652381;
    color: #FFF;
}

.menu-top__item:active {
    background-color: #652381;
    color: #b3d235;
}
.menu-top .menu-top__link:hover {
    color: #FFF !important;
}

@media (max-width: 540px) {
    .menu-top__link {
        font-size: 14px;
        padding: 8px 5px 1px;
    }
}