html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, /* ol, ul, li, */ fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, credentials, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; }
article, aside, credentials, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

/* Common HTML elements, fonts, and colors
------------------------------------------ */
html,
body { width: 100%; min-height: 100%; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 14px;  line-height: 1.4em; /*height: 100%;*/}
#app{
    /*display: flex;
    height: 100%;
    justify-content: space-between;
    flex: auto;
    flex-direction: column;*/
}
a { color: #006bd8; outline:0 none; text-decoration: none; }
a:focus { outline:none; outline-offset:-4px; }
a:visited { color: #85c; }
a.not-visited:visited { color: #006bd8; }
a:hover { color: red; }
input[type="button"]::-moz-focus-inner { border: 0; }
input[type="submit"]::-moz-focus-inner { border: 0; }
a img { border: 0; }
p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset, blockquote, figure {}
h1, h2, h3, h4, h5, h6{
     margin: 20px 0px;width: 100%;display: block;float: left;
}
h1 { font-size: 2.6em; }
h1 a { text-decoration:none; }
h2 { font-size: 1.75em; }
h3 { font-size: 1.45em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1em; }
h1, h2, h3 { line-height:1.2em; }
ul, ol { padding-top:0; }
ol { list-style: decimal; }
input, textarea, select { margin:0; }
input, textarea { font-size: 1em; color: #000; }
input[type="button"]:focus { outline:none; outline-offset:-2px; }
fieldset { border:1px solid #bbb; padding:10px; position:relative; background:#e9e9e9; margin-bottom:10px; }
fieldset p label { width:98%; }
fieldset p input[type="text"] { width:98%; }
fieldset p select { width:99%; }
pre {margin-top: 16px; font-size: 90%; line-height: 24px; color: rgba(0,0,0,.75); background: rgba(0,0,0,.03); padding: 16px 20px;word-wrap: normal;}
blockquote { color: rgba(0,0,0,.6); font-size:0.9em; font-style: italic; border-left: 1px solid rgba(0,0,0,.1);padding-left: 24px; background: #eee; }
blockquote cite { font-size: 0.9em; }
hr { background-color: rgba(0,0,0,0.15); height: 1px; border: 0; }
p { font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Helvetica Neue', Arial, sans-serif; line-height: 1.4em; }
p a { text-decoration: underline; }
input::-webkit-input-placeholder { color: #bbb; }
input:-moz-placeholder,
input::-moz-placeholder { color: #bbb; }
input:-ms-input-placeholder { color: #bbb; }

/* Misc elements
---------------- */

.blink {
  animation-name: blinker;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1.0,2.0,0,1.0);
  animation-duration: 1s;
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(1.0,2.0,0,1.0);
  -webkit-animation-duration: 1.5s;
}

@keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.3; }
}
 
@-webkit-keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.3; }
}
.sellerRights.head{
    height: 50px;
    font-weight: bold;
}
.sellerRights{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.sellerRights div{
    display:flex;
    width:33.33333333%;
}
.sellerRights, .autoPoint,.sellerRights .autoPromokod{
    justify-content: center;
    
}

.rightsBox{
    display:grid;
    padding:0px 20px;
    margin-bottom:20px;
}


.checkbox-google {
	display: flex;    
	justify-content: space-between;
	height: 23px;    
	line-height: 28px;      
	margin-right: 10px;       
	position: relative;
	vertical-align: middle;
	font-size: 14px;
	user-select: none;
	font-weight: bold;
}
.checkbox-google .checkbox-google-switch {
	display: inline-block;	
	width: 36px;
	height: 14px;	
	border-radius: 20px;
	position: relative;
	top: 3px;			
	vertical-align: top;
	background: #9f9f9f;
	transition: .2s;
}
.checkbox-google .checkbox-google-switch:before {
	content: '';
	display: inline-block;	
	width: 20px;	
	height: 20px;
	position: absolute;
	top: -3px;
	left: -1px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12);
	transition: .15s;		
}
.checkbox-google input[type=checkbox] {
	display: block;	
	width: 0;
	height: 0;	
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.checkbox-google input[type=checkbox]:checked + .checkbox-google-switch {
	background: #9ABEF7;
}
.checkbox-google input[type=checkbox]:checked + .checkbox-google-switch:before {
	background: #1a73e8;
	transform:translateX(18px);
}
 
/* Hover */
.checkbox-google input[type="checkbox"]:not(:disabled) + .checkbox-google-switch {
	cursor: pointer;
	border-color: rgba(0, 0, 0, .3);
}
 
/* Active/Focus */
.checkbox-google input[type="checkbox"]:not(:disabled):active + .checkbox-google-switch:before, 
.checkbox-google input[type="checkbox"]:not(:disabled):focus + .checkbox-google-switch:before {
	animation: checkbox-active-on 0.5s forwards linear;
}
@keyframes checkbox-active-on {
	0% {
		box-shadow: 0 0 0 0 rgba(212,212,212, 0);
	}
	99% {
		box-shadow: 0 0 0 10px rgba(212,212,212, 0.5);
	}
}
 
.checkbox-google input[type="checkbox"]:not(:disabled):checked:active + .checkbox-google-switch:before, 
.checkbox-google input[type="checkbox"]:not(:disabled):checked:focus + .checkbox-google-switch:before {
	animation: checkbox-active-off 0.5s forwards linear;
}
@keyframes checkbox-active-off {
	0% {
		box-shadow: 0 0 0 0 rgba(154,190,247, 0);
	}
	99% {
		box-shadow: 0 0 0 10px rgba(154,190,247, 0.5);
	}
}
 
 
/*-- admin All Kod List--*/ 
.allKodList{
    display: flex;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    grid-gap: 20px;
} 
 
.allKodList li{
    padding: 15px;
    width: 240px;
    align-content: space-between;
    display: grid;
    grid-template-rows: auto 70px auto;
} 

.switch-list-kod{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    margin: 15px 0px;
    grid-gap: 20px;
    align-items: center;
}

.switch-list-kod a:link, .switch-list-kod a:visited{
    font-size: 16px;
    background-color: #f1f1f1;
    text-decoration:underline;
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    color:#ff0000;
}

.switch-list-kod a:hover{
    color:#000;
    text-decoration:none;
}

.countKodPage{
    display: flex;
    grid-gap: 20px;
    justify-content: flex-end;
    padding:20px 0px;
    font-size: 16px;
}

.countKodPage a:link, .countKodPage a:visited{
    color:#000;
}

.countKodPage a:hover{
    color:#ff0000;
}

.countKodPage .selectCountKod:link, .countKodPage .selectCountKod:visited{
    color:#ff0000;
}

/* Disabled */
.checkbox-google input[type=checkbox]:disabled + .checkbox-google-switch {
	filter: grayscale(60%);
	border-color: rgba(0, 0, 0, .1);
}
.checkbox-google input[type=checkbox]:disabled + .checkbox-google-switch:before {
	background: #eee;
}


/*     generator      */

.showHelp{
    float: right;
    width: 100%;
    text-align: right;
}
.helpGenerator{margin:20px 0px; width:100%; color:#ff0000; display:none;}
.generatorForm{
    margin-bottom: 20px;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.generatorForm div{
    display:grid;
}
.generatePromoKod{
    background-color:#ff0000;
    color:#fff;
    cursor:pointer;
}

.savePromoKodSettings{
    cursor:pointer;
}
.promoKodArchivBox{
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    overflow-y: scroll;
}




/*---Premium Kod List---*/

.premiumPromoCodList{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin: 0px;
    padding: 0px;
}

.premiumPromoCodList li.premiumcard{
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: 20px 150px auto;
    background-color: #f1f1f1;
    padding: 10px;
    margin: 5px;
    border-radius:10px;
    background-size: 100% 100%;
}

.premiumPromoCodList.shop li.premiumcard{
    grid-template-rows: auto;
    box-shadow: 0px 0px 10px #999;
}

.shop .premiumkod__kod{
    font-size: 28px;
    line-height: 28px;
    color:#fff;
}

.kod__premiumcard{
    display:flex;
    align-items:center;
    font-size:32px;
    justify-content: center;
}
.bottom-info__premiumcard{
    display: flex;
    justify-content: space-between;
    padding:0px 10px;
}

.top-info__premiumcard{
    display: flex;
    justify-content: space-between;
    grid-gap: 10px;
    padding: 0px 10px;
}

.bottom-info__click{
    font-weight:bold;
    color:#ff0000;
}

.defaultImg{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
    margin: 20px 0px;
    padding: 0px;
}
.defaultImg li{
    width: 80px;
    height: 30px;
    overflow: hidden;
}
/*--- kod-lists-tab BOX---*/


/*-----------------Premium Card Settings---------------*/

.viewSettingsShow{
    display: grid;
    justify-content: center;
    font-size: 20px;
    text-decoration: underline;
    background: #07f345;
    border-radius: 5px;
    padding: 10px;
    color: #fff;
    cursor: pointer;
}

.viewSettings{
    display:none;
}
/*------------------------------------------------------*/







/*BOOKING KOD FORM in USER*/

.booking-kod{
    display: flex;
    margin: 20px 0px;
    justify-content: center;
    width: 100%;
}
.booking-kod__premiumcard{
    grid-template-rows:20px 120px 60px;
    display: grid;
    grid-gap: 10px;
}
.booking-kod .booking-kod__premiumcard{
    display: grid;
    grid-template-rows: 0px 120px auto;
    justify-items: center;
    background-color: #f1f1f1;
    padding: 20px;
    width: 420px;
    border-radius:10px;
    background-size: 100% 100%;
    
}

.booking-kod__premiumkod{
        display: grid;
    
}

.booking-kod__premiumkod, .booking-kod__kodbox{
    padding: 10px 0px;
    display: grid;
    justify-items: center;
    grid-gap: 10px;
}

.premiumkod__kod{
    font-size:48px;
    line-height:48px;
    font-weight:bold;
}

.booking-kod__action-top{
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-gap: 20px;
    width: 100%;
    /*justify-content: flex-end;*/
    border-top: 1px solid #fff;
    padding:5px 0px;
    align-items: center;
}


.booking-kod__action-edit{
    width:100%;
}

.marketingText{
    font-size: 14px;
    color: #fff;
    
    border-radius: 5px;
    padding: 5px;
    opacity: 0.8;
    height:100%;
}

.booking-kod_allkod{
    background-color: #fff;
    border-radius: 3px;
    padding: 14px 15px;
    text-align: center;
}
.booking-kod_booking:link, .booking-kod_booking:visited{
    font-size:16px;
    color:#ff0000;
    font-weight:bold;
    text-decoration:underline;
    padding: 5px;
    background-color: #fff;
    border-radius: 3px;
}

.booking-kod_booking:hover{
    opacity:0.8;
    text-decoration:none;
}
/*------------------------*/
/*--------------Booking Orders------------------*/

.bookingOrders{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    
}
.bookingOrders li:nth-child(1){
    font-weight: bold;
    background-color: #7FFFD4;
    padding: 10px;
}

.bookingOrders li:nth-child(1){
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr
}

.bookingInform{
    display: inline-block;
    padding: 6px;
    font-weight: bold;
}

.bookingOrders .premiumcard{
    border-radius: 5px;
    background-size: 100% 100%;
}

.bookingOrders .booking-kod__premiumcard{
    grid-template-rows: 20px 70px 60px;
}

.bookingOrders .actionButtonOrder{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}



.toManager{
    height:20px;
}


.order-box{
    display: grid;
    width: 100%;
}

.order-box__info{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin: 0px 0px 10px 0px;
}

.order-box__datetime{
    display: flex;
    padding:10px;
    background-color:#f1f1f1;
}
/*---------------------------------*/

/*------ User Premium Kod List-----------*/


.user-kod{
    display: grid;
    margin:20px 0px;
}

/*--------------------------------------*/





.add-kod-box{
    display: flex;
    align-items: center;
    grid-gap: 30px;
}




.tabs{
    display: flex;
    width: 100%;
    grid-gap: 5px;
    margin-bottom: 10px;
    list-style-type: none;
    padding: 6px 0px;
    margin: 0px;
    border-bottom: 1px solid #ccc;
}

.tabs li img{
    width: 25px;
}

.tabs-content{
    width:100%;
}

.promokod-list-head{
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #f1f1f1;
    padding: 15px;
    font-weight: bold;
}

.tabs-content ul{
    list-style-type: none;
}

.tabs-content ul, .tabs-content ol{
    padding: 0px;
    margin: 0px;
}

.tabs-content ul li{
    display:none;
} 
.tabs-content ul li ol li{
    display: flex;
    justify-content: space-between;
}

.tabs-content ul li.active{
    display:block;
} 


.tabs li a:link, .tabs li a:visited{
    padding:5px 10px;
    color:#000;
    text-decoration:none;
}
.tabs li a:hover{
    color:#1a73e8;
}

.tabs li a.active{
    border-bottom: 3px solid #1a73e8;
    color:#1a73e8;
}





.PromoCodList  li{
    width:100% !important;
    height:auto !important;
    padding:0px 10px;
}



/*----Client Guest Page Style----*/


.wa-field-photo .wa-value img:nth-child(2){
    display:none;
}

.guest-page{
    display: grid;
    grid-gap: 20px;
    margin: 20px 0px 0px;
    padding: 10px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background-color:#fbfbfb;
}

.guest-page div{
    
    padding:10px;
}

.guest-page h3{
    text-align:center;
}

.start-block__guest-page{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 20px;
    
    padding: 0px !important;
}
.user-info{
    padding: 0px !important;
    display: grid;
    grid-gap: 10px;
    
}
.next-step__guest-page{
    text-align:center;
}

.label__guest-page{
    
    padding: 0px !important;
    display: flex;
    align-items: center;
    
    justify-content: space-between;
}

.label__checkbox-google{
    font-size:14px;
    color:#000;
    font-weight:normal;
    margin-left:10px;
    line-height: 12px;
    align-self: center;
}

.label__checkbox-google:hover{
    color:#333;
    cursor:pointer;
}

.guestLink.blink,.PromoLink{
    display: block;
    font-size:26px;
    margin:5px 0px;
    text-decoration:underline;
    color:#ff0000;
}

.new-block{
    display:none;
    margin:20px 0px;
}

.page-blocks{
    display: grid;
    grid-gap: 20px;
}

.pageBlock{
    display: grid;
    grid-gap: 20px;
    padding: 10px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background-color: #fbfbfb;
}


.image__pageBlock{
    justify-self: center;
}

.image__pageBlock img{
    max-width:100%;
}

.datetime__pageBlock{
    text-align: right;
    color:#ccc;
}

.toolBox{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: fit-content;
    justify-items: center;
    justify-self: end;
    grid-gap:10px
}
#imageNewBlock{
    display: grid;
}
.deleteFotoPost{
    color:#ff0000;
}
.fotoBox{
    text-align:center;
}

.addNewFuature,.saveNewFuature{
    margin: 0px auto;
}

.new-item__user-info,.saveNewFuature{
    display:none;
    
}
.new-item__user-info{
    display: flex;
    grid-gap: 10px;
    padding:0px !important;
}
.new-item__user-info input{
    width:100%;
    padding:13px;
    display: none;
        border: 1px solid #f1f1f1;
}

.fuature{
    display:flex;
    justify-content: space-between;
}

.fuature:hover{
    background-color:#f1f1f1;
}

.fa-minus-circle{
    color:#ff0000;
}

.addNewPostBox{
    display: block;
    margin: 20px 0px;
    border: 1px solid #f1f1f1;
    padding: 20px 10px;
    border-radius: 5px;
    background: #fbfbfb;
    color: #333;
    font-style: italic;
    cursor: text;
}

.addNewPostBox:hover{
    background-color:#fff;
}

.message__new-block{
    display:grid;
}

.blueButton{
    
    align-self: center;
    background-color: #1a73e8;
    color: #fff !important;
    padding: 10px 30px;
    border-radius: 20px;
}

.blueButton:hover{
    opacity:0.8;
}

.blueButton{
    text-decoration:none !important;
}


.foto-box__start-block{
    
    justify-items: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position:relative;
    width: 200px;
}

.foto-box__start-block img{
    width: 100%;
}

.avaTools{
        display: flex;
    align-items: center;
    padding:0px !important;
}


.fa-ban{
    color:#ff0000;
    cursor:pointer;
}

/* head style */






.logout{
    display: block;
    float: left;
    
    padding: 5px;
    
}
.pointBox{
    display: block;
    float: left;
    border: 1px solid yellow;
    padding: 5px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    background-color: yellow;
}



.userName{
    background-color: #07f345;
    display: block;
    float: left;
    border: 1px solid #07f345;
    padding: 5px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: #fff !important;
}

.userName:hover{
   opacity:0.5; 
}
.transferPointBox{
    display: flex;
    justify-content: space-evenly;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
}
.userName a:hover{
    color:#fff !important;
}

.errorNameGroup{
    display: block;
    color: #ff0000;
}

.freeKodCount{
    color: #fff;
    padding: 2px 7px;
    background: green;
    float: right;
    border-radius: 3px;
}


.kodPointBox{
    display: grid;
    grid-template-columns: auto auto;
    width: max-content;
    float: right;
    align-items: center;
    grid-gap: 10px;
    background: #fff;
    padding-right: 5px;
    border-radius: 3px;
}

.totalPoint{
    float: right;
    display: block;
    font-size:24px;
}

.removeManager{
    color:#ff0000;
    width: max-content;
}

.removeManager:hover{
    cursor:pointer;
    color:#ccc;
}


.langMenu{
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-gap: 10px;
    margin-left: 20px;
}

.saveFeatureLang{
    display: block;
    background: #ccc;
    float:right;
    margin-top:20px;
    text-align: center;
    padding: 20px 20px;
    
}

.langMenu img{
    height:30px;
    width: 50px;
}

.content img { max-width: 100%; }
.GroupCodeHead{
    font-weight: bold;
    font-size: 23px;
    float: left;
    width: 160px;
}

.GroupInput{
    font-size: 20px;
    border: 1px solid #000;
    padding: 5px;
    border-radius: 3px;
    width:300px;
    height:40px;
}



.space{
    z-index: -1;
    display: grid;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #111;
    opacity:0;
    justify-items: center;
    align-items: center;
    
    transition: 5s linear;
}


.spaceBg{
    position:fixed;
    width:150%;
    height:150%;
    
    background-size:100% 100%;
    transform:rotate(170deg);
    z-index:1;
    transition: 150s linear;
    left:-20%;
    top:-20%;
    
}

.space .text{
    z-index:10;
    color:#fff;
    text-shadow:0px 0px 3px #fff;
    font-size:0.5em;
    transition: 20s linear;
    text-align:center;
    line-height:2em;
    margin-top:-150px;
}




/*---------------Settings admin----------------------*/

.animPreview{
    position:absolute; 
    left:calc(50% - 250px/2);
    top: 250px;
    color:#fff; 
    font-size:24px;
    z-index:1;
    width: 250px;
    line-height: 22px;
    text-align: center;
}

.mobileLangBox{
    display:none;
}




.setInfoBlockBox{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 2fr;
}
.infoBlockAdmin{
    display:grid;
    grid-gap:5px;
    justify-items: center;
}
.infoBlockDemo{
    position: relative;
    display: grid;
    grid-gap: 10px;
    justify-items: center;
    grid-template-rows: 50px auto;
    align-items: center;
    width: 100%;
    min-height: 200px;
    height:auto;
    background-size: 100% 100%;
    padding: 10px;
    text-decoration: none !important;
    border:1px solid #ccc;
}
.infoBlockDemo img{
    position:absolute;
}

.infoBlockDemo .nameDemo{
   color:#000;
   font-weight: bold;
   text-align:center;
}

.infoBlockDemo .descDemo{
    color:#000;
}

.infoBDelete:hover{
    cursor:pointer;
    color:#ff0000;
}
.valueColor{
    display: grid; 
    width: 100%;
    grid-template-columns: 85% auto;
}



/*Settings Mail*/

.mailTemplatesBox{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    justify-items: center;
    grid-gap: 20px;
    text-align: center;
    margin:20px 0px;
    
    align-items: center;
}

.mailTemplatesBox .text{
    display:none;
}

.itemMail{
    padding:20px 10px;
    background-color: #f1f1f1;
    cursor:pointer;
}




/*---------------------------------------------------*/

#langForm .name{
    color:#999;
}




/*-----------------Settings Lang---------------*/

#appLang h2{
    background: #f1f1f1;
    padding: 10px 20px;
    margin: 0px;
    border-bottom: 2px solid #fff;
}

#appLang h2:after{
    float: right;
    content:"\270E";
}

#appLang h2:hover{
    color:#ff0000;
    cursor:pointer;
    background:#f9f9f9;
}

/*---------------------------------------------------*/


.AddGroupButton, .DeleteGroupButton, .requestGroupButton{
    display: block;
    float: right;
    margin-left: 10px;
    padding: 0px 10px;
    border-radius: 3px;
    border: 1px solid #999;
    color: #fff;
    background-color:#ff0000;
    cursor:pointer;
}

.AddGroup:link, .AddGroup:visited{
    display: block;
    float: left;
    text-align:center;
    padding: 0px 10px;
    border-radius: 3px;
    border: 1px solid #999;
    color: #fff;
    background-color:#ff0000;
}

.AddGroup:hover{
    color: #ff0000;
    background-color:#fff;
    text-decoration:none;
}

.PromoBox{
    display:block; 
    float:left;
    margin:0px auto; 
    width:350px; 
    height:auto;
    box-shadow: 0px 0px 25px #999; 
    border-radius:10px; 
    padding:20px
}

.PromoField{
    display:block; 
    float:left;
    margin-bottom:20px;
    width:100%;
}

.PromoFieldLabel{
    font-size:16px; 
    color:#999; 
    margin-bottom:20px; 
    display:block; 
    width:140px; 
    float:left;
}

.PromoFieldInput{
    font-size: 18px;

width: 170px;

float: left;

border: 1px solid #000;

border-radius: 5px;

height: 32px;
padding:5px;
}

.PromoBoxMessages{
    display:block; 
    float:left; 
    margin-bottom:20px;
    width:100%; 
    border-top:1px solid #ccc; 
    height:auto; 
    color:#ff0000
}

.PromoBoxButton{
    display:block; 
    float:right; 
    border-radius:3px; 
    color:#fff; 
    background-color:#0096ff; 
    padding:5px 10px; 
    cursor:pointer; 
    box-shadow: 1px 1px 3px #000;
}

.UserID{
    display:none;
}

.GroupInput.PageLink{
    font-size:14px;
}

.ListGroups li a:link, .ListGroups li a:visited{
    font-size:16px;
    color:#333;
}

.yes_button{
    color:#ff0000;
    text-decoration:underline;
    cursor:pointer;
}

.ok_button{
    color:#34c031;
    text-decoration:underline;
    cursor:pointer;
}

.client_value{
    text-align:center;
    padding:15px 10px;
    border-bottom:1px solid #f1f1f1;
    
}
.client_value.date{
    font-size:12px;
    color:#777;
}

.admin_action_button{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
}

.admin_action_button.client{
    grid-template-columns: repeat(5,1fr);
}
.head_clients{
    padding:10px 0px;
    font-weight:bold;
    text-align:center;
    background-color:#f1f1f1;
}

.pointArchivClient{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width:100%;
    
}

.pointArchivClient .gray{
    background-color:#f1f1f1;
}

.pointArchivClient .head{
    font-weight:bold;
    font-size:10px;
        background-color: #7FFFD4;
}

.pointArchivClient .delete:hover{
    color:#ff0000;
    cursor:pointer;
}


.logListBox{
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    height: 250px;
    overflow-y: scroll;
}
.pointArchivManager{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width:100%;
    
}

.pointArchivManager.kod{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width:100%;
    
}

.pointArchivManager .gray{
    background-color:#f1f1f1;
}

.pointArchivManager .head{
    font-weight:bold;
    font-size:10px;
        background-color: #7FFFD4;
}

.pointArchivManager .delete:hover{
    color:#ff0000;
    cursor:pointer;
}

.pointArchivManager .request{
    color:#ff0000  !important;
    text-decoration:underline;
    font-weight:bold;
}

.manager_value{
    text-align:center;
    padding:15px 10px;
    border-bottom:1px solid #f1f1f1;
    
}
.manager_value.date{
    font-size:12px;
    color:#777;
}
.actionButtonLog{
    display:block;
    width:100%;
}
.LogDelete{
    float: right;
    color:#ff0000;
}

.prizeBoxRow{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 5px;
    text-align: center;
}

.prizeBoxRow .head{
    padding: 10px;
    font-weight:bold;
    background-color: #7FFFD4;
}
/*---------------------------- Administrator Page Style ---------------------------*/

.search_box{
    width:100%;
}
.SearchUser{
    border:1px solid #000;
    width:400px%;
    padding:5px;
    height:45px;
    font-size:18px;
}

.SearchButton{
    width:32px; height:32px; cursor:pointer;margin-top: 5px;
}
.admin_nav{
    list-style-type: none;
    margin:0px;
    padding:0px;
}

.admin_nav li{
    float:left;
    margin:0px 10px;
}

.admin_action_button a:link, .admin_action_button a:visited{
    font-size:18px;
}


.UsersListTable{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    float: left;
    border-bottom: 1px solid #999;
}

.UsersListTable li{
    float: left;
    padding: 10px 0px;
    background-color: #ebebeb;
    border: 1px solid #999;
    border-bottom: none;
    cursor:pointer;
}

.UsersListTable li a{
    color:#999;
    padding: 10px 25px;
}

.UsersListTable li.active{
    background-color:#fff;
    box-shadow:0px -3px 4px #ccc;
}

.UsersListTable li.active a{
    color:#000;
}

.managers_box,.clients_box{
    width:100%; 
    float:left;
}


.clients_box .dateBox, .managers_box .dateBox{
    display: block;
    width: 100px;
    overflow: hidden;
    height: 18px;
    margin: 0px auto;
    
}

.UsersListTable .active{
    background-color:#fff;
}

.Paginator_list{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    float: left;
    
}

.Paginator_list li{
    float: left;
    padding: 10px 15px;
}


/*---------------------------------------------------------------------------------*/
.BackButton{
    display:block;
    float:left;
    width:100%;
    text-align:right;
    margin-right:20px;
}
.MessageTitle{
    width:100%;
}
.PrizeInfoText, .MessageText{
    width:100%;
    height:100px;
    font-size:20px;
}

.field, .field span{
    display:block;
    float:left;
    width:100%;
    margin-bottom:10px;
}

.field input{
    width:100%;
    padding:10px;
    height:40px;
    font-size:16px;
}
.field input[type="radio"]{
    width:100%;
    height:16px;
}

.field textarea{
    width:100%;
    height:95px;
    resize:none;
    
}

.InProcessMessage{
    display: block;
    float: left;
    width: 100%;
    z-index: 1000;
    position: absolute;
    font-size: 23px;
    text-align: center;
    margin-top: 50px;
    background-color: #fff;
    
}
.avatar_load_button:link, .avatar_load_button:visited{
    display:block; padding:10px; background-color:#ccc; margin-top:10px; width:100%;
}

.avatar_load_button:hover{
    display:block; padding:10px; background-color:#ff0000; margin-top:10px; color:#fff;
}


.avatar_save_button:link, .avatar_save_button:visited{
    display:block; padding:10px; background-color:#ccc;  width:100%; text-align:center;
}

.avatar_save_button:hover{
    display:block; padding:10px; background-color:#ff0000;  color:#fff;
}

.anim_save_button:link, .anim_save_button:visited{
    display:block; padding:10px; background-color:#ccc;  width:100%; text-align:center;
}

.anim_save_button:hover{
    display:block; padding:10px; background-color:#ff0000;  color:#fff;
}

.NamePrizeL{
    height:30px;
    text-align:center;
    font-size:14px;
}

.NamePrizeL::before{
    float: right;
    color: #ff0000;
}
.FotoPrize{
    display: grid;
    position: relative;
    height:150px;
    text-align:center;
    justify-items: center;
}

.FotoPrize  .image{
    display: block;
    float: left;
    width: 100%;
    height: 100px;

}

.FotoPrize img{
    max-height:140px;
    transition: max-height 0.3s ease-in;
}

.FotoPrize img:hover{
    max-height:150px;
}

.FotoPrize.zoom{
    opacity:1 !important;
    z-index:1000000;
}

.FotoPrize.zoom img{
    max-height:100%;
    z-index:10;
}

.money_p{
    font-size: 40px;
    color: #fff;
    text-align: center;
   
    text-shadow: 0px 0px 20px #000;
    z-index: 1000;
    margin-top: -80px;
    font-weight: bold;
     
}

.OrBox{
    display: block;
    text-align: center;
    font-size: 42px;
    margin-top: 70px;
    height: 60px;
     border:1px solid #fff;
}

.MoneyBox,.PrizeBox{
    border:1px solid #fff;
}
.MoneyBox:hover,.PrizeBox:hover{
    cursor:pointer;
    border:1px solid #ff0000;
    
}


.GetMoneyBox, .GetPrizeBox{
    display:none;
}

.adres_box, .wallet_box{
    margin-bottom:20px; display: block; width: 100%; margin-bottom:30px; background-color:#f1f1f1; padding:20px; float:left;
}

.WalletInfo{
    width:100%;
    height:100px;
    resize:none;
    border:1px solid #000;
}

.WalletEditButton{
    display: block;
    float: right;
    padding: 10px;
    background-color: #ff0000;
    color: #fff;
    width: 115px;
    cursor:pointer;
}

.WalletEditButton:hover{
    color:#ccc;
}

.GetPrizzeButton{padding:5px; background-color:#ff0000; color:#fff; cursor:pointer; border-radius:3px;}
.GetPrizzeButton:hover{
    opacity:0.6;
}

.ClientTotalPoints{
    display:block; width:100%; text-align:center; font-size:62px; color:#00ff62
}







a.filtrBal:link, a.filtrBal:visited{
    color:#333;
}

.PrizeDesc{
    display: grid;
    width: 100%;
    text-align: left;
    grid-template-rows: 30px auto;
    align-items: center;
}

.PrizeDesc .NamePrizeL{
    
    background-repeat: no-repeat;
    background-position: right 3px;
    background-size: 14px;
}
.PrizeDesc .NamePrizeL.darrow{
    cursor: pointer;
    /*background-image: url(img/darr.png);*/
}


.PrizeDesc .desc{
    display:none;
}

.PrizeDesc .desc a{
    color:#ff0000;
}


.DeletePrize{
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 100000;
    cursor:pointer;
    
    font-size: 20px;
    color: #ff0000;
    font-weight: bold;
}

.DeletePrize:hover{
    color:#ccc;
}

.GetPrizeButton:link, .GetPrizeButton:visited{
    display: block;
    padding: 10px 5px;
    background-color: #00ff62;
    color:#fff;
    margin-top: 5px;
    cursor: pointer;
}

.GetPrizeButton:hover{
    padding: 10px 5px;
    background-color: #15ca5a;
    margin-top: 5px;
    cursor: pointer;
    font-weight:bold;
}


.AddPrizeButton{
    display: block;

    padding: 10px 15px;
    
    background: #ccc;
    
    cursor: pointer;
    
    margin: 10px 0px;
    
    float: right;
}

.SendMessageButton{
    display: block;
    padding: 10px 15px;
    background: #ccc;
    cursor: pointer;
    margin: 10px 0px;
    text-align:center;
}


.PrizeBox{
    display:block;
    float:left;
}

.PrizeList div{
    background-color: #f1f1f1;
    padding: 5px;
}

.PrizeList .prizeGrid{
    display: grid;
    grid-template-rows: 30px 190px 30px;
    align-items:center;
}

.actionPrize a, .actionPrize span{
    padding:3px 5px;
    background-color:#ccc;
    border-radius: 3px;;
    
}

.actionPrize a:hover, .actionPrize span:hover{
    background-color:#f1f1f1;
    cursor:pointer;
}


.issuedStat{
    background-color:green !important;
    color:#fff !important;
    cursor:default !important;
}

.inArchiv.orange{
    background-color:#ff6600 !important;
    color:#fff !important;
    cursor:default !important;
}

.PrizeList{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 10px;
}





/*--------------Message BOX-------------------------*/
.MessagesBox{
    display: grid;
    padding: 20px 0px;
    grid-gap: 20px;
}

.dialog{
    display:grid;
    align-items: center;
    grid-template-columns: 40px auto 40px;
    background-color: #f1f1f1;
    background-repeat:no-repeat;
    background-position: 10px;
    height:50px;
    margin-bottom:1px;
    color:#15aabf;
}

.dialog:hover{
    background-color: #cfc;
}

.dialog a:link, .dialog a:visited{
    color:#333;
    font-size:18px;
    text-decoration:none;
    display: block;
    width: 100%;
    padding: 15px 0px;
    float:left;
}

.dialog a:hover{
    text-decoration:underline;
}

.dialog i{
    font-size:24px;
}

.dialog_delete{
    display: block;
width: 23px;
height: 29px;

float: right;
margin: 11px auto;
cursor: pointer;
}


.dialog_delete:before{
    font-size: 26px;
}
.redBg{
    background-color:#fba150;
}

.MessageRow{
    width:100%;
    padding:10px;
    display: grid;
    grid-template-columns: 100px auto 40px;
    grid-gap:20px;
}

.MessageRow a:link, .MessageRow a:visited{
    text-decoration:underline;
}

.MessageRow a:hover{
    text-decoration:none;
}

.NewMessag:link, .NewMessag:visited{
    display: block;
    
    width: 47px;
    
    float:left;
    font-size:14px;
    margin-top: 5px;
    
    text-align: right;
    color: #ff0000 !important;
    padding-right: 10px;
    
}

.MessageRow .date{
    display: grid;
    justify-items: center;
    text-align: center;
    font-size:18px;
    grid-template-rows: 30px auto;
}

.MessageRow .date span{
    font-size:12px;
}

.MessageRow .message{
    align-self: center;
}

/*---------------------------------------------------------------------------------------------------------------------------*/






.rectangle {
counter-reset: li; 
list-style: none; 
font: 14px "Trebuchet MS", "Lucida Sans";
padding: 0;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.rectangle a {
position: relative;
display: block;
padding: .4em .4em .4em .8em;
margin: .5em 0 .5em 2.5em;
background: #D3D4DA;
color: #444;
text-decoration: none;
transition: all .3s ease-out;
}
.rectangle a:hover {background: #DCDDE1;}       
.rectangle a:before {
content: counter(li);
counter-increment: li;
position: absolute;
left: -2.5em;
top: 50%;
margin-top: -1em;
background: #9097A2;
height: 2em;
width: 2em;
line-height: 2em;
text-align: center;
font-weight: bold;
}
.rectangle a:after {
position: absolute;
content: "";
border: .5em solid transparent;
left: -1em;
top: 50%;
margin-top: -.5em;
transition: all .3s ease-out;
}
.rectangle a:hover:after {
left: -.5em;
border-left-color: #9097A2;
}

.MessageBox input, .MessageBox textarea{
    border:none;
}
.MessageBox input, .MessageBox textarea{
    border:1px solid #333;
    padding:10px 10px;
    resize: none;
}

.MessageBox{
    display:grid;
    grid-gap: 2px;
}


.MessageBox .searchMessageBox{
    display:grid;
    margin:20px 0px;
    position: relative;
}

.MessageBox .searchMessageBox .searchSubj{
    background: #FFFFFF;
    border: 1px solid #4F4F4F;
    box-sizing: border-box;
    background-image: url(img/search.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0px;
    background-position: 10px;
    padding: 10px 10px 10px 50px !important;
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}

.searchMessageBox .searchResult{
       display: grid;
    padding: 10px;
    background-color: #fff;
    width: 100%;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    position: absolute;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
    height:auto;
    max-height: 170px;
    overflow: hidden;
    overflow-y: scroll;
    top: 50px;
}

.searchMessageBox .searchResult .searchMessage{
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
    display: grid;
    grid-template-columns: 1fr 6fr 1fr;
}

.searchMessageBox .searchResult .searchMessage .infoMessage .title{
    font-weight:bold;
}

.redText{
    color:#ff0000;
}





.block { padding: 25px 30px; }
.inline { display: inline !important; }
.inline-link { text-decoration: none !important; }
.inline-link b { border-bottom: 1px dotted; font-weight: normal; position: relative; top: -0.13em;}
.inline-link b i { font-style: normal; position: relative; top: 0.13em;}
.small { font-size: 0.9em; }
.large { font-size: 1.1em; }
.bold { font-weight: bold; }
.strike { text-decoration: line-through; }
.highlighted { background:  #ffc; }
.hint { color: #aaa; font-size: 0.9em; }
.hint a,
.hint:visited,
.hint a:visited { color: #888; }
.gray .dropdown ul
.gray a,
.gray:visited,
.gray a:visited { color: #888; }
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }
.clear-left { clear: left; }
.clear-right { clear: right; }
.clear-both { clear: both; }
.shadowed { -moz-box-shadow: 0 5px 15px #aaa; -webkit-box-shadow: 0 5px 15px #aaa; box-shadow: 0 5px 15px #aaa; }
.nowrap { white-space: nowrap; }
.hr { border-top: 1px solid #ccc; margin-bottom: 15px; }
.uppercase { text-transform: uppercase; }
.blurred { -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); -ms-filter: blur(5px); filter: blur(5px); }
.userpic { border-radius: 50%; background-size: auto; }

.container { min-width: 650px; max-width: 970px; margin: 0 auto; padding: 0; }
.container:before,
.container:after { content: " "; clear: both; }

.breadcrumbs { padding: 5px 0; font-size: 0.9em; }
.breadcrumbs a { color: #aaa; }
.breadcrumbs span.rarr { color: #ccc; margin: 0 3px; }

.tags { line-height: 1.6em; }
.tags a { color: green !important; display: inline !important; padding: 0 4px !important; }
.tags a:hover { color: red !important; }

.welcome { text-align: center; background: url('img/welcome.png') no-repeat; background-position: top center; padding-top: 300px; background-size: 256px 256px; margin-bottom: 30px; }
.welcome h1 { font-weight: normal; font-size: 2em; }

.staff { background: #eeb; padding: 1px 4px !important; color: #345; font-size: 0.9em; border: 1px solid rgba(0,0,0,0.1); border-radius: 3px; white-space: nowrap; }

.wa-flex-box { display: -webkit-box; display: -moz-box; display: -webkit-flex; display: -ms-flexbox; display: flex; }
.wa-flex-box.middle { -webkit-box-align: center; -moz-box-align: center; -o-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; }
.wa-flex-box.full-line { -webkit-box-pack: justify; -moz-box-pack: justify; -o-box-pack: justify; -ms-flex-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; }
.wa-flex-box.fixed { -webkit-box-pack: justify; -moz-box-pack: justify; -o-box-pack: justify; -ms-flex-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; }
.wa-flex-box.fixed.fixed > * { -webkit-flex-basis: 100%; flex-basis: 100%; -webkit-box-flex: 0; -moz-box-flex: 0; -o-box-flex: 0; -ms-box-flex: 0; box-flex: 0; -webkit-flex-grow: 0; flex-grow: 0; }
.wa-flex-box > *.middle { -webkit-align-self: center; align-self: center; -ms-flex-item-align: center; }
@media screen and (max-width: 760px) {
    .wa-flex-box.adaptive { -webkit-box-orient: vertical; -moz-box-orient: vertical; -o-box-orient: vertical; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; }
}

/* Buttons
---------- */

input[type=button],
input[type=submit] { background: #fcd630; color: #000; outline: 0; padding: 5px 10px 6px; font-size: 1.1em; border: 1px solid rgba(0,0,0,0.3); border-color: rgba(0,0,0,0.2) rgba(0,0,0,0.3) rgba(0,0,0,0.3) rgba(0,0,0,0.3); -webkit-appearance: none; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); border-radius: 3px; text-shadow: 0 1px 0px rgba(255,255,255,0.5);
background: #fcd630 -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.0) 100%); /* FF3.6+ */
background: #fcd630 -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0.0))); /* Chrome,Safari4+ */
background: #fcd630 -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); /* Chrome10+,Safari5.1+ */
background: #fcd630 -o-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); /* Opera 11.10+ */
background: #fcd630 -ms-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); /* IE10+ */
background: #fcd630 linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fde992', endColorstr='#fcd630',GradientType=0 ); /* IE6-9 */ }
input[type=button]:hover,
input[type=submit]:hover { cursor: pointer; background: #fcd630 linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.3) 100%); }
input[type=button]:active,
input[type=submit]:active { background: #f3cd27; text-shadow: none; box-shadow: none; }
input[type=button]:disabled,
input[type=submit]:disabled { background: #eee; color: #999; text-shadow: 0 1px 1px #fff; cursor: pointer; }
input[type=button].small,
input[type=submit].small { font-size: 0.9em; padding: 3px 5px; }
input[type=button].large,
input[type=submit].large { font-size: 1.6em; padding: 7px 10px; font-weight: bold; }
input[type=button].gray,
input[type=submit].gray { background: #eee linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); }
button{border:1px solid;}
/* Navigation menus
------------------- */

ul.menu-v { margin: 0; padding: 0; font-family: 'Helvetica Neue', 'Trebuchet MS', Arial, sans-serif; }
ul.menu-v li { list-style: none; padding: 0; line-height: 1.3em; border-bottom: 1px solid rgba(0,0,0,0.1); }
ul.menu-v li a { padding: 13px 30px 13px 16px; display: block; text-decoration: none; }
ul.menu-v li.collapsible { background: url('img/rarr.png') no-repeat; background-position: right center; background-size: 32px 16px; }
ul.menu-v.bottom-padded { margin-bottom: 20px; }
ul.menu-v li .count { float: right; color: #aaa; }
ul.menu-v li .count i.icon16 { margin: 0 -5px; }

ul.menu-h { margin: 0; padding: 0; }
ul.menu-h li { list-style: none; display: inline-block; padding: 0 10px 0 0; line-height: 1.3em; display:block\9; float:left\9; }
ul.menu-h li a { display: inline-block; padding: 13px 16px 13px 16px; display:block\9; float:left\9; text-decoration: none; }

ul.tree { list-style: none; padding-left: 0; }
ul.tree li { border: none; }
ul.tree li a { padding: 5px 16px; display: block; text-decoration: none;}
ul.tree li.selected a { background: transparent; }
ul.tree ul { padding-left: 20px; list-style: none; }
ul.tree ul a { padding: 3px 6px; font-size: 90%; }

.paging-nav { text-align: center; }
.paging-nav ul li { display: inline-block; list-style: none; margin-right: 10px; }
.paging-nav ul li a { padding: 8px 10px; }
.paging-nav ul li.selected a { background: #eee; }

/* Sign up & Login forms
------------------------ */

.wa-auth-adapters ul { padding: 0; min-height: 16px; }
.wa-auth-adapters ul li { list-style: none; float: left; padding: 0 15px 0 0; }
.wa-auth-adapters ul li a,
.wa-auth-adapters ul li span { display: block; padding: 0px 5px; }
.wa-auth-adapters ul li a img,
.wa-auth-adapters ul li span img { position: relative; top: 4px; margin-right: 3px; }
.wa-auth-adapters p { color: #888; font-size: 0.9em; width: 80%; }
.wa-auth-adapters.wa-connect { margin-top: 20px; }

.wa-form { float: left; margin: 10px 0; overflow: visible; }
.wa-form .wa-field { clear: left; margin: 0; padding-top: 3px; }
.wa-form .wa-field .wa-name { float: left; width: 155px; padding-top: 0.05em; padding-bottom: 10px; font-size: 0.95em; color: #888; }
.wa-form .wa-field.wa-separator { height: 10px; }
.wa-form .wa-field .wa-value { margin-left: 180px; margin-bottom: 5px; position: relative; }
.wa-form .wa-field .wa-value input.wa-error { border: 2px solid red; }
.wa-form .wa-field .wa-value .wa-error-msg { font-size: 0.9em; color: red; display: block; }
.wa-form .wa-field .wa-value input[type="text"],
.wa-form .wa-field .wa-value input[type="email"],
.wa-form .wa-field .wa-value input[type="password"] { width: 30%; min-width: 260px;  margin:0;}
.wa-form .wa-field .wa-value textarea { min-width: 300px; height: 70px; }
.wa-form .wa-field .wa-value input.wa-captcha-input { width: 100px; min-width: 0; }
.wa-form .wa-field .wa-value label { display: block; }
.wa-form .wa-field .wa-value .wa-captcha img { margin-left: 0; }
.wa-form .wa-field .wa-value .errormsg { margin-left: 0; }
.wa-form .wa-field .wa-value.wa-submit { margin-top: 10px; }
.wa-form .wa-field .wa-value p label { display: block; margin: 0; }
.wa-form .wa-field .wa-value p { line-height: 1.6em; margin-bottom: 23px; position: relative; }
.wa-form .wa-field .wa-value p span { color: #777; font-size: 0.9em; display: block; }
.wa-form .wa-field .wa-value p i.icon16 { float: left; left: -20px; margin-top: 2px; position: absolute; }
.wa-form .wa-field .wa-value p input { display: block; margin-bottom: 2px; }
.wa-form .wa-field .wa-value p input[type="radio"],
.wa-form .wa-field .wa-value p input[type="checkbox"] { display: inline; }
.wa-form .wa-field .wa-value p .field.wa-required span:after { content: " *"; color: #faa; }
.wa-form .wa-field.wa-required .wa-name:after { content: " *"; color: #faa; }
.wa-signup-form .wa-form .wa-field.wa-field-email { margin-top: 20px; }
.wa-signup-form .wa-form .wa-field.wa-field-email .wa-value input { min-width: 300px; }
.wa-signup-form .wa-form .wa-field.wa-field-password .wa-value input,
.wa-signup-form .wa-form .wa-field.wa-field-password_confirm .wa-value input { min-width: 200px; width: 200px; }

.wa-captcha { padding: 7px 0 10px; }
.wa-captcha p { margin: 0; }
.wa-captcha strong { font-size: 1.2em; }
.wa-captcha p img { float: left !important; margin-right: 5px; margin-top: -8px; }
.wa-captcha .wa-captcha-refresh { font-size: 0.8em; text-decoration: underline; color: #aaa; }
.wa-captcha .wa-captcha-input { display: inline !important; }
.wa-captcha .errormsg { display: inline-block; margin-left: 10px; display:block\9; float:left\9; }

input.error, textarea.error { border: 2px solid red; }
.errormsg { color: red; margin-left: 170px; display: block; }

/* Multi-column layout
---------------------- */

.row { clear: both;  padding: 20px 0; }
.row.no-border { border: none; }
.col { float: left; }
.col.w1 { width: 6%; }
.col.w2 { width: 12%; }
.col.w3 { width: 18%; }
.col.w4 { width: 24%; }
.col.w5 { width: 30%; }
.col.w6 { width: 36%; }
.col.w7 { width: 42%; }
.col.w8 { width: 48%; }
.col.w9 { width: 54%; }
.col.w10 { width: 60%; }
.col.w11 { width: 66%; }
.col.w12 { width: 72%; }
.col.w13 { width: 78%; }
.col.w14 { width: 84%; }
.col.w15 { width: 90%; }
.col.w16 { width: 96%; }

/* Tables
--------- */

table { border-collapse: collapse; border-spacing: 0; }
table th { color: #aaa; padding: 0px 10px 7px; }
table td { padding: 10px; border: 1px solid rgba(0,0,0,0.1); }
table.not-bordered td { border: none; }

table.lined { margin-top: 25px; width: 100%; border-spacing:0; border-collapse:collapse; }
table.lined th { padding-left: 7px; padding-right: 7px; }
table.lined td { padding: 15px 7px; border-bottom: 1px solid #ddd; }
table.lined td.min-width { width: 1%; }
table.lined td p { margin: 0; }
table.lined td input.numerical { width: 50px; margin-right: 5px; text-align: right; }
table.lined tr.no-border td { border: none; }
table.lined tr.thin td { padding-top: 13px; padding-bottom: 0; }
table.lined tr.service td { padding-top: 5px; padding-bottom: 5px; padding-left: 25px; font-size: 0.8em; color: #555; }

/* Customized search input look
------------------------------- */

.search {  }
.search-wrapper { position: relative; width: 100%; height: 30px; padding: 0 10px 0 10px; float: left; border: 0; border-radius: 3px; -webkit-appearance: none; margin-right: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; background: #fff; }
.search input { width: 100%; float: left; height: 27px; padding-top: 0; margin-top: 1px; background: transparent; border: 0; -webkit-appearance: none; margin-right: 0; padding-left: 0; padding-right: 32px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.search input:focus { outline: 0; }

.search input::-webkit-input-placeholder { color: #aaa; font-weight: normal; }
.search input:-moz-placeholder,
.search input::-moz-placeholder { color: #aaa; font-weight: normal; }
.search input:-ms-input-placeholder { color: #aaa; font-weight: normal; }

.search button { min-width: 32px; overflow: visible; position: absolute; right: 0px; float: left; border: none; padding: 0; cursor: pointer; height: 32px; color: #fff; background-color: transparent; background-image: url(img/search16black.png); background-repeat: no-repeat; background-position: 8px 6px; background-size: 16px 16px; border-radius: 0 3px 3px 0; font-size: 1.0em; }
.search button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */ border: 0; padding: 0; }

/* Header: global navigation
---------------------------- */

header.globalheader { background: #c22; position: relative; }
header a { text-decoration: none; }

header #globalnav { background: #000; }
header h2 { padding: 10px 15px; margin: 0 20px 0 -15px; font-size: 1.3em; }
header h2 a { color: #eee !important; }
header h2 a span { display: none; }
header h2 a:hover { color: #eea !important; }

header .apps { padding: 6px 0; margin: 0; }
header .apps li { display: inline-block; vertical-align: top; margin: 1px 21px 1px 0; list-style: none; transform: translate(0,1px); }
header .apps li a { display: block; padding: 12px; margin: -12px; color: #999; font-size: 1.1em; }
header .apps li a:hover { color: #eea; }
header .apps li.selected a { color: #fff; background: #000; }

header .auth { display: inline-block; vertical-align: top; margin: 1px 0 0; }
header .auth li { display: inline-block; vertical-align: top; list-style: none;}
header .auth li a { font-size: 0.9em;  color: #777; }
header .auth li a:hover { color: #eea !important; }
header .auth li a:visited { color: #777; }

header .cart { display: inline-block; vertical-align: top; }
header .cart a { padding: 12px 16px 11px 13px; display: block; background: rgba(255,255,255,0.3); color: #fff; font-size: 1.5em; }
header .cart a strong { color: #ff7; }
header .cart a:hover { background: rgba(255,255,255,0.4) !important; }
header .cart .cart-just-added { position: absolute; top: 100%; left: 0; width: 100%; box-sizing: border-box; display: none; padding: 9px 18px; font-size: 0.9em; }
header .cart a.cart-to-checkout { display: none !important; text-align: center; font-weight: bold; padding: 11px 18px; color: #006bd8; font-size: 1.1em; }
header .cart a.cart-to-checkout:hover { background: #fff !important; }
header .cart i.cart-icon { background-repeat:no-repeat; height:24px; width:24px; display: block; float: left; text-indent:-9999px; text-decoration:none!important; background-image: url('img/icons.png'); background-size: 260px 160px; background-position: -216px -50px; margin: -3px 10px 0 0; }
header .cart a .ruble { line-height: 1em; }

header .cart.empty a { background: #333 !important; color: #006bd8; }
header .cart.empty a:hover { background: #444 !important; }
header .cart.empty a:visited,
header .cart.empty a strong { color: #aaa; }
header .cart.empty i.cart-icon { background-position: -192px -50px; }

header .cart.fixed { position: fixed; top: 0; right: 80px; min-width: 220px; max-width: 320px; z-index: 999; padding: 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
header .cart.fixed a { text-align: center; border-top: none; background: #c22; }
header .cart.fixed a:hover { background: #d33 !important; }
header .cart.fixed .cart-just-added { display: block; background: #fafaf1; }
header .cart.fixed a.cart-to-checkout { display: block; border: none; background: #fff; box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.2); }
header .cart.fixed a.cart-to-checkout:hover { color: red !important; }

header #mobile-nav-toggle { /* mobile only */ display: none; background: url('img/mobile-nav-toggle.png') no-repeat center center; border: none; padding: 5px; background-size: 37px 31px; width: 37px; height: 31px; }

header #globalnav.light { background: #fff; }
header #globalnav.light h2 a { color: #000 !important; }
header #globalnav.light h2 a:hover { color: red !important; }
header #globalnav.light .apps li a { color: #888; }
header #globalnav.light .apps li a:hover { color: red !important; }
header #globalnav.light .apps li.selected a { color: #444; background: transparent; }
header #globalnav.light .auth li a:hover { color: red !important; }
header #globalnav.light .cart a { background: #ffc600; }
header #globalnav.light .cart a:hover { background: #ffba00 !important; }
header #globalnav.light .cart a strong { color: #fff; }
header #globalnav.light .cart.empty a { background: transparent !important; }
header #globalnav.light .cart.empty a:hover { background: #e7e7e7 !important; }
header #globalnav.light .cart.empty a strong { color: #aaa !important; }
header #globalnav.light.andgray { background: #eee; }

/* Header: app navigation
------------------------- */

header .appnav { padding-top: 5px; padding-bottom: 4px; /*min-height: 60px;*/ }

header .search { float: right; padding: 14px 0; margin-left: 20px; }

header .pages { padding: 0; margin: 14px 0 16px -15px; }
header .pages li { display: inline-block; list-style: none; margin-right: 10px; margin-left: 10px; }
header .pages li a { display: block; color: #fff; text-transform: uppercase; padding: 5px 7px; margin-right: 0px; font-size: 1.1em; font-weight: bold; }
header .pages li a:hover { color: #ffa !important; }
header .pages li.selected a { font-weight: bold; color: #ff7; border-radius: 3px; background: transparent; }

header ul.flyout-nav li.collapsible { background: url('img/darr.png') no-repeat; background-position: right center; background-size: 16px 16px; }
header ul.flyout-nav li.collapsible a { padding-right: 20px; }
header ul.flyout-nav li .flyout { display: none; position: absolute; top: 100%; left: 0; right: 0; box-shadow: 0 5px 20px rgba(0,0,0,0.2); min-height: 150px; padding: 15px 30px; text-align: left; z-index: 101; background: #ffffff; }
header ul.flyout-nav li.submenu-is-shown .flyout { display: block }

header ul.flyout-nav li .flyout a { color: inherit; text-transform: none; }
header ul.flyout-nav li .flyout a:hover { color: red !important; }
header ul.flyout-nav li .flyout ul.menu-v li { border: none; vertical-align: top; text-align: left; margin: 0 20px 20px 0; }
header ul.flyout-nav li .flyout ul.menu-v li.collapsible { background: none; }
header ul.flyout-nav li .flyout ul.menu-v li a { font-weight: bold; padding-left: 0; font-size: 1.1em; }
header ul.flyout-nav li .flyout ul.menu-v li ul.menu-v li { display: block; margin: 0; font-size: 0.9em; }
header ul.flyout-nav li .flyout ul.menu-v li ul.menu-v li a { font-weight: normal; }
header ul.flyout-nav li .flyout ul.menu-v li ul.menu-v li ul { display: none; }
header ul.flyout-nav li .flyout .departments ul.menu-v li { width: 173px; }
header ul.flyout-nav li .flyout .tags { font-size: 120%; }
header ul.flyout-nav li .flyout ul.menu-v.brands { text-align: center; }
header ul.flyout-nav li .flyout ul.menu-v.brands a { font-size: 1.2em; font-weight: normal; }

body.is-shadow-shown { position: relative; }
body.is-shadow-shown:after { display: block; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.25); z-index: 99;}
body.is-shadow-shown .globalheader { position: relative; z-index: 100; }

/* Main
------- */

main.maincontent { display: block; clear: both; margin: 0; background: #fff; }
main.maincontent .container { padding-top: 20px; padding-bottom: 20px; }

.sidebar { float: right; width: 260px; }
.content { background: #fff; position: relative; min-height: 250px; }
.content.with-sidebar { }

.sub-links { margin-bottom: 20px; padding-left: 0; }
.sub-links li { list-style: none; line-height: 1.5em; }
.sub-links li a { text-decoration: none; }

.likebox { margin-bottom: 25px; overflow: hidden; }
.connect.inline .likebox { width: 260px; display: inline-block; vertical-align: top; margin-right: 50px; }

.leadbox { background: #fafadf; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 3px 8px -4px rgba(0,0,0,0.1); }
.leadbox h4 { font-size: 1.5em; line-height: 1.2em; }

.olives { background: #f3f3f3; padding: 20px; margin-bottom: 40px; }
.olives-left { background: transparent url('img/olives-left.png') no-repeat center left; background-size: 50px 105px; min-height: 105px; }
.olives-right { background: transparent url('img/olives-right.png') no-repeat center right; background-size: 50px 105px; min-height: 105px; }
.olives-content { margin: 0 80px; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Helvetica Neue', Arial, sans-serif; text-align: center; font-size: 1.1em; line-height: 1.4em; padding: 20px; }

/* Footer
--------- */

footer.globalfooter { clear: both; background: #eee; z-index: 0; padding-top: 25px; min-height: 40px; color: #888; }
footer a,
footer a:visited { color: #888 !important;  }
footer a:hover { color: red !important; }

.footer-block { display: inline-block; margin-right: 40px; vertical-align: top; margin-bottom: 20px; overflow-x: hidden; display:block\9; float:left\9; max-width: 170px; }
.footer-block.mailer-subscribe { max-width: 500px; width: auto; overflow-x: visible; }
.footer-block a,
.footer-block strong { display: block; padding: 1px 0; }
.footer-block a.top { font-weight: bold; margin-bottom: 10px; color: #888; }
.footer-block.contact-us { max-width: 270px; }
.footer-block.contact-us .social { margin-bottom: 4px; }
.footer-block.contact-us .social a { display: inline; margin-right: 5px; }

.appfooter { position: relative; text-align: center; padding: 20px; color: #aaa; border-top: 1px solid #ddd; min-height: 1.5em; margin-top: 20px; }
.appfooter .copyright { position: absolute; left: 0; }
.appfooter .poweredby { position: absolute; right: 0; }
.appfooter .dots { font-size: 0.8em; text-decoration: none; display: inline-block; width: 54px; height: 9px; background: url("img/dots/all-dots-default-order@2x.png") no-repeat 0 3px; padding-top: 3px; margin-right: 10px; background-size: 54px 9px; }

.s-subscribe-section { position: relative; }
.s-subscribe-section.is-extended .s-hidden { display: block; }
.s-subscribe-section .s-hidden { display: none; position: absolute; top: 100%; left: 0; width: 340px; padding: 1em; background: #fff; z-index: 1; -webkit-box-shadow: 0 0 16px rgba(0,0,0,.2); box-shadow: 0 0 16px rgba(0,0,0,.15); border-radius: 3px; }
.s-subscribe-section .s-hidden .wa-captcha { margin: 0; padding: 0; }
.s-subscribe-section .s-hidden .wa-captcha p { margin: .5em 0 0; }
.s-subscribe-section .s-hidden .wa-captcha p:first-child { margin-top: 0; }
.s-subscribe-section .s-hidden .wa-captcha p > * { margin: 0 4px 0 0; vertical-align: middle; display: inline-block; float: none !important; }
.s-subscribe-section .s-hidden .wa-captcha p > *:last-child { margin-right: 0; }
.s-subscribe-section .s-hidden .wa-captcha p .wa-captcha-img { margin: 0; display: inline-block; }
.s-subscribe-section .s-hidden .wa-captcha p a { display: inline; }

/* 16x16 Icons
-------------- */

i.icon16 { background-repeat:no-repeat; height:16px; width:16px; display:inline-block; text-indent:-9999px; text-decoration:none!important; background-image: url("img/icons.png"); background-size: 260px 160px /* 50% of the original size for auto @2x optimization */; }
* i.icon16 { text-decoration:none!important; vertical-align:top; margin: 0.2em 0.25em 0 0; }
.icon16.rss { background-position: -16px 0; }
.icon16.facebook { background-position: -32px 0; }
.icon16.twitter { background-position: -48px 0; }
.icon16.vk { background-position: -64px 0; }
.icon16.gplus { background-position: -80px 0; }
.icon16.pinterest { background-position: -96px 0; }
.icon16.youtube { background-position: -112px 0; }
.icon16.instagram { background-position: -128px 0; }

.icon16.userpic20 { background-position: -2px -2px; border-radius: 50%; background-size: 20px 20px; }
.icon16.color { border-radius: 50%; border: 1px solid rgba(0,0,0,0.2); width: 12px; height: 12px; background-image: none; }

.icon16.like { background-position:0 -16px; margin-top: 0; }
.icon16.star,
.icon16.star-full { background-position:-16px -16px; }
.icon16.star-half { background-position:-32px -16px; }
.icon16.star-empty { background-position:-48px -16px; }
.icon16.star-hover { background-position:-64px -16px; }

.icon16.remove { background-position:-96px -16px; }
.icon16.saved { background-position:-112px -16px; }
.icon16.stock-red { background-position:-128px -16px; }
.icon16.stock-yellow { background-position:-144px -16px; }
.icon16.stock-green { background-position:-160px -16px; }
.icon16.stock-transparent { background-position:-176px -16px; }
.icon16.checkmark { background-position:-192px -16px; }
.icon16.compare { background-position:-208px -16px; }
.icon16.compare.active { background-position:-224px -16px; }

.icon16.uarr { background: url('img/uarr.png'); background-position: 0 0; background-size: 16px 16px; }

.icon16.loading { background-image: url('img/loading16.gif'); background-position: 0 0; background-size: 16px 16px; }
.icon24.loading { background-image: url('img/loading.gif'); background-size: 24px 24px; height:24px; width:24px; display:inline-block; }
.icon32.loading { background-image: url('img/loading.gif'); background-size: 32px 32px; height:32px; width:32px; display:inline-block; }

/* 10x10 Icons
-------------- */

i.icon10 { background-repeat:no-repeat; height:10px; width:10px; display:inline-block; text-indent:-9999px; text-decoration:none!important; background-image: url("img/icons.png"); background-size: 260px 160px; }
* i.icon10 { text-decoration:none!important; vertical-align:top; margin: 0.3em 0.1em 0 0; }
.icon10.darr { background-image: url('img/darr.png'); background-size: 16px 16px; }

.icon10.star,
.icon10.star-full { background-position:0 -100px; }
.icon10.star-half { background-position:-10px -100px; }
.icon10.star-empty { background-position:-20px -100px; }

/* 24x24 Icons
-------------- */

i.icon24 { background-repeat:no-repeat; height:24px; width:24px; display:inline-block; text-indent:-9999px; text-decoration:none!important; background-image: url("img/icons.png"); background-size: 260px 160px; }
* i.icon16 { text-decoration:none!important; vertical-align:top; margin: 0.2em 0.25em 0 0; }
.icon24.rss { background-position: 0 -50px; }
.icon24.facebook { background-position: -24px -50px; }
.icon24.twitter { background-position: -48px -50px; }
.icon24.vk { background-position: -72px -50px; }
.icon24.instagram { background-position: -96px -50px; }
.icon24.youtube { background-position: -120px -50px; }
.icon24.pinterest { background-position: -144px -50px; }
.icon24.gplus { background-position: -168px -50px; }

/* My account (hide core app nav elements)
------------------------------------------ */

html.my ul.menu-h li a { padding: 5px 7px; }
html.my ul.menu-h li.selected a { color: #fff; }

html.my .sidebar { display: none; }

/* Custom styling
----------------- */

.color_scheme_yellow header.globalheader { background: #fb0; }
.color_scheme_green header.globalheader { background: #6fb541; }
.color_scheme_blue header.globalheader { background: #4e81cc; }
.color_scheme_purple header.globalheader { background: #9a81b3; }
.color_scheme_gray header.globalheader { background: #9c9c9c; }
.color_scheme_pink header.globalheader { background: #e871b1; }
.color_scheme_cyan header.globalheader { background: #3ac1bf; }
.color_scheme_lime header.globalheader { background: #b5ce10; }
.color_scheme_brown header.globalheader { background: #a45e1a; }

.color_scheme_white header.globalheader { background: #fff; }
.color_scheme_white header.globalheader .appnav { /*border-top: 1px solid rgba(0,0,0,0.13); border-bottom: 1px solid rgba(0,0,0,0.13); margin-top: -1px; padding-bottom: 3px; */}
.color_scheme_white header .pages li a { color: #777; }
.color_scheme_white header .pages li a:hover { color: red !important; }
.color_scheme_white header ul.flyout-nav li .flyout { box-shadow: none; }
.color_scheme_white .search-wrapper { border: 1px solid #ccc; }
.color_scheme_white .search input { margin-top: 0; }

html.font_size_12,
html.font_size_12 body { font-size: 12px; }
html.font_size_13,
html.font_size_13 body { font-size: 13px; }
html.font_size_14,
html.font_size_14 body { font-size: 14px; }
html.font_size_15,
html.font_size_15 body { font-size: 15px; }
html.font_size_16,
html.font_size_16 body { font-size: 16px; }

.font_family_trebuchet,
.font_family_trebuchet * { font-family: "Trebuchet MS", sans-serif; }
.font_family_verdana,
.font_family_verdana * { font-family: Verdana, sans-serif; }
.font_family_georgia,
.font_family_georgia * { font-family: Georgia, Times, serif; }
.font_family_google_opensans,
.font_family_google_opensans * { font-family: 'Open Sans', sans-serif; }
.font_family_google_ptsans,
.font_family_google_ptsans * { font-family: 'PT Sans', sans-serif; }
.font_family_google_ptserif,
.font_family_google_ptserif * { font-family: 'PT Serif', sans-serif; }
.font_family_google_roboto,
.font_family_google_roboto * { font-family: 'Roboto', sans-serif; }
.font_family_google_lora,
.font_family_google_lora * { font-family: 'Lora', sans-serif; }
.font_family_google_ubuntu,
.font_family_google_ubuntu * { font-family: 'Ubuntu', sans-serif; }

.font_family_google_fira,
.font_family_google_fira * { font-family: 'Fira Sans', sans-serif; }
.font_family_google_fira b,
.font_family_google_fira strong,
.font_family_google_fira .bold { font-weight: 500; }
.font_family_google_fira header .pages li a { font-weight: 500; padding-top: 9px; }
/*.font_family_google_fira header h2 { padding-top: 12px; }*/
.font_family_google_fira ul.thumbs li { font-size: 1.05em; }
.font_family_google_fira ul.thumbs li h5 { font-weight: 500; }
.font_family_google_fira input[type="button"],
.font_family_google_fira input[type="submit"] { padding-bottom: 3px; }
.font_family_google_fira .search input { padding-top: 3px; }
/*.font_family_google_fira header .auth { margin-top: 13px; }*/
.font_family_google_fira header .auth i.userpic20 { margin-top: 1px; }
.font_family_google_fira header .cart a strong { display: inline-block; margin-top: 1px;}
.font_family_google_fira .staff { position: relative; top: -2px; padding-bottom: 0 !important; }
.font_family_google_fira .add2cart input[type="submit"]  { padding-bottom: 4px; }
.font_family_google_fira .slider a h3 { font-size: 2.8em; }
.font_family_google_fira .stocks .icon16 { margin-top: 0; }
.font_family_google_fira .credentials a,
.font_family_google_fira .credentials span { vertical-align: top; }
.font_family_google_fira .credentials { padding-top: 2px; }
.font_family_google_fira .credentials .userpic,
.font_family_google_fira .comments .credentials .userpic { margin-top: -2px; }
.font_family_google_fira .comments .actions a { margin-right: 0; }

.font_family_google_ptsansandserif,
.font_family_google_ptsansandserif * { font-family: 'PT Sans Caption', sans-serif; }
.font_family_google_ptsansandserif p,
.font_family_google_ptsansandserif .olives-content,
.font_family_google_ptsansandserif ul.thumbs li span.summary,
.font_family_google_ptsansandserif table.features td { font-family: 'PT Serif', sans-serif; font-size: 110%; }
.font_family_google_ptsansandserif p a { font-family: 'PT Serif'; }
.font_family_google_ptsansandserif ul.thumbs li h5,
.font_family_google_ptsansandserif ul.thumbs.mini li h5 { font-size: 120%; }
/* Mobile
--------- */

.nav-negative { display: none; /* mobile-only slide-out navigation */ padding-left: 0; margin: -1px 0 0; border-bottom: 1px solid #777; background: #888; }
.nav-negative li { list-style: none; display: block; border-top: 1px solid #777; }
.nav-negative li a { font-size: 1.2em; text-decoration: none; display: block; padding: 15px 26px 15px 16px; }



.nav-negative li.selected a { color: #fff !important; text-shadow: 0 1px 0 #000; background: transparent; font-weight: bold; }
.nav-negative.auth li { }
.nav-negative.search { padding: 0; background: #fff; height: 52px; }
.nav-negative.search .search-wrapper { height: 52px; border-radius: 0; border: none; }
.nav-negative.search input { height: 52px; font-size: 1.3em; padding-left: 5px; margin-top: 4px; padding-right: 52px; }
.nav-negative.search button { background-size: 24px 24px; height: 52px; width: 52px; background-position: 3px 15px; }


.auth.nav-negative{display:none;}

/* TABLET
========= */

@media screen and (min-width: 760px) and (max-width: 1024px) {

    body { -webkit-text-size-adjust: 100%; }

    .container { padding: 0 25px; }
    .sidebar { width: 200px; }
    .content.with-sidebar { margin-right: 220px; }

    header h2 { margin-right: 10px; }
    header .apps li { margin: 2px 10px 2px 0; }
    .search-wrapper { max-width: 150px; }

    .color_scheme_white header.globalheader .appnav { padding-left: 0; padding-right: 0; margin-left: 25px; margin-right: 25px; }

    /* @media screen and (orientation : portrait) { */
    @media screen and (max-width: 850px) {


    }

}


/* MOBILE
========= */

@media screen and (max-width: 760px) {
    
    body { -webkit-text-size-adjust: 100%; padding-top: 52px /* fixed #globalnav */; }

    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.3em; }

    .container { min-width: 0; padding: 0; }
    .breadcrumbs { font-size: 1.0em; line-height: 1.5em; margin-bottom: 10px; }

    .sidebar { float: none !important; width: auto !important; padding: 0 !important; }
    .content { padding: 0px 15px; overflow-x: hidden; }
    .content.with-sidebar { margin-left: 0 !important; margin-right: 0 !important; }

    .nav-negative { display: block; /* mobile-only slide-out navigation */ }

    header #globalnav { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; height: 90px; padding-top: 0 !important; }
    header #globalnav.light { box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    header #globalnav.light .cart.empty a { background: #f3f3f3 !important; }
    .color_scheme_white header #globalnav.light { box-shadow: none; border-bottom: 1px solid rgba(0,0,0,0.13); }
    .color_scheme_white header #globalnav.light.andgray { border-bottom: none; }

    header h2 { margin: 9px 50px 10px 0 !important; float: left; font-size: 1.2em !important; position: fixed; top: 7px; left: 15px; z-index: 9999; font-weight: normal !important; padding: 0 !important; display: block !important; }
    header h2 a img { display: none; }
    header h2 a span { display: inline; }
    header .appnav { padding: 0; }
    header #mobile-nav-toggle { display: block; float: right; margin-right: 10px; margin-top: 13px; outline: 0; margin-bottom: 9px; }
    header .apps { display: none; }
    header .pages { margin: 0; padding: 20px 0; }
    header .auth { display: none; }
    header .auth li a { font-size: 1em; }
    header .auth li a i.icon16 { margin-top: 0; }
    
    .auth{
        margin-top:35px;
    }
    header .apps.unfolded { display: block; }
    header .cart,
    header .cart.fixed { position: absolute; top: 0; right: 58px !important; min-width: 0 !important; max-width: 64px; }
    header .cart a { height: 1em; padding: 16px 9px 15px 17px; background: #ffba00; }
    header .cart.fixed a { background: #ffba00; }
    header .cart a strong { display: none !important; }
    header .cart #cart-content { display: none; }

    header ul.flyout-nav li.submenu-is-shown > a { background: rgba(0,0,0,.33); border-radius: 3px; }

    .langMenu{
        display:none;
    }

    .mobileLangBox ul{
        background: #fff;
        padding: 0px 20px 20px;
    }

    .mobileLangBox{
        display:block;
        width:70%;
        float:left;
        height:40px;
        overflow:hidden;
    }
    .mobileLangBox ul li{
        list-style-type: none;
        margin:6px 0px;
    }
    .mobileLangBox ul li a{
        width: 100%;
        display: block;
    }
    .langList{
        width: 100%;
        display: block;
        background: #f1f1f1;
        padding: 10px;
    }
    
    .langList img{
        height: 15px !important;
        width: 20px !important;
        margin-right: 10px !important;
        margin-top: -5px !important;
    }
    
    .mobileLangBox ul li img{
        height:30px;
        width: 40px;
        margin-right:10px;
    }
    .langList:after{
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f0ab";
        float: right;
    }
    
    .content img { max-width: 100%; }

    .search { display: none; }
    .search-wrapper { padding-right: 0; }

    footer.globalfooter { top: 0; padding-top: 10px; }
    .footer-block { width: 120px; margin: 10px 15px !important; }
    .footer-block#copyright { width: auto; display: block; }
    .footer-block a { margin-bottom: 3px; }
    .footer-note { margin: 10px 15px; }
    .appfooter { padding: 10px 15px; }
    .appfooter .copyright,
    .appfooter .poweredby { position: static; padding: 10px; }

    .wa-form .wa-field .wa-name { float: none; padding-bottom: 0; }
    .wa-form .wa-field .wa-value { margin-left: 0; }
    .wa-form .wa-field .wa-value p span { display: block; }
    .wa-form .wa-field .wa-value input[type="text"],
    .wa-form .wa-field .wa-value input[type="email"],
    .wa-form .wa-field .wa-value input[type="password"] { min-width: 200px; }
    .wa-auth-adapters p { width: 80%; }
    .wa-captcha input.wa-captcha-input { width: 100px; }
    .errormsg { margin-left: 0; }

    table td { padding: 5px; }
    html.my ul.menu-h li a { padding: 10px; }
    .comment-form-fields label { float: left; }
    .sub-links li { font-size: 110%; margin-bottom: 5px; }
    .sidebar .likebox { display: none; }
    .connect.inline .likebox { display: block; width: auto; }

    .wa-signup-form .wa-form .wa-field.wa-field-email .wa-value input { min-width: 240px; }
    .wa-signup-form .wa-form .wa-field.wa-field-password .wa-value input,
    .wa-signup-form .wa-form .wa-field.wa-field-password_confirm .wa-value input { min-width: 160px; width: 160px; }

    .olives { padding: 10px; }
    .olives-left,
    .olives-right { background-size: 25px auto; min-height: 55px; }
    .olives-content { margin: 0 20px; font-size: 0.9em; padding: 10px; }

    .footer-block.contact-us { max-width: 999px; display: block; width: auto; }

    .PrizeList{
        grid-template-columns: repeat(2,1fr);
    }
    
    .setInfoBlockBox{
        grid-template-columns: 1fr;
    }

}

/* WIDE
========= */

@media screen and (min-width: 1300px) {

    .container { max-width: 1200px; }
    .PrizeList{
        grid-template-columns: repeat(3,1fr);
    }
    

}

@media screen and (max-width: 1280px) {
    .ListGroups li a:link, .ListGroups li a:visited{
        font-size:12px;
    }
}
@media screen and (max-width: 720px) {
    .premiumPromoCodList{
        grid-template-columns: 1fr;
    }
    
    .pointBox{padding: 15px 26px 15px 16px;}
    .auth.nav-negative{
        display:flex;
        justify-content: center;
    }
     #logo{
        width:60px;
    }
    .nav-negative{
        border-bottom: none; 
        background: none;
    }
    .NewMessag:link, .NewMessag:visited{
        margin-top:0px;
    }
    
    .auth.nav-negative{
        display:flex;
    }
}

@media screen and (max-width: 420px) {
    
    .tabs{
        padding:6px 15px;
    }
    
    .tabs-content{
        padding:15px;
    }
    
    .start-block__guest-page{
        grid-template-columns: 1fr;
    }
    
    .ClientTotalPoints{
        font-size:42px;
    }
    .checkbox-google{
        flex-flow: row-reverse;
        width: 100%;
    }
    .label__guest-page{
        flex-wrap: wrap;
        grid-gap:20px;
        justify-content: center;
    }
    
    .new-item__user-info{
        flex-wrap:wrap;   
    }
    
    .transferPointBox{
        display:grid;
        grid-gap: 10px;
        
    
    }
    .FotoPrize.zoom img{
        max-height:260px;
        z-index:10;
    }
    
    .nav-negative li a{
        font-size:10px;
    }
    .PrizeList {
        grid-template-columns: 1fr;
    }
    .pointBox{padding: 15px 26px 15px 16px;}
    
    #logo{
        width:60px;
    }
}

/* FOOTER NOTICE */
.s-footer-notice { margin: 2.5em 0 1em; font-size: .9em; line-height: 1.3em; text-align: center; }
.s-footer-notice a { color: inherit; text-decoration: underline; }

.userName a:hover{
    color:#fff !important;
}