/**
 * Created by foreverpinetree@gmail.com
 */

.guide-arrow-btn {
    font-style: normal;
    font-family: 'myicon';
    position: absolute;
    z-index: 98;
    bottom: 12px;;
    cursor: pointer;
    background: rgba(128,128,128,0.5);
    padding: 10px 20px;
    color: #fff;
    font-size: 30px;
    opacity: 0.3;
    pointer-events: none;
    display: none;
    transition: background 0.2s;
}

body:not(.real-mobile) .guide-arrow-btn {
	display: block;
}

.guide-arrow-btn.enabled {
    opacity: 1;
    pointer-events: auto;
}

.guide-arrow-btn.enabled:hover {
    background: rgba(128,128,128,0.7);
}

.guide-arrow-btn i:before {
    font-style: normal;
    font-family: 'myicon';
}

.guide-arrow-btn.go-prev {
    left: 0;
}

.guide-arrow-btn.go-next {
    right: 0;
}

.guide-arrow-btn.go-prev i:before {
    content: '\e926';
}

.guide-arrow-btn.go-next i:before {
    content: '\e927';
}

@-webkit-keyframes pt-flash {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes pt-flash {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/* --- scroll tips --- */

body.using-touchpad .pt-scroll-tips .wrap > p {
    z-index: 0;
    color: #aaa;
    top: 90px;
}

body.using-touchpad .pt-scroll-tips .wrap.show-img:after {
    width: 150px;
    left: 10px;
	top: 14px;
	z-index: 10;
    background-image: url(../images/roll-tip.svg);
}

/* --- text carousel --- */

.arrow-buttons {
    display: none;
    position: relative;
    left: -4.5vw;
    z-index: 999;
}

body:not(.m-mode) .sc-text-carousel .wrap.no-single-item + .arrow-buttons {
    display: block;
}

.arrow-btn {
    width: 26px;
    height: 45px;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    display: block;
    position: relative;
    left: 0;
    opacity: 0.6;
    cursor: pointer;

    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.arrow-btn.prev {
    top: calc(-10px);
}

.arrow-btn.next {
    top: calc(10px);
    transform: rotate(180deg);
}

.arrow-btn:hover {
    opacity: 1;
}


/* --------------------------------- */
/* accordion */

.sc-accordion{
	padding: 3vw;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    display: -webkit-flex;
}

.sc-accordion h2.title {
    line-height: 1.2;
}

.sc-accordion.vertical-center {
    -webkit-align-items: center;
    align-items: center;
}

.sc-accordion + .sc-progress,
.sc-progress + .sc-accordion{
	padding-top: 0;
}
.sc-accordion .wrap{
	margin-left: auto;
	margin-right: auto;
    width: 100%;
}
.sc-accordion .item{
	display: block;
}
.sc-accordion .item {
	padding-bottom: 30px;
}

.sc-accordion .inner-wrap{
	border: 2px solid rgba(255,255,255,.2);
	transition: border 0.2s;
	border-radius: 8px;
}
.sc-accordion .item:not(.open):hover .inner-wrap{
	border-color: rgba(255,255,255,.4);
}
.sc-accordion .item.open .inner-wrap{
	border-color: rgba(255,255,255,1);
}

.sc-accordion[data-w="0.25"] {
    width: 25%;
}
.sc-accordion[data-w="0.3333"] {
    width: 33.33%;
}
.sc-accordion[data-w="0.4"] {
    width: 40%;
}
.sc-accordion[data-w="0.5"] {
    width: 50%;
}
.sc-accordion[data-w="0.6"] {
    width: 60%;
}
.sc-accordion[data-w="0.6666"] {
    width: 66.66%;
}
.sc-accordion[data-w="0.75"] {
    width: 75%;
}
.sc-accordion[data-w="1"] {
    width: 100%;
}

.site-light .sc-accordion .inner-wrap{
	border-color: rgba(21,22,26,.1);
}
.site-light .sc-accordion .item:not(.open):hover .inner-wrap{
	border-color: rgba(21,22,26,.2);
}
.site-light .sc-accordion .item.open .inner-wrap{
	border-color: rgba(21,22,26,1);
}

.sc-accordion .item .title{
	font-size: calc(1rem + 0.6vw);
	cursor: pointer;
	padding: 30px;
	padding-right: 80px;
	border-bottom: 1px solid transparent;
}
.sc-accordion .item.open .title{
	border-color: rgba(166,166,166,.2);
}
.sc-accordion .text-area{
	display: none;
	padding: 44px 50px;
	white-space: pre-line;
	font-size: calc( 0.875rem + 0.25vw );
}

.sc-accordion .item .title:before{
	content: '\e925';
	position: absolute;
	height: 30px;
	line-height: 30px;
	top: 50%;
	right: 30px;
	margin-top: -15px;
	font-family: 'myicon';
	font-size:24px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.sc-accordion .item.open .title:before{
	transform: rotate(180deg);
}
@media (max-width: 768px){
	.sc-accordion .item .title{
		padding: 4%;
		padding-right: 50px;
	}
	.sc-accordion .text-area{
		padding: 5.5% 6%;
		padding-top: 2%;
	}
	.sc-accordion .item:not(:last-child){
		padding-bottom: 20px;
	}
	.sc-accordion .item .title:before{
		right: 10px;
	}
}

.win-v .sc-accordion,
.m-mode .sc-accordion {
    width: 100% !important;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* --- read more --- */
.has-readmore:not(.open) .split-part2 {
    display: none;
}

.readmore-btn {
    cursor: pointer;
    text-decoration: underline;
}

/* .has-readmore .readmore-btn.open {
    display: none;
} */

/* next-section */
a.next-section {
    color: #222;
    border: 1px solid #222;
    padding: 6px 15px;
    border-radius: 30px;
    position: fixed;
    right: 50px;
    bottom: calc(2vh + 36px);
	cursor: pointer;
	transition: all 0.2s;
	font-size: 1.125rem !important;
    line-height: 160%;
	z-index:999;
}

a.next-section.no-border {
	border: none;
}

.ptsc.text-white a.next-section {
    color: #fff;
	border-color: #fff;
}

a.next-section:hover {
	color: #fff;
	background: #222;
}

.ptsc.text-white a.next-section:hover {
	color: #222;
	background: #fff;
}

a.next-section:not(.no-arrow):after {
	font-family:FontAwesome;
	content: '\f178';
	margin-left: 8px;
}

.win-v .ptsc a.next-section {
	display: none;
}