﻿/*
Theme Name: Reboot Child
Theme URI: https://wpshop.ru/themes/reboot
Author: WPShop.biz
Author URI: http://wpshop.biz/
Template: reboot
Version: 1.0.0
*/

/* Below you can add your CSS styles */
/* Ниже Вы можете добавить свои CSS стили */

/* Lang Switcher */

.pg-lang-switch ul {
	list-style: none;
	margin: 0;
	color: #fff;
}

.pg-lang-switch a {
	color: #fff;
	text-decoration: none;
}

.pg-lang-switch img {
	vertical-align: baseline;
}

/* Start PG Game Box Styles */

.pg-casino-logomobile {
	display: none;
}

.pg-casino-box {
	display: grid;
	position: relative;
	max-width: 1190px;
  margin: 30px auto;
  border-radius: 10px;
	border: 2px solid #2E333F;
  background-color: #40135d;
  box-shadow: #0003 0 4px 6px -1px, #0000001f 0 2px 4px -1px;
  align-items: center;
    column-gap: 2rem;
    grid-template-areas:
        "logo title stars"
        "logo maxwin ."
        "logo btn .";
    grid-template-columns: 220px 1fr;
    grid-template-rows: 12fr 13fr 20fr;
}

.pg-casino-logo {
	grid-area: logo;
}

.pg-casino-logo img {
	border-radius: 10px 0 0 10px;
}

.pg-casino-name {
	grid-area: title;
	font-size: 32px;
	font-weight: bold;
	align-self: end;
}

.pg-casino-maxwin {
	grid-area: maxwin;
}

.pg-promocode {
	position: relative;
	color: #00ff31;
	border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: dashed 2px;
    padding: 3px 10px;
    font-weight: bold;
	margin-left: 10px;
}

.pg-promocode::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -23px;
    right: -24px;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
	background-image: url("/wp-content/uploads/finger.svg");

}

.pg-casino-btnmirrorblock {
	grid-area: btn;
	display: flex;
}

.pg-casino-btn {
	display: block;
	color: #fff !important;
	background-color: #d12221;
	border: none;
	text-align: center;
	text-decoration: none;
	border-radius: 10px;
	font-size: 19px;
	font-weight: 700;
	padding: 14px;
	white-space: nowrap;
	min-width: 212px;
}

.pg-casino-btn:hover {
	color: #fff;
	background-color: #c03838;
}

.pg-casino-mirror {
	position: relative;
	margin-top: 5px;
	font-size: 13px;
	text-align: center;
	color: #cdcdcd;
}


@media (max-width: 900px) {
	.pg-casino-block {
	padding: 0 10px;
}
	.pg-casino-box {
		display: grid;
  	grid-template-columns: 100%;
  	grid-template-rows: auto;
    grid-template-areas:
        "image"
        "title"
        "maxwin"
        "btn";
		justify-items: center;
}

	.pg-casino-logo {
		display: none;
	}
	
	.pg-casino-logomobile {
	display: block;
	grid-area: image;
	width: 100%;
	margin-bottom: 11px;
}
	.pg-casino-logomobile img {
		width: 100%;
    height: 170px;
    object-fit: cover;
		border-radius: 10px 10px 0 0;
	}
	.pg-casino-name {
		font-size: 25px;
		margin-bottom: 7px;
	}
	.pg-casino-maxwin {
		margin-bottom: 27px;
	}
	.pg-casino-btnmirrorblock {
		margin-bottom: 5px;
	}
}

@media (max-width: 500px) {
.pg-casino-maxwin {
    display: flex;
    flex-direction: column;
    align-items: center;
	gap: 5px;
}
}

/* Play Text Styles */

.pg-play-text {
	max-width: 1190px;
	margin: 20px auto;
	padding: 0 20px;
	font-size: 22px;
	font-weight: bold;
	margin-top: 35px;
}

/* Casino Floating Box */

.pgstar {
	content: url(/wp-content/uploads/newstar.svg);
	width: 21px;
	height: auto;
	font-style: normal;
	color: #dd3333;
}

.floatbox {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #2f3651;
	z-index: 999;
	display: none;
}

.floatbox-content {
	display: grid;
	align-items: center;
	column-gap: 1rem;
	grid-template-columns: 75px 1fr auto;
	grid-template-areas:
        "flogo fname fbtn";
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 10px;
}

.floatbox-logo img {
	grid-area: flogo;
	width: 75px;
	aspect-ratio: 100 / 100;
	border-radius: 10px;
}
.float-namestar {
	grid-area: fname;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.floatbox-name {
	font-size: 1.7rem;
	font-weight: bold;
	color: #fff;
}

.floatbox-btn a {
	grid-area: fbtn;
	display: block;
	text-align: center;
	min-width: 250px;
	padding: 15px 20px;
	font-weight: 700;
	font-size: 1.333em;
	line-height: 1.25em;
	color: #fff;
	border-radius: 5px;
	background-color: #dd3333;
	text-decoration: none;
}
.floatbox-btn a:hover {
	color: #fff;
}

.admin-bar .floatbox {
    top: 32px;
}
@media (max-width: 782px) {
	.admin-bar .floatbox {
    top: 46px;
}
}
@media (max-width: 600px) {
	.admin-bar .floatbox {
    top: 0;
}
}

@media (max-width: 992px) {
	.floatbox-content {
		column-gap: 0.5rem;
		grid-template-columns: 73px 1fr auto;
		padding: 14px 10px;
}
	.floatbox-logo img {
    width: 70px;
}
	.floatbox-name {
    font-size: 1.5rem;
}
	.floatbox-btn a {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.333em;
    line-height: 1.25em;
}
	.pgstar {
	width: 20px;
}
}

@media (max-width: 768px) {
	.floatbox-content {
		column-gap: 0.5rem;
		grid-template-columns: 70px 1fr auto;
		padding: 12px 10px;
}
	.floatbox-name {
		font-size: 1.1rem;
	}
		.floatbox-btn a {
    min-width: 100%;
    font-size: 1rem;
}
	.pgstar {
	width: 19px;
}
}