/* Reset */
@font-face {
    font-family: 'UhBeeMiMi';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/UhbeeMiMi/UhBee-MiMi.woff') format('woff');
}

@font-face {
    font-family: 'S-CoreDream-8Heavy';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SCDream/S-CoreDream-8Heavy.woff') format('woff');
}

@font-face {
    font-family: 'S-CoreDream-6Bold';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SCDream/S-CoreDream-6Bold.woff') format('woff');
}

@font-face {
    font-family: 'S-CoreDream-5Medium';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SCDream/S-CoreDream-5Medium.woff') format('woff');
}

@font-face {
    font-family: 'S-CoreDream-4Regular';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SCDream/S-CoreDream-4Regular.woff') format('woff');
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

html, body {
    background: #f7f9fa;
}

body {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7em;
    background: #fff;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #1f8ceb;
}

button, a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    margin: 0;
    font-family: 'S-CoreDream-4Regular', sans-serif;
    font-weight: normal;
    line-height: 1.6em;
    background: none;
}

textarea {
    overflow: hidden;
}

p {
    position: relative;
    line-height: 1.8em;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    display: inline-block;
    max-width: 100%;
}

.auto-container {
    position: static;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.contarea {
    position: relative;
    display: flex;
    flex-basis: 100%;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.desc-section {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    background: #fff;
}

.desc-section h2, .textcont h2 {
    padding-bottom: 20px;
    color: #545454;
    font-family: 'S-CoreDream-6Bold';
    font-size: 40px;
    font-weight: 500;
}

.desc-section h3, .textcont h3 {
    padding-top: 10vh;
    padding-bottom: 2vh;
    color: #545454;
    font-family: 'S-CoreDream-6Bold';
    font-size: 40px;
    font-weight: 500;
}

.desc-section h2 strong {
    color: #484848;
    font-family: 'S-CoreDream-8Heavy';
    font-size: 37px;
    font-weight: 500;
}

.desc-section p, .textcont p {
    color: #545454;
    font-size: 20px;
}

.contarea {
    flex-basis: 50%;
}

.imgcont {
    flex-basis: 50%;
}

.imgcont div {
    width: 100%;
    height: 100%;
}

.textcont {
    flex-basis: 65%;
}

.txtarea {
    position: absolute;
    z-index: 999;
    top: 310px;
    padding-left: 8vw;
}

@media screen and (max-width: 991px) {
    .txtarea {
        top: 0;
    }
}

/* Header */
.header {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.header .header-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 185px;
    height: 25px;
    color: #ff6350;
    font-size: 20px;
    font-weight: bold;
    background: url("../image/company/logo.png") no-repeat;
}

.header-hide {
    transform: translateY(-100px);
}

.header .nav {
    float: right;
    padding: 20px;
    font-size: 16px;
}

.header .nav .nav-list > li {
    float: left;
    padding-left: 20px;
}

.header .nav .nav-list > li > a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 25px;
}

.full-nav {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    height: 0;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    opacity: 0;
    font-family: 'Roboto', sans-serif;
    background: #141414;
}

.full-nav.open {
    position: absolute;
    z-index: 1;
    visibility: visible;
    height: 100%;
    opacity: 1;
}

.full-nav.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.full-nav.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.full-nav.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.full-nav.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.full-nav nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    font-family: 'S-CoreDream-6Bold';
    font-size: 200%;
}

.full-nav ul {
    position: relative;
    display: inline-block;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.full-nav ul li {
    position: relative;
    display: block;
    min-height: 50px;
    padding-bottom: 50px;
    opacity: 0;
}

.full-nav ul li:last-child {
    padding-bottom: 0;
}

.full-nav ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    line-height: 150%;
}

.full-nav ul li a:hover:after, .full-nav ul li a:focus:after, .full-nav ul li a:active:after {
    width: 100%;
}

.full-nav ul li a:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    content: '';
    -webkit-transition: .35s;
    transition: .35s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
}

.full-nav-btn {
    position: fixed;
    z-index: 100;
    top: 22px;
    right: 20px;
    display: none;
    width: 30px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.full-nav-btn:hover {
    opacity: .7;
}

.full-nav-btn.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(6px) translateX(0) rotate(45deg);
    background: #fff;
}

.full-nav-btn.active .middle {
    opacity: 0;
    background: #fff;
}

.full-nav-btn.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fff;
}

.full-nav-btn span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    cursor: pointer;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    background: #fff;
}

.full-nav-btn span:nth-of-type(2) {
    top: 8px;
}

.full-nav-btn span:nth-of-type(3) {
    top: 17px;
}

@media screen and (max-width: 991px) {
    .header .nav {
        display: none;
    }

    .full-nav-btn {
        display: block;
    }
}

/* Key Visual */
.key-visual {
    height: 100%;
    padding-top: 78px;
    padding-bottom: 100px;
    background: url(../image/background/visual_01.png) 0 0 no-repeat;
    background-size: cover;
}

.key-visual .auto-container {
    max-width: 1500px;
    padding: 0;
}

.key-visual .content-box {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 20vh;
}

.key-visual .content-box h2 {
    position: relative;
    color: #fcf8f3;
    font-family: 'S-CoreDream-8Heavy';
    font-size: 85px;
    font-weight: 600;
    line-height: 1.1em;
}

.key-visual .content-box h2 span {
    color: #ff6350;
    font-weight: 900;
}

.key-visual .content-box .text {
    position: relative;
    margin: 16px 0 45px 10px;
    color: #eaeaea;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
}

@media screen and (max-width: 1440px) {
    .key-visual .content-box {
        padding-top: 18vh;
        padding-left: 10vw;
    }
}

@media screen and (max-width: 1023px) {
    .key-visual .content-box h2 span {
        padding-left: 0;
    }

    .key-visual {
        height: auto;
    }

    .key-visual .content-box h2 {
        font-size: 65px;
    }

    .key-visual .content-box {
        padding-top: 7vw;
    }
}

@media screen and (max-width: 991px) {
    .key-visual .content-box h2 span {
        padding-left: 0;
    }

    .key-visual .content-box h2 {
        font-size: 50px;
    }

    .key-visual .content-box {
        padding-top: 13vh;
        padding-left: 5vw;
    }
}

.btn-google {
    display: inline-block;
    width: 200px;
    height: 50px;
    -webkit-transition: all 0.3s ease-in;
    color: #fff;
    font-size: 0;
    line-height: 44px;
    border: solid 1px rgba(254, 98, 84, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1) url('../image/icons/logo_googleplay.png') no-repeat 50% 50%;
    background-size: 110px;
}

.btn-google span {
    display: inline-block;
    height: 100%;
    padding: 0 0 0 25px;
}

.btn-apple {
    display: inline-block;
    width: 200px;
    height: 50px;
    margin-left: 10px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 46px;
    border: solid 1px rgba(254, 98, 84, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1) url('../image/icons/logo_apple.png') no-repeat 50% 50%;
}

.btn-apple span {
    display: inline-block;
    height: 100%;
    padding: 0 0 0 25px;
    letter-spacing: 0;
    background: url("../image/icons/ico_apple.png") no-repeat 0 50%;
    background-size: 19px;
}

@media screen and (max-width: 640px) {
    .btn-google, .btn-apple {
        width: 155px;
        height: 46px;
    }

    .btn-google {
        line-height: 42px;
    }
}

@media screen and (max-width: 360px) {
    .btn-google, .btn-apple {
        width: 145px;
    }

    .btn-apple {
        margin-left: 10px;
    }
}

@media screen and (max-width: 359px) {
    .btn-google, .btn-apple {
        width: 140px;
    }
}

.icon-scroll, .icon-scroll:before {
    position: absolute;
    left: 50%;
}

.icon-scroll {
    bottom: 40px;
    width: 30px;
    height: 50px;
    margin-top: -35px;
    margin-left: -20px;
    border-radius: 25px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.icon-scroll:before {
    top: 8px;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    content: '';
    -webkit-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 4px;
    background: #fff;
}

@media screen and (max-width: 1023px) {
    .icon-scroll {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .key-visual .content-box h2 span {
        padding-left: 0;
    }

    .icon-scroll {
        display: none;
    }
}

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(46px);
        -webkit-transform: translateY(46px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(46px);
        -webkit-transform: translateY(46px);
    }
}

/* Footer */
.footer {
    padding: 80px 0;
    background-color: #3d3f41;
}

.footer .inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer .info {
    display: flex;
}

.footer .info .company {
    display: block;
    flex-basis: 19%;
    margin: 0 0 9px 0;
    color: #c8c8c8;
    font-size: 14px;
}

.footer .info > ul {
    overflow: hidden;
    flex-basis: 100%;
    text-align: center;
}

.footer .info > ul li {
    position: relative;
    display: inline-block;
    padding-left: 22px;
    letter-spacing: normal;
    color: #a5a5a5;
    font-size: 13px;
    line-height: 1.5;
}

/* .footer .info > ul li:first-child, .footer .info > ul li:nth-child(5) {
    padding-left: 0;
}
*/

.footer .info > ul li:before {
    position: absolute;
    top: 5px;
    right: -12px;
    width: 1px;
    height: 8px;
    content: '';
    background-color: #666;
}

.footer .info > ul li:last-child:before {
    display: none;
}

.footer .info > ul li a {
    vertical-align: top;
    color: inherit;
}

.copyright {
    padding-top: 15px;
    text-align: center;
    letter-spacing: normal;
    color: #a5a5a5;
    font-size: 12px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .footer {
        padding: 50px 0;
    }

    .footer .inner {
        padding-right: 20px;
        padding-left: 20px;
    }

    .footer .info > ul {
        margin-right: 0;
    }

    .footer .info > ul li {
        padding-left: 18px;
        font-size: 12px;
    }

    .footer .family {
        right: 20px;
    }

    .footer .inner {
        padding-right: 15px;
        padding-left: 15px;
    }

    .footer .info .copyright {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .footer .info {
        flex-direction: column;
    }

    .footer .info .company {
        width: 100%;
        text-align: center;
    }

    .footer .info > ul {
        flex-basis: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .footer .info > ul br {
        display: none;
    }

    .footer .info > ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    .footer .info > ul li:before {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .footer .info > ul li {
        border-bottom: 1px dashed #717171;
    }
}

/* Service */
.service {
    position: unset;
    background: #f7f9fa;
}

.service .textcont {
    flex-basis: 100%;
    padding-top: 20vh;
    padding-left: 19vw;
}

@media screen and (max-width: 1200px) {
    .service .textcont {
        padding-left: 10vw;
    }
}

.service-group {
    display: flex;
    height: 960px;
}

.service-group strong {
    font-size: 35px;
    font-weight: 500;
}

.service-inner {
    position: relative;
    display: flex;
}

.service-group .textcont p {
    letter-spacing: .7px;
    font-family: 'uhbeemimi';
    font-size: 20px;
    line-height: 30px;
}

.desc-section p, .textcont p {
    color: #545454;
    font-size: 20px;
}

.service-group span em {
    color: #ff6350;
}

@media screen and (max-width: 991px) {
    .service-inner {
        flex-direction: column;
    }

    .service-group {
        flex-direction: column;
        height: auto;
    }

    .service .textcont {
        padding: 0;
        text-align: center;
    }

    .service-group strong {
        font-size: 30px;
    }

    .desc-section h3, .textcont h3 {
        padding-top: 2vh;
        font-size: 35px;
    }

    .service-group .textcont p {
        font-size: 18px;
    }

    .service .contarea:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: '';
        background: rgba(0, 0, 0, 0.4);
    }

    .service div:first-child .contarea {
        padding: 100px 25px;
        background: url(../image/background/service-1.jpg) 0 -100px no-repeat;
        background-size: 991px auto;
    }

    .service div:nth-child(2) .contarea {
        padding: 100px 25px;
        background: url(../image/background/service-2.jpg) 0 -470px no-repeat;
        background-size: 991px auto;
    }

    .service div:last-child .contarea {
        padding: 100px 25px;
        background: url(../image/background/service-3.jpg) 0 -125px no-repeat;
        background-size: 991px auto;
    }

    .service .imgcont {
        display: none;
    }

    .service-group .textcont p {
        color: #e2e2e2;
    }

    .service-group .textcont h3 {
        color: #fff;
    }

    .service-group span em {
        color: #fff;
    }
}

@media screen and (max-width: 500px) {
    .service div:first-child .contarea {
        background-position: -100px -100px;
    }

    .service div:nth-child(2) .contarea {
        background-position: -75px -478px;
    }

    .service div:last-child .contarea {
        background-position: -250px -125px;
    }
}

/* Service App */
.service-app {
    position: relative;
    overflow: hidden;
    height: 1000px;
    background: #fff;
}

.service-app h3 {
    padding-bottom: 3vh;
    color: #333;
    font-family: 'S-CoreDream-6Bold';
    font-size: 40px;
}

.service-app h3 span {
    color: #ff6350;
}

.service-app .mobile img {
    max-width: 259px;
    margin: 10px 11px 18px;
    border-radius: 20px;
}

.desc-service {
    position: relative;
}

.service-app .swiper-container {
    position: unset;
    width: 100%;
    height: 100%;
    padding: 12px;
}

.service-app .swiper-text {
    padding: 12px 0;
}

.service-app .swiper-pagination-bullets {
    z-index: 100;
    bottom: unset;
    width: 340px;
}

.service-app .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    margin: 0 20px;
    opacity: .5;
    color: #394963;
    font-size: 18px;
    border-radius: 0;
    background: transparent;
}

.service-app .swiper-pagination-bullet-active {
    opacity: 1;
}

.service-app .swiper-pagination-bullet:nth-child(1) {
    margin-left: 0;
    background: url("../image/icons/service-icon-01.png") no-repeat;
}

.service-app .swiper-pagination-bullet:nth-child(2) {
    background: url("../image/icons/service-icon-02.png") no-repeat;
}

.service-app .swiper-pagination-bullet:nth-child(3) {
    background: url("../image/icons/service-icon-03.png") no-repeat;
}

.service-app .swiper-pagination-bullet:nth-child(4) {
    background: url("../image/icons/service-icon-04.png") no-repeat;
}

.service-app .swiper-pagination-bullet:nth-child(5) {
    background: url("../image/icons/service-icon-05.png") no-repeat;
}

.service-app .swiper-pagination-bullet-active:nth-child(1) {
    background: url("../image/icons/service-icon-active-01.png") no-repeat;
}

.service-app .swiper-pagination-bullet-active:nth-child(2) {
    background: url("../image/icons/service-icon-active-02.png") no-repeat;
}

.service-app .swiper-pagination-bullet-active:nth-child(3) {
    background: url("../image/icons/service-icon-active-03.png") no-repeat;
}

.service-app .swiper-pagination-bullet-active:nth-child(4) {
    background: url("../image/icons/service-icon-active-04.png") no-repeat;
}

.service-app .swiper-pagination-bullet-active:nth-child(5) {
    background: url("../image/icons/service-icon-active-05.png") no-repeat;
}

.mobile {
    overflow: hidden;
    width: 313px;
    margin-top: 190px;
    margin-left: 80px;
    opacity: 1;
    border-radius: 28px 28px 0 0;
    background: url(../image/resource/mockup.png) center center no-repeat;
    background-size: 100% 100%;
}

.service-inner {
    position: relative;
    display: flex;
}

.desc-service .swiper-slide {
    top: 470px;
    padding-left: 8vw;
    background: #fff;
}

.desc-service h2 {
    padding-bottom: 10px;
    color: #333;
    font-family: 'S-CoreDream-4Regular';
    font-size: 25px;
    font-weight: 500;
}

.desc-service p {
    font-family: 'S-CoreDream-4Regular';
    font-size: 17px;
}

.trans-box {
    position: absolute;
    z-index: 20;
    bottom: 0;
    width: 100%;
    height: 75%;
}

@media screen and (max-width: 991px) {
    .desc-service .swiper-slide {
        top: 0;
    }

    .mobile {
        top: 100px;
    }

    .image-service {
        display: flex;
        order: 2;
    }

    .desc-service {
        display: flex;
        order: 1;
    }

    .service-app {
        height: auto;
        padding-top: 100px;
    }

    .service-app .swiper-text {
        position: relative;
        top: 160px;
    }

    .service-app .swiper-pagination-bullets {
        width: 100%;
    }

    .service-app .swiper-pagination-bullet {
        margin: 0 5px;
    }

    .service-app .txtarea {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .mobile-wrap {
        width: 313px;
        margin: 0 auto;
    }

    .mobile {
        height: 400px;
        margin-left: 0;
        background: url(../image/resource/mockup-sm.png) center center no-repeat;
    }

    .desc-service .swiper-slide {
        padding-left: 0;
        text-align: center;
    }
}

/* Security */
.parallax-wrap {
    position: relative;
}

.parallax-inner {
    width: 100%;
}

.parallax-inner h2, .parallax-inner h2 strong {
    color: #fff;
}

.parallax-inner p {
    color: #f6f6f6;
    font-size: 17px;
}

.security {
    text-align: center;
}

.security-wrap {
    padding: 200px 0;
    background: url('../image/background/visual_02.png') no-repeat center;
    background-size: cover;
}

@media screen and (max-width: 991px) {
    .parallax-wrap {
        background: url(../image/background/visual_02.png) no-repeat center;
        background-size: cover;
    }

    .security-wrap {
        background: none;
    }
}

/* Download */
.download-wrap {
    position: relative;
    overflow-y: hidden;
    padding-top: 10vh;
    background: #fafafb;
}

.download-wrap .auto-container {
    display: flex;
    text-align: center;
}

.download-wrap h2 {
    padding-top: 100px;
}

.download-wrap h2 em {
    color: #ff6350;
}

.download-wrap p {
    padding: 0 0 50px;
    color: #333;
    font-size: 17px;
}

.google {
    display: inline-block;
    width: 200px;
    height: 80px;
    margin: 0 5px;
    background: url(../image/icons/google.png) no-repeat;
    background-size: 200px;
}

.appstore {
    display: inline-block;
    width: 200px;
    height: 80px;
    margin: 0 5px;
    background: url(../image/icons/appstore.png) no-repeat;
    background-size: 200px;
}

@media screen and (max-width: 991px) {
    .download-wrap .imgcont {
        display: none;
    }

    .download-wrap {
        padding: 50px 0;
    }

    .download-wrap .textcont {
        flex-basis: 100%;
        padding-left: 0;
    }

    .download-wrap .textcont h2 {
        padding-top: 0;
        font-size: 30px;
    }

    .google, .appstore {
        width: 140px;
        height: 56px;
        background-size: 140px;
    }

    .download-wrap .textcont h2 i {
        display: block;
    }
}

/* Tooltip */
[data-tooltip], [data-tooltip] *:before, [data-tooltip] *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-kerning: auto;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

[data-tooltip]:before {
    position: absolute;
    top: -.5em;
    left: calc(50% - 5px);
    content: '';
    border: 5px solid transparent;
    border-top-color: #6d2b66;
}

[data-tooltip]:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: auto;
    min-width: 100px;
    padding: 8px 10px;
    content: attr(data-tooltip);
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 12pt;
    border-radius: 3px;
    outline: none;
    background: #ff6350;
}

[data-tooltip]:before, [data-tooltip]:after {
    visibility: hidden;
    transition: all .2s ease-in-out;
    pointer-events: none;
    opacity: 0;
}

[data-tooltip]:hover:before, [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

[data-tooltip][data-popover] {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    outline: none;
}

[data-tooltip][data-popover]:before {
    top: auto;
    bottom: -10px;
    left: 95px;
    border-top-color: transparent;
    border-bottom-color: #ff6350;
}

[data-tooltip][data-popover]:after {
    position: absolute;
    z-index: 2000;
    top: 58px;
    bottom: auto;
    left: 0;
    width: auto;
    min-width: 200px;
    padding: 8px 10px;
    white-space: normal;
}

@media screen and (max-width: 640px) {
    [data-tooltip][data-popover]:before {
        left: 75px;
    }

    [data-tooltip][data-popover]:after {
        top: 53px;
        min-width: 155px;
    }
}

@media screen and (max-width: 359px) {
    [data-tooltip][data-popover]:after {
        min-width: 140px;
    }
}

.download-wrap [data-tooltip][data-popover]:after {
    top: 88px;
}

@media screen and (max-width: 640px) {
    .download-wrap [data-tooltip][data-popover]:before {
        bottom: 15px;
        left: 65px;
    }

    .download-wrap [data-tooltip][data-popover]:after {
        top: 65px;
        min-width: 140px;
    }
}
