/* Normalize */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-color: #e3e3e3;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    color: #03a9f4;
    cursor: pointer;
    /*
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    */
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    vertical-align: top;
}

ins {
    background: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted;
}

button:hover {
    cursor: pointer;
    background-color: transparent;
}

button:active,
button:focus {
    outline: none;
    border: none;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[hidden] {
    display: none;
}


/*
****************
  Tamindir v2.0
****************
*/

body {
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

.container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.content {
    /* overflow: hidden;*/
}


/* Header */

header {
    width: 100%;
    height: 64px;
    background: #007EE7;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-bar header {
    position: fixed;
}

header.active {
    background: #1C212D;
}

header .menu {
    width: 25px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 102;
}

header .menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

header .menu span:nth-child(1) {
    top: 0px;
}

header .menu span:nth-child(2) {
    top: 8px;
}

header .menu span:nth-child(3) {
    top: 16px;
}

header .menu.open span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

header .menu.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

header .menu.open span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

header .logo {
    display: inline-block;
    vertical-align: middle;
    width: 132px;
}

header .logo a {
    display: block;
    padding: 15px 0;
}


/* Header Nav */

header nav {
    display: inline-block;
    vertical-align: middle;
}

header nav.hide {
    opacity: 0;
}

header nav ul li {
    display: inline-block;
    margin-right: 10px;
}

header nav ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: block;
    padding: 24px 15px;
    text-transform: uppercase;
}


/* Search Form */

header .mobile-search {
    display: none;
}

header .search-form {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    padding: 10px;
    text-align: center;
    z-index: 97;
}

header .search-form input[type=search] {
    width: 100%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    height: 44px;
    padding: 10px 45px 10px 20px;
    border: none;
}

header .search-form input[type=search]:focus {
    outline: none;
}

header .search-form input::placeholder {
    color: rgba(255, 255, 255, .3);
}

header .search-form button {
    background: no-repeat;
    border: none;
    position: absolute;
    top: 21px;
    right: 20px;
}


/* Mega Menu */

header .mega-menu {
    width: 100%;
    background: #222732;
    padding-top: 40px;
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-64px) translateZ(0);
    transform: translateY(-64px) translateZ(0);
}

header .mega-menu.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px) translateZ(0);
    transform: translateY(0px) translateZ(0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

header .mega-menu>.container {
    background: url(../image/menu-logo.png) no-repeat right center;
}

header .mega-menu .mega-menu-left {
    width: 700px;
    display: inline-block;
    vertical-align: top;
}

header .mega-menu .mega-menu-list {
    width: 150px;
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}

header .mega-menu .mega-menu-list.mobile {
    display: none;
}

header .mega-menu .mega-menu-list a {
    color: #fff;
}

header .mega-menu .mega-menu-list h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

header .mega-menu .mega-menu-left .mega-menu-list h3 a {
    padding-left: 30px;
    line-height: 24px;
}

header .mega-menu .mega-menu-left .mega-menu-list h3 a::before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    top: -1px;
    left: 0;
}

header .mega-menu .mega-menu-list .menu-app a::before {
    background: url(../image/icon/menu-app.svg) no-repeat center;
    background-size: 24px;
}

header .mega-menu .mega-menu-list .menu-game a::before {
    background: url(../image/icon/menu-game.svg) no-repeat center;
    background-size: 24px;
}

header .mega-menu .mega-menu-list .menu-news a::before {
    background: url(../image/icon/menu-news.svg) no-repeat center;
    background-size: 24px;
}

header .mega-menu .mega-menu-list .menu-blog a::before {
    background: url(../image/icon/menu-blog.svg) no-repeat center;
    background-size: 24px;
}

header .mega-menu .mega-menu-list .menu-video a::before {
    background: url(../image/icon/menu-video.svg) no-repeat center;
    background-size: 24px;
}

header .mega-menu .mega-menu-list .menu-lists a::before {
    background: url(../image/icon/menu-lists.svg) no-repeat center;
    background-size: 24px;
    top: 0px !important;
}

header .mega-menu .mega-menu-list .menu-os a::before {
    background: url(../image/icon/menu-os.svg) no-repeat center;
    background-size: 24px;
}

header .mega-menu .mega-menu-list .menu-windows a::before {
    background: url(../image/icon/os/os_windows.svg) no-repeat center;
    background-size: 24px;
    filter: brightness(0) invert(1);
}

header .mega-menu .mega-menu-list .menu-android a::before {
    background: url(../image/icon/os/os_android.svg) no-repeat center;
    background-size: 24px;
    filter: brightness(0) invert(1);
}

header .mega-menu .mega-menu-list .menu-ios a::before {
    background: url(../image/icon/os/os_ios.svg) no-repeat center;
    background-size: 24px;
    filter: brightness(0) invert(1);
}

header .mega-menu .mega-menu-list .menu-mac a::before {
    background: url(../image/icon/os/os_mac.svg) no-repeat center;
    background-size: 24px;
    filter: brightness(0) invert(1);
}

header .mega-menu .mega-menu-list ul {
    margin-bottom: 40px;
}

header .mega-menu .mega-menu-list ul li {
    display: block;
    margin-bottom: 10px;
}

header .mega-menu .mega-menu-list ul li a {
    font-size: 14px;
    line-height: 22px;
    text-transform: capitalize;
}

header .mega-menu .mega-menu-left .mega-menu-list ul li:last-child a {
    font-weight: bold;
}

header .mega-menu .mega-menu-left .mega-menu-list .web ul li:last-child a {
    font-weight: normal;
}

header .mega-menu .mega-menu-right {
    width: 464px;
    display: inline-block;
    vertical-align: top;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

header .mega-menu .social-media {
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

header .mega-menu .social-media h3 {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.5);
}

header .mega-menu .social-media ul {
    margin-top: 20px;
}

header .mega-menu .social-media ul li {
    display: inline-block;
    margin-right: 10px;
}

header .mega-menu .clients a {
    opacity: .5;
}

header .mega-menu .clients a:hover {
    opacity: 1;
}

header .mega-menu .copyright {
    padding: 20px 0;
    margin-top: 40px;
    background: #1C212D;
    text-align: center;
    font-size: 12px;
    color: #fff;
}


/*header nav ul .video a {
    background: #046bc1;
}*/


/* Headline */

.headline {
    width: 100%;
    margin: 0 0 20px 0;
    overflow: hidden;
    padding: 20px 0;
    background: #ececec;
}

.headline-item {
    width: 600px;
    height: 338px;
    float: left;
    margin-right: 10px;
    overflow: hidden;
}

.headline-item:last-child {
    width: 590px;
}

.headline-item .headline-item-wide figure img,
.headline-item .headline-item-small figure img {
    transition: opacity .55s ease, transform .5s ease;
}

.headline-item .headline-item-wide:hover figure img,
.headline-item .headline-item-small:hover figure img {
    transform: scale(1.10);
}

.headline-item:last-child {
    margin: 0;
}

.headline-item h3 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 98;
    width: calc(100% - 40px);
    padding: 120px 20px 20px 20px;
    font-size: 22px;
    color: #fff;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 65%);
}

.headline-item-wide h3 {
    font-size: 32px;
    line-height: 38px;
}

.headline-item-small:hover h3,
.headline-item-wide:hover h3 {
    background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 65%);
}

.headline-item-wide {
    width: 600px;
    height: 338px;
    position: relative;
}

.headline-item-small {
    width: 290px;
    height: 164px;
    float: left;
    position: relative;
    overflow: hidden;
}

.headline-item-small:nth-child(odd) {
    margin-right: 10px;
}

.headline-item-small:nth-child(-n+2) {
    margin-bottom: 10px;
}


/* Page Content */

.page-content {
    width: 880px;
    margin-right: 20px;
    float: left;
    position: relative;
}

.content.category-content {
    margin: 0;
    float: left;
    overflow: hidden;
    width: 100%;
}

.content.category-content.content-box {
    width: 880px;
}


/* Editor's Choice */

.editors-choice {
    height: 160px;
    background: #3a5e79;
    margin-bottom: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.editors-choice h2 {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.editors-choice h2::after {
    content: '';
    position: relative;
    background: url(../image/best.svg) no-repeat center;
    background-size: 24px;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: top;
    margin-top: -3px;
    margin-left: 5px;
    filter: brightness(0) invert(1);
    opacity: .8;
}

.editors-choice .os-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .07);
    padding: 15px 20px;
    z-index: 12;
}

.editors-choice .os-panel li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    opacity: .4;
}

.editors-choice .os-panel li.ui-tabs-active {
    opacity: 1;
}

.editors-choice .os-panel li:last-child {
    margin-right: 0;
}

.editors-choice .os-panel li a {
    width: 20px;
    height: 20px;
    display: block;
}

.editors-choice .editor-app-title figure,
.editors-choice .editor-app-title h3 {
    display: inline-block;
    vertical-align: middle;
}

.editors-choice .editor-app-title figure {
    border-radius: 8px;
    overflow: hidden;
    margin-right: 5px;
    background: #fff;
}

.editors-choice .editor-app-title h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    overflow: hidden;
    color: #fff;
}

.editors-choice .editor-app-content {
    position: relative;
    z-index: 11;
}

.editors-choice .editor-app-desc {
    margin-top: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
}

.editors-choice .editor-app-desc p {
    margin-bottom: 10px;
}

.editors-choice .image-bg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .07;
}

.editors-choice .editor-app-buttons {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.editors-choice .editor-app-buttons a {
    padding: 10px 40px;
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #00b941;
    text-transform: uppercase;
    border: none;
}

.editors-choice .editor-app-buttons .buy-button {
    background: #b9a226;
}

.editors-choice .editor-app-buttons a:last-child {
    margin-right: 0;
}

.editors-choice .editor-app-buttons a i {
    font-style: normal;
    position: relative;
    top: -2px;
}


/* Filter Menu */

.filter-tabs {
    background: #03a9f4;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-tabs .nav li {
    display: inline-block;
    margin-right: 10px;
}

.filter-tabs .nav li a {
    color: rgba(255, 255, 255, .4);
}

.filter-tabs .nav li.active a {
    color: #fff;
}




/* Author Profile Layout */
.editor {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 0;
}

.editor-left {
    flex-shrink: 0;
    width: 200px;
    text-align: left;
    padding-left: 20px;
}

.editor-left figure {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.editor-left figure img {
    border-radius: 8px;
}

.editor-basic-info h1 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #333;
}

.editor-basic-info .author-title {
    font-size: 16px;
    color: #666;
    margin: 0 0 15px 0;
}

.editor-left .social-links {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.editor-left .social-links .social-link {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #03a9f4;
    color: white;
    text-align: center;
    line-height: 24px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    transition: background-color 0.3s ease;
}

.editor-left .social-links .social-link:hover {
    background: #0288d1;
}

.editor-text {
    flex: 1;
    padding-left: 0;
    text-align: left;
}

.editor-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    border-bottom: 2px solid #03a9f4;
    padding-bottom: 5px;
    display: inline-block;
    text-align: left;
}

/* Expertise and Education Side by Side Container */
.expertise-education-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.expertise-education-container .expertise-section {
    flex: 0.4;
    margin-bottom: 0;
}

.expertise-education-container .education-section {
    flex: 1;
    margin-bottom: 0;
}

.editor-text .about-section,
.editor-text .location-section,
.editor-text .expertise-section,
.editor-text .education-section {
    margin-bottom: 20px;
    text-align: left;
}

.editor-text .about-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.editor-text .location-section p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.expertise-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.education-section .university-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.education-section .university-department {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .editor {
        flex-direction: column;
        gap: 20px;
    }
    
    .editor-left {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }
    
    .editor-left .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .editor-text {
        padding-left: 0;
        text-align: center;
    }
    
    .editor-text h3 {
        text-align: center;
    }
    
    .editor-text .about-section,
    .editor-text .location-section,
    .editor-text .expertise-section,
    .editor-text .education-section {
        text-align: center;
    }
    
    .expertise-tags {
        justify-content: center;
    }
    
    /* Mobile responsive for expertise-education container */
    .expertise-education-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .expertise-education-container .expertise-section,
    .expertise-education-container .education-section {
        margin-bottom: 20px;
    }
}

/* Sidebar */

.sidebar {
    width: 300px;
    float: left;
}

.sidebar.category-sidebar {
    width: 300px;
    float: left;
    margin-right: 20px;
}


/* Sidebar Item */

.sidebar-item {
    margin-bottom: 20px;
}

.sidebar-widget {
    border: 1px solid rgba(155, 155, 155, 0.2);
    padding: 20px 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-item h2 {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sidebar-item h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sidebar-item .centered-banner {
    min-height: 250px;
}

.sidebar .post-item-box {
    width: 300px;
    padding: 0;
    border: none;
}

.sidebar .post-item-box figure,
.sidebar .post-item-box figure img {
    width: 300px;
    height: 152px;
    object-fit: cover;
}

.sidebar .post-item-box .post-item-content h3 {
    font-size: 18px;
    line-height: 22px;
    max-height: 44px;
}

.sidebar .post-item-box .post-item-content p {
    font-size: 14px;
    line-height: 22px;
    max-height: 44px;
}


/* Page Header */

.page-header {
    margin-bottom: 20px;
    position: relative;
}

.page-header h1 {
    font-weight: bold;
    font-size: 36px;
    line-height: 46px;
    margin: 10px 0 5px 0;
    text-transform: capitalize;
}

.page-header h2 {
    font-weight: normal;
    font-size: 18px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 24px;
    color: #999;
}


/* App Item List */

.app-item-list li {
    display: block;
    overflow: hidden;
    padding-bottom: 10px;
    padding-left: 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
    counter-increment: my-awesome-counter;
    position: relative;
}

.app-item-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.app-item-list li::before {
    content: counter(my-awesome-counter);
    font-size: 18px;
    color: #999;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 14px;
}

.app-item-list li figure {
    float: left;
    position: relative;
}

.app-item-list li .app-item-content {
    width: 180px;
    margin-top: 4px;
    padding-left: 15px;
    float: left;
}

.app-item-list li h3 {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    max-height: 48px;
    color: #000000;
    margin: 2px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-item-list li h4 {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    max-height: 48px;
    color: #000000;
    margin: 2px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-item-list li p {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* News Item List */

.news-item-list li {
    display: block;
    overflow: hidden;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
    position: relative;
}

.news-item-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.news-item-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-item-list li figure {
    float: left;
    position: relative;
    overflow: hidden;
}

.news-item-list li .news-item-content {
    width: 180px;
    padding-left: 15px;
    float: left;
}

.news-item-list li h3 {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    max-height: 66px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000;
    margin: 2px 0;
    text-transform: none;
}

.news-item-list li p {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item-list li figure .mini-play-icon {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -16px 0 0 -16px;
    background: url(../image/icon/video-icon.svg) no-repeat center;
    background-size: 38px 38px;
    box-shadow: 0 10px 60px #000;
    border-radius: 50%;
}


/* Post Item */

.post-item {
    background: #fff;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.post-item-wide {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
}

.post-item-small {
    width: 266px;
}

.post-item-small figure {
    margin-bottom: 15px;
    position: relative;
}

.post-item a {
    display: block;
}

.post-item figure {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow: hidden;
}

.post-item figure img {
    transition: opacity .55s ease, transform .5s ease;
}

.post-item figure:hover img {
    transform: scale(1.10);
}

.post-item figure .video-icon {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 98;
    margin: -32px 0 0 -32px;
    background: url(../image/icon/video-icon.svg) no-repeat center;
    background-size: 76px;
    box-shadow: 0 10px 60px #000;
    border-radius: 50%;
}

.post-item-wide .post-item-content {
    width: 560px;
    padding-left: 15px;
    display: inline-block;
    vertical-align: middle;
}

.post-item .post-item-content .post-item-category {
    font-weight: bold;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
}

.post-item .post-item-content h4 {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    max-height: 90px;
    color: #000000;
    margin: 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item .post-item-content p {
    font-size: 16px;
    line-height: 22px;
    max-height: 42px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item-small .post-item-content h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    max-height: 48px;
    color: #000000;
    margin: 2px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item-wide.app-item a {
    background: #f9f9f9;
    padding-right: 20px;
}

.post-item-wide.app-item .post-item-content {
    width: 540px;
}

.post-item-wide.app-item figure {
    width: 300px;
    height: 152px;
    background: #efefef;
}


/* Post Item Box */

.post-item-box {
    width: 249px;
    min-height: 240px;
    margin-right: 14px;
    display: inline-block;
    vertical-align: top;
    padding: 15px;
    border: 1px solid rgba(155, 155, 155, 0.2);
}

.post-item-box:nth-child(3n) {
    margin-right: 0;
}

.post-item-box figure {
    width: 250px;
    height: 126px;
    background: #f6f6f6;
}

.post-item-box figure img {
    width: 250px;
    height: 126px;
}

.post-item-box.app-item figure img {
    width: 96px;
    height: 96px;
}

.post-item-box .post-item-content .post-item-category {
    margin-top: 15px;
    display: block;
}

.post-item-box .post-item-content h4 {
    font-size: 16px;
    line-height: 24px;
    max-height: 48px;
}

.post-item-box.app-item .post-item-content h4 {
    max-height: 26px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.post-item-box .post-item-content p {
    font-size: 14px;
    line-height: 20px;
    max-height: 40px;
    white-space: normal !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item-box .os-icon {
    opacity: .5;
}


/* App Item Info */

.app-item .app-info {
    margin-top: 10px;
}

.app-item .app-info span {
    font-size: 12px;
    margin-right: 5px;
    padding-right: 10px;
    border-right: 1px solid #f3f3f3;
    text-transform: uppercase;
}

.app-item .app-info span:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

.app-item .app-info .os-icon {
    opacity: .4;
}

.app-item .app-info .app-os {
    color: #bbb;
}


/* Category Box */

.category-box {
    margin-bottom: 10px;
}

.category-box .category-box-title {
    overflow: hidden;
    margin-bottom: 10px;
}

.category-box .category-box-title h2 {
    font-size: 24px;
    line-height: 30px;
    float: left;
}

.category-box .category-box-title .btn {
    float: right;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    background: #03a9f4;
    border-radius: 4px;
    padding: 5px 10px;
}


/* Os Tab */

.os-tab {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    z-index: 99;
    bottom: 10px;
    left: 320px;
}

.os-tab .os-icon {
    opacity: .3;
    margin-right: 10px;
}


/* Os Icon */

.os-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px 20px;
}

.android-icon {
    background-image: url(../image/icon/os/os_android.svg);
}

.ios-icon {
    background-image: url(../image/icon/os/os_ios.svg);
}

.mac-icon {
    background-image: url(../image/icon/os/os_mac.svg);
}

.windows-icon {
    background-image: url(../image/icon/os/os_windows.svg);
}

.web-icon {
    background-image: url(../image/icon/os/os_web.svg);
}

.linux-icon {
    background-image: url(../image/icon/os/os_linux.svg);
}

.winphone-icon {
    background-image: url(../image/icon/os/os_winphone.svg);
}

.symbian-icon {
    background-image: url(../image/icon/os/os_symbian.svg);
}

.blackberry-icon {
    background-image: url(../image/icon/os/os_blackberry.svg);
}


/* Free of the Week */

.freeoftheweek {
    border-bottom: 1px solid rgba(155, 155, 155, 0.2);
    max-height: 173px;
    overflow: hidden;
}

.free-sticker {
    position: absolute;
    right: 0px;
    top: 15px;
    padding: 8px 15px;
    background: #8bc34a;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.freeoftheweek figure {
    background: #222732 !important;
}

.freeoftheweek .os-tab {
    left: 335px;
}

.freeoftheweek .os-tab li {
    padding: 2px;
    margin: 10px 10px 10px 0;
    background-position: center center !important;
    opacity: .2;
}


/* Pagination */

.pagination {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.pagination li a {
    float: left;
    border: 1px solid #eee;
    border-left: none;
}

.pagination li:first-child a {
    float: left;
    border-left: 1px solid #eee;
}

.pagination li:first-child a {
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination li:last-child a {
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination li a {
    font-size: 14px;
    color: #999;
    background: #fff;
    display: block;
    padding: 12px 16px;
}

.pagination li.active a {
    color: #fff;
    background: #007EE7;
}

.pagination li a:hover {
    background: #fcfcfc;
}

.pagination li.active a:hover {
    background: #007EE7;
}


/* Video Container */

.video-container {
    width: 840px;
    padding: 20px;
    margin-bottom: 20px;
    background: #222732;
    overflow: hidden;
}

.video-container h2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
    float: left;
}

.video-container .all {
    font-size: 14px;
    font-weight: bold;
    float: right;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.7);
}

.video-container .swiper-wrapper {
    display: block;
    overflow: hidden;
    clear: both;
}

.video-container .post-item-small {
    display: inline-table;
    vertical-align: middle;
    margin-right: 16px;
    margin-bottom: 0;
}

.video-container .post-item-small:last-child {
    margin-right: 0;
}

.video-container .post-item-small .post-item-content {
    padding: 0 15px 15px 15px;
}


/* Detail */

.post-content {
    background: #fff;
    overflow: hidden;
}

.breadcrumb {
    margin-top: 20px;
}

.breadcrumb ul li {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #bbb;
    text-transform: capitalize;
}

.breadcrumb ul li::after {
    content: "/";
    padding: 0 5px;
}

.breadcrumb ul :last-child::after {
    content: "";
    padding: 0;
}

.breadcrumb ul li a {
    color: #999;
}

.post-header {
    overflow: hidden;
}

.post-header h1 {
    font-weight: bold;
    font-size: 46px;
    line-height: 56px;
    margin: 15px 0;
}

.post-header h2,
.post-header .post-description {
    font-weight: normal;
    font-size: 22px;
    line-height: 28px;
    color: #222732;
}


/* Editor Layout */

.editor {
    margin: 20px 0;
    padding: 20px;
    background: url(../image/orn_bg.png) #f9f9f9;
    overflow: hidden;
    text-align: center;
    background-size: contain;
}

.editor .editor-text {
    display: block;
}

.editor figure {
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.editor .editor-text h1 {
    font-size: 26px;
    line-height: 32px;
    margin: 0 0 15px 0;
}

.editor .editor-text p {
    margin-bottom: 10px;
    color: #666;
}

.editor .editor-text .editor-location {
    font-size: 13px;
}

.editor .editor-text .editor-url {
    font-size: 13px;
}


/* Activity */

.activity-title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
}

.activity-type {
    font-weight: bold;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}


/* Post Image / Gallery */

.post-image {
    margin: 20px 0;
    background: #f9f9f9;
    text-align: center;
}

.post-image.video {
    background: #000;
}

.post-image .container {
    overflow: hidden;
}

.post-image .container .swiper-button-next.swiper-button-disabled,
.post-image .container .swiper-button-prev.swiper-button-disabled {
    opacity: .2 !important;
}

.post-image .container .swiper-button-next,
.post-image .container .swiper-button-prev {
    color: #fff !important;
}

.post-image .container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    vertical-align: middle;
}

.post-image .container .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
}

.post-image .container .swiper-container-horizontal>.swiper-pagination-bullets,
.post-image .container .swiper-pagination-custom,
.post-image .container .swiper-pagination-fraction {
    bottom: 20px;
}

.post-container {
    font-size: 18px;
    line-height: 180%;
    color: #222732;
    padding-bottom: 50px;
}

.post-container .post-detail img {
    max-width: 100%;
    height: auto;
}

.post-container .post-detail p {
    margin-bottom: 20px;
}

@media only screen and (max-width: 430px) {
    .post-container .post-detail p {
        margin-top: 20px;
    }
}

.post-container .post-detail h1,
.post-container .post-detail h2,
.post-container .post-detail h3,
.post-container .post-detail h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.post-container .post-detail h1 {
    font-size: 30px;
}

.post-container .post-detail h2 {
    font-size: 26px;
    line-height: 34px;
}

.post-container .post-detail h3 {
    font-size: 22px;
    line-height: 34px;
    margin-top: 15px;
}

.post-container .post-detail h4 {
    font-size: 18px;
    line-height: 28px;
}

.post-container .post-detail blockquote {
    font-style: italic;
    border-left: 5px solid #007EE7;
    background: #f6f7f9;
    padding: 20px;
    margin-bottom: 20px;
}

/* Custom Tip Box Style - blockquote with normal font style (not italic) and lightbulb icon */
.post-container .post-detail blockquote.tip-box { 
    padding: 20px; 
    font-size: 18px; 
    font-style: normal !important; 
    margin: 20px 0; 
    position: relative;
}

/* Remove top margin from paragraphs inside tip-box */
.post-container .post-detail blockquote.tip-box p {
    margin-top: 0;
}

/* Add lightbulb icon inside tip-box at the beginning of text */
.post-container .post-detail blockquote.tip-box::before {
    content: "";
    background-image: url('/asset/image/icon/lightbulb.png');
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 2px;
    float: left;
}

.post-container .post-detail pre {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
}

.post-container .post-detail ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.post-container .post-detail ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.post-container .post-detail .pagination {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Post Info */

.post-container .post-info {
    overflow: hidden;
    text-align: right;
    text-transform: uppercase;
}

.post-container .post-detail .editor-info {
    margin-bottom: 20px;
    display: block;
    float: left;
}

.post-container .post-detail .post-info .post-editor-info {
    font-size: 12px;
    color: #444;
    display: inline-block;
    vertical-align: middle;
    margin-top: 4px;
}

.post-container .post-detail .post-info .post-editor-info a {
    font-weight: bold;
    color: #444;
}

.post-container .post-detail .editor-info img {
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
}

.post-container .post-detail .editor-info>img {
    margin-right: 5px;
}


/* Social Share */

.social-icons {
    display: inline-block;
    width: 42px;
    height: 42px;
    margin-right: 5px;
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 22px 22px;
    border-radius: 100%;
}

.social-icons.fb-icon {
    background-image: url("../image/social-media/fb_2.svg");
}

.social-icons.tw-icon {
    background-image: url("../image/social-media/x.svg");
}

.social-icons.wa-icon {
    background-image: url("../image/social-media/wa_2.svg");
}

.social-icons.in-icon {
    background-image: url("../image/social-media/in_2.svg");
}

.social-icons.comment-icon {
    background-image: url("../image/social-media/comment.svg");
}

.social-share {
    display: inline-block;
}

.social-share .btn .icons {
    margin-right: 0;
}

.google-news {
    display: inline-block;
}

.google-news a {
    display: inline-block;
    width: 42px;
    height: 42px;
    margin-right: 5px;
    background-image: url("../image/social-media/gn_2.svg");
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 22px 22px;
    border-radius: 100%;
}

.bundle-news {
    display: none;
}

.bundle-news a {
    display: inline-block;
    width: 42px;
    height: 42px;
    margin-right: 5px;
    background-image: url("../image/social-media/bundle.svg");
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 22px 22px;
    border-radius: 100%;
}

.whatsapp-button {
    display: none;
}


/* Post Table */

.post-container table {
    margin-bottom: 20px;
}

.post-container tr {
    border-bottom: 1px solid #ececec;
}

.post-container th {
    text-align: left;
}

.post-container td,
.post-container th {
    padding: 10px;
}

.post-container th:first-child,
.post-container td:first-child {
    padding-left: 0;
}

.post-container .post-app-item {
    padding: 0;
    border-bottom: none;
}

.post-container .post-app-item .tabcontent {
    display: none;
}

.post-container .post-item .tabcontent:first-child {
    display: block;
}

.post-container .post-app-item figure {
    width: 200px;
    height: 140px;
    background: #222732 !important;
}

.post-container .post-app-item .post-item-content {
    width: 616px;
}

.post-container .post-app-item .post-item-content h4 {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 22px;
}

.post-container .post-app-item .post-item-content p {
    font-size: 14px;
    -webkit-line-clamp: 1;
    margin-bottom: 10px;
}

.post-container .news-box,
.post-container .blog-box {
    border-bottom: none;
    padding-bottom: 0;
    background: #f9f9f9;
    max-height: 152px;
    overflow: hidden;
}

.post-container .news-box h4,
.post-container .blog-box h4 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 0 5px;
}

.post-container .news-box .post-item-content p,
.post-container .blog-box .post-item-content p {
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.post-container .post-item-content .os-tab {
    display: inline-block;
    position: relative;
    left: 0;
    bottom: inherit;
}

.post-container .post-item-content .os-tab .os-icon {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
    margin-right: 5px;
}

.post-container .post-item-content .app-rate img {
    vertical-align: middle;
}

.post-container .post-item-content .post-app-download {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #8bc34a;
    background: #8bc34a;
    color: #fff;
    text-transform: uppercase;
    padding: 0px 25px;
    float: right;
}

.post-container .post-item-content .post-app-download i {
    font-style: normal;
    position: relative;
    top: -2px;
}


/* Table of Contents */

#toc {
    background: #fcfcfc;
    border: 1px solid rgba(155, 155, 155, 0.2);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 20px;
    overflow: hidden;
}

#toc.hide {
    height: 28px;
}

.toc-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px !important;
}

.toc-title a {
    font-size: 14px;
    margin-left: 8px;
}

#toc ol {
    counter-reset: section;
    list-style-type: none;
    margin: 0;
}

#toc>ol {
    padding: 0;
}

#toc>ol ol {
    padding-left: 20px;
}

#toc li::before {
    color: #666;
    counter-increment: section;
    content: counters(section, ".") ". ";
}


/* Prev - Next Content */

.post-prevnext {
    margin: 20px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.post-prevnext .post-item-category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: bold;
}

.post-prevnext h3 {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    max-height: 56px;
    overflow: hidden;
    color: #000000;
}

.post-prev,
.post-next {
    width: calc(50% - 45px);
    display: inline-block;
    vertical-align: top;
    padding: 20px;
}

.post-prev {
    text-align: right;
    border-right: 1px solid #ececec;
}

.post-next {
    text-align: left;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}


/* App Content */

.app-container {
    margin-top: 20px;
}

.app-container .post-description {
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
    color: #222732;
}

.app-content .post-image .container {
    width: 1260px;
}


/* App Os List */

.app-os-list {
    width: 120px;
    min-height: 32px;
    position: absolute;
    top: 365px;
    left: 180px;
    padding: 5px 15px;
    text-transform: uppercase;
    background: #f9f9f9;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    z-index: 99;
}

.app-os-list .active-os {
    display: block;
    font-size: 14px;
    position: relative;
}

.app-os-list .active-os::after {
    content: '';
    border: solid #999;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    right: 5px;
    top: 10px;
}

.app-os-list .active-os.active::after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 14px;
}

.app-os-list a {
    color: #999;
    font-weight: bold;
}

.app-os-list .app-selected-os {
    font-weight: bold;
    margin-right: 5px;
}

.app-os-list ul {
    display: none;
}

.app-os-list ul.active {
    display: block;
}

.app-os-list ul li.os-icon {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-position: center;
    background-color: #ccc;
    border-radius: 4px;
    margin-right: 10px;
    padding: 10px;
    opacity: .2;
}

.app-os-list ul li.os-icon.active {
    background-color: #fff;
    opacity: .8;
}

.app-os-list ul li a {
    font-size: 14px;
    display: block;
}

.app-os-list ul li.ui-state-active {
    display: none;
}


/* App Header */

.app-header {
    margin-top: -94px;
    background: rgb(242, 242, 242);
    background: linear-gradient(180deg, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0) 100%);
}

.app-header .app-title {
    padding: 0 20px;
    position: relative;
    float: left;
}

.app-header figure {
    width: 128px;
    height: 128px;
    margin-left: 20px;
    border: 5px solid #fff;
    border-radius: 14px;
    background: #fff;
    position: relative;
    z-index: 98;
}

.app-header figure img {
    border-radius: 12px;
}

.app-header h1 {
    font-size: 32px;
    margin: 20px 0;
    display: inline-block;
    vertical-align: middle;
}

.app-header .app-features {
    display: table;
    width: calc(100% - 40px);
    background: #fff;
    padding: 10px 0;
    margin: auto 20px 20px 20px;
    box-shadow: 0 20px 30px rgb(136 136 136 / 3%);
}

.app-header .app-features li {
    display: table-cell;
    line-height: 20px;
    padding: 5px 20px;
    border-right: 1px solid #f3f3f3;
    vertical-align: middle;
}

.app-header .app-features li:first-child {
    max-width: 115px;
}

.app-header .app-features li:first-child span:last-child {
    max-width: 115px !important;
}

.app-header .app-features li:last-child {
    border: none;
    min-width: 180px;
}

.app-header .app-features li.editor-rating {
    max-width: 100px;
}

.app-header .app-features li span:first-child {
    font-size: 11px;
    line-height: 18px;
    color: #999;
    text-transform: uppercase;
    display: block;
}

.app-header .app-features li span:last-child {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 80px;
}

.app-header .app-features li span a {
    font-weight: bold;
}

.app-header .app-features li span.app-licence {
    font-weight: bold;
}


/* Different OS */

.different-os {
    margin-top: 215px;
}

.different-os .alert {
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    color: #666;
    background: #e5f1e5;
    padding: 5px 20px;
    margin: 0 20px 20px;
}

.different-os a {
    color: #84ab84;
}

.different-os .close {
    font-size: 22px;
    background: none;
    border: none;
    position: absolute;
    top: 6px;
    right: 0px;
    color: #84ab84;
    padding: 1px 20px;
}


/* Licence */

.free-licence {
    color: #8bc34a !important;
    ;
}

.paid-licence {
    color: #f5594a !important;
    ;
}

.trial-licence {
    color: #aeb4b6 !important;
}

.mobile-button {
    display: none;
}

.download-button {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #8bc34a;
    background: #8bc34a;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 30px;
}

.download-button .down-icon {
    color: #fff;
    display: inline-block;
    font-style: normal;
    position: relative;
    top: -2px;
}


/* App SS */

.app-ss {
    margin-bottom: 20px;
    background: #efefef;
    position: relative;
    z-index: 97;
}

.app-ss .swiper-button-next,
.app-ss .swiper-button-prev {
    height: 100%;
    top: 22px;
    background: #000;
    color: #fff;
    padding: 0 20px 0 40px;
}

.app-ss .swiper-button-prev {
    left: 0;
    padding: 0 40px 0 20px;
    background: linear-gradient(90deg, rgba(34, 39, 50, .8) 0%, rgba(34, 39, 50, 0) 100%);
}

.app-ss .swiper-button-next {
    right: 0;
    padding: 0 20px 0 40px;
    background: linear-gradient(-90deg, rgba(34, 39, 50, .8) 0%, rgba(34, 39, 50, 0) 100%);
}

.app-ss .swiper-button-disabled {
    background: none;
}

.swiper-slide {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


/* Download Options */

.download-options {
    position: relative;
    text-align: center;
}

.download-options span {
    cursor: pointer;
    margin-top: 5px;
}

.download-options ul {
    position: absolute;
    width: calc(100% - 20px);
    padding: 0 10px;
    font-size: 12px;
    top: 30px;
    left: 0px;
    right: 0px;
    background: rgb(255, 255, 255);
    box-shadow: 0 20px 30px rgb(136 136 136 / 15%)
}

.download-options ul li {
    min-width: 100px !important;
    display: block !important;
    border-right: none !important;
    border-bottom: 1px solid #f3f3f3;
}

.download-options ul li a {
    color: #999;
}


/* Rating Box */

.rating-box {
    float: right;
    margin: -55px 20px 0 0;
    position: relative;
}

.rating-box .alert {
    position: absolute;
    font-size: 14px;
    bottom: -56px;
    line-height: 20px;
    padding: 5px;
    background: rgb(217, 237, 247);
    color: rgb(58, 135, 173);
}

.big-star-icon,
.userVote a:hover,
.userVote a.selected {
    background-image: url(../image/icon/star.svg);
    background-repeat: no-repeat;
    filter: none;
    opacity: 1;
}

.big-star-icon-empty {
    background-image: url(../image/icon/star.svg);
    background-repeat: no-repeat;
    filter: invert(96%) sepia(3%) saturate(27%) hue-rotate(315deg) brightness(81%) contrast(82%);
    opacity: .2;
}

.rating-box .big-voting {
    display: block;
    margin: 0 auto;
    width: 145px;
    overflow: hidden;
}

.rating-point {
    font-size: 46px;
    line-height: 52px;
    font-weight: 300;
    text-align: center;
    display: none;
}

.userVote a {
    width: 28px;
    height: 28px;
    margin-right: 1px;
    float: left;
    transition: none;
}

.rating-left {
    display: inline-block;
    vertical-align: middle;
    border-right: 1px solid #e3e3e3;
    padding-right: 15px;
    margin-right: 15px;
}

.histo {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
}

.histo .icons {
    background-size: 28px 28px;
}

.total-user,
.vote-first {
    font-size: 14px;
    line-height: 14px;
    color: #aeb4b6;
    text-align: center;
    clear: both;
    display: none;
}

.rating-point.active,
.total-user.active,
.vote-first.active {
    display: block;
}


/* Proscons */

.proscons {
    width: 100%;
    margin: 20px 0;
}

.proscons>div {
    width: calc(50% - 34px);
    padding: 15px;
    display: inline-block;
    vertical-align: top;
}

.proscons .pros {
    background: #eef7e5;
}

.proscons .pros strong {
    color: #8bc34a;
}

.proscons .cons {
    background: #fbf0f0;
}

.proscons .cons strong {
    font-size: 16px;
    color: #f5594a;
}

.proscons>div p {
    font-size: 14px;
    margin-bottom: 5px !important;
    padding: 0 5px;
}


/* QR Code */

.qr-box {
    position: absolute;
    right: 20px;
    top: -40px;
    width: 88px;
}


/* Category */

.category-list {
    margin-top: 20px;
    padding-right: 5px;
    max-height: 300px;
    overflow-y: scroll;
}

.category-list li {
    display: block;
    padding: 0 10px 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f3f3f3;
    position: relative;
    font-size: 14px;
    color: #666;
    text-transform: capitalize;
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.category-list li a {
    color: #666;
    display: block;
    text-transform: capitalize;
}

.category-list li.active a {
    color: #03a9f4;
    font-weight: bold;
}

.category-list li .checkbox input,
.category-list li .checkbox span,
.category-list li .checkbox i {
    vertical-align: middle;
    display: inline-block;
}

.category-list li .checkbox input {
    cursor: pointer;
}

.category-list li .checkbox span {
    margin-left: 10px;
    cursor: pointer;
}

.category-list li .checkbox i {
    font-style: normal;
}

.category-list.current {
    margin: 0 0 20px 0;
}

.category-list.current li {
    line-height: 18px;
    font-weight: bold;
}


/* Search */

.search-filter {
    margin-top: 20px;
}

.search-filter ul {
    white-space: nowrap;
    overflow-x: scroll;
}

.search-filter ul li {
    display: inline-block;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    margin-right: 10px;
    padding: 15px 80px 15px 15px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}

.search-filter ul li::after {
    position: absolute;
    top: 22px;
    right: 15px;
    content: "\25BE";
    font-size: 18px;
    color: #666;
}

.search-filter ul li span {
    display: block;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #999;
}

.search-filter ul li:last-child {
    margin-right: 0;
}


/* Ads */

.native-ads,
.content-ads,
.recommendations {
    margin-bottom: 20px;
}

.top-banner {
    min-height: 250px;
    text-align: center;
    padding: 20px 0;
    background: #f6f6f6;
}

.native-ads {
    width: 880px;
    height: auto;
    max-height: 430px;
    overflow: hidden;
    text-align: center;
    position: absolute;
    left: 0;
    top: 490px;
    z-index: 10;
}

@media only screen and (max-width: 430px) {
    .native-ads {
        width: 100%;
    }
}

.masthead-fixed {
    width: 100%;
    background: rgba(235, 235, 235, 0.7);
    position: sticky;
    position: -webkit-sticky;
    top: 64px;
    left: 0;
    z-index: 999;
}

.outer-ads {
    width: 160px;
    height: 600px;
    position: absolute;
    right: -180px;
    top: 0;
}

.centered-banner {
    text-align: center;
}

.footer-banner {
    display: none;
}


/* Comment Box */

.comment-section {
    padding: 20px;
    background: #f9f9f9;
}


/* Footer */

.footer {
    width: 100%;
    padding: 20px 0;
    margin-top: 100px;
    background: #1C212D;
    text-align: center;
    font-size: 12px;
    color: #fff;
}


/* Show More */

#show-more {
    display: block;
    background: rgba(155, 155, 155, 0.2);
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-weight: bold;
}


/* Tamindir Recommended */

.tamindir-recommended-download {
    margin-top: 20px;
}

.tamindir-recommended-download .container {
    background: #0f5db3;
    min-height: 180px;
    overflow: hidden;
    position: relative;
}

.tamindir-recommended-download .container::after {
    content: "";
    width: 134px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 99;
    background: url(../image/tamindir_oneriyor.png) no-repeat center #0f54a7;
}


/* Downloading */

.downloading {
    padding: 30px 20px;
    margin-bottom: 20px;
    background: #f1f8e9;
}

.downloading #trouble a {
    font-size: 11px;
    color: #8bc34a;
    padding: 10px 14px;
    box-shadow: inset 0 0 0 2px #8bc34a;
}

.downloading #trouble a:hover {
    background: #8bc34a;
    color: #fff;
}

.downloading-animation {
    width: 80px;
    height: 85px;
    float: left;
    margin-right: 20px;
    position: relative;
}

.downloading-countdown {
    color: #8bc34a;
    position: absolute;
    top: 21px;
    left: 36px;
    font-size: 24px;
}

.spinner {
    margin: 0px auto;
    width: 54px;
    height: 54px;
    position: relative;
}

.container1>div,
.container2>div,
.container3>div {
    width: 12px;
    height: 12px;
    background-color: #8bc34a;
    border-radius: 100%;
    position: absolute;
    -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
    animation: bouncedelay 1.2s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .spinner-container {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.container2 {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.container3 {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.circle1 {
    top: 0;
    left: 0;
}

.circle2 {
    top: 0;
    right: 0;
}

.circle3 {
    right: 0;
    bottom: 0;
}

.circle4 {
    left: 0;
    bottom: 0;
}

.container2 .circle1 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.container3 .circle1 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.container1 .circle2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.container2 .circle2 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.container3 .circle2 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.container1 .circle3 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.container2 .circle3 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.container3 .circle3 {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.container1 .circle4 {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.container2 .circle4 {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.container3 .circle4 {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%,
    80%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/* Tab Content */

.tab-pane.active {
    display: block !important;
}

.sidebar .ui-tabs-nav {
    margin-bottom: 20px;
}

.sidebar .ui-tabs-nav li a {
    display: block;
    width: 24px;
    height: 24px;
    padding: 10px;
}

.sidebar .os-icon {
    width: auto;
    height: auto;
    background-size: 24px 24px;
    background-position: center;
    opacity: .2;
    margin-right: 2px;
    background-color: #e9e9e9;
}

.sidebar .os-icon.ui-state-active {
    opacity: .8;
}


/* test */

.sidebar .tab-panel .tab-content {
    display: none !important;
}

.sidebar .tab-panel .tab-content:first-child {
    display: block !important;
}

@media only screen and (max-width: 1200px) {
     :target:before {
        content: "";
        display: block;
        height: 79px;
        margin: -79px 0 0;
    }
    .outer-ads,
    .web,
    .header-bar .header-banner {
        display: none !important;
    }
    .container,
    .headline-item,
    .headline-item-wide,
    .page-content,
    .sidebar {
        width: 100%;
    }
    .content,
    .post-header,
    .page-header,
    .breadcrumb,
    .content.category-content.content-box,
    .sidebar.category-sidebar {
        width: calc(100% - 30px);
        padding: 0 15px;
    }
    body,
    .header-bar {
        padding-top: 64px !important;
    }
    header {
        position: fixed;
    }
    header .logo a {
        text-align: center;
    }
    header nav {
        display: none;
    }
    header .menu {
        position: absolute;
        top: 22px;
        left: 15px;
    }
    header .mega-menu {
        overflow: hidden;
        overflow-y: scroll;
        overscroll-behavior: contain;
        box-shadow: 0 50px 50px #1c222d;
    }
    header .mega-menu>.container {
        background-position: center 30px;
        background-size: 90%;
    }
    header .mega-menu .mega-menu-left,
    header .mega-menu .mega-menu-right {
        width: calc(100% - 30px);
        padding: 0 15px;
    }
    header .mega-menu .mega-menu-list {
        width: 100%;
        text-align: left;
        margin-right: 0;
    }
    header .mega-menu .mega-menu-list.mobile {
        display: block;
    }
    header .mega-menu .mega-menu-list h3 {
        margin-bottom: 30px;
        position: relative;
    }
    header .mega-menu .mega-menu-list h3.multi::after {
        content: '';
        position: absolute;
        right: 0;
        top: 6px;
        width: 0px;
        height: 10px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #fff;
        -webkit-transition: all .2s ease-out;
        -moz-transition: all .2s ease-out;
        -o-transition: all .2s ease-out;
    }
    header .mega-menu .mega-menu-list h3.multi.active::after {
        content: '';
        position: absolute;
        right: 0;
        top: -6px;
        width: 0px;
        height: 10px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #fff;
        border-top: none;
    }
    header .mega-menu .mega-menu-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .05);
        padding-top: 20px;
    }
    header .mega-menu .mega-menu-right h3 {
        margin-bottom: 20px;
    }
    header .mega-menu .mega-menu-left ul {
        opacity: 0;
        height: 0;
        margin-bottom: 0;
        overflow: hidden;
    }
    header .mega-menu .mega-menu-left ul.active {
        opacity: 1;
        height: auto;
        margin-bottom: 20px;
    }
    header .mega-menu ul.active li a {
        font-weight: bold;
        padding-left: 30px;
    }
    header .mega-menu .mega-menu-right ul {
        display: block;
        margin-bottom: 0;
    }
    header .mega-menu .mega-menu-right ul li {
        display: inline-block;
        margin-right: 10px;
    }
    header .mega-menu .social-media {
        border-top: 1px solid rgba(255, 255, 255, .05);
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        padding: 20px 15px;
        margin: 15px -15px;
    }
    header .mega-menu .social-media h3 {
        font-size: 12px;
        line-height: 20px;
    }
    header .mega-menu .social-media ul {
        display: block;
    }
    header .mega-menu .copyright {
        padding: 15px;
        line-height: 20px;
    }
    header .mobile-search {
        width: 20px;
        height: 20px;
        display: inline-block;
        position: absolute;
        top: 12px;
        right: 5px;
        padding: 10px;
        z-index: 104;
        background: url(../image/search.svg) no-repeat center center;
        background-size: 20px 20px;
    }
    header.active .mobile-search {
        display: none;
    }
    header .mobile-search.active {
        background: url(../image/close.svg) no-repeat center center;
        background-size: 25px;
    }
    header .search-form {
        width: calc(100% - 30px);
        top: 0px;
        background: #1877f2;
        padding: 10px 15px;
        z-index: 103;
        display: none;
    }
    header .search-form.active {
        display: block;
    }
    header .search-form form {
        position: relative;
        width: 90%;
        text-align: left;
    }
    header .search-form button {
        top: 12px;
        right: 10px;
    }
    header .logo {
        display: block;
        margin: 0 auto;
    }
    header .search {
        right: 15px;
    }
    .top-banner {
        min-height: 50px;
    }
    .headline {
        background: none;
        margin: 15px 0 0 0;
        padding: 0;
    }
    .headline-item {
        float: none;
        height: auto;
    }
    .headline-item:last-child {
        width: calc(100% - 30px);
        display: flex;
        overflow-x: scroll;
        padding: 0 15px;
    }
    .headline-item-wide,
    .headline-item-small {
        margin-bottom: 15px !important;
    }
    .headline-item-wide {
        max-height: 200px;
        overflow: hidden;
    }
    .headline-item-small {
        float: none;
        height: auto;
        display: inline-table;
        margin-right: 15px !important;
    }
    .headline-item:last-child .headline-item-small:last-child {
        margin-right: 0 !important;
    }
    .headline-item-small:nth-child(odd) {
        margin: 0;
    }
    .headline-item-small figure {
        max-height: 150px;
        overflow: hidden;
    }
    .breadcrumb {
        white-space: nowrap;
        overflow: hidden;
    }
    .breadcrumb ul li:last-child {
        display: none;
    }
    .page-header .breadcrumb {
        padding: 0;
        width: 100%;
    }
    .category-container {
        display: grid;
    }
    .category-container .category-content {
        order: -1;
    }
    .editors-choice {
        height: auto;
        margin: 0 -15px 15px -15px;
    }
    .editors-choice .os-panel {
        position: relative;
        display: block;
        top: inherit;
        right: inherit;
        margin-bottom: 15px;
        background: none;
        padding: 5px 0;
        display: none;
    }
    .editors-choice .os-panel li {
        padding: 10px;
        margin-right: 5px;
        background-color: rgba(255, 255, 255, .1);
        background-position: center;
    }
    .editors-choice .editor-app-buttons {
        position: relative;
        margin-top: 15px;
    }
    .editors-choice .editor-app-buttons a {
        display: block;
        padding: 12px 0;
    }
    .editors-choice .editor-app-title figure img {
        width: 48px;
        height: 48px;
    }
    .editors-choice .editor-app-title h3 {
        font-size: 18px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .editors-choice .editor-app-desc {
        margin-top: 10px;
        font-size: 14px;
    }
    .editors-choice .editor-app-desc p {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .editors-choice .image-bg {
        width: auto;
        height: 100%;
        left: inherit;
        right: 0;
    }
    .page-content,
    .sidebar {
        float: none;
    }
    .page-content {
        margin-right: 0;
    }
    .video-container {
        width: calc(100% - 10px);
        margin: 0 -15px 15px -15px;
        border-radius: 0;
    }
    .video-container .swiper-wrapper {
        display: flex;
        overflow-x: scroll;
    }
    .video-container .post-item-small {
        margin-right: 20px;
    }
    .video-container .post-item .post-item-content p {
        display: none;
    }
    .post-item-wide {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .post-item-wide figure {
        width: 34%;
        height: 100%;
        max-height: 94px;
    }
    .post-item-wide figure img {
        width: auto;
        height: 100%;
    }
    .post-item-wide.app-item figure {
        width: 34%;
        height: auto;
    }
    .post-item-wide.app-item figure img {
        width: 50%;
        padding: 10px 0;
    }
    .post-item-wide figure .video-icon {
        width: 44px;
        height: 44px;
        margin: -22px 0 0 -22px;
        background-size: 44px 44px;
    }
    .post-item-wide .post-item-content,
    .post-item-wide.app-item .post-item-content {
        width: 60%;
        padding-left: 10px;
    }
    .post-item-wide.app-item .app-info {
        margin: 10px 0;
    }
    .post-item-wide .post-item-content h4 {
        font-size: 18px;
        line-height: 22px;
        max-height: 66px;
        display: -webkit-box;
    }
    .post-item-wide.app-item .post-item-content h4 {
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
    }
    .post-item-wide .post-item-content p {
        font-size: 14px;
        line-height: 18px;
        max-height: 38px;
        display: none;
    }
    .post-container .post-app-item {
        padding: 15px;
        margin-left: -15px;
        margin-right: -15px;
        background: #f9f9f9;
    }
    .post-container .post-app-item a {
        padding-right: 0;
    }
    .post-container .post-app-item figure {
        width: 34%;
        height: 100%;
        min-height: 109px;
        margin: 0;
    }
    .post-container .post-item-content .os-tab {
        display: none;
    }
    .post-container .post-app-item .post-item-content .rating {
        position: relative;
    }
    .app-item .app-info .app-rate {
        top: -3px !important;
    }
    .post-container .post-app-item .post-item-content p {
        display: block;
    }
    .app-item-list li .app-item-content,
    .news-item-list li .news-item-content {
        width: 70%;
    }
    .post-item-box {
        width: calc(100% - 32px);
    }
    .post-image,
    .post-item-box figure,
    .post-item-box figure img {
        width: 100%;
        height: auto;
    }
    .page-header h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .post-header h1 {
        font-size: 32px;
        line-height: 38px;
    }
    .post-container .post-detail h2 {
        font-size: 24px;
        line-height: 30px;
        margin-top: 15px;
    }
    .post-container .post-detail h4 {
        font-size: 20px;
        line-height: 26px;
    }
    .post-container .news-box figure,
    .post-container .blog-box figure {
        height: 100px;
        max-height: inherit;
    }
    .post-container .news-box figure img,
    .post-container .blog-box figure img {
        height: 100%;
        width: auto;
        max-width: inherit;
    }
    .post-container .news-box h4,
    .post-container .blog-box h4 {
        max-height: inherit !important;
        -webkit-line-clamp: 2;
    }
    .post-image {
        margin: 15px 0;
        background: none;
    }
    .post-image img,
    .post-image iframe {
        width: 100%;
        height: 250px;
    }
    .post-container .post-info {
        text-align: left;
    }
    .post-container .post-detail .post-info .post-editor-info {
        max-width: 80%;
        line-height: 18px;
    }
    .post-container .post-detail .editor-info {
        width: 100%;
        margin-bottom: 15px;
        text-align: left;
    }
    .category-box .category-box-title h2 {
        font-size: 22px;
        line-height: 28px;
        width: 82%;
    }
    .category-box .category-box-title .btn {
        margin-top: 4px;
    }
    .category-box-items {
        white-space: nowrap;
        overflow-x: scroll;
    }
    .category-box-items .post-item-box {
        width: calc(70% - 32px);
        height: 210px;
        min-height: auto;
        display: inline-block;
    }
    .category-box-items .post-item-box h3 {
        display: block;
    }
    .whatsapp-button {
        display: inline-block;
    }
    .bundle-news {
        display: inline-block;
    }
    .sidebar .post-item-box,
    .sidebar .post-item-box figure,
    .sidebar .post-item-box figure img {
        width: 100%;
    }
    .sidebar.category-sidebar {
        margin-right: 0;
        overflow: hidden;
    }
    .qr-box {
        display: none;
    }
    .app-os-list {
        left: inherit;
        right: 0;
        background: #fff;
    }
    .app-ss {
        margin: 0 -15px 20px -15px;
    }
    .app-header {
        margin-top: -44px;
        background: none;
    }
    .app-header figure,
    .app-header figure img {
        width: 84px;
        height: 84px;
    }
    .app-header figure {
        border: 1px solid #f3f3f3;
        border-radius: 10px;
        padding: 2px;
        margin-left: 0;
    }
    .app-header figure img {
        border-radius: 8px;
    }
    .app-header .app-title {
        padding: 0;
        float: none;
    }
    .app-header h1 {
        margin: 10px 0 15px;
    }
    .rating-box {
        float: none;
        margin: auto 0 20px;
        margin: auto 0 20px;
        text-align: center;
    }
    .rating-box .alert {
        position: relative;
        bottom: inherit;
        margin-top: 10px;
    }
    .app-header .app-features {
        display: block;
        width: calc(100% + 30px);
        margin: 0 -15px;
        overflow-x: scroll;
        box-shadow: 0 20px 30px rgb(136 136 136 / 15%);
    }
    .app-header .app-features::-webkit-scrollbar {
        -webkit-appearance: none;
    }
    .app-header .app-features::-webkit-scrollbar:horizontal {
        height: 8px;
    }
    .app-header .app-features::-webkit-scrollbar-thumb {
        border-radius: 8px;
        border: 2px solid white;
        background-color: rgba(0, 0, 0, .2);
    }
    .app-header .app-features li:last-child {
        display: none;
    }
    .different-os {
        margin-top: 225px;
    }
    .different-os .alert {
        margin: 0;
        line-height: 20px;
    }
    .footer-banner {
        display: block;
        position: fixed;
        bottom: 0px;
        z-index: 99999999;
        width: 100%;
        height: 50px;
        text-align: center;
    }
    .mobile-button {
        display: block;
        margin-bottom: 15px;
    }
    .mobile-button a {
        padding: 6px 30px;
    }
    .downloading .downloading-animation {
        float: none;
        margin: auto;
    }
    .downloading h1 {
        display: block;
        margin: 5px 0 15px 0;
        text-align: center;
    }
    .downloading #trouble a {
        display: block;
        margin-bottom: 15px;
        padding: 15px;
        text-align: center;
    }
    .downloading #trouble a:last-child {
        margin-bottom: 0;
    }
    .tamindir-recommended-download .container::before {
        content: 'TAMİNDİR ÖNERİYOR!';
        position: relative;
        display: block;
        font-size: 14px;
        font-weight: bold;
        padding: 15px;
        color: #fff;
    }
    .tamindir-recommended-download .container::after {
        display: none;
    }
    /*
    .hide-fixed {
        bottom: -55px !important;
    }

    .show-fixed {
        bottom: 0 !important;
    }
    */

    .post-container .post-detail ul {
        padding-inline-start: 20px;
    }
}

.onerilen_uygulama {
    display: block;
}

.youtube-embed-wrapper {
    margin-bottom: 10px;
}

#hideme {
    position: relative;
    top: 0;
    z-index: 998;
    background: #fff;
    width: 100%;
    height: 60px;
}

#hideme .btn-close {
    position: absolute;
    top: 19px;
    left: 6px;
    border: 1px solid #bbb;
    width: 20px;
    text-align: center;
    color: #bbb;
    border-radius: 50%;
    font-size: 12px;
    line-height: 0px;
    padding: 12px 2px;
}

#hideme .onerilen-reklem-img {
    position: absolute;
    top: 6px;
    left: 40px;
}

#hideme .sponsor {
    position: absolute;
    right: 19px;
    top: 6px;
    font-size: 10px;
    color: #999;
}

#hideme .yukle_kutu {
    position: absolute;
    top: 21px;
    right: 10px;
    z-index: 99;
    background-color: #689f38;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    padding: 8px 25px 6px 25px;
}

#hideme .baslik {
    position: absolute;
    top: 13px;
    left: 98px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

#hideme .aciklama {
    position: absolute;
    left: 98px;
    top: 34px;
    font-size: 12px;
    color: #aeb4b6;
}

@media only screen and (min-width: 1200px) {
    .pagination {
        margin-bottom: 40px;
    }
}

/* Author Profile Minimal Changes */
.author-title {
    color: #666;
    margin-bottom: 10px;
}

.social-links {
    margin: 10px 0;
}

.social-link {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 5px 10px;
    background: #03a9f4;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.social-link:hover {
    background: #0288d1;
    color: white;
}

.expertise-section, .education-section {
    margin-top: 15px;
}

.expertise-tags {
    margin-top: 5px;
}

.expertise-tag {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    padding: 3px 8px;
    margin: 2px 4px 2px 0;
    border-radius: 12px;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.expertise-tag:hover {
    background: #03a9f4;
    color: white;
    text-decoration: none;
}

.university-name {
    font-weight: bold;
    margin-top: 5px;
}

.university-department {
    color: #666;
    font-size: 14px;
}

.editor .editor-left h1 {
    font-size: 26px;
    line-height: 32px;
    margin: 0 0 15px 0;
}

/* Source Link */
.source-link {
    margin-top: 20px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px dotted #ccc;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.source-link .source-label {
    font-weight: bold;
    color: #666;
}

.source-link a {
    color: #6e7983;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: calc(100% - 62px);
    vertical-align: bottom;
}

.source-link a:hover {
    text-decoration: none;
}

/* Important Information Section */
.important-info-section {
    position: relative;
}

.important-info-section h3 {
    color: #000;
    font-size: 20px !important;
    font-weight: bold;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
}

.important-info-section h3:before {
    margin-right: 8px;
    font-size: 20px;
}

.important-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-info-list li {
    color: #000;
    padding: 8px 0 8px 10px;
    position: relative;
}

.important-info-list li:before {
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1.4;
}

.important-info-list li:last-child {
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {

}

/* Admin Panel Styles */
.form-group .help-block {
    font-size: 12px;
    color: #737373;
    text-align: right;
}

#form_article_important_info_1,
#form_article_important_info_2,
#form_article_important_info_3,
#form_software_important_info_1,
#form_software_important_info_2,
#form_software_important_info_3 {
    resize: vertical;
    min-height: 80px;
    font-size: 14px;
    line-height: 1.4;
}

hr.highlight-line {
    border: none;
    border-top: 1px dashed #5C5C5C; /* dashed = kesik çizgi */
}

@media only screen and (max-width: 1200px) {
    .faq-question {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .faq-item {
        margin-bottom: 0 !important;
    }
}

/* Social Media Block Styles */
.social-media-block {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 0 0 rgba(0,0,0,.05);
}

.social-media-container {
    padding: 20px;
}

.social-media-title {
    font-size: 16px;
    font-weight: bold;
    color: #4e595d;
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.facebook:hover {
    background: #2d4373;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.x {
    background: #000000;
}

.social-icon.x:hover {
    background: #333333;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.youtube:hover {
    background: #cc0000;
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon.tiktok:hover {
    background: #333333;
}

.social-icon .icons {
    filter: brightness(0) invert(1);
}

.social-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tiktok-icon {
    font-size: 20px;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-media-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .tiktok-icon {
        font-size: 18px;
    }
}

/* Subscribe Box Mobile Positioning */
.subscribe-box.moved-to-article {
    margin: 20px 0;
}

@media (max-width: 1200px) {
    .subscribe-box.moved-to-article {
        clear: both;
    }
}