:root {
    --font-regular: sans-serif;
    --font-semiBold: sans-serif;
    --font-bold: sans-serif;
    --font-black: sans-serif;
    --font-size-text: 16px;
    --font-size-small: 12px;
    --font-size-very-small: 10px;
    --font-size-title: 20px;
    --font-size-large-title: 32px;
    --font-size-very-large-title: 48px;
    --color-black: #000;
    --color-dark: #192133;
    --color-white: #fff;
    --color-gray: #a5a7b2;
    --color-light-gray: #f7f7f9;
    --color-dark-blue: #300e5b;
    --color-tiktok-text: #ff004b;
    --color-twitter-text: #358cc1;
    --color-facebook-text: #0169da;
    --color-border: #e2e4e6;
    --color-footer: #dedede;
    --color-accordion: #0d0d22;
    --color-accordion-border: #e0ebf5;
    --color-tabs: #1a2239;
    --color-link: #1daef9;
    --color-disabled: #e0e0e0;
    --color-gradient: #0169da;
    --gradient: linear-gradient(0deg, #0169da, #1daef9);
    --shadow-header: 0px 2px 16px rgba(0, 0, 0, .05);
    --transition: 0.25s ease-out
}

b,
h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-family: "Nunito", sans-serif;
    font-weight: 200
}

a {
    text-decoration: none
}

button {
    cursor: pointer
}

main {
    flex: 1 0 auto;
    height: 100%;
    position: relative
}

.container {
    margin: 0 auto;
    max-width: 100vw;
    padding: 0 15px
}

@media (min-width:768px) {
    .container {
        max-width: 750px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 970px
    }
}

@media (min-width:1201px) {
    .container {
        max-width: 1230px
    }
}

.modal {
    display: none;
    /* hidden by default */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 20px;
    box-sizing: border-box;
}

.modal video {
    max-width: 100%;
    max-height: 60vh;
    display: block;
    border-radius: 10px;
}


/* Styling for modal-close button */

.modal-close {
    position: absolute;
    z-index: 999;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
}

.thumbnail-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 90deg, #e0e0e0 25%, #f8f8f8 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 10px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 15px;
    display: none;
    /* hide initially */
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.icon {
    display: inline-block;
    flex-shrink: 0;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain
}

@keyframes ripple {
    0% {
        transform: scale(.2)
    }
    to {
        opacity: 0;
        transform: scale(2)
    }
}

.ripple-btn {
    overflow: hidden;
    position: relative
}

.ripple-btn * {
    pointer-events: none
}

span.ripple {
    -webkit-touch-callout: none;
    animation: ripple .8s linear;
    background-color: rgba(0, 0, 0, .25);
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.bxmfunk-button {
    align-items: center;
    background: var(--gradient);
    border: none;
    border-radius: 32px;
    color: var(--color-white);
    display: inline-flex;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .75px;
    line-height: 1.5;
    width: 150px;
    padding: 20px 48px;
    text-transform: capitalize
}

.bxmfunk-input {
    align-items: center;
    display: flex;
    position: relative
}

.bxmfunk-input.width-full {
    width: 100%
}

.bxmfunk-input-icon {
    left: 20px;
    position: absolute
}

.bxmfunk-input input {
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 36px;
    box-shadow: inset 0 4px 5px rgba(0, 0, 0, .15);
    color: var(--color-dark);
    display: flex;
    flex-grow: 1;
    line-height: 1.5;
    opacity: 1;
    padding: 19px 36px
}

.bxmfunk-input input::-moz-placeholder {
    color: var(--color-gray);
    opacity: 1
}

.bxmfunk-input input::placeholder {
    color: var(--color-gray);
    opacity: 1
}

.bxmfunk-input.with-icon input {
    padding-left: 54px
}

#copy-link {
    padding-right: 80px
}

.bxmfunk-textarea {
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 36px;
    box-shadow: inset 0 4px 5px rgba(0, 0, 0, .15);
    color: var(--color-dark);
    display: flex;
    flex-grow: 1;
    line-height: 1.5;
    opacity: 1;
    padding: 19px 36px;
    resize: none
}

.bxmfunk-textarea::-moz-placeholder {
    color: var(--color-gray);
    opacity: 1
}

.bxmfunk-textarea::placeholder {
    color: var(--color-gray);
    opacity: 1
}

.bxmfunk-textarea.width-full {
    overflow-x: hidden;
    width: 100%
}

.tabs {
    background-color: var(--color-light-gray);
    padding: 4px
}

.tab,
.tabs {
    border-radius: 32px;
    display: flex
}

.tab {
    align-items: center;
    color: var(--color-gray);
    cursor: pointer;
    flex: 1;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    justify-content: center;
    line-height: 1.5;
    padding: 12px;
    transition: var(--transition)
}

.tab:hover {
    background-color: var(--color-gray);
    color: var(--color-white)
}

.tab.active svg *,
.tab:hover svg * {
    fill: var(--color-white)
}

.tab.active {
    background: var(--gradient);
    color: var(--color-white)
}

.tab>svg {
    flex-shrink: 0;
    margin-right: 8px
}

.tab>svg * {
    transition: var(--transition)
}

.tab-content {
    display: none
}

.slider {
    overflow: hidden;
    width: 100%
}

.slide {
    border-radius: 32px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 32px;
    transition: background var(--transition);
    width: 100%
}

.slide:hover {
    background: hsla(0, 0%, 100%, .05)
}

.slide.active {
    background: hsla(0, 0%, 100%, .15)
}

.slide-icon {
    display: flex;
    flex-shrink: 0;
    margin-bottom: 8px
}

.slide-title {
    font-family: "Nunito", sans-serif;
    font-size: var(--font-size-title);
    font-weight: 500;
    margin-bottom: 8px
}

.slide-text,
.slide-title {
    line-height: 1.5
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 12px
}

.slider-dot {
    border-radius: 4px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition)
}

.slider-dot:hover {
    background-color: var(--color-dark)
}

.slider-dot:before {
    background: var(--color-white);
    border-radius: 50%;
    content: "";
    display: block;
    flex-shrink: 0;
    height: 8px;
    opacity: .2;
    transition: var(--transition);
    width: 8px
}

.slider-dot.active:before {
    opacity: 1
}

.accordion-item {
    border-bottom: 1px solid var(--color-accordion-border)
}

.accordion-item.active .accordion-close {
    transform: rotate(45deg)
}

.accordion-item.active .accordion-text {
    display: block
}

.accordion-header {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 24px 0
}

.accordion-close {
    background: url(/images/icons/faqs_plus.svg);
    flex-shrink: 0;
    height: 24px;
    margin-left: 4px;
    transition: var(--transition);
    width: 24px
}

.accordion-title {
    color: var(--color-accordion);
    font-family: "Nunito", sans-serif;
    font-size: var(--font-size-title);
    font-weight: 500;
    line-height: 1.5
}

@keyframes text-slideX {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.accordion-text {
    animation: text-slideX var(--transition);
    color: var(--color-dark);
    display: none;
    line-height: 1.5;
    padding-bottom: 24px
}

.section-title {
    color: var(--color-dark);
    font-family: "Nunito", sans-serif;
    font-size: var(--font-size-large-title);
    font-weight: 600;
    line-height: 1.25;
    text-align: center
}

.section-text {
    line-height: 1.5;
    text-align: center
}

.main {
    background: linear-gradient(270deg, #1b1e20, #303235 30.33%, #3c3f42 70.33%, #232629);
    padding: 72px 0 50px;
    text-align: center
}

.main,
.main .container {
    align-items: center;
    display: flex;
    flex-direction: column
}

.main .container {
    max-width: auto!important
}

.main-title {
    font-size: var(--font-size-very-large-title);
    line-height: 1.166;
    margin: 0 0 16px
}

.main-text,
.main-title {
    color: var(--color-white)
}

.main-text {
    line-height: 1.5;
    margin: 0 0 72px
}

.main-form {
    align-items: center;
    position: relative;
    width: 100%
}

.main-form .bxmfunk-input {
    width: 100%
}

.main-form .bxmfunk-input input {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    padding-left: 66px
}

.main-form .bxmfunk-input-icon {
    left: 26px
}

.main-link-details {
    display: flex;
    flex-direction: column;
    margin: 32px 0 0
}

.main-link-details span {
    color: var(--color-white);
    font-size: var(--font-size-small);
    line-height: 1.133;
    word-break: break-all
}

.main-link-details span:not(:last-child) {
    margin-bottom: 8px
}

.main-label {
    align-self: flex-start;
    color: var(--color-white);
    line-height: 1.5;
    margin: 30px 0 10px 20px
}

.copy-btn {
    background: none;
    background-color: #fff;
    border: none;
    color: var(--color-link);
    display: none;
    padding-left: 5px;
    position: absolute;
    right: 20px;
    text-decoration: underline
}

.copy-btn.copied {
    background-color: #fff;
    color: #3c8d12;
    z-index: 1
}

.copy-btn svg {
    color: #3c8d12;
    width: 20px
}

.features {
    padding: 120px 0;
    text-align: center
}

.features .section-title {
    margin: 0 0 108px
}

.features-items {
    display: flex;
    justify-content: center
}

.features-item {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    max-width: 368px
}

.features-item-details {
    background: linear-gradient(180deg, rgba(247, 247, 249, 0), rgba(247, 247, 249, .5) 45.38%, #f7f7f9);
    border-radius: 32px;
    flex-grow: 1;
    padding: 32px;
    text-align: center
}

.features-item-title {
    font-family: "Nunito", sans-serif;
    font-size: var(--font-size-title);
    font-weight: 600;
    line-height: 1, 5;
    margin-bottom: 10px
}

.download-info {
    background: #192133;
    padding: 120px 0 78px
}

.download-info:after {
    background: linear-gradient(91.26deg, rgba(29, 37, 112, .5) 12.36%, rgba(132, 65, 144, .5) 36.84%, rgba(136, 23, 82, .5) 69.13%, rgba(226, 116, 45, .5) 94.13%);
    content: "";
    display: block;
    filter: blur(404px);
    left: 10%;
    top: 10%;
    transform: rotate(75deg)
}

.download-info.light {
    background: none
}

.download-info,
.download-info .section-text,
.download-info .section-title {
    color: var(--color-white)
}

.download-info.light,
.download-info.light .section-text,
.download-info.light .section-title {
    color: var(--color-dark)
}

.download-info.light .slider-dot:before {
    background-color: var(--color-dark)
}

.download-info.light .slider-dot:hover {
    background-color: var(--color-gray)
}

.download-info .section-title {
    margin: 0 0 16px
}

.download-info .section-text {
    margin: 0 0 60px
}

.download-info-wrap {
    align-items: center;
    display: flex
}

.download-info-devices {
    border-radius: 32px;
    flex-shrink: 0
}

.download-info-devices .tabs {
    margin-bottom: 28px
}

.download-info-screenshots img {
    max-width: 100%
}

.instruction .container {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.instruction-mobile,
.instruction-pc {
    padding: 120px 0 0
}

.instruction-pc .container {
    flex-direction: row-reverse
}

.instruction-title {
    font-family: "Nunito", sans-serif;
    font-size: var(--font-size-large-title);
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 24px
}

.instruction-text p {
    line-height: 1.5;
    margin: 0 0 15px
}

.instruction-text p:not(:last-child) {
    margin-bottom: 16px
}

.instruction-image img {
    max-width: 100%
}

.faqs {
    padding: 120px 0
}

.faqs .container {
    align-items: center;
    display: flex;
    flex-direction: column
}

.faqs .section-title {
    margin: 0 0 68px
}

.faqs .accordion {
    max-width: 768px;
    width: 100%
}

.products {
    background: url(/images/products-bg.svg) 0 no-repeat;
    background-size: cover;
    padding: 120px 0
}

.products .container {
    align-items: center;
    display: flex
}

.products .section-title {
    flex: 1;
    margin: 0 144px 0 0;
    text-align: left
}

.products-item,
.products-items {
    display: flex;
    flex: 1
}

.products-item.tiktok {
    color: var(--color-tiktok-text)
}

.products-item.twitter {
    color: var(--color-twitter-text)
}

.products-item.facebook {
    color: var(--color-facebook-text)
}

.products-item.tiktok .products-item-text {
    background: rgba(255, 0, 75, .1)
}

.products-item.twitter .products-item-text {
    background: rgba(53, 140, 193, .1)
}

.products-item.facebook .products-item-text {
    background: rgba(1, 105, 218, .1)
}

.products-item-text {
    align-items: center;
    border-radius: 32px;
    display: flex;
    flex-grow: 1;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    padding: 32px 32px 32px 60px
}

body.body-ar .products-item-text {
    padding: 32px 60px 32px 32px
}

body.body-ar .products .section-title {
    margin: 0 0 0 144px
}

.products-item-icon {
    margin-right: -80px;
    width: 150px;
    z-index: 1
}

body.body-ar .products-item-icon {
    margin-left: -60px;
    margin-right: 0
}

.results {
    padding: 80px 0
}

.fb-response .results {
    padding-top: 0!important
}

.results-item {
    max-width: 100%;
    width: 360px
}

.results-item-image-wrapper {
    text-align: center
}

.results-item-image {
    max-height: 200px;
    max-width: 100%
}

.results-item-text {
    background: linear-gradient(180deg, rgba(247, 247, 249, 0), rgba(247, 247, 249, .5) 45.38%, #f7f7f9);
    border-radius: 32px;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    padding: 32px;
    text-align: center
}

.results-download {
    flex: 1
}

.results-list {
    list-style: none;
    padding: 0
}

.results-list-item {
    align-items: center;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    padding: 12px
}

.results-list-item:nth-child(2n) {
    background: var(--color-light-gray)
}

.results-list-item .bxmfunk-button {
    padding: 12px 48px
}

@media (min-width:992px) {
    .results-item {
        margin-right: 40px
    }
    .results .container {
        display: flex
    }
}

@media (min-width:1201px) {
    .slider-dots {
        display: none
    }
    .download-info-slider {
        flex: 1;
        margin-right: 32px;
        min-width: 50%
    }
    .download-info-devices {
        flex: 2
    }
    .instruction-info {
        max-width: 468px
    }
}

@media (min-width:992px) {
    .features-item:not(:last-child) {
        margin-right: 16px
    }
}

@media (min-width:768px) {
    .download-info-devices {
        background-color: var(--color-white);
        padding: 0 24px 36px
    }
}

@media (min-width:600px) {
    .main-form {
        display: flex
    }
    .main-form .bxmfunk-button {
        position: absolute;
        right: 4px;
        top: auto
    }
    body.body-ar .main-form .bxmfunk-button {
        left: 4px;
        right: auto
    }
    .main-form .bxmfunk-input input {
        height: 72px;
        padding-right: 200px
    }
    body.body-ar .main-form .bxmfunk-input input {
        padding-left: 200px;
        padding-right: 20px
    }
}

@media (max-width:1200px) {
    .slider-wrap {
        display: flex;
        overflow: hidden
    }
    .download-info-wrap {
        flex-direction: column-reverse
    }
    .products .container {
        flex-direction: column
    }
    .instruction .container {
        flex-direction: column-reverse
    }
    .download-info-devices {
        margin-bottom: 16px
    }
    .products .section-title {
        margin: 0 0 32px
    }
}

@media (max-width:991px) {
    .features-items {
        align-items: center;
        flex-direction: column
    }
    .features-item:not(:last-child) {
        margin-bottom: 32px
    }
    .products-items {
        flex-direction: column
    }
    .products-item:not(:last-child) {
        margin-bottom: 24px
    }
    .products-item-icon {
        height: 104px;
        margin-right: -56px;
        width: 104px
    }
    .results {
        padding: 40px 0
    }
    .results-item {
        margin: 0 auto 20px
    }
    .results-list-item .bxmfunk-button {
        padding: 12px 32px
    }
    #private-result .container {
        flex-direction: column!important
    }
    #private-result .results-download,
    #private-result .results-item {
        width: 100%!important
    }
    #private-result .results-item {
        width: 220px!important
    }
    .instruction-title {
        margin-top: 1em;
        text-align: center
    }
}

@media (max-width:767px) {
    .header-container {
        padding: 30px 0
    }
    .header-links {
        display: none
    }
    .tabs {
        background-color: var(--color-tabs)
    }
    .tab {
        flex-direction: column;
        font-size: var(--font-size-very-small)
    }
    .tab:hover {
        background-color: var(--color-dark-blue)
    }
    .tab>svg {
        margin-bottom: 4px;
        margin-right: 0
    }
    .products .section-title {
        text-align: center
    }
    .download-info-screenshots img {
        height: auto;
        width: 100%
    }
    .fb-response #target {
        margin-top: 0!important
    }
}

@media (max-width:450px) {
    .results-download-instagram .item {
        max-width: 100%!important;
        width: 100%
    }
    body .results-download-instagram {
        grid-template-columns: auto!important
    }
}

@media (max-width:599px) {
    #form {
        margin-top: 30px
    }
    .dropdown-toggle {
        line-height: 1.2rem
    }
    .lang {
        padding-left: 15px
    }
    .results-download-instagram {
        grid-row-gap: 5px;
        grid-column-gap: 5px;
        grid-template-columns: auto auto!important
    }
    .main .container {
        width: 100%
    }
    .slide {
        padding: 16px
    }
    .bxmfunk-button {
        padding: 16px 48px
    }
    .main {
        padding: 20px 0
    }
    .main-form .bxmfunk-input {
        margin-bottom: 16px
    }
    .main-form .bxmfunk-button {
        width: 100%
    }
    .main-title {
        font-size: 26px
    }
    .main-text {
        margin: 0;
        max-width: 250px;
        text-align: center
    }
    .download-info .section-text {
        margin: 0 0 32px
    }
    .download-info,
    .features,
    .products {
        padding: 80px 0
    }
    .instruction-mobile,
    .instruction-pc {
        padding: 80px 0 0
    }
    .faqs {
        padding-bottom: 80px
    }
    .faqs .section-title,
    .features .section-title {
        margin: 0 0 32px
    }
    .footer-dot {
        margin: 0 8px
    }
    .section-title {
        text-align: center!important
    }
    #main-link {
        width: 100%
    }
    #clear,
    #paste {
        position: absolute;
        right: 20px!important;
        top: 31px!important
    }
    .results-item-image {
        max-height: none!important;
        max-width: 100%
    }
    .results-item {
        width: 100%!important
    }
    .products .section-title {
        margin: 0 0 32px!important
    }
}

@media (min-width:599px) and (max-width:768px) {
    .main-title {
        font-size: 40px
    }
    .main {
        padding-top: 40px
    }
    .main-text {
        margin-bottom: 30px
    }
}

.relative {
    position: relative;
}

#_gcaptcha_pt {
    padding-bottom: 1em;
}

#paste,
#clear {
    position: absolute;
    right: 0;
    top: 37px;
    transform: translate(0, -50%);
    right: 8px;
    background-color: #dbe2e9;
    display: flex;
    align-items: center;
    font-size: 15px;
    z-index: 1;
    padding: 0.6em;
    height: 30px;
    padding: 2px 7px;
    border: 0;
    border-radius: 7px;
}

#paste span,
#clear span {
    color: #000;
}

#clear {
    display: none;
}

#paste:hover,
#clear:hover {
    cursor: pointer;
}

#paste svg,
#paste svg {
    margin-right: 5px;
}

.animation-element.slide-bottom {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
    transition: all 1s ease-out .5s
}

.animation-element.slide-bottom.in-view {
    opacity: 1;
    transform: translateZ(0)
}

.animation-element.slide-top {
    opacity: 0;
    transform: translate3d(0, -80px, 0);
    transition: all 1s ease-out .5s
}

.animation-element.slide-top.in-view {
    opacity: 1;
    transform: translateZ(0)
}

.animation-element.slide-left {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
    transition: all 1s ease-out .5s
}

.animation-element.slide-left.in-view {
    opacity: 1;
    transform: translateZ(0)
}

.animation-element.slide-right {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
    transition: all 1s ease-out .5s
}

.animation-element.slide-right.in-view {
    opacity: 1;
    transform: translateZ(0)
}

.animation-element.fade-in {
    opacity: 0;
    transition: all 1s ease-out .5s
}

.animation-element.fade-in.in-view {
    opacity: 1
}

.animation-element.scale-in {
    opacity: 0;
    transition: all 1s ease-out .5s
}

.lang {
    list-style-type: none;
    margin: 0
}

.lang .dropdown-menu {
    background: #fff;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .1);
    display: none;
    left: 50%;
    padding: 15px;
    position: absolute;
    top: 40px;
    transform: translate(-50%);
    z-index: 999
}

.lang>li {
    align-items: center;
    display: flex;
    height: 40px;
    line-height: 40px
}

.lang ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.lang ul a {
    color: var(--color-dark);
    font-size: 14px
}

.lang .dropdown-menu {
    min-width: 180px
}

.lang li:hover .dropdown-menu {
    display: block
}

.lang li:hover a svg {
    transform: rotate(180deg);
    transition: transform .05s linear
}

.lang>li>a {
    color: var(--color-dark);
    display: flex
}

.lang>li>a svg {
    margin-left: 10px;
    transition: transform .05s linear;
    width: 15px
}

.lang li {
    position: relative
}

#form {
    width: 100%;
    width: 800px
}

.result {
    border-radius: 15px;
    display: flex;
    margin: 0 auto;
    padding: 20px;
    width: 800px
}

.result.result-error {
    background-color: #fff;
    flex-direction: column;
    margin: 0 auto
}

.result.result-error h4 {
    font-size: 20px;
    font-weight: 700
}

.result.result-error a {
    align-items: center;
    background: var(--gradient);
    border: none;
    border-radius: 32px;
    color: var(--color-white);
    display: inline-flex;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    justify-content: center;
    letter-spacing: .75px;
    line-height: 1.5;
    padding: 7px 30px
}

.result.result-success {
    background: #fff
}

.result.result-success img {
    margin-right: 15px;
    max-width: 200px
}

.result.result-success .text {
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center
}

.result.result-success .btn-wrapper {
    justify-content: center
}

.result.result-success .btn-wrapper,
.result.result.result-success .btn-wrapper>div {
    align-items: center;
    display: flex;
    flex-direction: column
}

.result.result-success .btn-wrapper a {
    align-items: center;
    background: var(--gradient);
    border: none;
    border-radius: 32px;
    color: var(--color-white);
    display: inline-flex;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    justify-content: center;
    letter-spacing: .75px;
    line-height: 1.5;
    padding: 10px 40px
}

.result.result-success .btn-wrapper a:first-child {
    margin-bottom: 15px
}

#loader {
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: -50px;
    width: 0;
    width: 100%;
    z-index: 999
}

#loader main {
    margin: 0 auto;
    max-width: 1000px;
    opacity: 0;
    width: 95%
}

#loader main.loaded {
    opacity: 1;
    transition: opacity .25s linear
}

#loader main header {
    width: 100%
}

#loader main header>div {
    width: 50%
}

#loader main header>.left,
#loader main header>.right {
    height: 100%
}

#loader main .loaders {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%
}

#loader main .loaders .loader {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-basis: 25%;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 15px;
    max-width: 25%
}

@keyframes scale {
    0% {
        opacity: 1;
        transform: scale(1)
    }
    45% {
        opacity: .7;
        transform: scale(.1)
    }
    80% {
        opacity: 1;
        transform: scale(1)
    }
}

.ball-pulse {
    display: flex
}

.ball-pulse>div:first-child {
    animation: scale .75s cubic-bezier(.2, .68, .18, 1.08) -.24s infinite
}

.ball-pulse>div:nth-child(2) {
    animation: scale .75s cubic-bezier(.2, .68, .18, 1.08) -.12s infinite
}

.ball-pulse>div:nth-child(3) {
    animation: scale .75s cubic-bezier(.2, .68, .18, 1.08) 0s infinite
}

.ball-pulse>div {
    animation-fill-mode: both;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    height: 15px;
    margin: 2px;
    width: 15px
}

@keyframes ball-pulse-sync {
    33% {
        transform: translateY(10px)
    }
    66% {
        transform: translateY(-10px)
    }
    to {
        transform: translateY(0)
    }
}

.ball-pulse-sync>div:first-child {
    animation: ball-pulse-sync .6s ease-in-out -.14s infinite
}

.ball-pulse-sync>div:nth-child(2) {
    animation: ball-pulse-sync .6s ease-in-out -.07s infinite
}

.ball-pulse-sync>div:nth-child(3) {
    animation: ball-pulse-sync .6s ease-in-out 0s infinite
}

.ball-pulse-sync>div {
    animation-fill-mode: both;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    height: 15px;
    margin: 2px;
    width: 15px
}

#main_submit.disabled {
    cursor: not-allowed;
    opacity: .8
}

.how-to-download-private {
    margin-top: 100px
}

.how-to-download-private h2 {
    color: #192133;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 15px;
    text-align: center
}

.how-to-download-private h2+p {
    color: #192133;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0 auto 40px;
    max-width: 80%;
    text-align: center
}

.how-to-download-private .item {
    background: linear-gradient(180deg, rgba(247, 247, 249, 0), rgba(247, 247, 249, .5) 45.38%, #f7f7f9);
    border-radius: 32px;
    display: flex;
    margin-bottom: 40px;
    padding: 30px
}

.how-to-download-private .item h4 {
    color: #192133;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px
}

.how-to-download-private .item p {
    color: #192133;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

.how-to-download-private .item:nth-child(2n) {
    background: gradient(180deg, rgba(247, 247, 249, 0) 0, rgba(247, 247, 249, .5) 45.38%, #f7f7f9 100%)
}

.how-to-download-private .item img {
    margin-right: 100px
}

.how-to-download-private .item .img_w {
    display: flex
}

.how-to-download-private .item:last-child {
    margin-bottom: 0!important
}

@media (max-width:768px) {
    .how-to-download-private .item {
        align-items: center;
        flex-direction: column;
        text-align: center
    }
    .how-to-download-private .item img {
        margin-right: 0!important
    }
    .how-to-download-private .item p {
        margin: 0 auto;
        max-width: 80%
    }
    .faqs {
        padding-bottom: 60px;
        padding-top: 60px
    }
    .faqs .section-title {
        margin-bottom: 40px
    }
    .header-logo {
        margin-left: 70px
    }
    body.body-ar .header-logo {
        margin-left: 0;
        margin-right: 70px
    }
    .hamburger-lines {
        display: flex!important
    }
    .header-links {
        background: #fff;
        box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .4);
        display: block;
        left: 0;
        padding-top: 0;
        position: absolute;
        top: 100px;
        transform: translate(-150%);
        transition: transform .5s ease-in-out;
        width: 100%;
        z-index: 999
    }
    .lang .dropdown-menu {
        left: auto!important;
        right: 0!important;
        transform: translate(0)
    }
    body.body-ar .lang .dropdown-menu {
        left: 0!important;
        right: auto!important
    }
    .header-link,
    .lang>li>a {
        font-size: 16px!important
    }
    #loader {
        top: -12px
    }
}

@media (max-width:992px) {
    .how-to-download-private .item img {
        margin-right: 30px!important
    }
    .header-link,
    .lang>li>a {
        font-size: 12px
    }
    #form,
    .result {
        width: 100%
    }
    .result {
        flex-direction: column
    }
    .result.result-success img {
        margin-bottom: 15px;
        margin-right: auto!important
    }
    .result.result-success .text {
        padding-bottom: 15px
    }
}

.checkbox {
    cursor: pointer;
    display: block;
    height: 32px;
    left: 20px;
    opacity: 0;
    position: absolute;
    top: 37px;
    width: 32px;
    z-index: 5
}

#menu-toggle {
    display: none
}

.hamburger-lines {
    display: none;
    flex-direction: column;
    height: 26px;
    justify-content: space-between;
    left: 20px;
    position: absolute;
    top: 37px;
    width: 32px;
    z-index: 2
}

body.body-ar .hamburger-lines {
    left: auto;
    right: 20px
}

.hamburger-lines .line {
    background: var(--color-dark);
    border-radius: 10px;
    display: block;
    height: 4px;
    width: 100%
}

.hamburger-lines .line1 {
    transform-origin: 0 0;
    transition: transform .4s ease-in-out
}

input[type=checkbox]:checked~.header-links {
    transform: translateX(0)
}

input[type=checkbox]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg)
}

input[type=checkbox]:checked~.hamburger-lines .line2 {
    transform: scaleY(0)
}

input[type=checkbox]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg)
}

.hamburger-lines .line2 {
    transition: transform .2s ease-in-out
}

.hamburger-lines .line3 {
    transform-origin: 0 100%;
    transition: transform .4s ease-in-out
}

#fb-submit-wrapper {
    display: none;
    justify-content: center;
    padding-top: 15px
}

#fb-submit-btn {
    align-items: center;
    background: var(--gradient);
    border: none;
    border-radius: 32px;
    color: var(--color-white);
    display: inline-flex;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    justify-content: center;
    letter-spacing: .75px;
    line-height: 1.5;
    padding: 7px 30px
}

.w-100 {
    width: 100%
}

.text-left {
    text-align: left
}

.fb-response .main {
    background: transparent
}

.fb-response .main .container {
    flex-direction: row!important
}

.fb-response .header {
    background: var(--color-white);
    box-shadow: var(--shadow-header)
}

#target {
    margin-top: 15px
}

.text-center {
    text-align: center
}

.private-loader-wrapper {
    align-items: center;
    display: flex;
    justify-content: center
}

.private #target {
    width: 100%
}

.private .main .container {
    flex-direction: row
}

#private-result {
    width: 100%
}

#private-result .container {
    background: #fff;
    border-radius: 36px;
    flex-direction: row;
    padding: 15px
}

#private-result .results-item-image {
    border-radius: 25px
}

#private-result .result {
    margin-top: 20px
}

.private #error-container {
    margin-top: 15px;
    position: relative!important;
    transform: translate(0)!important
}

.result-login {
    background: #fff;
    border-radius: 25px;
    margin-top: 20px;
    padding: 20px
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
    fill: #1f8dd6
}

#error-container {
    border-radius: 6px;
    font-size: 1em;
    left: 0;
    margin-bottom: 10px;
    padding: .4em;
    position: absolute;
    top: 0;
    transform: translateY(-140%);
    width: 100%;
    z-index: 99
}

#error-container,
#rate-limit-container {
    align-items: center;
    background: #fff;
    display: none
}

#rate-limit-container {
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px
}

#rate-limit-container svg {
    display: block;
    height: 30px;
    margin-right: 5px;
    width: 30px
}

#rate-limit-container svg path {
    fill: #18a2f3
}

#error-container:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f7f7f9;
    bottom: 0;
    clear: both;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    transform: translate(-5px, 9px);
    width: 0
}

#error-container svg {
    height: 2em;
    margin-left: 1em;
    margin-right: 1em;
    width: 2em
}

.warning .svg-icon path,
.warning .svg-icon polygon,
.warning .svg-icon rect {
    fill: #df3020
}

#error-container>div:first-child {
    display: flex
}

.instruction-image,
.instruction-info {
    min-width: 50%
}

.instruction-image,
.private-warning {
    text-align: center
}

.private-warning {
    background-color: #ddad3d;
    border-color: #ffeeba;
    color: #192133;
    margin-top: 50px;
    padding: .75rem 1.25rem
}

.private-warning a {
    color: #192133;
    text-decoration: underline
}

.header .contact-link svg {
    color: #000;
    margin-left: 2px;
    margin-right: 10px;
    width: 22px
}

.contact-us h1 {
    color: var(--color-dark);
    margin-top: 25px
}

.form-group {
    margin-bottom: 15px
}

.contact-us input,
.contact-us textarea {
    border: 1px solid #dedede;
    border-radius: 30px;
    padding: 20px;
    width: 100%
}

.contact-us textarea {
    resize: none
}

.contact-us button {
    align-items: center;
    background: var(--gradient);
    border: none;
    border-radius: 32px;
    color: var(--color-white);
    display: inline-flex;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .75px;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 20px 48px;
    text-transform: capitalize
}

#alert-error,
#alert-success {
    display: none
}

.alert {
    margin-bottom: 20px;
    margin-top: 20px
}

.privacy {
    line-height: 27px;
    margin-bottom: 30px;
    margin-top: 30px
}

.results-download-instagram {
    grid-row-gap: 15px;
    grid-column-gap: 15px;
    display: grid!important;
    grid-template-columns: auto auto auto;
    justify-content: center;
    max-width: 900px
}

.results-download-instagram .item {
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
    max-width: 300px;
    min-width: 250px;
    padding: 10px
}

.results-download-instagram .item a {
    align-items: center;
    background: var(--gradient);
    border: none;
    border-radius: 32px;
    color: var(--color-white);
    display: inline-block;
    display: block;
    display: flex;
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .75px;
    line-height: 1.5;
    margin: 15px auto 0;
    padding: 10px 20px;
    text-align: center;
    text-transform: capitalize
}

.results-download-instagram svg {
    margin-right: 10px;
    width: 20px
}

.results-download-instagram img {
    max-height: 200px;
    max-width: 100%
}

.results-download-instagram .img {
    text-align: center
}

.content-visibility {
    contain-intrinsic-size: 1230px;
    content-visibility: auto
}

.mp3 .download-mp3-icon {
    display: block
}

.mp3 .download-mp3-loading-icon,
.mp3.loading .download-mp3-icon {
    display: none
}

.mp3.loading .download-mp3-loading-icon {
    animation: rotate 2s linear infinite
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

.mp3.loading .download-mp3-loading-icon {
    display: block
}

.relative {
    position: relative
}

body.body-ar .header-link .header-link-icon {
    margin-left: 10px;
    margin-right: 0
}

.enhanced-slider {
    margin: 20px 0
}

.enhanced-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.enhanced-slide {
    align-items: center;
    background-color: #f7f7f9!important;
    border-color: #3182ce;
    cursor: pointer;
    display: flex;
    gap: 15px;
    opacity: 1;
    padding: 20px;
    transition: all .2s ease
}

.enhanced-slide:hover {
    background-color: #edf2f7!important;
    border-color: #3182ce
}

.slide-number {
    align-items: center;
    background: var(--gradient);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    min-width: 40px
}

.slide-content {
    flex: 1
}

.enhanced-slide-title {
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px
}

.enhanced-slide-text {
    color: var(--color-dark);
    font-size: 14px;
    line-height: 1.4
}

@media (max-width:768px) {
    .enhanced-slide {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center
    }
    .slide-number {
        height: 35px;
        min-width: 35px
    }
    .enhanced-slide-title,
    .slide-number {
        font-size: 16px
    }
    .enhanced-slide-text {
        font-size: 13px
    }
}


/*# sourceMappingURL=main.min.css.map*/