/*--ysk--------------------------------------------------------------------------------*

	ysk 2020년04월

-----------------------------------------------------------------------------------ysk-*/

@charset "utf-8";

/*-------------------------------------------------------------------------------------*
 *  기본스타일 시트                                                                    *
 *-------------------------------------------------------------------------------------*/

a {
    color: #f8f8f8;
    text-decoration: none
}

body {
    font-size: 12px;
    color: #f8f8f8;
    margin: 0 0 0 0;
    background: #112f4a;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

td {
    font-size: 12px;
    color: #f8f8f8;
    margin: 0 0 0 0;
}

div {
    font-size: 12px;
    color: #f8f8f8;
    margin: 0 0 0 0;
}

select {
    font-size: 12px;
    color: #f8f8f8;
    margin: 0 0 0 0;
}

textarea {
    font-size: 12px;
    color: #f8f8f8;
    margin: 0 0 0 0;
}

/*-------------------------------------------------------------------------------------*
 *  인풋                                                                               *
 *-------------------------------------------------------------------------------------*/

input::-webkit-input-placeholder {
    color: #888888;
    font-size: 14px;
    letter-spacing: -1pt;
}

input:-ms-input-placeholder {
    color: #888888;
    font-size: 14px;
    letter-spacing: -1pt;
}

textarea::-webkit-input-placeholder {
    color: #888888;
    font-size: 14px;
    letter-spacing: -1pt;
}

textarea:-ms-input-placeholder {
    color: #888888;
    font-size: 14px;
    letter-spacing: -1pt;
}

input::placeholder {
    color: #888888;
    font-size: 14px;
    letter-spacing: -1pt;
}

textarea::placeholder {
    color: #888888;
    font-size: 14px;
    letter-spacing: -1pt;
}

/*-------------------------------------------------------------------------------------*
 *  고정스타일 시트                                                                    *
 *-------------------------------------------------------------------------------------*/

A,
area {
    blr: expression(this.onFocus=this.blur())
}

:focus {
    -moz-outline-style: none;
}

form {
    margin: 0;
}

img {
    border: none;
}

ul,
ol,
li,
dl,
dd,
dt {
    margin: 0;
    list-style: none;
}

html,
body,
div,
span,
object,
iframe,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
swf,
javascript,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
td,
menu,
nav,
section {
    margin: 0;
    padding: 0
}

img,
fieldset,
iframe {
    border: 0 none
}

img {
    /* max-width:100%; */
    vertical-align: middle
}

textarea {
    resize: none
}

input,
select,
textarea,
button {
    font-size: 100%;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%
}

address,
strong,
caption,
cite,
code,
dfn,
em,
var {
    font-style: normal;
    font-weight: normal
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none
}

/* base - IE8~7 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

/* base - input */

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="search"],
input[type="image"],
textarea {
    -webkit-appearance: none;
}

input:checked[type="checkbox"] {
    background-color: #666;
    -webkit-appearance: checkbox
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"] {
    -webkit-appearance: button;
    border-radius: 0
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.go-top{
    color: #0cf;
    background-color: #000;
    width: 30px;
    border-radius: 100%;
    position: fixed;
    left: 10px;
    bottom: 10px;
    padding: 0 10px;
    line-height: 30px;
    display: none;
}

/* Slot Section */

.slot-section .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 15px 0;
    width: 100%;
}

.slot-btn {
    display: inline-block;
    margin: 12px;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}

.slot-btn.hot {
    background-color: #bd2222;
}

.slot-btn:hover {
    background-color: #180a09;
    text-decoration: none;
}

.slot-btn .main-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: radial-gradient(#034, #000);
    text-align: center;
    min-height: 180px;
}

.slot-btn .main-container:before,
.slot-btn .main-container:after {
    content: "";
    width: 100%;
    height: 150%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.slot-btn .main-container:before {
    width: 80%;
    right: 0;
    background-color: #F27801;
    transform: translateY(-100%);
}

.slot-btn:hover .main-container:before {
    transform: translateY(-100%);
}

.slot-btn .main-container:after {
    width: 100%;
    left: 0;
    background-image: url(../img/slot/slot_bg11.jpg);
    transform: translateY(100%);
}

.slot-btn:hover .main-container:after {
    transform: translateY(0);
}

.slot-btn .main-container .main-img {
    width: 100%;
}

.slot-btn .main-container .hover {
    position: absolute;
    left: 25%;
    top: 25%;
    text-align: center;
    z-index: 2;
}

.slot-btn .main-container .view-text {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-100%);
    margin: 0 0 10px;
}

.slot-btn:hover .main-container .view-text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.slot-btn .main-container .view-btn {
    width: 110px;
    height: 35px;
    background-color: #F27801;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-100%);
}

.slot-btn:hover .main-container .view-btn {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.slot-btn .main-container .view-btn:hover {
    background-color: #ffa00c;
    color: #000;
    transition-delay: 0s;
}

.slot-btn .hot-tag {
    position: absolute;
    left: -19px;
    top: -25px;
    animation: hotslotAnim 3s ease infinite;
    transition: 0.3s;
    z-index: 3;
}

.slot-btn:hover .hot-tag {
    animation: none;
    opacity: 0;
}

@keyframes hotslotAnim {
    0% {
        transform: translatex(30px) translatey(-30px);
        opacity: 0;
    }
    20% {
        transform: translatex(0) translatey(0);
        opacity: 1;
    }
    80% {
        transform: translatex(0) translatey(0);
        opacity: 1;
    }
    100% {
        transform: translatex(-30px) translatey(30px);
        opacity: 0;
    }
}

.slot-btn .slot-man {
    width: 66.50%;
    position: absolute;
    right: 0;
    bottom: 0;
    animation: slotmanAnim 5s linear infinite;
    transition: 0.5s;
}

@keyframes slotmanAnim {
    0% {
        transform: translatey(0);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0);
    }
}

.slot-btn .slot-logo {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #eea1a1;
    background-color: #000;
    border-top: 0;
    border-bottom: 0;
    display: none;
}

.slot-btn .slot-logo:after {
    content: '';
    width: calc(100% - 26px);
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background-color: #333333;
    transition: 0.3s;
}

.slot-btn:hover .slot-logo:after {
    background-color: #3e1919;
}

.slot-btn.hot .slot-logo:before {
    background-color: #e37575;
}

.slot-btn .slot-name {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    background-color: #000;
    display: none;
}

.slot-btn.hot .slot-name {
    color: #141313;
    font-size: 16px;
    font-family: SCDream7;
    text-shadow: 0 0 3px #e68282, 0 0 3px #e68282, 0 0 3px #e68282, 0 0 3px #e68282, 0 0 4px #e68282, 0 0 4px #e68282;
}