
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 0;
    outline: 0;
}

a {
    text-decoration: none;
    color:#c2bea0;
    transition: .3s;
}

a:hover {
    color:white;
}

li {
    list-style: none;
}

html {
    height: 100%;
}

img {
    max-width: 100%;
}

body {
    min-height: 100%;
    position: relative;
    color: white;
    width: 100%;
    font-family: 'Tektur', sans-serif;
    text-align: center;
    font-size: 14px;
    overflow-x: hidden;
    background-color: black;
    background-image: url(../img/bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    padding-bottom: 200px;
    font-weight: 600;
}

.content {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
    position: relative;
    z-index: 999;
}

.material-symbols-outlined {
    vertical-align: middle;
    margin-right: 10px;
    width: 24px;
}

section#userPanel {
    padding: 20px 0;
}

div.title,
section#userPanel ul {
    display: inline-block;
    border-style: solid;
    border-width: 15px 27px 14px;
    -moz-border-image: url(../img/userPanel.png) 15 27 14 repeat stretch;
    -webkit-border-image: url(../img/userPanel.png) 15 27 14 repeat stretch;
    -o-border-image: url(../img/userPanel.png) 15 27 14 repeat stretch;
    border-image: url(../img/userPanel.png) 15 27 14 fill repeat stretch;
    color:#c2bea0;
}

section#userPanel ul > li {
    display: inline-block;
}

section#userPanel ul > li > a {
    text-transform: uppercase;
}

section#userPanel ul > li:not(:last-of-type) {
    margin-right: 15px;
}
section#menu {
    display: block;
    border-style: solid;
    border-width: 47px 109px 45px;
    -moz-border-image: url(../img/menu.png) 47 109 45 repeat stretch;
    -webkit-border-image: url(../img/menu.png) 47 109 45 repeat stretch;
    -o-border-image: url(../img/menu.png) 47 109 45 repeat stretch;
    border-image: url(../img/menu.png) 47 109 45 fill repeat stretch;
    white-space: nowrap;
}
section#menu ul.ff {
    display: inline;
}

section#menu ul.ff > li {
    display: inline-block;
}

section#menu ul.ff > li > a {
    display: block;
    padding: 0 10px;
    text-transform: uppercase;
}

section#alert {
    display: block;
    border-style: solid;
    border-width: 27px;
    -moz-border-image: url(../img/border.png) 27 repeat round;
    -webkit-border-image: url(../img/border.png) 27 repeat round;
    -o-border-image: url(../img/border.png) 27 repeat round;
    border-image: url(../img/border.png) 27 fill repeat round;
    margin-bottom: 30px;
}

div.title {
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 30px;
}

ul#cities,
ul#districts {
    display: block;
    padding-bottom: 30px;
    margin:-5px;
}

ul#cities > li,
ul#districts > li {
    display: inline-block;
    margin:5px;
}

ul#cities > li > a,
ul#districts > li > a {
    display: block;
    border-radius: 15px;
    border: 1px solid transparent;
    padding: 5px 10px;
    color: white;
}

ul#cities > li.selected > a,
ul#districts > li.selected > a,
ul#cities > li > a:hover,
ul#districts > li > a:hover {
    border: 1px solid white;
}

ul#products {
    margin-bottom: -40px;
}

ul#products > li {
    display: inline-block;
    width: 210px;
    margin: 0 10px 40px;
}

ul#products > li div.productSize,
ul#products > li div.productImage,
ul#products > li div.productName {
    margin-bottom: 10px;
}

ul#products > li div.productPrice {
    font-size: 140%;
}

ul#products > li div.productSize {
    font-size: 90%;
    margin-top: 3px;
    color: #5c590e;
}

.block {
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    color:#c2bea0;
    border-style: solid;
    border-width: 15px 27px 14px;
    -moz-border-image: url(../img/userPanel.png) 15 27 14 repeat stretch;
    -webkit-border-image: url(../img/userPanel.png) 15 27 14 repeat stretch;
    -o-border-image: url(../img/userPanel.png) 15 27 14 repeat stretch;
    border-image: url(../img/userPanel.png) 15 27 14 fill repeat stretch;
    text-transform: uppercase;
}

.block:hover {
    color: white;
}

ul#products > li div.productBuy .block {
    display: block;
}

li.more {
    position: relative;
}

li.more span {
    display: none;
}

li.more > ul {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.8);
    padding: 0 10px;
    transform: translate(0,100%);
    min-width: 200px;
    max-width: 400px;
    white-space: normal !important;
}

li.more > ul > li,
li.more > ul > li > a {
    display: block;
    text-align: right;
    opacity: 1;
}

li.more > ul > li > a {
    padding:10px 0;
    color: white;
}

li.more > ul > li > a img {
    display: none;
}

.review-rating li {
    display: inline-block;
}

.review-rating-item {
    width: 29px;
    height: 27px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(../img/rating.png);
    margin-right: 2px;
}

.review-rating-1 .review-rating-item:nth-child(1) {
    background-position: bottom;
}

.review-rating-2 .review-rating-item:nth-child(n+1):nth-child(-n+2) {
    background-position: bottom;
}

.review-rating-3 .review-rating-item:nth-child(n+1):nth-child(-n+3) {
    background-position: bottom;
}

.review-rating-4 .review-rating-item:nth-child(n+1):nth-child(-n+4) {
    background-position: bottom;
}

.review-rating-5 .review-rating-item:nth-child(n+1):nth-child(-n+5) {
    background-position: bottom;
}

div.reviews-form {
    border: 1px solid #cacaca;
    background-color: #edeff2;
    min-width: 300px;
    max-width: 800px;
    width: 100%;
    padding: 10px;
}

.review-form-rating-label {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.review-form-label {
    font-size: 24px;
}

.review-form-rating-check:checked + .review-form-rating-label > .review-rating-item,
.review-form-rating-check:checked ~ .review-form-rating-label > .review-rating-item {
    background-position: bottom;
}

.review-form-rating-label > span.review-rating-item {
    display: block;
}

.review-form-rating {
    direction: rtl;
    text-align: right;
    margin-right: 20px;
}

input.review-form-rating-check {
    position: absolute;
    opacity: 0;
}
section#reviews {
    text-align: center;
}

section#reviews a.btn {
    margin: 0 0 20px;
}

section#reviews li:last-of-type .review-main {
    margin-bottom: 0;
}

section#reviews .review-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: table;
    width: 100%;
}

section#reviews .review-name {
    font-size: 150%;
}

section#reviews .review-main {
    word-break: break-word;
    /*margin-bottom: 30px;
    padding: 20px 0;*/
    position: relative;
    text-align: left;
}

section#reviews .review-date {
    color: #9b5a0a;
    margin-top: 5px;
}

/*section#reviews .review-main:after {
    position: absolute;
    content: " ";
    width: 100%;
    left: 0;
    top: -10px;
    height: 1px;
    background-color: rgba(255, 255, 255, .5);
}*/

section#reviews .review-header .left {
    text-align: left;
}

section#reviews .review-header .right {
    text-align: right;
}

section#reviews .review-header .left,
section#reviews .review-header .right {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

section#cabinet div.pager,
section#reviews div.paginator {
    display: inline-block;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

ul.yiiPager a {
    border: 0 !important;
    font-size: 20px !important;
    padding: 0 !important;
    color: white  !important;
    text-decoration: none !important;
}

ul.yiiPager li {
    position: relative;
    width: 15px !important;
    height: 40px !important;
    line-height: 44px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    text-align: center !important;
    margin-top: 2px;
}

ul.yiiPager > li.selected > a {
    color: white  !important;
    background: transparent !important;
}

ul.yiiPager li.next,
ul.yiiPager li.previous {
    position: relative !important;
    vertical-align: bottom !important;
    margin-bottom: 2px;
}

ul.yiiPager li.previous a,
ul.yiiPager li.next a,
ul.yiiPager a {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
    content: "" !important;
    top: 0 !important;
    left: 0 !important;
}

ul.yiiPager li.previous a,
ul.yiiPager li.next a {
    font-size: 14px !important;
    color: white  !important;
}

ul.yiiPager li.first,
ul.yiiPager li.last {
    display: none !important;
}

ul.yiiPager li.next {
    position: relative !important;
    vertical-align: bottom !important;
}

section#addreview,
section#check,
section#login,
section#cap,
section#registration {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.border {
    position: relative;
    border-style: solid;
    border-width: 27px;
    -moz-border-image: url(../img/border.png) 27 repeat round;
    -webkit-border-image: url(../img/border.png) 27 repeat round;
    -o-border-image: url(../img/border.png) 27 repeat round;
    border-image: url(../img/border.png) 27 fill repeat round;
}

.tinynav {
    display: none;
}

/*ul#sDistricts > li a,
.border .block {
    background-color: #ffb200 !important;
    color:black !important;
}*/

.border .block span {
    background-color: #9b5a0a;
    color:white;
}

section#comments ul#commentsList > li:nth-child(2n) {
    background-color: rgba(0,0,0,.2) !important;
}

section#reviews .block {
    margin-bottom: 30px;
}

section#reviews li.review {
    background: rgba(255, 255, 255, .1);
    padding: 20px;
    margin-bottom: 40px;
}

section#reviews ul > li.review:last-of-type {
    margin: 0;
}

section#reviews ul > li .review-reply {
    background: rgba(255, 255, 255, .05);
    padding: 10px;
    margin-top: 10px;
}

section#addreview {
    text-align: center;
}

section#addreview textarea {
    height: 200px;
}

section#addreview > div.wrap {
    /*max-width: 50%;*/
    margin-left: auto;
    margin-right: auto;
}

section#addreview form > ul li.rating > div.review-form-rating {
    text-align: center;
}

section#addreview form > ul,
section#addreview form > ul > li:first-of-type {
    margin-bottom: 20px;
    clear: both;

}

section#addreview form > ul > li:first-of-type {
    text-transform: uppercase;
}

li.captcha {
    position: relative;
}

li.captcha img {
    position: relative;
    margin: 0 0 20px;
    background: white;
}

section#universal {
    text-align: left;
}


.flash,
.errorSummary,
.errorSummary {
    text-align: left;
    background: rgba(255, 0, 0, .6);
    padding: 10px;
    margin: 0 0 20px;
}

.flash li,
.errorSummary li,
.errorSummary li {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    font-weight: normal !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit !important;
}

.flash p,
.errorSummary p,
.errorSummary p {
    font-weight: bold;
    margin: 0 0 20px !important;
}

.flash ul,
.errorSummary ul,
.errorSummary ul {
    margin: 0 !important;
}

section#login form > ul li:first-of-type,
section#registration form > ul li:first-of-type,
section#check form > ul li:first-of-type {
    text-transform: uppercase;
    margin: 0 0 20px;
}

section#check form > ul li:first-of-type {
    text-align: center;
}

section#login form > ul,
section#registration form > ul,
section#check form > ul {
    margin: 0 0 20px;
}

span.light {
    display: block;
    font-size: 25px;
    margin: 10px 0;
    color: #c2bea0;
    font-weight: bold;
}

div.separate {
    height: 20px;
}

section.border p a:not(.block) {
    color: white;
    text-decoration: underline;
}

section#cabinet {
    text-align: left;
    text-shadow: none;
}

section#cabinet div.form {
    width: 95%;
    padding: 0;
}

section#cabinet table.orders {
    text-align: left;
    width: 100%;
}

ul#replies > li.admin div.body,
section#cabinet table.orders tr.type1 > td:nth-child(5),
section#cabinet table.orders thead {
    background-color: rgba(0, 0, 0, .3);
    color:white;
}

section#cabinet table.orders {
    border-collapse: collapse;
}

section#cabinet table.orders a {
    text-decoration: underline;
    color: #c2bea0
}

section#cabinet table.orders td,
section#cabinet table.orders > thead th {
    border: 1px solid #c2bea0;
    padding: 5px;
    vertical-align: top;
}

.table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
}

section#mobile {
    display: none;
}

div.flash {
    text-align: left;
    background-color: rgba(0, 255, 0, .6) !important;
    padding: 10px !important;
    margin: 20px 0 !important;
    color: white !important;
}

div.flash b {
    font-weight: 900;
}

div.flash.flash-error {
    background: rgba(255, 0, 0, .6) !important;
    color: white !important;
}

ul.slideMenu {
    display: none;
    width: 85%;
    margin: 0 auto;
    padding: 10px;
    background: rgba(0, 0, 0, .6);
    border-left: 3px solid white;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
}

ul.slideMenu a {
    text-transform: uppercase;
    font-size: 20px;
    padding: 5px;
    margin: 5px;
    display: block;
    border-bottom: 1px dashed white;
    color: white;
}

ul.slideMenu > li:last-of-type a {
    border-bottom: 0;
}

section#mobile a.block {
    display: block;
    font-weight: bold;
    font-size: 150%;
    margin-top: -3px;
    padding: 20px;
    border-radius: 0;
    text-transform: uppercase;
}

section#mobile {
    margin: 40px 0;
}

div.pager,
div.paginator {
    border: 0;
    zoom: .8;
    margin-top: 30px;
}

section#mobile {
    position: relative;
}

.tinynav {
    width: 100%;
    padding: 10px;
}

.input {
    font-family: inherit;
    font-size: inherit;
    border: 0;
    outline: 0;
    display: block;
    padding: 15px;
    color: white;
    width: 100%;
    background-color: rgba(194,190,160,.8);
    border-radius: 10px;
}

#chooserMobile {
    margin-bottom: 40px;
}

@media (max-width: 1024px) {

    .content {
        padding: 0 20px;
    }

    section#addreview, section#check, section#login, section#cap, section#registration {
        width: 100%;
    }
}

@media (max-width: 770px) {

    .tinynav {
        display: block;
        margin-bottom: 20px;
    }

    section#userPanel ul > li {
        display: block;
        margin: 0 0 10px 0;
    }

    section#menu,
    ul#cities, ul#districts {
        display: none !important;
    }

    section#userPanel > ul {
        text-align: left;
    }

    section#mLogo,
    section#userPanel > ul, section#userPanel > ul > li,
    section#mobile {
        display: block;
    }


    section#reviews .review-header {
        padding: 0;
        margin: 0;
    }

    section#check,
    section#login,
    section#cap,
    section#registration {
        width: 100%;
    }

    section#reviews .review-header .left,
    section#reviews .review-header .right {
        display: block;
        width: 100%;
        text-align: center;
    }

    ul.review-rating {
        margin: 20px 0;
    }

    section#reviews > form > ul {
        margin: 20px 0 0;
    }

    section#reviews .title {
        margin: 0 0 20px;
    }

    section#addreview li {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        margin: 0 0 10px;
    }

    section#addreview form > ul li.rating > div.review-form-rating {
        margin: 0;
    }

    section#addreview form ul {
        margin-bottom: 20px;
    }

    section#reviews a.block {
        margin: 0 0 20px;
    }

    section#menu > ul > li a {
        font-size: 14px;
    }

    section#index ul#products {
        text-align: center;
    }

    section#reviews .review-main {
        padding: 30px 0 0;
    }

    section#reviews .review-main:after {
        top: -10px;
    }
}
 
@media (max-width: 500px) {
    body:before {
        background-position: top 50px left 90%, top center;
    }

    section#userPanel {
        padding-right: 0;
    }

    section#cd {
        margin-top: 0;
        padding: 0;
    }

    ul#products > li {
        margin: 0 10px 30px;
    }

    ul#products li div.buy a.block {
        display: inline-block;
        text-transform: uppercase;
    }

    ul#products li div.buy a.block img {
        display: none;
    }

    .review-rating,
    .rating {
        zoom: .7;
    }

    section#mobile .block {
        padding: 20px;
    }

    .block {
        display: inline-block;
    }
}

/* Tickets */
section.ticket {
    text-align: left;
}

section.ticket a, section.ticket a:hover, section.ticket a:focus {
    text-decoration: none;
}

ul#replies {
    padding: 0;
    margin: 0;
}

ul#replies > li {
    display: block;
    margin-bottom: 30px;
}

ul#replies > li:last-of-type {
    margin: 0;
}

ul#replies div.name {
    font-weight: bold;
    margin-right: 5px;
    display: inline-block;
    color: #c2bea0
}

ul#replies div.date {
    display: inline-block;
    color: #777777;
    font-size: 14px;
}

ul#replies div.ticket_head {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #cacaca;
}

ul#replies div.body {
    padding: 10px;
    /*background: #e8e8e8;*/
}

/*ul#replies div.body.first {
    font-weight:bold;
}*/

ul#replies > li.admin div.body {
    color: white;
}

ul#replies div.ticketid {
    float: right;
    color: #777777;
    font-size: 12px;
}

ul#replies div.issues {
    margin-top: 10px;
}

ul#replies div.issues p.reason {
    margin: 0 0 15px;
    font-weight: bold;
}

ul#replies div.issues div.item {
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    overflow: hidden;
    padding: 5px;
}

ul#replies div.issues div.item:after {
    width: 100%;
    height: 100%;
    background: black;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: .3;
    transition: .3s;
}

ul#replies div.issues div.item:hover:after {
    opacity: 0;
}

ul#replies div.issues div.item img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

ul#replies div.ticketSuccess,
ul#replies div.ticketBad,
ul#replies div.issueinfo {
    background: rgba(0, 0, 0, .5);
    margin: 0 0 20px;
    padding: 5px;
}

ul#replies div.ticketSuccess,
ul#replies div.ticketBad {
    margin: 20px 0 0;
    color: white;
}

ul#replies div.ticketSuccess {
    background: rgba(27, 191, 27, 0.59);
}

ul#replies div.ticketBad {
    background: rgba(191, 27, 27, 0.59);
}

div.replyarea textarea.reply {
    height: 200px;
    width: 100%;
    padding: 5px;
    color: #9b5a0a;
}

div.replyarea {
    background: rgba(0, 0, 0, .5);
    margin: 30px 0 0 0;
    padding: 20px;
    color: white;
}

div.replyarea button {
    margin-top: 10px;
    background: red;
    color: white;
    padding: 5px 10px;
    border: 0;
    font-size: 12px;
    cursor: pointer;
}

div.replyarea div.close {
    text-align: center;
    padding: 0 20px 20px 20px;
}

div.replyarea div.closed {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

div.replyarea input[type=submit] {
    color: #107902;
    border: 0;
    border-bottom: 1px dashed #107902;
    background-color: transparent;
    outline: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

/*section.ticket div.ticketSuccess {
    padding: 10px;
    margin-top: 20px;
    background: #41e641;
    color: #9b5a0a;
}*/

.blinking {
    animation: blinker 1s linear infinite;
    color: white;
    border-radius: 50%;
    padding: 0 5px;
    background: #c2bea0;
    font-size: 13px;
    vertical-align: 0;
    margin-left: 5px;
}

.blinking.type2 {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 3px 6px;
}

@keyframes blinker {
    50% {
        opacity: 0.0;
    }
}

div#placePhoto, div#checkPhoto {
    display: none;
    text-align: left;
}

div#placePhoto .bar, div#checkPhoto .bar {
    height: 20px;
    margin-top: 10px;
    display: none;
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
    float: left;
    width: 0;
    font-size: 13px;
    line-height: 21px;
    color: #ffffff;
    text-align: center;
    background-color: #e15f5c;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

div#placePhoto img.loadedImg, div#checkPhoto img.loadedImg {
    max-width: 100px;
    max-height: 100px;
    padding: 5px;
    background: white;
}

div#placePhoto .result, div#checkPhoto .result {
    display: none;
    margin-top: 10px;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

.ticketInfo {
    border: 1px dashed white;
    padding: 10px !important;
    text-align: center !important;
}

div#ordercontent {
    text-align: left !important;
    padding: 10px;
    border: 1px dashed white;
    font-weight: bold;
}

div#ordercontent b,
div#ordercontent span {
    font-weight: normal;
}

section#cabinet td.address a.issueCircle > img {
    text-decoration: none;
    vertical-align: middle;
    margin-left: 10px;
    height: 10px;
}

div#ordercontent.view {
    margin: 0 0 20px;
}