@charset "UTF-8";

.modal-open {
    overflow: hidden;
}

#wrapper {
    position: relative;
    padding-top: 70px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 70px;
    background-color: #0e0e14;
    z-index: 5000;
}

#header h1 {
    position: relative;
    height: 70px;
    padding: 20px;
    font-size: 0;
}

#header h1 a {
    display: inline-block;
    width: 100px;
    height: 30px;
    margin-bottom: 10px;
    background: url("../../images/common/logo_w2.svg") no-repeat center left/auto 30px;
}

#header .search-area {
    position: relative;
    margin: 10px 20px;
}

#header .search-area .search-input {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 50px 0 10px;
    border: none;
    border-radius: 4px;
}

#header .search-area .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 40px;
    line-height: 40px;
    border: none;
    background-color: rgba(255,255,255,0);
    text-align: center;
    color: #6950E6;
    font-size: 18px;
}

#header .alram-signout {
    position: absolute;
    top: 15px;
    right: 70px;
}

#header .alram-signout ul li {
    position: relative;
    margin-left: 10px;
}

#header .alram-signout ul li.pc-only {
    display: none;
}

#header .alram-signout ul li a {
    display: block;
    height: 40px;
    line-height: 40px;
    color: #fff;
}

#header .alram-signout ul li a.alram-btn {
    width: 40px;
    font-size: 24px;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

#header .alram-signout ul li a.alram-btn .alram-on {
    position: absolute;
    top: 7px;
    right: 3px;
    display: block;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    background-color: #ff0000;
    border-radius: 50%;
    -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}

#header .alram-signout ul li a.alram-btn.on {
    color: rgba(255,255,255,1);
}

#header .alram-signout ul li a.user-ico {
    overflow: hidden;
    width: 40px;
    border-radius: 50%;
}

#header a.sign-btn {
    padding: 0 10px;
    border: 2px solid #40dfff; 
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    color: #40dfff !important;
}

#header .mnubtn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

#header .mnubtn #menu-icon {
    border-radius: 4px;
}

#header.open {
    height: 100vh;
}

#gnb {
    padding: 10px 20px;
}

#gnb .pc-only {
    display: none;
}

#gnb > ul > li {
    position: relative;
    width: 100%;
}

#gnb > ul > li a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    color: #fff;
    font-family: 'Oxanium';
    text-transform: uppercase;
    font-size: 16px;
}

#gnb > ul > li.active > a {
    color: #8080ff;
    font-weight: 700;
}

#gnb > ul > li > ul {
    padding: 10px 0;
    margin: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#gnb a.sign-btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
}

@media screen and (min-width:639px) {
}

@media screen and (min-width:989px) {
    #header {
        overflow: visible;
        background-color: rgba(0,0,0,0);
    }

    #header .search-area {
        position: absolute;
        top: 15px;
        left: 150px;
        width: 300px;
        margin: 0;
    }

    #header .alram-signout {
        right: 20px;
    }
    
    #header .alram-signout ul li a.sign-btn {
        padding: 0 20px;
        margin-left: 20px;
    }

    #header .alram-signout ul li.pc-only {
        display: block;
    }

    #header .mnubtn {
        display: none;
    }

    #gnb {
        position: absolute;
        top: 15px;
        right: 250px;
        padding: 0;
    }

    #gnb .pc-only {
        display: block;
    }

    #gnb > ul > li {
        width: auto;
        border: none;
    }

    #gnb > ul > li > a {
        padding: 0 20px;
    }

    #gnb > ul > li a:hover {
        color: #8080ff;
    }

    #gnb > ul > li > ul {
        visibility: hidden;
        position: absolute;
        top: 40px;
        left: 50%;
        overflow: hidden;
        width: 180px;
        height: 1px;
        margin-left: -90px;
        border: none;
        background-color: #0e0e14;
        text-align: center;
        border-radius: 0 0 5px 5px;
    }

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

    #gnb > ul > li:hover > ul {
        visibility:visible;
        height: 180px;
    }

    #gnb a.sign-btn {
        display: none;
    }

    #header:hover,
    .scrollOn #header {
        background-color: #0e0e14;
    }

    .scrollOn #header {
        height: 50px;
    }

    .scrollOn #header h1 {
        height: 50px;
        padding-top: 10px;
    }

    .scrollOn #header .search-area {
        top: 5px;
    }

    .scrollOn #header .alram-signout {
        top: 5px;
    }

    .scrollOn #gnb {
        top: 5px;
    }

    .scrollOn #gnb > ul > li > ul {
        top: 34px;
    }
}

@media screen and (min-width:1439px) {
    #header h1 {
        padding: 20px 50px;
    }

    #header .alram-signout {
        right: 50px;
    }

    #header .alram-signout ul li a.sign-btn {
        margin-left: 50px;
    }

    #gnb {
        right: 320px;
    }

    #gnb ul li a {
        padding: 0 30px;
    }
}


/* 서브페이지 */
#container {
    position: relative;
    padding: 40px 20px;
}

#container h1.tit-h1 {
    position: relative;
    margin-bottom: 20px;
    font-family: 'Oxanium';
    font-size: 24px;
    text-transform: uppercase;
}

#container #searchBox {
    position: relative;
    margin-bottom: 30px;
}

#container #searchBox .search-box {
    position: relative;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#container #searchBox .search-box .search-input {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-right: 50px;
    border: none;
    background-color: rgba(0,0,0,0);
}

#container #searchBox .search-box .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    font-size: 20px;
}

#container #searchBox .sort-area {
    position: relative;
}

#container #searchBox .sort-area h3.search-tit {
    height: 36px;
    line-height: 36px;
    font-family: 'Oxanium';
    font-size: 24px;
}

#container #searchBox .sort-area .right-area {
    position: absolute;
    top: 0;
    right: 0;
}

#container #searchBox .sort-area .right-area .event-management-btn {
    display: none;
}

.event-state {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    background-color: #000;
    color: #fff;
    font-family: 'Oxanium';
    text-transform: uppercase;
}

.event-state.state_prepare {
    background-color: #00aed1;
}

.event-state.state_proceed {
    background-color: #fc0f4c;
}

.uploadfile {
    position: relative;
    font-size: 0;
}

.uploadfile .file-upload {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.uploadfile .file-upload .file-upload-button {
    display: block;
    height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: #333;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
}

.uploadfile .file-upload .hiddenfile {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 36px;
    opacity: 0;
}

.uploadfile .file-del-btn {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 34px;
    margin-left: 5px;
    border: 1px solid #dcdcdc;
    background-color: #f7f7f7;
    text-align: center;
    font-size: 20px;
    vertical-align: top;
    border-radius: 50%;
}

.more-area {
    margin-top: 30px;
    text-align: center;
}

.more-area .more-btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    border: 1px solid #777;
    border-radius: 20px;
    color: #fff;
}

@media screen and (min-width:639px) {
    #container {
        padding: 60px 40px;
    }

    #container h1.tit-h1 {
        font-size: 30px;
    }

    #container #searchBox {
        margin-bottom: 40px;
    }

    #container #searchBox .sort-area h3.search-tit {
        font-size: 30px;
    }

    .event-state {
        height: 40px;
        line-height: 40px;
    }

    .uploadfile .basic-input {
        width: 50%;
    }
}

@media screen and (min-width:767px) {
    #container h1.tit-h1 {
        margin-bottom: 40px;
    }

    #container #searchBox .sort-area .right-area .event-management-btn {
        display: inline-block;
    }

    .uploadfile .basic-input {
        width: 70%;
    }
}

@media screen and (min-width:1139px) {
    #container {
        padding: 60px 0px 100px;
    }

    #container h1.tit-h1 {
        margin-bottom: 50px;
        font-size: 40px;
    }

    #container #searchBox {
        margin-bottom: 60px;
    }

    #container #searchBox .search-box .search-input {
        padding: 0 50px 0 5px;
        font-size: 16px;
    }

    .event-state {
        padding: 0 30px;
        font-size: 18px;
    }

    .more-area {
        margin-top: 50px;
    }
    
    .more-area .more-btn {
        height: 50px;
        line-height: 48px;
        padding: 0 70px;
        border-radius: 25px;
    }
}


/* Event List */
#eventList .event-list-box {
    margin-top: 40px;
}

#eventList .event-list-box:first-child {
    margin-top: 0 !important;
}

#eventList .event-list-box h2.event-tit {
    margin-bottom: 20px;
    font-family: 'Oxanium';
    font-size: 20px;
    font-weight: 700;
}

#eventList .event-list-box .event-list-area .el-con {
    position: relative;
    padding: 5px;
    margin-top: 10px;
    background-color: #595a66;
    border-radius: 4px;
}

#eventList .event-list-box .event-list-area .el-con:first-child {
    margin-top: 0 !important;
}

#eventList .event-list-box .event-list-area .el-con a {
    display: block;
}

#eventList .event-list-box .event-list-area .el-con .pic {
    overflow: hidden;
    border-radius: 3px;
    text-align: center;
    font-size: 0;
}

#eventList .event-list-box .event-list-area .el-con .pic img {
    width: 100%;
}

#eventList .event-list-box .event-list-area .el-con .txt {
    padding: 10px;
}

#eventList .event-list-box .event-list-area .el-con .txt em {
    display: block;
    margin: 10px 0;
    font-family: 'Oxanium';
    font-size: 18px;
    font-weight: 700;
}

#eventList .event-list-box .event-list-area .el-con .txt ul li {
    position: relative;
    padding-left: 10px;
    margin-top: 5px;
    color: #dbdbdb;
}

#eventList .event-list-box .event-list-area .el-con .txt ul li:first-child {
    margin-top: 0 !important;
}

#eventList .event-list-box .event-list-area .el-con .txt ul li:after {
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #dbdbdb;
    border-radius: 50%;
    content: '';
}

@media screen and (min-width:639px) {
    #eventList .event-list-box h2.event-tit {
        font-size: 24px;
    }

    #eventList .event-list-box .event-list-area .el-con {
        padding: 10px;
        margin-top: 20px;
    }

    #eventList .event-list-box .event-list-area .el-con .txt em {
        font-size: 20px;
    }
}

@media screen and (min-width:767px) {
    #eventList .event-list-box .event-list-area .el-con {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    #eventList .event-list-box .event-list-area .el-con .pic {
        width: 30%;
    }

    #eventList .event-list-box .event-list-area .el-con .txt {
        width: 70%;
        padding: 5px 0 0 20px;
    }
}

@media screen and (min-width:1139px) {
    #eventList .event-list-box {
        margin-top: 60px;
    }

    #eventList .event-list-box h2.event-tit {
        font-size: 30px;
    }

    #eventList .event-list-box .event-list-area .el-con .pic {
        width: 31%;
    }

    #eventList .event-list-box .event-list-area .el-con .txt {
        width: 69%;
        padding: 10px 30px 20px 40px;
    }

    #eventList .event-list-box .event-list-area .el-con .txt em {
        line-height: 40px;
        font-size: 30px;
    }

    #eventList .event-list-box .event-list-area .el-con .txt ul li {
        font-size: 16px;
    }
}


/* Event Write */
#eventWrite .event-write-con {
    margin-top: 40px;
}

#eventWrite .event-write-con:first-child {
    margin-top: 0 !important;
}

#eventWrite .event-write-con h2 {
    position: relative;
    margin-bottom: 10px;
    font-size: 20px;
}

#eventWrite .event-write-con h2 em {
    font-family: 'Oxanium';
    text-transform: uppercase;
}

#eventWrite .event-write-con h2 .right-area {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -18px;
}

#eventWrite .event-write-con h2 .right-area a.plus-btn {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 34px;
    background-color: #11A674;
    text-align: center;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
}

.write-dl-box {
    background-color: #595a66;
    font-size: 13px;
    border-radius: 4px;
}

.write-dl-box dl.write-dl {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

.write-dl-box dl.write-dl:last-child {
    border-bottom: none;
}

.write-dl-box dl.write-dl dt {
    position: relative;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 16px;
}

.write-dl-box dl.write-dl dt .del-btn {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: -15px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 3px;
}

.write-dl-box dl.write-dl dd ul li {
    width: 100%;
}

@media screen and (min-width:767px) {
    #eventWrite .event-write-con {
        margin-top: 60px;
    }

    #eventWrite .event-write-con h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .write-dl-box {
        padding: 20px;
    }

    .write-dl-box dl.write-dl dt {
        margin-bottom: 10px;
    }

    .write-dl-box dl.write-dl dd ul li.name {
        width: 30%;
    }

    .write-dl-box dl.write-dl dd ul li.position {
        width: 70%;
    }

    .write-dl-box dl.write-dl dd ul li.email {
        width: 100%;
    }
}

@media screen and (min-width:1139px) {
    .write-dl-box {
        padding: 20px 40px;
    }

    .write-dl-box dl.write-dl dd ul.contact-ul li.name {
        width: 25%;
    }

    .write-dl-box dl.write-dl dd ul.contact-ul li.position {
        width: 35%;
    }

    .write-dl-box dl.write-dl dd ul.contact-ul li.email {
        width: 40%;
    }
}


/* Player List */
.player-list .player-list-con {
    float: left;
    width: 50%;
    position: relative;
    padding-bottom: 30px;
    text-align: center;
}

.player-list .player-list-con .pic {
    overflow: hidden;
    display: block;
    margin: 0 20px 10px;
    border-radius: 32px;
    font-size: 0;
}

.player-list .player-list-con .pic img {
    width: 100%;
}

.player-list .player-list-con .pl-con {
    padding: 0 10px;
}

.player-list .player-list-con a.subject {
    display: block;
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-list .player-list-con a.player-info {
    display: block;
    color: #999;
    font-size: 12px;
}

.player-list .player-list-con a.player-info .position-age,
.player-list .player-list-con a.player-info .camp {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (min-width:639px) {
    .player-list .player-list-con {
        width: 33.3333%;
    }
}

@media screen and (min-width:1139px) {    
    .player-list .player-list-con {
        width: 16.6666%;
    }
}


/* Mypage Top Area */
#mypageTop {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
}

#mypageTop .user-pic {
    position: relative;
    width: 200px;
    margin: 0 auto;
    font-size: 0;
}

#mypageTop .user-pic em {
    display: block;
    overflow: hidden;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
}

#mypageTop .user-pic a.setting-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: #333;
    text-align: center;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
}

#mypageTop .user-info-box {
    margin-top: 20px;
}

#mypageTop .user-info-box h2 {
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
}

#mypageTop .user-info-box h2 em {
    display: block;
    font-family: 'Oxanium';
    font-weight: 700;
}

#mypageTop .user-info-box h2 span {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #dbdbdb;
}

#mypageTop .user-info-box p.summary-txt {
    color: #dbdbdb;
}

#mypageTop .user-info-box .follow-box {
    position: relative;
    margin: 20px 0;
    font-size: 0;
    text-align: center;
}

#mypageTop .user-info-box .follow-box dl {
    display: inline-block;
    width: 50%;
    border-left: 1px solid rgba(255,255,255,0.2);
    vertical-align: top;
}

#mypageTop .user-info-box .follow-box dl:first-child {
    border-left: none;
}

#mypageTop .user-info-box .follow-box dl dt {
    font-size: 14px;
    color: #dbdbdb;
}

#mypageTop .user-info-box .follow-box dl dd {
    font-size: 16px;
    font-weight: 700;
}

#mypageTop .user-info-box .follow-box .contract-btn {
    display: none;
    margin-top: 20px;
}

#mypageTop .user-info-box .user-btn-area ul li {
    width: 49%;
    margin-left: 2%;
}

#mypageTop .user-info-box .user-btn-area ul li:first-child {
    margin-left: 0;
}

#mypageTop .user-info-box .user-btn-area ul li a {
    display: block;
    height: 40px;
    line-height: 38px;
    border: 1px solid #777;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-family: 'Oxanium';
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

#mypageTop .user-info-box .user-btn-area ul li a.follow-btn.following {
    border-color: #4d4dff;
    background-color: #4d4dff;
}

#mypageTop .user-info-box .user-btn-area ul li a.about-btn {
    border-color: #333;
    background-color: #333;
}

/*
#mypageTop .user-info-box .user-info-list li {
    position: relative;
    padding-left: 10px;
    margin-top: 5px;
    color: #dbdbdb;
}

#mypageTop .user-info-box .user-info-list li:first-child {
    margin-top: 0 !important;
}

#mypageTop .user-info-box .user-info-list li:after {
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #dbdbdb;
    border-radius: 50%;
    content: '';
}

#mypageTop .user-info-box .etc-info-box {
    position: relative;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #444;
    border-radius: 10px;
}

#mypageTop .user-info-box .etc-info-box ul li {
    margin-right: 20px;
}

#mypageTop .user-info-box .etc-info-box ul li:last-child {
    margin-right: 0px !important;
}
*/

@media screen and (min-width:639px) {
    #mypageTop {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    #mypageTop .user-pic {
        margin: 0;
    }

    #mypageTop .user-info-box {
        margin-top: 0;
        margin-left: 30px;
    }

    #mypageTop .user-info-box h2 {
        text-align: left;
    }

    #mypageTop .user-info-box h2 em {
        display: inline-block;
    }
    
    #mypageTop .user-info-box h2 span {
        display: inline-block;
        margin-left: 10px;
    }
    
    #mypageTop .user-info-box .follow-box {
        padding: 0;
        border: none;
        text-align: left;
    }
    
    #mypageTop .user-info-box .follow-box dl {
        display: inline-block;
        width: auto;
        margin-left: 40px;
        border-left: none;
    }
    
    #mypageTop .user-info-box .follow-box dl:first-child {
        margin-left: 0;
    }
    
    #mypageTop .user-info-box .follow-box dl dt {
        display: inline-block;
        font-size: 14px;
    }
    
    #mypageTop .user-info-box .follow-box dl dd {
        display: inline-block;
        margin-left: 10px;
        color: #dbdbdb;
    }
}

@media screen and (min-width:767px) {
    #mypageTop .user-info-box h2 {
        font-size: 30px;
    }

    #mypageTop .user-info-box p.summary-txt {
        font-size: 18px;
    }
    
    #mypageTop .user-info-box .follow-box dl dt,
    #mypageTop .user-info-box .follow-box dl dt {
        font-size: 18px;
    }

    #mypageTop .user-info-box .user-btn-area ul li a {
        height: 50px;
        line-height: 48px;
    }

    #mypageTop .user-info-box .follow-box .contract-btn {
        position: absolute;
        top: 50%;
        right: 0;
        display: inline-block;
        margin-top: -18px;
    }

    /*
    #mypageTop .user-info-box .user-info-list li {
        font-size: 16px;
    }

    #mypageTop .user-info-box .user-info-list li:after {
        top: 10px;
    }

    #mypageTop .user-info-box .etc-info-box {
        margin-top: 20px;
    }
    */
}

@media screen and (min-width:1139px) {
    #mypageTop .user-pic {
        width: 220px;
    }

    #mypageTop .user-pic em {
        width: 220px;
        height: 220px;
    }

    #mypageTop .user-info-box {
        width: 800px;
        margin-left: 50px;
    }

    #mypageTop .user-info-box h2 {
        font-size: 40px;
    }

    #mypageTop .user-info-box h2 span {
        font-size: 20px;
    }

    /*
    #mypageTop .user-info-box .etc-info-box {
        padding: 15px 20px;
    }

    #mypageTop .user-info-box .etc-info-box ul {
        margin-top: 10px;
    }

    #mypageTop .user-info-box .etc-info-box ul:first-child {
        margin-top: 0;
    }

    #mypageTop .user-info-box .etc-info-box ul li {
        margin-right: 40px;
        font-size: 16px;
    }
    */
}


/* Footer */
#footer {
    position: relative;
    padding: 40px 20px;
    background-color: #0e0e14;
}

#footer h1 {
    margin-bottom: 40px;
}

#footer h1 a {
    display: block;
    width: 100px;
    height: 60px;
    margin: 0 auto;
    background: url("../../images/common/logo_hw.svg") no-repeat center/100% auto;
    opacity: 0.6;
}

#foot-gnb ul li {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

#foot-gnb ul li:last-child {
    margin-bottom: 0;
}

#foot-gnb ul li dl dt {
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: 'Oxanium';
    font-size: 16px;
}

#foot-gnb ul li dl dd a {
    display: block;
    padding: 3px 0;
    color: #999;
}

#foot-gnb ul li dl dd a.pc-only {
    display: none;
}

#foot-gnb ul li dl dd a em {
    display: inline-block;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

#foot-gnb ul li dl dd a.snsmark {
    display: inline-block;
    margin: 0 10px;
    font-size: 26px;
}

#footer .copyright {
    max-width: 1920px;
    padding-top: 30px;
    margin: 0 auto;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.6;
}

@media screen and (min-width:639px) {
    #footer .respon {
        position: relative;
        padding-left: 150px;
    }

    #footer h1 {
        position: absolute;
        top: 0;
        left: 0;
    }

    #foot-gnb ul li {
        width: 33%;
        margin-bottom: 0;
    }

    #footer .copyright br {
        display: none;
    }
}

@media screen and (min-width:767px) {
    #foot-gnb ul li dl dd a.pc-only {
        display: block;
    }
}

@media screen and (min-width:1139px) {
    #footer {
        padding: 60px 0;
    }

    #footer .respon {
        padding-left: 250px;
    }

    #foot-gnb ul li dl dd a {
        padding: 5px 0;
    }

    #foot-gnb ul li dl dd a:hover {
        opacity: 1;
    }

    #footer .copyright {
        padding-top: 50px;
        margin-top: 50px;
    }
}


/* Modal */
.modal-area {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    width: 100%;
    background-color: rgba(255,255,255,1);
    z-index: 8000;
}

.modal-area .modal-page {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    color: #333;
}

.modal-area .modal-page h1.modal-tit {
    padding: 20px;
    margin: -40px -20px 20px;
    border-bottom: 1px solid #dcdcdc;
    text-transform: uppercase;
}

.modal-area .modal-page .modal-close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #333;
    text-align: center;
    font-size: 30px;
}

.modal-area .modal-body {
    padding: 40px 20px;
}

.modal-area .modal-footer {
    padding: 20px 20px 10px;
    background-color: #dbdbdb;
    color: #444;
    text-align: center;
}

.modal-area .modal-footer .social-link a {
    display: inline-block;
    padding: 10px;
    font-size: 18px;
    color: #444;
}

@media screen and (min-width:767px) {
    .modal-area {
        background-color: rgba(0,0,0,0.5);
    }

    .modal-area .modal-page h1.modal-tit {
        padding: 40px;
        margin: -40px -40px 40px;
    }

    .modal-area .modal-body {
        padding: 40px;
    }
}

@media screen and (min-width:1139px) {
    .modal-area {
        padding: 80px 0;
    }

    .modal-area .modal-page h1.modal-tit {
        padding: 20px 60px 30px;
        margin: -40px -60px 60px;
    }

    .modal-area .modal-page .modal-close {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 50px;
    }

    .modal-area .modal-body {
        padding: 60px;
    }
}


/* Modal :: Event View */
.modal-event-view h1 {
    line-height: 30px;
    margin: 10px 0;
    font-family: 'Oxanium';
    font-size: 24px;
}

.event-view-summary .pic {
    overflow: hidden;
    font-size: 0;
    border-radius: 3px;
}

.event-view-summary .pic img {
    width: 100%;
}

.event-view-summary .es-con {
    margin-top: 20px;
}

.event-view-summary .es-con .summary-list {
    margin-bottom: 20px;
}

.event-view-summary .es-con .summary-list li {
    position: relative;
    padding-left: 10px;
    margin-top: 5px;
    color: #333;
}

.event-view-summary .es-con .summary-list li:first-child {
    margin-top: 0 !important;
}

.event-view-summary .es-con .summary-list li:after {
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #333;
    border-radius: 50%;
    content: '';
}

.event-view-summary .es-con .joininbox {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.event-view-summary .es-con .joininbox > a {
    display: inline-block;
    height: 50px;
    line-height: 48px;
    font-size: 16px;
}

.event-view-summary .es-con .joininbox > a.blueBtn {
    width: 80%;
}

.event-view-summary .es-con .joininbox > a.shareBtn {
    width: 18%;
    border-color: #ccc;
}

.event-view-summary .es-con .joininbox .share-url-box {
    position: absolute;
    top: 70px;
    right: 0;
    display: flex;
    width: 320px;
    padding: 10px;
    background-color: #595a66;
    border-radius: 4px;
    justify-content: space-between;
    z-index: 1001;
}

.event-view-summary .es-con .joininbox .share-url-box:after {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #595a66;
    content: '';
}

.event-view-summary .es-con .joininbox .share-url-box .basic-input {
    width: 215px;
}

.event-view-summary .es-con .joininbox .share-url-box .btns {
    width: 80px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
}

.event-view-summary .es-con .invitebox {
    position: relative;
    text-align: center;
}

.event-view-summary .es-con .invitebox a.invite-player-btn {
    display: inline-block;
    padding: 10px;
}

.event-view-summary .es-con .invitebox .invite-pop {
    display: none;
    position: absolute;
    top: 50px;
    left: 0px;
    right: 0px;
    padding: 20px;
    background-color: #595a66;
    color: #fff;
    border-radius: 4px;
    text-align: left;
    z-index: 1000;
}

.event-view-summary .es-con .invitebox .invite-pop:after {
    position: absolute;
    top: -16px;
    left: 50%;
    width:0;
	height:0;
    margin-left: -16px;
	border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #595a66;
    content: '';
}

.event-view-summary .es-con .invitebox .invite-pop h4 {
    position: relative;
    margin-bottom: 20px;
    font-family: 'Oxanium';
    font-size: 16px;
    text-transform: uppercase;
}

.event-view-summary .es-con .invitebox .invite-pop .invite-input-box dl {
    margin-bottom: 10px;
}

.event-view-summary .es-con .invitebox .invite-pop .invite-input-box dl dt {
    font-weight: 700;
    margin-bottom: 5px;
}

.event-view-summary .es-con .position-backnumber ul li {
    width: 49%;
    height: 60px;
    line-height: 60px;
    background-color: #dbdbdb;
    color: #fc0f4c;
    font-family: 'Oxanium';
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.event-view-map {
    margin: 20px -20px 0;
    font-size: 0;
}

.event-view-map iframe {
    width: 100%;
    height: 200px;
}

.modal-event-view .evc {
    margin-top: 30px;
}

.modal-event-view .evc h2 {
    margin-bottom: 10px;
    font-family: 'Oxanium';
    font-size: 20px;
}

.modal-event-view .evc dl {
    margin-bottom: 10px;
}

.modal-event-view .evc dl dt {
    margin-bottom: 5px;
    font-weight: 700;
}

.modal-event-view .evc dl dd {
    font-size: 12px;
}

.modal-event-view .evc dl dd span.spancut {
    display: none;
}

.modal-event-view .evc ul.jumul li {
    position: relative;
    padding-left: 12px;
    margin-top: 5px;
    font-size: 14px;
}

.modal-event-view .evc ul.jumul li:after {
    position: absolute;
    top: 10px;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #333;
    border-radius: 50%;
    content: '';
}

.modal-event-view .evc ul.jumul li:first-child {
    margin-top: 0px;
}

.event-view-memberspec {
    position: relative;
    padding: 10px;
    margin-top: 30px;
    background-color: #595a66;
    color: #fff;
}

.event-view-memberspec ul li {
    margin-right: 20px;
}

.event-view-memberspec ul li:last-child {
    margin-right: 0px !important;
}

.event-view-introduce .introduce-box {
    line-height: 1.8;
}

.event-view-video {
    margin-top: 10px;
}

.event-view-video .video-area {
    margin: 0 -20px;
    font-size: 0;
}

.event-view-video .camera-list {
    margin-top: 10px;
    text-align: center;
}

.event-view-video .camera-list .camera-select {
    min-width: 300px;
	height: 40px;
	padding: 0 30px 0 10px;
	border: 1px solid #777;
    font-size: 14px;
    color: #333;
	background: #fff url("../../images/common/ico_select.png") no-repeat center right;
    border-radius: 5px;
}

/*
.event-view-video .camera-list ul li {
    width: 100%;
    margin-bottom: 5px;
}

.event-view-video .camera-list ul li a {
    display: block;
    height: 30px;
    line-height: 28px;
    padding: 0 10px;
    background-color: #666;
    color: #fff;
    text-align: center;
    border-radius: 3px;
}

.event-view-video .camera-list ul li.active a {
	background-color: #59A4FF;
}
*/

.event-view-video .video-infotxt {
    margin-top: 30px;
}

.event-view-video .video-infotxt h4 {
    margin-bottom: 10px;
    font-family: 'Oxanium';
    font-size: 20px;
}

.event-view-file .evit-con ul li {
    position: relative;
    margin-top: 5px;
}

.event-view-file .evit-con ul li:first-child {
    margin-top: 0;
}

.event-view-file .evit-con ul li a {
    display: block;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    padding: 0 60px 0 40px;
    border: 1px solid #dcdcdc;
    background-color: #f7f7f7;
    text-overflow: ellipsis;
    white-space: nowrap;
	box-shadow: inset 0px 1px 2px 0px rgba(0,0,0,0.16);
    border-radius: 5px;
    font-size: 12px;
    color: #333;
}

.event-view-file .evit-con ul li a span {
    position: absolute;
    width: 50px;
    text-align: center;
    font-size: 16px;
}

.event-view-file .evit-con ul li a span.folder-ico {
    top: 0;
    left: 0;
    color: #999;
}

.event-view-file .evit-con ul li a span.down-ico {
    top: 5px;
    right: 5px;
    height: 40px;
    line-height: 40px;
    background-color: #6950E6;
    color: #fff;
    border-radius: 5px;
    -moz-box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}

.modal-event-view .comment-area {
    margin-top: 30px;
}

.modal-event-view .event-view-timeline {
    margin-top: 30px;
}

@media screen and (min-width:639px) {
    .modal-event-view h1 {
        line-height: 40px;
        margin: 10px 0 15px;
        font-size: 30px;
    }

    .event-view-summary .es-con .position-backnumber ul li {
        font-size: 24px;
    }
    
    .modal-event-view .evc dl {
        display: table;
        width: 100%;
    }

    .modal-event-view .evc dl dt {
        display: table-cell;
        width: 150px;
        margin-bottom: 0;
    }

    .modal-event-view .evc dl dt em {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .modal-event-view .evc dl dd {
        display: table-cell;
    }

    .modal-event-view .evc dl dd span.spancut {
        display: inline-block;
        margin: 0 10px;
        color: #ccc;
    }

    .modal-event-view .evc dl dd br {
        display: none;
    }

    .event-view-memberspec {
        padding: 20px;
        font-size: 16px;
    }

    .event-view-video .camera-list ul li {
        width: auto;
        margin-right: 5px;
    }

    .event-view-video .camera-list ul li a {
        height: 40px;
        line-height: 38px;
        padding: 0 15px;
    }

    .event-view-video .video-infotxt h4 {
        font-size: 24px;
    }
}

@media screen and (min-width:767px) {
    .modal-event-view h1 {
        line-height: 46px;
        margin: 15px 0 25px;
        font-size: 36px;
    }

    .event-view-summary {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .event-view-summary.in-prepare {
        align-items: flex-start;
    }

    .event-view-summary .pic {
        width: 40%;
    }

    .event-view-summary .es-con {
        width: 60%;
        padding-left: 30px;
        margin-top: 0;
    }
    
    .event-view-summary .es-con .summary-list {
        margin-bottom: 30px;
    }
    
    .event-view-summary .es-con .summary-list li {
        font-size: 16px;
    }
    
    .event-view-summary .es-con .joininbox > a {
        height: 70px;
        line-height: 68px;
        font-size: 20px;
    }

    .event-view-summary .es-con .joininbox .share-url-box {
        top: 80px;
        right: -20px;
        width: 420px;
    }

    .event-view-summary .es-con .joininbox .share-url-box:after {
        right: 50px;
    }

    .event-view-summary .es-con .joininbox .share-url-box .basic-input {
        width: 315px;
    }

    .event-view-summary .es-con .invitebox .invite-pop h4 {
        font-size: 20px;
    }

    .event-view-map {
        margin: 50px 0 0;
    }

    .event-view-map iframe {
        height: 350px;
    }

    .modal-event-view .evc {
        margin-top: 50px;
    }

    .modal-event-view .evc h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .modal-event-view .evc dl dd {
        font-size: 14px;
    }

    .coaching-list {
        position: relative;
    }

    .coaching-list:before {
        position: absolute;
        top: 0;
        left: 50%;
        bottom: 0;
        width: 1px;
        background-color: #dcdcdc;
        content: '';
    }

    .coaching-list .cl-left {
        float: left;
        width: 48%;
    }

    .coaching-list .cl-right {
        float: right;
        width: 48%;
    }

    .event-view-memberspec {
        margin-top: 50px;
    }

    .event-view-video .video-area {
        margin: 0;
    }

    .event-view-video .video-infotxt {
        margin-top: 50px;
    }

    .event-view-video .video-infotxt p {
        line-height: 28px;
        font-size: 16px;
    }

    .modal-event-view .comment-area {
        margin-top: 50px;
    }

    .modal-event-view .event-view-timeline {
        margin-top: 50px;
    }
}

@media screen and (min-width:1139px) {
    .event-view-summary .pic {
        width: 45%;
    }

    .event-view-summary .es-con {
        width: 55%;
    }
    
    .event-view-summary .es-con .summary-list li {
        font-size: 20px;
    }

    .event-view-summary .es-con .position-backnumber ul li {
        height: 80px;
        line-height: 80px;
        font-size: 30px;
    }

    .event-view-file .evit-con ul li a {
        font-size: 14px;
    }
}


/* Modal :: About Info */
#aboutInfo h2.player-name {
    line-height: 1;
    font-size: 0;
}

#aboutInfo h2.player-name em {
    display: block;
    font-family: 'Oxanium';
    font-weight: 700;
    font-size: 30px;
}

#aboutInfo h2.player-name span {
    display: block;
    margin-top: 5px;
    font-weight: 400;
    font-size: 16px;
    color: #333;
}

#aboutInfo .event-view-memberspec {
    margin-top: 20px;
}

#aboutInfo .about-contact {
    padding-top: 30px;
    border-top: 1px solid #dcdcdc;
}

#aboutInfo .about-contact .contact-list dl {
    margin-bottom: 20px;
}

#aboutInfo .about-contact .contact-list dl:last-child {
    margin-bottom: 0;
}

#aboutInfo .about-contact .contact-list dl dt {
    text-transform: uppercase;
}

#aboutInfo .about-sns {
    padding-top: 30px;
    border-top: 1px solid #dcdcdc;
}

#aboutInfo .about-sns .sns-list ul li a {
    display: block;
    padding: 10px;
    color: #666;
    font-size: 24px;
}

@media screen and (min-width:639px) {
    #aboutInfo .about-contact .contact-list {
        font-size: 0;
    }

    #aboutInfo .about-contact .contact-list dl {
        display: inline-block;
        width: 50%;
    }

    #aboutInfo .about-contact .contact-list dl dt {
        display: block;
        margin-bottom: 10px;
        font-size: 18px;
    }

    #aboutInfo .about-contact .contact-list dl dd {
        display: block;
    }
}

@media screen and (min-width:767px) {
    #aboutInfo h2.player-name em {
        display: inline-block;
        font-size: 34px;
    }
    
    #aboutInfo h2.player-name span {
        display: inline-block;
        margin-top: 0;
        margin-left: 20px;
        font-size: 18px;
    }
}


/* Modal :: Follow */
.modal-area.mev-follow .modal-page {
    max-width: 850px;
}

.mev-follow h1.modal-tit {
    line-height: 30px;
    margin: 10px 0;
    font-family: 'Oxanium';
    font-size: 20px;
    letter-spacing: -.5pt;
}

.mev-follow h1.modal-tit ul li {
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}

.mev-follow h1.modal-tit ul li:after {
    position: absolute;
    top: 15%;
    left: 0;
    bottom: 15%;
    width: 1px;
    background-color: #333;
    content: '';
}

.mev-follow h1.modal-tit ul li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.mev-follow h1.modal-tit ul li:first-child::after {
    display: none;
}

.mev-follow h1.modal-tit ul li a {
    display: block;
    color: #212121;
}

.mev-follow h1.modal-tit ul li.active a {
    color: #4d4dff;
}

#followList .follow-con {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

#followList .follow-con:first-child {
    margin-top: 0 !important;
}

#followList .follow-con a {
    display: block;
    color: #212121;
}

#followList .follow-con a.pic {
    overflow: hidden;
    width: 20%;
    font-size: 0;
    border-radius: 50%;
}

#followList .follow-con a.userinfo {
    width: 80%;
    padding: 0 100px 0 15px;
}

#followList .follow-con a.userinfo strong {
    display: block;
}

#followList .follow-con a.userinfo span {
    display: block;
}

#followList .follow-con a.follow-btn {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100px;
    height: 36px;
    line-height: 34px;
    margin-top: -18px;
    border: 1px solid #999;
    font-family: 'Oxanium';
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
}

#followList .follow-con a.follow-btn.following {
    border-color: #4d4dff;
    background-color: #4d4dff;
    color: #fff;
}

@media screen and (min-width:479px) {
    #followList .follow-con a.pic {
        width: 15%;
    }

    #followList .follow-con a.userinfo {
        width: 85%;
        padding: 0 120px 0 20px;
    }
}

@media screen and (min-width:639px) {
    .mev-follow h1.modal-tit {
        font-size: 30px;
    }

    #followList .follow-con {
        margin-top: 30px;
    }

    #followList .follow-con a.pic {
        width: 80px;
    }

    #followList .follow-con a.userinfo {
        width: auto;
    }

    #followList .follow-con a.userinfo strong {
        font-size: 16px;
    }

    #followList .follow-con a.follow-btn {
        height: 40px;
        line-height: 38px;
        margin-top: -20px;
    }
}

@media screen and (min-width:767px) {
    #followList .follow-con a.userinfo {
        width: auto;
        padding: 0 220px 0 25px;
    }

    #followList .follow-con a.userinfo strong {
        font-size: 20px;
    }

    #followList .follow-con a.userinfo span {
        font-size: 16px;
    }

    #followList .follow-con a.follow-btn {
        width: 200px;
        height: 50px;
        line-height: 48px;
        margin-top: -25px;
        font-size: 18px;
    }
}


/* Comment Box */
.comment-area {
    position: relative;
}

.comment-area h3 {
    margin-bottom: 10px;
    font-family: 'Oxanium';
    font-size: 20px;
}

.comment-area .comment-write {
    position: relative;
}

.comment-area .comment-write .comment-write-btn {
    display: block;
    height: 50px;
    line-height: 50px;
    background-color: #6950E6;
    color: #fff;
    text-align: center;
    font-size: 16px;
}

.comment-area .comment-write .comment-write-btn em {
    display: inline-block;
}

.comment-area .comment-write .comment-write-btn span {
    display: inline-block;
    margin-left: 5px;
}

.comment-area .comment-list {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 2px solid #666;
}

.comment-area .comment-list .comment-con {
    position: relative;
    min-height: 50px;
    padding-left: 70px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.comment-area .comment-list .comment-con:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none;
}

.comment-area .comment-list .comment-con .pic {
    position: absolute;
    top: -5px;
    left: 0;
    overflow: hidden;
    width: 50px;
    height: 50px;
    font-size: 0;
    border-radius: 50%;
}

.comment-area .comment-list .comment-con .name-date em {
    display: inline-block;
    font-weight: 700;
}

.comment-area .comment-list .comment-con .name-date span.date {
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    color: #999;
}

.comment-area .comment-list .comment-con .name-date .del-edit a {
    display: inline-block;
    color: #666;
}

.comment-area .comment-list .comment-con .name-date .del-edit span {
    color: #ccc;
}

.comment-area .comment-list .comment-con .comment-txt {
    margin-top: 10px;
    color: #666;
}

.comment-area .more-btn {
    display: block;
    width: 200px;
    height: 50px;
    line-height: 48px;
    margin: 30px auto 0;
    border: 1px solid #dcdcdc;
    border-radius: 25px;
    color: #666;
    text-align: center;
}

@media screen and (min-width:639px) {
    .comment-area h3 {
        font-size: 24px;
    }
}

@media screen and (min-width:767px) {
    .comment-area .comment-list .comment-con .name-date .del-edit {
        position: absolute;
        top: 0;
        right: 0;
    }
}


/* Datepicker Design */
.ui-widget-header {
    border: 0px solid #dddddd;
    background: #fff;
}

.ui-datepicker-calendar > thead > tr > th {
    font-size: 14px !important;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 10px 0;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 0px solid #c5c5c5;
    background-color: transparent;
    font-weight: normal;
    color: #454545;
    text-align: center;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 0em;
    line-height: 16px;
    text-align: center;
    font-size: 14px;
    padding: 0px;
    font-weight: bold;
}

.ui-datepicker {
    display: none;
    background-color: #fff;
    border-radius: 4px;
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 20px;
    padding-bottom: 10px;
    width: 300px;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
}
    
.ui-widget.ui-widget-content {
    border: 1px solid #eee;
}

#datepicker:focus>.ui-datepicker {
    display: block;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
}

.ui-datepicker-next {
    float: right;
}

.ui-state-disabled {
    cursor: auto;
    color: hsla(0, 0%, 80%, 1);
}

.ui-datepicker-title {
    text-align: center;
    padding: 10px;
    font-weight: 100;
    font-size: 20px;
}

.ui-datepicker-calendar {
    width: 100%;
}

.ui-datepicker-calendar > thead > tr > th {
    padding: 5px;
    font-size: 20px;
    font-weight: 400;
}

.ui-datepicker-calendar > tbody > tr > td > a {
    color: #000;
    font-size: 12px !important;
    font-weight: bold !important;
    text-decoration: none;
}


.ui-datepicker-calendar > tbody > tr > .ui-state-disabled:hover {
    cursor: auto;
    background-color: #fff;
}
    
.ui-datepicker-calendar > tbody > tr > td {
    border-radius: 100%;
    width: 44px;
    height: 30px;
    cursor: pointer;
    padding: 0px !important;
    font-weight: 100;
    text-align: center;
    font-size: 12px;
}
    
.ui-datepicker-calendar > tbody > tr > td:hover {
    background-color: transparent;
    opacity: 0.6;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: 0px solid #cccccc;
    background-color: transparent;
    font-weight: normal;
    color: #2b2b2b;
}

.ui-widget-header .ui-icon {
    background-image: url('../../images/common/datepicker_btns.png') !important;
}

.ui-icon-circle-triangle-e {
    background-position: -20px 0px;
    background-size: 36px;
}

.ui-icon-circle-triangle-w {
    background-position: -0px -0px;
    background-size: 36px;
}
    
.ui-datepicker-calendar > tbody > tr > td:first-child a{
    color: red !important;
}
    
.ui-datepicker-calendar > tbody > tr > td:last-child a{
    color: #0099ff !important;
}
    
.ui-datepicker-calendar > thead > tr > th:first-child {
    color: red !important;
}
    
.ui-datepicker-calendar > thead > tr > th:last-child {
    color: #0099ff !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 0px;
    background: #f1f1f1;
    border-radius: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.inp {
    padding:10px 10px;
    background-color:#f1f1f1;
    border-radius:4px;
    border:0px;
}

.inp:focus {
    outline:none;
    background-color:#eee;
}