* {
    box-sizing: border-box;
}
body,
html {
    width: 100%;
    padding: 0;
    margin: 0;
    min-height: 100%;
    font-family: "Inter";
    background: #fff;
    font-size: 13px;
}
.wrapper{
    max-width: 100%;
    width: 1380px;
    margin: 0 auto;
    padding: 15px;
    padding-bottom: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.main{
    flex: 1;
}
.user-points{
    font-weight: 600;
    color: #F9F9FF;
    font-size: 20px;
}
.user-points span{
    background-color: #F9F9FF;
    color: #6D6DD5;
    padding: 11px 16px;
    margin: 0 10px;
    border-radius: 18px;
}
.main-quest-body__content{
    display: flex;
    align-items: start;
    padding: 25px;
}
.answer-variants{
    flex: 1;
}
.quest-radio.is-right label{
    background: #DAFFDD;
    background: radial-gradient(circle,rgba(218, 255, 221, 1) 0%, rgba(189, 233, 193, 1) 100%);
}
.main-quest__answers{
    flex: 1;
    padding-left: 25px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}
.main-quest-body__content img{
    width: 40%;
    border-radius: 25px;
}
.header{
    margin: 0;
    padding: 0;
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    align-items: center;
    justify-content: space-between;
}
.banner{
    width: 100%;
}
.header H1{
    flex: 1;
    margin-left: 15px;
    font-size: 40px;
    font-weight: 300;
    color: darkblue;
    text-align: right;
}
p.greeting{
    display: block;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 15px;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}
.menu{
    background: #f1f1f1;
}
.menu:after{
    content:"";
    display: block;
    clear: both;
}

.menu a{
    display: block;
    float: left;
    padding:15px;
    text-decoration: none;
    color: gray;
}
.menu a:hover{
    color: dodgerblue;
}
.menu a.exit{
    float: right;
}
.menu a.active{
    color: dodgerblue;
}
table.content{
    width: 100%;
    border-collapse: collapse;
}
table.content td, table.content th{
    padding: 15px;
    font-size: 14;
    text-align: left;
}
table.content td.min, table.content th.min{
    width: 1%;
    white-space: nowrap;
    text-align: center;
}
table.content tr{
    border-bottom: 1px solid #e5e5e5;
}
table.content td a{
    display: block;
    padding: 4px;
    background: orangered;
    color: #fff;
    text-decoration: none;
    text-align: center;
    opacity: 0.6;
    transition: 0.3s;
    font-size: 10px;
}

table.content td a:hover{
    opacity: 1;
}



.messages {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 350px;
    max-height: 100%;
    overflow-y: auto;
    padding: 15px;
}

.messages .alert {
    box-shadow: 1px 0 4px #ccc;
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    font-weight: 700;
    overflow-wrap: break-word;

}
.alert-danger {
    color: red;
}

.alert-success {
    color: green;
}
.alert-info {
    color: dodgerblue;
}
.email-verified{
    color: green;
}
.email-unverified{
    color: orangered;
}
input:not([type="checkbox"]), textarea{
    padding: 10px;
    font: inherit;
    font-size:14px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}
input[type*="datetime"]{
    padding: 9px 10px;
}
textarea{
    width: 100%;
    resize: vertical;
    min-height: 100px;
}
label{
    display: block;
    margin-bottom: 15px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 3px;
}
.label span, .checkbox span{
    display: block;
    font-size: 12px;
    color:dodgerblue;
    font-weight: 700;
    margin-bottom: 5px;
}
.checkbox span{
    margin-bottom: 0;
}
.label input:not([type="checkbox"]){
    width: 100%;
}
label.checkbox{
    display: flex;
    align-items: center;
}
label.checkbox span{
    flex: 1;
    margin-left: 5px;
    font-size: 14px;
    font-weight: normal;
}
label.checkbox input[type="checkbox"]{
    width: 14px;
    height: 14px;
}
td input[type="text"]{
    width: 100%;
}
.btn{
    font: inherit;
    font-size:14px;
    padding: 10px;
    outline: none;
    text-decoration: none;
    cursor:pointer;
    border: none;
    opacity: 0.8;
}
.btn:hover{
    opacity: 1;
}
.btn-ulpoad{
    margin: 0;
}
.btn-ulpoad input{
    display: none;
}
.btn-green{
    background: green;
    color: #FFF;
}
.btn-red{
    background: orangered;
    color: #FFF;
}
.btn-blue{
    background: dodgerblue;
    color: #FFF;
}
fieldset .btn{
    margin: 15px 0;
}
fieldset{
    padding: 15px;
    border:1px solid #e5e5e5;
    margin-bottom: 15px;
}
legend{
    color: dodgerblue;
    font: inherit;
    font-weight: 700;
}
.form-buttons{
    display: flex;
    justify-content: space-between;
}
.drop-answer{
    cursor: pointer;
}
.preloader {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(29, 29, 29, 0.527);
}
.preloader img{
    width: 50px;
}
.hidden{
    display: none;
}
.uploaded{
    max-width: 100%;
    margin: 15px auto;
    display: block;
}
.img-td{
    max-height: 20px;
}
.history-answer{
    padding: 4px;
    background: #ffd4d4;
    font-size: 10px;
}
.history-answer__right{
    background: #ddfddd;
}
img.preview{
    cursor: pointer;
}
.nav__dynamic{
    float: right;
}
.nav:after{
    content: "";
    display: block;
    clear: both;
}
.nav{
    padding: 0px 15px;
}
.nav a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000;
    margin: 0;
    float: left;
    font-weight: 600;
    font-size: 20px;
}
.nav a.active{
    color: #000082;
    text-shadow: 1px 0px #ccc;
}
H2{
    font-size: 48px;
    font-weight: 600;
    color: #000;
}
.main-quest__answers .price{
    display: inline-block;
    padding: 8px 20px;
    color: #FFF;
    font-size: 20px;
    border-radius: 30px;
    box-shadow: 1px 0 12px #00000066;
}
.main-quest__answers .price span{
    font-size: 16px;
}
.main-quest__header .price{
    display: flex;
    align-items: center;
    padding: 10px;
    background: #ebf5ff;
}
.main-quest__header p{
    margin: 0;
    padding: 0;
    flex: 1;
    font-weight: 700;
}
.main-quest-header__buttons{
    flex: 1;
}
.main-quest__header .title{
    color: #FFF;
    font-size: 20px;
    margin-left: 10px;
}
.main-quest__header{
    padding: 10px;
    border-radius: 30px;
    align-items: center;
    display: flex;
}
.main-quest-header__buttons{
    display: flex;
    align-items: center;
    justify-content: right;
}
.main-quest-header__buttons > *{
    margin-left: 25px;
}
.main-quest-header__buttons button.rules, .main-quest-header__buttons a.btn-login{
    background: transparent;
    border: 2px solid #F9F9FF;
    color: #FFF;
    font-weight: 600;
    padding: 10px 25px;
    font-size: 20px;
    border-radius: 18px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}
.main-quest-header__buttons a.btn-login{
    color: #6D6DD5;
    background: #F9F9FF;
}

.quest{
    font-weight: 600;
    font-size: 32px;
    margin: 25px 0;
}
.main-quest__body{
    border-radius: 30px;
    background: #F9F9FF;
    overflow: hidden;
}
.main-quest__answers input[type="radio"]{
    border: 1px solid #FFF;
    background: #FFF;
    width: 20px;
    height: 20px;
    margin: 0;
    margin-right: 15px;
    cursor: pointer;
}
.switcher{
    text-align: center;
}
.back-btn{
    background: transparent;
    border: 2px solid #000082;
    color: #000082;
    font-weight: 600;
    padding: 10px 25px;
    font-size: 20px;
    border-radius: 18px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    display:inline-block;
    margin: 25px auto;
}
.should-auth{
    color: #A34444;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    margin-top: 25px;
}
.main-quest__answers label:last-child{
    border-bottom: none;
}
/* .main-quest .btn{
    width: 100%;
    margin-top: 15px;
} */
.main-quest{
    margin-bottom: 100px;
}
.top-list{
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.top-list__part{
    align-self: stretch;
    width: 33%;
    border:1px solid #000082;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
}
.top-list__part h3{
    margin:-1px;
    font-size:16px;
    font-weight: 700;
    text-align: center;
    background: #6D6DD5;
    background: radial-gradient(circle,rgba(109, 109, 213, 1) 0%, rgba(0, 0, 130, 1) 100%);
    border-radius: 20px;
    padding: 15px;
    color:#FFF;
}
.top-list__users{
    padding: 20px 15px;
}
.top-list{
    margin-bottom: 100px;
}
.main-quest__body .comment{
    margin: 0;
    margin-top: 25px;
    font-size: 20px;
    font-weight: 600;
}
.rating-header{
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 100px;
}
.shop-items{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 100px;
}
.shop-item{
    width: Calc(25% - 10px);
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 15px;
    position: relative;
    height: 400px;
}
.shop-item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(0 0 0 / 80%) 100%);
    z-index: 1;
}
.shop-item__info{
    bottom:0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
}
.shop-item img{
    width: 100%;
}
.shop-item H3{
    margin: 0;
    padding: 0px 15px;
    font-weight: 600;
    color: #FFF;
    font-size: 32px;
    flex-wrap: wrap;
}
.shop-item .action-block{
    padding: 15px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
}
.action-block__content{
    display: flex;
    align-items: center;
    justify-content: right;
}
.shop-item p{
    font-weight: 400;
    font-size: 16px;
    color: #FFF;
    margin:0;
    padding: 0 15px;
}
.action-block span{
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 10px;
}
.shop-item .action-block button{
    background: #F9F9FF;
    color: #16168E;
    font-weight: 700;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    padding: 4px 20px;
    margin-left: 5px;
    cursor: pointer;
}
.shop-item .action-block button:disabled{
    opacity: .4;
}
.shop-item .action-block p{
    margin: 0;
}
.shop-item > p{
    margin: 0;
    padding: 15px;
    font-style: italic;
    font-size: 12px;
}
.code{
    display: inline-block;
    margin: 15px 0px;
    padding: 3px 6px;
    background: #CCC;
    color: #000;
    font-weight: 700;
}
.messages .alert{
    position: relative;
}
.messages .alert i{
    position: absolute;
    top: 5px;
    right: 5px;
    color: red;
    cursor: pointer;
}
.profile-block{
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 15px;
}
.profile-block h3{
    font-weight: 300;
    margin: 0;
    font-size: 18px;
    margin-bottom: 15px;
    color: dodgerblue;
}
.profile-order__item{
    display: flex;
    align-items: start;
}
.profile-order-item__image{
    width: 40%;
}
.profile-order-item__image img{
    width: 100%;
    height: auto;
}
.profile-order-item__text{
    width: 60%;
    padding-left: 15px;
}
.profile-order-item__text h5{
    font-weight: 300;
    color: navy;
    font-size: 20px;
    margin:0;
    margin-bottom: 15px;
}
table.content tr:has(.isRight){
    background: #d9ffd9;
}
table.content tr:has(.isWrong){
    background: #fbd7d7;
}
table.content td a.top-a{
    text-decoration: none;
    background: none;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
}
.top-list__users .top-a{
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    color: #000082;
    font-weight: bold;
}
.user-form{
    display: block;
    width: 100%;
    margin: 25px auto;
    overflow: hidden;
    border-radius: 20px;
    padding: 25px;
}
.user-form label{
    background: none;
    padding: 0;
}
.user-form label span{
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
}
.user-form label input, .user-form button{
    background: #D3D3F5;
    padding: 15px;
    font:inherit;
    font-size: 20px;
    outline: none;
    width: 100%;
    border: none;
    border-radius: 10px;
}
.user-form button{
    margin-top: 15px;
    color: #4A4ABB;
    background: #FFF;
    cursor: pointer;
}
.user-form label input:focus{
    background: #FFF;
}

.nav__dynamic img, .logo img{
    height: 57px;
}

.gradient{
    background: #000082;
    background: linear-gradient(90deg,rgba(0, 0, 130, 1) 0%, rgba(109, 109, 213, 1) 100%);
}
.gradient-v{
    background: #000082;
    background: linear-gradient(180deg,rgba(0, 0, 130, 1) 0%, rgba(109, 109, 213, 1) 100%);
}


.background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000096;
    display: flex;
    align-items: center;
    justify-content: center;
}
.help-block{
    background: #FFF;
    max-width: 1380px;
    border-radius: 30px;
}
.help-block__header, .help-block-header__title, .help-block-header__close{
    display: flex;
    align-items: center;
}
.help-block__header{
    border-radius: 30px;
    padding: 10px;
    font-size: 20px;
    color: #FFF;
}
.help-block-header__title, .help-block-header__close{
    width: 50%;
}
.help-block-header__close{
    justify-content: right;
}
.help-block-header__title span{
    margin-left: 10px;
}
.help-block-header__close span{
    margin-right: 10px;
}
.help-block-header__close img{
    cursor: pointer;
}
.help-block__content{
    font-size: 20px;
    padding: 40px;
}
.help-block__content li{
    margin-bottom: 15px;
}
.help-block__content li:last-child{
    margin-bottom: 0px;
}
a.rules{
    cursor: pointer;
}

.quest-radio {
    margin: 0;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.quest-radio input[type=radio] {
	display: none;
}
.quest-radio label {
    background-color: #E8E8FE;
    padding: 15px;
    display: block;
    cursor: pointer;
    position: relative;
    margin-right: 0;
    line-height: 18px;
    user-select: none;
    padding-left: 50px;
    margin: 0;
    width: 100%;
}
.btn-send-answer{
    width: auto;
    display: inline-block;
    border-radius: 18px;
    font-weight: 600;
    color: #F1F2FF;
    font-size: 20px;
    padding: 13px 20px;
    box-shadow: 1px 0 9px #00000066;
}
input:checked ~ label{
    background-color: #D0D0FD;
}
.quest-radio label:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    position: absolute;
    left: 0;
    bottom: 1px;
    background: #FFF;
    border-radius: 50%;
    top: Calc(50% - 13px);
    left: 15px;
}

/* Checked */
.quest-radio input[type=radio]:checked + label:before {
    background-color: #D0D0FD;
    border: 6px solid #FFF;
    width: 14px;
    height: 14px;
}

/* Hover */
/* .quest-radio label:hover:before {
	filter: brightness(120%);
} */

/* Disabled */
.quest-radio input[type=radio]:disabled + label:before {
	filter: grayscale(100%);
}

.auth-buttons{
    display: flex;
    justify-content: space-between;
}
.auth-buttons a{
    border: 2px solid #000082;
    color: #FFF;
    font-weight: 600;
    width: Calc(50% - 5px);
    text-align: center;
    padding: 10px 25px;
    font-size: 20px;
    border-radius: 18px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    background: #000082;
    background: linear-gradient(90deg, rgba(0, 0, 130, 1) 0%, rgba(109, 109, 213, 1) 100%);
}
.auth-buttons a.active{
    color: #000082;
    border-color: #000082;
    background: #FFF;
}
.login-form_container{
    width: 800px;
    margin: 100px auto;
}
.shop-buttons{
    display: flex;
    justify-content: right;
}
.shop-buttons > * {
    margin-left: 10px;
}
.shop-login{
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    text-decoration: none;
    border-radius: 20px;
}
.shop-login.gradient{
    padding: 15px 100px;
}
.user-points.gradient-v{
    padding: 0px 15px;
    border-radius: 20px;
    box-shadow: 1px 0 4px #ccc;
    height: 50px;
    display: flex;
    align-items: center;
}
.user-points.gradient-v span{
    background-color: #F9F9FF;
    color: #6D6DD5;
    margin: 0 10px;
    border-radius: 15px;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-login{
    border: 2px solid #5353C2;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 20px;
    color: #5353C2;
    cursor: pointer;
    text-decoration: none;
    border-radius: 15px;
}
.footer{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    min-height: 250px;
}
.profile-content H2{
    font-size: 48px;
    font-weight: 600;
    text-align: center;
}
.profile-main__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.profile-block-header{
    font-weight: 600;
    font-size: 20px;
}
.profile-info .profile-block-header{
    font-size: 48px;
    margin-right: 80px;
}
.profile-info .profile-block-data{
    font-size: 36px;
}
.profile-main-content__block > img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
}
.profile-block-button{
    position: absolute;
    top: 25px;
    right: 25px;
    background: #FFF;
    cursor: pointer;
    border-radius: 15px;
    padding: 10px 12px;
}
.profile-block-data{
    font-weight: 700;
    font-size: 48px;
}
.profile-block-data span{
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-align: right;
}
.profile-main-content__block{
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 25px;
    color: #FFF;
    min-height: 200px;
    position: relative;
}
.profile-block-data{
    position: absolute;
    bottom:25px;
    right:25px;
}
.profile-main__content > div{
    align-self: stretch;
    width: Calc(50% - 5px);
}
.profile-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.profile-group > div{
    width: Calc(50% - 5px);
    align-self: stretch;
}

.order-item{
    display: flex;
    padding: 25px;
    border-radius: 20px;
    overflow: hidden;
    align-items: stretch;
    margin-bottom: 15px;
}
.order-item__first{
    width: 25%;
}
.order-item__first, .order-item__second{
    position: relative;
}
.order-item__number{
    font-weight: bold;
    color: #FFF;
    font-size: 48px;
    position: absolute;
    top: -25px;
    left: -25px;
    background-color: #000082;
    border-bottom-right-radius: 20px;
    widtH: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-item__second{
    flex: 1;
    padding-left: 15px;
}
.order-item img{
    width: 100%;
}
.order-item__name > * {
    margin: 0;
    color: #FFF;
}
.order-item__name H4{
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 48px;
}
.order-item__name p{
    font-weight: 400;
    font-size: 20px;
}
.order-item__code{
    position: absolute;
    bottom: 0;
    left: 15px;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
}
.order-item__status{
    position: absolute;
    bottom: 0;
    right: 0px;
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
}

.order-item__date{
    position: absolute;
    top: 0;
    right: 0px;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
}
.profile-pass{
    padding-right: 80px;
}
.profile-pass .profile-block-button{
    padding: 2px 3px;
}
.profile-pass label{
    background: none;
    padding: 0;
}
.profile-pass label span{
    color: #FFF;
}
.profile-pass form{
    position: relative;
}
.profile-block-exit{
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 50px;
}
.profile-block-exit a{
    margin: 0 auto;
}
.cookie-window{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background-color: #FFF;
    box-shadow: 1px 0 4px #5a5a5a;
    display: flex;
    width: 100%;
    padding: 10px 15px;
    align-items: center;
    justify-content: space-between;
}
.cookie-window p{
    flex: 1;
    padding: 0;
    margin: 0;
    margin-right: 5px;
    font-weight: 600;
    color: #000082;
    font-size: 14px;
}

.cookie-window button{
    background: #000082;
    color: #FFF;
    cursor: pointer;
    border:none;
    padding: 10px 15px;
    width: 100px;
}
.footer{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.footer a{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}
.footer a.active{
    text-shadow:       0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #fff,
      0 0 82px #fff,
      0 0 92px #fff,
      0 0 102px #fff,
      0 0 151px #fff;
}
.static-page{
    font-size: 20px;
    margin-bottom: 60px;
}
.static-page H1{
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
}


@media (max-width: 1024px) {
    .shop-item{
        width: Calc(33% - 10px);
        height: 300px;
    }
}

@media (max-width: 768px) {
    .shop-item{
        width: Calc(50% - 10px);
        height: 200px;
    }
}
