
/* Common -----------------------------------  */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    font-size: 14px;
    line-height: 20px;
    cursor: default;
}
html {
    background: transparent;
}

body, input, textarea, button, select, a {
    font-family: "Poppins", sans-serif;
    color: #000000;
    -webkit-font-smoothing: antialiased;
}

*, :before, :after {
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
}

a {
    text-decoration: none;
}
@font-face {
    font-display: swap;
}

/* Animations -----------------------------------  */

/* Rotate */
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

.rotate {
    -webkit-animation: rotate 900ms infinite linear;
    -webkit-transform-origin: center;
    animation: rotate 900ms infinite linear;
    transform-origin: center;
}

/* Pulsate */
@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulsate {
    -webkit-animation: pulsate 1s infinite;
    -webkit-transform: scale(1);
    animation: pulsate 1s infinite;
    transform: scale(1);
}

/* Ring */
@-webkit-keyframes ring {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

@keyframes ring {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

/* Progress Bar */
@-webkit-keyframes progressbar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes progressbar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.progress {
    -webkit-animation: progressbar 5s normal linear;
}

/* Nudge */
@-webkit-keyframes nudge {
    0% {
        margin-left: 0px;
    }
    50% {
        margin-left: -50px;
    }
    100% {
        margin-left: 0px;
    }
}

@keyframes nudge {
    0% {
        margin-left: 0px;
    }
    50% {
        margin-left: -50px;
    }
    100% {
        margin-left: 0px;
    }
}

.nudge {
    -webkit-animation: nudge 500ms normal linear;
}

/* Bounce */
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-14px);
    }
    60% {
        -webkit-transform: translateY(-7px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-14px);
    }
    60% {
        -moz-transform: translateY(-7px);
    }
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-14px);
    }
    60% {
        -o-transform: translateY(-7px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-14px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.bounce {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}


/* Loading Pulse */
@keyframes loadingPulse {
    0% {
        background-color: #E9EBEC;
    }
    50% {
        background-color: #f9f9f9;
    }
    100% {
        background-color: #E9EBEC;
    }
}


/* Header ----------------------------------- */

.header-ad {
    float: left;
    width: 100%;
    height: auto;
    min-height: 250px;
    margin: 0 0 0 0;
    background: #f9f9f9;
    border-bottom: 1px solid #E6E6E6;
    text-align: center;
}
.header .search-download {
    width: 900px;
    height: 40px;
    float: left;
}
.header .search-download .search-input{
    height: 40px;
    border: 1px solid #0e65c2;
    width: calc(100% - 120px);
    border-radius: 6px 0 0 6px;
}
.search-bar .start-btn {
    float: right;
    height: 40px;
    width: 120px;
    border: 1px solid #0e65c2;
    border-radius: 0 6px 6px 0;
    background-color: #0e65c2;
}
#button_search {
    width: 120px;
    height: inherit;
    margin: unset;
    border: none;
}
#button_search:hover,
.btn-download:hover{
    background-color: rgba(26, 163, 255, 0.5);
    color: #000;
}
.nav-skeleton {
    float: left;
    width: 100%;
    height: 1px;
}

.nav {
    float: left;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 10px 0 10px;
    background: #FFFFFF;
    box-shadow: 0px 1px #E6E6E6;
}
body.scrolled .nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

.nav .centered {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.nav .centered .logo_ig{
    display: flex;
}
.nav .centered .logo_insta{
    height: 40px;
    width: 40px;
    margin-right: 30px;
}
.nav .centered .logo-btn {
    float: left;
    font-size: 22px;
    line-height: 44px;
    font-weight: 800;
}
.nav .centered .menu-btn {
    float: right;
    width: 44px;
    height: 44px;
    margin: 0 -7px 0 0;
    cursor: pointer;
    background: url(../images/ui-sprite.svg) 2px 2px no-repeat;
}
/* Footer ----------------------------------- */
.footer {
    float: left;
    width: 100%;
    margin: 0;
    padding: 20px 10px 30px 10px;
    background: #FFFFFF;
    border-top: 1px solid #E6E6E6;
    color: #55595c;
}

.footer .centered {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.footer .centered .section-1 {
    float: left;
    text-align: left;
}

.footer .centered .section-1 .logo {
    float: left;
    clear: both;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}

.footer .centered .section-1 .links {
    float: left;
    clear: both;
}

.footer .centered .section-1 .links a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #55595c;
}

.footer .centered .section-2 {
    float: right;
    text-align: right;
    width: 60%;
}

.footer .centered .section-2 .links {
    float: right;
    clear: both;
    font-size: 14px;
    line-height: 20px;
}

.footer .centered .section-2 .links a {
    font-weight: 600;
    color: #55595c;
}

.footer .centered .section-2 .disclaimer {
    float: right;
    clear: both;
    font-size: 12px;
    line-height: 14px;
}


/* Page ------------------------ */
.page {
    float: left;
    width: 100%;
    margin: 30px 0 20px 0;
    padding: 0 10px 0 10px;
}

.page .centered {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.page .centered h1.heading {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
    font-size: 36px;
    line-height: 38px;
    font-weight: 700;
}

.page .centered h2.heading {
    display: block;
    width: 100%;
    margin: 10px 0 15px 0;
    padding: 0 0 0 0;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
}

.page .centered .ad {
    float: left;
    width: 100%;
    height: auto;
    min-height: 250px;
    margin: 10px 0 10px 0;
    background: #f9f9f9;
    border-radius: 4px;
}

.page .centered .header {
    float: left;
    width: 100%;
}

.page .centered .header .desc {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #55595c;
}

.page .centered .content {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
}

.page .centered .content a {
    font-weight: bold;
    color: #2E74FF;
}


/* Tools Tabs */
.page .centered .tool-tabs {
    float: left;
    width: 100%;
    margin: 0 0 -10px 0;
    padding: 0;
    list-style: none;
}

.page .centered .tool-tabs .tool {
    position: relative;
    float: left;
    width: calc(100%/6);
    margin: 0;
    overflow: hidden;
    padding: 0px 2px 0px 2px;
}

.page .centered .tool-tabs .tool:first-child {
    padding: 0px 2px 0px 0px;
}

.page .centered .tool-tabs .tool:last-child {
    padding: 0px 0px 0px 2px;
}

.page .centered .tool-tabs .tool .link {
    float: left;
    width: 100%;
    padding: 4px 0 4px 0;
    overflow: hidden;
    text-align: center;
    background: #F5F5F5;
    border-radius: 4px;
    border-bottom: 2px solid transparent;
}

.page .centered .tool-tabs .tool .link .icon {
    display: block;
    margin: 0 auto;
    clear: both;
    width: 30px;
    height: 30px;
    background: url(../images/tools-sprite.svg) -5px -5px no-repeat;
}

.page .centered .tool-tabs .tool .link .name {
    display: inline-block;
    clear: both;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    color: #112fa7;
}

.page .centered .tool-tabs .tool.selected.profile-pictures .link {
    border-bottom-color: #2E74FF;
}

.page .centered .tool-tabs .tool.selected.instagram-stories .link {
    border-bottom-color: #A419FF;
}

.page .centered .tool-tabs .tool.selected.instagram-reels .link {
    border-bottom-color: #FF744B;
}

.page .centered .tool-tabs .tool.selected.instagram-videos .link {
    border-bottom-color: #EC353F;
}

.page .centered .tool-tabs .tool.selected.instagram-photos .link {
    border-bottom-color: #00AE4B;
}

.page .centered .tool-tabs .tool.profile-pictures .link .icon {
    background-position: -5px -5px;
}

.page .centered .tool-tabs .tool.instagram-stories .link .icon {
    background-position: -5px -165px;
}

.page .centered .tool-tabs .tool.instagram-reels .link .icon {
    background-position: -5px -125px;
}

.page .centered .tool-tabs .tool.instagram-videos .link .icon {
    background-position: -5px -45px;
}

.page .centered .tool-tabs .tool.instagram-photos .link .icon {
    background-position: -5px -85px;
}

.page .centered .tools-list {
    float: left;
    width: 100%;
}

.page .centered .tools-list .tools-header {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
}
.page .centered .tools-list .more-list {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin: 0 0 20px 0;
    padding: 0;
}
.page .centered .tools-list .tools-header h2.heading {
    display: block;
    width: 100%;
    margin: 0 0 5px 0;
    padding: 0 0 0 0;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
}

.page .centered .tools-list .tools-header .desc {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
    font-size: 14px;
    line-height: 16px;
}

.page .centered .tools-list .list {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin: 0 0 20px 0;
    padding: 0;
}

.page .centered .tools-list .list:last-child {
    margin: 0 0 0 0;
}

.page .centered .tools-list .list .tool {
    position: relative;
    display: block;
    margin: 0;
    background-color: #E9EBEC;
    border-radius: 6px;
    overflow: hidden;
}

.page .centered .tools-list .list .tool .link {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    padding: 15px 20% 15px 15px;
    overflow: hidden;
}

.page .centered .tools-list .list .tool .link .icon {
    float: left;
    clear: both;
    width: 30px;
    height: 30px;
    background: url(../images/tools-sprite.svg) -5px -5px no-repeat;
}

.page .centered .tools-list .list .tool .link .title {
    float: left;
    width: 100%;
    font-size: 17px;
    line-height: 20px;
    font-weight: 700;
}

.page .centered .tools-list .list .tool .link .arrow {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: url(../images/ui-sprite.svg) -5px -325px no-repeat;
}

.page .centered .tools-list .list .tool .bg-icon {
    position: absolute;
    right: 0;
    bottom: -30px;
    z-index: 1;
    display: block;
    width: 100px;
    height: 100px;
    background: url(../images/tools-bg-icons.svg) 0px 0px no-repeat;
}

.page .centered .tools-list .list .tool.profile-pictures .link .icon {
    background-position: -5px -5px;
}

.page .centered .tools-list .list .tool.profile-pictures .bg-icon {
    background-position: 0px 0px;
}

.page .centered .tools-list .list .tool.instagram-videos .link .icon {
    background-position: -5px -45px;
}

.page .centered .tools-list .list .tool.instagram-videos .bg-icon {
    background-position: 0px -100px;
}

.page .centered .tools-list .list .tool.instagram-photos .link .icon {
    background-position: -5px -85px;
}

.page .centered .tools-list .list .tool.instagram-photos .bg-icon {
    background-position: 0px -200px;
}

.page .centered .tools-list .list .tool.instagram-reels .link .icon {
    background-position: -5px -125px;
}

.page .centered .tools-list .list .tool.instagram-reels .bg-icon {
    background-position: 0px -300px;
}

.page .centered .tools-list .list .tool.instagram-stories .link .icon {
    background-position: -5px -165px;
}

.page .centered .tools-list .list .tool.instagram-stories .bg-icon {
    background-position: 0px -400px;
}

.page .centered .tools-list .list .tool.tiktok-videos .link .icon {
    background-position: -5px -205px;
}

.page .centered .tools-list .list .tool.tiktok-videos .bg-icon {
    background-position: 0px -100px;
}


.page .centered .influencers {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
}

.page .centered .influencers .list {
    float: left;
    width: 100%;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
}

.page .centered .influencers .list .user {
    float: left;
    margin: 0 10px 10px 0;
    padding: 0;
    background: #E9EBEC;
    border-radius: 4px;
}

.page .centered .influencers .list .user .link {
    float: left;
    max-width: 300px;
    padding: 6px 14px 6px 10px;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.page .centered .influencers .list .user .link:before {
    display: inline-block;
    vertical-align: middle;
    content: ' ';
    width: 20px;
    height: 20px;
    margin: 0 5px 0 0;
    background: url(../images/ui-sprite.svg) -10px -170px no-repeat;
}

.page .centered .articles {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
}

.page .centered .articles .list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin: 0;
    padding: 0;
}

.page .centered .articles .list .article {
    display: block;
    margin: 0;
    padding: 0 0 10px 0;
}

.page .centered .articles .list .article .link {
    float: left;
    width: 100%;
    padding: 0 0 0 0;
}

.page .centered .articles .list .article .link .thumbnail {
    position: relative;
    float: left;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 0 10px 0;
    background: #E9EBEC;
    border-radius: 6px;
    overflow: hidden;
}

.page .centered .articles .list .article .link .thumbnail .img {
    position: absolute;
    top: 0;
    left: 0;
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page .centered .articles .list .article .link .title {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
}

.page .centered .articles .list .article .link .desc {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

/*relate post*/
#video-relate{
    padding-top: 24px;
    max-width: 850px;
    margin: 0 auto;
}
#video-relate>p{
    border-bottom: 1px solid rgba(171, 173, 177, 0.6);
    text-align: left;
}
.video-relate-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
}
li.video-relate-item{
    flex-basis: 25%;
    padding: 0 16px;
    box-sizing: border-box;
}
li.video-relate-item img{
    width: 90%;
    height: 150px;
    object-fit: cover;
}
.video-relate-item .image-container{
    position: relative;
}
.video-relate-item .image-container .icon-play{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

li.video-relate-item .video-relate-desc{
    text-align: center;
    padding-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
/*endrelate post*/

/* Sidebar ----------------------------------- */
body.sb-toggled .sidebar {
    visibility: visible;
    right: 0px;
}

.sidebar {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: -270px;
    z-index: 999;
    float: left;
    width: 270px;
    height: 100%;
    padding: 20px 0 20px 0;
    background: #FFFFFF;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.prevent-click {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    opacity: .2;
}

.sidebar .logo {
    float: left;
    clear: both;
    margin: 0 0 20px 20px;
    font-size: 22px;
    line-height: 22px;
    font-weight: 800;
}

.sidebar .title {
    float: left;
    clear: both;
    margin: 0 0 10px 20px;
    font-size: 17px;
    line-height: 17px;
    font-weight: 700;
}

.sidebar .menu-list {
    float: left;
    clear: both;
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

.sidebar .menu-list .item {
    float: left;
    width: 100%;
}

.sidebar .menu-list .item .link {
    float: left;
    width: 100%;
    padding: 10px 20px 10px 20px;
    line-height: 24px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar .menu-list .item .link .icon {
    float: left;
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
    background: url(../images/ui-sprite.svg) 2px 2px no-repeat;
}

.sidebar .menu-list .item .link .icon.home {
    background-position: -8px -48px;
}

.sidebar .menu-list .item .link .icon.tips {
    background-position: -8px -84px;
}

.sidebar .menu-list .item .link .icon.contact {
    background-position: -8px -128px;
}

.sidebar .tools-list {
    float: left;
    clear: both;
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

.sidebar .tools-list .item {
    float: left;
    width: 100%;
}

.sidebar .tools-list .item .link {
    float: left;
    width: 100%;
    padding: 10px 20px 10px 20px;
    line-height: 24px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar .tools-list .item .link .icon {
    float: left;
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
    background: url(../images/networks-sprite.svg) 2px 2px no-repeat;
}

.sidebar .tools-list .item .link .icon.instagram {
    background-position: -8px -8px;
}

.sidebar .tools-list .item .link .icon.tiktok {
    background-position: -8px -48px;
}

.sidebar .darkmode-options {
    float: left;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #EEEEEE;
}

.sidebar .darkmode-options .text {
    float: left;
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
}

.sidebar .darkmode-options .button {
    float: right;
}

.sidebar .darkmode-options .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.sidebar .darkmode-options .switch .checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.sidebar .darkmode-options .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 24px;
}

.sidebar .darkmode-options .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.sidebar .darkmode-options .checkbox:checked + .slider {
    background-color: #2196F3;
}

.sidebar .darkmode-options .checkbox:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.sidebar .darkmode-options .checkbox:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
body.darkmode .dropbtn {
    background-color: #222222;
    color: #FFFFFF;
}


/* Content ----------------------------------- */

/* Index  */


/* Tools Section */
.tool-section {
    float: left;
    width: 100%;
    margin: 10px 0 10px 0;
}

.tool-section .search-bar {
    width: 100%;
    height: 40px;
    background: #E9EBEC;
    border-radius: 6px;
    display: flex;
    margin-bottom: 20px;
}
#nav-menu {
    margin-bottom: 5px;
}

.tool-section .search-bar .search-input {
    float: left;
    width: calc(100% - 120px);
    height: 40px;
    padding: 10px 0px 10px 14px;
    border: 0;
    background: transparent;
    font-size: 17px;
    line-height: 20px;
    font-weight: 700;
    color: #000000;
}

.tool-section .search-bar .tool-icon {
    display: none;
    float: left;
    width: 40px;
    height: 40px;
    background: url(../images/tools-sprite.svg) 0px 0px no-repeat;
}

.tool-section.profile-pictures .search-bar .tool-icon {
    background-position: 0px 0px;
}

.tool-section.instagram-videos .search-bar .tool-icon {
    background-position: 0px -40px;
}

.tool-section.instagram-photos .search-bar .tool-icon {
    background-position: 0px -80px;
}

.tool-section.instagram-reels .search-bar .tool-icon {
    background-position: 0px -120px;
}

.tool-section.instagram-stories .search-bar .tool-icon {
    background-position: 0px -160px;
}

.tool-section.tiktok-videos .search-bar .tool-icon {
    background-position: 0px -200px;
}

/*.tool-section .search-bar .search-btn {*/
/*    display: block;*/
/*    float: right;*/
/*    width: 60px;*/
/*    height: 30px;*/
/*    margin: 5px;*/
/*    background: #2E74FF url(../images/dm-ui-sprite.svg) center -165px no-repeat;*/
/*    border-radius: 15px;*/
/*    border: 0;*/
/*    border-radius: 4px;*/
/*    cursor: pointer;*/
/*}*/

/*.tool-section.loading .search-bar .search-btn {*/
/*    display: none;*/
/*}*/

/*.tool-section.continue .search-bar .search-btn {*/
/*    display: none;*/
/*}*/

/*.tool-section.error .search-bar .search-btn {*/
/*    display: none;*/
/*}*/

/*.tool-section .search-bar .reset-btn {*/
/*    display: none;*/
/*    float: right;*/
/*    width: 40px;*/
/*    height: 30px;*/
/*    margin: 5px;*/
/*    background: #D4D7D9 url(../images/ui-sprite.svg) 0px -205px no-repeat;*/
/*    border: 0;*/
/*    border-radius: 4px;*/
/*    cursor: pointer;*/
/*}*/

/*.tool-section.continue .search-bar .reset-btn {*/
/*    display: block;*/
/*}*/

/*.tool-section.error .search-bar .reset-btn {*/
/*    display: block;*/
/*}*/

/*.tool-section .search-bar .search-loader {*/
/*    display: none;*/
/*    float: right;*/
/*    width: 40px;*/
/*    height: 30px;*/
/*    margin: 5px;*/
/*    background: #2E74FF;*/
/*    border: 0;*/
/*    border-radius: 4px;*/
/*}*/

/*.tool-section .search-bar .search-loader:before {*/
/*    display: block;*/
/*    content: ' ';*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    margin: 0 0 0 5px;*/
/*    background: url(../images/dm-ui-sprite.svg) -5px -365px no-repeat;*/
/*    border-radius: 15px;*/
/*    -webkit-animation: rotate 900ms infinite linear;*/
/*    -webkit-transform-origin: center;*/
/*    animation: rotate 900ms infinite linear;*/
/*    transform-origin: center;*/
/*}*/

/*.tool-section.loading .search-bar .search-loader {*/
/*    display: block;*/
/*}*/
.search-bar .start-btn{
    float: right;
    height: 40px;
    width: 120px;
    border: 1px solid #0e65c2;
    border-radius: 0 6px 6px 0;
    background-color: #0e65c2;
}
.search-bar .start-btn .hidden-xs{
    margin: 0;
    color: #FFFFFF;
}

.tool-section .continue-btn {
    display: none;
    float: right;
    width: 100%;
    height: 40px;
    margin: 10px 0px 0px 0px;
    text-align: center;
    font-size: 17px;
    line-height: 40px;
    font-weight: 700;
    color: #FFFFFF;
    background: #2E74FF;
    border: 0;
    border-radius: 4px;
}

.tool-section.continue .continue-btn {
    display: block;
}

.tool-section .error-alert {
    display: none;
    float: right;
    width: 100%;
    height: 40px;
    margin: 10px 0px 0px 0px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #EC353F;
    border: 1px solid #EC353F;
    border-radius: 4px;
}

.tool-section.error .error-alert {
    display: block;
}

.tool-section .search-history {
    display: none;
    float: left;
    width: 100%;
    margin: 10px 0px 0px 0px;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
}

.tool-section.has-history .search-history {
    display: block;
}

.tool-section .search-history .toggle-bar {
    float: left;
    width: 100%;
    height: 40px;
    cursor: pointer;
    font-size: 14px;
    line-height: 40px;
    font-weight: 700;
}

.tool-section .search-history .toggle-bar:before {
    float: left;
    content: ' ';
    width: 40px;
    height: 40px;
    margin: 0 0 0 0;
    background: url(../images/ui-sprite.svg) 0px -400px no-repeat;
}

.tool-section .search-history .toggle-bar:after {
    float: right;
    content: ' ';
    width: 40px;
    height: 40px;
    background: url(../images/ui-sprite.svg) 0px -280px no-repeat;
}

.tool-section .search-history.toggled .toggle-bar:after {
    transform: rotate(180deg);
}

.tool-section .search-history .list {
    display: none;
    float: left;
    width: 100%;
    margin: 0 0 0 0;
    padding: 20px 0 0 0;
    border-top: 1px solid #E6E6E6;
}

.tool-section .search-history.toggled .list {
    display: block;
}

.tool-section .search-history .list .user {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
}

.tool-section .search-history .list .user .link {
    float: left;
    width: calc(100% - 40px);
    padding: 0 0 0 10px;
}

.tool-section .search-history .list .user .link .avatar {
    float: left;
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
    background: #E9EBEC;
    border-radius: 20px;
    overflow: hidden;
}

.tool-section .search-history .list .user .link .avatar .img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.tool-section .search-history .list .user .link .username {
    display: block;
    margin: 5px 0 0 0;
    font-size: 14px;
    line-height: 15px;
    font-weight: 700;
}

.tool-section .search-history .list .user .link .username .verified {
    display: none;
    margin: 0 0 0 0px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background: url(../images/ui-sprite.svg) -12px -813px no-repeat;
}

.tool-section .search-history .list .user.verified .link .username .verified {
    display: inline-block;
}

.tool-section .search-history .list .user .link .text {
    display: block;
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
}

.tool-section .search-history .list .user .remove-btn {
    float: right;
    width: 40px;
    height: 40px;
    background: url(../images/ui-sprite.svg) 0px -240px no-repeat;
    cursor: pointer;
}

/* Articles */
.article-image {
    position: relative;
    float: left;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 0 10px 0;
    background: #E9EBEC;
    border-radius: 6px;
    overflow: hidden;
}

.article-image .img {
    position: absolute;
    top: 0;
    left: 0;
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Verify */
.verify-header {
    float: left;
    width: 100%;
    padding: 20px 0 20px 0;
    text-align: center;
}

.verify-header .verify-bot-icon {
    display: inline-block;
    width: 250px;
    height: 120px;
    margin: 0 0 10px 0;
    background: url(../images/verify-bot.svg) center center no-repeat;
    background-size: 250px 120px;
}

.verify-captcha {
    float: left;
    width: 100%;
    padding: 20px 0 20px 0;
    border-top: 1px solid #E6E6E6;
    text-align: center;
}

.verify-captcha .error {
    display: block;
    width: 100%;
}

.verify-captcha .error .retry-btn {
    display: none;
    margin: 0 auto 10px auto;
    width: 100px;
    border-radius: 4px;
    background: #00AE4B;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.verify-explanation {
    float: left;
    width: 100%;
    padding: 20px 0 20px 0;
    border-top: 1px solid #E6E6E6;
    text-align: center;
}

.page .centered .invisible-verify {
    display: block;
    width: 100%;
}

.page .centered .invisible-verify .loader {
    display: none;
    width: 100%;
}

.page .centered .invisible-verify .loader .icon {
    display: block;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    background: url(../images/ui-sprite.svg) 0px -360px no-repeat;
}

.page .centered .invisible-verify .not-bot {
    display: block;
    margin: 0 auto 0 auto;
    width: 150px;
    border-radius: 4px;
    background: #2E74FF;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}


.page.loading .centered .invisible-verify .not-bot {
    display: none;
}

.page.loading .centered .invisible-verify .loader {
    display: block;
}

.page .centered .security-challenge {
    display: none;
    width: 100%;
}

.page.challenge .centered .invisible-verify {
    display: none;
}

.page.challenge .centered .security-challenge {
    display: block;
}

.page.error .centered .verify-captcha .error .retry-btn {
    display: block;
}


/* Media Queries ----------------------------------- */

/* -- Width 800px -- */
@media all and (max-width: 800px) {
    li.video-relate-item{
        flex-basis: 50%;
    }
    /* Footer ----------------------------------- */
    .footer {
        padding: 30px 10px 30px 10px;
    }

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

    .footer .centered .section-1 {
        width: 100%;
        margin: 0 0 10px 0;
        padding: 0 0 10px 0;
        text-align: center;
        border-bottom: 1px solid #E6E6E6;
    }

    .footer .centered .section-1 .logo {
        width: 100%;
    }

    .footer .centered .section-1 .links {
        width: 100%
    }

    .footer .centered .section-2 {
        float: left;
        text-align: center;
        width: 100%;
    }

    .footer .centered .section-2 .links {
        float: left
    }

    .footer .centered .section-2 .disclaimer {
        float: left;
        width: 100%;
    }
    /*area preview*/
    .area-preview-video video{
        width: 320px;
        height: 320px;
    }


}


/* -------- DARK MODE -- [START] -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* Loading Pulse */
@keyframes DmloadingPulse {
    0% {
        background-color: #181818;
    }
    50% {
        background-color: #333333;
    }
    100% {
        background-color: #181818;
    }
}


/* Common -----------------------------------  */
body.darkmode {
    background: #000000;
}

body.darkmode, body.darkmode input, body.darkmode textarea, body.darkmode button, body.darkmode select, body.darkmode a {
    color: #FFFFFF;
}


/* Header ----------------------------------- */
body.darkmode .header-ad {
    background: #090909;
    border-bottom: none;
}

body.darkmode .nav-skeleton {
    background: #222222;
}

body.darkmode .nav {
    background: #222222;
    box-shadow: none;
}

body.darkmode .nav .centered .menu-btn {
    background-image: url(../images/dm-ui-sprite.svg);
}


/* Footer ----------------------------------- */
body.darkmode .footer {
    background: #222222;
    border-top: none;
}


/* Page ------------------------ */
body.darkmode .page .centered .ad {
    background: #090909;
}

body.darkmode .page .centered .tools-list .list .tool {
    background-color: #222222;
}

body.darkmode .page .centered .tools-list .list .tool .link .icon {
    background-image: url(../images/dm-tools-sprite.svg);
}

body.darkmode .page .centered .tools-list .list .tool .link .arrow {
    background-image: url(../images/dm-ui-sprite.svg);
}

body.darkmode .page .centered .tools-list .list .tool .bg-icon {
    background-image: url(../images/dm-tools-bg-icons.svg);
}

body.darkmode .page .centered .influencers .list .user {
    background: #222222;
}

body.darkmode .page .centered .influencers .list .user .link:before {
    background-image: url(../images/dm-ui-sprite.svg);
}

body.darkmode .page .centered .articles .list .article .link .thumbnail {
    background-color: #222222;
}

body.darkmode .page .centered .tool-tabs .tool .link {
    background: #0A0A0A;
}


/* Sidebar ----------------------------------- */
body.darkmode .sidebar {
    background: #222222;
}

body.darkmode .sidebar .menu-list .item .link .icon {
    background-image: url(../images/dm-ui-sprite.svg);
}

body.darkmode .sidebar .tools-list .item .link .icon {
    background-image: url(../images/dm-networks-sprite.svg);
}


body.darkmode .sidebar .darkmode-options {
    border-top-color: #333333;
}


/* Paging */
body.darkmode .paging {
    border-top-color: #333333;
}

body.darkmode .paging .prev-placeholder {
    color: #666666;
    background: #222222;
}

body.darkmode .paging .next-placeholder {
    color: #666666;
    background: #222222;
}

body.darkmode .paging .prev-link {
    color: #FFFFFF;
    background: #2196F3;
}

body.darkmode .paging .next-link {
    color: #FFFFFF;
    background: #2196F3;
}


/* Articles */
body.darkmode .article-image {
    background: #222222;
}


/* Verify */
body.darkmode .verify-header .verify-bot-icon {
    background-image: url(../images/dm-verify-bot.svg);
}

body.darkmode .verify-captcha {
    border-top-color: #333333;
}

body.darkmode .verify-explanation {
    border-top-color: #333333;
}


/* Content ----------------------------------- */

/* Index  */


/* Tools Section */
body.darkmode .tool-section .search-bar {
    background: #222222;
}

body.darkmode .tool-section .search-bar .search-input {
    color: #FFFFFF;
}

body.darkmode .tool-section .search-bar .tool-icon {
    background-image: url(../images/dm-tools-sprite.svg);
}

body.darkmode .tool-section .search-bar .reset-btn {
    background-color: #444444;
    background-image: url(../images/dm-ui-sprite.svg);
}

body.darkmode .tool-section .search-history {
    border-color: #333333;
}

body.darkmode .tool-section .search-history .toggle-bar:before {
    background-image: url(../images/dm-ui-sprite.svg);
}

body.darkmode .tool-section .search-history .toggle-bar:after {
    background-image: url(../images/dm-ui-sprite.svg);
}

body.darkmode .tool-section .search-history .list {
    border-top-color: #333333;
}

body.darkmode .tool-section .search-history .list .user .link .avatar {
    background: #333333;
}

body.darkmode .tool-section .search-history .list .user .link .username .verified {
    background-image: url(../images/dm-ui-sprite.svg);
}

body.darkmode .tool-section .search-history .list .user .remove-btn {
    background-image: url(../images/ui-sprite.svg);
}


/* Result */
body.darkmode .user-header .avatar {
    background: #333333;
}

body.darkmode .user-header .username .verified {
    background-image: url(../images/dm-ui-sprite.svg);
}

body.darkmode .user-header .avatar-skeleton {
    background: #181818;
}

body.darkmode .user-header .username-skeleton {
    background: #181818;
}

body.darkmode .user-header .text-skeleton {
    background: #181818;
}

body.darkmode .user-header .followers-skeleton {
    background: #181818;
}

body.darkmode .user-header.animated .avatar-skeleton, body.darkmode .user-header.animated .username-skeleton, body.darkmode .user-header.animated .text-skeleton, body.darkmode .user-header.animated .followers-skeleton {
    animation: DmloadingPulse 1s infinite;
}

body.darkmode .page .centered .invisible-verify .loader .icon {
    background-image: url(../images/dm-ui-sprite.svg);
}


/* Media Queries ----------------------------------- */

/* -- Width 800px -- */
@media all and (max-width: 800px) {

    /* Footer ----------------------------------- */
    body.darkmode .footer .centered .section-1 {
        border-bottom-color: #333333;
    }

}


/* -------- DARK MODE -- [END] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/*----------language-----------*/
.nav .dropdown_language {
    display: inline-block;
    position: relative;
}
.nav .dropbtn{
    border: none;
    height: 44px;
    font-size: 16px;
    background-color: #FFFFFF;
    padding: 0 16px;
    cursor: pointer;
}
.nav .dropbtn:hover {
    background-color: rgba(26, 163, 255, 0.5);
    border-radius: 5px;
}
#dropdownLanguage{
    position: absolute;
    min-width: 140px;
    line-height: 1.75;
    background-color: #FFFFFF;
    z-index: 1;
    padding: 0;
    list-style-type: none;
    overflow: auto;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
}
#dropdownLanguage li{
    list-style-type: none;
    margin: 0;
    display: block;
    width: 140px;
    height: 32px;
}
#dropdownLanguage>li:hover {
    background-color: rgba(26, 163, 255, 0.5);
}
#dropdownLanguage a{
    padding: 2px 16px;
    font-size: 15px;
    text-decoration: none;
    display: block;
    width: 140px;
    line-height: 32px;
}
.centered .dropdown-content{
    display: none;
}
.dropdown-content.show{
    display: block;
}
.nav .centered{
    max-width: 900px;
    justify-content: space-between;
    display: flex;
}
.dropbtn:hover, .dropbtn:focus {
    background-color: rgba(26, 163, 255, 0.5);
    border-radius: 5px;
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
/*----------language----[END]-------*/
/*---------dowload------------*/
img,video{
    max-width: 320px!important;
    max-height: 320px!important;
}

.area-preview{
    position: relative;
    display:inline-block ;
    max-width: 800px;
    margin-bottom: 20px ;
}
.area-preview{
    flex-direction: column;
    margin-bottom: 20px ;
}
.area-download{
    padding: 20px 20px 0px 20px;
}
.area-preview-photo{
    position: relative;
}
.area-preview b{
    text-align: center;
    padding-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
#thumbnail{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 430px;
    border-radius: 6px;
}

#icon_play_video{
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.title-video {
    font-weight: bold;
    padding-top: 10px;
}
#result .nav-tabs {
    border-bottom: 1px solid #ddd;
}
#result .nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
#result #list-format ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin-top: 0;
}
li {
    display: list-item;
    text-align: -webkit-match-parent;
}
#result #list-format .nav-tabs>li {
    float: left;
    margin-bottom: -1px;
}
#result #list-format .nav>li {
    position: relative;
    display: block;
}
#result #list-format .nav-tabs>li.active>a {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default;
}
#result #list-format .nav-tabs>li>a {
    border-radius: 2px 2px 0 0;
    color: #0e65c2;
    padding: 10px 20px 11px;
    transition: background-color .2s linear;
    font-weight: 700;
}
#result #list-format .nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    background-color: #eee;
}
#result #list-format .nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}
#result #list-format .nav-tabs>li>a {
    border-radius: 2px 2px 0 0;
    color: #0e65c2;
    padding: 10px 20px 11px;
    transition: background-color .2s linear;
    font-weight: 700;
}
#result #list-format .nav-tabs a {
    text-decoration: none;
    color: inherit;
}
.fade.in,
.fade.open {
    opacity: 1;
}
.tab-content>.active {
    display: block;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
.table {
    width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 0 !important;
    max-width: 100%;
}
.table-bordered {
    border: 1px solid #ddd;
}
#result #list-format thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
}
#result #list-format tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}
.table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>th, .table>caption+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>td, .table>thead:first-child>tr:first-child>td {
    border-top: 0;
}
.table>thead>tr>th, .table>tbody>tr>td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #dcdfe4;
    border-top: 0;
}
.table>thead>tr>th {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    border: 1px solid #ddd;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}
table>tbody>tr>td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #dcdfe4;
    border-top: 0;
}
.table-bordered>tbody>tr>td{
    border: 1px solid #ddd;
}
tr td {
    text-align: center !important;
}
.audio-format {
    display: inline-block;
    width: fit-content;
}
.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
table tr th {
    text-align: center !important;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
tr td {
    text-align: center !important;
}
.label-primary {
    background-color: #337ab7;
}
.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}
.form-control {
    border: 1px solid #dcdfe4;
    height: 36px;
    padding: 0 10px;
    border-radius: 4px;
    box-shadow: none;
}
.form-control {
    display: block;
    width: 100%;
    height: 36px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
option {
    font-weight: normal;
    display: block;
    white-space: nowrap;
    min-height: 1.2em;
    padding: 0px 2px 1px;
}
#result thead a {
    text-decoration: none;
    color: inherit;
}
.audio-format {
    display: inline-block;
    width: fit-content;
}
#list-format .nav-tabs{
    margin-top: 0 !important;
    margin-bottom: 0!important;
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.table>thead>tr>th, .table>tbody>tr>td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #dcdfe4;
    border-top: 0;
}
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    text-decoration: none;
    color: inherit;
    line-height: 49px;
}
a:hover,
a:focus,
p a {
    text-decoration: none;
    color: #0e65c2
}
/*.tab-content>.tab-pane {*/
/*    display: none;*/
/*}*/
.img{
    position: relative;
    max-width: 800px;
    display: inline-block;
}
#main{
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
}
#stop{
    position: absolute;
    width: 50px;
    height: 50px;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/*---------loading---------*/
#loading,
#audio_loading,
#result,
#result_mp3,
#video-relate{
    display: none;
}
#loading img {
    margin: auto;
    background: 0 0;
}
div#error_msg {
    text-align: center;
    margin: 12px auto;
    padding: 12px 0px;
    box-shadow: 1px -1px 9px -1px rgba(168,164,164,0.75);
    -webkit-box-shadow: 1px -1px 9px -1px rgba(168,164,164,0.75);
}
/*---------loading-[END]---------*/

/*modal*/
.modal{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    align-items: flex-start;
    justify-content: center;
    display: none;
}
.modal.open{
    display: flex;
    opacity: 1;
    z-index: 5;
}
.modal-content {
    width: 100%;
    min-height: 200px;
    max-width: calc(100% - 32px);
    animation: modalFadein ease .5s;
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
}
.modal-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    text-align: right;
    font-size: 25px;
}
.modal-body {
    position: relative;
    padding: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.modal-footer {
    padding: 12px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-btn-default {
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 5px;
}
.modal-btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border: 1px solid #adadad;
    border-radius: 5px;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    max-width: 100%;
}
.modal-content {
    width: 100%;
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-header button.close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20);
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    margin-top: -2px;
}
.modal-body {
    position: relative;
    padding: 15px;
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.clearfix:before, .clearfix:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table;
}
.clearfix:after, .modal-header:after, .modal-footer:after {
    clear: both;
}
@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
}
/*End modal*/
/*}*/
/*Css for tab - https://www.w3schools.com/howto/howto_js_tabs.asp*/
.tab {
    overflow: hidden;
}
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 7px 14px;
    transition: 0.3s;
    font-size: 17px;
}
.tab button:hover {
    background-color: #ddd;
}
.tab button.active {
    border: 1px solid #ccc;
    border-bottom-width: 0;
    background-color: #f1f1f1;
}
.tab-content {
    display: none;
    border-top: none;
    transition: all.5s;
}
#preview-audio-area .btn-download {
    margin-left: 15px;
}

#loading_img {
    display: flex;
    justify-content: center
}

@keyframes modalFadein {
    from{
        opacity: 0;
        transform: translateY(-255px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

#result,
#preview-result {
    margin-top: 20px;
}
.clearfix {
    clear: both;
}
.table {
    width: 100%;
}
.tab-content .table button {
    margin: 0 auto;
}
.w-100 {
    width: 100%;
}
.items-baseline{
    align-items: baseline;
}
#photo-preview{
    flex-wrap: wrap;
}
/*Css for pc*/
@media (min-width: 740px) {
    .area-preview,
    .area-download {
        position: relative;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .area-preview{
        width: 350px;
        float: left;
    }
    .area-download {
        width: calc(100% - 350px);
        float: left;
        padding-top: 30px;
    }
    .area-preview-video{
        padding-top: 30px;
    }
    /*.photo-preview{*/
    /*    flex-wrap: wrap;*/
    /*    animation: modalFadein ease .5s;*/
    /*}*/
    .photo-item-preview{
        width: calc(50% - 20px);
        margin: 5px;
        border: 1px solid rgba(0,0,0,0.2);
        border-radius: 5px;
    }
    .photo-item-preview img{
        margin-bottom: 20px;
        width: 100%;
        height: auto;
    }
}
/*------media-container-------*/
.media-container{
    margin-top: 20px;
}
.media-container .media-row {
    margin-bottom: 10px;
}
.media-container.single-item .item {
    width: 100%;
    max-width: 320px;
}
.media-container .item {
    width: 50%;
    padding: 0 20px;
    text-align: center;
    margin-left: 3px;
    margin-right: 3px;
}
.media-container .item video{
    max-width: 320px;
    margin: 0 auto;
}
/*------media-container [END]-------*/

.disclaimer-text {
    margin: 5px auto 20px auto;
    font-size: 20px;
    font-weight: 600;
    color: black;
    max-width: 900px;
}

@media screen and (max-width: 768px){
    .disclaimer-text {
        padding-left: 5px;
        padding-right: 5px;
    }
}

