.disable-selection {
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.preview_video_name {
    font-size: 26px;
    width: 80%;
    max-width: 550px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    display: block;
    margin-bottom: 20px;
}

.preview_video {
    text-align: center;
}

.preview_photo {
    width: 65vw;
    height: calc(56.25vw * 0.65);
    background-color: #fff;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#home {
    position: relative;
}

.home_login_button_animation {
    animation: zoom_in_out 1s ease 1;
}

.apps_title {
    display: block;
    font-size: 65px;
    font-weight: bold;
    background: linear-gradient(to right, #4f47ff 0%, #ffabfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding-top: 30px;
}

.apps_title_small {
    padding-top: 20px;
    font-size: 35px;
}

.apps_title_small2 {
    padding-top: 10px;
    font-size: 25px;
    margin-bottom: 35px;
}

.more {
    margin-top: -20px;
    margin-bottom: 100px;
    font-size: 64px;
    background: linear-gradient(to right, #1a9aff 0%, #d8ff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#apps {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.app_container {
    height: 420px;
    width: 400px;
    position: relative;
    border: 1px;
    display: inline-block;
    margin: 10px;
    margin-bottom: 60px;
    box-shadow: 0 0 20px #00000012;
    padding-bottom: 10px;
}

.app_container.app_pay::after {
    content: "$";
    line-height: 60px;
    font-size: 40px;
    width: 60px;
    color: #fff;
    height: 60px;
    background-color: #ffc800;
    position: absolute;
    left: -10px;
    top: -10px;
    border-radius: 100%;
    box-shadow: 0 0 9px #00000026;
    transform: rotate( -9deg);
    transition: all ease 0.2s;
    display: none !important;
}

.app_container.app_pay::before {
    content: attr(text-data);
    font-size: 0px;
    transition: all ease 0.2s;
    position: absolute;
    left: 0;
    top: 0;
    display: none !important;
}

.app_container:hover.app_pay::after {
    transform: rotate( 0deg);
}

.app_container:hover.app_pay::before {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-color: #ea00ff;
    position: absolute;
    left: 25px;
    top: 5px;
    box-shadow: 0 0 9px #0000002b;
    display: inline-block;
    padding: 8px 8px 8px 30px;
    border-radius: 30px;
}

.app_container .app_images {
    height: 250px;
    width: 100%;
    background-color: #ddd;
    display: block;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.app_container .app_title {
    font-size: 20px;
    width: 97%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    margin: 10px 0;
    padding: 0 5px
}

.app_container .app_description {
    font-size: 11px;
    color: #666;
    height: 60px;
    width: 96%;
    overflow: hidden;
    margin: 10px 0;
    padding-left: 2%;
}

.app_container .app_geturi,
.app_container .app_viewvideo,
.app_container .app_viewvideo_no {
    height: 35px;
    margin-top: 15px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    line-height: 35px;
    border-radius: 35px;
    box-shadow: 0px 3px 5px #9e9e9e69;
}

.app_container .app_geturi {
    background-color: #ea00ff;
    float: left;
    width: 52%;
    margin-left: 2%;
}

.app_container .app_viewvideo {
    background-color: #808080;
    float: right;
    width: 38%;
    margin-right: 2%;
}

.app_container .app_viewvideo.mini {
    width: 80px;
}

.app_container .app_viewvideo.app_video {
    background-color: #f10000;
}

.app_container .app_viewvideo_no {
    background-color: #e4e4e4;
    float: right;
    width: 38%;
    margin-right: 2%;
    color: #b5b5b5;
    cursor: context-menu;
}

a {
    text-decoration: none;
}

.app_container_loading {
    overflow: hidden;
}

.app_container_loading::before {
    content: "";
    position: absolute;
    height: 115%;
    width: 200px;
    background-color: #ffffffad;
    top: -25px;
    left: 55px;
    transform: rotate( 10deg);
    animation: app_box_load 1s ease infinite;
}

.app_container_loading .app_geturi,
.app_container_loading .app_viewvideo {
    background-color: #d0d0d0
}

@keyframes app_box_load {
    0% {
        left: -65%;
        background-color: rgba(255, 255, 255, 0);
    }
    50% {
        background-color: rgba(255, 255, 255, 0.8);
    }
    100% {
        left: 115%;
        background-color: rgba(255, 255, 255, 0);
    }
}

@keyframes zoom_in_out {
    0% {
        transform: scale(1) rotate(0);
    }
    25% {
        transform: scale(1.1) rotate(-1deg);
    }
    75% {
        transform: scale(1.1) rotate(1deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

@keyframes loading_circle_animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}