:root {
    --width: 1920px;
    --height:1080px;

    --bg-img: url("../images/bg.png");
    --header-img: url("../images/h1-bg.png");
    --bg-screen: url("../images/screen.png");

    --pause-img: url("../images/pause.png");
    --font-color: #ffffff;

    --border-color: #025c5c;

    --body-scale:grayscale(0%);
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #333;
    filter: var(--body-scale);
    transition: background-color 0.3s, color 0.3s;
}
[data-theme="celebrate"] {
    --bg-img: url('../images/celebrate.png');
    --bg-screen: url("../images/screen-celebrate.png");
    --header-img: url("");

    --pause-img: url("../images/pause-celebrate.png");

    --font-color: #FFC14A;
}
#container {
    width: var(--width);
    height: var(--height);
    position: relative;
    top:0;
    left: 0;
    padding: 0;
    margin: 0;
    /* background-image: var(--bg-img);
    background: rgba(1,23,33,.9); */
    /* background: rgba(15,28,45,.85); */
    /* background-repeat: no-repeat;
    background-size: 100% 100%; */
    box-sizing: border-box;
    color: var(--font-color);
    overflow: hidden;
    transition: color .3s linear;
}
.allScreen {
    position: absolute;
    top: 20px;padding: 10px;
    border-radius: 10px;
    z-index: 9999999999999999;
    cursor: pointer;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: grid;
    align-items: center;
}
.allScreen > img {width: 20px;height: 20px;display: block;}
.index-btn {left: 20px;}
.screen-btn {right: 20px;}

.ifr-box {position: relative;z-index: 1;width: 100%; height: 100%;background: inherit;}


.index {height: 100%;width: 100%;transition: all ease-in-out .5s;}
.index > h1 {position: relative;z-index: 1;margin: 0;padding: 40px;font-size: 42pt;text-shadow: 0px 0px 1px rgba(0,0,0,.1);color: #1ea733;}


.img_bg {width: 100%; height: 100%;display: block;position: absolute; top: 0; left: 0;z-index: 1;}

.area {width: 100%; height: 100%; position: absolute;top: 0;left: 0; background: rgba(255,255,255,.1);z-index: 2;display: grid; grid-template-columns: 1fr;place-items: center;}
.btn-area {display: grid; grid-template-columns: repeat(3, 1fr);align-items: center;width: fit-content;gap: 60px;}
.btn-item {
    height: 320px;
    aspect-ratio: 1 / 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 100%;
    transition: all ease-in-out .6s;
    overflow: hidden;
    cursor: pointer;
    line-height: 220px;
    font-size: 36pt;
    font-weight: bold;
    position: relative;
    background: rgba(32, 165, 58,1);
}
.btn-item:hover {box-shadow: 0 8px 64px rgba(0, 0, 0, 0.7);}
.btn-item > img {display: block;width: 100%;height: 100%;position: absolute;top: 0;left: 0;}
.btn-item > .main-lnk {display: block;width: 100%;height: 100%;text-decoration: none;color: #02558b;position: absolute;top: 0; left: 0;background: rgba(255,255,255,.3);display:grid;place-items: center;}
.main-lnk > span:last-child {color: #ffffff;text-shadow: 0px 0px 20px #02558b;font-size: 48pt;}

.content {width: 100% !important;height: 100% !important;}

.select-box {position: fixed;bottom: 20px; right: 20px; background: #ffffff;border-radius: 10px;padding: 20px;color: #000;}
/*
.pl {
    height: 40px;
    width: calc(100% - 80px);
    position: absolute;
    top: 50px;
    padding: 0 40px;
    text-align: right;
    color: var(--font-color);
    transition: color .3s ease-in-out;
    z-index: 9999;
    display: flex;
    justify-content: end;
    align-items: center;
}
.icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-image: var(--bg-screen);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    margin: 5px 0 5px 20px;
}
.icon:hover{
    box-shadow: 0 0 10px rgba(255,255,255,.4);
}

.p-p {
    background-image: var(--pause-img);
}

#timer {
    font-size: 18pt;
    letter-spacing: 2px;
    line-height: 40px;
}
.carousel-list {    
	display: flex;
    transform: translateX(0%);
}

.info  {
    margin: 40px 20px;
    height: 910px;
    padding: 20px;
	background: rgba(255,255,255,.1);
	border-radius: 8px;
    box-sizing: border-box;
    border-top: 10px solid rgba(255,255,255,.1);
    border-bottom: 10px solid rgba(255,255,255,.1);
	overflow: hidden;
}
.content {
	width: 1840px;
    transform: translateY(0);
	transition: transform var(--den) linear;
}
/* .m-left {background: inherit;}
.m-right {background: inherit;}

.item {border-radius: 8px;height: 390px;font-size: 12pt;}
.item ul {
    list-style: none;
    margin: 0 0 0 -20px;
}
.item ul > li {
    height: 32px;
    line-height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mark {
    height: 24px;
    width: 90px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-size: 9pt;
    line-height: 24px;
}
.m-green {
    background: #086;
}
.m-red {
    background: #f03;
}
.m-yellow {
    background: #D7983D;
}
.item ul > li:nth-child(even){
    background: linear-gradient(to right, rgba(47,102,198,.2) 50%, rgba(47,102,198,.1) 70%,rgba(47,102,198,0) 97%);
}
.item ul > li 
.item-hover,.item:hover {
    border: 1px solid rgba(47,102,198,.5);
    background: rgba(47,102,198,.1);
}
.item-header {
    position: relative;
    padding: 10px 20px;
    font-size: 16pt;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    z-index: 1;
}
.item-header::after {
    content: "";
    background: linear-gradient(to right,rgba(47,102,198,1) 20%, rgba(47,102,198,.4) 40%, rgba(47,102,198,0) 80%);
    position: absolute;
    left: 4px;
    top: 25px;
    height: 20px;
    width: 100%;
    transform: skew(25deg, 0deg);
    z-index: -1;
}

.m-center {
}

.content {
	width: 1138px;
	padding: 10px 20px;
    transform: translateY(0);
	transition: all var(--den) ease-in-out;
}
.content > h3 {
    font-size: 18pt;
    text-align: center;
}
.m-center > .content > p {
    text-indent: 4ch;
    font-size: 14pt;
} */

/*https://www.jb51.net/article/254711.htm*/